/* ==========================================================
   RKM VAULT — Design System
   Where Discipline Becomes Wealth
   ========================================================== */

:root {
  /* Palette — locked */
  --cream: #F5F1E8;
  --beige: #E8DCC4;
  --tan: #C9B59A;
  --gold: #B8936D;
  --gold-dark: #9A7A58;
  --espresso: #5C4A3A;
  --espresso-deep: #3D3024;
  --warm-brown: #8B7355;
  --ink: #2A2018;

  /* Type */
  --serif: "Cormorant Garamond", "Gloock", Georgia, serif;
  --serif-display: "Gloock", "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --mono: "Cormorant Garamond", Georgia, serif;

  /* Rhythm */
  --pad-section: clamp(80px, 12vh, 160px);
  --pad-inline: clamp(24px, 6vw, 96px);
  --max-width: 1320px;
  --max-readable: 680px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--espresso-deep);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--cream); }

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 16px;
  transform: translateY(-2px);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--espresso-deep);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.display {
  font-family: var(--serif);
  font-size: clamp(54px, 9vw, 148px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.display em {
  font-style: italic;
  color: var(--gold);
}

h2.section-title {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.02;
  margin-bottom: 40px;
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.roman {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

p.lead {
  font-family: var(--sans);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--warm-brown);
  max-width: var(--max-readable);
  font-weight: 300;
}

p { font-weight: 300; color: var(--warm-brown); }

/* Hairline divider */
.hairline {
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  border: 0;
  margin: 0;
}

.hairline-short {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
}

.hairline-short.center { margin-inline: auto; }

/* ==========================================================
   LAYOUT
   ========================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: var(--pad-inline);
  width: 100%;
}

section {
  padding-block: var(--pad-section);
  position: relative;
}

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--pad-inline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 241, 232, 0);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(245, 241, 232, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 14px;
  border-bottom-color: rgba(184, 147, 109, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--espresso-deep);
}

.nav-logo img {
  height: 36px;
  width: 36px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--espresso-deep);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--espresso-deep);
  color: var(--espresso-deep);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--espresso-deep);
  color: var(--cream);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--espresso-deep);
  color: var(--cream);
  border-color: var(--espresso-deep);
}

.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(60, 48, 36, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso-deep);
  border-color: var(--espresso-deep);
}

.btn-ghost:hover {
  background: var(--espresso-deep);
  color: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn:hover .arrow { transform: translateX(6px); }

/* ==========================================================
   REVEAL (Apple-style scroll-in)
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 1s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }
.reveal.delay-4 { transition-delay: 0.48s; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 120px 80px;
  position: relative;
  overflow: hidden;
}

.hero-vault {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 920px);
  aspect-ratio: 1;
  z-index: 0;
  opacity: 0.08;
  filter: grayscale(0.2);
  pointer-events: none;
}

.hero-vault img { width: 100%; height: 100%; object-fit: contain; }

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-tagline {
  margin-top: 48px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--warm-brown);
  letter-spacing: 0.02em;
  max-width: 540px;
  margin-inline: auto;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-meta {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-inline: var(--pad-inline);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-brown);
}

.hero-meta .scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.scroll-cue-line {
  display: inline-block;
  width: 1px;
  height: 40px;
  background: var(--warm-brown);
  animation: scroll-pulse 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ==========================================================
   PHILOSOPHY
   ========================================================== */
.philosophy {
  background: var(--espresso-deep);
  color: var(--cream);
  text-align: center;
  padding-block: 180px;
  position: relative;
  overflow: hidden;
}

.philosophy::before,
.philosophy::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.philosophy::before { top: 80px; }
.philosophy::after { bottom: 80px; }

.philosophy .eyebrow { color: var(--gold); }

.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.1;
  color: var(--cream);
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.philosophy-quote em {
  font-style: italic;
  color: var(--gold);
}

.philosophy-sub {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
  margin-top: 56px;
}

/* ==========================================================
   PROOF (April 2026)
   ========================================================== */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 960px) {
  .proof-grid { grid-template-columns: 1fr; gap: 48px; }
}

.proof-stat {
  font-family: var(--serif);
  font-size: clamp(96px, 14vw, 180px);
  line-height: 0.9;
  color: var(--espresso-deep);
  letter-spacing: -0.03em;
  font-weight: 400;
}

.proof-stat em {
  font-style: italic;
  color: var(--gold);
}

.proof-stat-label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-top: 24px;
}

.proof-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(184, 147, 109, 0.3);
}

