:root {
  --black: #030303;
  --black-2: #070706;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.12);
  --gold: #d7ad36;
  --gold-2: #f4d36b;
  --gold-3: #8e651c;
  --warm: #b97925;
  --blue: #0a84ff;
  --shadow: 0 34px 96px rgba(0, 0, 0, 0.52);
  --radius: 30px;
  --shell: min(1180px, calc(100vw - 44px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 0%, rgba(214, 173, 58, 0.12), transparent 32%),
    radial-gradient(circle at 10% 34%, rgba(10, 132, 255, 0.065), transparent 28%),
    var(--black);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

/* Intro */
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  animation: intro-out .55s ease 3.2s forwards;
}
.intro img {
  width: min(310px, 62vw);
  opacity: 0;
  filter: drop-shadow(0 0 40px rgba(255,255,255,.12));
  animation: intro-logo 3s ease forwards;
}
.intro::after {
  content: "";
  position: absolute;
  inset: -60%;
  pointer-events: none;
  background: linear-gradient(45deg, transparent 36%, rgba(214,173,58,.16) 45%, rgba(255,223,112,.55) 50%, rgba(214,173,58,.16) 55%, transparent 64%);
  filter: blur(6px);
  transform: translate(-70%, 70%);
  animation: intro-sweep 1.7s ease-in-out 1.5s forwards;
}
@keyframes intro-logo {
  0%   { opacity: 0; transform: scale(.92); }
  14%  { opacity: 1; transform: scale(1); }
  30%  { transform: scale(1.07); }
  46%  { transform: scale(1); }
  62%  { transform: scale(1.05); }
  80%  { transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes intro-sweep {
  to { transform: translate(70%, -70%); }
}
@keyframes intro-out {
  to { opacity: 0; visibility: hidden; }
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-glow {
  position: fixed;
  right: -18vw;
  bottom: -24vw;
  width: 58vw;
  height: 58vw;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 173, 58, 0.105), transparent 63%);
  filter: blur(28px);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  opacity: .055;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 30% 10%, rgba(255,255,255,.28) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,.18) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
}

/* Header */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 60;
  width: min(1320px, calc(100vw - 44px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background .26s ease, border-color .26s ease, box-shadow .26s ease, backdrop-filter .26s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.brand { display: grid; place-items: center; width: 70px; text-decoration: none; }
.brand img { width: 68px; filter: drop-shadow(0 0 18px rgba(255,255,255,.10)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 40px);
  margin-left: auto;
  margin-right: auto;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: -.02em;
  transition: color .22s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  transition: transform .22s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.nav-cta,
.btn-primary {
  color: #050505;
  background: linear-gradient(135deg, #c99826, #ffdf70 58%, #b98019);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 18px 52px rgba(214, 173, 58, 0.22);
}

.nav-cta { min-height: 44px; padding-inline: 22px; font-size: .75rem; }

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
}

.btn:hover,
.nav-cta:hover { transform: translateY(-2px); }
.btn-primary:hover,
.nav-cta:hover { box-shadow: 0 22px 72px rgba(214, 173, 58, 0.32); }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .24s ease, opacity .24s ease;
}

.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 94px;
  left: 22px;
  right: 22px;
  z-index: 59;
  display: none;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}
.mobile-menu a {
  display: block;
  padding: 16px 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu.open { display: block; }

/* Shared type */
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-2);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
}

h1, h2 {
  font-family: Manrope, Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.065em;
}

p { color: var(--muted); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 132px;
  padding-bottom: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -4;
  width: min(62vw, 980px);
  background-image: url('../assets/images/hero-main.webp');
  background-size: cover;
  background-position: center;
  opacity: .82;
  filter: saturate(.92) contrast(1.06);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.25) 14%, #000 36%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.25) 14%, #000 36%, #000 100%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, #030303 0%, rgba(3,3,3,.97) 31%, rgba(3,3,3,.72) 55%, rgba(3,3,3,.34) 100%),
    radial-gradient(circle at 78% 22%, rgba(214,173,58,.14), transparent 30%),
    linear-gradient(180deg, rgba(3,3,3,.45) 0%, transparent 52%, #030303 98%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: -2;
  height: 26%;
  background: linear-gradient(180deg, transparent, #030303 74%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  align-items: center;
  min-height: 500px;
}

.hero-copy { max-width: 670px; }

.hero h1 {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(3.6rem, 6.7vw, 6.75rem);
  line-height: .94;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--gold);
  text-shadow: 0 0 44px rgba(214,173,58,.12);
}

.hero p {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-metrics {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 940px;
  margin-top: 26px;
  margin-inline: auto;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.022));
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 24px 80px rgba(0,0,0,.36);
  overflow: hidden;
}

