/* ============================================================
   Dream Voyage 360 — Complete Redesign
   Palette: True black (#08080a), warm white (#f5f4f0), gold (#c9a96e)
   Fonts: Instrument Serif (display) + Inter (body)
   ============================================================ */

:root {
  --black:   #08080a;
  --black-2: #0d0d10;
  --black-3: #131316;
  --black-4: #1a1a1e;
  --white:   #f5f4f0;
  --muted:   rgba(245,244,240,0.45);
  --muted-2: rgba(245,244,240,0.25);
  --border:  rgba(245,244,240,0.07);
  --border2: rgba(245,244,240,0.13);
  --gold:    #c9a96e;
  --gold-d:  rgba(201,169,110,0.10);
  --gold-b:  rgba(201,169,110,0.25);
  --serif:   'Instrument Serif', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --ease:    cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }

/* ── Cursor ── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s, border .25s;
  will-change: left, top;
  border: 0px solid transparent;
}
body.c-hover .cursor {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.5);
}
body.light .cursor {
  background: #8b6f3f;
}
body.light .cursor.c-hover,
body.light.c-hover .cursor {
  width: 44px;
  height: 44px;
  background: transparent !important;
  border: 2px solid #8b6f3f !important;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 2rem;
  font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn--light {
  background: var(--white); color: var(--black);
}
.btn--light:hover { background: var(--gold); }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--white);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--full { width: 100%; justify-content: center; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  z-index: 100;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(8,8,10,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  display: flex;
  align-items: center;
  height: 32px;
}
.nav__logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}
.nav__logo img:hover {
  opacity: 0.8;
}
body.light .nav__logo img {
  filter: brightness(0) invert(0);
}
.nav__links { display: flex; gap: 2.5rem; list-style: none; }
.nav__link {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.nav__link:hover { color: var(--white); }
.nav__link--active { color: var(--white); }
.nav__cta {
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,169,110,0.35);
  padding: .5rem 1.25rem; border-radius: 2px;
  transition: background .2s, color .2s;
}
.nav__cta:hover { background: var(--gold); color: var(--black); }
.nav__burger {
  display: none; flex-direction: column; gap: 6px; padding: 4px;
}
.nav__burger span {
  display: block; width: 22px; height: 1px; background: var(--white);
  transition: transform .3s, opacity .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ── */
.mnav {
  position: fixed; inset: 0; background: var(--black);
  z-index: 99; transform: translateX(100%);
  transition: transform .45s cubic-bezier(.77,0,.175,1);
  display: flex; flex-direction: column; justify-content: center;
  padding: 3rem;
}
.mnav.open { transform: translateX(0); }
.mnav__close {
  position: absolute; top: 1.75rem; right: 2rem;
  color: var(--muted); font-size: 1.1rem;
}
.mnav ul { list-style: none; }
.mnav__link {
  display: block; padding: 1.1rem 0;
  font-family: var(--serif); font-size: 2.5rem;
  color: var(--white); border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mnav__link:hover { color: var(--gold); }

/* Mobile Nav Actions */
.mnav__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.mnav__theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.mnav__theme-toggle:hover {
  border-color: var(--gold);
  background: var(--black-3);
}
.mnav__theme-toggle .icon-sun {
  display: none;
}
.mnav__theme-toggle .icon-moon {
  display: block;
}
body.light .mnav__theme-toggle .icon-sun {
  display: block;
}
body.light .mnav__theme-toggle .icon-moon {
  display: none;
}
.mnav__cta {
  display: block;
  text-align: center;
  padding: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.mnav__cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── Layout ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 3rem; }
.section { padding: 10rem 0; }

.label {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem; display: block;
}
.h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -.01em;
}
.h2 em { font-style: italic; color: var(--gold); }

