/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

/* ===== MOBILE-FIRST GLOBALS ===== */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation
}

/* Safe area support for notched devices (iPhone X+) */
@supports (padding: env(safe-area-inset-bottom)) {
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right)
  }
}

:root {
  --bg: #0a1a1f;
  --bg2: #0c2024;
  --bg3: #0f2a2f;
  --surface: rgba(255, 255, 255, .04);
  --surface2: rgba(255, 255, 255, .07);
  --border: rgba(255, 255, 255, .08);
  --border2: rgba(255, 255, 255, .12);
  --text: #e2e8f0;
  --text2: #94a3b8;
  --text3: #64748b;
  --primary: #2563eb;
  --primary2: #3b82f6;
  --accent: #10b981;
  --accent2: #34d399;
  --grad: linear-gradient(135deg, #2563eb, #10b981);
  --grad2: linear-gradient(135deg, #0c2024 0%, #0f2a2f 50%, #0c2024 100%);
  --glass: rgba(255, 255, 255, .05);
  --glass-border: rgba(255, 255, 255, .1);
  --radius: 12px;
  --radius2: 16px;
  --radius3: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .3);
  --shadow2: 0 8px 40px rgba(0, 0, 0, .4);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --nav-h: 120px;
  --nav-h-mobile: 72px;
  --transition: .35s cubic-bezier(.22, 1, .36, 1);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-out-quart: cubic-bezier(.25, 1, .5, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --touch-min: 44px;
}

.nav-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain
}

/* Touch-friendly interactive elements */
@media (hover: none) and (pointer: coarse) {
  .btn, a, button, input, select, textarea, .nav-link, .social-link, .team-social {
    min-height: var(--touch-min);
    min-width: var(--touch-min)
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overscroll-behavior-y: none;
  /* Ultra smooth rendering */
  text-rendering: optimizeLegibility
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
  /* Eliminate scroll chaining bounce */
  overscroll-behavior: none
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  -webkit-appearance: none;
  appearance: none
}

/* Touch-specific active states instead of hover */
@media (hover: none) and (pointer: coarse) {
  .btn-primary:active {
    transform: scale(.97);
    box-shadow: 0 2px 12px rgba(16, 185, 129, .3)
  }
  .btn-outline:active {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(.97)
  }
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, .25);
  transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease-out-expo)
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(16, 185, 129, .45)
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border2);
  transition: all .4s var(--ease-out-expo)
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px)
}

.btn-full {
  width: 100%
}

.btn-sm {
  padding: 8px 18px;
  font-size: .82rem;
  border: 1px solid var(--border2);
  border-radius: 8px;
  transition: all .35s var(--ease-out-expo)
}

.btn-sm:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.btn-text {
  display: inline-block
}

.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite
}

.btn.loading .btn-text {
  display: none
}

.btn.loading .btn-loader {
  display: inline-block
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(10, 26, 31, .8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .5s var(--ease-out-expo), box-shadow .5s var(--ease-out-expo), border-color .5s var(--ease-out-expo)
}

.navbar.scrolled {
  background: rgba(10, 26, 31, .96);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
  border-bottom-color: rgba(255, 255, 255, .04)
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-logo {
  width: 36px;
  height: 36px;
  background: var(--grad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1
}

.nav-brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -.02em
}

.nav-brand-domain {
  font-size: .65rem;
  color: var(--text3);
  letter-spacing: .02em
}

.nav-links {
  display: flex;
  gap: 32px
}

.nav-link {
  font-size: .9rem;
  color: var(--text2);
  font-weight: 500;
  transition: color .4s var(--ease-out-expo);
  position: relative
}

.nav-link:hover {
  color: #fff
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: width .5s var(--ease-out-expo)
}

.nav-link:hover::after {
  width: 100%
}

.nav-cta {
  padding: 9px 22px;
  background: var(--grad);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: .85rem;
  transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease-out-expo)
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(16, 185, 129, .4)
}

/* ===== AUTH UI ===== */
.nav-auth {
  display: flex;
  align-items: center;
  gap: 8px
}

/* Forcefully hide any unauthorized/injected buttons (like Google Auth) */
.nav-auth > *:not(#navJoinWaitlist):not(.nav-cta) {
  display: none !important;
}




.mobile-signout-btn {
  background: none;
  border: 1px solid var(--border2);
  color: var(--text2);
  font-size: .85rem;
  font-family: var(--font);
  padding: 9px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: left
}

.mobile-signout-btn:hover {
  border-color: #f87171;
  color: #f87171
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  align-items: center;
  justify-content: center
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition)
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 26, 31, .99);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  transform: translate3d(0, -16px, 0);
  opacity: 0;
  pointer-events: none;
  transition:
    transform .45s var(--ease-out-expo),
    opacity .35s var(--ease-out-expo);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  z-index: 9999
}

.mobile-drawer.open {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: all
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--text2);
  font-weight: 500;
  font-size: 1rem;
  min-height: var(--touch-min);
  transition: var(--transition)
}

.mobile-nav-link:active {
  background: var(--surface2);
  color: #fff
}

.mobile-nav-link.cta {
  background: var(--grad);
  color: #fff;
  text-align: center;
  justify-content: center;
  margin-top: 8px;
  font-weight: 600;
  min-height: 48px
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 60px;
  position: relative;
  overflow: hidden;
  /* Smooth GPU layer */
  will-change: auto;
  isolation: isolate
}

/* ===== GLOBAL BACKGROUND LAYER ===== */
#site-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none
}

/* ===== STARFIELD CANVAS — absolute inside #site-bg ===== */
.starfield-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform
}