.hero-metrics div {
  padding: 24px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.10);
}
.hero-metrics div:last-child { border-right: 0; }
.hero-metrics strong {
  display: block;
  color: var(--gold-2);
  font-size: clamp(1.65rem, 2.6vw, 3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}
.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.64);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Sections */
.section { position: relative; padding: clamp(82px, 9vw, 130px) 0; }
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, .72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
}
.section-grid h2,
.standard-copy h2,
.method-copy h2,
.contact-copy h2,
.faq-head h2 {
  margin: 18px 0 0;
  font-size: clamp(2.15rem, 4.1vw, 4.7rem);
  line-height: .98;
  font-weight: 900;
}
.section-copy p,
.standard-copy p,
.method-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

/* Story */
.story { padding-top: 106px; }
.timeline {
  position: relative;
  margin-top: 56px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  overflow: hidden;
}
.timeline-rail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.timeline-rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,.14);
}
.timeline-rail::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2));
  transition: width .5s ease;
}
.timeline-node {
  position: relative;
  z-index: 1;
  min-width: 64px;
  height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(214,173,58,.30);
  border-radius: 999px;
  background: #0d0c0a;
  color: rgba(255,255,255,.62);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .04em;
  cursor: pointer;
  transition: color .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.timeline-node:hover { color: var(--gold-2); border-color: rgba(214,173,58,.55); }
.timeline-node.is-active {
  color: #050505;
  background: linear-gradient(135deg, #c99826, #ffdf70 58%, #b98019);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 14px 40px rgba(214,173,58,.25);
}
.timeline-stage {
  position: relative;
  margin-top: 38px;
  cursor: pointer;
}
.stage {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.stage.is-active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.stage::after {
  content: attr(data-year);
  position: absolute;
  right: -4px;
  bottom: -18px;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: 1;
  letter-spacing: -.06em;
  color: rgba(255,255,255,.045);
  pointer-events: none;
}
.stage-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--gold-2);
  border: 1px solid rgba(214,173,58,.35);
  box-shadow: 0 0 34px rgba(214,173,58,.14);
}
.stage h3 { margin: 6px 0 10px; font-size: 1.5rem; letter-spacing: -.04em; }
.stage p { margin: 0; max-width: 560px; color: rgba(255,255,255,.66); line-height: 1.75; }

/* Philosophy */
.philosophy { padding-block: clamp(58px, 6.5vw, 92px); text-align: center; }
.philosophy-quote {
  max-width: 920px;
  margin: 26px auto 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 4.3rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -.055em;
  text-transform: uppercase;
  color: var(--white);
}
.philosophy-quote span {
  display: block;
  color: var(--gold);
  text-shadow: 0 0 44px rgba(214,173,58,.12);
}
.philosophy-note {
  max-width: 540px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.60);
  line-height: 1.7;
}

/* Standard */
.standard { isolation: isolate; overflow: hidden; }
.standard-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../assets/images/prep-wide.webp');
  background-size: cover;
  background-position: center;
  opacity: .42;
  filter: saturate(.86) contrast(1.08);
}
.standard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #030303 0%, rgba(3,3,3,.88) 48%, rgba(3,3,3,.58) 100%),
    radial-gradient(circle at 72% 35%, rgba(214,173,58,.10), transparent 32%),
    linear-gradient(180deg, #030303 0%, transparent 18%, transparent 75%, #030303 100%);
}
.standard-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(36px, 8vw, 104px);
  align-items: center;
}
.standard-copy h2 { max-width: 760px; }
.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.standard-grid article {
  min-height: 180px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(145deg, rgba(0,0,0,.55), rgba(255,255,255,.04));
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--gold-2);
  border: 1px solid rgba(214,173,58,.35);
  box-shadow: 0 0 34px rgba(214,173,58,.14);
}
.standard-grid h3 { margin: 22px 0 10px; font-size: 1.2rem; }
.standard-grid p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.65; }