/* ── Reveal ── */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="120"] { transition-delay: 120ms; }
[data-reveal][data-delay="150"] { transition-delay: 150ms; }
[data-reveal][data-delay="200"] { transition-delay: 200ms; }
[data-reveal][data-delay="240"] { transition-delay: 240ms; }
[data-reveal][data-delay="280"] { transition-delay: 280ms; }
[data-reveal][data-delay="320"] { transition-delay: 320ms; }
[data-reveal][data-delay="360"] { transition-delay: 360ms; }
[data-reveal][data-delay="440"] { transition-delay: 440ms; }
[data-reveal][data-delay="480"] { transition-delay: 480ms; }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
  padding: 10rem 3rem 6rem;
}
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: .5;
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; }
.hero__tag {
  display: inline-block;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border);
  padding: .4rem 1rem; border-radius: 1px; margin-bottom: 2.5rem;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 400; line-height: .95;
  letter-spacing: -.02em; margin-bottom: 2rem;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__desc {
  font-size: 1rem; color: var(--muted); line-height: 1.8;
  max-width: 440px; margin-bottom: 3rem;
}
.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 3rem; right: 3rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll-bar {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ── Ticker ── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  background: var(--black-2);
}
.ticker__track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: ticker 25s linear infinite; align-items: center;
}
.ticker__track span {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.ticker__dot { color: var(--gold) !important; font-size: .4rem !important; }

/* ── About ── */
.about__grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 8rem; align-items: start;
}
.about__left .h2 { margin-top: .5rem; }
.about__body {
  font-size: .95rem; color: var(--muted); line-height: 1.85;
  margin-bottom: 1.5rem;
}
.about__stats {
  display: flex; gap: 3rem; margin-top: 3rem;
  padding-top: 3rem; border-top: 1px solid var(--border);
}
.about__stat-n {
  display: block; font-family: var(--serif);
  font-size: 2.8rem; color: var(--white); line-height: 1;
  margin-bottom: .4rem;
}
.about__stat-u { color: var(--gold); }
.about__stat-l { font-size: .75rem; color: var(--muted); line-height: 1.5; max-width: 140px; }
.about__stat { display: flex; flex-direction: column; }
.about__stat-row { display: flex; align-items: baseline; gap: .1rem; }

/* ── What We Do ── */
.what { background: var(--black-2); }
.what .h2 { margin-bottom: 5rem; }
.what__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.what__card {
  background: var(--black-2); padding: 3rem 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: background .35s;
  position: relative; overflow: hidden;
}
.what__card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.what__card:hover { background: var(--black-3); }
.what__card:hover::after { transform: scaleX(1); }
.what__num {
  font-size: .65rem; letter-spacing: .2em; color: var(--gold);
  font-weight: 500;
}
.what__icon { color: var(--muted); }
.what__card h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
}
.what__card p { font-size: .875rem; color: var(--muted); line-height: 1.75; }
.what__locs {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; padding-top: 1rem;
}
.what__locs span {
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border);
  padding: .3rem .7rem; border-radius: 1px;
  transition: border-color .2s, color .2s;
}
.what__card:hover .what__locs span { border-color: var(--border2); color: var(--white); }

/* ── Hardware ── */
.hardware {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hardware__inner {
  max-width: 1120px; margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; min-height: 80vh;
}
.hardware__text { padding: 6rem 0; }
.hardware__text .h2 { margin-bottom: 3rem; }
.hardware__list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.hardware__list li {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
  font-size: .875rem; color: var(--muted);
  transition: color .2s;
}
.hardware__list li:first-child { border-top: 1px solid var(--border); }
.hardware__list li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.hardware__list li:hover { color: var(--white); }

/* Kiosk illustration */
.hardware__visual {
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 0;
}
.kiosk {
  position: relative; width: 200px;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.kiosk__screen {
  width: 160px; height: 110px;
  background: var(--black-3);
  border: 1px solid var(--border2);
  border-radius: 6px 6px 0 0;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.kiosk__screen span {
  font-family: var(--serif); font-size: 1.1rem; color: var(--gold);
  letter-spacing: .1em; position: relative; z-index: 1;
}
.kiosk__scanline {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: scanline 3s ease-in-out infinite;
}
.kiosk__body {
  width: 180px; background: var(--black-3);
  border: 1px solid var(--border); border-top: none;
  padding: 1.5rem 1rem; display: flex; justify-content: center;
}
.kiosk__headset {
  width: 80px; height: 36px;
  background: var(--black-2); border: 1px solid var(--border2);
  border-radius: 20px; display: flex; align-items: center;
  justify-content: center; gap: 8px;
}
.kiosk__lens {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--black); border: 1px solid var(--gold);
  box-shadow: 0 0 8px rgba(201,169,110,0.3);
}
.kiosk__base {
  width: 200px; height: 12px;
  background: var(--black-3); border: 1px solid var(--border);
  border-top: none; border-radius: 0 0 4px 4px;
}
.kiosk__glow {
  position: absolute; bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 40px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.2), transparent 70%);
  filter: blur(8px);
}

