:root {
  --navy-900: #0a1a2e;
  --navy-800: #0d2038;
  --navy-700: #123a5c;
  --steel: #4fa8d8;
  --steel-light: #8fd0f0;
  --coral: #ff7a59;
  --coral-dark: #e8613f;
  --text: #e7edf5;
  --text-dim: #9db2c9;
  --border: rgba(255,255,255,0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--navy-900);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--steel-light); text-decoration: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,26,46,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--text); }
.brand img { width: 32px; height: 32px; border-radius: 8px; }
nav.main { display: flex; align-items: center; gap: 28px; }
nav.main a { color: var(--text-dim); font-size: 15px; font-weight: 500; }
nav.main a:hover { color: var(--text); }
.btn {
  display: inline-block; padding: 12px 24px; border-radius: 8px;
  font-weight: 600; font-size: 15px; cursor: pointer; border: none;
}
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--steel); }
.btn-sm { padding: 9px 18px; font-size: 14px; }

.hero { text-align: center; padding: 110px 0 90px; background: radial-gradient(circle at 50% 0%, var(--navy-700), var(--navy-900) 70%); }
.hero .eyebrow { color: var(--steel-light); font-weight: 600; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.hero h1 { font-size: 52px; line-height: 1.1; margin: 0 0 22px; font-weight: 800; }
.hero h1 span { color: var(--coral); }
.hero p.sub { font-size: 19px; color: var(--text-dim); max-width: 620px; margin: 0 auto 36px; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-mark { margin: 48px auto 0; width: 96px; height: 96px; border-radius: 20px; box-shadow: 0 20px 60px rgba(255,122,89,0.25); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .eyebrow { color: var(--steel-light); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2 { font-size: 34px; margin: 0 0 14px; font-weight: 800; }
.section-head p { color: var(--text-dim); font-size: 17px; margin: 0; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { background: var(--navy-800); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; }
.step .num { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: var(--coral); color: #fff; font-weight: 700; margin-bottom: 16px; }
.step h3 { margin: 0 0 10px; font-size: 19px; }
.step p { margin: 0; color: var(--text-dim); font-size: 15px; }

.diff { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.diff-card { background: var(--navy-800); border: 1px solid var(--border); border-radius: 14px; padding: 32px; }
.diff-card h3 { margin: 0 0 18px; font-size: 20px; }
.diff-card ul { margin: 0; padding: 0; list-style: none; }
.diff-card li { padding: 10px 0; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 15px; }
.diff-card li:first-child { border-top: none; }
.diff-card.win li::before { content: "✓ "; color: var(--steel-light); font-weight: 700; }
.diff-card.lose li::before { content: "— "; color: var(--text-dim); }

.story { background: var(--navy-800); border: 1px solid var(--border); border-radius: 16px; padding: 40px; text-align: center; }
.story p { font-size: 20px; margin: 0; color: var(--text); }
.story p strong { color: var(--coral); }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.plan { background: var(--navy-800); border: 1px solid var(--border); border-radius: 14px; padding: 28px 22px; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--coral); box-shadow: 0 0 0 1px var(--coral); }
.plan .badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; }
.plan h3 { margin: 0 0 6px; font-size: 20px; }
.plan .price { font-size: 34px; font-weight: 800; margin: 4px 0 4px; }
.plan .price span { font-size: 15px; font-weight: 500; color: var(--text-dim); }
.plan .videos { color: var(--text-dim); font-size: 14px; margin-bottom: 20px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan li { font-size: 14px; color: var(--text-dim); padding: 7px 0; }
.plan li::before { content: "✓ "; color: var(--steel-light); font-weight: 700; }
.plan .btn { text-align: center; }
.pricing-note { text-align: center; color: var(--text-dim); font-size: 14px; margin-top: 28px; }

.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item h3 { margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.faq-item p { margin: 0; color: var(--text-dim); font-size: 15px; }

footer.site { border-top: 1px solid var(--border); padding: 40px 0; }
footer.site .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
footer.site .flinks { display: flex; gap: 22px; }
footer.site .flinks a { color: var(--text-dim); font-size: 14px; }
footer.site .flinks a:hover { color: var(--text); }
footer.site .fbrand { color: var(--text-dim); font-size: 14px; }

.legal-hero { padding: 70px 0 10px; text-align: center; }
.legal-hero h1 { font-size: 40px; margin: 0 0 10px; font-weight: 800; }
.legal-hero .updated { color: var(--text-dim); font-size: 14px; }
.legal { max-width: 720px; margin: 0 auto; padding: 30px 0 60px; }
.legal h2 { font-size: 21px; margin: 40px 0 12px; color: var(--text); }
.legal p, .legal li { color: var(--text-dim); font-size: 15px; line-height: 1.75; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--steel-light); }

@media (max-width: 900px) {
  .steps, .diff, .pricing-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  nav.main { display: none; }
}
