/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --navy:   #0d1b4b;
  --blue:   #1a3aff;
  --sky:    #4a7bff;
  --bright: #5c9fff;
  --white:  #ffffff;
  --off:    #f0f4ff;
  --muted:  rgba(255,255,255,.55);
  --glass:  rgba(255,255,255,.07);
  --glow:   rgba(90,160,255,.25);
  --radius: 16px;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── ANIMATED BACKGROUND ───────────────────────────── */
.bg-canvas {
  position: fixed; inset: 0; z-index: 0; overflow: hidden;
}
.bg-canvas::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(26,58,255,.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(90,160,255,.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(13,27,75,1) 0%, transparent 80%);
  animation: bgPulse 8s ease-in-out infinite alternate;
}
@keyframes bgPulse {
  from { opacity: .8; }
  to   { opacity: 1; }
}

/* Grid overlay */
.grid-overlay {
  position: fixed; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(90,160,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,160,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Floating orbs */
.orb {
  position: fixed; border-radius: 50%; filter: blur(80px);
  animation: drift linear infinite;
  pointer-events: none; z-index: 0;
}
.orb-1 { width: 400px; height: 400px; background: rgba(26,58,255,.15); top: -120px; left: -80px; animation-duration: 20s; }
.orb-2 { width: 300px; height: 300px; background: rgba(90,160,255,.12); bottom: 10%; right: -60px; animation-duration: 26s; animation-delay: -8s; }
.orb-3 { width: 200px; height: 200px; background: rgba(26,58,255,.1); top: 55%; left: 30%; animation-duration: 18s; animation-delay: -5s; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.05); }
  66%      { transform: translate(-20px,30px) scale(.95); }
}

/* ── LAYOUT ─────────────────────────────────────────── */
.wrapper {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
  min-height: 100vh;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,27,75,.65);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(90,160,255,.12);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; font-family: var(--font-display);
  color: var(--white);
  box-shadow: 0 0 20px rgba(26,58,255,.5);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.3px;
}
.nav-logo-text span { color: var(--sky); }
.nav-badge {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(26,58,255,.25);
  border: 1px solid rgba(90,160,255,.4);
  color: var(--bright);
  padding: 5px 12px; border-radius: 99px;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  padding-top: 160px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 0;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass);
  border: 1px solid rgba(90,160,255,.25);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 12px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--bright);
  margin-bottom: 36px;
  animation: fadeUp .8s ease both;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--bright);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 8vw, 96px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -3px;
  margin-bottom: 28px;
  animation: fadeUp .9s .1s ease both;
}
.hero-title .line-blue { color: var(--sky); }
.hero-title .line-outline {
  -webkit-text-stroke: 2px rgba(90,160,255,.5);
  color: transparent;
}

.hero-sub {
  max-width: 600px;
  font-size: clamp(16px, 2.5vw, 19px);
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 60px;
  font-weight: 300;
  animation: fadeUp 1s .2s ease both;
}

@keyframes fadeUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── PILLARS ─────────────────────────────────────────── */
.pillars {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 72px;
  animation: fadeUp 1s .3s ease both;
}
.pillar {
  display: flex; align-items: center; gap: 8px;
  background: var(--glass);
  border: 1px solid rgba(90,160,255,.2);
  border-radius: 99px;
  padding: 10px 20px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: all .25s;
}
.pillar:hover {
  background: rgba(26,58,255,.2);
  border-color: rgba(90,160,255,.5);
  transform: translateY(-2px);
}
.pillar-icon { font-size: 16px; }

/* ── COUNTDOWN ───────────────────────────────────────── */
.countdown-section {
  width: 100%; max-width: 760px;
  margin-bottom: 72px;
  animation: fadeUp 1s .4s ease both;
}
.countdown-label {
  text-align: center;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--bright);
  margin-bottom: 24px;
  opacity: .8;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cd-block {
  background: var(--glass);
  border: 1px solid rgba(90,160,255,.18);
  border-radius: var(--radius);
  padding: 28px 12px 20px;
  text-align: center;
  position: relative; overflow: hidden;
  transition: border-color .3s;
  backdrop-filter: blur(10px);
}
.cd-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
  opacity: .6;
}
.cd-block:hover { border-color: rgba(90,160,255,.45); }
.cd-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
  display: block;
  text-shadow: 0 0 30px rgba(90,160,255,.4);
  transition: all .3s;
}
.cd-unit {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--bright);
  margin-top: 10px;
  opacity: .75;
}