/* ── Founders ── */
.founders {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.founders__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 5rem;
}
.founder__card {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 3rem; border: 1px solid var(--border);
  border-radius: 2px; transition: border-color .3s;
}
.founder__card:hover { border-color: var(--border2); }
.founder__avatar {
  width: 64px; height: 64px; flex-shrink: 0;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 2px; background: var(--gold-d);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1rem; color: var(--gold);
  letter-spacing: .05em;
}
.founder__info h3 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
  margin-bottom: .3rem;
}
.founder__role {
  display: block; font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.founder__info p { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* ── Creators Section ── */
.creators { background: var(--black-2); }
.creators .h2 { margin-bottom: 5rem; }
.creators__layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}

/* Benefits */
.creators__benefits { display: flex; flex-direction: column; gap: 0; }
.cbenefit {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.cbenefit:first-child { border-top: 1px solid var(--border); }
.cbenefit__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-top: .1rem;
  transition: border-color .2s, background .2s;
}
.cbenefit:hover .cbenefit__icon { border-color: var(--gold); background: var(--gold-d); }
.cbenefit strong { display: block; font-size: .9rem; font-weight: 500; margin-bottom: .4rem; }
.cbenefit p { font-size: .825rem; color: var(--muted); line-height: 1.7; }

/* Auth Panel */
.creators__auth {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 2px; padding: 2.5rem;
  position: sticky; top: 8rem;
}

/* Interest Form (Launching Soon) */
.creators__interest {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
  position: sticky;
  top: 8rem;
}
.interest__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.interest__badge svg {
  width: 16px;
  height: 16px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.interest__title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.interest__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.interest__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.interest__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.interest__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.interest__field label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.interest__field input,
.interest__field select,
.interest__field textarea {
  background: rgba(245, 244, 240, 0.04);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.875rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.interest__field input::placeholder,
.interest__field textarea::placeholder {
  color: rgba(245, 244, 240, 0.2);
}
.interest__field input:focus,
.interest__field select:focus,
.interest__field textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}
.interest__field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(245,244,240,0.3)' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.interest__field select option {
  background: #0f0f12;
}
.interest__field textarea {
  resize: vertical;
  min-height: 80px;
}
.interest__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-2);
  margin-top: 0.5rem;
}

.auth__tabs {
  display: flex; gap: 0; margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.auth__tab {
  flex: 1; padding: .9rem 1rem;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color .2s, border-color .2s;
}
.auth__tab--active { color: var(--white); border-bottom-color: var(--gold); }
.auth__form { display: flex; flex-direction: column; gap: 1.25rem; }
.auth__form--hidden { display: none; }
.auth__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.auth__field { display: flex; flex-direction: column; gap: .4rem; }
.auth__field label {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
}
.auth__field input,
.auth__field select {
  background: rgba(245,244,240,0.04);
  border: 1px solid var(--border);
  border-radius: 2px; padding: .8rem 1rem;
  color: var(--white); font-family: var(--sans); font-size: .875rem;
  outline: none; width: 100%;
  transition: border-color .2s, background .2s;
}
.auth__field input::placeholder { color: rgba(245,244,240,0.2); }
.auth__field input:focus,
.auth__field select:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
}
.auth__field select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(245,244,240,0.3)' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.auth__field select option { background: #0f0f12; }
.auth__switch {
  text-align: center; font-size: .78rem; color: var(--muted); margin-top: .25rem;
}
.auth__switch-btn {
  color: var(--gold); font-size: .78rem; text-decoration: underline;
  text-underline-offset: 3px; transition: opacity .2s;
}
.auth__switch-btn:hover { opacity: .7; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
  background: var(--black-2);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer__col--brand .nav__logo {
  margin-bottom: 1rem;
  height: 40px;
}
.footer__col--brand .nav__logo img {
  height: 40px;
}
.footer__desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  max-width: 280px;
}
.footer__company {
  font-size: .75rem;
  color: var(--muted-2);
}
.footer__heading {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__list li a {
  font-size: .85rem;
  color: var(--muted);
  transition: color 0.2s;
  display: inline-block;
}
.footer__list li a:hover {
  color: var(--white);
}
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: .75rem;
  color: var(--muted-2);
}

