/* ============================================================
   CODEBREW — Warm Noir Editorial
   Cormorant Garamond (display) + Outfit (body)
   Palette: Deep navy · Warm cream · Bone accent
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  18px;
  --radius-xl:  26px;

  /* Deep navy darks */
  --dark:         #060E1F;
  --dark-2:       #0D1830;
  --surface:      #132040;
  --border:       #1F3260;
  --border-light: #2C4278;

  /* Cream / warm light sections */
  --cream:     #F6F2EA;
  --parchment: #E5DECE;
  --champagne: #FFF5DB;

  /* Bone accent — warm ivory, elegant on deep navy */
  --gold:      #DDD5C4;
  --gold-dark: #C8BFB0;
  --gold-dim:  rgba(221,213,196,0.12);

  /* Steel blue — secondary tone */
  --slate:     #546D7D;
  --slate-dim: rgba(84,109,125,0.12);

  /* Text on dark/navy */
  --text-warm:       #E8EFF8;
  --text-warm-sub:   #A8BBCF;
  --text-warm-muted: #6B82A0;

  /* Text on cream/light */
  --text-dark:       #060E1F;
  --text-dark-sub:   #1A2A50;
  --text-dark-muted: #3D5280;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-warm);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* === PROGRESS BAR === */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 1000;
  transition: width 0.1s linear;
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === GLOBAL HEADINGS === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
}

/* === SECTION LABEL === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* === SECTION HEADER (centered, used in system / ecosystem) === */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-warm-sub);
  line-height: 1.7;
}
/* light-section header override */
.light-header h2   { color: var(--text-dark); }
.light-header p    { color: var(--text-dark-sub); }

/* === GRADIENT TEXT === */
.gradient-text {
  background: linear-gradient(130deg, #ffffff 0%, var(--gold) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius);
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(221,213,196,0.28);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-ghost {
  background: transparent;
  color: var(--text-warm);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  width: 100%;
  justify-content: center;
}

/* Submit states */
.btn-loading, .btn-success { display: none; }
#submit-btn.loading .btn-text    { display: none; }
#submit-btn.loading .btn-loading { display: flex; }
#submit-btn.success .btn-text    { display: none; }
#submit-btn.success .btn-success { display: block; }
.btn-loading svg { width: 22px; height: 22px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* === BADGE DOT === */
.badge-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px rgba(221,213,196,0.25);
  flex-shrink: 0;
}

/* === REVEAL ANIMATIONS === */
.reveal-up    { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* === SR ONLY === */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--parchment);
  transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(246,242,234,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 16px rgba(6,14,31,0.08);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-sub);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--dark); }

.nav-cta {
  background: var(--dark) !important;
  color: var(--champagne) !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--surface) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(220,232,255,0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, black, transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(221,213,196,0.14) 0%, transparent 70%);
  top: -200px; right: -80px;
  animation: orb-drift 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(84,109,125,0.15) 0%, transparent 70%);
  bottom: -150px; left: -60px;
  animation: orb-drift 18s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(221,213,196,0.08) 0%, transparent 70%);
  top: 50%; left: 35%;
  animation: orb-drift 10s ease-in-out infinite;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(20px, -15px); }
  66%       { transform: translate(-15px, 20px); }
}

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

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(221,213,196,0.28);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-title .gradient-text { font-style: italic; }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-warm-sub);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}
.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-warm-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-light);
}

/* Hero image */
.hero-image-col { position: relative; }

.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 65%, rgba(13,21,39,0.35) 100%);
  z-index: 1;
  border-radius: inherit;
}
.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-xl) + 1px);
  background: linear-gradient(140deg, rgba(221,213,196,0.55) 0%, transparent 48%);
  z-index: -1;
}
.hero-photo {
  display: block;
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
}

.hero-photo-tag {
  position: absolute;
  top: 18px; left: 14px;
  z-index: 2;
  background: rgba(13,21,39,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-warm-sub);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 0.85; transform: scaleY(1.1); }
}

/* ============================================================
   VISUAL BANNER
   ============================================================ */
.visual-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,21,39,0.55) 0%,
    rgba(13,21,39,0.35) 50%,
    rgba(13,21,39,0.50) 100%
  );
}
.banner-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.banner-text p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.55), 0 1px 6px rgba(0,0,0,0.4);
}
.banner-text span { color: var(--cream); }
.banner-text em   { font-style: italic; color: var(--gold); }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  background: var(--cream);
  color: var(--text-dark);
  padding: 120px 0;
}

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

