/* ---------- Base ---------- */
:root {
  --bg: #dde3eb;
  --bg2: #c8d2dd;
  --text: #1f2a37;
  --muted: #6582a2;
  --card: #ece6da;
  --accent: #6a8073;
  --soft: #a9b6c4;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

body {
  background:
    radial-gradient(1200px 800px at 80% -10%, color-mix(in oklab, var(--bg2), white 10%) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ---------- Type ---------- */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--text);
}
.display--md { font-size: clamp(38px, 5vw, 64px); }
.display--lg { font-size: clamp(54px, 7.5vw, 108px); }
.ital { font-style: italic; color: var(--muted); font-weight: 400; }

.lede {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: color-mix(in oklab, var(--text), transparent 25%);
  max-width: 58ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.eyebrow.center { display: flex; justify-content: center; }
.pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent), transparent 80%);
}

.center { text-align: center; }
.narrow { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--lg { padding: 16px 24px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }
.btn--dark {
  background: var(--text);
  color: color-mix(in oklab, var(--bg), white 70%);
}
.btn--dark:hover { background: color-mix(in oklab, var(--text), white 12%); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid color-mix(in oklab, var(--text), transparent 78%);
}
.btn--ghost:hover { background: color-mix(in oklab, var(--text), transparent 92%); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  background: color-mix(in oklab, var(--bg), transparent 25%);
  border-bottom: 1px solid color-mix(in oklab, var(--text), transparent 92%);
}
.nav__wrap {
  max-width: 1320px; margin: 0 auto;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--text); }
.logo__mark {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: var(--text);
}
.logo__word {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav__links { display: flex; gap: 28px; font-size: 14px; color: color-mix(in oklab, var(--text), transparent 30%); }
.nav__links a:hover { color: var(--text); }
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__wrap { padding: 14px 20px; }
}

/* ---------- Hero ---------- */
.hero { padding: 80px 40px 40px; max-width: 1320px; margin: 0 auto; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px;
  align-items: center;
}
.hero__copy { padding-bottom: 40px; }
.hero__copy .eyebrow { margin-bottom: 28px; }
.hero__copy .lede { margin-top: 28px; }
.hero__cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 22px;
  display: flex; gap: 10px; align-items: center;
  font-size: 13px; color: color-mix(in oklab, var(--text), transparent 45%);
}
.hero__meta .dot { opacity: 0.5; }

.hero__phone {
  position: relative;
  display: grid; place-items: center;
  min-height: 720px;
}
.hero__phone-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 50% 50%, color-mix(in oklab, var(--bg2), white 15%) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero__strip {
  margin-top: 60px;
  padding: 28px 40px;
  border-top: 1px solid color-mix(in oklab, var(--text), transparent 90%);
  border-bottom: 1px solid color-mix(in oklab, var(--text), transparent 90%);
  display: flex; gap: 24px; align-items: baseline; justify-content: center;
  font-family: var(--serif);
}
.hero__strip em {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  color: var(--text);
  font-weight: 500;
}
.hero__strip span {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__phone { min-height: 0; margin-top: 20px; }
}

/* ---------- Phone ---------- */
.phone { position: relative; z-index: 1; }
.phone-bezel {
  width: 380px;
  aspect-ratio: 380/780;
  background: #0d1117;
  border-radius: 52px;
  padding: 10px;
  box-shadow:
    0 50px 80px -30px rgba(20,30,50,0.45),
    0 20px 40px -15px rgba(20,30,50,0.25),
    inset 0 0 0 1.5px rgba(255,255,255,0.07);
}
.phone--small .phone-bezel { width: 320px; }

.phone-screen {
  width: 100%; height: 100%;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #d8dfe7 0%, #c4cdd9 100%);
  padding: 14px 24px 20px;
  display: flex; flex-direction: column;
}
.phone-screen--scroll { padding: 14px 18px 20px; }

