:root {
  --brand: #185FFA;
  --brand-hover: #0F4FE0;
  --brand-50: #EEF3FF;
  --brand-100: #DCE7FF;
  --brand-soft: #F0F4FF;
  --ink-900: #0A1F44;
  --ink-800: #14274F;
  --ink-700: #1A2438;
  --ink-600: #3B4660;
  --ink-500: #5C6478;
  --ink-400: #7B8395;
  --ink-300: #98A0B0;
  --ink-200: #C9CFDB;
  --green-500: #00C896;
  --green-600: #00A87E;
  --green-100: #DEFAF1;
  --green-50: #ECFCF6;
  --red-500: #FF4747;
  --amber-500: #F5A623;
  --bg: #F5F6FA;
  --bg-soft: #FAFBFD;
  --surface: #FFFFFF;
  --border: rgba(10, 31, 68, 0.07);
  --border-strong: rgba(10, 31, 68, 0.12);
  --border-focus: rgba(24, 95, 250, 0.3);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --sh-card: 0 1px 2px rgba(10, 31, 68, 0.04), 0 8px 24px rgba(10, 31, 68, 0.05);
  --sh-widget: 0 4px 12px rgba(10, 31, 68, 0.04), 0 32px 64px rgba(10, 31, 68, 0.08);
  --sh-hover: 0 4px 8px rgba(10, 31, 68, 0.04), 0 16px 32px rgba(10, 31, 68, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: 'Satoshi', -apple-system, sans-serif;
  color: var(--ink-700);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== ATMOSPHERE ===== */
.bg-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(24, 95, 250, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(0, 200, 150, 0.08), transparent 55%),
    linear-gradient(180deg, #F5F6FA 0%, #FAFBFD 50%, #F5F6FA 100%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(10, 31, 68, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 68, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 246, 250, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(24, 95, 250, 0.3);
}

.logo-text {
  font-weight: 700;
  font-size: 20px;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-800);
  box-shadow: var(--sh-card);
}

.launch-pill i {
  color: var(--brand);
  font-size: 15px;
}

.nav-cta {
  background: var(--ink-900);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cta:hover {
  background: var(--ink-800);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 64px 0 72px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 26px;
  box-shadow: var(--sh-card);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  position: relative;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--green-500);
  opacity: 0.35;
  animation: pulse 2s ease-out infinite;
}

.live-pill .count {
  color: var(--ink-900);
  font-weight: 700;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.35;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.hero h1 {
  font-size: clamp(40px, 5.2vw, 62px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink-900);
  margin-bottom: 22px;
}

.hero h1 .grad {
  background: linear-gradient(120deg, var(--brand) 0%, #6E8DFF 55%, var(--green-500) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 30px;
}

/* waitlist form */
.wl-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin-bottom: 14px;
}

.wl-input {
  flex: 1;
  padding: 15px 18px;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-900);
  outline: none;
  transition: all 0.15s;
}

.wl-input::placeholder {
  color: var(--ink-300);
}

.wl-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--border-focus);
}

.wl-btn {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 15px 26px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.wl-btn:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(24, 95, 250, 0.3);
}

.wl-btn:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.wl-note {
  font-size: 14px;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wl-note i {
  color: var(--green-600);
  font-size: 16px;
}

.wl-error {
  font-size: 13px;
  color: var(--red-500);
  margin-top: 8px;
  font-weight: 500;
  display: none;
}

/* success state */
.wl-success {
  display: none;
  max-width: 480px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  animation: fadeUp 0.4s ease;
}

.wl-success.show {
  display: block;
}

.wl-success-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.wl-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.wl-success-head h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

.wl-success p {
  font-size: 14px;
  color: var(--ink-600);
  margin-bottom: 16px;
}

.wl-position {
  font-family: 'JetBrains Mono', monospace;
  color: var(--brand);
  font-weight: 700;
}

.trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.trust-mini-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-mini-item i {
  color: var(--brand);
  font-size: 18px;
}

.trust-mini-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-800);
}

.trust-mini-item small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-400);
}

/* ===== GLOBE VISUAL ===== */
.globe-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.globe-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
}

.globe-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
}

.globe-ring.r2 {
  inset: 11%;
  opacity: 0.7;
}

.globe-ring.r3 {
  inset: 24%;
  opacity: 0.5;
}

.globe-core {
  position: absolute;
  inset: 36%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #6E8DFF, var(--brand) 70%);
  box-shadow: 0 20px 60px rgba(24, 95, 250, 0.4), inset 0 0 40px rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
}

