/* =========================================================
   BreakMode — styles.css
   High-Fidelity Dark Neumorphic System
   Calibrated for depth, soft highlights, and coral accents.
   Fonts: Spectral display + Inter body for typographic tension.
   ========================================================= */

:root {
  /* Calibrated Dark Neumorphic Palette (OKLch) */
  --neu-bg:          oklch(18% 0.01 250);   /* Deep base */
  --neu-bg-elevated: oklch(21% 0.01 250);   /* Elevated base */
  --neu-text:        oklch(98% 0.005 250);  /* Primary text */
  --neu-text-light:  oklch(85% 0.01 250);   /* Secondary text */
  --neu-text-faint:  oklch(60% 0.01 250);   /* Muted text */
  
  --neu-accent:       #FF7F50;              /* Brand Coral */
  --neu-accent-light: oklch(75% 0.18 30);
  --neu-accent-dark:  oklch(55% 0.22 30);
  
  --neu-secondary:      #7CC5B4;            /* Brand Mint */
  --neu-secondary-dark: oklch(65% 0.12 160);
  
  --neu-shadow-dark:  rgba(0, 0, 0, 0.5);
  --neu-shadow-light: rgba(255, 255, 255, 0.03);

  /* High-Fidelity Shadow Recipes */
  --neu-raised: 
    10px 10px 20px var(--neu-shadow-dark), 
    -8px -8px 20px var(--neu-shadow-light),
    inset 1px 1px 0px rgba(255,255,255,0.04);

  --neu-raised-sm: 
    5px 5px 10px var(--neu-shadow-dark), 
    -4px -4px 10px var(--neu-shadow-light),
    inset 1px 1px 0px rgba(255,255,255,0.03);

  --neu-raised-lg: 
    16px 16px 32px var(--neu-shadow-dark), 
    -12px -12px 32px var(--neu-shadow-light),
    inset 1.5px 1.5px 0px rgba(255,255,255,0.05);

  --neu-pressed: 
    inset 5px 5px 10px var(--neu-shadow-dark), 
    inset -4px -4px 10px var(--neu-shadow-light);

  --neu-border: 1px solid rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-display: 'Spectral', 'Georgia', 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--neu-bg);
  color: var(--neu-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px; /* banner + nav height so sections don't hide behind sticky elements */
}

/* =========================================================
   LAUNCH BANNER
   ========================================================= */
.launch-banner {
  background: var(--neu-bg-elevated);
  border-bottom: var(--neu-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  position: relative;
  z-index: 101;
}
.launch-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.launch-banner-pitch { display: flex; flex-direction: column; gap: 2px; min-width: 180px; flex-shrink: 0; }
.launch-banner-kicker {
  font-size: 10px;
  font-weight: 800;
  color: var(--neu-accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.launch-banner-headline { font-size: 15px; font-weight: 700; color: var(--neu-text); font-family: var(--font-body); }
.launch-banner-center {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
  max-width: 520px;
}
.launch-banner-meter { flex: 1; max-width: 280px; min-width: 200px; }
.launch-banner-countdown { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.launch-banner-cta {
  background: var(--neu-accent);
  color: #fff;
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(255,127,80,0.3), var(--neu-raised-sm);
  white-space: nowrap;
  transition: transform 0.2s ease;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.launch-banner-cta:hover { transform: translateY(-1px); }

/* =========================================================
   SHARED SCARCITY METER
   ========================================================= */
.scarcity-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--neu-text-light);
  margin-bottom: 6px;
}
.scarcity-remaining { color: var(--neu-accent); font-weight: 800; }
.scarcity-track {
  height: 8px;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  box-shadow: var(--neu-pressed);
  padding: 1.5px;
  overflow: hidden;
}
.scarcity-track-lg { height: 12px; border-radius: 12px; }
.scarcity-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--neu-accent), var(--neu-accent-light));
  border-radius: inherit;
  box-shadow: 0 0 10px rgba(255,127,80,0.4);
  transition: width 1s cubic-bezier(.2,.7,.3,1);
}

/* =========================================================
   COUNTDOWN
   ========================================================= */
