/* ===================================================================
   Myelin v2 — dark hero, brain video bg, Inter, liquid glass nav,
   Studio-style giant heading, Higgsfield-generated background.
   =================================================================== */

:root {
  --bg:           #000;
  --ink:          #fff;
  --ink-soft:     rgba(255,255,255,0.72);
  --ink-mute:     rgba(255,255,255,0.5);
  --hair:         rgba(255,255,255,0.12);

  /* iridescent palette */
  --c-blue:       #5b6cff;
  --c-indigo:     #7a5bff;
  --c-violet:     #b08cff;
  --c-pink:       #ff7ec1;
  --c-rose:       #ff9a7e;
  --c-cyan:       #7ecbff;

  /* type */
  --sans:         "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --serif:        "Instrument Serif", ui-serif, Georgia, serif;

  /* layout */
  --maxw:         1200px;
  --pad:          clamp(20px, 4vw, 56px);
  --radius:       22px;
  --radius-sm:    14px;
  --radius-pill:  9999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ===================================================================
   LIQUID GLASS (from supplied source — adapted to dark theme)
   =================================================================== */
.liquid-glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.10);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-pill);
}
.liquid-glass::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0)    40%,
    rgba(255,255,255,0)    60%,
    rgba(255,255,255,0.15) 80%,
    rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass-strong, .btn-glass-strong {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
  border: none;
  box-shadow:
    4px 4px 12px rgba(0,0,0,0.25),
    inset 0 1px 1px rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-pill);
}
.liquid-glass-strong::before, .btn-glass-strong::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0.22) 20%,
    rgba(255,255,255,0)    40%,
    rgba(255,255,255,0)    60%,
    rgba(255,255,255,0.22) 80%,
    rgba(255,255,255,0.55) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* video background -------------------------------------------------- */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-video.ready { opacity: 1; }
.hero-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(140% 80% at 50% 0%, rgba(120,130,255,0.15), transparent 60%),
    radial-gradient(80% 60% at 100% 100%, rgba(255,140,200,0.12), transparent 60%),
    #000;
  transition: opacity .6s ease;
}
.hero-video.ready ~ .hero-fallback { opacity: 0; }
.hero-orb {
  position: absolute; left: 50%; top: 50%;
  width: min(70vw, 720px); height: min(70vw, 720px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 25%, transparent 50%),
    conic-gradient(from 200deg, #5b6cff, #b08cff, #ff7ec1, #7ecbff, #5b6cff);
  filter: blur(40px) saturate(140%);
  opacity: 0.55;
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 50%, transparent 30%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 25%, transparent 65%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

/* nav --------------------------------------------------------------- */
.nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 10px 14px 10px 20px;
  width: min(calc(100% - 40px), 980px);
  border-radius: 9999px;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0%, rgba(255,255,255,0.3) 30%, transparent 60%),
    conic-gradient(from 220deg, var(--c-blue), var(--c-violet), var(--c-pink), var(--c-cyan), var(--c-blue));
  box-shadow: inset 0 0 6px rgba(255,255,255,0.55), 0 0 14px rgba(120,140,255,0.45);
  filter: saturate(150%);
}
.brand-word { font-family: var(--sans); }
.nav-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 4px; flex: 1; justify-content: center;
}
.nav-links a {
  padding: 8px 14px; border-radius: 9999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.06); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.link-quiet {
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); padding: 8px 6px;
}
.link-quiet:hover { color: var(--ink); }

/* nav buttons inherit btn-glass-strong */
.nav .btn-glass-strong {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); padding: 10px 16px;
}
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 4px 0; border-radius: 2px; }

/* eyebrow chip ------------------------------------------------------ */
.eyebrow {
  position: absolute; z-index: 10;
  top: calc(20px + 56px + 24px); left: var(--pad);
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--hair);
  padding: 8px 14px; border-radius: 9999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin: 0;
  animation: fadeUp .8s .25s both ease;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-pink);
  box-shadow: 0 0 12px var(--c-pink);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* stats top-right --------------------------------------------------- */