/* Dark overlay above starfield, below content — improves readability.
   Center slightly darker to shield the headline; edges lighter so the
   starfield breathes around the content. */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 38% 50%, rgba(0,0,0,.55) 0%, rgba(0,0,0,.32) 55%, rgba(0,0,0,.22) 100%);
  z-index: 1;
  pointer-events: none
}

.hero-bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, .12) 0%, rgba(37, 99, 235, .06) 50%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
  z-index: 2
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: .5;
    transform: scale(1) translate3d(0, 0, 0)
  }
  50% {
    opacity: .85;
    transform: scale(1.08) translate3d(0, 0, 0)
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2
}

.hero-content {
  z-index: 2
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--accent2);
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  animation: badgePulse 3.6s ease-in-out infinite;
}

/* Sheen sweep across the badge */
.hero-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(255,255,255,.22) 50%,
    transparent 70%);
  transform: translateX(-100%);
  animation: badgeSheen 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
  50%     { box-shadow: 0 0 0 6px rgba(16,185,129,.08); }
}

@keyframes badgeSheen {
  0%   { transform: translateX(-100%); }
  55%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

/* Hero headline — gradient text gets an animated shimmer */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

/* Animated gradient on the highlighted word inside the hero title */
.hero-title .gradient-text {
  background: linear-gradient(90deg, #10b981 0%, #34d399 25%, #60a5fa 55%, #10b981 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShimmer 6s linear infinite;
}

@keyframes gradientShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap
}

.hero-stats {
  display: flex;
  gap: 40px
}

.hero-stat {
  display: flex;
  flex-direction: column
}

.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-stat-label {
  font-size: .78rem;
  color: var(--text3);
  font-weight: 500
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 440px
}

.mockup-screen {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius2);
  overflow: hidden;
  box-shadow: var(--shadow2);
  animation: mockupFloat 8s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

@keyframes mockupFloat {
  0%,100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%     { transform: translate3d(0, -8px, 0) rotate(.4deg); }
}

.mockup-bar {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .03);
  border-bottom: 1px solid var(--border);
  align-items: center
}

.mockup-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0
}

.mockup-bar span:first-child {
  background: #ef4444;
  box-shadow: 0 0 6px 1px rgba(239, 68, 68, .6)
}

.mockup-bar span:nth-child(2) {
  background: #eab308;
  box-shadow: 0 0 6px 1px rgba(234, 179, 8, .6)
}

.mockup-bar span:last-child {
  background: #22c55e;
  box-shadow: 0 0 6px 1px rgba(34, 197, 94, .6)
}

.mockup-content {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.mockup-line {
  height: 10px;
  border-radius: 6px;
  background: var(--surface2)
}

.w50 {
  width: 50%
}

.w60 {
  width: 60%
}

.w70 {
  width: 70%
}

.w80 {
  width: 80%
}

.w90 {
  width: 90%
}

.mockup-block {
  height: 80px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(16, 185, 129, .1));
  border: 1px solid var(--border)
}

.glass-card {
  position: absolute;
  padding: 12px 18px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  animation: floatCard 5s cubic-bezier(.45, 0, .55, 1) infinite;
  /* GPU accelerated — no jank */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  pointer-events: none
}

.glass-icon {
  font-size: 1.2rem
}

.glass-text {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text)
}

.glass-card-1 {
  top: 15%;
  right: -8px;
  animation: floatCard1 6s cubic-bezier(.45,0,.55,1) infinite;
}

.glass-card-2 {
  bottom: 25%;
  left: -20px;
  animation: floatCard2 7s cubic-bezier(.45,0,.55,1) infinite;
  animation-delay: 1.5s;
}

.glass-card-3 {
  bottom: 5%;
  right: 10%;
  animation: floatCard3 6.5s cubic-bezier(.45,0,.55,1) infinite;
  animation-delay: 3s;
}

/* Each card drifts on its own orbital path — more dynamic than uniform y-bob */
@keyframes floatCard1 {
  0%,100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%     { transform: translate3d(-6px, -14px, 0) rotate(-1.2deg); }
}
@keyframes floatCard2 {
  0%,100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%     { transform: translate3d(8px, -10px, 0) rotate(1.5deg); }
}
@keyframes floatCard3 {
  0%,100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%     { transform: translate3d(-4px, -12px, 0) rotate(-1deg); }
}

/* Legacy keyframe retained for any other consumers */
@keyframes floatCard {
  0%,100% { transform: translate3d(0, 0, 0); }
  50%     { transform: translate3d(0, -10px, 0); }
}

/* ===== LAUNCH CARD ===== */
.launch-card {
  background: rgba(8, 20, 26, 0.78);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 20px;
  padding: 36px 32px 30px;
  width: 100%;
  max-width: 480px;
  position: relative;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow:
    0 0 0 1px rgba(6, 182, 212, 0.12),
    0 0 40px rgba(6, 182, 212, 0.14),
    0 0 90px rgba(6, 182, 212, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  animation: launchFloat 7s ease-in-out infinite;
  will-change: transform
}

/* Subtle gradient border overlay */
.launch-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(6,182,212,.5) 0%, rgba(37,99,235,.25) 40%, transparent 70%, rgba(16,185,129,.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none
}

@keyframes launchFloat {
  0%,100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  33%     { transform: translate3d(0, -10px, 0) rotate(.3deg); }
  66%     { transform: translate3d(2px, -6px, 0) rotate(-.2deg); }
}

.launch-card-top {
  text-align: center;
  margin-bottom: 14px
}

.launch-card-label {
  display: inline-block;
  font-size: .82rem;
  color: var(--text2);
  font-weight: 500;
  letter-spacing: .01em
}

.launch-date {
  text-align: center;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 50%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px
}

.launch-subtitle {
  text-align: center;
  font-size: .88rem;
  color: var(--text2);
  margin-bottom: 22px;
  line-height: 1.5
}

.launch-divider {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 22px
}

.launch-divider::before,
.launch-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, .35), transparent)
}