.proof-ministat {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--espresso-deep);
  line-height: 1;
}

.proof-ministat-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-top: 10px;
}

.proof-calendar {
  background: var(--cream);
  border: 1px solid rgba(184, 147, 109, 0.3);
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 40px 80px -40px rgba(60, 48, 36, 0.25);
  position: relative;
}

.proof-calendar::before {
  content: "APRIL 2026 · VERIFIED";
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--cream);
  padding: 0 12px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 600;
}

.proof-calendar img { border-radius: 2px; }

.proof-caption {
  font-family: var(--serif);
  font-style: italic;
  color: var(--warm-brown);
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}

/* ==========================================================
   PRODUCTS (Two Vault Doors)
   ========================================================== */
.products {
  background: var(--beige);
  padding-block: var(--pad-section);
}

.products-header {
  text-align: center;
  margin-bottom: 80px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr; }
}

.vault-card {
  background: var(--cream);
  padding: 56px 48px 48px;
  position: relative;
  border: 1px solid rgba(184, 147, 109, 0.25);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.vault-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px -30px rgba(60, 48, 36, 0.3);
}

.vault-card::before,
.vault-card::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
}

.vault-card::before {
  top: 12px; left: 12px;
  border-right: 0;
  border-bottom: 0;
}

.vault-card::after {
  bottom: 12px; right: 12px;
  border-left: 0;
  border-top: 0;
}

.vault-door-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 32px;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.vault-card.in .vault-door-icon {
  transform: rotate(0deg);
}

.vault-card .roman {
  display: block;
  text-align: center;
  margin-bottom: 16px;
}

.vault-card h3 {
  text-align: center;
  font-size: clamp(32px, 3.5vw, 44px);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.vault-card .sub {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 36px;
}

.vault-card .who {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-brown);
  text-align: center;
  margin-bottom: 24px;
}

.vault-card .who-text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  text-align: center;
  color: var(--espresso-deep);
  margin-bottom: 40px;
  max-width: 380px;
  margin-inline: auto;
  text-wrap: balance;
}

.vault-card .features {
  list-style: none;
  padding: 32px 0;
  border-top: 1px solid rgba(184, 147, 109, 0.3);
  border-bottom: 1px solid rgba(184, 147, 109, 0.3);
  margin-bottom: 40px;
}

.vault-card .features li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--espresso-deep);
}

.vault-card .features li .k {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-brown);
  font-weight: 500;
}

.vault-card .features li .v {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--espresso-deep);
}

.vault-card .features li .v em {
  font-style: italic;
  color: var(--gold);
}

.vault-card .price {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.vault-card .price-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.vault-card .price-amount {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--espresso-deep);
  line-height: 1;
}

.vault-card .price-amount .slash {
  font-size: 20px;
  color: var(--warm-brown);
  font-style: italic;
  margin-left: 4px;
}

.vault-card .price-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--warm-brown);
  margin-top: 12px;
}

.products-cta {
  text-align: center;
  margin-top: 64px;
}

.vault-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--espresso-deep);
  border: 1px solid var(--espresso-deep);
  border-radius: 2px;
  align-self: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.vault-card:hover .vault-card-cta {
  background: var(--espresso-deep);
  color: var(--cream);
}
.vault-card-cta .arrow {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0;
  transition: transform 0.3s ease;
}
.vault-card:hover .vault-card-cta .arrow { transform: translateX(4px); }

.both-doors {
  margin-top: 40px;
  padding: 28px 32px;
  border-top: 1px solid rgba(60,48,36,0.12);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.both-doors-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--warm-brown);
}
.both-doors-link {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.both-doors-link:hover { color: var(--espresso-deep); border-color: var(--espresso-deep); }
.both-doors-link .arrow { font-family: var(--serif); font-size: 18px; letter-spacing: 0; }

.products-cta .segment {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--warm-brown);
  margin-bottom: 32px;
  text-wrap: balance;
  max-width: 640px;
  margin-inline: auto;
}

