:root {
  --bg: #0A0E14;
  --bg-raise: #111722;
  --bg-card: #141B28;
  --edge: rgba(255,255,255,0.08);
  --edge-bright: rgba(255,255,255,0.14);
  --text: #EEF2F7;
  --text-dim: #8693A5;
  --text-faint: #5A6677;
  --amber: #FF5C1A;
  --amber-soft: #FF7E45;
  --amber-glow: rgba(255,92,26,0.28);
  --blue: #5B8DEF;
  --green: #36D399;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a:focus-visible, button:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.glow {
  position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 680px; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at center, var(--amber-glow), transparent 65%);
  opacity: 0.55; filter: blur(40px);
}

nav {
  position: relative; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; max-width: 1120px; margin: 0 auto;
}
.logo { font-weight: 800; font-size: 23px; letter-spacing: -0.04em; color: var(--text); text-decoration: none; }
.logo span { color: var(--amber); }
.nav-cta {
  font-size: 14px; font-weight: 600; color: var(--bg); text-decoration: none;
  padding: 11px 20px; background: var(--amber); border-radius: 100px;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 7px;
}
.nav-cta:hover { background: var(--amber-soft); box-shadow: 0 0 24px var(--amber-glow); }
.ic { width: 15px; height: 15px; flex-shrink: 0; }

.hero {
  position: relative; z-index: 1; text-align: center;
  padding: 90px 0 64px; display: flex; flex-direction: column; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.03em;
  color: var(--blue); padding: 7px 14px;
  background: rgba(91,141,239,0.1); border: 1px solid rgba(91,141,239,0.24);
  border-radius: 100px; margin-bottom: 28px;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(54,211,153,0.2); }
h1 {
  font-size: clamp(36px, 6.2vw, 64px); line-height: 1.04; letter-spacing: -0.035em;
  font-weight: 800; max-width: 18ch; margin-bottom: 22px;
}
h1 .hl { color: var(--amber); }
.sub {
  font-size: clamp(16px, 1.7vw, 19.5px); color: var(--text-dim);
  max-width: 54ch; margin-bottom: 40px; line-height: 1.55;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--amber); color: var(--bg); font-weight: 700; font-size: 18px;
  padding: 19px 38px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255,92,26,0.5), 0 14px 44px var(--amber-glow);
  transition: all 0.2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--amber-soft); transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,92,26,0.6), 0 18px 54px var(--amber-glow); }
.btn-primary .ic { width: 19px; height: 19px; }
.btn-centered { margin: 0 auto; }
.hero-note { margin-top: 20px; font-size: 14px; color: var(--text-faint); max-width: 48ch; }
.hero-note strong { color: var(--text-dim); }