.launch-divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #06b6d4;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(6, 182, 212, .9), 0 0 20px rgba(6, 182, 212, .4)
}

/* ===== COUNTDOWN GRID ===== */
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 26px
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid rgba(6, 182, 212, .22);
  border-radius: 12px;
  padding: 18px 6px 14px;
  box-shadow:
    0 0 14px rgba(6, 182, 212, .07),
    inset 0 1px 0 rgba(255,255,255,.05);
  transition: border-color .3s, box-shadow .3s
}

.countdown-box:hover {
  border-color: rgba(6, 182, 212, .45);
  box-shadow: 0 0 22px rgba(6, 182, 212, .18), inset 0 1px 0 rgba(255,255,255,.06)
}

.countdown-num {
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.countdown-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text3);
  text-transform: uppercase
}

/* ===== LAUNCH PROGRESS BAR ===== */
.launch-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px
}

.launch-progress-label {
  font-size: .78rem;
  color: var(--text2)
}

.launch-progress-pct {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text)
}

.launch-progress-track {
  height: 6px;
  background: rgba(255, 255, 255, .06);
  border-radius: 100px;
  overflow: hidden
}

.launch-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #2563eb 0%, #06b6d4 50%, #10b981 100%);
  border-radius: 100px;
  box-shadow: 0 0 12px rgba(6, 182, 212, .55);
  animation: progressFill 1.4s 0.4s var(--ease-out-expo) forwards
}

@keyframes progressFill {
  to { width: 100% }
}

/* ===== HERO STATS — with icons & dividers ===== */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 28px
}

.hero-stat:first-child { padding-left: 0 }

.hero-stat-icon {
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 5px rgba(59, 130, 246, .55))
}

.hero-stat-divider {
  width: 1px;
  height: 54px;
  background: var(--border);
  flex-shrink: 0
}

.hero-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1
}

.hero-stat-label {
  font-size: .75rem;
  color: var(--text3);
  font-weight: 500;
  white-space: nowrap
}

/* ===== SECTIONS SHARED ===== */
.section {
  padding: 100px 0;
  position: relative;
  /* GPU layer for smooth compositor-driven scroll */
  transform: translate3d(0, 0, 0)
}

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

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .75rem;
  color: var(--accent2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px
}

.section-subtitle {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.7
}

/* ===== ABOUT ===== */
.about {
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 32px 28px;
  transition: transform .5s var(--ease-spring), background .4s var(--ease-out-expo), border-color .4s var(--ease-out-expo), box-shadow .5s var(--ease-out-expo);
  transform: translate3d(0, 0, 0)
}

.about-card:hover {
  background: var(--surface2);
  border-color: var(--border2);
  transform: translate3d(0, -6px, 0);
  box-shadow: 0 16px 48px rgba(16, 185, 129, .1)
}

.about-icon {
  font-size: 2rem;
  margin-bottom: 16px
}

.about-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px
}

.about-card p {
  color: var(--text2);
  font-size: .9rem;
  line-height: 1.65
}

/* ===== SERVICES ===== */
.services {
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 32px 24px;
  text-align: center;
  transition: transform .5s var(--ease-spring), background .4s var(--ease-out-expo), border-color .4s var(--ease-out-expo), box-shadow .5s var(--ease-out-expo);
  transform: translate3d(0, 0, 0)
}

.service-card:hover {
  background: var(--surface2);
  border-color: var(--border2);
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 20px 56px rgba(16, 185, 129, .1)
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px
}

.service-card p {
  color: var(--text2);
  font-size: .85rem;
  line-height: 1.6
}

/* ===== TEAM ===== */
.team {
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 36px 28px;
  text-align: center;
  transition: transform .5s var(--ease-spring), border-color .4s var(--ease-out-expo), box-shadow .5s var(--ease-out-expo);
  transform: translate3d(0, 0, 0)
}

.team-card:hover {
  border-color: var(--border2);
  transform: translate3d(0, -6px, 0);
  box-shadow: 0 16px 48px rgba(16, 185, 129, .12)
}

.team-photo {
  margin: 0 auto 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border2)
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff
}

.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px
}

.team-role {
  font-size: .82rem;
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 12px
}

.team-intro {
  color: var(--text2);
  font-size: .85rem;
  line-height: 1.6;
  margin-bottom: 18px
}

.team-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px
}

.team-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  transition: var(--transition)
}

.team-social:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff
}

/* ===== WAITLIST ===== */
.waitlist {
  overflow: hidden
}

.waitlist-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.waitlist-perks {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text2);
  font-size: .9rem
}

.perk span {
  color: var(--accent2);
  font-weight: 700
}

.waitlist-form-wrapper {
  position: relative
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 36px 32px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text2)
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font);
  font-size: .9rem;
  transition: border-color .4s var(--ease-out-expo), box-shadow .5s var(--ease-out-expo);
  outline: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text3)
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer
}

.form-group select option {
  background: var(--bg);
  color: var(--text)
}

.form-error {
  font-size: .75rem;
  color: #f87171;
  min-height: 16px
}

.waitlist-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2)
}

