/* Up & About — design direction 1b (product-led, sans-led, white). */

:root {
  color-scheme: light;
  --ink: #151A17;
  --muted: #5A6660;
  --faint: #A8B0A6;
  --green: #2F6B4F;
  --green-tint: #E4EFE7;
  --green-row: #EDF5EF;
  --green-name: #1D3A2B;
  --green-sub: #4A6E58;
  --amber: #D97A2B;
  --amber-lt: #E8A96B;
  --amber-dk: #A85F1C;
  --amber-deep: #A03D12;
  --cream: #FAF6F0;
  --cream-note: #FBF1E7;
  --wash: #F5F7F5;
  --line: #EAE7E1;
  --line-dark: #3E4237;
  --dark: #151A17;
  --dark-chip: #26291F;
  --dark-body: #A8B0A6;
  --dark-text: #F3EDE4;
  --dark-warm: #D8D1C5;
  --grey-tag: #8A8177;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

.serif { font-family: 'Newsreader', serif; }

/* ── buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.btn-dark { background: var(--dark); color: #fff; }
.btn-green { background: var(--green); color: #fff; font-weight: 700; }
.btn-outline { background: #fff; border: 1px solid #D5D9D4; color: #2A332D; }
.btn-ghost { border: 1px solid var(--line-dark); color: var(--dark-body); }
.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn:hover { opacity: 0.9; }

/* ── nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 56px;
  border-bottom: 1px solid var(--line);
}
.nav-left { display: flex; align-items: center; gap: 38px; }
.brand { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.brand span { color: var(--green); }
.nav-links { display: flex; gap: 26px; font-size: 15px; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--ink); }

/* ── hero ── */
.hero {
  padding: 72px 56px 0;
  background: var(--wash);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 760px;
  text-align: center;
}
.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 6px;
  background: var(--green-tint);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 62px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-wrap: pretty;
}
.hero-sub { font-size: 19px; line-height: 1.65; color: var(--muted); max-width: 600px; }
.hero-ctas { display: flex; gap: 12px; padding-top: 6px; flex-wrap: wrap; justify-content: center; }