.orbit {
  position: absolute;
  inset: 0;
  animation: spin 26s linear infinite;
}

.orbit.o2 {
  animation-duration: 38s;
  animation-direction: reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.node {
  position: absolute;
  width: 46px;
  height: 46px;
  margin: -23px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--sh-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.node .counter-spin {
  animation: spin 26s linear infinite reverse;
}

.pings {
  position: absolute;
  inset: 0;
}

.ping {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.5);
  animation: ping 2.6s ease-out infinite;
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.45);
    opacity: 1;
  }

  100% {
    box-shadow: 0 0 0 22px rgba(0, 200, 150, 0);
    opacity: 0.4;
  }
}

.float-stat {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--sh-widget);
}

.float-stat .fs-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.float-stat .fs-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.float-stat .fs-val .plus {
  color: var(--brand);
  font-size: 14px;
}

.float-stat.fs1 {
  top: 6%;
  left: -4%;
  animation: floaty 5s ease-in-out infinite;
}

.float-stat.fs2 {
  bottom: 8%;
  right: -4%;
  animation: floaty 5s ease-in-out infinite 1.5s;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

/* ===== COUNTDOWN ===== */
.countdown-section {
  padding: 14px 0 70px;
}

.countdown-card {
  background: linear-gradient(135deg, var(--ink-900) 0%, #14274F 100%);
  border-radius: var(--r-2xl);
  padding: 42px 40px;
  position: relative;
  overflow: hidden;
}

.countdown-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.22), transparent 70%);
}

.countdown-card::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -8%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 95, 250, 0.3), transparent 70%);
}

.cd-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cd-left .cd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 12px;
}

.cd-left h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.cd-left p {
  color: var(--ink-200);
  font-size: 15px;
  margin-top: 10px;
  max-width: 360px;
}

.cd-timer {
  display: flex;
  gap: 12px;
}

.cd-unit {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  padding: 16px 8px;
  min-width: 78px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.cd-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.cd-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ===== SECTION SHELL ===== */
.section {
  padding: 24px 0 64px;
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 16px;
  color: var(--ink-500);
}

/* corridor picker */
.corridor-bar {
  max-width: 820px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.corridor-hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-500);
}

.corridor-hint i {
  color: var(--brand);
  font-size: 17px;
}

.corridor-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.corridor-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
}

.corridor-count b {
  color: var(--brand);
}

.corridor-clear {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  padding: 0;
  display: none;
}

.corridor-clear.show {
  display: inline;
}

.corridor-clear:hover {
  text-decoration: underline;
}

.corridor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.corridor-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  user-select: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  outline: none;
}

.corridor-chip:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--sh-hover);
}

.corridor-chip:active {
  transform: translateY(0) scale(0.98);
}

.corridor-chip:focus-visible {
  box-shadow: 0 0 0 4px var(--border-focus);
  border-color: var(--brand);
}

.corridor-chip.selected {
  border-color: var(--brand);
  background: var(--brand-50);
  box-shadow: 0 0 0 3px var(--border-focus);
}

.corridor-flag {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: background 0.15s;
}

.corridor-chip.selected .corridor-flag {
  background: var(--brand-100);
}

.corridor-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-800);
  flex: 1;
  transition: color 0.15s;
}

.corridor-chip.selected .corridor-name {
  color: var(--brand);
}

.corridor-box {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 7px;
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  transition: all 0.15s;
}

.corridor-chip:hover .corridor-box {
  border-color: var(--brand);
}

.corridor-chip.selected .corridor-box {
  background: var(--brand);
  border-color: var(--brand);
}

.corridor-box i {
  opacity: 0;
  transform: scale(0.4);
  transition: all 0.15s ease;
}

.corridor-chip.selected .corridor-box i {
  opacity: 1;
  transform: scale(1);
}

.corridor-note {
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  color: var(--ink-400);
}

/* value tiles */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  box-shadow: var(--sh-card);
  transition: all 0.2s;
}

.value-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-hover);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--brand-50);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.value-icon.green {
  background: var(--green-100);
  color: var(--green-600);
}

.value-tile h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.value-tile p {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* referral block */
.referral-section {
  padding: 24px 0 72px;
}

.referral-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--brand) 0%, #4A82FF 100%);
  border-radius: var(--r-2xl);
  padding: 44px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.referral-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.3), transparent 70%);
}

.ref-inner {
  position: relative;
  z-index: 1;
}

.ref-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.referral-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.referral-card>.ref-inner>p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  max-width: 460px;
  margin: 0 auto 28px;
}

.ref-locked {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: var(--r-md);
  padding: 18px;
}