/* ── Keyframes ── */
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%,100% { opacity:1; transform:scaleY(1); } 50% { opacity:.2; transform:scaleY(.5); } }
@keyframes scanline { 0% { top: 0; opacity:1; } 100% { top: 100%; opacity:0; } }

/* ============================================================
   RESPONSIVE DESIGN
   Breakpoints: 1200px (large desktop), 1024px (tablet), 768px (mobile)
   ============================================================ */

/* ── Large Desktop (1200px+) ── */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  .hero__title {
    font-size: 9rem;
  }
}

/* ── Tablet & Small Desktop (1024px and below) ── */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  /* Navigation */
  .nav {
    padding: 1.2rem 2rem;
  }
  .nav__links {
    gap: 1.5rem;
  }
  .nav__link {
    font-size: 0.72rem;
  }
  
  /* Hero */
  .hero {
    padding: 8rem 2rem 5rem;
  }
  .hero__title {
    font-size: clamp(4rem, 8vw, 7rem);
  }
  
  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__stats {
    flex-direction: row;
    gap: 2rem;
  }
  
  /* Pillars */
  .pillars {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  /* Benefits */
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Hardware */
  .hardware__inner {
    grid-template-columns: 1fr;
  }
  .hardware__visual {
    display: none;
  }
  
  /* Creators */
  .creators__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .creators__auth,
  .creators__interest {
    position: static;
  }
  
  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }
  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

/* ── Mobile (768px and below) ── */
@media (max-width: 768px) {
  /* Base */
  body {
    font-size: 15px;
  }
  
  /* Navigation */
  .nav {
    padding: 1rem 1.5rem;
  }
  .nav__links,
  .nav__cta,
  .nav__right button {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__logo {
    height: 26px;
  }
  .nav__logo img {
    height: 26px;
  }
  
  /* Container */
  .container {
    padding: 0 1.5rem;
  }
  
  /* Sections */
  .section {
    padding: 6rem 0;
  }
  
  /* Hero */
  .hero {
    min-height: 90vh;
    padding: 7rem 1.5rem 4rem;
  }
  .hero__title {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
    margin-bottom: 1.5rem;
  }
  .hero__desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .hero__btns {
    flex-direction: column;
    width: 100%;
  }
  .hero__btns .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__scroll {
    display: none;
  }
  
  /* Ticker */
  .ticker {
    padding: 0.9rem 0;
  }
  .ticker__track span {
    font-size: 0.65rem;
  }
  
  /* About */
  .about__stats {
    flex-direction: column;
    gap: 2rem;
  }
  .about__stat-n {
    font-size: 2.2rem;
  }
  .about__cta {
    flex-direction: column;
    width: 100%;
  }
  .about__cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Pillars */
  .pillar {
    padding: 2.5rem 2rem;
  }
  .pillar__num {
    font-size: 3rem;
  }
  
  /* Benefits */
  .benefit__card {
    padding: 3rem 2rem;
  }
  .benefit__num {
    font-size: 4rem;
  }
  .benefit__card h3 {
    font-size: 1.6rem;
  }
  
  /* What We Do */
  .what__grid {
    grid-template-columns: 1fr;
  }
  
  /* Founders */
  .founders__grid {
    grid-template-columns: 1fr;
  }
  .founder__card {
    flex-direction: column;
    text-align: center;
  }
  
  /* Blog */
  .blog__grid {
    grid-template-columns: 1fr;
  }
  .blog__card,
  .blog__card--featured {
    padding: 2rem;
  }
  .blog__card--featured h3 {
    font-size: 1.8rem;
  }
  .blog__card h3 {
    font-size: 1.4rem;
  }
  
  /* Contact */
  .contact__form {
    padding: 2rem;
  }
  
  /* Footer */
  .footer {
    padding: 4rem 0 2rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer__col--brand {
    grid-column: 1;
    text-align: center;
  }
  .footer__col--brand .nav__logo {
    justify-content: center;
    height: 36px;
  }
  .footer__col--brand .nav__logo img {
    height: 36px;
  }
  .footer__desc {
    max-width: 100%;
  }
  .footer__heading {
    font-size: 0.65rem;
  }
  .footer__list {
    gap: 0.6rem;
  }
  .footer__list li a {
    font-size: 0.8rem;
  }
  
  /* Page Hero */
  .page-hero {
    padding: 10rem 0 5rem;
  }
  .page-hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .page-hero__cta {
    flex-direction: column;
    width: 100%;
  }
  .page-hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Founder Full */
  .founder-full {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
  }
  .founder-full--reverse {
    grid-template-columns: 1fr;
  }
  .founder-full--reverse .founder-full__avatar {
    order: 0;
  }
  .founder-full--reverse .founder-full__body {
    order: 0;
  }
  .founder-full__avatar {
    width: 120px;
    height: 120px;
    font-size: 1.6rem;
    margin: 0 auto;
  }
  .founder-full__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .founder-full__name {
    font-size: 2rem;
  }
  .founder-full__links {
    justify-content: center;
  }
  
  /* Sphere Section */
  .sphere-section {
    height: 250vh;
  }
  .sphere-label__outer,
  .sphere-label__inner {
    font-size: 1rem;
    white-space: normal;
    text-align: center;
    padding: 0 1.5rem;
  }
  .sphere-scroll-hint {
    bottom: 2rem;
    right: 50%;
    transform: translateX(50%);
  }
  
  /* Creator Scroll Section */
  .creator-scroll-section {
    height: 250vh;
  }
  .creator-scroll-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }
  .creator-scroll-sub {
    font-size: 0.9rem;
  }
  
  /* Interest Form */
  .interest__row {
    grid-template-columns: 1fr;
  }
  .creators__interest {
    padding: 2rem;
  }
  
  /* Auth Forms */
  .auth__row {
    grid-template-columns: 1fr;
  }
  
  /* Legal Pages */
  .legal__section h2 {
    font-size: 1.5rem;
  }
  .legal__section h3 {
    font-size: 1.1rem;
  }
  .legal__section p,
  .legal__section ul li {
    font-size: 0.9rem;
  }
  
  /* Buttons */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
  }
  
  /* Hide cursor on mobile */
  .cursor {
    display: none;
  }
}

