:root {
  --bg: #02070d;
  --bg-2: #060d15;
  --panel: #0a1420;
  --panel-2: #0d1725;
  --line: rgba(184, 209, 255, .14);
  --line-strong: rgba(184, 209, 255, .24);
  --text: #f5f7fb;
  --muted: #9aa9bf;
  --soft: #ccd6e4;
  --violet: #9a7cff;
  --violet-2: #c7b8ff;
  --cyan: #28c7f7;
  --green: #2ee37b;
  --gold: #ffdb82;
  --danger: #ff6b7a;
  --shadow: 0 30px 90px rgba(0, 0, 0, .45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(154, 124, 255, .18), transparent 32rem),
    radial-gradient(circle at 82% 16%, rgba(40, 199, 247, .10), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, #030811 36%, #02070d 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.12));
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0; color: var(--muted); line-height: 1.75; }
strong { color: var(--text); }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 99;
  background: var(--gold);
  color: #111;
  padding: 12px 16px;
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(2, 7, 13, .72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 15px;
}
.brand-mark {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--violet-2);
}
.brand-mark svg, .brand-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--soft);
  font-size: 14px;
}
.nav-links a { opacity: .82; transition: opacity .2s ease, color .2s ease; }
.nav-links a:hover { opacity: 1; color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  background: rgba(255,255,255,.03);
}
.lang-switch a {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
}
.lang-switch a.active {
  background: rgba(154,124,255,.18);
  color: var(--text);
  border: 1px solid rgba(154,124,255,.28);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 900;
  letter-spacing: -.01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.07); }
.btn.primary {
  background: linear-gradient(135deg, var(--gold), #ffeab1);
  color: #161107;
  border-color: rgba(255,219,130,.65);
}
.btn.ghost { background: transparent; }
.btn.block { width: 100%; }

main { overflow: hidden; }
.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}
.section.compact { padding: 58px 0; }
.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 30px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 24px currentColor;
}
h1, h2, h3 { margin: 0; letter-spacing: -.045em; }
h1 {
  font-size: clamp(48px, 9vw, 112px);
  line-height: .88;
  max-width: 1000px;
}
h2 { font-size: clamp(34px, 6vw, 72px); line-height: .94; }
h3 { font-size: 22px; line-height: 1.1; }
.lead {
  color: #d8e0ec;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  max-width: 780px;
}
.hero {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 42px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  gap: 28px;
  align-items: stretch;
}
.hero-copy {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.015)),
    radial-gradient(circle at 10% 0%, rgba(154,124,255,.2), transparent 24rem),
    var(--panel);
  box-shadow: var(--shadow);
}
.hero-copy::after {
  content: "";
  position: absolute;
  right: -14%;
  top: -24%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(154,124,255,.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,124,255,.14), transparent 64%);
  pointer-events: none;
}
.hero-title-accent {
  display: block;
  color: var(--gold);
  text-shadow: 0 0 42px rgba(255,219,130,.2);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-micro {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.hero-micro span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-micro span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.hero-panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(154,124,255,.18), transparent 22rem),
    linear-gradient(180deg, rgba(10,20,32,.88), rgba(5,12,20,.96));
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  align-content: stretch;
}
.summit-visual {
  min-height: 100%;
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  gap: 24px;
  align-content: center;
}
.summit-mark {
  min-height: 260px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 50% 38%, rgba(40,199,247,.12), transparent 12rem),
    radial-gradient(circle at 42% 18%, rgba(255,219,130,.1), transparent 10rem),
    rgba(2,7,13,.55);
}
.summit-ridge {
  width: min(320px, 92%);
  filter: drop-shadow(0 26px 52px rgba(0,0,0,.38));
}
.summit-visual-copy {
  display: grid;
  gap: 10px;
}
.summit-visual-copy .kicker {
  color: var(--cyan);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.visual-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.visual-points span {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
}

.countdown-card {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  max-width: 760px;
  padding: 18px;
  border: 1px solid rgba(255,219,130,.2);
  border-radius: 24px;
  background: rgba(255,219,130,.06);
}
.countdown-meta {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.countdown-meta strong { color: var(--gold); }
.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(84px, 1fr));
  gap: 10px;
}
.countdown .unit {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 16px 12px;
  background: rgba(2,7,13,.55);
  text-align: center;
}
.countdown .number {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  font-weight: 950;
  color: var(--text);
  letter-spacing: -.06em;
}
.countdown .label {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}
.coming-soon-card {
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(154,124,255,.25);
  background: linear-gradient(135deg, rgba(154,124,255,.18), rgba(40,199,247,.05));
}
.coming-soon-card .big {
  font-size: clamp(38px, 7vw, 76px);
  font-weight: 950;
  letter-spacing: -.06em;
  line-height: .9;
  color: var(--violet-2);
}

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(10, 20, 32, .72);
  padding: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(154,124,255,.12), transparent 18rem);
  pointer-events: none;
}
.card > * { position: relative; }
.card.highlight { border-color: rgba(255,219,130,.32); background: rgba(255,219,130,.07); }
.card.cyan { border-color: rgba(40,199,247,.25); }
.card.green { border-color: rgba(46,227,123,.22); }
.card.violet { border-color: rgba(154,124,255,.25); }
.card .kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--cyan);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.card h3 { margin-bottom: 12px; }
.statline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.stat {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  padding: 16px;
}
.stat b { display: block; font-size: 28px; letter-spacing: -.04em; }
.stat span { display: block; color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.summit-band {
  width: min(1380px, calc(100% - 32px));
  margin: 20px auto 0;
  min-height: 220px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,20,32,.5), rgba(10,20,32,.96)),
    radial-gradient(circle at 72% 0%, rgba(40,199,247,.12), transparent 22rem);
  position: relative;
}
.summit-band svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .74; }
.band-copy {
  position: absolute;
  left: clamp(20px, 4vw, 54px);
  bottom: clamp(18px, 3vw, 38px);
  display: grid;
  gap: 6px;
  max-width: 520px;
}
.band-copy strong { font-size: clamp(24px, 4vw, 46px); letter-spacing: -.05em; line-height: .95; }
.band-copy span { color: var(--gold); font-weight: 900; }
.compact-list { margin-top: 16px; }