/* Platforms */
.platforms { padding-block: clamp(48px, 5vw, 72px); }
.platforms-head { text-align: center; }
.platforms-head p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.58);
  line-height: 1.6;
}
.marquee {
  margin-top: 38px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(52px, 6.5vw, 96px);
  padding-right: clamp(52px, 6.5vw, 96px);
}
.marquee-group img {
  height: 52px;
  width: auto;
  opacity: .88;
  transition: opacity .22s ease;
}
.marquee-group img:hover { opacity: 1; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Spaces */
.spaces { padding-bottom: 92px; }
.space-showcase {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: 330px 330px;
  gap: 18px;
}
.space-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  min-height: 330px;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.38) 48%, rgba(0,0,0,.88) 100%),
    var(--image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 85px rgba(0,0,0,.44);
}
.space-card.wide { grid-row: span 2; min-height: 678px; }
.space-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 28%, transparent 74%, rgba(214,173,58,.08)),
    radial-gradient(circle at 75% 24%, rgba(214,173,58,.14), transparent 25%);
  mix-blend-mode: screen;
}
.space-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.06);
}
.space-card div { max-width: 500px; padding: clamp(28px, 4vw, 52px); }
.space-card span {
  color: var(--gold-2);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.space-card h3 {
  margin: 12px 0 12px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.85rem, 3.6vw, 4rem);
  line-height: 1;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.space-card:not(.wide) h3 { font-size: clamp(1.55rem, 2.4vw, 2.45rem); }
.space-card p { margin: 0; color: rgba(255,255,255,.74); line-height: 1.6; }

/* Method */
.method {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .82fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}
.method-visual { position: relative; }
.method-visual::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle at 45% 48%, rgba(214,150,58,.22), transparent 58%);
  filter: blur(20px);
}
.method-visual img {
  position: relative;
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03) sepia(.08);
}
.method-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, #030303 0%, rgba(3,3,3,.55) 7%, transparent 22%),
    linear-gradient(0deg, #030303 0%, rgba(3,3,3,.55) 7%, transparent 22%),
    linear-gradient(90deg, #030303 0%, rgba(3,3,3,.55) 6%, transparent 20%),
    linear-gradient(270deg, #030303 0%, rgba(3,3,3,.55) 6%, transparent 20%),
    radial-gradient(circle at 65% 25%, rgba(214,150,58,.16), transparent 52%);
}
.method-copy p { margin-top: 20px; }
.steps { display: grid; gap: 14px; margin-top: 32px; }
.steps div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 19px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
}
.steps strong { color: var(--gold-2); font-size: .84rem; letter-spacing: .12em; }
.steps span { color: rgba(255,255,255,.78); font-weight: 800; }

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.trust-grid article {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
}
.trust-grid h3 { margin: 0 0 12px; font-size: 1.12rem; letter-spacing: -.03em; }
.trust-grid p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.65; }

/* Voices */
.voices-head h2 {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(2.15rem, 4.1vw, 4.7rem);
  line-height: .98;
  font-weight: 900;
}
.voices-marquee {
  margin-top: 48px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.voices-track {
  display: flex;
  width: max-content;
  animation: marquee 80s linear infinite;
}
.voices-marquee:hover .voices-track { animation-play-state: paused; }
.voices-group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}
.voice-card {
  position: relative;
  margin: 0;
  width: min(380px, 82vw);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 240px;
  padding: 30px 28px 26px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
}
.voice-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 24px;
  color: rgba(214,173,58,.30);
  font-family: Manrope, Inter, sans-serif;
  font-size: 4.4rem;
  line-height: 1;
  pointer-events: none;
}
.voice-card blockquote {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}
.voice-card figcaption { display: grid; gap: 3px; }
.voice-card figcaption strong { color: var(--gold-2); letter-spacing: -.02em; }
.voice-card figcaption span {
  color: rgba(255,255,255,.50);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Schedule */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.schedule-grid article {
  padding: 32px 28px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(160deg, rgba(214,173,58,.07), rgba(255,255,255,.02));
}
.schedule-grid span {
  color: var(--gold-2);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.schedule-grid strong {
  display: block;
  margin-top: 12px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  letter-spacing: -.04em;
}

/* FAQ */
.faq-head { display: grid; gap: 0; }
.faq-list {
  max-width: 860px;
  margin: 48px auto 0;
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  overflow: hidden;
  transition: border-color .22s ease;
}
.faq-list details[open] { border-color: rgba(214,173,58,.30); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-weight: 800;
  color: rgba(255,255,255,.86);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--gold-2);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .22s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 24px 22px; color: rgba(255,255,255,.62); line-height: 1.7; }

/* Contact */
.contact { isolation: isolate; overflow: hidden; padding-bottom: 120px; }
.contact-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../assets/images/prep-zone.webp');
  background-size: cover;
  background-position: center;
  opacity: .48;
  filter: saturate(.86) contrast(1.05);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #030303 0%, rgba(3,3,3,.90) 48%, rgba(3,3,3,.60) 100%),
    linear-gradient(180deg, #030303 0%, transparent 28%, #030303 100%);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(330px, .45fr);
  gap: clamp(30px, 7vw, 84px);
  align-items: center;
}
.contact-copy p { margin-top: 20px; }
.contact-card {
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(0,0,0,.70), rgba(255,255,255,.055));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.contact-card img { width: 120px; margin-bottom: 30px; }
.contact-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.contact-card li { display: flex; align-items: center; gap: 15px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.10); }
.contact-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-card .card-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--gold-2);
}
.contact-card .card-icon svg { width: 34px; height: 34px; }
.contact-card .card-note {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.48);
  font-size: .82rem;
  font-style: italic;
}
.contact-card strong { color: rgba(255,255,255,.86); line-height: 1.4; transition: color .22s ease; }
.contact-card a { text-decoration: none; }
.contact-card a:hover strong { color: var(--gold-2); }