/* ==========================================================
   COMMUNITY (The Vault)
   ========================================================== */
.community {
  padding-block: var(--pad-section);
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 960px) {
  .community-grid { grid-template-columns: 1fr; gap: 56px; }
}

.community-discord {
  background: #2B2D31;
  border-radius: 6px;
  padding: 16px;
  position: relative;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  margin-inline: auto;
}

.community-discord img {
  border-radius: 4px;
}

.community-discord::before {
  content: "LIVE · 80+ TRADERS";
  position: absolute;
  top: -12px;
  left: 16px;
  background: var(--gold);
  color: var(--cream);
  padding: 4px 12px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  font-weight: 600;
}

/* Testimonials grid */
.testimonials {
  background: var(--espresso-deep);
  color: var(--cream);
  padding-block: var(--pad-section);
}

.testimonials .eyebrow { color: var(--gold); }

.testimonials h2 { color: var(--cream); }

.testimonials p.lead { color: var(--tan); }

.testimonials-header { text-align: center; margin-bottom: 80px; max-width: 720px; margin-inline: auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.t-card {
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid rgba(184, 147, 109, 0.25);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.4s ease;
}

.t-card:hover {
  border-color: var(--gold);
  background: rgba(245, 241, 232, 0.06);
  transform: translateY(-4px);
}

.t-card.featured {
  grid-column: span 2;
  background: rgba(184, 147, 109, 0.08);
  border-color: rgba(184, 147, 109, 0.5);
}

@media (max-width: 900px) {
  .t-card.featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .t-card.featured { grid-column: span 1; }
}

.t-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184, 147, 109, 0.2);
}

.t-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--cream);
  font-weight: 500;
}

.t-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 3px 6px;
  background: rgba(184, 147, 109, 0.2);
  color: var(--gold);
  border-radius: 2px;
}

.t-date {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--tan);
}

.t-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--cream);
  flex: 1;
  text-wrap: pretty;
}

.t-card.featured .t-quote {
  font-size: 22px;
}

.t-pl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(184, 147, 109, 0.2);
}

.t-pl-amount {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  font-weight: 400;
}

.t-pl-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--tan);
  text-transform: uppercase;
  text-align: right;
  max-width: 50%;
  line-height: 1.4;
}

/* ==========================================================
   VAULT DOOR OPENING ANIMATION + GATED CONTENT
   ========================================================== */

/* Make the vault cards feel like interactive doors */
.vault-card {
  cursor: pointer;
  position: relative;
}

.vault-card .door-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 28px;
  border: 1px solid var(--espresso-deep);
  color: var(--espresso-deep);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 2px;
  align-self: center;
  transition: all 0.3s ease;
}

.vault-card:hover .door-cta {
  background: var(--espresso-deep);
  color: var(--cream);
}

.vault-card .door-cta .arrow { transition: transform 0.3s ease; }
.vault-card:hover .door-cta .arrow { transform: translateX(6px); }

/* Vault door — two halves that open */
.door-animate-wrap {
  width: 88px;
  height: 88px;
  margin: 0 auto 32px;
  position: relative;
  perspective: 600px;
}

.door-animate-wrap .door-disk {
  width: 100%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.3, 1);
  transform-origin: center;
}

.vault-card.in .door-animate-wrap .door-disk {
  transform: rotate(45deg);
}

/* BUNDLE CARD */
.bundle-card {
  max-width: 540px;
  margin: 48px auto 0;
  text-align: center;
  padding: 32px 40px;
  background: var(--espresso-deep);
  color: var(--cream);
  border-radius: 2px;
  position: relative;
}

.bundle-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(184, 147, 109, 0.4);
  pointer-events: none;
}

.bundle-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.bundle-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}

.bundle-title em {
  font-style: normal;
  color: var(--gold);
}

.bundle-save {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tan);
}