.price {
  display: grid;
  gap: 12px;
}
.price-main { display: flex; align-items: flex-end; gap: 8px; }
.price-main b { font-size: clamp(54px, 8vw, 96px); letter-spacing: -.08em; line-height: .88; color: var(--gold); }
.price-main span { color: var(--soft); font-weight: 900; padding-bottom: 10px; }
.check-list { display: grid; gap: 10px; padding: 0; margin: 20px 0 0; list-style: none; }
.check-list li { color: var(--soft); line-height: 1.55; display: grid; grid-template-columns: 24px 1fr; gap: 10px; }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 950; }

.form-card form, .legal-form {
  display: grid;
  gap: 12px;
}
.field { display: grid; gap: 8px; }
label { color: var(--soft); font-size: 13px; font-weight: 900; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(2,7,13,.72);
  color: var(--text);
  border-radius: 16px;
  min-height: 48px;
  padding: 12px 14px;
  outline: none;
}
textarea { min-height: 132px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: rgba(154,124,255,.7); box-shadow: 0 0 0 4px rgba(154,124,255,.11); }
.honeypot { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }
.form-note { font-size: 12px; color: var(--muted); line-height: 1.55; }
.form-status { min-height: 22px; font-size: 13px; color: var(--gold); font-weight: 800; }

.legal-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 96px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(10,20,32,.72);
  padding: 14px;
}
.legal-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.legal-nav a:hover { background: rgba(255,255,255,.04); color: var(--text); }
.legal-content {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(10,20,32,.72);
  padding: clamp(24px, 4vw, 46px);
}
.legal-content h1 { font-size: clamp(42px, 7vw, 82px); margin-bottom: 18px; }
.legal-content h2 { font-size: clamp(26px, 4vw, 38px); margin: 40px 0 14px; }
.legal-content h3 { margin: 24px 0 10px; }
.legal-content p, .legal-content li { color: var(--soft); line-height: 1.8; }
.legal-content ul, .legal-content ol { display: grid; gap: 10px; padding-left: 22px; }
.notice {
  border-radius: 20px;
  border: 1px solid rgba(255,219,130,.25);
  background: rgba(255,219,130,.07);
  padding: 16px;
  color: var(--soft);
}
.placeholder {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255,107,122,.12);
  border: 1px solid rgba(255,107,122,.22);
  color: #ff9aa4;
  font-weight: 900;
}
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { padding: 14px; border-bottom: 1px solid rgba(255,255,255,.08); text-align: left; vertical-align: top; color: var(--soft); line-height: 1.55; }
th { color: var(--text); background: rgba(255,255,255,.04); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
tr:last-child td { border-bottom: 0; }

.footer {
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.18);
  margin-top: 60px;
}
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.footer-links h4 { margin: 0 0 12px; color: var(--text); }
.footer-links a { display: block; color: var(--muted); margin: 8px 0; font-size: 14px; }
.footer-links a:hover { color: var(--text); }
.copyright { color: var(--muted); font-size: 13px; margin-top: 16px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-grid, .grid-3, .grid-2, .legal-layout, .footer-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .legal-nav { position: static; }
}
@media (max-width: 640px) {
  .hero { padding-top: 36px; }
  .section { padding: 64px 0; }
  .hero-copy { padding: 28px; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .statline { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .lang-switch { margin-left: auto; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* v3 — sharper landing copy and app-icon focused brand direction */
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.logo-showcase .summit-mark { min-height: 300px; }
.app-icon-frame {
  position: relative;
  border-radius: 34px;
  background:
    radial-gradient(circle at 56% 32%, rgba(255,219,130,.12), transparent 10rem),
    radial-gradient(circle at 44% 70%, rgba(40,199,247,.12), transparent 12rem),
    linear-gradient(145deg, rgba(8,17,29,.98), rgba(2,7,13,.86));
}
.app-icon-frame::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, rgba(154,124,255,.08), rgba(255,255,255,.012));
}
.app-icon-frame .new-logo { position: relative; z-index: 1; }
.punch-grid .card h3 { color: var(--text); }
.launch-line { color: var(--gold); font-weight: 950; margin-top: 16px; }
.brand-mark { color: var(--violet-2); }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-4 { grid-template-columns: 1fr; } }

/* v4 — supplied SummitFlag logo integration */
.brand-mark { width: 30px; height: 30px; }
.brand-mark img { box-shadow: 0 0 18px rgba(40,199,247,.12); }
.app-icon-frame .summit-logo-wide {
  position: relative;
  z-index: 1;
  width: min(540px, 98%);
  max-height: 320px;
  object-fit: contain;
  border-radius: 26px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.44));
}
.logo-showcase .summit-mark { padding: 12px; }