.stats {
  position: absolute; z-index: 10;
  top: calc(20px + 56px + 24px); right: var(--pad);
  display: flex; gap: clamp(24px, 4vw, 56px);
  text-align: right;
}
.stat { animation: fadeUp .6s both ease; }
.stat[data-fade="0"] { animation-delay: .35s; }
.stat[data-fade="1"] { animation-delay: .47s; }
.stat[data-fade="2"] { animation-delay: .59s; }
.stat-num {
  display: flex; align-items: baseline; justify-content: flex-end;
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.plus { color: var(--c-pink); font-size: 0.5em; margin-right: 4px; font-weight: 600; }
.stat-label {
  margin-top: 6px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* giant headline (bottom-right, Studio-style) ----------------------- */
.hero-headline {
  position: absolute; z-index: 10;
  left: var(--pad); right: var(--pad);
  bottom: calc(var(--pad) + 130px);
  text-align: right;
  margin: 0;
  font-size: clamp(48px, 11vw, 168px);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: var(--sans);
  pointer-events: none;
}
.hero-headline .reveal { display: block; overflow: hidden; }
.hero-headline .reveal > span {
  display: inline-block;
  transform: translateY(110%);
  animation: revealUp .85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-headline .reveal:nth-child(1) > span { animation-delay: .40s; }
.hero-headline .reveal:nth-child(2) > span { animation-delay: .54s; }
.hero-headline .reveal:nth-child(3) > span { animation-delay: .68s; }
@keyframes revealUp { to { transform: translateY(0); } }
.hero-headline .grad > span {
  background: linear-gradient(100deg,
    var(--c-blue), var(--c-violet), var(--c-pink), var(--c-rose));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* centered subtitle + buttons cluster (bottom) ---------------------- */
.hero-cluster {
  position: absolute; z-index: 10;
  left: 50%; bottom: var(--pad);
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.hero-sub {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  animation: fadeUp .7s .8s both ease;
}

.hero-cta {
  display: flex; gap: 12px;
  animation: fadeUp .7s 1.0s both ease;
}
.btn-glass, .btn-glass-strong {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink);
  cursor: pointer; border: 0;
  border-radius: 9999px;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .25s;
}
.btn-glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.12);
  position: relative; overflow: hidden;
}
.btn-glass::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.btn-glass:hover, .btn-glass-strong:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.22),
    0 0 24px 2px rgba(255,255,255,0.10);
}
.btn-glass:active, .btn-glass-strong:active { transform: scale(0.98); }
.btn-lg { padding: 16px 30px; font-size: 13.5px; }

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

/* ===================================================================
   LIGHT ZONE — everything below the hero
   (restores the original wireframe light-iridescent flow)
   =================================================================== */
.light-zone {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% -10%, #ffffff 0%, transparent 50%),
    linear-gradient(180deg, #f7f8fb 0%, #eef0f5 100%);
  color: #0e1014;
  overflow: hidden;
  isolation: isolate;
}
/* drifting iridescent orbs across the light zone */
.light-zone::before,
.light-zone::after,
.light-zone .light-orb-c {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(90px) saturate(140%);
  opacity: 0.55; pointer-events: none; z-index: 0;
  mix-blend-mode: screen;
}
.light-zone::before {
  width: 720px; height: 720px; top: -100px; left: -160px;
  background: radial-gradient(circle at 30% 40%,
    var(--c-blue) 0%, var(--c-indigo) 35%, transparent 70%);
  animation: drift1 28s ease-in-out infinite;
}
.light-zone::after {
  width: 620px; height: 620px; top: 30vh; right: -180px;
  background: radial-gradient(circle at 60% 50%,
    var(--c-pink) 0%, var(--c-violet) 45%, transparent 75%);
  animation: drift2 34s ease-in-out infinite;
}
@keyframes drift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(60px,40px) scale(1.06); }
}
@keyframes drift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-40px,80px) scale(1.08); }
}