.phone-status {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: #1a2330;
  padding: 4px 6px 0;
}
.phone-notch {
  width: 90px; height: 26px;
  background: #0d1117;
  border-radius: 14px;
  position: relative;
}
.phone-notch::after {
  content: ""; position: absolute; right: 12px; top: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2bd45a;
  transform: translateY(-50%);
}
.phone-status-r { display: flex; gap: 5px; align-items: center; color: #1a2330; }

.phone-page-dots {
  display: flex; gap: 4px; justify-content: center;
  margin-top: 16px;
}
.phone-page-dots span {
  width: 18px; height: 2px; background: rgba(0,0,0,0.18); border-radius: 2px;
}
.phone-page-dots span.on { background: rgba(0,0,0,0.5); }

.phone-app-name {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  margin-top: 12px; color: #1a2330;
}

.phone-greeting {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1a2330;
}
.phone-greeting .ital {
  font-style: italic; color: #6582a2;
}

.phone-input-row {
  display: flex; gap: 8px; margin-top: 28px; align-items: center;
}
.phone-iconbtn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.65);
  display: grid; place-items: center;
  font-size: 16px; color: #1a2330;
}
.phone-input {
  flex: 1; height: 36px; border-radius: 18px;
  background: rgba(255,255,255,0.55);
  display: flex; align-items: center;
  padding: 0 16px;
  font-size: 12px;
  color: rgba(26,35,48,0.55);
}

.phone-rings {
  margin-top: 20px; flex: 1;
  display: grid; place-items: center;
}