.countdown { display: inline-flex; align-items: center; gap: 4px; }
.countdown-chunk {
  background: rgba(255,255,255,0.03);
  border: var(--neu-border);
  border-radius: 10px;
  min-width: 40px;
  padding: 4px 0;
  text-align: center;
  box-shadow: var(--neu-raised-sm);
}
.countdown-num { font-weight: 800; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.countdown-label { font-size: 8px; font-weight: 700; color: var(--neu-text-faint); text-transform: uppercase; letter-spacing: 1px; }
.countdown-sep { font-weight: 800; color: rgba(255,255,255,0.2); }

.countdown[data-size="sm"] .countdown-num { font-size: 18px; }
.countdown[data-size="md"] .countdown-chunk { min-width: 56px; padding: 8px 0; }
.countdown[data-size="md"] .countdown-num { font-size: 28px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  background: rgba(28, 28, 30, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  padding: 14px 40px;
  border-bottom: var(--neu-border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 32px; height: 32px; }
.logo-text { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }

.neu-button-small {
  background: var(--neu-bg-elevated);
  color: var(--neu-secondary);
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--neu-raised-sm);
  border: var(--neu-border);
  transition: all 0.2s ease;
}
.neu-button-small:hover { transform: translateY(-1px); box-shadow: var(--neu-raised); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 80px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background:
    radial-gradient(ellipse 1000px 500px at 75% 35%, rgba(255,127,80,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at 20% 80%, rgba(124,197,180,0.03) 0%, transparent 50%);
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }
.hero-title {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  margin: 0;
  font-family: var(--font-display);
}
.accent-text { color: var(--neu-accent); }
.hero-subtitle {
  font-size: 19px;
  color: var(--neu-text-light);
  line-height: 1.55;
  margin: 0;
  max-width: 480px;
}
.hero-cta-group { display: flex; gap: 16px; margin-top: 8px; }

.neu-button-primary {
  background: var(--neu-accent);
  color: white;
  padding: 16px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(255,127,80,0.3), var(--neu-raised);
  transition: all 0.2s ease;
  font-family: var(--font-body);
}
.neu-button-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,127,80,0.4), var(--neu-raised-lg); }

.neu-button-secondary {
  background: var(--neu-bg-elevated);
  color: #fff;
  padding: 16px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--neu-raised);
  border: var(--neu-border);
  transition: all 0.2s ease;
  font-family: var(--font-body);
}
.neu-button-secondary:hover { box-shadow: var(--neu-pressed); }

/* Hero visual — borderless screenshot + concentric rings */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 500px;
}
.hero-rings {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,127,80,0.15);
  pointer-events: none;
}
.hero-ring-1 { width: 420px; height: 420px; }
.hero-ring-2 { width: 330px; height: 330px; border-color: rgba(124, 197, 180, 0.12); }
.hero-ring-3 { width: 240px; height: 240px; border-color: rgba(255,127,80,0.1); border-width: 2px; }

.hero-screenshot {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03);
}

/* =========================================================
   VIDEO SECTION
   ========================================================= */
.video-section { 
  padding: 40px 40px; 
  display: flex; 
  justify-content: center;
  position: relative;
  background:
    radial-gradient(ellipse 700px 300px at 50% 100%, rgba(124,197,180,0.05) 0%, transparent 60%);
  border-top: 1px solid rgba(124,197,180,0.06);
}
.video-container { 
  max-width: 800px; 
  width: 100%; 
  border-radius: 24px; 
  overflow: hidden; 
  box-shadow: var(--neu-raised-lg);
  border: var(--neu-border);
}
.promo-video { width: 100%; display: block; }

/* =========================================================
   FOUNDING MEMBER SECTION
   ========================================================= */
.founding {
  position: relative;
  padding: 100px 40px;
  background: radial-gradient(circle at 50% 50%, var(--neu-bg-elevated) 0%, var(--neu-bg) 100%);
  overflow: hidden;
  border-top: 1px solid rgba(255,127,80,0.06);
}
.founding-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 85% 15%, rgba(255,127,80,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 500px 350px at 10% 90%, rgba(124,197,180,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.founding-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse at 75% 35%, black 0%, transparent 60%);
  mask-image: radial-gradient(ellipse at 75% 35%, black 0%, transparent 60%);
  pointer-events: none;
}
.founding-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.founding-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--neu-bg-elevated);
  border: 1px solid rgba(255,127,80,0.3);
  color: var(--neu-accent);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.founding-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--neu-accent); box-shadow: 0 0 8px var(--neu-accent); }