.problem-text .section-label { color: var(--slate); }
.problem-text .section-label::before { background: var(--slate); }
.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.problem-text p {
  font-size: 0.975rem;
  color: var(--text-dark-sub);
  line-height: 1.75;
  margin-bottom: 16px;
}
.problem-text strong { color: var(--text-dark); font-weight: 700; }

.problem-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 16px;
  transition: gap 0.2s;
}
.problem-link svg { width: 16px; height: 16px; }
.problem-link:hover { gap: 13px; }

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--parchment);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.problem-card:hover {
  border-color: rgba(221,213,196,0.3);
  box-shadow: 0 4px 20px rgba(221,213,196,0.08);
}
.problem-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 1px;
}
.problem-card-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.problem-card-body p {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   SYSTEM / PILLARS
   ============================================================ */
.system {
  background-color: var(--dark);
  background-image:
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 35%, var(--dark) 100%),
    radial-gradient(rgba(220,232,255,0.055) 1px, transparent 1px);
  background-size: 100% 100%, 28px 28px;
  padding: 120px 0;
  position: relative;
}

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

.pillar-card {
  background: rgba(220,232,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.pillar-card:hover::before  { transform: scaleX(1); }
.pillar-card:hover {
  background: rgba(244,237,228,0.07);
  border-color: rgba(221,213,196,0.3);
  transform: translateY(-3px);
}

.pillar-icon-wrap {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid rgba(221,213,196,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.pillar-card p {
  font-size: 0.875rem;
  color: var(--text-warm-sub);
  line-height: 1.65;
  margin-bottom: 14px;
}
.pillar-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(221,213,196,0.2);
  border-radius: 100px;
  padding: 3px 10px;
}

/* ============================================================
   PROGRAM / 6-WEEK TIMELINE
   ============================================================ */
.program {
  background: var(--cream);
  color: var(--text-dark);
  padding: 120px 0;
}
.program .section-header        { text-align: center; margin-bottom: 72px; }
.program .section-header h2     { color: var(--text-dark); }
.program .section-header p      { color: var(--text-dark-sub); }
.program .section-label         { color: var(--slate); }
.program .section-label::before { background: var(--slate); }

/* Timeline */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 700px;
  margin: 0 auto 64px;
}
.timeline-track {
  position: absolute;
  left: 31px;
  top: 32px; bottom: 32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--slate) 0%, rgba(84,109,125,0.12) 100%);
  z-index: 0;
}
.timeline-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.timeline-marker {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--text-dark);
  border: 2px solid var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 7px rgba(221,213,196,0.2);
  transition: box-shadow 0.2s;
}
.timeline-item:hover .timeline-marker {
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 9px rgba(221,213,196,0.3);
}

.timeline-week {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.timeline-content {
  padding-top: 12px;
  flex: 1;
}
.timeline-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 4px;
}
.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.65;
}

.program-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.program-cta .btn-primary { min-width: 220px; }
.program-cta p {
  font-size: 0.82rem;
  color: var(--text-dark-muted);
}