.ref-unlocked {
  display: none;
}

.ref-unlocked.show {
  display: block;
  animation: fadeUp 0.4s ease;
}

.ref-link-row {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 18px;
}

.ref-link-input {
  flex: 1;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: var(--r-md);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink-800);
  outline: none;
}

.ref-copy-btn {
  background: var(--ink-900);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.ref-copy-btn:hover {
  background: var(--ink-800);
}

.ref-share {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.ref-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 11px 18px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.ref-share-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
  background: var(--bg-soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-600);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-col a.soon {
  color: var(--ink-600);
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-col a.soon:hover {
  color: var(--ink-600);
}

.soon-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--amber-500);
  background: var(--amber-100);
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.footer-bottom {
  max-width: 1160px;
  margin: 36px auto 0;
  padding: 24px 28px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--ink-400);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-600);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.15s;
}

.footer-socials a:hover {
  color: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink-900);
  color: #fff;
  padding: 13px 22px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--sh-widget);
  z-index: 100;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 9px;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast i {
  color: var(--green-500);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .globe-wrap {
    min-height: 360px;
    order: -1;
  }

  .globe-card {
    max-width: 320px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cd-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cd-timer {
    width: 100%;
  }

  .cd-unit {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 40px 0 48px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .wl-form {
    flex-direction: column;
  }

  .wl-btn {
    justify-content: center;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .cd-num {
    font-size: 26px;
  }

  .cd-unit {
    padding: 12px 4px;
    min-width: 0;
  }

  .countdown-card,
  .referral-card {
    padding: 32px 22px;
  }

  .launch-pill {
    display: none;
  }

  .ref-link-row {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
  }
}

/* ===== APP PREVIEW ===== */
.app-section {
  padding: 24px 0 76px;
}
.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.app-copy h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 14px 0 16px;
}
.app-copy > p {
  font-size: 16px;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 28px;
}
.app-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}
.app-feat {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.app-feat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 11px;
  background: var(--brand-50);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.app-feat-icon.green {
  background: var(--green-100);
  color: var(--green-600);
}
.app-feat-txt {
  display: flex;
  flex-direction: column;
}
.app-feat-txt b {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 2px;
}
.app-feat-txt span {
  font-size: 14px;
  color: var(--ink-500);
}
.app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--ink-900);
  color: #fff;
  padding: 10px 18px;
  border-radius: 13px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-hover);
}
.store-badge svg {
  width: 22px;
  height: 22px;
}
.store-badge .sb-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.store-badge .sb-top {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.store-badge .sb-main {
  font-size: 15px;
  font-weight: 700;
}

/* phone mockup */
.app-phone-wrap {
  display: flex;
  justify-content: center;
}
.app-phone {
  position: relative;
  width: 300px;
  height: 604px;
  background: #0A1F44;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(10, 31, 68, 0.28), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}
.app-phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
  height: 26px;
  background: #0A1F44;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.app-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #EEF2FA 0%, #FFFFFF 32%);
  border-radius: 33px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.app-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-900);
}
.app-status-ic {
  display: inline-flex;
  gap: 5px;
  font-size: 13px;
  color: var(--ink-800);
}
.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px 14px;
}
.app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.app-logo {
  width: 26px;
  height: 26px;
  background: var(--brand);
  color: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.app-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.app-body {
  flex: 1;
  padding: 4px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.app-greeting {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.app-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-400);
}
.app-recipient {
  display: flex;
  align-items: center;
  gap: 11px;
}
.app-flag {
  font-size: 26px;
  line-height: 1;
}
.app-r-meta {
  display: flex;
  flex-direction: column;
}
.app-r-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
}
.app-r-op {
  font-size: 12px;
  color: var(--ink-500);
}
.app-amt-row {
  display: flex;
  gap: 8px;
}
.app-amt {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  border-radius: 10px;
  border: 1.5px solid var(--border-strong);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
}
.app-amt.active {
  border-color: var(--brand);
  background: var(--brand-50);
  color: var(--brand);
}
.app-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-500);
  padding-top: 2px;
}
.app-total-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
}
.app-send {
  display: block;
  text-align: center;
  background: var(--brand);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(24, 95, 250, 0.3);
}
.app-recent {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--sh-card);
}
.app-recent-ic {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.app-recent-txt {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.app-recent-txt > span:first-child {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-900);
}
.app-recent-sub {
  font-size: 11px;
  color: var(--ink-400);
}
.app-recent-amt {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
}

@media (max-width: 900px) {
  .app-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .app-phone-wrap {
    order: -1;
  }
}