.founding-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.5px;
  color: #fff;
  margin: 20px 0;
  font-family: var(--font-display);
}
.founding-title-accent {
  color: var(--neu-accent);
}
.founding-sub {
  font-size: 18px;
  color: var(--neu-text-light);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.founding-sub strong { color: #fff; }

.founding-form {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: rgba(0,0,0,0.2);
  border-radius: 40px;
  box-shadow: var(--neu-pressed);
  max-width: 500px;
  border: var(--neu-border);
}
.founding-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.founding-input::placeholder { color: var(--neu-text-faint); }
.founding-submit {
  border: none;
  cursor: pointer;
  background: var(--neu-accent);
  color: #fff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(255,127,80,0.4);
  transition: transform 0.2s ease;
  font-family: var(--font-body);
}
.founding-submit:hover { transform: scale(1.02); }

.founding-card {
  background: var(--neu-bg-elevated);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--neu-raised-lg);
  border: var(--neu-border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.founding-card-big {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #fff 0%, var(--neu-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.founding-perks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.founding-perks li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--neu-text-light); }
.founding-perk-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(124, 197, 180, 0.15);
  border: 1px solid rgba(124, 197, 180, 0.3);
  color: var(--neu-secondary);
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.founding-perk-icon-star { color: var(--neu-accent); background: rgba(255,127,80,0.15); border-color: rgba(255,127,80,0.3); }

/* =========================================================
   HOW IT WORKS — Staggered Timeline
   ========================================================= */
.how-it-works {
  padding: 100px 40px;
  position: relative;
  background:
    radial-gradient(ellipse 800px 400px at 25% 5%, rgba(124,197,180,0.04) 0%, transparent 60%);
  border-top: 1px solid rgba(255,255,255,0.03);
}
.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: -1.5px;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
}
.section-subtitle {
  font-size: 18px;
  color: var(--neu-text-faint);
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.how-header {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
}
.how-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(124,197,180,0.07);
  pointer-events: none;
  z-index: 0;
}

.how-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* vertical connecting line */
.how-container::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(180deg, var(--neu-accent), var(--neu-secondary), var(--neu-accent));
  opacity: 0.35;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255,127,80,0.15);
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
  align-items: center;
  position: relative;
}

/* alternating layout: even items swap screenshot + content */
.timeline-item:nth-child(even) {
  grid-template-columns: 160px 1fr 1fr;
}
.timeline-item:nth-child(even) .timeline-visual { order: 1; }
.timeline-item:nth-child(even) .timeline-content { order: 2; }

/* alternating ring colors — odd=coral, even=mint */
.timeline-item:nth-child(even) .timeline-ring {
  border-color: var(--neu-secondary);
}
.timeline-item:nth-child(even) .timeline-ring::after {
  border-color: rgba(124,197,180,0.25);
}
.timeline-item:nth-child(even) .timeline-ring-inner {
  background: var(--neu-secondary);
  box-shadow: 0 0 20px rgba(124,197,180,0.35);
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}
/* concentric ring indicator */
.timeline-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--neu-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--neu-bg);
}
.timeline-ring::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,127,80,0.25);
  pointer-events: none;
}
.timeline-ring-inner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--neu-accent);
  box-shadow: 0 0 20px rgba(255,127,80,0.35);
}
.timeline-ring-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--neu-text-faint);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,127,80,0.1);
}
.timeline-item:nth-child(even) .timeline-content {
  border-left-color: rgba(124,197,180,0.1);
}
.timeline-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: var(--font-display);
}
.timeline-desc {
  font-size: 15px;
  color: var(--neu-text-light);
  line-height: 1.65;
  margin: 0;
  max-width: 380px;
}

