:root {
  --ink: #0F172A;
  --muted: #5B6B82;
  --subtle: #E7EEF8;
  --line: #DCE6F3;
  --paper: #FFFFFF;
  --canvas: #F6F9FD;
  --brand: #1A3A8B;
  --brand-2: #2D7FD1;
  --brand-3: #4E95D9;
  --success: #0F8A5F;
  --danger: #B42318;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius: 28px;
  --font: Aptos, Calibri, "Segoe UI", Inter, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(78, 149, 217, 0.25), transparent 36rem),
    radial-gradient(circle at 85% 18%, rgba(26, 58, 139, 0.12), transparent 28rem),
    linear-gradient(180deg, #FFFFFF 0%, var(--canvas) 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.site-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(220, 230, 243, 0.9);
  border-radius: 25px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
}
.brand img { display: block; width: 174px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 14px; font-weight: 700; }
.nav-links a:hover { color: var(--brand); }
.nav-cta { padding: 11px 18px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 14px; font-weight: 800; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 46px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 76px 0 58px;
}
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 0 9px rgba(78, 149, 217, 0.16);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 830px;
  margin: 18px 0 22px;
  font-size: clamp(3rem, 7vw, 6.45rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 900;
}
.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.52;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 0;
  border-radius: 20px;
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
}
.button.primary { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%); color: #fff; box-shadow: 0 20px 46px rgba(45, 127, 209, 0.28); }
.button.secondary { background: #fff; color: var(--brand); border: 1px solid var(--line); }
.button.full { width: 100%; }
.phone-card {
  position: relative;
  border-radius: 38px;
  padding: 22px;
  background: linear-gradient(180deg, #10214A 0%, #0F172A 100%);
  box-shadow: 0 36px 110px rgba(15, 23, 42, 0.34);
  color: #fff;
  overflow: hidden;
}
.phone-card::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(78, 149, 217, 0.28);
  filter: blur(8px);
}
.phone-top { position: relative; display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.phone-top img { width: 48px; height: 48px; border-radius: 16px; }
.phone-top strong { display: block; font-size: 18px; }
.phone-top span { color: #A8B8D8; font-size: 13px; }
.balance-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, #2563EB 0%, #3B82F6 50%, #60A5FA 100%);
  box-shadow: 0 22px 50px rgba(45, 127, 209, 0.28);
}
.balance-card span, .balance-card small { display: block; color: rgba(255,255,255,0.82); }
.balance-card strong { display: block; margin: 9px 0; font-size: 38px; letter-spacing: -0.05em; }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.quick-grid div {
  padding: 18px;
  min-height: 104px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}
.quick-grid strong { display: block; margin-bottom: 8px; }
.quick-grid span { color: #A8B8D8; font-size: 13px; line-height: 1.35; }
.countdown-section, .wallet-section, .register-section { padding: 64px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 24px; }
.section-heading h2 { max-width: 760px; margin: 6px 0 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -0.055em; }
.section-heading.narrow { display: block; max-width: 800px; }
.section-heading.narrow p:last-child { color: var(--muted); font-size: 18px; line-height: 1.55; }
.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.countdown div {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}
.countdown strong { display: block; font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 0.95; letter-spacing: -0.06em; color: var(--brand); }
.countdown span { display: block; margin-top: 10px; color: var(--muted); font-weight: 800; }
.flow-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.flow-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}
.icon-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 46px;
  border-radius: 16px;
  background: var(--subtle);
  color: var(--brand);
  font-weight: 900;
}
.flow-grid h3 { margin-bottom: 12px; font-size: 24px; letter-spacing: -0.035em; }
.flow-grid p { color: var(--muted); line-height: 1.55; }
.register-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 26px;
  padding: 24px;
  border-radius: 38px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}
.register-copy { padding: 28px; }
.register-copy h2 { margin: 8px 0 18px; font-size: clamp(2rem, 3.6vw, 3.4rem); line-height: 1; letter-spacing: -0.06em; }
.register-copy p { color: #CBD5E1; line-height: 1.55; }
.trust-card { margin-top: 30px; padding: 20px; border-radius: 22px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
.trust-card strong, .trust-card span { display: block; }
.trust-card span { margin-top: 7px; color: #CBD5E1; line-height: 1.5; }
.interest-form {
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
}
.interest-form label { display: block; margin-bottom: 15px; }
.interest-form label span { display: block; margin-bottom: 8px; color: #334155; font-size: 13px; font-weight: 900; }
input, select, textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #F8FAFC;
  color: var(--ink);
  font: inherit;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--brand-2); box-shadow: 0 0 0 4px rgba(45,127,209,0.12); }
textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consent { display: grid !important; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.consent input { width: 18px; height: 18px; margin-top: 2px; }
.consent span { margin: 0 !important; line-height: 1.45; color: var(--muted) !important; font-weight: 700 !important; }
.form-alert { margin-bottom: 16px; padding: 13px 15px; border-radius: 16px; font-weight: 800; }
.form-alert.success { background: rgba(15,138,95,0.1); color: var(--success); border: 1px solid rgba(15,138,95,0.18); }
.form-alert.error { background: rgba(180,35,24,0.08); color: var(--danger); border: 1px solid rgba(180,35,24,0.18); }
.hidden-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 34px 0 42px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}
.footer img { width: 28px; height: 28px; }
.footer p { margin: 0; }
.footer a { color: var(--brand); }
@media (max-width: 900px) {
  .nav { border-radius: 24px; align-items: flex-start; }
  .nav-links { display: none; }
  .brand img { width: 152px; }
  .hero { grid-template-columns: 1fr; padding-top: 54px; gap: 30px; min-height: auto; }
  .phone-card { max-width: 520px; width: 100%; margin: 0 auto; }
  .section-heading { display: block; }
  .countdown { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow-grid { grid-template-columns: 1fr; }
  .register-panel { grid-template-columns: 1fr; }
  .register-copy { padding: 14px; }
}
@media (max-width: 560px) {
  .site-shell { width: min(100% - 22px, 1180px); }
  .nav { top: 8px; padding: 10px; }
  .nav-cta { padding: 10px 12px; font-size: 12px; }
  h1 { font-size: clamp(2.65rem, 17vw, 4.6rem); }
  .hero-actions .button { width: 100%; }
  .countdown { gap: 10px; }
  .countdown div { padding: 18px; border-radius: 20px; }
  .quick-grid, .form-row { grid-template-columns: 1fr; }
  .register-panel { padding: 12px; border-radius: 28px; }
  .interest-form { padding: 18px; border-radius: 22px; }
  .footer { flex-direction: column; }
}
