/* Hooper Stats — marketing site. Brand tokens match the app (styles.css). */
:root {
  --ink: #0B1220;
  --ink-2: #161E2E;
  --bone: #F7F5F1;
  --bone-2: #EFEBE3;
  --sideline: #FF5B2E;
  --sideline-soft: #FFE3D8;
  --net: #21B07A;
  --cord: #6B7280;
  --line: rgba(11, 18, 32, 0.08);
  --display: 'Bricolage Grotesque', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto;
  --body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto;
  --wrap: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--display); letter-spacing: -0.02em; line-height: 1.1; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(247, 245, 241, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 19px; }
.brand .mark { width: 30px; height: 30px; border-radius: 8px; }
.nav-links { display: flex; gap: 26px; font-size: 14px; font-weight: 600; color: var(--cord); }
.nav-links a:hover { color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 80px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sideline-soft); color: #B0340F;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.02em;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: 58px; font-weight: 800; }
.hero h1 .accent { color: var(--sideline); }
.hero p.sub { font-size: 19px; color: var(--cord); margin: 22px 0 32px; max-width: 30em; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; padding: 15px 26px; border-radius: 999px;
}
.btn-primary { background: var(--ink); color: var(--bone); }
.btn-primary:hover { background: var(--ink-2); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); }
.hero-note { font-size: 13px; color: var(--cord); margin-top: 16px; }

/* Phone mockup */
.phone {
  justify-self: center;
  width: 290px; height: 590px; border-radius: 44px;
  background: var(--ink); padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(11,18,32,0.45);
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 33px; overflow: hidden;
  background: linear-gradient(180deg, #0B1220, #161E2E);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  color: var(--bone); text-align: center; padding: 28px;
}
.phone-screen .big { font-family: var(--display); font-weight: 800; font-size: 64px; color: var(--sideline); }
.phone-screen .lbl { font-size: 13px; color: var(--cord); letter-spacing: 0.14em; text-transform: uppercase; }
.phone-screen .pill { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 12px 16px; font-size: 14px; }

/* ---------- Sections ---------- */
section.block { padding: 70px 0; }
.eyebrow { color: var(--sideline); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.block h2 { font-size: 38px; font-weight: 800; margin: 12px 0 14px; }
.block .lede { font-size: 18px; color: var(--cord); max-width: 40em; margin-bottom: 44px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px;
}
.feature .ico {
  width: 44px; height: 44px; border-radius: 12px; background: var(--sideline-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--cord); }

/* Spotlight — the "tells you what to work on" feature */
.spotlight {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 48px;
}
.spotlight-copy h2 { font-size: 34px; font-weight: 800; margin: 12px 0 14px; }
.spotlight-copy .lede { font-size: 17px; color: var(--cord); margin-bottom: 22px; }
.spotlight-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.spotlight-list li {
  position: relative; padding-left: 26px; font-size: 15px; font-weight: 600; color: var(--ink);
}
.spotlight-list li::before {
  content: ''; position: absolute; left: 0; top: 6px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--sideline-soft);
  box-shadow: inset 0 0 0 4px var(--sideline);
}
.spotlight-card {
  background: var(--ink); color: var(--bone); border-radius: 20px; padding: 26px;
  box-shadow: 0 30px 60px -28px rgba(11,18,32,0.45);
}
.dc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.dc-pill {
  background: var(--sideline); color: var(--ink); font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px;
}
.dc-cat { font-size: 12px; color: var(--cord); font-weight: 600; }
.dc-name { font-family: var(--display); font-weight: 800; font-size: 22px; margin-bottom: 8px; }
.dc-reason { font-size: 14px; color: #C7CCD4; margin-bottom: 14px; line-height: 1.5; }
.dc-focus { font-size: 14px; color: var(--bone); margin-bottom: 16px; }
.dc-meta { display: flex; gap: 22px; font-size: 12.5px; color: var(--cord); font-weight: 600; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 14px; }

/* Ad-free promise band */
.adfree {
  margin: 36px 0 8px;
  display: flex; align-items: center; gap: 22px;
  background: var(--ink); color: var(--bone);
  border-radius: 22px; padding: 28px 32px;
}
.adfree-mark {
  font-size: 38px; line-height: 1; color: var(--sideline);
  flex-shrink: 0; font-weight: 700;
}
.adfree strong {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.01em; margin-bottom: 4px;
}
.adfree span { font-size: 15px; color: #C7CCD4; line-height: 1.55; }

/* Pricing */
.pricing { background: var(--ink); color: var(--bone); border-radius: 28px; padding: 56px 40px; text-align: center; }
.pricing h2 { color: var(--bone); font-size: 34px; }
.pricing .lede { color: var(--cord); margin: 12px auto 36px; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 760px; margin: 0 auto; }
.tier { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 26px 20px; }
.tier.pop { border-color: var(--sideline); background: rgba(255,91,46,0.1); }
.tier .nm { font-family: var(--display); font-weight: 800; font-size: 18px; }
.tier .amt { font-family: var(--display); font-weight: 800; font-size: 32px; margin: 10px 0 2px; }
.tier .per { font-size: 13px; color: var(--cord); }
.tier .pop-tag { display: inline-block; background: var(--sideline); color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; }
.pricing .fine { color: var(--cord); font-size: 13px; margin-top: 30px; }

/* Content (privacy / terms / support) */
.doc { padding: 70px 0 90px; max-width: 760px; }
.doc h1 { font-size: 42px; font-weight: 800; margin-bottom: 8px; }
.doc .updated { color: var(--cord); font-size: 14px; margin-bottom: 36px; }
.doc .lede { font-size: 19px; color: var(--ink); margin-bottom: 30px; }
.doc h2 { font-size: 22px; font-weight: 800; margin: 34px 0 10px; }
.doc p, .doc li { color: #374151; font-size: 16px; margin-bottom: 12px; }
.doc ul { padding-left: 22px; }
.doc a.inline { color: var(--sideline); font-weight: 600; }
.faq { border-top: 1px solid var(--line); padding: 22px 0; }
.faq h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.faq p { color: #374151; font-size: 15.5px; }
.support-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 30px; margin: 26px 0 40px; display: flex; gap: 18px; align-items: center;
}
.support-card .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--sideline-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.support-card a { color: var(--sideline); font-weight: 700; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 40px 0 60px; margin-top: 40px; }
.foot-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; align-items: center; }
.foot-links { display: flex; gap: 24px; font-size: 14px; font-weight: 600; color: var(--cord); }
.foot-links a:hover { color: var(--ink); }
.foot-copy { font-size: 13px; color: var(--cord); }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding: 56px 0 50px; }
  .hero h1 { font-size: 42px; }
  .phone { display: none; }
  .feature-grid, .tiers { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
  .adfree { flex-direction: column; align-items: flex-start; gap: 14px; padding: 24px; }
  .nav-links { display: none; }
  .block h2, .spotlight-copy h2 { font-size: 28px; }
}