.waitlist-success.show {
  display: block
}

.waitlist-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px
}

.waitlist-success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px
}

.waitlist-success p {
  color: var(--text2);
  font-size: .95rem
}

/* ===== OTP VERIFICATION STEP ===== */
.waitlist-otp-step {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2)
}

.waitlist-otp-step.show {
  display: flex
}

.otp-header {
  text-align: center
}

.otp-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px
}

.otp-label {
  color: var(--text2);
  font-size: .9rem;
  margin: 0
}

.otp-email-display {
  color: var(--text1);
  font-weight: 600;
  font-size: .95rem;
  margin: 4px 0 0;
  word-break: break-all
}

#otp-input {
  letter-spacing: .3em;
  font-size: 1.5rem;
  text-align: center;
  font-variant-numeric: tabular-nums
}

.otp-footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px
}

.otp-resend-btn,
.otp-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .85rem;
  padding: 4px 0;
  transition: color .2s
}

.otp-resend-btn {
  color: var(--accent, #7c83ff)
}

.otp-resend-btn:hover:not(:disabled) {
  opacity: .8
}

.otp-resend-btn:disabled {
  color: var(--text2);
  cursor: default
}

.otp-back-btn {
  color: var(--text2)
}

.otp-back-btn:hover {
  color: var(--text1)
}


.contact-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2)
}

.contact-success.show {
  display: block
}

.contact-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px
}

.contact-success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px
}

.contact-success p {
  color: var(--text2);
  font-size: .95rem
}

/* ===== CONTACT ===== */
.contact {
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0
}

.contact-item h4 {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 2px
}

.contact-item a,
.contact-item p {
  color: var(--text2);
  font-size: .88rem;
  transition: var(--transition)
}

.contact-item a:hover {
  color: var(--accent2)
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--text2);
  transition: transform .4s var(--ease-spring), background .35s var(--ease-out-expo), border-color .35s var(--ease-out-expo), color .35s var(--ease-out-expo);
  font-weight: 700
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px) scale(1.08)
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 32px
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px
}

.footer-brand .nav-brand {
  margin-bottom: 14px
}

.footer-tagline {
  color: var(--text3);
  font-size: .88rem;
  max-width: 280px;
  line-height: 1.6
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-links h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px
}

.footer-links a {
  color: var(--text3);
  font-size: .84rem;
  transition: var(--transition)
}

.footer-links a:hover {
  color: var(--accent2)
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center
}

.footer-bottom p {
  color: var(--text3);
  font-size: .8rem
}

/* ===== SCROLL REVEAL — Ultra-smooth GPU-accelerated ===== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity .9s var(--ease-out-expo),
    transform .9s var(--ease-out-expo);
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
  backface-visibility: hidden
}

.reveal-up {
  transform: translate3d(0, 28px, 0)
}

.reveal-left {
  transform: translate3d(-28px, 0, 0)
}

.reveal-right {
  transform: translate3d(28px, 0, 0)
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto
}

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

  .hero-description {
    margin-left: auto;
    margin-right: auto
  }

  .hero-actions {
    justify-content: center
  }

  .hero-stats {
    justify-content: center
  }

  .hero-mockup {
    max-width: 360px
  }

  .launch-card {
    max-width: 100%;
    margin: 0 auto
  }

  .hero-stat {
    padding: 0 20px
  }

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

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

  .waitlist-wrapper {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

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

@media(max-width:768px) {
  :root {
    --nav-h: var(--nav-h-mobile)
  }

  html {
    scroll-padding-top: var(--nav-h-mobile)
  }

  .nav-logo-img {
    height: 56px
  }

  .nav-links,
  .nav-cta,
  .nav-auth {
    display: none
  }

  .nav-hamburger {
    display: flex
  }

  .mobile-drawer {
    display: block;
    top: var(--nav-h-mobile)
  }

  .about-grid {
    grid-template-columns: 1fr
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .team-card {
    padding: 24px 16px
  }

  .team-photo {
    width: 80px;
    height: 80px
  }

  .team-name {
    font-size: 1rem
  }

  .team-intro {
    font-size: .82rem
  }

  .team-links {
    flex-wrap: wrap
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-h-mobile) + 24px) 0 48px
  }

  .hero-title {
    font-size: 1.85rem
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.65
  }

  .hero-stats {
    gap: 0;
    justify-content: center
  }

  .hero-stat {
    padding: 0 16px
  }

  .hero-stat:first-child {
    padding-left: 0
  }

  .hero-stat-number {
    font-size: 1.5rem
  }

  .launch-card {
    padding: 28px 20px 24px
  }

  .countdown-grid {
    gap: 8px
  }

  .countdown-box {
    padding: 14px 4px 12px
  }

  .countdown-num {
    font-size: 1.4rem
  }

  .countdown-label {
    font-size: .52rem;
    letter-spacing: .08em
  }

  .section {
    padding: 60px 0
  }

  .section-header {
    margin-bottom: 40px
  }

  .section-title {
    font-size: 1.6rem
  }

  .section-subtitle {
    font-size: .92rem
  }

  .waitlist-form {
    padding: 24px 20px
  }

  .waitlist-wrapper {
    gap: 36px
  }

  .contact-grid {
    gap: 32px
  }

  .contact-form {
    padding: 24px 20px
  }

  /* Mobile form inputs — larger for fat fingers */
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px; /* prevents iOS zoom */
    border-radius: 10px
  }

  .form-group label {
    font-size: .85rem
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }

  .footer-brand {
    grid-column: 1 / -1
  }

  .footer-brand .nav-logo-img {
    height: 60px
  }

  .footer-bottom {
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px))
  }

  .glass-card-1 {
    right: 0
  }

  .glass-card-2 {
    left: 0
  }

  .glass-card {
    padding: 10px 14px
  }

  .glass-text {
    font-size: .75rem
  }

  /* Disable hover transforms on mobile */
  .about-card:hover,
  .service-card:hover,
  .team-card:hover {
    transform: none
  }

  .about-card:active {
    background: var(--surface2);
    border-color: var(--border2)
  }

  .service-card:active {
    background: var(--surface2);
    border-color: var(--border2)
  }

  .social-link {
    width: 46px;
    height: 46px
  }

  .contact-socials {
    gap: 14px;
    flex-wrap: wrap
  }

  .btn {
    padding: 14px 28px;
    font-size: 1rem
  }

  .btn-sm {
    padding: 10px 18px;
    font-size: .85rem
  }
}