/* Today screen */
.t-title {
  font-family: var(--serif);
  font-size: 32px; font-weight: 500;
  text-align: center; margin-top: 10px; color: #1a2330;
}
.t-seg {
  margin-top: 14px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 4px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(26,35,48,0.55);
}
.t-seg > div { text-align: center; padding: 7px 0; border-radius: 999px; }
.t-seg__on { background: #6582a2; color: #fff; }
.t-date {
  margin-top: 12px; text-align: center; font-size: 9px; letter-spacing: 0.18em; color: #6582a2;
}
.t-week {
  margin-top: 8px;
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.t-day {
  background: rgba(255,255,255,0.4);
  border-radius: 10px;
  padding: 8px 0 12px;
  text-align: center;
  font-family: var(--serif);
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}
.t-day span { font-family: var(--sans); font-size: 9px; color: rgba(26,35,48,0.55); display: block; }
.t-day strong { font-size: 17px; font-weight: 500; color: #1a2330; font-style: italic; display: block; margin-top: 2px;}
.t-day em { position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); width: 8px; height: 1.5px; background: rgba(26,35,48,0.25); }
.t-day.on { background: rgba(101,130,162,0.18); border-color: rgba(101,130,162,0.35); }

.t-card {
  margin-top: 14px;
  background: #ebe6da;
  border-radius: 18px;
  padding: 16px 14px;
}
.t-card__head {
  display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px;
}
.t-card__head h4 { font-family: var(--serif); font-size: 17px; font-weight: 500; color: #1a2330; }
.t-card__head h5 { font-size: 9px; letter-spacing: 0.18em; color: rgba(26,35,48,0.5); font-weight: 600; }
.t-card__pct { font-family: var(--serif); font-style: italic; color: #6582a2; font-size: 12px; }
.t-card__pct em { font-style: italic; }

.t-macro { padding: 8px 0; border-top: 1px solid rgba(26,35,48,0.07); }
.t-macro:first-of-type { border-top: 0; padding-top: 0; }
.t-macro__row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; font-size: 10px; }
.t-chip { width: 14px; height: 14px; border-radius: 50%; border: 1px solid; display: grid; place-items: center; font-size: 7px; font-weight: 700; }
.t-macro__label { letter-spacing: 0.14em; font-weight: 600; color: rgba(26,35,48,0.55); flex: 1; }
.t-macro__val { font-weight: 700; font-size: 11px; color: #1a2330; }
.t-macro__val em { color: rgba(26,35,48,0.4); font-weight: 500; font-style: normal; font-size: 9px; }
.t-bar { height: 3px; background: rgba(26,35,48,0.08); border-radius: 2px; overflow: hidden; }
.t-bar > div { height: 100%; border-radius: 2px; }

.t-trend { margin-bottom: 8px; }
.t-trend__l { display: flex; gap: 24px; }
.t-stat span { font-size: 9px; color: rgba(26,35,48,0.55); display: block; }
.t-stat strong { font-size: 22px; font-weight: 500; color: #1a2330; font-family: var(--sans); }
.t-stat strong em { font-size: 10px; color: rgba(26,35,48,0.45); font-weight: 500; font-style: normal; }
.t-stat .acc { color: #6582a2; }
.t-scan {
  font-size: 10px; color: #6582a2; font-weight: 600; padding: 5px 8px;
  background: rgba(255,255,255,0.6); border-radius: 999px;
  display: inline-flex; align-items: center; gap: 4px;
}
.t-chart { width: 100%; height: 90px; margin-top: 6px; }

/* ---------- Trust strip ---------- */
.trust {
  max-width: 1320px; margin: 40px auto 0; padding: 0 40px;
}
.trust__row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid color-mix(in oklab, var(--text), transparent 90%);
  border-bottom: 1px solid color-mix(in oklab, var(--text), transparent 90%);
}
.trust__item {
  padding: 26px 28px;
  font-size: 13px; line-height: 1.4;
  color: color-mix(in oklab, var(--text), transparent 30%);
  border-right: 1px solid color-mix(in oklab, var(--text), transparent 92%);
}
.trust__item:last-child { border-right: 0; }
.trust__item span {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
@media (max-width: 820px) {
  .trust__row { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(2) { border-right: 0; }
}

/* ---------- Pillar ---------- */
.pillar { padding: 140px 40px; max-width: 1320px; margin: 0 auto; }
.pillar__wrap > .eyebrow { margin-bottom: 22px; }
.pillar__wrap > .display { margin-bottom: 32px; }
.pillar__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 80px;
}
.pillar__cell {
  background: var(--card);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 280px;
}
.pillar__num {
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--muted);
  margin-bottom: 28px;
}
.pillar__cell h3 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 500;
  line-height: 1.15; letter-spacing: -0.01em;
}
.pillar__cell p { font-size: 14px; line-height: 1.55; color: color-mix(in oklab, var(--text), transparent 35%); }
@media (max-width: 820px) {
  .pillar__grid { grid-template-columns: 1fr; }
  .pillar { padding: 80px 24px; }
}

/* ---------- Features ---------- */
.features { padding: 80px 40px 120px; max-width: 1320px; margin: 0 auto; }
.features__head { margin-bottom: 80px; }
.features__head .eyebrow { margin-bottom: 22px; }
.features__list { display: flex; flex-direction: column; gap: 80px; }
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.feature--rev .feature__copy { order: 2; }
.feature__tag {
  display: inline-block;
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature__title {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 40px);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.015em;
  margin-bottom: 18px; max-width: 22ch;
}
.feature__copy p { font-size: 16px; line-height: 1.6; color: color-mix(in oklab, var(--text), transparent 30%); max-width: 48ch; }

.viz {
  background: var(--card);
  border-radius: 24px;
  padding: 32px;
  min-height: 360px;
  display: flex; flex-direction: column;
}
.viz__label {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  color: var(--muted); margin-bottom: 20px;
}
.viz__svg { width: 100%; height: 200px; flex: 1; }
.viz__row {
  display: flex; gap: 20px; justify-content: space-between;
  font-size: 12px; color: color-mix(in oklab, var(--text), transparent 35%);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in oklab, var(--text), transparent 90%);
}
.viz__row strong { color: var(--text); font-weight: 700; }
.viz__row .acc { color: var(--accent); font-weight: 700; }

.health { display: flex; flex-direction: column; gap: 0; }
.health li {
  display: grid;
  grid-template-columns: 14px 1fr auto auto;
  gap: 14px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--text), transparent 90%);
  font-size: 14px;
}
.health li:last-child { border-bottom: 0; }
.health__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.health__k { color: var(--text); }
.health__v { font-weight: 700; color: var(--text); }
.health__p { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }

.gut { display: flex; flex-direction: column; gap: 10px; }
.gut__head, .gut__row {
  display: grid; grid-template-columns: 70px repeat(7, 1fr); gap: 8px;
  align-items: center;
}
.gut__head span { font-size: 11px; color: var(--muted); text-align: center; letter-spacing: 0.06em; font-weight: 600; }
.gut__lbl { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--text); }
.gut__cell {
  aspect-ratio: 1; border-radius: 6px;
  background: color-mix(in oklab, var(--text), transparent 90%);
}
.gut__cell--1 { background: color-mix(in oklab, var(--muted), white 30%); }
.gut__cell--2 { background: color-mix(in oklab, var(--accent), white 35%); }
.gut__cell--3 { background: var(--accent); }
.gut__legend {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid color-mix(in oklab, var(--text), transparent 90%);
  display: flex; gap: 20px;
  font-size: 12px; color: var(--muted);
}
.gut__legend span { display: inline-flex; align-items: center; gap: 6px; }
.gut__legend i {
  display: inline-block; width: 12px; height: 12px; border-radius: 3px;
}