/* Program Roadmap */
.program-roadmap {
  margin-top: 96px;
  padding-top: 72px;
  border-top: 1px solid var(--parchment);
}
.roadmap-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.roadmap-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 12px;
}
.roadmap-header p {
  font-size: 0.95rem;
  color: var(--text-dark-sub);
  line-height: 1.7;
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.roadmap-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.roadmap-current {
  background: var(--dark);
  border: 1px solid var(--border);
}
.roadmap-soon {
  background: var(--champagne);
  border: 1px solid var(--parchment);
}
.roadmap-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.badge-active {
  background: var(--slate);
  color: var(--champagne);
}
.badge-soon {
  background: var(--parchment);
  color: var(--text-dark-muted);
}
.roadmap-level {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.roadmap-soon .roadmap-level { color: var(--slate); }
.roadmap-card h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 4px;
}
.roadmap-soon h4 { color: var(--text-dark); }
.roadmap-duration {
  font-size: 0.78rem;
  color: var(--text-warm-muted);
  margin: 0 0 16px;
}
.roadmap-soon .roadmap-duration { color: var(--text-dark-muted); }
.roadmap-card > p:not(.roadmap-duration) {
  font-size: 0.875rem;
  color: var(--text-warm-sub);
  line-height: 1.7;
  margin: 0 0 20px;
}
.roadmap-soon > p:not(.roadmap-duration) { color: var(--text-dark-sub); }
.roadmap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.roadmap-list li {
  font-size: 0.82rem;
  color: var(--text-warm-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.roadmap-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.roadmap-tracks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.roadmap-track {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dark-sub);
  background: var(--parchment);
  border: 1px solid var(--gold-dark);
  border-radius: 20px;
  padding: 5px 12px;
}

/* ============================================================
   ECOSYSTEM
   ============================================================ */
.ecosystem {
  background-color: var(--dark-2);
  background-image:
    radial-gradient(ellipse 75% 70% at 50% 50%, transparent 30%, var(--dark-2) 100%),
    radial-gradient(rgba(220,232,255,0.055) 1px, transparent 1px);
  background-size: 100% 100%, 28px 28px;
  padding: 120px 0;
  position: relative;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.eco-card {
  background: rgba(220,232,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, border-color 0.25s;
}
.eco-card:hover {
  background: rgba(220,232,255,0.05);
  border-color: rgba(221,213,196,0.25);
}
.eco-live {
  border-color: rgba(221,213,196,0.38);
  background: rgba(221,213,196,0.04);
}
.eco-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.eco-status.live {
  background: var(--gold-dim);
  border: 1px solid rgba(221,213,196,0.3);
  color: var(--gold);
}
.eco-status.soon {
  background: rgba(220,232,255,0.05);
  border: 1px solid var(--border-light);
  color: var(--text-warm-muted);
}
.eco-icon {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 14px;
}
.eco-card h3 {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.eco-card p {
  font-size: 0.875rem;
  color: var(--text-warm-sub);
  line-height: 1.7;
  margin-bottom: 18px;
}
.eco-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: opacity 0.2s;
}
.eco-link:hover { opacity: 0.72; }
.eco-link.muted { color: var(--text-warm-muted); font-weight: 400; }

/* ============================================================
   MEMBERSHIP
   ============================================================ */
.membership {
  background: var(--cream);
  color: var(--text-dark);
  padding: 120px 0;
}
.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.membership-text .section-label { color: var(--slate); }
.membership-text .section-label::before { background: var(--slate); }
.membership-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.membership-text p {
  font-size: 0.975rem;
  color: var(--text-dark-sub);
  line-height: 1.75;
  margin-bottom: 16px;
}
.membership-note {
  display: block;
  font-size: 0.82rem;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 24px;
  padding: 10px 14px;
  background: var(--slate-dim);
  border: 1px solid rgba(84,109,125,0.22);
  border-radius: var(--radius);
}
.membership-text .btn-primary {
  background: var(--text-dark);
  color: var(--cream);
}
.membership-text .btn-primary:hover {
  background: var(--dark-2);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.membership-features {
  display: flex;
  flex-direction: column;
}
.membership-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--parchment);
}
.membership-feature:last-child { border-bottom: none; }
.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.membership-feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.membership-feature span {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram {
  background: var(--surface);
  padding: 100px 0;
}
.instagram-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.instagram-header .section-label {
  display: block;
  text-align: center;
  justify-content: center;
}
.instagram-header .section-label::before { display: none; }
.instagram-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
}
.instagram-header p {
  font-size: 0.95rem;
  color: var(--text-warm-sub);
  line-height: 1.7;
}

.behold-slot { margin-bottom: 36px; }

.ig-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  background: rgba(220,232,255,0.03);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.ig-placeholder-inner {
  text-align: center;
  color: var(--text-warm-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ig-placeholder-inner p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-warm-sub);
}
.ig-placeholder-inner span {
  font-size: 0.85rem;
  max-width: 320px;
  line-height: 1.6;
}
.ig-cta { text-align: center; }
.ig-cta .btn-primary { display: inline-flex; }
.ig-cta svg { width: 18px; height: 18px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  color: var(--text-dark);
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 85% 75% at 35% 50%, transparent 25%, var(--cream) 100%),
    linear-gradient(rgba(13,21,39,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,21,39,0.025) 1px, transparent 1px);
  background-size: 100% 100%, 44px 44px, 44px 44px;
  padding: 120px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-xl) + 3px);
  background: linear-gradient(140deg, var(--gold) 0%, var(--gold) 55%, transparent 100%);
  z-index: -1;
}
.about-photo {
  display: block;
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 65%;
  border-radius: var(--radius-xl);
}
.about-photo-tag {
  position: absolute;
  top: 20px; left: 16px;
  z-index: 2;
  background: rgba(13,21,39,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-photo-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(221,213,196,0.45);
}
.about-photo-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
}
.about-photo-info span {
  font-size: 0.75rem;
  color: var(--text-warm-muted);
}

