/* =========================================
   OptimalMe — Landing page
   Visual system: ivory · forest · sand · restrained sage · rare lavender
========================================== */

:root {
  --ivory:        #F5F1EA;
  --ivory-2:      #EFE8DA;
  --sand:         #EDE6D6;
  --card:         #FFFFFF;
  --card-warm:    #FAF6EE;

  --forest:       #1B3B2F;
  --forest-2:     #173a2c;
  --sage:         #2F5D48;
  --sage-soft:    #7FA790;

  --ink:          #1B2A22;
  --ink-2:        #3D4A42;
  --muted:        #6B7B72;
  --line:         #E5DED0;

  --lavender:     #EFEAFB;
  --lavender-ink: #4A3D7A;

  --amber:        #C29A5A;

  --radius-sm:    12px;
  --radius:       18px;
  --radius-lg:    26px;
  --radius-xl:    36px;

  --shadow-sm:    0 1px 2px rgba(27, 59, 47, .04), 0 2px 6px rgba(27, 59, 47, .04);
  --shadow:       0 4px 12px rgba(27, 59, 47, .06), 0 12px 32px rgba(27, 59, 47, .06);
  --shadow-lg:    0 10px 30px rgba(27, 59, 47, .08), 0 30px 60px rgba(27, 59, 47, .10);

  --serif:        "Fraunces", "Times New Roman", Georgia, serif;
  --sans:         "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container:    1180px;
  --gutter:       clamp(20px, 4vw, 44px);
}

/* =========================================
   Reset & base
========================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--sage); }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; color: var(--forest); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -40px; left: 12px;
  background: var(--forest); color: #fff;
  padding: 8px 14px; border-radius: 10px;
  z-index: 100; transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

/* Focus rings */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 8px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========================================
   Buttons
========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, transform .12s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 2px 8px rgba(27,59,47,.18);
}
.btn-primary:hover { background: var(--sage); color: #fff; }
.btn-primary:active { transform: translateY(1px); }
.btn-block { width: 100%; }
.arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================
   Header
========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 241, 234, .88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(27, 59, 47, .06);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.brand {
  display: inline-flex; align-items: center;
  color: var(--forest);
}
.brand-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  /* Ensure crisp rendering when scaled down from native resolution */
  image-rendering: -webkit-optimize-contrast;
}
.site-nav .nav-list {
  display: flex; gap: 28px;
  justify-content: center;
}
.site-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.site-nav a:hover { color: var(--forest); }

.btn-header { padding: 11px 20px; font-size: 14.5px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--forest); border-radius: 2px;
  margin: 4px 0;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(27,59,47,.06);
  background: var(--ivory);
  padding: 16px var(--gutter) 20px;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav li { border-bottom: 1px solid rgba(27,59,47,.06); }
.mobile-nav li:last-child { border-bottom: 0; padding-top: 12px; }
.mobile-nav a {
  display: block; padding: 14px 4px;
  font-weight: 500; font-size: 16px; color: var(--forest);
}
.mobile-nav a.btn { text-align: center; }
.mobile-nav[data-open="true"] { display: block; }

/* =========================================
   Hero
========================================== */
.hero {
  padding: 40px 0 64px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,59,47,.05);
}
.eyebrow-caps { text-transform: uppercase; letter-spacing: .12em; font-size: 11.5px; color: var(--sage); }
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(47, 93, 72, .12);
}

.display {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--forest);
  font-size: clamp(44px, 9vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 20px 0 22px;
}

.lede {
  font-size: clamp(16px, 2.1vw, 18.5px);
  color: var(--ink-2);
  max-width: 560px;
  line-height: 1.55;
}
.lede + .lede { margin-top: 10px; }

.principles {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
}
.principles li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.principle-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: rgba(47, 93, 72, .10);
  color: var(--sage);
  border-radius: 999px;
  flex: 0 0 auto;
}
.principle-icon svg { width: 18px; height: 18px; }
.principles strong { color: var(--forest); font-weight: 600; }

