/* Place Keeper marketing site — "Plainspoken"
   Shared stylesheet for docs/index.html and the audience landing pages.
   No border radius. No box shadows. Structure comes from 2px rules and flat bands.
   Single breakpoint at 700px. */

:root {
  --paper: #fbfaf5;
  --paper-soft: #f2f1e9;
  --panel: #ffffff;
  --ink: #151b16;
  --ink-2: #2f3a31;
  --muted: #5a655b;
  --muted-2: #6b7569;
  --muted-3: #7b8279;
  --line: #d7d5ca;
  --line-soft: #e8e5dc;
  --green: #0b552e;
  --green-deep: #073f22;
  --green-bright: #0f6a3b;
  --green-light: #8fc79f;
  --green-pale: #a9dbb6;
  --error: #a9332c;
  --warning: #a26811;
  --body-2: #4b554c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Public Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--green-deep);
}

img {
  max-width: 100%;
}

h1,
h2,
h3 {
  letter-spacing: -0.015em;
}

.ms {
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-feature-settings: "liga";
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ---------- bands ---------- */

.band {
  padding: 70px 60px;
}

.band--soft {
  background: var(--paper-soft);
}

.band--ink {
  background: var(--ink);
  color: #fff;
}

.band--green {
  background: var(--green);
  color: #fff;
}

.band--flush {
  padding: 0;
}

.band h2 {
  margin: 0 0 30px;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 700;
}

.band h2.h2-sm {
  font-size: 34px;
}

/* ---------- buttons ---------- */

.btn-primary,
.btn-secondary,
.btn-invert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 30px;
  font-size: 17px;
  font-weight: 700;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-bright);
  color: #fff;
}

.btn-secondary {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--paper-soft);
  color: var(--ink);
}

.btn-invert {
  height: 62px;
  padding: 0 36px;
  font-size: 18px;
  background: #fff;
  color: var(--green);
  flex: 0 0 auto;
}

.btn-invert:hover {
  background: var(--paper-soft);
  color: var(--green-deep);
}

/* ---------- header ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 60px;
  height: 78px;
  background: var(--paper);
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 44px;
}

.site-header img {
  width: 138px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 30px;
  font-size: 15px;
  font-weight: 600;
}

.site-nav a,
.site-header__right > a:not(.btn-header) {
  color: var(--ink-2);
}

.site-nav a:hover,
.site-header__right > a:not(.btn-header):hover {
  color: var(--green);
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 600;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 24px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.btn-header:hover {
  background: var(--green-bright);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

.menu-toggle .ms {
  font-size: 24px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
}

.hero__photo {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.hero__card {
  position: absolute;
  left: 60px;
  top: 56px;
  width: 660px;
  background: var(--paper);
  padding: 42px 44px 38px;
}

.hero__eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.hero__card h1 {
  margin: 0;
  font-size: 50px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__sub {
  margin: 20px 0 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--body-2);
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.hero__fine {
  margin: 18px 0 0;
  font-size: 15px;
  color: var(--muted-2);
}

/* ---------- tag strip ---------- */

.tag-strip {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 24px 60px;
  background: var(--ink);
  color: #fff;
}

.tag-strip b {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
}

.tag .ms {
  font-size: 19px;
  color: var(--green-light);
}

/* ---------- generic grids ---------- */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
}