.about-text .section-label { color: var(--slate); }
.about-text .section-label::before { background: var(--slate); }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-text p {
  font-size: 0.975rem;
  color: var(--text-dark-sub);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-text strong { color: var(--text-dark); font-weight: 700; }

.about-quote {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 28px 0;
}
.quote-bar {
  width: 3px;
  align-self: stretch;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
  min-height: 36px;
}
.about-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
}

.about-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-dark-muted);
  font-size: 0.875rem;
  margin-top: 8px;
}
.about-location svg { width: 16px; height: 16px; }

/* ============================================================
   JOIN / CTA
   ============================================================ */
.join {
  position: relative;
  background: var(--dark-2);
  padding: 120px 0;
  overflow: hidden;
}
.join-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(220,232,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.join-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.join-orb-1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(221,213,196,0.12) 0%, transparent 70%);
  top: -160px; left: -100px;
}
.join-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(84,109,125,0.12) 0%, transparent 70%);
  bottom: -120px; right: -80px;
}
.join-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.join-content .section-label {
  justify-content: center;
}
.join-content .section-label::before { display: none; }
.join-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.join-content > p {
  font-size: 1rem;
  color: var(--text-warm-sub);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Form */
.join-form  { text-align: left; }
.form-row   {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group { display: flex; flex-direction: column; margin-bottom: 14px; }
.form-row .form-group { margin-bottom: 0; }

.form-input, .form-select {
  background: rgba(220,232,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--cream);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder  { color: var(--text-warm-muted); }
.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(221,213,196,0.18);
}
.form-select { cursor: pointer; color: var(--text-warm-muted); }
.form-select option { background: var(--surface); color: var(--cream); }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-warm-muted);
  margin-top: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--cream);
  border-top: 1px solid var(--parchment);
  padding: 72px 0 36px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--parchment);
  margin-bottom: 32px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-dark-sub);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-social { display: flex; flex-direction: column; gap: 8px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  transition: color 0.2s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { color: var(--dark); }

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
}
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.footer-links a, .footer-contact a, .footer-contact span {
  font-size: 0.85rem;
  color: var(--text-dark-sub);
  transition: color 0.2s;
  margin-bottom: 10px;
  display: block;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--dark); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner          { grid-template-columns: 1fr 340px; gap: 40px; }
  .about-grid          { grid-template-columns: 360px 1fr; gap: 48px; }
  .eco-grid            { grid-template-columns: 1fr; }
  .pillars-grid        { grid-template-columns: 1fr; }
}

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

  /* Nav mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--parchment);
    padding: 8px 0;
  }
  .nav-links.open  { display: flex; }
  .nav-links a     {
    padding: 14px 24px;
    font-size: 1rem;
    border-bottom: 1px solid var(--parchment);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta    { border-radius: 0; padding: 14px 24px; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-inner       { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-col   { display: none; }
  .hero-title       { font-size: clamp(3rem, 9vw, 4rem); }
  .hero-stats       { gap: 24px; }
  .stat-divider     { display: none; }

  /* Sections */
  .problem-grid     { grid-template-columns: 1fr; gap: 48px; }
  .membership-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about-grid       { grid-template-columns: 1fr; gap: 48px; }
  .about-photo      { height: 400px; }
  .visual-banner    { height: 300px; }
  .banner-text p    { font-size: clamp(1.4rem, 6vw, 2rem); }
  .footer-grid      { grid-template-columns: 1fr; gap: 36px; }
  .form-row         { grid-template-columns: 1fr; }
  .roadmap-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container    { padding: 0 16px; }
  .hero-title   { font-size: 2.8rem; }
  .hero-ctas    { flex-direction: column; }
  .btn-ghost    { text-align: center; justify-content: center; }
}

/* ============================================================
   FLOATING FORM BANNER
   ============================================================ */
.floating-form-banner {
  position: fixed;
  bottom: 0;
  right: 24px;
  z-index: 999;
  width: 340px;
  max-width: calc(100vw - 32px);
}

.floating-form-tab {
  background: var(--gold);
  color: var(--dark);
  padding: 13px 18px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  user-select: none;
  transition: background 0.2s;
}
.floating-form-tab:hover { background: var(--champagne); }

.floating-form-label { flex: 1; }

.floating-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--dark);
}
.floating-form-banner.open .floating-chevron { transform: rotate(180deg); }

.floating-form-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
  background: var(--dark);
  border: 1px solid var(--border-light);
  border-bottom: none;
  border-radius: 0;
}
.floating-form-banner.open .floating-form-body { max-height: 540px; }

@media (max-width: 480px) {
  .floating-form-banner { right: 0; width: 100%; }
  .floating-form-tab { border-radius: 10px 10px 0 0; }
}