/* GATED STRATEGY REVEALS */
.door-reveal {
  display: none;
  animation: door-open 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.door-reveal.show { display: block; }

@keyframes door-open {
  from { opacity: 0; transform: translateY(40px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Big overlay vault that spins when a door is chosen */
.vault-open-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.vault-open-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.vault-open-overlay img {
  width: 60vmin;
  height: 60vmin;
  max-width: 520px;
  max-height: 520px;
  animation: vault-spin 1.4s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}

@keyframes vault-spin {
  0%   { transform: rotate(0deg) scale(0.7); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: rotate(420deg) scale(1.05); opacity: 0; }
}

.door-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-brown);
  cursor: pointer;
  background: none;
  border: 0;
  padding: 8px 0;
  transition: color 0.2s ease;
}
.door-back:hover { color: var(--gold); }
.door-back .arrow { transition: transform 0.3s ease; }
.door-back:hover .arrow { transform: translateX(-4px); }

/* ==========================================================
   STRATEGY ZONE SEPARATORS
   ========================================================== */
.zone-marker {
  text-align: center;
  padding-block: 80px 40px;
  background: var(--cream);
}

.zone-marker .roman-big {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.zone-marker .zone-title {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--espresso-deep);
  font-weight: 600;
}

.zone-marker .zone-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--espresso-deep);
  line-height: 1.2;
  margin-top: 24px;
  max-width: 720px;
  margin-inline: auto;
  text-wrap: balance;
}

.zone-marker .zone-rule {
  display: block;
  width: 1px;
  height: 64px;
  background: var(--gold);
  margin: 40px auto 0;
  opacity: 0.5;
}

/* ==========================================================
   STRATEGY EXPLAINER
   ========================================================== */
.strategy {
  padding-block: 80px;
}

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

@media (max-width: 960px) {
  .strategy-grid { grid-template-columns: 1fr; gap: 48px; }
}

.strategy-steps {
  list-style: none;
  counter-reset: step;
  margin-top: 32px;
}

.strategy-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(184, 147, 109, 0.25);
}

.strategy-steps li:last-child { border-bottom: 0; }

.strategy-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  min-width: 48px;
}

.strategy-step-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--espresso);
  font-weight: 300;
}

.strategy-step-text strong {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--espresso-deep);
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
  font-style: normal;
}

.strategy-rules {
  background: var(--beige);
  padding: 40px 36px;
  border: 1px solid rgba(184, 147, 109, 0.3);
  position: relative;
}

.strategy-rules::before {
  content: "THE FIBONACCI RULES";
  position: absolute;
  top: -9px;
  left: 32px;
  background: var(--beige);
  padding: 0 12px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.strategy-rules dl {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 32px;
  row-gap: 14px;
  align-items: baseline;
  margin-top: 8px;
}

.strategy-rules dt {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-brown);
  font-weight: 600;
}

.strategy-rules dd {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--espresso-deep);
}

.strategy-rules dd em {
  font-style: italic;
  color: var(--gold);
}

.strategy-rules .rule-sep {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(184, 147, 109, 0.25);
  margin: 6px 0;
}

/* Two-chart example */
.chart-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 700px) { .chart-pair { grid-template-columns: 1fr; } }

.chart-pair figure {
  background: var(--cream);
  border: 1px solid rgba(184, 147, 109, 0.3);
  padding: 16px;
  box-shadow: 0 30px 60px -30px rgba(60, 48, 36, 0.2);
}

.chart-pair img { border-radius: 2px; }

.chart-pair figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  margin-top: 12px;
  border-top: 1px solid rgba(184, 147, 109, 0.3);
}

.chart-pair .cap-label {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--espresso-deep);
}

.chart-pair .cap-label em {
  font-style: italic;
  color: var(--gold);
}

.chart-pair .cap-tf {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-brown);
}

/* ORB performance report — single full-width figure */
.orb-report {
  background: var(--cream);
  border: 1px solid rgba(184, 147, 109, 0.3);
  padding: 24px;
  margin: 48px auto 0;
  box-shadow: 0 30px 60px -30px rgba(60, 48, 36, 0.2);
  max-width: 1100px;
}