/* Signup form — pill lives on .signup-fields so notes/messages sit outside */
.signup {
  display: block;
  max-width: 520px;
}
.signup-fields {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  background: #fff;
  padding: 6px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27,59,47,.04);
  align-items: center;
  min-height: 56px;
}
.signup input[type="email"] {
  border: 0;
  background: transparent;
  padding: 0 16px;
  height: 44px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  min-width: 0;
}
.signup input[type="email"]::placeholder { color: #97a49b; }
.signup input[type="email"]:focus { outline: none; }
.signup .btn { padding: 0 20px; height: 44px; font-size: 14.5px; }

.signup-note {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 10px 4px 0;
  color: var(--muted);
  font-size: 13px;
}
.signup-note .lock svg { width: 14px; height: 14px; color: var(--muted); }

.form-message {
  margin: 8px 6px 0;
  font-size: 13.5px;
  color: var(--sage);
  min-height: 1.2em;
}
.form-message.error { color: #a04747; }

/* Honeypot — accessibly invisible to humans and assistive tech.
   Bots that fill every field will hit this and be silently discarded. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Pending state on the signup submit button */
.signup .btn[aria-busy="true"] {
  opacity: .75;
  cursor: progress;
}

/* =========================================
   Hero visual — conceptual phone
========================================== */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 70% 40%, rgba(47,93,72,.10), transparent 70%),
    radial-gradient(50% 40% at 30% 80%, rgba(194,154,90,.12), transparent 70%);
  z-index: 0;
  border-radius: var(--radius-xl);
}

.phone {
  position: relative;
  width: min(320px, 90%);
  aspect-ratio: 320 / 660;
  background: #0f1a15;
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.04);
  z-index: 1;
}
.phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 2;
}
.phone-screen {
  background: var(--ivory);
  border-radius: 34px;
  height: 100%;
  padding: 44px 18px 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-status {
  display: flex; justify-content: space-between;
  font-size: 12px; font-weight: 600; color: var(--forest);
  padding: 0 6px 4px;
}
.status-icons { display: inline-flex; gap: 4px; }
.status-icons .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--forest);
}

.phone-topbar {
  display: flex; align-items: center; gap: 10px;
  padding: 0 4px;
}
.mini-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: #fff; border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.mini-mark img { width: 24px; height: 24px; display: block; }
.bell {
  margin-left: auto;
  display: inline-flex;
}
.bell svg { width: 20px; height: 20px; }
.avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, #d9c3a3, #a1795a);
  border: 1.5px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.05);
}

.phone-greeting h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--forest);
  margin: 4px 4px 2px;
  font-weight: 500;
}
.phone-greeting p {
  font-size: 12.5px;
  color: var(--muted);
  padding: 0 4px;
}

.phone-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.mini-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: none;
  margin: 0 0 2px;
  font-weight: 500;
}
.mini-label.accent {
  color: var(--lavender-ink);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10px;
  font-weight: 700;
}
.mini-label.plain { text-transform: none; letter-spacing: 0; color: var(--muted); }

.score-card {
  background: linear-gradient(135deg, #2a4a3a, #1B3B2F);
  color: #EDE6D6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
}
.score-card .mini-label { color: rgba(237, 230, 214, .75); }
.score { font-family: var(--serif); font-size: 40px; margin: 2px 0; font-weight: 500; }
.score-delta { font-size: 11px; color: rgba(237, 230, 214, .8); }
.spark { width: 100%; height: 50px; }

.focus-card {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.focus-title {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--forest);
  font-weight: 500;
  margin: 0;
}
.focus-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--lavender);
  border-radius: 999px;
}
.focus-icon svg { width: 18px; height: 18px; }