/* ── phones ── */
.phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 34px;
  padding-top: 8px;
  max-width: 100%;
}
.phone {
  flex: none;
  padding: 14px 0 0;
  border-radius: 26px 26px 0 0;
  background: var(--dark);
  box-shadow: 0 22px 50px rgba(21, 26, 23, 0.22);
}
.phone-sm { width: 216px; }
.phone-lg {
  width: 270px;
  padding-top: 16px;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 26px 60px rgba(21, 26, 23, 0.26);
}
.screen {
  margin: 0 8px;
  border-radius: 20px 20px 0 0;
  padding: 22px 18px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 330px;
}
.phone-lg .screen { margin: 0 9px; border-radius: 23px 23px 0 0; padding: 24px 20px 34px; height: 400px; }
.screen-cream { background: var(--cream); }
.screen-white { background: #fff; }
.screen-dark { background: var(--dark); color: var(--dark-text); gap: 14px; }
.screen-eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-tag);
  font-weight: 700;
}
.phone-lg .screen-eyebrow { font-size: 13px; letter-spacing: 0.08em; }
.eyebrow-amber { color: var(--amber-lt); }
.screen-serif { font-family: 'Newsreader', serif; font-size: 26px; line-height: 1.15; color: var(--ink); }
.serif-light { color: inherit; font-size: 23px; line-height: 1.2; }
.alert-detail { font-size: 13px; line-height: 1.6; color: var(--faint); }
.screen-bottom { margin-top: auto; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.screen-bottom.stack { align-items: stretch; gap: 8px; }
.ok-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(47, 107, 79, 0.3);
}
.emergency-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #F0C9A8;
  background: var(--cream-note);
  color: var(--amber-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.circle-rows { display: flex; flex-direction: column; gap: 10px; }
.circle-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border-radius: 12px;
  background: var(--wash);
}
.circle-row.is-in { background: var(--green-row); }
.row-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.dot-green { background: var(--green); color: #fff; }
.dot-grey { background: #D5D9D4; color: var(--muted); font-size: 13px; }
.row-text { display: flex; flex-direction: column; }
.row-name { font-size: 15px; font-weight: 700; }
.name-green { color: var(--green-name); }
.row-sub { font-size: 13px; color: #7A857E; }
.sub-green { color: var(--green-sub); }
.evening-note {
  margin-top: auto;
  padding: 14px;
  border-radius: 12px;
  background: var(--cream-note);
  border: 1px solid #F0DCC5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.note-title { font-size: 13px; font-weight: 700; color: var(--amber-dk); }
.note-body { font-size: 13px; line-height: 1.5; color: #8A6438; }
.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 12px;
  background: var(--amber);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.btn-round {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
  color: #BDB5A9;
  font-size: 14px;
}

/* ── stats ── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 34px 56px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat-num { font-size: 34px; font-weight: 700; letter-spacing: -0.03em; }
.stat-label { font-size: 15px; color: var(--muted); }

/* ── how it works ── */
.how { padding: 76px 56px; display: flex; flex-direction: column; gap: 38px; max-width: 1280px; margin: 0 auto; }
.how-head { display: flex; flex-direction: column; gap: 10px; max-width: 620px; }
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.eyebrow-green { color: var(--green); }
.eyebrow-amber { color: var(--amber-lt); }
.how h2, .who h2 { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.12; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--dark);
}
.how-step {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--line);
}
.how-step:first-child { padding-left: 0; }
.how-step:last-child { padding-right: 0; border-right: 0; }
.step-num { font-size: 14px; font-weight: 700; color: var(--faint); }
.step-amber { color: var(--amber); }
.step-title { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.step-body { font-size: 15px; line-height: 1.65; color: var(--muted); }

/* ── alert band ── */
.alert-band-wrap { padding: 0 56px 76px; max-width: 1280px; margin: 0 auto; }
.alert-band {
  padding: 56px;
  border-radius: 16px;
  background: var(--dark);
  color: var(--dark-text);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.alert-copy { display: flex; flex-direction: column; gap: 18px; }
.alert-band h2 { font-size: 38px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.14; }
.alert-band p { font-size: 17px; line-height: 1.7; color: var(--dark-body); }
.chips { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 6px; }
.chip {
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--dark-chip);
  font-size: 14px;
  color: var(--dark-warm);
}
.alert-art { position: relative; height: 320px; border-radius: 12px; overflow: hidden; }
.alert-art img, .quote-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── who ── */
.who { padding: 0 56px 76px; max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.who h2 { max-width: 560px; }
.who-rows { display: flex; flex-direction: column; }
.who-row {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  gap: 32px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.who-row:last-child { border-bottom: 1px solid var(--line); }
.who-name { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; }
.who-body { font-size: 16px; line-height: 1.65; color: var(--muted); }
.who-link { font-size: 15px; font-weight: 500; color: var(--green); }
.who-link:hover { color: var(--ink); }

/* ── quote ── */
.quote-band { padding: 76px 56px; background: var(--wash); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-grid {
  max-width: 1168px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.quote-copy { display: flex; flex-direction: column; gap: 26px; }
.quote-text {
  font-family: 'Newsreader', serif;
  font-size: 36px;
  line-height: 1.32;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}
.quote-attr { font-size: 15px; color: var(--muted); }
.quote-art { position: relative; height: 300px; border-radius: 14px; overflow: hidden; }

/* ── privacy + faq ── */
.two-col {
  padding: 76px 56px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
}
.col { display: flex; flex-direction: column; gap: 22px; }
.col h2 { font-size: 32px; font-weight: 700; letter-spacing: -0.03em; }
.see-table {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.see-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  font-size: 16px;
}
.tag { font-size: 14px; font-weight: 700; white-space: nowrap; }
.tag-green { color: var(--green); }
.tag-amber { color: var(--amber-dk); }
.tag-grey { color: var(--grey-tag); }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.faq-item:last-child { border-bottom: 0; }
.faq-q { font-size: 17px; font-weight: 700; }
.faq-a { font-size: 15px; line-height: 1.7; color: var(--muted); }

/* ── download ── */
.download {
  padding: 60px 56px;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.download-copy { display: flex; flex-direction: column; gap: 8px; }
.download-title { font-size: 32px; font-weight: 700; letter-spacing: -0.03em; }
.download-sub { font-size: 16px; color: var(--dark-body); }
.download-ctas { display: flex; gap: 12px; flex: none; flex-wrap: wrap; }

/* ── footer ── */
.footer {
  padding: 36px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: #7A857E;
  flex-wrap: wrap;
}
.brand-sm { font-size: 17px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #7A857E; }
.footer-links a:hover { color: var(--ink); }
.credit { font-size: 12px; color: var(--faint); flex-basis: 100%; }
.credit a { color: var(--faint); text-decoration: underline; }

/* ── placeholder / plain pages ── */
.plain { background: var(--wash); min-height: 100vh; }
.plain-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.plain-brand { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.plain-brand span { color: var(--green); }
.plain-wrap h1 { font-size: 34px; font-weight: 700; letter-spacing: -0.03em; }
.plain-wrap p { font-size: 17px; line-height: 1.7; color: var(--muted); }
.plain-back { color: var(--green); font-weight: 500; }

/* ── responsive ── */
@media (max-width: 1080px) {
  .how-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 0; }
  .how-step { border-top: 2px solid var(--dark); padding-left: 0; padding-right: 26px; border-right: 0; }
  .phones { gap: 22px; }
  .phone-sm { width: 190px; }
  .phone-lg { width: 240px; }
}

@media (max-width: 900px) {
  .nav, .hero, .how, .alert-band-wrap, .who, .quote-band, .two-col, .download, .footer { padding-left: 24px; padding-right: 24px; }
  .stat { padding: 26px 24px; }
  .hero h1 { font-size: 42px; }
  .alert-band { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
  .quote-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .who-row { grid-template-columns: 1fr; gap: 8px; align-items: start; }
  .nav-links { display: none; }
  .quote-text { font-size: 28px; }
}

@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .how-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 17px; }
  .phones { gap: 14px; }
  .phone-sm { display: none; }
  .phone-lg { width: 260px; }
  .how h2, .who h2 { font-size: 30px; }
  .alert-band h2 { font-size: 28px; }
  .download-title { font-size: 26px; }
}