.orb-report img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.orb-report figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 20px;
  margin-top: 16px;
  border-top: 1px solid rgba(184, 147, 109, 0.3);
  gap: 16px;
  flex-wrap: wrap;
}

.orb-report .cap-label {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--espresso-deep);
}

.orb-report .cap-label em {
  font-style: italic;
  color: var(--gold);
}

.orb-report .cap-tf {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-brown);
}

/* ==========================================================
   3-MONTH RECORD
   ========================================================== */
.record {
  padding-block: var(--pad-section);
}

.record-hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

@media (max-width: 960px) {
  .record-hero { grid-template-columns: 1fr; }
}

.record-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid rgba(184, 147, 109, 0.3);
}

@media (max-width: 700px) {
  .record-timeline { grid-template-columns: 1fr; }
}

.month-card {
  background: var(--cream);
  padding: 24px;
  border: 1px solid rgba(184, 147, 109, 0.25);
  position: relative;
}

.month-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(184, 147, 109, 0.3);
}

.month-card-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--espresso-deep);
  letter-spacing: 0.02em;
}

.month-card-pl {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  font-weight: 400;
}

.month-card-pl em {
  font-style: italic;
  font-size: 0.6em;
  color: var(--warm-brown);
  margin-left: 6px;
}

.month-card img {
  border-radius: 2px;
  width: 100%;
  height: auto;
}

.month-card-note {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(184, 147, 109, 0.2);
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--warm-brown);
  text-align: center;
}

/* War month callout */
.war-month {
  background: var(--espresso-deep);
  color: var(--cream);
  padding: 64px 56px;
  margin-top: 64px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 800px) {
  .war-month { grid-template-columns: 1fr; gap: 32px; padding: 48px 32px; }
}

.war-month::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(184, 147, 109, 0.35);
  pointer-events: none;
}

.war-month-marker {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.9;
  color: var(--gold);
  z-index: 1;
}

.war-month-marker span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--tan);
  margin-top: 16px;
}

.war-month blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.35;
  color: var(--cream);
  z-index: 1;
  text-wrap: pretty;
}

.war-month blockquote em {
  font-style: italic;
  color: var(--gold);
}

.war-month-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 147, 109, 0.25);
}

@media (max-width: 700px) { .war-month-stats { grid-template-columns: 1fr 1fr; } }

.war-stat {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--cream);
  line-height: 1;
}

.war-stat em { font-style: italic; color: var(--gold); }

.war-stat-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
  margin-top: 8px;
}

/* ==========================================================
   ZELLA DASHBOARD
   ========================================================== */
.zella {
  background: var(--beige);
  padding-block: var(--pad-section);
}

.zella-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 760px;
  margin-inline: auto;
}

.zella-dashboard {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--cream);
  padding: 16px;
  border: 1px solid rgba(184, 147, 109, 0.3);
  border-radius: 4px;
  box-shadow: 0 40px 80px -30px rgba(60, 48, 36, 0.25);
  position: relative;
}

.zella-dashboard::before {
  content: "TRADEZELLA · VERIFIED · APR 23, 2026";
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--beige);
  padding: 0 12px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 600;
}

.zella-dashboard img {
  border-radius: 2px;
  width: 100%;
  height: auto;
}

.zella-caption {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--warm-brown);
  margin-top: 24px;
  max-width: 640px;
  margin-inline: auto;
}

/* ==========================================================
   ORB STATS GRID (for backtested numbers)
   ========================================================== */
.orb-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(184, 147, 109, 0.4);
  border-bottom: 1px solid rgba(184, 147, 109, 0.4);
}

@media (max-width: 800px) { .orb-stats { grid-template-columns: 1fr 1fr; } }

.orb-stat {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(184, 147, 109, 0.2);
}

.orb-stat:last-child { border-right: 0; }

@media (max-width: 800px) {
  .orb-stat:nth-child(2) { border-right: 0; }
  .orb-stat:nth-child(1), .orb-stat:nth-child(2) {
    border-bottom: 1px solid rgba(184, 147, 109, 0.2);
  }
}