.action-card {
  background: var(--lavender);
  color: var(--lavender-ink);
}
.action-card .action-text {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--lavender-ink);
  margin: 4px 0 10px;
  line-height: 1.35;
}
.confidence-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px;
  gap: 10px;
}
.confidence-bar {
  height: 5px;
  flex: 1;
  background: rgba(74, 61, 122, .18);
  border-radius: 999px;
  overflow: hidden;
  max-width: 90px;
}
.confidence-fill {
  width: 78%;
  height: 100%;
  background: var(--lavender-ink);
  border-radius: 999px;
}

.phone-ask {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.ask-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.ask-mark img { width: 24px; height: 24px; display: block; }
.ask-text {
  flex: 1;
  font-size: 12.5px;
  color: var(--muted);
}
.ask-mic svg { width: 18px; height: 18px; }

/* =========================================
   Section head
========================================== */
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.1;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin: 12px 0 12px;
  font-weight: 500;
}
.section-sub {
  color: var(--ink-2);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.55;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}

/* =========================================
   How It Works
========================================== */
.how {
  background: var(--card-warm);
  padding: 64px 0 72px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 20px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 1024px) {
  .how-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,59,47,.04);
  display: flex; flex-direction: column;
  gap: 14px;
}
.step-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--forest);
  color: #fff;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  flex: 0 0 auto;
}
.step-head h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 4px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  /* Keep title compact on narrow desktop columns */
  hyphens: none;
}
.step-head p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
}
.step-demo {
  background: var(--card-warm);
  border-radius: var(--radius);
  padding: 14px;
  border: 1px solid rgba(27,59,47,.05);
  display: flex; flex-direction: column;
  gap: 10px;
  flex: 1;
}
@media (min-width: 1024px) {
  .step { padding: 18px 16px 16px; gap: 12px; }
  .step-demo { padding: 12px; gap: 10px; }
  .step-head h3 { font-size: 16px; }
  .step-head p { font-size: 12.5px; }
}
.demo-title {
  font-family: var(--serif);
  font-size: 14.5px;
  color: var(--forest);
  font-weight: 500;
  margin: 0;
}
.demo-sub {
  font-size: 12px;
  color: var(--muted);
}

.checkin-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(27,59,47,.06);
  font-size: 13.5px;
  color: var(--ink-2);
}
.checkin-list li:last-child { border-bottom: 0; }
.ci-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  background: rgba(47,93,72,.10); border-radius: 999px;
}
.ci-icon svg { width: 14px; height: 14px; }
.ci-val { color: var(--forest); font-weight: 500; font-size: 13px; }