@media(max-width:480px) {
  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-stats {
    flex-direction: row;
    gap: 16px;
    justify-content: space-between
  }

  .hero-stat {
    align-items: center;
    flex: 1
  }

  .hero-stat-number {
    font-size: 1.3rem
  }

  .hero-stat-label {
    font-size: .7rem;
    text-align: center
  }

  .container {
    padding: 0 16px
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto
  }

  .team-card {
    padding: 28px 20px
  }

  .team-photo {
    width: 90px;
    height: 90px
  }

  .waitlist-form {
    padding: 20px 16px
  }

  .contact-form {
    padding: 20px 16px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .hero-badge {
    font-size: .75rem;
    padding: 5px 12px
  }

  .service-card {
    padding: 24px 18px
  }

  .about-card {
    padding: 24px 20px
  }

  .about-icon {
    font-size: 1.6rem;
    margin-bottom: 12px
  }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 12px
  }

  .perk {
    font-size: .85rem
  }
}

/* ===== VERY SMALL SCREENS (320px phones) ===== */
@media(max-width:360px) {
  .container {
    padding: 0 12px
  }

  .hero-title {
    font-size: 1.6rem
  }

  .hero-description {
    font-size: .92rem
  }

  .section-title {
    font-size: 1.4rem
  }

  .mobile-drawer {
    padding: 16px 12px
  }

  .mobile-nav-link {
    padding: 12px 12px;
    font-size: .95rem
  }

  .waitlist-form,
  .contact-form {
    padding: 18px 14px
  }

  .glass-card {
    display: none
  }

  .hero-bg-glow {
    width: 300px;
    height: 300px
  }

  .launch-card {
    padding: 22px 14px 20px;
    border-radius: 16px
  }

  .launch-date {
    font-size: 1.5rem
  }

  .countdown-grid {
    gap: 6px
  }

  .countdown-box {
    padding: 12px 2px 10px;
    border-radius: 9px
  }

  .countdown-num {
    font-size: 1.2rem
  }

  .hero-stat {
    padding: 0 10px
  }
}

/* ===== LANDSCAPE MOBILE ===== */
@media(max-height:500px) and (orientation:landscape) {
  .hero {
    min-height: auto;
    padding: calc(var(--nav-h-mobile) + 16px) 0 32px
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .hero-visual {
    display: none
  }

  .section {
    padding: 48px 0
  }

  .mobile-drawer {
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-h-mobile))
  }
}

/* ===== PRIVACY POLICY ===== */
.pp-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden
}

.pp-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, .08) 0%, transparent 70%);
  pointer-events: none
}

.pp-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text2);
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 28px;
  transition: var(--transition);
  border: 1px solid var(--border2);
  padding: 8px 16px;
  border-radius: 8px
}

.pp-hero-back:hover {
  color: var(--accent2);
  border-color: var(--accent)
}

.pp-hero-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .75rem;
  color: var(--accent2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px
}

.pp-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 20px
}

.pp-hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text3);
  font-size: .84rem
}

.pp-hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px
}

/* ===== POLICY LAYOUT ===== */
.pp-content {
  padding: 64px 0 100px;
  background: var(--bg)
}

.pp-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start
}

.pp-toc {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 24px
}

.pp-toc h4 {
  font-size: .75rem;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px
}

.pp-toc-list {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.pp-toc-link {
  display: block;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--text3);
  font-size: .78rem;
  font-weight: 500;
  transition: var(--transition);
  line-height: 1.4
}

.pp-toc-link:hover {
  background: var(--surface2);
  color: var(--accent2)
}

/* ===== POLICY BODY ===== */
.pp-body {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.pp-section {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border)
}

.pp-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0
}

.pp-section-num {
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px
}

.pp-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 16px
}

.pp-text {
  color: var(--text2);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 14px
}

.pp-text:last-child {
  margin-bottom: 0
}

.pp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px
}

.pp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text2);
  font-size: .95rem;
  line-height: 1.65
}

