/* ============================================
   NEXT ERA — Extended section stylesheet
   30+ section designs, varied visual language
   ============================================ */

/* ============================================
   INTRO EXTENSION — 30s timeline overlay
   ============================================ */
.intro-hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
}
.intro-hud.show { opacity: 1; transition: opacity 1.2s ease; }
.intro-hud .corner {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0.45;
}
.intro-hud .tl { top: 32px; left: 36px; }
.intro-hud .tr { top: 32px; right: 36px; text-align: right; }
.intro-hud .bl { bottom: 32px; left: 36px; }
.intro-hud .br { bottom: 32px; right: 36px; text-align: right; }
.intro-hud .corner div { margin-bottom: 4px; }
.intro-hud .corner .gold { color: var(--gold-bright); }

.intro-hud .crosshair {
  position: absolute;
  top: 50%; left: 50%;
  width: 180px; height: 180px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
  opacity: 0;
  animation: crossPulse 5s ease-in-out infinite;
}
@keyframes crossPulse {
  0%, 100% { transform: translate(-50%, -50%) rotate(45deg) scale(1); opacity: 0.22; }
  50% { transform: translate(-50%, -50%) rotate(47deg) scale(1.04); opacity: 0.4; }
}
.intro-hud .scanline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0.5;
  animation: scanY 4s linear infinite;
}
@keyframes scanY {
  0% { top: 8%; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { top: 92%; opacity: 0; }
}

.intro-progress {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: min(420px, 60vw);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.intro-progress.show { opacity: 0.9; }
.intro-progress .label {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 8px;
}
.intro-progress .track {
  width: 100%;
  height: 1px;
  background: rgba(201, 169, 110, 0.15);
  position: relative;
}
.intro-progress .fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  box-shadow: 0 0 12px var(--gold);
}
.intro-progress .ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(251, 247, 240, 0.3);
}

/* ============================================
   MANIFESTO PLATE
   ============================================ */
.manifesto-section {
  padding: 16vh 8vw;
  background: var(--void);
  position: relative;
  overflow: hidden;
}
.manifesto-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(201, 169, 110, 0.06), transparent 60%);
}
.manifesto {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto .corner-mark {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.manifesto .corner-mark::before {
  content: '';
  width: 60px; height: 1px;
  background: var(--gold);
}
.manifesto h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(26px, 3.8vw, 60px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-wrap: balance;
}
.manifesto h2 em {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-bright);
}
.manifesto .sig {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--warm-gray);
}
.manifesto .sig svg { width: 80px; height: 30px; stroke: var(--gold); fill: none; }

/* ============================================
   COMPARISON TABLE — NX-7 vs the rest
   ============================================ */
.compare-section { background: #0c0a07; }
.compare-table {
  margin-top: 64px;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  font-family: var(--f-mono);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  align-items: center;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(251, 247, 240, 0.7);
  transition: background 0.3s ease;
}
.compare-row:hover { background: rgba(201, 169, 110, 0.03); }
.compare-row.head {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}
.compare-row .label { padding-left: 20px; color: var(--warm-white); }
.compare-row .v { text-align: center; }
.compare-row .v.gold { color: var(--gold-bright); font-family: var(--f-display); font-size: 17px; }
.compare-row .v.dim { color: rgba(251, 247, 240, 0.35); }
.compare-head-mark {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--gold);
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 3px;
  color: var(--gold-bright);
}

/* ============================================
   PROCESS — 5 numbered steps
   ============================================ */