.focus-block {
  background: var(--lavender);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.focus-block .focus-title { color: var(--lavender-ink); font-size: 16px; }
.focus-block .mini-label { color: var(--lavender-ink); opacity: .75; }
.focus-progress {
  margin-top: 6px;
  height: 4px; width: 90px;
  background: rgba(74, 61, 122, .18);
  border-radius: 999px; overflow: hidden;
}
.focus-progress span {
  display: block; width: 64%; height: 100%;
  background: var(--lavender-ink); border-radius: 999px;
}
.focus-block .focus-icon { background: #fff; }
.focus-block .focus-icon svg { stroke: var(--lavender-ink); }

.why-block {
  font-size: 13px; color: var(--ink-2); line-height: 1.55;
}
.why-block .mini-label { margin-bottom: 4px; font-weight: 600; color: var(--forest); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--sage); font-weight: 600; font-size: 13.5px;
  margin-top: auto;
}
.link-arrow span { transition: transform .18s ease; }
.link-arrow:hover span { transform: translateX(3px); }

.plan-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(27,59,47,.06);
}
.plan-list li:last-child { border-bottom: 0; }
.check {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: #fff;
  border: 1.5px solid rgba(27,59,47,.18);
  display: inline-flex; align-items: center; justify-content: center;
}
.check.checked {
  background: var(--sage);
  border-color: var(--sage);
}
.check svg { width: 12px; height: 12px; }
.plan-text {
  font-size: 13.5px; color: var(--ink-2); line-height: 1.35;
}
.plan-text .muted { color: var(--muted); font-size: 12.5px; }
.tag {
  font-size: 11px; font-weight: 600;
  padding: 4px 9px; border-radius: 999px;
  letter-spacing: .02em;
}
.tag-high { background: rgba(47,93,72,.12); color: var(--sage); }
.tag-med  { background: rgba(194,154,90,.16); color: #8B6A2E; }

.momentum-head {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.delta-pill {
  background: var(--sage); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
}
.momentum-chart {
  width: 100%;
  height: 80px;
}
.metric-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(27,59,47,.06);
  font-size: 13px;
  color: var(--ink-2);
}
.metric-list li:last-child { border-bottom: 0; }
.metric-status {
  font-size: 12px; font-weight: 500;
}
.metric-status.good { color: var(--sage); }
.metric-status.neutral { color: var(--muted); }
.metric-delta { color: var(--forest); font-weight: 600; font-size: 13px; }

/* =========================================
   Wellness areas
========================================== */
.inside {
  background: var(--ivory);
  padding: 72px 0;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  background: var(--card-warm);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.area {
  padding: 12px 8px;
  text-align: left;
}
.area-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(47,93,72,.10);
  border-radius: 14px;
  margin-bottom: 12px;
}
.area-icon svg { width: 22px; height: 22px; }
.area h3 {
  font-family: var(--serif);
  font-size: 16.5px;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 6px;
}
.area p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* =========================================
   Why / founder
========================================== */
.why {
  background: var(--ivory);
  padding: 30px 0 80px;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
.why-card {
  background: var(--card-warm);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,59,47,.04);
}
.why-card .section-title { margin-top: 14px; }
.why-card p {
  color: var(--ink-2); font-size: 15.5px; line-height: 1.6;
  max-width: 56ch;
}
.pull-quote {
  margin: 22px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--sage);
  background: rgba(47,93,72,.05);
  border-radius: 6px;
  position: relative;
}
.pull-quote p {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--forest);
  line-height: 1.45;
  font-style: italic;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--sage);
  line-height: 1;
  position: absolute; top: 6px; left: 10px;
  opacity: .55;
}
.pull-quote p { padding-left: 20px; }

.founder-attribution {
  margin-top: 26px;
  display: flex; align-items: center; gap: 12px;
}
.founder-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EDE6D6, #d3c8ad);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--forest);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(27,59,47,.08);
}
.founder-lines { display: inline-flex; flex-direction: column; line-height: 1.2; }
.founder-name { font-weight: 600; color: var(--forest); font-size: 14px; }
.founder-org { color: var(--muted); font-size: 12.5px; }

/* Atmospheric founder image */
.why-atmos {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #EDE6D6;
  display: block;
  line-height: 0;
  /* Default (mobile+tablet): banner ratio keeps mobile height modest */
  aspect-ratio: 3 / 2;
}
.founder-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Bias left slightly to preserve sunset+ocean, bias down to preserve yoga mats
     when the container aspect crops the image vertically or horizontally. */
  object-position: 45% 60%;
}

/* =========================================
   Final CTA
========================================== */
.final-cta {
  background: var(--card-warm);
  padding: 56px 0 64px;
}
.final-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  align-items: center;
  border: 1px solid rgba(27,59,47,.04);
}
.final-copy .section-title { margin: 6px 0 8px; }
.final-copy .section-sub { margin: 0 0 20px; }

.signup-final {
  max-width: 560px;
}

.benefits {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.benefits li {
  display: flex; align-items: flex-start; gap: 12px;
}
.benefit-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(47,93,72,.10);
  border-radius: 999px;
  flex: 0 0 auto;
}
.benefit-icon svg { width: 18px; height: 18px; }
.benefit-title {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--forest);
  font-weight: 500;
  margin: 0 0 2px;
}
.benefit-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* Botanical accent (SVG) */
.final-atmos {
  display: flex; align-items: center; justify-content: center;
}
.botanical {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}