/* ── WAITLIST FORM ───────────────────────────────────── */
.waitlist-section {
  width: 100%; max-width: 580px;
  margin-bottom: 100px;
  animation: fadeUp 1s .5s ease both;
}
.waitlist-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(90,160,255,.2);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
}
.waitlist-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90,160,255,.6), transparent);
}
.waitlist-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.waitlist-desc {
  font-size: 14px; color: var(--muted);
  margin-bottom: 28px; line-height: 1.6;
}

.form-row {
  display: flex; flex-direction: column; gap: 14px;
}
.form-field {
  position: relative;
}
.form-field label {
  display: block;
  font-size: 12px; font-weight: 500;
  letter-spacing: .8px; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.form-field input, .form-field select {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(90,160,255,.2);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  -webkit-appearance: none;
}
.form-field select option { background: var(--navy); color: var(--white); }
.form-field input::placeholder { color: rgba(255,255,255,.25); }
.form-field input:focus,
.form-field select:focus {
  border-color: rgba(90,160,255,.6);
  box-shadow: 0 0 0 3px rgba(90,160,255,.12);
}
.form-field select { cursor: pointer; }

.form-double { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.btn-join {
  margin-top: 6px;
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
  border: none; border-radius: 12px;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 30px rgba(26,58,255,.5);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  letter-spacing: .3px;
  position: relative; overflow: hidden;
}
.btn-join::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.btn-join:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(26,58,255,.65); }
.btn-join:hover::after { opacity: 1; }
.btn-join:active { transform: translateY(0); }
.btn-join.loading { pointer-events: none; opacity: .75; }

.waitlist-note {
  text-align: center;
  font-size: 12px; color: rgba(255,255,255,.3);
  margin-top: 16px;
  line-height: 1.6;
}
.waitlist-note a { color: var(--bright); text-decoration: none; }
.waitlist-note a:hover { text-decoration: underline; }

/* ── FEATURES STRIP ──────────────────────────────────── */
.features-strip {
  width: 100%; max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 100px;
  animation: fadeUp 1s .6s ease both;
}
.feat-card {
  background: var(--glass);
  border: 1px solid rgba(90,160,255,.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: all .3s;
  backdrop-filter: blur(8px);
}
.feat-card:hover {
  border-color: rgba(90,160,255,.35);
  background: rgba(26,58,255,.1);
  transform: translateY(-4px);
}
.feat-icon {
  font-size: 28px; margin-bottom: 14px;
  display: block;
}
.feat-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.2px;
}
.feat-body {
  font-size: 13px; color: var(--muted);
  line-height: 1.6;
}

/* ── SOCIAL STRIP ────────────────────────────────────── */
.social-strip {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 60px;
  animation: fadeUp 1s .7s ease both;
}
.social-link {
  display: flex; align-items: center; gap: 8px;
  background: var(--glass);
  border: 1px solid rgba(90,160,255,.15);
  border-radius: 99px;
  padding: 10px 20px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: all .25s;
}
.social-link:hover {
  background: rgba(26,58,255,.2);
  border-color: rgba(90,160,255,.4);
  color: var(--white);
  transform: translateY(-2px);
}
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  width: 100%;
  border-top: 1px solid rgba(90,160,255,.1);
  padding: 40px 0 32px;
  position: relative; z-index: 1;

  /* Darker transparent background */
  background: rgba(5, 10, 35, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  letter-spacing: -.5px; margin-bottom: 12px;
}
.footer-brand .logo-text span { color: var(--sky); }
.footer-brand p {
  font-size: 13px; color: var(--muted);
  line-height: 1.7; max-width: 220px;
}
.footer-tagline {
  margin-top: 16px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(90,160,255,.6);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(90,160,255,.08);
}
.footer-copy {
  font-size: 13px; color: rgba(255,255,255,.3);
}
.footer-copy strong { color: rgba(255,255,255,.55); }
.footer-legal {
  display: flex; gap: 20px;
}
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,.3);
  text-decoration: none; transition: color .2s;
  cursor: pointer;
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── INFO MODAL OVERLAY ──────────────────────────────── */
.info-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(4, 8, 28, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.info-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Modal shell — flex column, never taller than viewport */
.info-modal {
  background: linear-gradient(145deg, rgba(15,25,70,.98), rgba(8,14,48,.98));
  border: 1px solid rgba(90,160,255,.28);
  border-radius: 24px;
  max-width: 520px; width: 100%;
  max-height: calc(100dvh - 40px);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 40px 80px rgba(0,0,0,.5),
    0 0 60px rgba(26,58,255,.15);
  transform: translateY(20px) scale(.97);
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .3s ease;
}
.info-modal::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90,160,255,.7), transparent);
  pointer-events: none; z-index: 1;
}
.info-overlay.active .info-modal {
  transform: translateY(0) scale(1);
}