.process-section { background: var(--void); }
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 40px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
}
.process-step {
  padding: 0 16px;
  text-align: center;
  position: relative;
}
.process-step .ring {
  width: 80px; height: 80px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  background: var(--void);
  position: relative;
  z-index: 2;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--gold-bright);
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.2);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-step:hover .ring { transform: scale(1.1); }
.process-step .ring::before {
  content: '';
  position: absolute; inset: -8px;
  border: 1px dashed rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.process-step h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.process-step p {
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 13px;
  color: rgba(251, 247, 240, 0.55);
  line-height: 1.6;
}
.process-step .pmark {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ============================================
   MATERIALS — 3 vertical columns
   ============================================ */
.materials-section {
  background: linear-gradient(180deg, var(--void) 0%, #0d0b08 50%, var(--void) 100%);
}
.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}
.material {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(201, 169, 110, 0.18);
  background: linear-gradient(180deg, #15110d 0%, #0a0807 100%);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s ease;
}
.material:hover { transform: translateY(-8px); border-color: var(--gold); }
.material .swatch {
  height: 220px;
  margin: -32px -32px 28px;
  position: relative;
  overflow: hidden;
}
.material.m1 .swatch { background: linear-gradient(135deg, #c9a96e 0%, #6e5630 50%, #2e2218 100%); }
.material.m2 .swatch { background: linear-gradient(135deg, #ece4d5 0%, #847866 50%, #1a1612 100%); }
.material.m3 .swatch { background: linear-gradient(135deg, #1f1b16 0%, #0a0807 50%, #050403 100%); }
.material .swatch::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0, transparent 6px, rgba(0,0,0,0.06) 6px, rgba(0,0,0,0.06) 7px);
  mix-blend-mode: overlay;
}
.material .swatch .lbl {
  position: absolute;
  bottom: 14px; left: 22px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(10, 9, 7, 0.7);
  text-transform: uppercase;
}
.material.m3 .swatch .lbl { color: rgba(251, 247, 240, 0.5); }
.material .tag {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 10px;
}
.material h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.material p {
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 14px;
  color: rgba(251, 247, 240, 0.65);
  line-height: 1.6;
  margin-bottom: 18px;
}
.material .props { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; padding-top: 16px; border-top: 1px solid rgba(201, 169, 110, 0.12); }
.material .prop { font-family: var(--f-mono); font-size: 10px; letter-spacing: 2px; color: var(--warm-gray); }
.material .prop b { color: var(--gold-bright); font-weight: 400; }

/* ============================================
   CAPABILITY MATRIX — 16-cell heatmap
   ============================================ */
.matrix-section { background: #0a0907; }
.matrix-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
.matrix-text .keys {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
}
.matrix-text .keys .k {
  display: flex; align-items: center; gap: 16px;
  color: rgba(251, 247, 240, 0.7);
}
.matrix-text .keys .k .chip {
  width: 28px; height: 8px;
  background: var(--gold);
}
.matrix-text .keys .k.k1 .chip { background: rgba(201, 169, 110, 0.2); }
.matrix-text .keys .k.k2 .chip { background: rgba(201, 169, 110, 0.5); }
.matrix-text .keys .k.k3 .chip { background: rgba(232, 201, 138, 0.85); }
.matrix-text .keys .k.k4 .chip { background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); box-shadow: 0 0 12px var(--gold); }

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  aspect-ratio: 1 / 1;
}
.matrix-cell {
  position: relative;
  background: rgba(201, 169, 110, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: none;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2px;
}
.matrix-cell:hover { transform: scale(1.06); z-index: 2; border-color: var(--gold-bright); box-shadow: 0 0 30px rgba(201, 169, 110, 0.3); }
.matrix-cell .lvl { color: var(--gold-bright); font-family: var(--f-display); font-size: 22px; font-weight: 600; letter-spacing: 0.02em; }
.matrix-cell .nm { color: rgba(251, 247, 240, 0.6); text-transform: uppercase; }
.matrix-cell.l1 { background: rgba(201, 169, 110, 0.04); }
.matrix-cell.l2 { background: rgba(201, 169, 110, 0.1); }
.matrix-cell.l3 { background: rgba(201, 169, 110, 0.18); }
.matrix-cell.l4 { background: linear-gradient(135deg, rgba(151, 112, 58, 0.4), rgba(232, 201, 138, 0.3)); border-color: var(--gold); }

/* ============================================
   APPLICATIONS — bento grid
   ============================================ */
.apps-section { background: var(--void); }
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px 240px;
  gap: 18px;
  margin-top: 60px;
}
.bento-item {
  position: relative;
  padding: 28px;
  background: linear-gradient(160deg, #15110d, #07060a);
  border: 1px solid rgba(201, 169, 110, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, background 0.4s ease;
  cursor: none;
}
.bento-item:hover { transform: translateY(-4px); border-color: var(--gold); background: linear-gradient(160deg, #1d1813, #0a0907); }
.bento-item .placeholder {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(201, 169, 110, 0.05) 12px 13px);
  opacity: 0.6;
  z-index: 0;
}
.bento-item .placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 14px; right: 18px;
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(201, 169, 110, 0.4);
}
.bento-item > * { position: relative; z-index: 1; }
.bento-item .tag { font-family: var(--f-mono); font-size: 9px; letter-spacing: 4px; color: var(--gold); }
.bento-item h4 { font-family: var(--f-display); font-weight: 600; font-size: 22px; letter-spacing: 0.04em; margin-top: 12px; }
.bento-item p { font-family: var(--f-editorial); font-style: italic; font-size: 13px; color: rgba(251, 247, 240, 0.6); line-height: 1.6; margin-top: 8px; }
.bento-item.b1 { grid-column: span 2; grid-row: span 2; }
.bento-item.b2 { grid-column: span 2; }
.bento-item.b3 { grid-column: span 1; }
.bento-item.b4 { grid-column: span 1; }
.bento-item.b5 { grid-column: span 1; }
.bento-item.b6 { grid-column: span 1; }
.bento-item.b7 { grid-column: span 2; }
.bento-item.b8 { grid-column: span 2; }

/* ============================================
   VOICE / WAVEFORM
   ============================================ */
.voice-section { background: #0c0a07; }
.voice-stage {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  margin-top: 30px;
}
.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 180px;
  padding: 24px;
  background: linear-gradient(180deg, #15110d, #050403);
  border: 1px solid rgba(201, 169, 110, 0.18);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}
.waveform .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  min-height: 4px;
  border-radius: 2px;
  animation: waveBar 1.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes waveBar {
  0%, 100% { transform: scaleY(0.2); }
  50% { transform: scaleY(1); }
}
.voice-meta { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.voice-meta .v {
  font-family: var(--f-display); font-weight: 600; font-size: 26px; color: var(--gold-bright);
}
.voice-meta .k {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 3px; color: var(--warm-gray);
  margin-top: 4px;
}

/* ============================================
   HUD DASHBOARD
   ============================================ */
.hud-section {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.08), transparent 60%),
    var(--pitch);
  padding: 12vh 8vw;
  position: relative;
}
.hud-frame {
  margin-top: 40px;
  padding: 28px;
  background: rgba(15, 12, 9, 0.85);
  border: 1px solid rgba(201, 169, 110, 0.3);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 28px;
}
.hud-col h5 {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
}
.hud-stat {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 1.5px;
  color: rgba(251, 247, 240, 0.75);
}
.hud-stat .v { color: var(--gold-bright); font-family: var(--f-display); font-size: 14px; }
.hud-stat .v.warn { color: #ff8b3d; }
.hud-stat .v.ok { color: #a5d18a; }
.hud-center {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.hud-radar {
  width: 240px; height: 240px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle, transparent 30%, rgba(201, 169, 110, 0.08) 50%, transparent 80%);
}
.hud-radar::before, .hud-radar::after {
  content: ''; position: absolute; inset: 30%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
}
.hud-radar::after { inset: 12%; }
.hud-radar .sweep {
  position: absolute;
  top: 50%; left: 50%;
  width: 50%; height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  transform-origin: 0 50%;
  animation: radarSweep 4s linear infinite;
  filter: drop-shadow(0 0 6px var(--gold));
}
@keyframes radarSweep { to { transform: rotate(360deg); } }
.hud-radar .dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
  animation: blinkDot 1.4s ease-in-out infinite;
}
@keyframes blinkDot { 50% { opacity: 0.4; } }
.hud-bars { margin-top: 22px; display: flex; gap: 4px; height: 60px; }
.hud-bars span { width: 6px; background: var(--gold); animation: waveBar 1.2s ease-in-out infinite; }
.hud-bars span:nth-child(2) { animation-delay: 0.1s; }
.hud-bars span:nth-child(3) { animation-delay: 0.2s; }
.hud-bars span:nth-child(4) { animation-delay: 0.3s; }
.hud-bars span:nth-child(5) { animation-delay: 0.4s; }
.hud-bars span:nth-child(6) { animation-delay: 0.5s; }
.hud-bars span:nth-child(7) { animation-delay: 0.6s; }

/* ============================================
   ROADMAP — vertical timeline
   ============================================ */
.roadmap-section { background: var(--void); }
.roadmap {
  position: relative;
  margin-top: 60px;
  padding-left: 40px;
}
.roadmap::before {
  content: '';
  position: absolute;
  left: 12px; top: 14px; bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 169, 110, 0.2));
}
.road-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 36px;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 30px;
}
.road-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 14px;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--gold-bright);
}
.road-item .when {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold-bright);
  padding-top: 12px;
}
.road-item .what h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.road-item .what p {
  font-family: var(--f-editorial); font-style: italic;
  font-size: 14px;
  color: rgba(251, 247, 240, 0.6);
  line-height: 1.6;
}
.road-item.future::before { background: transparent; border: 1px solid var(--gold); box-shadow: none; }
.road-item.future .when { color: var(--warm-gray); }

/* ============================================
   PRESS / AWARDS STRIP
   ============================================ */
.press-section { background: #0a0907; padding: 80px 8vw; }
.press-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.press-cell {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(201, 169, 110, 0.1);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.12em;
  color: rgba(251, 247, 240, 0.4);
  text-transform: uppercase;
  transition: color 0.4s ease, background 0.4s ease;
}
.press-cell:hover { color: var(--gold-bright); background: rgba(201, 169, 110, 0.04); }
.press-cell:last-child { border-right: none; }
.press-cell .star { color: var(--gold); display: block; font-size: 10px; letter-spacing: 4px; font-family: var(--f-mono); margin-bottom: 6px; }

/* ============================================
   WORLD MAP — deployment
   ============================================ */
.world-section {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(201, 169, 110, 0.06), transparent 70%),
    var(--void);
}
.world-stage {
  position: relative;
  margin-top: 60px;
  height: 460px;
  border: 1px solid rgba(201, 169, 110, 0.18);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201, 169, 110, 0.04), transparent 60%),
    linear-gradient(180deg, #0d0b08, #050403);
}
.world-stage svg { width: 100%; height: 100%; }
.world-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-bright);
  animation: blinkDot 2s ease-in-out infinite;
}
.world-dot::after {
  content: attr(data-label);
  position: absolute;
  left: 14px; top: -4px;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(251, 247, 240, 0.65);
}
.world-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.18);
}
.world-stats .ws {
  padding: 28px 20px;
  border-right: 1px solid rgba(201, 169, 110, 0.1);
  text-align: center;
}
.world-stats .ws:last-child { border-right: none; }
.world-stats .ws .v {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 32px;
  color: var(--gold-bright);
}
.world-stats .ws .k {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 4px; color: var(--warm-gray);
  margin-top: 6px;
}