/* ── Small Mobile (480px and below) ── */
@media (max-width: 480px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .page-hero__title {
    font-size: 2.5rem;
  }
  .h2 {
    font-size: 2rem;
  }
  .pillar__num,
  .benefit__num {
    font-size: 2.5rem;
  }
  .nav__logo {
    height: 24px;
  }
  .nav__logo img {
    height: 24px;
  }
  .footer__col--brand .nav__logo {
    height: 32px;
  }
  .footer__col--brand .nav__logo img {
    height: 32px;
  }
}

/* ── Landscape Mobile ── */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 6rem 1.5rem 3rem;
  }
  .sphere-section,
  .creator-scroll-section {
    height: 200vh;
  }
}

/* ── Responsive ── */

/* ── Pillars Grid ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 6rem;
}
.pillar {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3rem 2.5rem;
  transition: border-color .3s, background .3s;
}
.pillar:hover {
  border-color: var(--border2);
  background: var(--black-3);
}
.pillar__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0.4;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.pillar p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Benefits Section ── */
.benefits {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.benefits .h2 {
  margin-bottom: 5rem;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.benefit__card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 4rem 3rem;
  transition: border-color .3s, background .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.benefit__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.benefit__card:hover {
  border-color: var(--gold-b);
  background: var(--black-3);
  transform: translateY(-4px);
}
.benefit__card:hover::before {
  transform: scaleX(1);
}
.benefit__num {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0.3;
  font-weight: 400;
}
.benefit__card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.benefit__card p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── Blog Section ── */
.blog {
  background: var(--black);
}
.blog .h2 {
  margin-bottom: 5rem;
}
.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.blog__card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3rem;
  transition: border-color .3s, background .3s;
}
.blog__card:hover {
  border-color: var(--border2);
  background: var(--black-3);
}
.blog__card--featured {
  grid-column: 1 / -1;
  padding: 4rem;
}
.blog__card--featured h3 {
  font-size: 2.2rem;
}
.blog__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.blog__tag {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: .35rem .85rem;
  border-radius: 1px;
}
.blog__read {
  font-size: .7rem;
  color: var(--muted-2);
  letter-spacing: .05em;
}
.blog__card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.blog__card p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.blog__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity .2s;
}
.blog__link:hover {
  opacity: .7;
}
.blog__link span {
  transition: transform .2s;
}
.blog__link:hover span {
  transform: translateX(4px);
}
.blog__expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.blog__expand.open {
  max-height: 1200px;
}
.blog__expand-body {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}
.blog__expand-body p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.blog__expand-body p:last-of-type {
  margin-bottom: 1.5rem;
}
.blog__yt {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--gold);
  text-decoration: none;
  transition: opacity .2s;
}
.blog__yt:hover {
  opacity: .7;
}