/* ── Header: badge + close button — never scrolls away ── */
.info-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 0;
  flex-shrink: 0;
}
.info-modal-badge {
  display: inline-flex; align-items: center;
  background: rgba(26,58,255,.2);
  border: 1px solid rgba(90,160,255,.3);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bright);
}
.info-modal-close {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px; line-height: 1;
  color: rgba(255,255,255,.5);
  transition: all .2s;
}
.info-modal-close:hover {
  background: rgba(255,255,255,.13);
  color: var(--white);
}

/* ── Scrollable body ── */
.info-modal-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 24px 36px 16px;
}
/* thin custom scrollbar on webkit */
.info-modal-scroll::-webkit-scrollbar { width: 4px; }
.info-modal-scroll::-webkit-scrollbar-track { background: transparent; }
.info-modal-scroll::-webkit-scrollbar-thumb {
  background: rgba(90,160,255,.25); border-radius: 99px;
}

.info-modal-icon {
  width: 52px; height: 52px;
  background: rgba(26,58,255,.2);
  border: 1px solid rgba(90,160,255,.3);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.info-modal-title {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 12px;
  color: var(--white);
}
.info-modal-body {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
}
.info-modal-body strong { color: rgba(255,255,255,.9); }
.info-modal-body p + p { margin-top: 10px; }
.info-modal-body ul {
  margin: 12px 0 0 0;
  padding-left: 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.info-modal-body ul li { color: rgba(255,255,255,.6); }

/* ── Sticky footer actions — never scrolls away ── */
.info-modal-actions {
  flex-shrink: 0;
  display: flex; gap: 10px;
  padding: 16px 36px 28px;
  background: linear-gradient(to top, rgba(8,14,48,1) 60%, transparent);
}
.info-modal-btn-primary {
  flex: 1;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border: none; border-radius: 10px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(26,58,255,.4);
}
.info-modal-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(26,58,255,.55);
}
.info-modal-btn-ghost {
  padding: 13px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: all .25s;
}
.info-modal-btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

/* ── Mobile portrait: bottom-sheet style ── */
@media (max-width: 768px) {
  .info-overlay { padding: 0; align-items: flex-end; }
  .info-modal {
    max-width: 100%;
    max-height: 90dvh;
    border-radius: 24px 24px 0 0;
  }
  .info-modal-header { padding: 18px 20px 0; }
  .info-modal-scroll { padding: 20px 20px 12px; }
  .info-modal-title { font-size: 18px; }
  .info-modal-actions {
    flex-direction: column;
    padding: 14px 20px 32px;      /* extra bottom for home-indicator bar */
  }
}

/* ── Landscape phones: centre, compact ── */
@media (max-height: 500px) and (orientation: landscape) {
  .info-overlay { align-items: center; padding: 8px; }
  .info-modal {
    max-height: 96dvh;
    border-radius: 16px;
    max-width: 90vw;
  }
  .info-modal-header { padding: 12px 20px 0; }
  .info-modal-scroll { padding: 14px 24px 8px; }
  .info-modal-icon { width: 36px; height: 36px; font-size: 18px; margin-bottom: 10px; }
  .info-modal-title { font-size: 15px; margin-bottom: 8px; }
  .info-modal-body { font-size: 12.5px; }
  .info-modal-actions { padding: 10px 24px 16px; flex-direction: row; }
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-badge { display: none; }

  /* ── Mobile hero centering ── */
  .hero {
    padding-top: 120px;
    align-items: center;
    text-align: center;
  }
  .hero-title {
    /* Significantly smaller on mobile to prevent clipping */
    font-size: clamp(38px, 11vw, 58px);
    letter-spacing: -1.5px;
    line-height: 1.0;
    width: 100%;
    text-align: center;
    word-break: break-word;
  }
  .hero-sub {
    font-size: 15px;
    text-align: center;
    padding: 0 4px;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 1.2px;
    text-align: center;
  }
  .pillars {
    justify-content: center;
  }

  /* ── Countdown mobile ── */
  .countdown-grid { gap: 8px; }
  .cd-block { padding: 14px 6px 12px; border-radius: 12px; }
  .cd-num {
    font-size: clamp(22px, 6vw, 34px);
    letter-spacing: -1px;
  }
  .cd-unit {
    font-size: 9px;
    letter-spacing: 1px;
    margin-top: 6px;
  }

  .form-double { grid-template-columns: 1fr; }
  .waitlist-card { padding: 28px 22px; }
  .features-strip { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  /* ── Info Modal mobile ── */
  .info-modal { padding: 36px 24px 28px; }
  .info-modal-title { font-size: 18px; }
  .info-modal-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .wrapper { padding: 0 16px; }

  .hero-title {
    font-size: clamp(32px, 10vw, 48px);
    letter-spacing: -1px;
    line-height: 1.05;
  }
  .hero-title .line-outline {
    -webkit-text-stroke: 1.5px rgba(90,160,255,.5);
  }

  .countdown-grid { gap: 6px; }
  .cd-block { padding: 12px 4px 10px; border-radius: 10px; }
  .cd-num {
    font-size: clamp(20px, 7.5vw, 30px);
    letter-spacing: -.5px;
  }
  .cd-unit {
    font-size: 8px;
    letter-spacing: .8px;
    margin-top: 4px;
  }
  .countdown-label { font-size: 10px; letter-spacing: 1.5px; }

  .footer-grid { grid-template-columns: 1fr; }
  .features-strip { gap: 12px; }
  .social-strip { gap: 10px; }
  .social-link { padding: 8px 14px; font-size: 12px; }
  .pillar { padding: 8px 14px; font-size: 13px; }
}

/* ── SWAL CUSTOM ─────────────────────────────────────── */
.swal2-popup {
  font-family: var(--font-body) !important;
  border-radius: 20px !important;
  background: #0d1b4b !important;
  border: 1px solid rgba(90,160,255,.25) !important;
  color: #fff !important;
}
.swal2-title { color: #fff !important; font-family: 'Syne', sans-serif !important; }
.swal2-html-container { color: rgba(255,255,255,.7) !important; }
.swal2-confirm {
  background: linear-gradient(135deg, #1a3aff 0%, #4a7bff 100%) !important;
  border-radius: 10px !important;
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(26,58,255,.4) !important;
}
.swal2-icon.swal2-success .swal2-success-ring { border-color: #4a7bff !important; }
.swal2-icon.swal2-success [class^="swal2-success-line"] { background-color: #4a7bff !important; }

/* scroll progress */
#scroll-bar {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9999;
  background: linear-gradient(90deg, var(--blue), var(--bright));
  transition: width .1s linear;
  width: 0%;
}