/* ============================================
   PRICING / CONFIGURATOR
   ============================================ */
.pricing-section { background: #0a0907; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.tier {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(180deg, #15110d, #07060a);
  border: 1px solid rgba(201, 169, 110, 0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease;
}
.tier:hover { transform: translateY(-8px); }
.tier.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #1d1812, #0a0807);
  box-shadow: 0 0 60px rgba(201, 169, 110, 0.15);
}
.tier .tier-tag {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold-bright);
  padding: 4px 10px;
  border: 1px solid var(--gold);
}
.tier .name { font-family: var(--f-mono); font-size: 10px; letter-spacing: 5px; color: var(--gold); }
.tier h3 { font-family: var(--f-display); font-weight: 600; font-size: 28px; letter-spacing: 0.04em; }
.tier .price {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 46px;
  color: var(--warm-white);
  letter-spacing: 0.02em;
}
.tier .price sup { font-size: 0.4em; color: var(--gold); margin-right: 4px; }
.tier .price small {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 3px; color: var(--warm-gray);
  display: block; margin-top: 6px;
}
.tier ul { list-style: none; display: flex; flex-direction: column; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(201, 169, 110, 0.12); }
.tier ul li {
  font-family: var(--f-editorial); font-style: italic; font-size: 14px;
  color: rgba(251, 247, 240, 0.7); padding-left: 22px; position: relative;
}
.tier ul li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 12px; height: 1px; background: var(--gold);
}
.tier .cta { margin-top: auto; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--void); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 48px;
  margin-top: 60px;
}
.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  cursor: none;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
}
.faq-q .plus { color: var(--gold); font-family: var(--f-mono); font-size: 16px; transition: transform 0.4s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin 0.5s ease;
  font-family: var(--f-editorial); font-style: italic;
  font-size: 14px;
  color: rgba(251, 247, 240, 0.6);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; margin-top: 16px; }