@media (max-width: 820px) {
  .feature, .feature--rev { grid-template-columns: 1fr; gap: 32px; }
  .feature--rev .feature__copy { order: 0; }
  .features { padding: 60px 24px; }
}

/* ---------- Agent section ---------- */
.agent {
  padding: 120px 40px;
  max-width: 1320px; margin: 0 auto;
}
.agent__wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.agent__copy .eyebrow { margin-bottom: 22px; }
.agent__copy .display { margin-bottom: 24px; }
.agent__list {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.agent__list li {
  padding: 16px 0;
  border-top: 1px solid color-mix(in oklab, var(--text), transparent 90%);
  font-size: 15px; line-height: 1.55;
  color: color-mix(in oklab, var(--text), transparent 25%);
}
.agent__list li strong { color: var(--text); font-weight: 700; }
.agent__list li:last-child { border-bottom: 1px solid color-mix(in oklab, var(--text), transparent 90%); }

.agent__chat {
  background: var(--card);
  border-radius: 28px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.chat__msg {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px; line-height: 1.4;
  max-width: 85%;
}
.chat__msg--me {
  align-self: flex-end;
  background: var(--text); color: color-mix(in oklab, var(--bg), white 70%);
  border-bottom-right-radius: 6px;
}
.chat__msg--ai {
  align-self: flex-start;
  background: rgba(255,255,255,0.6);
  border-bottom-left-radius: 6px;
  width: 90%; max-width: 90%;
}
.chat__msg--small { font-size: 13px; padding: 10px 14px; }
.chat__think {
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px; font-weight: 600;
}
.chat__row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 13px;
}
.chat__row:last-of-type { border-bottom: 0; }
.chat__sum {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-weight: 700; font-size: 13px;
}
.chat__ask {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-family: var(--serif); font-style: italic;
  font-size: 15px; line-height: 1.4;
  color: var(--text);
}
.check { color: var(--accent); font-weight: 700; margin-right: 6px; }

@media (max-width: 820px) {
  .agent__wrap { grid-template-columns: 1fr; gap: 40px; }
  .agent { padding: 80px 24px; }
}

/* ---------- Pricing ---------- */
.pricing { padding: 120px 40px; max-width: 1320px; margin: 0 auto; }
.pricing__wrap > .eyebrow { margin-bottom: 22px; }
.pricing__wrap > .display { margin-bottom: 24px; }
.pricing__wrap > .lede { margin-bottom: 60px; }
.pricing__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 1080px; margin: 0 auto;
}
.plan {
  background: var(--card);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  display: flex; flex-direction: column;
}
.plan--featured {
  background: var(--text);
  color: color-mix(in oklab, var(--bg), white 60%);
}
.plan--featured h3, .plan--featured .plan__amt, .plan--featured .plan__dollar { color: color-mix(in oklab, var(--bg), white 80%); }
.plan--featured .plan__icon { color: color-mix(in oklab, var(--bg2), white 30%); }
.plan--featured .plan__list strong { color: color-mix(in oklab, var(--bg2), white 50%); }
.plan--featured .plan__list li::before { background: color-mix(in oklab, var(--bg2), white 30%); }