/* light-theme text colors inside the light zone */
.light-zone .h2 { color: #0e1014; }
.light-zone .h2 em { color: #4a4d57; }
.light-zone .body { color: #4a4d57; }
.light-zone .band-sub { color: #4a4d57; }
.light-zone .kicker { color: var(--c-blue); }
.light-zone .link-arrow { color: #0e1014; }

/* light-theme buttons */
.light-zone .btn-glass-strong {
  color: #0e1014;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.5));
  box-shadow:
    0 10px 28px -10px rgba(60,40,120,0.25),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(120,100,180,0.1);
}
.light-zone .btn-glass-strong::before {
  background: linear-gradient(180deg,
    rgba(255,255,255,0.9) 0%, rgba(180,180,220,0.4) 50%,
    rgba(255,255,255,0.9) 100%);
}

/* light-theme pillar tiles */
.light-zone .pillar {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 16px -8px rgba(60,40,120,0.12);
}
.light-zone .pillar:hover {
  background: rgba(255,255,255,0.78);
  box-shadow: 0 12px 30px -14px rgba(60,40,120,0.22);
}
.light-zone .pillar.open { background: rgba(255,255,255,0.9); }
.light-zone .pillar-label { color: #0e1014; }
.light-zone .pillar-num { color: #8589a0; }
.light-zone .pillar-desc { color: #4a4d57; }

/* light-theme speaker / preview / glass cards */
.light-zone .liquid-glass,
.light-zone .speaker,
.light-zone .community-preview,
.light-zone .footer-newsletter,
.light-zone .about-visual,
.light-zone .travel-visual {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 14px 40px -16px rgba(40,30,80,0.18),
    0 2px 8px -2px rgba(40,30,80,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
}
.light-zone .liquid-glass::before { display: none; }
.light-zone .cp-post {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(14,16,20,0.06);
}
.light-zone .cp-name { color: #0e1014; }
.light-zone .cp-meta { color: #8589a0; }
.light-zone .cp-text { color: #4a4d57; }
.light-zone .cp-actions { color: #8589a0; }
.light-zone .speaker h3 { color: #0e1014; }
.light-zone .speaker-role { color: #4a4d57; }

/* light-theme footer */
.light-zone .footer { color: #0e1014; }
.light-zone .footer-tag { color: #4a4d57; }
.light-zone .footer-cols h4 { color: #8589a0; }
.light-zone .footer-cols a { color: #4a4d57; }
.light-zone .footer-cols a:hover { color: #0e1014; }
.light-zone .footer-newsletter h4 { color: #0e1014; }
.light-zone .footer-newsletter p { color: #4a4d57; }
.light-zone .footer-newsletter input {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(14,16,20,0.08);
  color: #0e1014;
}
.light-zone .footer-newsletter input::placeholder { color: #8589a0; }
.light-zone .footer-base { color: #8589a0; }
.light-zone .footer-base a { color: #8589a0; }
.light-zone .footer-base a:hover { color: #0e1014; }
.light-zone .footer-inner { border-bottom-color: rgba(14,16,20,0.08); }

/* ===================================================================
   BANDS (page sections — structure only; colors come from light-zone)
   =================================================================== */
.band {
  padding: clamp(80px, 9vw, 140px) var(--pad);
  display: flex; justify-content: center;
  position: relative; z-index: 1;
}
.band-inner { max-width: var(--maxw); width: 100%; }
.band-head { margin-bottom: 56px; max-width: 760px; }
.band-head.row { display: flex; align-items: end; justify-content: space-between; max-width: none; gap: 24px; flex-wrap: wrap; }
.band-sub { color: var(--ink-soft); margin-top: 12px; font-size: 14px; }

.kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin: 0 0 16px;
  font-weight: 600;
}
.h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
}
.h2 em { font-style: italic; font-family: var(--serif); font-weight: 400; color: var(--ink-soft); }
.body { color: var(--ink-soft); font-size: 16px; max-width: 560px; line-height: 1.65; margin-top: 20px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  margin-top: 24px;
}
.link-arrow span { transition: transform .2s; }
.link-arrow:hover span { transform: translateX(4px); }

/* about ----------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.about-visual { aspect-ratio: 1/1; max-width: 460px; padding: 0; overflow: hidden; position: relative; border-radius: 28px; }
.about-orb {
  position: absolute; inset: 6%;
  background:
    radial-gradient(circle at 35% 35%, #ffffff 0%, rgba(255,255,255,0.7) 18%, transparent 35%),
    conic-gradient(from 200deg at 50% 55%,
      var(--c-blue), var(--c-indigo), var(--c-violet), var(--c-pink), var(--c-cyan), var(--c-blue));
  filter: blur(8px) saturate(140%);
  border-radius: 50%;
  animation: spin2 36s linear infinite;
}
@keyframes spin2 { to { transform: rotate(360deg); } }

/* pillar grid ------------------------------------------ */
.pillar-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hair);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 18px 16px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .25s;
  position: relative; overflow: hidden;
}
.pillar:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 12px 30px -14px rgba(120,140,255,0.4);
}
.pillar-head { display: flex; align-items: center; gap: 10px; }
.pillar-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.85), transparent 60%),
    conic-gradient(from 200deg, var(--c-blue), var(--c-violet), var(--c-pink), var(--c-cyan), var(--c-blue));
  box-shadow: inset 0 0 6px rgba(255,255,255,0.5), 0 2px 8px rgba(120,120,200,0.3);
  flex: 0 0 auto;
}
.pillar-label {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.pillar-num {
  margin-left: auto;
  font-size: 10px; color: var(--ink-mute);
  font-weight: 500; letter-spacing: 0.1em;
}
.pillar-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,.2,.2,1), margin-top .35s, opacity .25s;
  opacity: 0;
}
.pillar.open .pillar-desc { max-height: 260px; opacity: 1; margin-top: 4px; }
.pillar.open { background: rgba(255,255,255,0.10); }

/* speakers ------------------------------------------- */
.speaker-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.speaker { padding: 22px; border-radius: 18px; background: rgba(255,255,255,0.04); border: 1px solid var(--hair); }
.speaker-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0%, rgba(255,255,255,0.5) 35%, transparent 65%),
    conic-gradient(from 220deg, var(--c-blue), var(--c-violet), var(--c-pink), var(--c-cyan), var(--c-blue));
  box-shadow: inset 0 0 6px rgba(255,255,255,0.5), 0 4px 14px rgba(120,120,200,0.35);
  margin-bottom: 16px;
}
.speaker h3 { margin: 0 0 4px; font-size: 16px; font-weight: 600; letter-spacing: -0.005em; }
.speaker-role { margin: 0; color: var(--ink-soft); font-size: 13px; }
.speaker-cta { background: rgba(255,255,255,0.02); border-style: dashed; }

/* community ------------------------------------------ */
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.community-preview { padding: 22px; display: flex; flex-direction: column; gap: 14px; border-radius: 24px; background: rgba(255,255,255,0.04); border: 1px solid var(--hair); }
.cp-post { display: flex; gap: 14px; padding: 16px; border-radius: 16px; background: rgba(255,255,255,0.04); border: 1px solid var(--hair); }
.cp-av {
  width: 38px; height: 38px; border-radius: 50%; flex: 0 0 auto;
  background: conic-gradient(from 200deg, var(--c-blue), var(--c-indigo), var(--c-violet), var(--c-blue));
  filter: saturate(140%);
}
.cp-av-2 { background: conic-gradient(from 60deg, var(--c-pink), var(--c-rose), var(--c-violet), var(--c-pink)); }
.cp-body { flex: 1; }
.cp-name { margin: 0 0 6px; font-weight: 600; font-size: 13px; }
.cp-meta { color: var(--ink-mute); font-weight: 400; }
.cp-text { margin: 0 0 10px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.cp-actions { display: flex; gap: 16px; font-size: 12px; color: var(--ink-mute); }

/* travel --------------------------------------------- */
.travel-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.travel-visual { aspect-ratio: 4/3; max-width: 460px; padding: 0; position: relative; overflow: hidden; border-radius: 28px; }
.travel-orb {
  position: absolute; inset: 12%;
  background:
    radial-gradient(circle at 60% 30%, #ffffff 0%, transparent 35%),
    conic-gradient(from 60deg at 50% 60%,
      var(--c-pink), var(--c-rose), var(--c-violet), var(--c-blue), var(--c-pink));
  filter: blur(6px) saturate(140%);
  border-radius: 50%;
  animation: spin2 40s linear infinite reverse;
}

/* footer ---------------------------------------------- */
.footer {
  padding: clamp(60px, 7vw, 100px) var(--pad) 30px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 1;
}
.footer-inner {
  max-width: var(--maxw); width: 100%;
  display: grid; grid-template-columns: 1.1fr 2fr 1.2fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid var(--hair);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-tag { color: var(--ink-soft); font-size: 14px; max-width: 260px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; font-size: 13px; }
.footer-cols h4 { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 14px; font-weight: 600; }
.footer-cols ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-cols a { color: var(--ink-soft); }
.footer-cols a:hover { color: var(--ink); }
.footer-newsletter { padding: 22px; border-radius: 22px; background: rgba(255,255,255,0.04); border: 1px solid var(--hair); }
.footer-newsletter h4 { margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.footer-newsletter p { margin: 0 0 14px; color: var(--ink-soft); font-size: 13px; }
.footer-newsletter form { display: flex; gap: 8px; }
.footer-newsletter input {
  flex: 1; min-width: 0;
  padding: 10px 14px;
  border-radius: 9999px;
  border: 1px solid var(--hair);
  background: rgba(255,255,255,0.04);
  font: inherit; color: var(--ink); outline: none;
}
.footer-newsletter input::placeholder { color: var(--ink-mute); }
.footer-newsletter input:focus { border-color: var(--c-blue); }
.footer-base {
  max-width: var(--maxw); width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-mute);
  margin-top: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-base a { color: var(--ink-mute); }
.footer-base a:hover { color: var(--ink); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 900px) {
  .nav-links, .nav-cta .link-quiet { display: none; }
  .nav-toggle { display: block; }
  .eyebrow { font-size: 10px; left: 18px; top: 96px; padding: 6px 10px; }
  .hero-headline { font-size: clamp(40px, 14vw, 88px); bottom: 170px; }
  .hero-sub { font-size: 11px; letter-spacing: 0.15em; }
  .hero-cluster { gap: 14px; bottom: 30px; padding: 0 16px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .community-grid, .travel-grid { grid-template-columns: 1fr; }
  .speaker-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .speaker-row { grid-template-columns: 1fr; }
  .stats { gap: 14px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-orb, .about-orb, .travel-orb, .eyebrow .dot { animation: none !important; }
  .hero-headline .reveal > span { transform: translateY(0) !important; animation: none !important; }
  .eyebrow, .hero-cta, .hero-sub { animation: none !important; }
  .light-zone::before, .light-zone::after { animation: none !important; }
  * { transition: none !important; }
}