/* =========================================
   Footer
========================================== */
.site-footer {
  background: var(--ivory);
  padding: 32px 0 40px;
  border-top: 1px solid rgba(27,59,47,.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}
.brand-footer .brand-logo { height: 64px; }
.footer-nav ul {
  display: flex; gap: 22px; flex-wrap: wrap;
}
.footer-nav a {
  color: var(--ink-2);
  font-size: 13.5px;
}
.footer-nav a:hover { color: var(--forest); }
.copyright {
  color: var(--muted);
  font-size: 12.5px;
  margin: 0;
}

/* =========================================
   Responsive
========================================== */
@media (min-width: 720px) {
  .site-footer .footer-inner {
    grid-template-columns: auto 1fr auto;
  }
  .footer-nav ul { justify-content: center; }
}

@media (min-width: 900px) {
  .hero { padding: 48px 0 80px; }
  .hero-inner {
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
  }
  .hero-visual { min-height: 600px; }
  .phone { width: 320px; }

  .why-inner { grid-template-columns: 1.15fr .85fr; gap: 28px; }
  .final-inner {
    grid-template-columns: 1.4fr .6fr;
    padding: 44px 48px;
    gap: 36px;
  }
  /* Desktop: image stretches to match founder-card height */
  .why-atmos {
    aspect-ratio: auto;
    height: 100%;
    min-height: 380px;
  }
  .final-atmos { min-height: 240px; }
}

@media (max-width: 899px) {
  .site-nav, .btn-header { display: none; }
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .nav-toggle { display: inline-flex; flex-direction: column; }
  .brand-logo,
  .brand-footer .brand-logo { height: 60px; }
}

@media (max-width: 640px) {
  .hero { padding: 32px 0 56px; }
  .display { font-size: clamp(40px, 12vw, 56px); }
  .principles { gap: 12px; }

  .signup-fields {
    grid-template-columns: 1fr;
    border-radius: 20px;
    padding: 10px;
    gap: 10px;
    min-height: 0;
  }
  .signup input[type="email"] {
    padding: 0 14px;
    height: 46px;
    background: var(--ivory);
    border-radius: 12px;
  }
  .signup .btn { width: 100%; height: 46px; }

  .how { padding: 48px 0 56px; }
  .step { padding: 18px; border-radius: var(--radius); }
  .step-demo { padding: 14px; }

  .inside { padding: 56px 0; }
  .areas-grid {
    grid-template-columns: 1fr;
    padding: 8px 18px;
    gap: 0;
  }
  .area {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    row-gap: 2px;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(27,59,47,.06);
    align-items: start;
  }
  .area:last-child { border-bottom: 0; }
  .area-icon {
    margin: 0;
    width: 40px; height: 40px;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .area h3 {
    grid-column: 2;
    margin-bottom: 0;
    font-size: 15.5px;
    align-self: end;
  }
  .area p {
    grid-column: 2;
    font-size: 13px;
    align-self: start;
  }

  .why { padding: 20px 0 48px; }
  .why-card { padding: 26px; border-radius: var(--radius); }

  .final-cta { padding: 40px 0 48px; }
  .final-inner {
    padding: 24px 22px;
    border-radius: var(--radius);
    gap: 16px;
  }
  .final-atmos {
    min-height: 0;
    order: 2;
    margin-top: 4px;
  }
  .botanical {
    max-width: 150px;
  }
  .final-copy .section-sub { margin-bottom: 16px; }
  .benefits { margin-top: 18px; gap: 14px; }
}

@media (max-width: 420px) {
  .brand-logo,
  .brand-footer .brand-logo { height: 56px; }
  .display { font-size: clamp(36px, 11.5vw, 48px); line-height: 1.03; }
  .section-title { font-size: clamp(26px, 7.5vw, 34px); }
  .phone { width: 260px; }
  .phone-screen { padding: 40px 14px 14px; }
  .botanical { max-width: 130px; }
}