.plan__badge {
  position: absolute; top: -14px; right: 32px;
  background: var(--accent);
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.plan__icon { color: var(--accent); margin-bottom: 20px; }
.plan__head h3 {
  font-family: var(--serif); font-size: 36px; font-weight: 500;
  letter-spacing: -0.01em; color: var(--text);
}
.plan__head p { font-size: 14px; margin-top: 6px; opacity: 0.7; max-width: 30ch; }

.plan__price {
  margin-top: 28px;
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--serif);
}
.plan__dollar { font-size: 24px; font-weight: 500; color: var(--text); }
.plan__amt {
  font-size: 80px; font-weight: 500; letter-spacing: -0.03em;
  line-height: 1; color: var(--text);
}
.plan__per { font-size: 16px; opacity: 0.6; margin-left: 6px; }
.plan__sub { font-size: 13px; opacity: 0.6; margin-top: 8px; }

.plan__list {
  margin: 28px 0;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.plan__list li {
  padding-left: 26px; position: relative;
  font-size: 14px; line-height: 1.45;
}
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 7px;
  border-bottom: 1.5px solid var(--accent);
  border-left: 1.5px solid var(--accent);
  transform: rotate(-50deg);
  border-bottom-left-radius: 1px;
}
.plan__list li:first-child::before { display: none; }
.plan__list li:first-child { padding-left: 0; }
.plan__list strong { color: var(--text); font-weight: 700; }

.plan--featured .btn--dark {
  background: color-mix(in oklab, var(--bg), white 60%);
  color: var(--text);
}

.pricing__note {
  text-align: center; margin-top: 40px;
  color: var(--muted);
  font-family: var(--serif); font-style: italic;
  font-size: 17px;
}
.pricing__note strong { color: var(--text); font-style: normal; font-weight: 700; font-family: var(--sans); font-size: 14px;}

@media (max-width: 820px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing { padding: 80px 24px; }
}

/* ---------- Blog ---------- */
.blog { padding: 80px 40px 120px; max-width: 1320px; margin: 0 auto; }
.blog__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.blog__head .eyebrow { margin-bottom: 22px; }
.blog__all { font-size: 14px; font-weight: 600; color: var(--muted); }
.blog__all:hover { color: var(--text); }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.post { display: flex; flex-direction: column; gap: 12px; cursor: pointer; }
.post:hover .post__title { color: var(--accent); }
.post__img {
  aspect-ratio: 5/3;
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  margin-bottom: 6px;
}
.post__meta {
  display: flex; gap: 8px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; color: var(--muted);
}
.post__meta .dot { opacity: 0.5; }
.post__title {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  line-height: 1.15; letter-spacing: -0.01em;
  transition: color 0.2s;
}
.post p { font-size: 14px; line-height: 1.55; color: color-mix(in oklab, var(--text), transparent 35%); }
.post__date { font-size: 12px; color: var(--muted); margin-top: 4px; }