.footer { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08); background: #020202; }
.footer-inner { display: grid; gap: 2px; justify-items: center; }
.footer p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.45; text-align: center; font-size: .9rem; }

/* Botones flotantes */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 150px;
  z-index: 80;
  display: grid;
  gap: 14px;
}
.float-btn {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #050505;
  background: linear-gradient(135deg, #c99826, #ffdf70 58%, #b98019);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 14px 40px rgba(214,173,58,.26), 0 12px 34px rgba(0,0,0,.40);
  transition: transform .22s ease, box-shadow .22s ease;
}
.float-btn { animation: heartbeat 1.9s ease-in-out infinite; }
.float-btn:hover {
  animation: none;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 20px 56px rgba(214,173,58,.36), 0 16px 40px rgba(0,0,0,.5);
}
@keyframes heartbeat {
  0%, 30%, 60%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(214,173,58,0), 0 0 22px rgba(214,173,58,.22), 0 12px 34px rgba(0,0,0,.40);
  }
  12% {
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(214,173,58,.20), 0 0 46px rgba(214,173,58,.55), 0 12px 34px rgba(0,0,0,.40);
  }
  44% {
    transform: scale(1.07);
    box-shadow: 0 0 0 6px rgba(214,173,58,.14), 0 0 36px rgba(214,173,58,.42), 0 12px 34px rgba(0,0,0,.40);
  }
}

/* Motion */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none; }
  .menu-button { display: block; }

  .hero { min-height: 880px; justify-content: flex-start; }
  .hero-media { width: 100%; opacity: .50; background-position: center; -webkit-mask-image: none; mask-image: none; }
  .hero-shade { background: linear-gradient(90deg, #030303 0%, rgba(3,3,3,.86) 64%, rgba(3,3,3,.62) 100%), linear-gradient(180deg, rgba(3,3,3,.20), #030303 98%); }
  .hero-inner, .section-grid, .standard-layout, .method, .contact-layout { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3.35rem, 12vw, 6.7rem); }

  .space-showcase { grid-template-columns: 1fr; grid-template-rows: auto; }
  .space-card, .space-card.wide { min-height: 540px; grid-row: auto; }

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

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .site-header { top: 12px; width: calc(100vw - 24px); padding: 10px 10px 10px 16px; }
  .brand, .brand img { width: 56px; }
  .mobile-menu { top: 82px; }

  .hero { min-height: 820px; padding-top: 118px; }
  .hero h1 { margin-top: 20px; font-size: clamp(3.05rem, 15vw, 5.35rem); }
  .hero p { font-size: 1rem; }
  .btn { width: 100%; }

  .float-actions { right: 14px; bottom: 80px; gap: 10px; }
  .float-btn { width: 52px; height: 52px; }
  .float-btn svg { width: 30px; height: 30px; }

  .hero-metrics { grid-template-columns: 1fr; margin-top: 22px; border-radius: 24px; }
  .hero-metrics div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); padding: 20px 16px; }
  .hero-metrics div:last-child { border-bottom: 0; }

  .section { padding: 72px 0; }
  .voices-head h2 { font-size: clamp(2.1rem, 10.5vw, 3.7rem); }
  .section-grid h2, .standard-copy h2, .method-copy h2, .contact-copy h2, .faq-head h2 { font-size: clamp(2.1rem, 10.5vw, 3.7rem); }
  .standard-grid, .trust-grid, .schedule-grid { grid-template-columns: 1fr; }
  .timeline-node { min-width: 0; padding: 0 13px; height: 40px; font-size: .82rem; }
  .stage { flex-direction: column; gap: 18px; }
  .stage-icon { width: 54px; height: 54px; }

  .standard-grid article { min-height: 190px; }
  .space-card, .space-card.wide { min-height: 500px; border-radius: 26px; }
  .space-card div { padding: 28px; }
  .method-visual img { height: 440px; border-radius: 28px; }
  .contact-card { padding: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .intro { display: none; }
}

.room-card { --image: url('../assets/images/room-manga.webp'); }
.streaming-card { --image: url('../assets/images/room-purple.webp'); }
.prep-card { --image: url('../assets/images/beauty-station.webp'); }