.mock {
  background: var(--bg-card); border: 1px solid var(--edge);
  border-radius: 20px; padding: 22px; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  max-width: 480px; margin: 56px auto 0; text-align: left;
}
.mock-row { display: flex; align-items: flex-start; gap: 12px; padding: 16px; border-radius: 14px; margin-bottom: 12px; }
.mock-row:last-child { margin-bottom: 0; }
.mock-missed { background: rgba(255,90,90,0.08); border: 1px solid rgba(255,90,90,0.18); }
.mock-booked { background: rgba(54,211,153,0.07); border: 1px solid rgba(54,211,153,0.18); }
.mock-ic-wrap { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mock-missed .mock-ic-wrap { background: rgba(255,90,90,0.15); }
.mock-booked .mock-ic-wrap { background: rgba(54,211,153,0.15); }
.mock-ic-wrap svg { width: 15px; height: 15px; }
.mock-label { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.mock-missed .mock-label { color: #FF7A7A; }
.mock-booked .mock-label { color: var(--green); }
.mock-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.mock-detail { font-size: 12.5px; color: var(--text-dim); display: flex; justify-content: space-between; padding: 3px 0; }
.mock-detail span:last-child { color: var(--text); font-weight: 500; }
.mock-handled { font-size: 12.5px; color: var(--green); font-weight: 600; margin-top: 6px; display: flex; align-items: center; gap: 6px; }
.mock-handled svg { width: 13px; height: 13px; }
.mock-cap { font-size: 11px; color: var(--text-faint); text-align: center; margin-top: 14px; }

.strip { border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge); background: var(--bg-raise); }
.strip-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 38px 24px; text-align: center; border-right: 1px solid var(--edge); }
.stat:last-child { border-right: none; }
.stat-num { font-size: clamp(30px,4vw,44px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat-num .u { color: var(--amber); }
.stat-label { font-size: 13px; color: var(--text-dim); margin-top: 10px; line-height: 1.45; }

.section { padding: 90px 0; position: relative; }
.kicker { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.amber-kicker { color: var(--amber); }
.kicker-inline { display: inline-block; }
h2 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.03em; font-weight: 800; line-height: 1.1; max-width: 22ch; margin-bottom: 18px; }
h2 .hl { color: var(--amber); }
.math-h2 { margin: 0 auto 4px; color: var(--text); }
.final-h2 { color: var(--text); margin: 0 auto 20px; max-width: 18ch; }
.lead { font-size: 17px; color: var(--text-dim); max-width: 56ch; line-height: 1.6; }

.pcards { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 48px; }
.pcard { background: var(--bg-card); border: 1px solid var(--edge); border-radius: 16px; padding: 28px; transition: border 0.2s; }
.pcard:hover { border-color: var(--edge-bright); }
.pcard .pn { font-size: 13px; font-weight: 800; color: var(--amber); letter-spacing: 0.05em; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.pcard .pn svg { width: 16px; height: 16px; }
.pcard h3 { font-size: 19px; letter-spacing: -0.01em; margin-bottom: 9px; }
.pcard p { font-size: 14.5px; color: var(--text-dim); line-height: 1.55; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.step { background: var(--bg-card); border: 1px solid var(--edge); border-radius: 16px; padding: 28px; }
.step-n { font-size: 14px; font-weight: 800; color: var(--bg); background: var(--amber); width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step h3 { font-size: 18px; letter-spacing: -0.01em; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--text-dim); line-height: 1.55; }

.trades { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.trade { font-size: 15px; font-weight: 600; padding: 12px 22px; background: var(--bg-card); border: 1px solid var(--edge); border-radius: 100px; display: inline-flex; align-items: center; gap: 9px; }
.trade svg { width: 16px; height: 16px; color: var(--amber); }

.math-box {
  background: linear-gradient(160deg, var(--bg-card), var(--bg-raise));
  border: 1px solid var(--edge-bright); border-radius: 24px;
  padding: 60px 48px; text-align: center; position: relative; overflow: hidden;
}
.math-box::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px; background: radial-gradient(ellipse, var(--amber-glow), transparent 70%);
  opacity: 0.5; filter: blur(30px);
}
.math-box > * { position: relative; }
.math-big { font-size: clamp(44px,7vw,78px); font-weight: 800; color: var(--amber); letter-spacing: -0.03em; line-height: 1; margin: 6px 0; }
.math-cap { font-size: 15px; color: var(--text-dim); margin-bottom: 34px; }
.math-box p { color: var(--text-dim); font-size: 17px; max-width: 50ch; margin: 0 auto 34px; line-height: 1.6; }
.math-box p strong { color: var(--text); }

.final { padding: 100px 0; text-align: center; position: relative; }
.final .lead { margin: 0 auto 12px; }
.phone-display { font-size: clamp(28px,4vw,42px); font-weight: 800; color: var(--text); letter-spacing: -0.02em; margin: 32px 0 8px; }
.phone-display a { color: var(--text); text-decoration: none; }
.phone-sub { font-size: 14px; color: var(--text-faint); margin-bottom: 32px; }

footer { border-top: 1px solid var(--edge); padding: 44px 0 36px; }
.foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.foot-logo { font-size: 21px; font-weight: 800; letter-spacing: -0.03em; }
.foot-logo span { color: var(--amber); }
.foot p { font-size: 13.5px; color: var(--text-faint); }

@media (max-width: 880px) {
  .strip-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--edge); }
  .stat:nth-child(2) { border-right: none; }
  .pcards, .steps { grid-template-columns: 1fr; }
  .math-box { padding: 44px 24px; }
  .hero { padding: 56px 0 48px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}