/* ============================================
   RESERVATION FORM
   ============================================ */
.reserve-section {
  background: linear-gradient(180deg, var(--void), #0e0b08, var(--void));
  padding: 16vh 8vw;
  position: relative;
}
.reserve {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.reserve-form {
  padding: 40px;
  background: rgba(15, 12, 9, 0.7);
  border: 1px solid rgba(201, 169, 110, 0.3);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.reserve-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.reserve-form .field { display: flex; flex-direction: column; gap: 6px; }
.reserve-form label {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase;
}
.reserve-form input, .reserve-form select, .reserve-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  padding: 10px 0;
  color: var(--warm-white);
  font-family: var(--f-editorial); font-style: italic; font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}
.reserve-form input:focus, .reserve-form select:focus, .reserve-form textarea:focus {
  border-bottom-color: var(--gold-bright);
}
.reserve-form select option { background: var(--deep); }
.reserve-form .full { grid-column: 1 / -1; }
.reserve-form .cta-row { margin-top: 28px; display: flex; gap: 14px; align-items: center; }
.reserve-form .price-note {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 3px; color: var(--warm-gray);
  margin-left: auto;
}

/* ============================================
   MISSION / CREDITS
   ============================================ */
.mission-section {
  background: var(--pitch);
  padding: 16vh 8vw;
  text-align: center;
}
.mission h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 70px);
  letter-spacing: 0.04em;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.1;
  text-wrap: balance;
}
.mission h2 em {
  font-family: var(--f-editorial); font-style: italic;
  color: var(--gold-bright);
}