/* Blog grid layout: 1 featured + 3 in row */
@media (min-width: 769px) {
  .blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog__card--featured {
    grid-column: 1 / -1;
  }
}

/* ── Contact Section ── */
.contact {
  background: var(--black-2);
  border-top: 1px solid var(--border);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact__left .h2 {
  margin-bottom: 3rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.contact__detail {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.contact__detail-label {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact__detail a,
.contact__detail span {
  font-size: .95rem;
  color: var(--white);
  line-height: 1.6;
  transition: color .2s;
}
.contact__detail a:hover {
  color: var(--gold);
}
.contact__social {
  display: flex;
  gap: 1rem;
}
.social__link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
}
.social__link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-d);
}
.contact__form {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3rem;
}
.contact__form textarea {
  background: rgba(245,244,240,0.04);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: .875rem;
  outline: none;
  width: 100%;
  resize: vertical;
  transition: border-color .2s, background .2s;
}
.contact__form textarea::placeholder {
  color: rgba(245,244,240,0.2);
}
.contact__form textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
}

/* ── Footer ── */
.footer__reg {
  font-size: .75rem;
  color: var(--muted-2);
  margin-top: .5rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pillars {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
  .blog__card--featured {
    padding: 2.5rem;
  }
  .blog__card {
    padding: 2rem;
  }
  .blog__card--featured h3 {
    font-size: 1.8rem;
  }
  .blog__card h3 {
    font-size: 1.4rem;
  }
  .benefit__num {
    font-size: 4rem;
  }
  .benefit__card {
    padding: 3rem 2rem;
  }
  .benefit__card h3 {
    font-size: 1.6rem;
  }
  .pillar {
    padding: 2.5rem 2rem;
  }
  .pillar__num {
    font-size: 3rem;
  }
  .contact__form {
    padding: 2rem;
  }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 14rem 0 7rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,169,110,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.page-hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── About CTA ── */
.about__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid var(--border);
}

/* ── Founders Page ── */
.founders-page { background: var(--black); }

.founder-full {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem 0;
}
.founder-full--reverse {
  grid-template-columns: 1fr 200px;
}
.founder-full--reverse .founder-full__avatar {
  order: 2;
}
.founder-full--reverse .founder-full__body {
  order: 1;
}
.founder-full__avatar {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 2px;
  background: var(--gold-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: .05em;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.founder-full__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-full__avatar::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 1px;
  pointer-events: none;
}
.founder-full__name {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.founder-full__body .founder__role {
  margin-bottom: 1.5rem;
}
.founder-full__body p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  max-width: 580px;
}
.founder-full__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}
.founder-full__tags span {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: .4rem .9rem;
  border-radius: 1px;
  transition: border-color .2s, color .2s;
}
.founder-full__tags span:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.founder-full__links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.founder-full__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.founder-full__link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.founder-full__link svg {
  width: 16px;
  height: 16px;
}
body.light .founder-full__link:hover {
  color: var(--white);
}
.founders-divider {
  height: 1px;
  background: var(--border);
}

/* ── Mission Strip ── */
.mission {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 8rem 0;
}
.mission__inner {
  max-width: 640px;
}
.mission__inner .h2 {
  margin-bottom: 1.5rem;
}
.mission__body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* ── Sphere Section (Headset Animation) ── */
.sphere-section {
  height: 350vh;
  position: relative;
}
.sphere-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
#sphereCanvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
.sphere-label {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  z-index: 2;
}
.sphere-label__outer,
.sphere-label__inner {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: var(--white);
  letter-spacing: .02em;
  transition: opacity .3s;
  white-space: nowrap;
}
.sphere-label__inner {
  opacity: 0;
  color: var(--gold);
  font-style: italic;
}
.sphere-scroll-hint {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
  transition: opacity .3s;
}
.sphere-scroll-hint__bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ── Page Hero creators variant ── */
.page-hero--creators {
  background: var(--black);
}

/* ── Legal Content Pages ── */
.legal-content {
  background: var(--black);
}
.legal__inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal__section {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.legal__section:last-child {
  border-bottom: none;
}
.legal__section h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.legal__section h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 2rem 0 1rem;
  color: var(--white);
}
.legal__section p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.legal__section ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}
.legal__section ul li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}
.legal__section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.legal__section a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.legal__section a:hover {
  opacity: 0.7;
}
.legal__section strong {
  color: var(--white);
  font-weight: 500;
}