.timeline-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
/* subtle ring behind screenshot */
.timeline-visual::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(124,197,180,0.08);
  pointer-events: none;
}
.timeline-img {
  width: 100%;
  max-width: 240px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: var(--neu-raised);
  position: relative;
  z-index: 1;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  padding: 120px 40px;
  background: var(--neu-bg-elevated);
  text-align: center;
  border-top: 1px solid rgba(255,127,80,0.06);
  position: relative;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neu-accent), transparent);
  opacity: 0.3;
}
.cta-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.8px;
  margin-bottom: 12px;
  font-family: var(--font-display);
}
.cta-subtitle { font-size: 20px; color: var(--neu-text-light); margin-bottom: 40px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--neu-bg); padding: 60px 40px 40px; border-top: var(--neu-border); }
.footer-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo { width: 80px; height: 80px; }
.footer-brand-text { font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.footer-links { display: flex; gap: 40px; }
.footer-links a { color: var(--neu-text-faint); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.footer-links a:hover { color: var(--neu-accent); }
.footer-copyright { font-size: 14px; color: var(--neu-text-faint); opacity: 0.6; }

/* =========================================================
   SHARE PAGE (Calibrated for Dark System)
   ========================================================= */
.share-body { background: var(--neu-bg); color: #fff; font-family: var(--font-body); }
.share-header {
  padding: 20px 40px;
  border-bottom: var(--neu-border);
}
.share-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  max-width: 1200px;
  margin: 0 auto;
}
.share-logo-img { width: 28px; height: 28px; }
.share-logo span { font-size: 20px; font-weight: 800; color: #fff; }

.share-page { 
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,127,80,0.1) 0%, var(--neu-bg) 70%); 
}
.share-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 50% 0%, rgba(255,127,80,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.share-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at 50% 20%, black 0%, transparent 70%);
  pointer-events: none;
}
.share-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.share-header-text { text-align: center; display: flex; flex-direction: column; gap: 10px; }
.share-kicker {
  font-size: 11px;
  font-weight: 800;
  color: var(--neu-secondary);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.share-kicker-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--neu-secondary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}