.pp-list li::before {
  content: '—';
  color: var(--accent2);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

.pp-link {
  color: var(--accent2);
  font-weight: 600;
  transition: var(--transition)
}

.pp-link:hover {
  color: var(--accent);
  text-decoration: underline
}

.pp-contact-box {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius2);
  padding: 24px 28px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.pp-contact-box p {
  color: var(--text2);
  font-size: .95rem;
  line-height: 1.6
}

.pp-contact-box strong {
  color: var(--text);
  font-weight: 600
}

.pp-footer-cta {
  display: flex;
  gap: 16px;
  padding-top: 48px;
  flex-wrap: wrap
}

/* ===== PRIVACY POLICY — RESPONSIVE ===== */
@media(max-width:1024px) {
  .pp-layout {
    grid-template-columns: 1fr
  }

  .pp-toc {
    position: static;
    display: none
  }
}

@media(max-width:768px) {
  .pp-hero {
    padding: calc(var(--nav-h-mobile) + 24px) 0 36px
  }

  .pp-hero-meta {
    flex-direction: column;
    gap: 8px
  }

  .pp-content {
    padding: 44px 0 72px
  }

  .pp-body {
    gap: 36px
  }

  .pp-section {
    padding-bottom: 36px
  }

  .pp-footer-cta {
    flex-direction: column
  }

  .pp-footer-cta .btn {
    width: 100%;
    justify-content: center
  }
}

/* ===== DETAIL PAGES ===== */
a.about-card {
  display: block;
  cursor: pointer
}

.detail-hero {
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border)
}

.detail-hero-glow {
  position: absolute;
  top: -150px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, .1) 0%, rgba(37, 99, 235, .06) 50%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite
}

.detail-section-num {
  position: absolute;
  top: 40px;
  right: 24px;
  font-size: clamp(7rem, 16vw, 16rem);
  font-weight: 900;
  color: rgba(255, 255, 255, .025);
  line-height: 1;
  letter-spacing: -.05em;
  pointer-events: none;
  user-select: none
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text2);
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 28px;
  transition: var(--transition);
  border: 1px solid var(--border2);
  padding: 8px 16px;
  border-radius: 8px
}

.detail-back:hover {
  color: var(--accent2);
  border-color: var(--accent)
}

.detail-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .72rem;
  color: var(--accent2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px
}

.detail-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  max-width: 820px
}

/* ===== DETAIL CONTENT ===== */
.detail-content {
  padding: 72px 0 100px;
  background: var(--bg)
}

.detail-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border)
}

.detail-text {
  color: var(--text2);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 18px
}

.detail-text:last-of-type {
  margin-bottom: 0
}

.detail-blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0
}

.detail-blockquote p {
  color: var(--text);
  font-size: .97rem;
  line-height: 1.75;
  font-style: italic
}

.detail-section-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 40px 0 16px
}

.detail-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px
}

.detail-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text2);
  font-size: .92rem;
  line-height: 1.55;
  transition: var(--transition)
}

.detail-feature-list li:hover {
  border-color: var(--border2);
  background: var(--surface2)
}

.detail-feature-list li::before {
  content: '→';
  color: var(--accent2);
  font-weight: 700;
  flex-shrink: 0;
  font-size: .9rem;
  margin-top: 2px
}

.detail-feature-name {
  color: var(--text);
  font-weight: 600
}

/* ===== DETAIL STATS ===== */
.detail-stats {
  margin: 44px 0
}

.detail-stats-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px
}

.detail-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.detail-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition)
}

.detail-stat-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, .08)
}

.detail-stat-num {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 10px
}

.detail-stat-lbl {
  color: var(--text3);
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.4
}

/* ===== CLOSING CTA BANNER ===== */
.detail-cta-banner {
  margin-top: 64px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .1), rgba(16, 185, 129, .07));
  border: 1px solid var(--border2);
  border-radius: var(--radius3);
  padding: 60px 40px;
  text-align: center
}

.detail-cta-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 12px
}

.detail-cta-sub {
  color: var(--text2);
  font-size: .97rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7
}

.detail-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

/* ===== DETAIL RESPONSIVE ===== */
@media(max-width:768px) {
  .detail-hero {
    padding: calc(var(--nav-h-mobile) + 24px) 0 48px
  }

  .detail-section-num {
    font-size: 5rem
  }

  .detail-stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .detail-content {
    padding: 40px 0 60px
  }

  .detail-cta-banner {
    padding: 36px 20px;
    margin-top: 40px
  }

  .detail-lead {
    font-size: 1rem
  }

  .detail-text {
    font-size: .92rem
  }

  .detail-feature-list li {
    padding: 12px 14px;
    font-size: .88rem
  }

  .detail-blockquote {
    padding: 14px 18px;
    margin: 24px 0
  }
}

@media(max-width:480px) {
  .detail-cta-actions {
    flex-direction: column;
    align-items: center
  }

  .detail-cta-actions .btn {
    width: 100%;
    justify-content: center
  }

  .detail-stats-grid {
    grid-template-columns: 1fr
  }

  .detail-stat-card {
    padding: 20px 16px
  }
}

/* ===== MAGNIFIER LENS ===== */
.magnifier-lens {
  position: fixed;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, .45);
  box-shadow:
    0 0 0 4px rgba(10, 26, 31, .6),
    0 0 30px rgba(16, 185, 129, .15),
    inset 0 0 20px rgba(0, 0, 0, .2);
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity .25s ease;
  overflow: hidden;
  backdrop-filter: none;
  background: transparent;
}

.magnifier-lens.active {
  opacity: 1;
}

.magnifier-lens::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}

/* Blur the page content when magnifier is active */
body.magnifier-active > *:not(.magnifier-lens):not(script):not(link):not(style) {
  filter: blur(1.5px);
  transition: filter .3s ease;
}

body > *:not(.magnifier-lens):not(script):not(link):not(style) {
  transition: filter .3s ease;
}

/* Hide magnifier on touch / small screens */
@media (hover: none), (max-width: 768px) {
  .magnifier-lens {
    display: none !important;
  }
}

/* === SPOTLIGHT EFFECT === */

/* Smooth transitions for all spotlight-targetable elements */
.spotlight-target {
  transition:
    transform .45s var(--ease-out-expo),
    opacity .45s var(--ease-out-expo),
    filter .45s var(--ease-out-expo);
}