@media (max-width: 820px) {
  .blog__grid { grid-template-columns: 1fr; }
  .blog { padding: 40px 24px 80px; }
  .blog__head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---------- Final CTA ---------- */
.cta {
  max-width: 1320px; margin: 0 auto 80px;
  padding: 0 40px;
}
.cta__wrap {
  background: var(--text);
  color: color-mix(in oklab, var(--bg), white 70%);
  border-radius: 32px;
  padding: 80px 60px;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center;
  overflow: hidden;
  position: relative;
}
.cta__copy .eyebrow { color: var(--soft); margin-bottom: 22px; }
.cta__copy .eyebrow .pip { background: var(--soft); box-shadow: 0 0 0 4px color-mix(in oklab, var(--soft), transparent 80%); }
.cta__copy .display { color: color-mix(in oklab, var(--bg), white 80%); margin-bottom: 24px; }
.cta__copy .display .ital { color: var(--soft); }
.cta__copy .lede { color: color-mix(in oklab, var(--bg), white 50%); }
.cta__row {
  margin-top: 32px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cta__row .btn--dark {
  background: color-mix(in oklab, var(--bg), white 60%);
  color: var(--text);
}
.cta__or { font-family: var(--serif); font-style: italic; opacity: 0.6; }
.cta__form {
  display: flex; gap: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 4px 4px 4px 18px;
  align-items: center;
}
.cta__form input {
  background: transparent; border: 0; outline: none;
  font: inherit; color: inherit; font-size: 14px;
  width: 200px;
}
.cta__form input::placeholder { color: color-mix(in oklab, var(--bg), white 40%); opacity: 0.6; }
.cta__form button {
  background: var(--soft); color: var(--text);
  padding: 12px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
}
.cta__phone { display: grid; place-items: center; }

@media (max-width: 980px) {
  .cta__wrap { grid-template-columns: 1fr; padding: 50px 32px; }
  .cta { padding: 0 24px; }
}

/* ---------- Footer ---------- */
.foot { max-width: 1320px; margin: 0 auto; padding: 80px 40px 40px; }
.foot__wrap {
  display: grid; grid-template-columns: 1fr 2.2fr; gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid color-mix(in oklab, var(--text), transparent 90%);
}
.foot__brand p { font-size: 14px; color: var(--muted); margin-top: 16px; max-width: 30ch; }
.foot__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.foot__cols h5 {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600; color: var(--muted);
  margin-bottom: 16px;
}
.foot__cols a {
  display: block; font-size: 14px;
  padding: 6px 0;
  color: color-mix(in oklab, var(--text), transparent 30%);
}
.foot__cols a:hover { color: var(--text); }
.foot__bottom {
  padding-top: 30px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--muted);
}
@media (max-width: 820px) {
  .foot__wrap { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
}

/* ---------- Hero calorie-ring sweep-in ---------- */
/* The markup renders the rings in their FINAL (filled) state, so a no-JS or
   failed-JS load still looks correct. The inline script flips them to empty
   before first paint and transitions stroke-dashoffset back to the fill — the
   transition below is what produces the clockwise sweep. */
.phone-rings .ring-progress {
  transition: stroke-dashoffset 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (prefers-reduced-motion: reduce) {
  .phone-rings .ring-progress { transition: none; }
  .btn:hover { transform: none; }
}

/* ---------- Legal / long-form pages ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 40px 110px;
}
.legal > .eyebrow { margin-bottom: 20px; }
.legal h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--text);
}
.legal__updated {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.legal__summary {
  margin: 40px 0 8px;
  background: var(--card);
  border-radius: 22px;
  padding: 26px 32px;
}
.legal__summary h2 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 12px;
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 52px 0 14px;
}
.legal p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in oklab, var(--text), transparent 18%);
  margin-bottom: 16px;
}
.legal ul { margin: 0 0 16px; }
.legal li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in oklab, var(--text), transparent 18%);
  margin-bottom: 9px;
}
.legal li::before {
  content: "";
  position: absolute; left: 3px; top: 12px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal a:hover { color: var(--text); }
.legal strong { color: var(--text); font-weight: 700; }
@media (max-width: 720px) {
  .legal { padding: 48px 24px 80px; }
  .legal h2 { margin-top: 40px; }
}