.share-title {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
  letter-spacing: -0.8px;
  margin: 0;
}
.share-position {
  display: flex;
  gap: 20px;
  align-items: center;
}
.share-rank-card { 
  flex: 0 0 auto;
  padding: 20px 16px;
  min-width: 100px;
  background: rgba(0,0,0,0.4); 
  border: 1px solid rgba(255,127,80,0.4); 
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255,127,80,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.share-rank-label { font-size: 10px; font-weight: 800; color: var(--neu-text-faint); letter-spacing: 1.4px; text-transform: uppercase; }
.share-rank-number {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-display);
  background: linear-gradient(120deg, #fff 0%, var(--neu-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.share-rank-of { font-size: 11px; font-weight: 600; color: var(--neu-text-faint); }

.share-position-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.share-position-headline { font-size: 14px; font-weight: 700; color: #fff; }
.share-position-foot { font-size: 12px; color: var(--neu-text-faint); font-weight: 600; }
.share-position-foot strong { color: var(--neu-accent); }

.share-link {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 5px;
  background: rgba(0,0,0,0.4);
  border: var(--neu-border);
  border-radius: 12px;
}
.share-link-url {
  flex: 1;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  font-family: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, Menlo, monospace;
  font-variant-numeric: tabular-nums;
}
.share-link-copy {
  border: none;
  cursor: pointer;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 800;
  background: var(--neu-accent);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(255,127,80,0.4);
  letter-spacing: 0.4px;
}

.share-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.share-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s;
}
.share-chip:hover { background: rgba(255,255,255,0.1); }
.share-chip span { font-size: 14px; line-height: 1; }

.share-perks { display: flex; flex-direction: column; gap: 12px; }
.share-perks-kicker { font-size: 11px; font-weight: 800; color: var(--neu-text-faint); letter-spacing: 1.6px; text-transform: uppercase; }
.share-perk {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: var(--neu-border);
  border-radius: 14px;
}
.share-perk-circle {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}
.share-perk-body { flex: 1; }
.share-perk-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.share-perk-sub { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.share-perk-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--neu-accent);
  letter-spacing: 0.8px;
  padding: 2px 6px;
  border: 1px solid var(--neu-accent);
  border-radius: 4px;
}

.share-foot { text-align: center; font-size: 12px; color: var(--neu-text-faint); }

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */
@media (max-width: 1000px) {
  .timeline-item { grid-template-columns: 80px 1fr; gap: 24px; }
  .timeline-item:nth-child(even) { grid-template-columns: 80px 1fr; }
  .timeline-item:nth-child(even) .timeline-visual { order: unset; }
  .timeline-item:nth-child(even) .timeline-content { order: unset; }
  .timeline-visual { display: none; }
  .how-container::before { left: 40px; }
}
@media (max-width: 900px) {
  .hero-container, .founding-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content, .founding-left { align-items: center; }
  .hero-title { font-size: 48px; }
  .founding-title { font-size: 56px; }
  .hero-subtitle { margin: 0 auto; }
  .hero-visual { min-height: 360px; }
  .hero-ring-1 { width: 300px; height: 300px; }
  .hero-ring-2 { width: 240px; height: 240px; }
  .hero-ring-3 { width: 180px; height: 180px; }
  .hero-screenshot { max-width: 240px; }
  .launch-banner-inner { flex-direction: column; padding: 20px; }
  .launch-banner-meter { max-width: none; width: 100%; }
  .section-title { font-size: 36px; }
  .founding-card { padding: 24px; }
}

/* =========================================================
   MOBILE (≤ 480px) — covers iPhone SE through iPhone 16 Pro
   ========================================================= */
@media (max-width: 480px) {

  /* ---- Global padding ---- */
  .hero,
  .video-section,
  .founding,
  .how-it-works,
  .cta,
  .footer,
  .share-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ---- Hero ---- */
  .hero { padding-top: 48px; padding-bottom: 60px; }
  .hero-title { font-size: 36px; letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 16px; }
  .hero-visual { min-height: 260px; }
  .hero-ring-1 { width: 220px; height: 220px; }
  .hero-ring-2 { width: 175px; height: 175px; }
  .hero-ring-3 { width: 135px; height: 135px; }
  .hero-screenshot { max-width: 200px; }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-cta-group .neu-button-primary,
  .hero-cta-group .neu-button-secondary {
    width: 100%;
    text-align: center;
  }

  /* ---- Launch banner ---- */
  .launch-banner-headline { font-size: 13px; }
  .launch-banner-cta { width: 100%; text-align: center; }

  /* ---- Founding ---- */
  .founding { padding-top: 64px; padding-bottom: 64px; }
  .founding-title { font-size: 40px; letter-spacing: -1px; }
  .founding-sub { font-size: 16px; }
  .founding-form {
    flex-direction: column;
    border-radius: 20px;
    padding: 10px;
    max-width: 100%;
  }
  .founding-input { padding: 14px 16px; }
  .founding-submit { width: 100%; padding: 16px; }
  .founding-card { padding: 20px; }
  .founding-card-big { font-size: 48px; }

  /* ---- How It Works ---- */
  .how-it-works { padding-top: 64px; padding-bottom: 64px; }
  .how-container::before { left: 24px; }
  .timeline-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 36px 0;
  }
  .timeline-item:nth-child(even) { grid-template-columns: 56px 1fr; }
  .timeline-ring { width: 40px; height: 40px; }
  .timeline-ring::after { width: 32px; height: 32px; }
  .timeline-ring-inner { width: 12px; height: 12px; }
  .timeline-title { font-size: 20px; }
  .timeline-desc { font-size: 14px; }

  /* ---- Section headings ---- */
  .section-title { font-size: 28px; letter-spacing: -0.5px; }
  .section-subtitle { font-size: 15px; margin-bottom: 40px; }

  /* ---- CTA ---- */
  .cta { padding-top: 72px; padding-bottom: 72px; }
  .cta-title { font-size: 32px; letter-spacing: -1px; }
  .cta-subtitle { font-size: 16px; }
  .cta-buttons .neu-button-primary { width: 100%; text-align: center; }

  /* ---- Footer ---- */
  .footer { padding: 40px 20px 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .footer-logo { width: 48px; height: 48px; }
  .footer-brand-text { font-size: 20px; }

  /* ---- Modal / Share popup ---- */
  .modal-content .share-page { padding: 24px 20px; }
  .share-link-url {
    font-size: 12px;
    padding: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }
  .share-title { font-size: 28px; }
  .share-row { gap: 8px; }
  .share-chip { padding: 10px 14px; font-size: 12px; }

  /* ---- Countdown blocks ---- */
  .countdown[data-size="md"] .countdown-chunk { min-width: 44px; padding: 6px 0; }
  .countdown[data-size="md"] .countdown-num { font-size: 22px; }

  /* ---- Buttons (global) ---- */
  .neu-button-primary { padding: 14px 28px; font-size: 15px; }
  .neu-button-secondary { padding: 14px 28px; font-size: 15px; }
}

/* =========================================================
   MODAL (Popup) SYSTEM
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: var(--neu-bg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  border-radius: 32px;
  position: relative;
  overflow-y: auto;
  box-shadow: var(--neu-raised-lg), 0 30px 100px rgba(0,0,0,0.8);
  border: var(--neu-border);
  animation: modalSlideUp 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--neu-bg-elevated);
  border: var(--neu-border);
  color: var(--neu-text-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--neu-raised-sm);
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--neu-accent);
  color: #fff;
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Adjust share page for modal context */
.modal-content .share-page {
  padding: 40px;
}
.modal-content .share-header {
  display: none; /* Hide header inside modal */
}