/* When body has the spotlight-active class, dim every target… */
body.spotlight-active .spotlight-target {
  opacity: .55;
  filter: brightness(.8);
}

/* …except the one being hovered — it zooms up and stays bright */
body.spotlight-active .spotlight-target.spotlight-hover {
  opacity: 1;
  filter: brightness(1);
  transform: scale(1.035);
  z-index: 10;
  position: relative;
}

/* Disable the effect on touch / mobile devices */
@media (hover: none), (max-width: 768px) {
  body.spotlight-active .spotlight-target {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #0f1923;
  border-top: 1px solid #00c896;
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform .5s var(--ease-out-expo);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, .5)
}

.cookie-banner.visible {
  transform: translateY(0)
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.cookie-text {
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.6;
  flex: 1
}

.cookie-text a {
  color: #00c896;
  text-decoration: underline;
  text-underline-offset: 2px
}

.cookie-text a:hover {
  color: #34d399
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0
}

.cookie-accept {
  padding: 10px 24px;
  background: #00c896;
  color: #0a1a1f;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: .88rem;
  font-family: var(--font);
  cursor: pointer;
  transition: background .25s ease, transform .25s var(--ease-spring)
}

.cookie-accept:hover {
  background: #34d399;
  transform: translateY(-1px)
}

.cookie-manage {
  padding: 10px 24px;
  background: transparent;
  color: #00c896;
  border: 1.5px solid #00c896;
  border-radius: 8px;
  font-weight: 600;
  font-size: .88rem;
  font-family: var(--font);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s var(--ease-spring)
}

.cookie-manage:hover {
  background: rgba(0, 200, 150, .08);
  border-color: #34d399;
  color: #34d399;
  transform: translateY(-1px)
}

/* Footer policy links row */
.footer-policy-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--border)
}

.footer-policy-links a {
  font-size: .78rem;
  color: #6b7280;
  transition: color .25s ease
}

.footer-policy-links a:hover {
  color: #00c896
}

.footer-policy-links .separator {
  color: #6b7280;
  font-size: .78rem;
  user-select: none
}

@media (max-width: 768px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px
  }
  .cookie-actions {
    width: 100%;
    flex-direction: column
  }
  .cookie-accept,
  .cookie-manage {
    width: 100%
  }
  .footer-policy-links {
    gap: 16px;
    flex-wrap: wrap
  }
}

/* ============================================================
   ERA DESIGN SYSTEM v2 — Notification bar, Rewards, Modal
   ============================================================ */

/* ─── ERA Design Tokens ─── */
:root {
  --era-primary:  #00E5FF;
  --era-accent:   #B14BFF;
  --era-bg:       #07070C;
  --era-bg-elev:  #11111A;
  --era-border:   rgba(255,255,255,0.08);
  --era-glow:     0 0 24px rgba(0,229,255,0.45);
  --era-text:     #F5F7FA;
  --era-muted:    #8A8FA3;
  --era-warning:  #FFB84D;
  --notif-h:      44px;
}

/* ─── Push navbar + content below the notification bar ─── */
body.has-notif .navbar { top: var(--notif-h); }
html:has(body.has-notif) { scroll-padding-top: calc(var(--notif-h) + var(--nav-h)); }
body.has-notif .hero { padding-top: calc(var(--notif-h) + var(--nav-h) + 40px); }

@media (max-width: 768px) {
  :root { --notif-h: 56px; }
  body.has-notif .mobile-drawer { top: calc(var(--notif-h) + var(--nav-h-mobile)) !important; }
  body.has-notif .hero { padding-top: calc(var(--notif-h) + var(--nav-h-mobile) + 24px) !important; }
  html:has(body.has-notif) { scroll-padding-top: calc(var(--notif-h) + var(--nav-h-mobile)) !important; }
}

/* ─── Notification Bar ─── */
.notif-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--notif-h);
  z-index: 1100;
  background: linear-gradient(135deg, rgba(0,229,255,.15) 0%, rgba(177,75,255,.15) 100%),
              var(--era-bg-elev);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 20px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--era-text);
  cursor: pointer;
  border: none;
  border-radius: 0;
  width: 100%;
  text-align: center;
  line-height: 1.35;
  position: fixed; /* repeat for specificity */
  transition: background .2s ease;
}

.notif-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--era-primary), var(--era-accent));
  pointer-events: none;
}

.notif-bar:hover {
  background: linear-gradient(135deg, rgba(0,229,255,.22) 0%, rgba(177,75,255,.22) 100%),
              var(--era-bg-elev);
}

.notif-bar:focus-visible {
  outline: 2px solid var(--era-primary);
  outline-offset: -2px;
}

.notif-link {
  color: var(--era-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.notif-emoji {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .notif-bar {
    font-size: 11.5px;
    padding: 0 12px;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .notif-emoji { animation: notif-gift-pulse 4s ease-in-out infinite; }
}

@keyframes notif-gift-pulse {
  0%, 74%, 100% { filter: none; }
  79%  { filter: brightness(1.7) drop-shadow(0 0 6px rgba(0,229,255,.9)); }
  87%  { filter: brightness(1.4) drop-shadow(0 0 4px rgba(177,75,255,.9)); }
  93%  { filter: none; }
}

/* ─── Hero CTA sub-text ─── */
.hero-cta-subtext {
  flex: 0 0 100%;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--era-primary);
  cursor: pointer;
  text-align: center;
  padding: 8px 12px;
  min-height: 44px;
  border-radius: 8px;
  transition: text-decoration .2s ease;
}

.hero-cta-subtext:hover { text-decoration: underline; text-underline-offset: 3px; }
.hero-cta-subtext:focus-visible { outline: 2px solid var(--era-primary); outline-offset: 2px; }

@media (prefers-reduced-motion: no-preference) {
  .hero-cta-subtext { animation: era-pulse-glow 2.2s ease-in-out infinite; }
}

@keyframes era-pulse-glow {
  0%, 100% { text-shadow: 0 0 4px rgba(0,229,255,.6); }
  50%       { text-shadow: 0 0 14px rgba(0,229,255,.95), 0 0 28px rgba(0,229,255,.45); }
}

/* ─── New Waitlist Perks ─── */
.era-perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--era-text);
}

