:root {
  --accent: #e8c15a;
  --accent2: #5fc98f;
  --bg: #26200f;
  --card: #362d15;
  --line: #5c4e22;
  --text: #fdf6e3;
  --muted: #d9c48e;
  --ink: #241d07;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(232, 193, 90, 0.16), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: var(--accent); }
img { max-width: 100%; }

.container { max-width: 1020px; margin: 0 auto; padding: 40px 24px; }

/* ── nav ──────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(38, 32, 15, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.2px;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: 10px;
  white-space: nowrap;
}

/* ── hero ─────────────────────────────── */
.hero {
  padding: 64px 24px 48px;
  background: radial-gradient(800px 400px at 85% 0%, rgba(232, 193, 90, 0.16) 0%, transparent 60%);
}
.hero-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
}
h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: 3.1rem;
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.tagline {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.sub { color: var(--muted); max-width: 540px; margin-bottom: 22px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.cta {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(232, 193, 90, 0.35);
  transition: transform 0.15s;
}
.cta:hover { transform: translateY(-2px); }
.cta-ghost {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.15);
}
.cta-ghost:hover { border-color: var(--accent); }

.proof {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 0.86rem;
}
.proof li { padding-left: 16px; position: relative; }
.proof li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

/* ── phone mock ───────────────────────── */
.phone {
  background: #1a1508;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 12px 12px 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}
.phone-notch {
  width: 92px;
  height: 8px;
  border-radius: 999px;
  background: #3a3016;
  margin: 4px auto 10px;
}
.phone-app { padding: 4px 6px 8px; }
.phone-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.phone-hi { font-weight: 800; font-size: 1.02rem; }
.phone-date { font-size: 0.75rem; color: var(--muted); }
.phone-chip {
  font-size: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--muted);
  white-space: nowrap;
}
.phone-hero {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 14px 0 10px;
  background: #362d15;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
}
.phone-ring { width: 72px; height: 72px; position: relative; flex-shrink: 0; }
.phone-ring svg { width: 100%; height: 100%; }
.phone-ring-lab {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.phone-ring-lab b { font-size: 0.82rem; }
.phone-ring-lab span { font-size: 0.62rem; color: var(--muted); }
.phone-kicker { color: var(--accent2); font-size: 0.7rem; font-weight: 800; }
.phone-title { font-weight: 800; }
.phone-note { font-size: 0.75rem; color: var(--muted); }
.phone-week { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: 10px; }
.phone-week span {
  aspect-ratio: 1;
  border-radius: 7px;
  background: #241d0a;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--muted);
}
.phone-week span.on { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.phone-week span.part { background: rgba(232, 193, 90, 0.3); color: var(--accent); border-color: var(--accent); }
.phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #362d15;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 10px;
  margin-top: 7px;
  font-size: 0.82rem;
}
.phone-row div { flex: 1; min-width: 0; }
.phone-row b { display: block; }
.phone-row i { font-style: normal; color: var(--muted); font-size: 0.7rem; }
.phone-row em {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--line);
  font-style: normal;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: var(--ink);
}
.phone-row.done em { background: var(--accent2); border-color: var(--accent2); }

/* leftover calendar (unused on home, kept for safety) */
.cal { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 24px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.cell { aspect-ratio: 1; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; background: #241d0a; border: 1px solid var(--line); color: var(--muted); }
.cell.done { background: var(--accent); color: var(--ink); border-color: var(--accent); }

/* ── strip / sections ─────────────────── */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(0, 0, 0, 0.18); }
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.strip-inner strong { display: block; color: var(--accent); font-size: 0.95rem; }
.strip-inner span { color: var(--muted); font-size: 0.82rem; }

.section { margin: 64px 0; }
.section-head { margin-bottom: 22px; }
.section-head h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: 2.2rem;
  margin-bottom: 6px;
}
.kicker { color: var(--muted); font-size: 0.95rem; }
.lead { color: var(--muted); max-width: 720px; margin: -8px 0 22px; }

.rhythm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rhythm-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  text-align: left;
}
.rh-ic { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.rhythm-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.rhythm-item p { color: var(--muted); font-size: 0.9rem; }

.steps { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.steps li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.step-n {
  display: block;
  font-family: "DM Serif Display", Georgia, serif;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.steps h3 { margin-bottom: 6px; font-size: 1.05rem; }
.steps p { color: var(--muted); font-size: 0.9rem; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  transition: transform 0.15s;
}
.feature-card:hover { transform: translateY(-3px); }
.f-icon { font-size: 1.5rem; display: block; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.9rem; }

.hl-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hl {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.hl h4 { color: var(--accent2); font-size: 1rem; margin-bottom: 6px; }
.hl p { color: var(--muted); font-size: 0.9rem; }

/* ── product tour ─────────────────────── */
.tour { background: rgba(0, 0, 0, 0.16); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 12px 0 28px; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 42px 0;
}
.split-rev { direction: rtl; }
.split-rev > * { direction: ltr; }
.split-copy h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
.split-copy p { color: var(--muted); margin-bottom: 14px; }
.ticks { list-style: none; }
.ticks li {
  position: relative;
  padding: 5px 0 5px 22px;
  color: var(--text);
  font-size: 0.95rem;
}
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

.panel {
  background: linear-gradient(180deg, #3a3016, #2a220f);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.panel-label {
  font-size: 0.72rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent2);
  font-weight: 800;
  margin-bottom: 14px;
}
.mini-ring-row { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.mini-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 6px solid var(--accent);
  box-shadow: inset 0 0 0 8px #241d0a;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.mini-ring-row span { display: block; color: var(--muted); font-size: 0.85rem; }
.mini-habits { display: flex; flex-direction: column; gap: 8px; }
.mini-habits div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #241d0a;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.88rem;
}
.mini-habits i { margin-left: auto; font-style: normal; color: var(--muted); font-size: 0.78rem; }
.mini-habits .on { border-color: rgba(95, 201, 143, 0.45); }

.chat .bubble {
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 0.88rem;
  line-height: 1.45;
  margin-bottom: 8px;
  max-width: 92%;
}
.chat .ai { background: #241d0a; border: 1px solid var(--line); }
.chat .me { background: var(--accent); color: var(--ink); margin-left: auto; font-weight: 600; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }
.stat-row div { background: #241d0a; border-radius: 12px; padding: 10px 8px; text-align: center; }
.stat-row b { display: block; color: var(--accent); font-size: 1.15rem; }
.stat-row span { color: var(--muted); font-size: 0.7rem; }
.heat-demo { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.heat-demo i { aspect-ratio: 1; border-radius: 4px; background: #241d0a; }
.heat-demo i.l1 { background: rgba(232, 193, 90, 0.22); }
.heat-demo i.l2 { background: rgba(232, 193, 90, 0.45); }
.heat-demo i.l3 { background: rgba(232, 193, 90, 0.7); }
.heat-demo i.l4 { background: var(--accent); }

.hlist { display: flex; flex-direction: column; gap: 12px; max-width: 620px; margin: 0 auto; }
.hrow { display: flex; align-items: center; gap: 14px; }
.hic { font-size: 1.3rem; }
.hinfo { flex: 1; }
.hinfo strong { font-size: 0.9rem; display: block; margin-bottom: 6px; }
.hinfo .bar { height: 9px; background: #241d0a; border-radius: 999px; overflow: hidden; }
.hinfo .bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 999px; }
.hpct { font-family: "DM Serif Display", Georgia, serif; font-size: 1rem; color: var(--accent); width: 42px; text-align: right; }
.fine { text-align: center; color: var(--muted); font-size: 0.82rem; margin-top: 16px; }
.fine a { color: var(--accent2); }

/* ── privacy / faq / cta ──────────────── */
.privacy-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
}
.privacy-band h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 12px;
}
.privacy-band > div > p { color: var(--muted); margin-bottom: 12px; }
.privacy-cards { display: grid; gap: 10px; }
.privacy-cards div {
  background: #241d0a;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.privacy-cards b { display: block; color: var(--accent); margin-bottom: 2px; }
.privacy-cards span { color: var(--muted); font-size: 0.88rem; }

.faq { display: flex; flex-direction: column; gap: 10px; max-width: 780px; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 18px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 800;
}
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--muted); padding: 0 0 16px; font-size: 0.95rem; }

.cta-band {
  text-align: center;
  background:
    radial-gradient(500px 180px at 50% 0%, rgba(232, 193, 90, 0.18), transparent 70%),
    var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 28px;
}
.cta-band h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 20px; }
.cta-band .hero-actions { justify-content: center; }

/* ── footer / legal ───────────────────── */
footer { border-top: 1px solid var(--line); margin-top: 66px; padding: 32px 0 26px; }
.footer-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-rich { padding-bottom: 22px; }
.footer-brand { max-width: 320px; display: flex; flex-direction: column; gap: 6px; }
.footer-brand strong { color: var(--text); }
.footer-col { display: flex; flex-direction: column; gap: 6px; min-width: 120px; }
.footer-col span { color: var(--accent2); font-weight: 700; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; }
.footer-col a, .footer-links a { color: var(--muted); text-decoration: none; }
.footer-col a:hover, .footer-links a:hover { color: var(--accent); }
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-note { max-width: 460px; }

.legal-content {
  max-width: 820px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 44px;
  margin-top: 24px;
}
.legal-content h1 { font-family: "DM Serif Display", Georgia, serif; font-size: 2.1rem; }
.legal-content h2 { font-size: 1.15rem; margin: 26px 0 8px; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 0.95rem; }
.back-link { color: var(--accent2); text-decoration: none; font-size: 0.9rem; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .hero-inner, .split, .split-rev, .privacy-band, .steps, .grid.three, .hl-list, .rhythm, .strip-inner {
    grid-template-columns: 1fr;
  }
  .split-rev { direction: ltr; }
  h1 { font-size: 2.3rem; }
  .section-head h2, .privacy-band h2, .cta-band h2 { font-size: 1.85rem; }
  .phone { max-width: 360px; }
}

@media (max-width: 520px) {
  .nav { padding: 12px 16px; }
  .hero { padding: 36px 16px 32px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