.credits-section { background: var(--void); }
.credits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 60px;
  margin-top: 60px;
}
.credit-block h5 {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 5px; color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
}
.credit-block .person {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.credit-block .role {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 3px; color: var(--warm-gray);
  margin-bottom: 14px;
}

/* ============================================
   FINAL CTA / NEWSLETTER
   ============================================ */
.final-cta {
  background: linear-gradient(180deg, var(--void), var(--pitch));
  padding: 18vh 8vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.1), transparent 60%);
}
.final-cta .inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.final-cta h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 110px);
  letter-spacing: 0.06em;
  margin-bottom: 30px;
  text-shadow: 0 0 80px rgba(201, 169, 110, 0.4);
}
.final-cta p {
  font-family: var(--f-editorial); font-style: italic;
  font-size: clamp(14px, 1.4vw, 19px);
  color: rgba(251, 247, 240, 0.7);
  margin-bottom: 50px;
}
.news-form {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  border: 1px solid rgba(201, 169, 110, 0.4);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.news-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 18px 22px;
  color: var(--warm-white);
  font-family: var(--f-editorial); font-style: italic; font-size: 16px;
  outline: none;
}
.news-form button {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 0 28px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 3px;
  cursor: none;
  transition: background 0.3s ease;
}
.news-form button:hover { background: var(--gold-bright); }

/* ============================================
   DAY IN THE LIFE — horizontal timeline cards
   ============================================ */
.day-section { background: #0c0a07; }
.day-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 60px;
}
.day-cell {
  padding: 22px;
  background: rgba(201, 169, 110, 0.03);
  border-top: 1px solid rgba(201, 169, 110, 0.3);
  position: relative;
  min-height: 200px;
  transition: background 0.4s ease, transform 0.4s ease;
}
.day-cell:hover { background: rgba(201, 169, 110, 0.08); transform: translateY(-4px); }
.day-cell .time {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.day-cell .act {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}
.day-cell p {
  font-family: var(--f-editorial); font-style: italic;
  font-size: 13px;
  color: rgba(251, 247, 240, 0.6);
  line-height: 1.55;
}

/* ============================================
   SUSTAIN STATS
   ============================================ */
.sustain-section {
  background: var(--void);
}
.sustain-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
.sustain-rings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.s-ring {
  aspect-ratio: 1/1;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.05), transparent 70%);
}
.s-ring svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.s-ring svg circle { fill: none; stroke-width: 1.5; }
.s-ring svg .track { stroke: rgba(201, 169, 110, 0.15); }
.s-ring svg .arc { stroke: var(--gold-bright); stroke-linecap: round; stroke-dasharray: 314; }
.s-ring .v { font-family: var(--f-display); font-weight: 600; font-size: 36px; color: var(--warm-white); }
.s-ring .v small { font-size: 0.4em; color: var(--gold); margin-left: 2px; }
.s-ring .k { font-family: var(--f-mono); font-size: 9px; letter-spacing: 3px; color: var(--warm-gray); margin-top: 6px; padding: 0 12px; }

/* ============================================
   BIG PULL QUOTE / PRESS QUOTE
   ============================================ */
.pull-section {
  background: var(--pitch);
  padding: 14vh 8vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pull-section::before {
  content: '"';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-size: 380px;
  color: rgba(201, 169, 110, 0.06);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.pull-section .pq {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 46px);
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--warm-white);
}
.pull-section .pq-attr {
  margin-top: 32px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 5px;
  color: var(--gold-bright);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .materials-grid { grid-template-columns: 1fr; }
  .matrix-wrap, .voice-stage, .sustain-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .credits { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .bento-item.b1 { grid-column: span 2; grid-row: auto; }
  .compare-row { grid-template-columns: 1fr 1fr; gap: 4px 12px; font-size: 12px; }
  .compare-row .v:nth-child(4) { display: none; }
  .process { grid-template-columns: 1fr 1fr; gap: 40px 12px; }
  .process::before { display: none; }
  .day-timeline { grid-template-columns: repeat(3, 1fr); }
  .world-stats { grid-template-columns: repeat(2, 1fr); }
  .press-strip { grid-template-columns: repeat(3, 1fr); }
  .reserve { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .hud-frame { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .day-timeline { grid-template-columns: 1fr 1fr; }
  .credits { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .matrix-grid { grid-template-columns: repeat(3, 1fr); }
}