/* ── Creator Scroll Section ── */
.creator-scroll-section {
  height: 300vh;
  position: relative;
}
.creator-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
#creatorCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.creator-scroll-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.creator-scroll-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--white);
}
.creator-scroll-sub {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ── Enhanced Micro-Interactions & Polish ── */

/* Smooth button hover with glow */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn span, .btn * {
  position: relative;
  z-index: 1;
}
.btn--light {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s var(--ease), box-shadow 0.3s ease;
}
.btn--light:hover {
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
  transform: translateY(-2px);
}
.btn--ghost:hover {
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.15);
  transform: translateY(-2px);
}

/* Nav link smooth underline */
.nav__link {
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Pillar cards with lift effect */
.pillar {
  position: relative;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.pillar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.pillar:hover::after {
  transform: scaleX(1);
}

/* Benefit cards enhanced */
.benefit__card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.benefit__card:hover {
  box-shadow: 0 16px 48px rgba(201, 169, 110, 0.15);
}

/* Founder cards smooth hover */
.founder__card {
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.founder__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Blog cards with gradient accent */
.blog__card {
  position: relative;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.blog__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blog__card:hover {
  transform: translateY(-4px);
}
.blog__card:hover::before {
  opacity: 1;
}

/* Auth form inputs with glow focus */
.auth__field input:focus,
.auth__field select:focus {
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

/* Social links pulse on hover */
.social__link {
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s ease;
}
.social__link:hover {
  transform: scale(1.1);
}

/* Smooth reveal with blur */
[data-reveal] {
  filter: blur(4px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
[data-reveal].revealed {
  filter: blur(0);
}

/* Hero title gradient shimmer */
.hero__title {
  background: linear-gradient(
    120deg,
    var(--white) 0%,
    var(--gold) 50%,
    var(--white) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s ease-in-out infinite;
}
.hero__title em {
  -webkit-text-fill-color: var(--gold);
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Page hero title gradient */
.page-hero__title {
  background: linear-gradient(
    120deg,
    var(--white) 0%,
    var(--gold) 50%,
    var(--white) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s ease-in-out infinite;
}
.page-hero__title em {
  -webkit-text-fill-color: var(--gold);
}

/* Ticker enhanced */
.ticker {
  position: relative;
  overflow: hidden;
}
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--black-2), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--black-2), transparent);
}

/* ── Responsive additions ── */
@media (max-width: 768px) {
  .page-hero { padding: 10rem 0 5rem; }
  .founder-full {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .founder-full--reverse {
    grid-template-columns: 1fr;
  }
  .founder-full--reverse .founder-full__avatar { order: 0; }
  .founder-full--reverse .founder-full__body   { order: 0; }
  .founder-full__avatar {
    width: 120px;
    height: 120px;
    font-size: 1.6rem;
  }
  .founder-full__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .nav__logo {
    height: 28px;
  }
  .nav__logo img {
    height: 28px;
  }
  .sphere-label__outer,
  .sphere-label__inner {
    font-size: 1rem;
    white-space: normal;
    text-align: center;
    padding: 0 1.5rem;
  }
  .about__cta { flex-direction: column; }
}


/* ============================================================
   LIGHT MODE
   Applied via body.light — overrides all CSS variables
   ============================================================ */

body.light {
  --black:   #e8e6df;
  --black-2: #e0ded7;
  --black-3: #d8d6ce;
  --black-4: #cfcdc5;
  --white:   #08080a;
  --muted:   rgba(8,8,10,0.5);
  --muted-2: rgba(8,8,10,0.3);
  --border:  rgba(8,8,10,0.08);
  --border2: rgba(8,8,10,0.13);
  --gold:    #a07840;
  --gold-d:  rgba(160,120,64,0.10);
  --gold-b:  rgba(160,120,64,0.25);
}

/* Light mode specific overrides */
body.light .hero__canvas,
body.light .sphere-sticky,
body.light .creator-scroll-sticky {
  background: #e8e6df;
}
body.light .ticker {
  background: #e0ded7;
}
body.light .ticker::before {
  background: linear-gradient(90deg, #e0ded7, transparent);
}
body.light .ticker::after {
  background: linear-gradient(270deg, #e0ded7, transparent);
}
body.light .pillar,
body.light .benefit__card,
body.light .blog__card,
body.light .founder__card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
body.light .pillar:hover,
body.light .benefit__card:hover,
body.light .blog__card:hover,
body.light .founder__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
body.light .nav.scrolled {
  background: rgba(232, 230, 223, 0.9);
}
body.light .cursor {
  background: #a07840;
}
body.light.c-hover .cursor {
  border-color: rgba(160, 120, 64, 0.5);
}
body.light .interest__field input,
body.light .interest__field select,
body.light .interest__field textarea {
  background: rgba(8, 8, 10, 0.03);
  color: var(--white);
}
body.light .interest__field input::placeholder,
body.light .interest__field textarea::placeholder {
  color: rgba(8, 8, 10, 0.3);
}
body.light .interest__field select option {
  background: #f5f4f0;
  color: #08080a;
}
  --white:   #1a1916;
  --muted:   rgba(26,25,22,0.55);
  --muted-2: rgba(26,25,22,0.35);
  --border:  rgba(26,25,22,0.10);
  --border2: rgba(26,25,22,0.18);
  --gold:    #a07840;
  --gold-d:  rgba(160,120,64,0.10);
  --gold-b:  rgba(160,120,64,0.22);
}

/* Nav frosted glass in light mode */
body.light .nav.scrolled {
  background: rgba(245,244,240,0.92);
}

/* Burger lines */
body.light .nav__burger span { background: var(--white); }

/* Buttons — invert so btn--light reads as dark on light bg */
body.light .btn--light {
  background: var(--white);
  color: var(--black);
}
body.light .btn--light:hover { background: var(--gold); color: #fff; }

body.light .btn--ghost {
  border-color: var(--border2);
  color: var(--white);
}
body.light .btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Auth inputs */
body.light .auth__field input,
body.light .auth__field select {
  background: rgba(26,25,22,0.04);
  color: var(--white);
}
body.light .auth__field input::placeholder { color: rgba(26,25,22,0.3); }
body.light .auth__field select option { background: #eeede8; }

/* Contact textarea */
body.light .contact__form textarea {
  background: rgba(26,25,22,0.04);
  color: var(--white);
}
body.light .contact__form textarea::placeholder { color: rgba(26,25,22,0.3); }

/* Sphere section adapts to light mode */
body.light .sphere-section,
body.light .sphere-sticky { background: #e8e6df; }
body.light .sphere-label__outer { color: #1a1916; }
body.light .sphere-label__inner { color: #a07840; }

/* ── Theme toggle button ── */
.nav__right {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
/* Sun icon (shown in dark mode — click to go light) */
.theme-toggle .icon-sun  { display: block; }
.theme-toggle .icon-moon { display: none; }
/* Moon icon (shown in light mode — click to go dark) */
body.light .theme-toggle .icon-sun  { display: none; }
body.light .theme-toggle .icon-moon { display: block; }

/* Smooth theme transition on everything */
body, body * {
  transition:
    background-color .35s ease,
    border-color .35s ease,
    color .35s ease;
}
/* But don't slow down transforms/opacity (animations) */
[data-reveal], .blog__expand, .cursor,
.hero__canvas, #sphereCanvas {
  transition:
    opacity .9s var(--ease),
    transform .9s var(--ease);
}

/* ── Founder links (LinkedIn / Website) ── */
.founder-full__links {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.founder-full__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: .5rem 1rem;
  border-radius: 2px;
  transition: border-color .2s, color .2s;
}
.founder-full__link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Contact details-only layout ── */
.contact__details-only {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact__details-only .contact__social {
  margin-top: .5rem;
}