.orb-stat-value {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--espresso-deep);
  letter-spacing: -0.02em;
}

.orb-stat-value em {
  font-style: italic;
  color: var(--gold);
}

.orb-stat-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-top: 16px;
  font-weight: 500;
}

.orb-disclaimer {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--warm-brown);
  margin-top: 24px;
}

/* ORB testimonials — lighter, on-cream */
.orb-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

@media (max-width: 900px) { .orb-testimonials { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .orb-testimonials { grid-template-columns: 1fr; } }

.orb-t {
  background: var(--cream);
  border: 1px solid rgba(184, 147, 109, 0.3);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.orb-t-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184, 147, 109, 0.25);
}

.orb-t-user {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--espresso-deep);
  font-weight: 500;
}

.orb-t-role {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

.orb-t-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--espresso-deep);
  flex: 1;
}

.orb-t-pl {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  padding-top: 12px;
  border-top: 1px solid rgba(184, 147, 109, 0.25);
}

/* ==========================================================
   TRADE EXAMPLES
   ========================================================== */
.trades {
  padding-block: var(--pad-section);
}

.trades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}

@media (max-width: 900px) { .trades-grid { grid-template-columns: 1fr; } }

.trade-card {
  position: relative;
}

.trade-card img {
  border-radius: 3px;
  border: 1px solid rgba(184, 147, 109, 0.25);
  box-shadow: 0 30px 60px -30px rgba(60, 48, 36, 0.2);
}

.trade-caption {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(184, 147, 109, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.trade-label {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--espresso-deep);
}

.trade-label em {
  font-style: italic;
  color: var(--gold);
}

.trade-side {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--warm-brown);
  text-transform: uppercase;
}

/* ==========================================================
   TEAM
   ========================================================== */
.team {
  background: var(--beige);
  padding-block: var(--pad-section);
}

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

@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; gap: 64px; } }

.member-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--tan);
  margin-bottom: 32px;
}

.member-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.member:hover .member-photo img { transform: scale(1.04); }

.member-photo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(245, 241, 232, 0.6);
  pointer-events: none;
}

.member-name {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  color: var(--espresso-deep);
  line-height: 1;
}

.member-role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  margin-bottom: 24px;
}

.member-bio {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--espresso);
  font-weight: 300;
  max-width: 440px;
}

.member-bio em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 17px;
}

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final-cta {
  background: var(--espresso-deep);
  color: var(--cream);
  text-align: center;
  padding-block: 180px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid var(--gold);
  opacity: 0.25;
  pointer-events: none;
}

.final-cta-vault {
  width: 100px;
  height: 100px;
  margin: 0 auto 40px;
  opacity: 0.85;
}

.final-cta h2 {
  color: var(--cream);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  margin-bottom: 32px;
  max-width: 900px;
  margin-inline: auto;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.final-cta p {
  color: var(--tan);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 17px;
}

.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.final-cta-note {
  font-family: var(--serif);
  font-style: italic;
  color: var(--tan);
  font-size: 14px;
  margin-top: 32px;
}

@media (max-width: 700px) {
  /* Frame is inset 40px from section edge (:1956); bump container
     padding so text sits inside the frame with a 16px gutter on each side.
     Pre-existing overflow fix — final-cta had no mobile tuning. */
  .final-cta .container {
    padding-inline: 56px;
  }
}

/* ==========================================================
   FOOTER
   ========================================================== */
footer {
  background: var(--cream);
  padding: 80px var(--pad-inline) 48px;
  border-top: 1px solid rgba(184, 147, 109, 0.3);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(184, 147, 109, 0.25);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.footer-brand img { height: 48px; width: auto; margin-bottom: 24px; }

.footer-brand-name {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--espresso-deep);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.footer-brand-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--espresso);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--warm-brown);
  letter-spacing: 0.1em;
  flex-wrap: wrap;
}

.footer-disclaimer {
  max-width: var(--max-width);
  margin: 32px auto 0;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--warm-brown);
  line-height: 1.6;
  font-style: italic;
  opacity: 0.8;
  text-wrap: pretty;
}

.footer-est {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--gold);
}

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