.era-perk-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.era-perk-label { font-weight: 700; color: var(--era-text); }
.era-perk-desc  { font-weight: 400; color: var(--era-muted); }

/* ─── Urgency callout ─── */
.era-urgency {
  font-size: 13px;
  font-style: italic;
  color: var(--era-warning);
  border-left: 1px solid var(--era-warning);
  padding-left: 12px;
  margin-top: 8px;
  line-height: 1.5;
}

/* ─── Success Modal ─── */
.era-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.era-modal-overlay[hidden] { display: none; }

.era-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

.era-modal {
  position: relative;
  background: rgba(17,17,26,.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,229,255,.6);
  box-shadow: 0 0 60px rgba(0,229,255,.3);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 32px;
  outline: none;
}

@media (prefers-reduced-motion: no-preference) {
  .era-modal { animation: era-bounce-in .38s cubic-bezier(.34,1.56,.64,1) both; }
}

@keyframes era-bounce-in {
  from { transform: scale(.85); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.era-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--era-muted);
  width: 32px; height: 32px;
  min-width: 32px; min-height: 32px;
  border-radius: 8px;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  transition: background .2s, color .2s;
}

.era-modal-close:hover  { background: rgba(255,255,255,.14); color: var(--era-text); }
.era-modal-close:focus-visible { outline: 2px solid var(--era-primary); outline-offset: 2px; }

.era-modal-heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--era-text);
  margin: 0 0 10px;
  line-height: 1.2;
  padding-right: 32px;
}

.era-modal-sub {
  font-size: .95rem;
  color: var(--era-primary);
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.5;
}

.era-modal-body {
  font-size: .9rem;
  color: var(--era-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.era-modal-cta {
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, var(--era-primary) 0%, var(--era-accent) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 0 24px rgba(0,229,255,.4), 0 4px 20px rgba(0,0,0,.3);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}

.era-modal-cta:hover       { transform: scale(1.02); box-shadow: 0 0 32px rgba(0,229,255,.55), 0 8px 28px rgba(0,0,0,.4); }
.era-modal-cta:focus-visible { outline: 2px solid var(--era-primary); outline-offset: 3px; }

/* ─── Rewards page: Reward cards grid ─── */
.rewards-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 768px) { .rewards-cards { grid-template-columns: 1fr; } }

.reward-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.reward-card:hover {
  border-color: rgba(0,229,255,.55);
  box-shadow: 0 0 24px rgba(0,229,255,.18);
}

.reward-card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.reward-card-title { font-size: 1rem; font-weight: 700; color: var(--era-text); margin-bottom: 8px; }
.reward-card-desc  { font-size: .85rem; color: var(--era-muted); line-height: 1.5; }

/* ─── Refer & Earn highlighted container ─── */
.refer-wrap {
  border: 2px solid rgba(0,229,255,.4);
  border-radius: 20px;
  background: var(--era-bg-elev);
  padding: 40px 36px;
  box-shadow: 0 0 40px rgba(0,229,255,.08) inset;
}

@media (max-width: 768px) { .refer-wrap { padding: 28px 20px; } }

.refer-numbered {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.refer-numbered li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .9rem;
  color: var(--era-muted);
  line-height: 1.55;
}

.refer-numbered li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--era-primary), var(--era-accent));
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  color: #07070C;
  flex-shrink: 0;
  margin-top: 1px;
}

.crypto-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 28px;
}

.crypto-list li {
  font-size: .9rem;
  color: var(--era-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.crypto-list li span.cl-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ─── Referral input + actions ─── */
.referral-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--era-muted);
  margin-bottom: 8px;
  display: block;
}

.referral-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.referral-input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(0,229,255,.3);
  border-radius: 10px;
  color: var(--era-text);
  font-family: var(--font);
  font-size: .88rem;
  outline: none;
  cursor: default;
}

.referral-input:focus { border-color: var(--era-primary); }

.btn-copy, .btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
  border: none;
  white-space: nowrap;
}

.btn-copy {
  background: rgba(0,229,255,.12);
  border: 1px solid rgba(0,229,255,.4);
  color: var(--era-primary);
}

.btn-copy:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,229,255,.2); }
.btn-copy:focus-visible { outline: 2px solid var(--era-primary); outline-offset: 2px; }

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}

.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.3); }
.btn-wa:focus-visible { outline: 2px solid var(--era-primary); outline-offset: 2px; }

/* ─── Rewards page: Terms ─── */
.terms-list {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.terms-list li {
  font-size: 12px;
  color: var(--era-muted);
  line-height: 1.6;
}

/* ─── Rewards section headings ─── */
.rewards-section-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--era-primary);
  margin-bottom: 10px;
}

.rewards-hero-body {
  font-size: 1rem;
  color: var(--era-muted);
  line-height: 1.75;
  max-width: 680px;
}
