:root {
  color-scheme: dark;
  --ink: #171816;
  --green: #a4e26b;
  --gold: #f7c948;
  --red: #e78379;
  --white: #f7f7f2;
  --muted: #b4b5ae;
  --line: rgba(255, 255, 255, .10);
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--white); font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", system-ui, sans-serif; line-height: 1.55; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; text-decoration: none; }
.brand img { width: 42px; height: 42px; border-radius: 11px; box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 700; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.04); color: var(--white) !important; font-weight: 850; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); background: rgba(255,255,255,.08); }
.button.primary { background: var(--green); color: #16200f !important; border-color: transparent; }
.hero { position: relative; overflow: hidden; min-height: 680px; border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(90deg, rgba(14,16,14,.95), rgba(14,16,14,.82) 45%, rgba(14,16,14,.12)), url("/assets/hero-background.png") center / cover; box-shadow: 0 34px 90px rgba(0,0,0,.32); }
.hero-grid { min-height: 680px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; }
.hero-copy { padding: 70px 0 70px 66px; position: relative; z-index: 2; }
.eyebrow { display: inline-flex; padding: 8px 13px; border-radius: 999px; background: var(--green); color: #172110; font-size: 12px; line-height: 1; font-weight: 900; letter-spacing: .08em; }
h1 { max-width: 690px; margin: 24px 0 20px; font-size: clamp(52px, 7vw, 88px); line-height: .94; letter-spacing: -.055em; }
h2 { margin: 0 0 16px; font-size: clamp(38px, 5vw, 62px); line-height: 1; letter-spacing: -.04em; }
h3 { margin-top: 34px; font-size: 26px; line-height: 1.1; }
.lede, .section-head p, .cta p { color: var(--muted); font-size: clamp(18px, 2vw, 22px); }
.lede { max-width: 590px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; color: var(--muted); font-size: 14px; font-weight: 750; }
.proof span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); }
.hero-phone { align-self: end; justify-self: center; width: 330px; transform: translateY(54px) rotate(1deg); filter: drop-shadow(0 30px 36px rgba(0,0,0,.5)); }
.hero-phone img { border: 8px solid #080908; border-radius: 44px; }
.coach-card { position: absolute; z-index: 3; right: 245px; bottom: 76px; width: 440px; padding: 18px 20px; border: 1px solid rgba(231,131,121,.35); border-radius: 22px; background: rgba(51,36,34,.96); box-shadow: 0 24px 60px rgba(0,0,0,.42); }
.coach-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.verdict, .retry { padding: 5px 10px; border-radius: 999px; color: #241b19; font-size: 11px; font-weight: 950; letter-spacing: .06em; }
.verdict { background: var(--red); }
.retry { background: var(--gold); }
.coach-card strong { display: block; margin-top: 12px; font-size: 17px; }
.coach-card small { color: var(--muted); }
section { padding: 110px 0; }
.section-head { max-width: 760px; margin-bottom: 44px; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { min-height: 280px; padding: 28px; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); }
.feature .number { color: var(--green); font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.feature p, .limits li { color: var(--muted); }
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.showcase img { border-radius: 24px; border: 1px solid var(--line); }
.honesty { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: start; }
.limits { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.limits li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.cta { padding: 72px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(135deg, rgba(164,226,107,.16), rgba(255,255,255,.035)); text-align: center; }
footer { padding: 34px 0 54px; color: #81837d; font-size: 13px; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-grid div { display: flex; gap: 18px; }
.legal { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: 34px 0 80px; }
.legal header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 64px; }
.legal h1 { font-size: clamp(42px, 7vw, 68px); }
.legal h2 { margin-top: 48px; font-size: 26px; letter-spacing: -.02em; }
.legal h3 { margin-top: 30px; font-size: 20px; }
.legal p, .legal li { color: var(--muted); }
.legal strong { color: var(--white); }
.legal a { color: var(--green); }
.updated { color: #85877f; }
.callout { padding: 22px 24px; border: 1px solid rgba(164,226,107,.25); border-radius: 18px; background: rgba(164,226,107,.07); }
@media (max-width: 900px) {
  .nav-links a:not(.button) { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 54px 30px 360px; }
  .hero-phone { position: absolute; right: 36px; bottom: -70px; width: 265px; }
  .coach-card { left: 26px; right: 170px; bottom: 44px; width: auto; }
  .features, .showcase, .honesty { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .wrap { width: min(100% - 24px, var(--max)); }
  nav { height: 66px; }
  .hero { border-radius: 24px; }
  .hero-copy { padding: 42px 22px 430px; }
  h1 { font-size: 52px; }
  .hero-phone { right: 18px; width: 240px; }
  .coach-card { left: 18px; right: 82px; bottom: 42px; }
  section { padding: 78px 0; }
  .cta { padding: 48px 24px; }
}
