:root {
  --bg: #0d1017;
  --bg-2: #0e1119;
  --panel: #141926;
  --panel-2: #1c2333;
  --text: #f7f4ee;
  --muted: #aeb7c7;
  --soft: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.10);
  --brand: #f5b84b;
  --brand-2: #ff7a59;
  --good: #48d597;
  --blue: #70a7ff;
  --danger: #ff6b6b;
  --shadow: 0 24px 70px rgba(0,0,0,.38);
  --radius-lg: 28px;
  --radius: 24px;
  --radius-sm: 17px;
  --max: 1120px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(245,184,75,.20), transparent 34%),
    radial-gradient(circle at 100% 14%, rgba(255,122,89,.14), transparent 31%),
    var(--bg-2);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 70%);
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }
img { max-width: 100%; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(13,16,23,.78);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-lockup { display: inline-flex; align-items: center; gap: 10px; font-weight: 950; letter-spacing: -.04em; }
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #15120b;
  display: grid;
  place-items: center;
  font-weight: 950;
  box-shadow: 0 14px 36px rgba(245,184,75,.18);
}
.brand-text small { display: block; color: var(--muted); font-size: 11px; letter-spacing: 0; font-weight: 750; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 13px; font-weight: 850; }
.nav-actions { display:flex; align-items:center; gap: 10px; }
.mobile-menu-btn { display: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 18px; }
.section { padding: 72px 0; }
.section.compact { padding: 44px 0; }
.hero { padding: 74px 0 44px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr); align-items: center; gap: 38px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.24);
  color: #ffe1a1;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.12);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px rgba(72,213,151,.12); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(43px, 8vw, 82px);
  line-height: .93;
  letter-spacing: -.075em;
  margin-bottom: 18px;
}
h2 { font-size: clamp(31px, 5vw, 54px); line-height: .98; letter-spacing: -.065em; margin-bottom: 14px; }
h3 { font-size: 20px; letter-spacing: -.045em; margin-bottom: 8px; }
.lead { color: var(--muted); font-size: 17px; line-height: 1.62; max-width: 660px; }
.text-muted { color: var(--muted); }
.gradient {
  background: linear-gradient(135deg, var(--brand), #fff1b8 45%, var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 950;
  font-size: 14px;
  border: 1px solid transparent;
}
.btn-primary { background: var(--brand); color: #15120b; }
.btn-primary:hover { color: #15120b; filter: brightness(1.04); }
.btn-ghost { background: rgba(255,255,255,.07); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: rgba(245,184,75,.32); }

.card, .hero-card, .glass-card, .legal-card, .mini-card, .contact-card, .feature-card, .policy-card {
  background: rgba(255,255,255,.062);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(0,0,0,.18);
}
.hero-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  background: linear-gradient(135deg, rgba(245,184,75,.22), rgba(255,122,89,.11)), rgba(255,255,255,.055);
  border: 1px solid rgba(245,184,75,.24);
  position: relative;
  overflow: hidden;
  min-height: 530px;
}
.hero-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -65px;
  top: -70px;
  background: rgba(255,255,255,.09);
  border-radius: 50%;
}
.mock-phone {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin: 0 auto;
  border-radius: 36px;
  padding: 12px;
  background: rgba(13,16,23,.78);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.phone-screen {
  min-height: 472px;
  border-radius: 29px;
  padding: 20px;
  background:
    radial-gradient(circle at 28% -8%, rgba(245,184,75,.18), transparent 34%),
    radial-gradient(circle at 106% 10%, rgba(255,122,89,.13), transparent 32%),
    #0e1119;
  border: 1px solid rgba(255,255,255,.08);
}
.phone-top { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:18px; }
.phone-kicker { color: var(--muted); font-size: 12px; margin-bottom: 3px; }
.phone-title { margin:0; font-size: 28px; line-height: 1; letter-spacing: -.06em; }
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  color: #16110a;
  font-weight: 950;
}
.savings-card {
  border-radius: 28px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(245,184,75,.26), rgba(255,122,89,.12)), rgba(255,255,255,.055);
  border: 1px solid rgba(245,184,75,.34);
  margin-bottom: 14px;
}
.tier {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.24);
  color: #ffe1a1;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.12);
}
.hero-label { color: rgba(255,255,255,.72); font-size: 13px; margin-bottom: 6px; }
.savings { font-size: 42px; line-height: 1; font-weight: 950; letter-spacing: -.07em; margin-bottom: 8px; }
.hero-sub { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.4; }
.phone-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:14px; }
.quick-card { border-radius: 20px; padding: 14px; background: rgba(255,255,255,.062); border: 1px solid var(--line); }
.quick-card span { display:block; color: var(--muted); font-size: 11px; margin-bottom: 6px; }
.quick-card strong { font-size: 18px; letter-spacing: -.04em; }
.qr-tile {
  display:grid;
  grid-template-columns: 74px 1fr;
  gap:12px;
  align-items:center;
  border-radius: 22px;
  padding: 12px;
  background: rgba(255,255,255,.062);
  border: 1px solid var(--line);
}
.fake-qr { width:74px; height:74px; border-radius:16px; background:#fff; padding:7px; display:grid; grid-template-columns: repeat(5,1fr); gap:3px; }
.fake-qr i { background:#15120b; border-radius:2px; }
.fake-qr i:nth-child(2n) { opacity:.25; }
.fake-qr i:nth-child(5n) { opacity:.7; }
.qr-tile p { color: var(--muted); font-size:12px; margin:4px 0 0; line-height:1.35; }

.section-head { max-width: 760px; margin-bottom: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.feature-card, .mini-card, .contact-card, .policy-card { padding: 18px; }
.feature-card .icon, .mini-card .icon, .contact-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: rgba(245,184,75,.13);
  border: 1px solid rgba(245,184,75,.23);
  margin-bottom: 16px;
}
.feature-card p, .mini-card p, .contact-card p, .policy-card p, .policy-card li { color: var(--muted); line-height: 1.58; font-size: 14px; }
.feature-card p:last-child, .mini-card p:last-child, .contact-card p:last-child, .policy-card p:last-child { margin-bottom: 0; }
.stat-strip { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 26px; }
.stat { border-radius: 20px; padding: 18px; background: rgba(255,255,255,.062); border: 1px solid var(--line); }
.stat span { display:block; color:var(--muted); font-size:12px; margin-bottom:7px; }
.stat strong { font-size: 22px; letter-spacing: -.04em; }
.partner-band {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 0%, rgba(245,184,75,.22), transparent 34%),
    linear-gradient(135deg, rgba(245,184,75,.12), rgba(255,122,89,.08)),
    rgba(255,255,255,.055);
  border: 1px solid rgba(245,184,75,.24);
}
.partner-band-inner { display:flex; align-items:center; justify-content:space-between; gap:20px; }

.page-hero { padding: 62px 0 34px; }
.breadcrumb { color: var(--muted); font-size: 13px; font-weight: 850; margin-bottom: 18px; }
.breadcrumb a { color: var(--brand); }
.legal-layout { display:grid; grid-template-columns: minmax(0, 1fr) 280px; gap:20px; align-items:start; }
.legal-card { padding: 26px; }
.legal-card h2 { font-size: 28px; margin-top: 32px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.7; }
.legal-card ul { padding-left: 20px; }
.aside-card { position: sticky; top: 88px; padding: 18px; }
.aside-card a { display:block; color:var(--muted); padding:8px 0; font-size:13px; font-weight:750; border-bottom:1px solid rgba(255,255,255,.06); }
.aside-card a:last-child { border-bottom:0; }
.notice { color:#ffe1a1; background:rgba(245,184,75,.10); border:1px solid rgba(245,184,75,.24); border-radius:18px; padding:14px; font-size:13px; line-height:1.5; }
.badge-row { display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.chip { display:inline-flex; padding:6px 9px; border-radius:999px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.09); color:rgba(255,255,255,.82); font-size:11px; font-weight:750; }
.chip.good { color:#bff8dc; background:rgba(72,213,151,.12); }
.chip.gold { color:#ffe1a1; background:rgba(245,184,75,.13); }

.timeline { display:grid; gap:12px; counter-reset: steps; }
.step-card { display:grid; grid-template-columns: 48px 1fr; gap:14px; align-items:start; padding:18px; border-radius:22px; background:rgba(255,255,255,.062); border:1px solid var(--line); }
.step-num { width:48px; height:48px; border-radius:17px; display:grid; place-items:center; background:linear-gradient(135deg, var(--brand), var(--brand-2)); color:#15120b; font-weight:950; }
.step-card p { margin:0; color: var(--muted); line-height:1.55; font-size:14px; }

.site-footer { border-top: 1px solid var(--line); padding: 32px 0; color: var(--muted); background: rgba(7,9,13,.35); }
.footer-grid { display:grid; grid-template-columns: 1fr auto; gap: 18px; align-items:start; }
.footer-links { display:flex; gap:14px; flex-wrap:wrap; font-size:13px; font-weight:750; }
.footer-small { font-size:12px; line-height:1.6; margin-top:10px; max-width:780px; }

@media (max-width: 880px) {
  .hero-grid, .legal-layout, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding-top: 46px; }
  .hero-card { min-height: auto; }
  .aside-card { position: static; }
  .partner-band-inner, .footer-grid { flex-direction: column; display:block; }
  .partner-band-inner .actions { margin-top:18px; }
  .stat-strip { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(18,23,35,.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display:grid; gap:2px; }
  .nav-links a { padding: 12px; border-radius: 16px; }
  .nav-actions .btn { display:none; }
  .mobile-menu-btn {
    display:inline-flex;
    border:1px solid var(--line);
    background:rgba(255,255,255,.07);
    color:var(--text);
    border-radius:16px;
    padding:11px 13px;
    font-weight:950;
  }
}
@media (max-width: 520px) {
  .section { padding: 52px 0; }
  .page-hero { padding-top: 42px; }
  .actions, .footer-links { flex-direction: column; align-items: stretch; }
  .btn { width:100%; }
  .hero-card { margin-left:-4px; margin-right:-4px; padding:18px; }
  .mock-phone { padding:9px; }
  .phone-screen { padding:16px; }
  .phone-grid { grid-template-columns: 1fr; }
  .qr-tile { grid-template-columns: 64px 1fr; }
  .fake-qr { width:64px; height:64px; }
  .partner-band { padding:20px; }
  .legal-card { padding:20px; }
}