.grid-2--rows {
  gap: 0 60px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

/* ---------- problem / solution rule rows ---------- */

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--bad {
  color: var(--error);
}

.eyebrow--cost {
  color: var(--warning);
}

.eyebrow--good {
  color: var(--green);
}

.rule-row {
  padding: 16px 0;
  border-top: 2px solid var(--ink);
}

.rule-row--good {
  border-top-color: var(--green);
}

.rule-row strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.rule-row span {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

.problem-band {
  padding: 80px 60px 68px;
}

.problem-band h2 {
  margin: 0 0 44px;
  max-width: 800px;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 700;
}

.problem-band h2.tight {
  margin-bottom: 12px;
}

.problem-band .lede {
  margin: 0 0 44px;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- steps ---------- */

.step {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: center;
  padding: 34px 0;
  border-top: 2px solid var(--ink);
}

.step__n {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--green);
}

.step h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: normal;
}

.step p {
  margin: 10px 0 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

.chip {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 18px 20px;
  background: var(--panel);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
}

.chip .ms {
  font-size: 20px;
  color: var(--green);
}

/* ---------- record card ---------- */

.record {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  margin-top: 40px;
  background: var(--panel);
}

.record__side {
  padding: 30px 32px;
  background: var(--ink);
  color: #fff;
}

.record__side small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

.record__side p {
  margin: 12px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.record__body {
  padding: 26px 32px;
}

.record__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}

.record__title strong {
  font-size: 18px;
  font-weight: 700;
}

.record__status {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  flex: 0 0 auto;
}

.record__event {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  line-height: 1.4;
}

.record__event time {
  color: var(--muted-3);
}

.record__event span {
  color: var(--ink-2);
}

/* ---------- Q&A ---------- */

.qa-band {
  padding: 78px 60px 70px;
}

.qa-band h2 {
  margin: 0 0 36px;
  max-width: 720px;
}

.qa {
  padding: 26px 0;
  border-top: 2px solid var(--ink);
}

.qa__q {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.qa__a {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- value tiles (green band) ---------- */

.tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--green);
  color: #fff;
}

.tiles > div {
  padding: 50px 44px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.tiles .ms {
  font-size: 26px;
  color: var(--green-pale);
}

.tiles h3 {
  margin: 16px 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: normal;
}

.tiles p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- security ---------- */

.security {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.security > div {
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}

.security .ms {
  font-size: 24px;
  color: var(--green);
}

.security strong {
  display: block;
  margin: 12px 0 7px;
  font-size: 19px;
  font-weight: 700;
}

.security span {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- FAQ ---------- */

.faq {
  padding: 22px 0;
  border-top: 2px solid var(--ink);
}

.faq strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
}

.faq span {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- closing CTA ---------- */

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 70px 60px;
  background: var(--green);
  color: #fff;
}

.cta-band h2 {
  margin: 0;
  max-width: 720px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;
}

/* ---------- home page only ---------- */

.places {
  padding: 0 60px 78px;
}

.places h2 {
  margin: 0 0 28px;
  font-size: 40px;
  font-weight: 700;
}

.places__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 26px;
}

.place-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  background: var(--panel);
  color: var(--ink);
}

.place-card:hover {
  color: var(--ink);
}

.place-card img {
  display: block;
  width: 220px;
  height: 100%;
  object-fit: cover;
}

.place-card__body {
  padding: 26px 28px;
}

.place-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: normal;
}

.place-card p {
  margin: 9px 0 16px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

.place-card__more {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}

.compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--ink);
  color: #fff;
}

.compare > div {
  padding: 60px;
}

.compare__pk {
  background: var(--green);
}

.compare h3 {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.compare__pk h3 {
  color: rgba(255, 255, 255, 0.7);
}

.compare__item {
  display: flex;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.66);
}

.compare__item .ms {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.45);
}

.compare__pk .compare__item {
  border-top-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.compare__pk .compare__item .ms {
  color: var(--green-pale);
}

/* ---------- footer ---------- */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 60px;
  font-size: 14px;
  color: var(--muted);
  background: var(--paper);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer img {
  width: 116px;
  height: auto;
  display: block;
}

.site-footer nav {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.site-footer nav a {
  color: var(--ink-2);
}

.site-footer nav a:hover {
  color: var(--green);
}

/* ---------- mobile ---------- */

@media (max-width: 700px) {
  .band,
  .problem-band,
  .qa-band,
  .tag-strip,
  .cta-band {
    padding: 32px 18px;
  }

  .band--flush {
    padding: 0;
  }

  .places {
    padding: 0 18px 32px;
  }

  .band h2,
  .problem-band h2,
  .qa-band h2,
  .cta-band h2,
  .places h2 {
    font-size: 29px;
  }

  .band h2.h2-sm {
    font-size: 26px;
  }

  .site-header {
    height: auto;
    padding: 14px 18px;
    gap: 12px;
  }

  .site-header img {
    width: 110px;
  }

  .site-header__left {
    gap: 0;
  }

  .site-nav,
  .site-header__right > a:not(.btn-header):not(.menu-toggle) {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header__right {
    gap: 10px;
  }

  .hero__photo {
    height: 210px;
  }

  .hero__card {
    position: static;
    width: auto;
    padding: 26px 18px 30px;
  }

  .hero__card h1 {
    font-size: 34px;
  }

  .hero__sub {
    font-size: 17px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-invert {
    width: 100%;
    height: 56px;
    padding: 0 20px;
    font-size: 17px;
  }

  .tag-strip {
    gap: 14px 20px;
  }

  .grid-2,
  .grid-2--rows,
  .grid-3,
  .security,
  .places__grid,
  .compare {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .grid-3,
  .security,
  .places__grid {
    gap: 24px;
  }

  .grid-2 {
    gap: 28px;
  }

  .step {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 26px 0;
  }

  .step__n {
    font-size: 44px;
  }

  .step h3 {
    font-size: 22px;
  }

  .step p {
    font-size: 16px;
  }

  .chip {
    width: 100%;
  }

  .record,
  .place-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .place-card img {
    width: 100%;
    height: 180px;
  }

  .record__event {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    font-size: 14px;
  }

  .record__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .qa__q {
    font-size: 20px;
  }

  .tiles {
    grid-template-columns: minmax(0, 1fr);
  }

  .tiles > div {
    padding: 28px 18px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .compare > div {
    padding: 32px 18px;
  }

  .cta-band {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 24px 18px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
