/* ===============================
   GLOBAL RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #05070b;
  --bg-deep: #081018;
  --bg-soft: #0f1a23;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);

  --text: #f8f1df;
  --muted: #b9b29f;
  --muted-light: #d7cfbd;

  --gold: #f0c86a;
  --gold-dark: #a97822;
  --teal: #5ee4d1;
  --blue: #4cb9ff;
  --green: #77ef9f;
  --purple: #b77aff;

  --border: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(240, 200, 106, 0.46);

  --shadow: 0 35px 100px rgba(0, 0, 0, 0.48);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 18px;

  --font-title: "Cinzel", serif;
  --font-body: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 8% 8%, rgba(94, 228, 209, 0.13), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(240, 200, 106, 0.12), transparent 32%),
    linear-gradient(180deg, #05070b 0%, #09121b 38%, #05070b 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font-family: inherit;
}

.container {
  width: min(1200px, calc(100% - 42px));
  margin: 0 auto;
}

.section {
  padding: 120px 0;
  position: relative;
}

.mini-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mini-title::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-heading h2,
.art-system-content h2,
.app-left h2,
.gatekeeper-content h2,
.showcase-content h2,
.access-content h2 {
  font-family: var(--font-title);
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin-top: 16px;
}

.section-heading p,
.art-system-content p,
.app-left p,
.gatekeeper-content p,
.showcase-content p,
.access-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin-top: 18px;
}

/* ===============================
   HEADER
================================ */
.main-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  padding: 20px 0;
  transition: 0.35s ease;
}

.main-header.scrolled {
  padding: 12px 0;
  background: rgba(5, 7, 11, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(22px);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--border-gold);
  background:
    radial-gradient(circle at top, rgba(240, 200, 106, 0.2), transparent 65%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 44px rgba(240, 200, 106, 0.15);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-family: var(--font-title);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  color: var(--muted-light);
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-btn {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 200, 106, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  transition: 0.3s ease;
}

.header-btn:hover {
  background: var(--gold);
  color: #120d04;
  transform: translateY(-3px);
}

.mobile-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.mobile-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: 0.3s ease;
}

.mobile-toggle span:first-child {
  top: 17px;
}

.mobile-toggle span:last-child {
  bottom: 17px;
}

.mobile-toggle.active span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.mobile-toggle.active span:last-child {
  bottom: 22px;
  transform: rotate(-45deg);
}

/* ===============================
   BUTTONS
================================ */
.btn {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  transition: 0.35s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #fff3bf);
  color: #120d04;
  box-shadow: 0 22px 55px rgba(240, 200, 106, 0.28);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 75px rgba(240, 200, 106, 0.38);
}

.btn-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  backdrop-filter: blur(18px);
}

.btn-secondary:hover {
  border-color: var(--border-gold);
  background: rgba(240, 200, 106, 0.12);
  transform: translateY(-4px);
}

/* ===============================
   HERO
================================ */
.hero-section {
  min-height: 100vh;
  padding: 155px 0 95px;
  position: relative;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  pointer-events: none;
}

.hero-orb-one {
  width: 460px;
  height: 460px;
  background: rgba(94, 228, 209, 0.15);
  left: -160px;
  top: 170px;
}

.hero-orb-two {
  width: 520px;
  height: 520px;
  background: rgba(240, 200, 106, 0.13);
  right: -160px;
  top: 70px;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-label span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-top: 22px;
}

.hero-content h1 span {
  display: block;
  color: var(--gold);
  text-shadow: 0 0 42px rgba(240, 200, 106, 0.18);
}

.hero-content p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
  margin-top: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-proof-row {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 660px;
}

.hero-proof-row div {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.hero-proof-row strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 30px;
}

.hero-proof-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 6px;
}

/* ===============================
   HERO ART
================================ */
.hero-art {
  position: relative;
  perspective: 1300px;
}

.hero-art-shell {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 20px;
  border: 1px solid var(--border-gold);
  background:
    radial-gradient(circle at 50% 20%, rgba(94, 228, 209, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: 0.25s ease-out;
}

.hero-art-shell::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, transparent, rgba(240, 200, 106, 0.34), transparent);
  transform: translateX(-100%);
  animation: shellShine 5.5s infinite;
}

@keyframes shellShine {
  0%, 46% { transform: translateX(-100%); }
  72%, 100% { transform: translateX(100%); }
}

.hero-art-top {
  position: relative;
  z-index: 2;
  padding: 6px 5px 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.pyramid-stage {
  position: relative;
  z-index: 2;
  min-height: 555px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 40%, rgba(94, 228, 209, 0.14), transparent 28%),
    radial-gradient(circle at bottom, rgba(240, 200, 106, 0.12), transparent 42%),
    #020407;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pyramid-stage::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 26px;
  border: 1px solid rgba(240, 200, 106, 0.11);
}

.main-pyramid-img {
  width: min(86%, 620px);
  max-height: 510px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 28px rgba(94, 228, 209, 0.35))
    drop-shadow(0 0 60px rgba(240, 200, 106, 0.18));
  z-index: 3;
  animation: softFloat 5s ease-in-out infinite;
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.015); }
}

.stage-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 200, 106, 0.14);
}

.ring-one {
  width: 470px;
  height: 470px;
  animation: rotateRing 16s linear infinite;
}

.ring-two {
  width: 330px;
  height: 330px;
  border-color: rgba(94, 228, 209, 0.16);
  animation: rotateRing 12s linear infinite reverse;
}

@keyframes rotateRing {
  to { transform: rotate(360deg); }
}

.hero-art-footer {
  position: relative;
  z-index: 2;
  padding: 22px 6px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-art-footer strong {
  display: block;
  font-family: var(--font-title);
  font-size: 24px;
}

.hero-art-footer span {
  display: block;
  color: var(--muted);
  margin-top: 5px;
}

.hero-art-footer img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.hero-float-card {
  position: absolute;
  z-index: 6;
  width: 245px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(6, 11, 17, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-float-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 16px;
}

.hero-float-card strong {
  color: var(--gold);
  display: block;
  font-size: 14px;
}

.hero-float-card span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.4;
}

.float-card-one {
  left: -42px;
  top: 120px;
}

.float-card-two {
  right: -32px;
  bottom: 120px;
}

/* ===============================
   IMAGE STRIP
================================ */
.image-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
}

.strip-track {
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 26px 42px;
  width: max-content;
  animation: stripMove 34s linear infinite;
}

.strip-track img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.22);
}

.strip-track img:nth-child(4) {
  width: 110px;
}

@keyframes stripMove {
  from { transform: translateX(0); }
  to { transform: translateX(-38%); }
}

/* ===============================
   DISCOVERY
================================ */
.discovery-section {
  background:
    radial-gradient(circle at 8% 30%, rgba(94, 228, 209, 0.08), transparent 30%);
}

.discovery-layout {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 28px;
  align-items: stretch;
}

.discovery-large-card,
.info-card {
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}

.discovery-large-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.large-card-image {
  min-height: 520px;
  background:
    radial-gradient(circle at center, rgba(94, 228, 209, 0.12), transparent 36%),
    #020407;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}

.large-card-image img {
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 0 35px rgba(94, 228, 209, 0.28));
}

.large-card-content {
  padding: 36px;
}

.large-card-content span,
.info-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.large-card-content h3 {
  font-family: var(--font-title);
  font-size: 34px;
  line-height: 1.12;
  margin-top: 12px;
}

.large-card-content p {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 14px;
}

.discovery-stack {
  display: grid;
  gap: 22px;
}

.info-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
}

.info-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.24);
  padding: 12px;
  border: 1px solid var(--border);
}

.info-card h3 {
  font-size: 23px;
  margin-top: 8px;
}

.info-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-top: 8px;
}

/* ===============================
   ART SYSTEM
================================ */
.art-system-section {
  background:
    radial-gradient(circle at 90% 30%, rgba(240, 200, 106, 0.09), transparent 30%),
    rgba(255, 255, 255, 0.012);
}

.art-system-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 62px;
  align-items: center;
}

.system-points {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.system-points div {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.055);
}

.system-points strong {
  color: var(--gold);
  display: block;
  margin-bottom: 7px;
}

.system-points span {
  color: var(--muted);
  line-height: 1.55;
}

.symbol-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 210px;
  gap: 18px;
}

.symbol-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at center, rgba(94, 228, 209, 0.11), transparent 46%),
    rgba(255, 255, 255, 0.055);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px;
  transition: 0.35s ease;
  overflow: hidden;
}

.symbol-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
}

.symbol-card img {
  max-width: 150px;
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(94, 228, 209, 0.28));
}

.symbol-card span {
  color: var(--muted-light);
  font-weight: 800;
  font-size: 14px;
}

.main-symbol {
  grid-row: span 2;
}

.main-symbol img {
  max-width: 260px;
  max-height: 310px;
}

/* ===============================
   APP SECTION
================================ */
.app-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent),
    radial-gradient(circle at 20% 20%, rgba(183, 122, 255, 0.09), transparent 28%);
}

.app-panel {
  border-radius: var(--radius-xl);
  padding: 54px;
  border: 1px solid var(--border-gold);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 58px;
  align-items: center;
}

.app-feature-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.app-feature-list div {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
}

.app-feature-list span {
  color: var(--gold);
  font-weight: 900;
}

.app-feature-list h3 {
  margin-top: 8px;
  font-size: 21px;
}

.app-feature-list p {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
}

.app-right {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: min(365px, 100%);
  border-radius: 48px;
  padding: 14px;
  border: 1px solid var(--border-gold);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.42);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 27px;
  border-radius: 0 0 16px 16px;
  background: #020407;
  z-index: 3;
}

.phone-screen {
  min-height: 650px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top, rgba(94, 228, 209, 0.13), transparent 30%),
    linear-gradient(180deg, #0b1520, #030508);
  padding: 62px 22px 22px;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-header img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  padding: 6px;
  background: rgba(255,255,255,0.08);
}

.phone-header strong,
.phone-header span {
  display: block;
}

.phone-header span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.question-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.075);
  border: 1px solid var(--border);
}

.question-box small {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.question-box h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-top: 12px;
}

.reading-image {
  margin-top: 22px;
  min-height: 145px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle, rgba(94, 228, 209, 0.13), transparent 58%),
    rgba(0,0,0,0.18);
  border: 1px solid var(--border);
}

.reading-image img {
  max-width: 145px;
  max-height: 120px;
  object-fit: contain;
}

.reading-card {
  margin-top: 22px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(240, 200, 106, 0.22);
  background: rgba(240, 200, 106, 0.08);
}

.reading-card span {
  color: var(--gold);
  font-weight: 900;
}

.reading-card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  margin-top: 8px;
}

.phone-screen button {
  width: 100%;
  min-height: 52px;
  margin-top: 22px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), #fff3bf);
  color: #120d04;
  font-weight: 900;
  cursor: pointer;
}

/* ===============================
   GATEKEEPER
================================ */
.gatekeeper-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 68px;
  align-items: center;
}

.gatekeeper-image {
  position: relative;
}

.print-frame {
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--border-gold);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}

.print-frame img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 26px;
  background: #020407;
  padding: 24px;
}

.print-badge {
  position: absolute;
  right: -25px;
  bottom: 70px;
  width: 230px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(5, 7, 11, 0.88);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.print-badge strong {
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
}

.print-badge span {
  color: var(--muted);
  font-size: 14px;
}

.gatekeeper-steps {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.gatekeeper-steps div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.055);
}

.gatekeeper-steps span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #120d04;
  background: linear-gradient(135deg, var(--gold), #fff3bf);
  font-weight: 900;
}

.gatekeeper-steps strong {
  display: block;
  font-size: 18px;
}

.gatekeeper-steps p {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 5px;
}

/* ===============================
   JOURNEY
================================ */
.journey-section {
  background:
    radial-gradient(circle at 70% 10%, rgba(94, 228, 209, 0.08), transparent 28%);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.journey-card {
  min-height: 255px;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035));
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

.journey-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  top: -90px;
  right: -70px;
  border-radius: 50%;
  background: rgba(240, 200, 106, 0.1);
}

.journey-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
}

.journey-card span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  background: rgba(240, 200, 106, 0.08);
  font-weight: 900;
}

.journey-card h3 {
  font-size: 23px;
  margin-top: 28px;
}

.journey-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-top: 10px;
}

/* ===============================
   SHOWCASE
================================ */
.showcase-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 190px;
  gap: 18px;
}

.showcase-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at center, rgba(94, 228, 209, 0.1), transparent 45%),
    rgba(255,255,255,0.055);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  overflow: hidden;
}

.showcase-item.tall {
  grid-row: span 2;
}

.showcase-item img {
  max-width: 165px;
  max-height: 150px;
  object-fit: contain;
}

.showcase-item.tall img {
  max-width: 280px;
  max-height: 330px;
}

.showcase-item span {
  color: var(--muted-light);
  font-weight: 800;
  font-size: 14px;
}

/* ===============================
   ACCESS CTA
================================ */
.access-section {
  padding-top: 40px;
}

.access-box {
  border-radius: var(--radius-xl);
  padding: 56px;
  border: 1px solid var(--border-gold);
  background:
    radial-gradient(circle at 90% 50%, rgba(240, 200, 106, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 40px;
  align-items: center;
}

.access-form {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  max-width: 630px;
}

.access-form input {
  flex: 1;
  min-height: 58px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.24);
  color: var(--text);
  padding: 0 22px;
  outline: none;
  font-size: 15px;
}

.access-form input:focus {
  border-color: var(--border-gold);
}

.access-form button {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #fff3bf);
  color: #120d04;
  font-weight: 900;
  padding: 0 26px;
  cursor: pointer;
}

.form-message {
  min-height: 24px;
  margin-top: 12px !important;
  color: var(--green) !important;
  font-size: 14px !important;
}

.access-images {
  min-height: 300px;
  position: relative;
}

.access-images img {
  position: absolute;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.22);
  padding: 16px;
}

.access-images img:nth-child(1) {
  width: 160px;
  height: 160px;
  left: 30px;
  top: 0;
}

.access-images img:nth-child(2) {
  width: 110px;
  height: 110px;
  right: 70px;
  top: 72px;
}

.access-images img:nth-child(3) {
  width: 210px;
  height: 170px;
  left: 100px;
  bottom: 0;
}

/* ===============================
   FOOTER
================================ */
.footer {
  padding: 58px 0;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.24);
}

.footer-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.75;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ===============================
   ANIMATIONS
================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1100px) {
  .header-btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 82px 20px auto 20px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(5, 7, 11, 0.96);
    border: 1px solid var(--border);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-layout,
  .discovery-layout,
  .art-system-layout,
  .app-panel,
  .gatekeeper-layout,
  .showcase-layout,
  .access-box {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content p,
  .hero-proof-row {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-float-card {
    display: none;
  }

  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-content {
    text-align: center;
  }

  .print-badge {
    right: 20px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .section {
    padding: 82px 0;
  }

  .hero-section {
    padding: 130px 0 75px;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-proof-row,
  .journey-grid,
  .symbol-gallery,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .symbol-gallery,
  .showcase-grid {
    grid-auto-rows: auto;
  }

  .main-symbol {
    grid-row: auto;
  }

  .pyramid-stage {
    min-height: 410px;
  }

  .large-card-image {
    min-height: 400px;
  }

  .info-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-card img {
    margin: 0 auto;
  }

  .app-panel,
  .access-box {
    padding: 30px;
  }

  .access-form {
    flex-direction: column;
  }

  .access-form button {
    width: 100%;
  }

  .access-images {
    min-height: 240px;
  }

  .footer-layout {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .section-heading h2,
  .art-system-content h2,
  .app-left h2,
  .gatekeeper-content h2,
  .showcase-content h2,
  .access-content h2 {
    font-size: 32px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-proof-row {
    grid-template-columns: 1fr;
  }

  .hero-art-shell {
    padding: 14px;
  }

  .pyramid-stage {
    min-height: 340px;
  }

  .main-pyramid-img {
    width: 94%;
  }

  .phone-screen {
    min-height: 590px;
  }

  .gatekeeper-steps div {
    grid-template-columns: 1fr;
  }

  .print-badge {
    position: static;
    width: 100%;
    margin-top: 18px;
  }
}


/* =====================================================
   FINAL STRUCTURE FIXES
   Add this at the END of style.css
===================================================== */

/* ---------- Header Logo Fix ---------- */
.main-header {
  background: rgba(5, 10, 12, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-wrapper {
  min-height: 62px;
}

.brand-icon {
  width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
  border-radius: 8px !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden;
}

.brand-icon img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  background: transparent !important;
  border-radius: 4px;
}

.brand-text strong {
  font-size: 17px !important;
  line-height: 1.1;
}

.brand-text small {
  font-size: 11px !important;
  line-height: 1.2;
}

/* ---------- Hero Structure Fix ---------- */
.hero-section {
  padding-top: 135px !important;
  padding-bottom: 90px !important;
}

.hero-layout {
  align-items: center !important;
}

.hero-content {
  max-width: 610px;
}

.hero-content h1 {
  max-width: 620px;
}

.hero-content p {
  max-width: 590px;
}

.hero-art-shell {
  max-width: 720px;
  margin-left: auto;
}

.pyramid-stage {
  min-height: 480px !important;
}

.main-pyramid-img {
  width: 88% !important;
  max-height: 440px !important;
}

/* ---------- Asset Strip Fix ---------- */
.image-strip,
.strip-track {
  display: none !important;
}

.asset-strip {
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.asset-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.asset-item {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s ease;
}

.asset-item:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 200, 106, 0.55);
  background: rgba(240, 200, 106, 0.08);
}

.asset-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.asset-item span {
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  color: #cfc5ae;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: 0.3s ease;
}

.asset-item:hover span {
  opacity: 1;
}

/* ---------- Section Spacing Fix ---------- */
.section {
  padding: 100px 0 !important;
}

.section-heading {
  margin-bottom: 54px !important;
}

.section-heading h2,
.art-system-content h2,
.app-left h2,
.gatekeeper-content h2,
.showcase-content h2,
.access-content h2 {
  letter-spacing: -0.025em !important;
}

/* ---------- Art System Fix ---------- */
.art-system-layout {
  grid-template-columns: 0.9fr 1.1fr !important;
  gap: 54px !important;
}

.symbol-gallery {
  align-items: stretch;
}

.symbol-card {
  min-height: 190px;
}

.symbol-card img {
  width: 100%;
  max-width: 145px;
  height: 115px;
  object-fit: contain;
}

.main-symbol img {
  max-width: 240px !important;
  height: 270px !important;
  object-fit: contain;
}

/* ---------- Gatekeeper Section Fix ---------- */
.gatekeeper-layout {
  grid-template-columns: 0.95fr 1.05fr !important;
  gap: 58px !important;
}

.gatekeeper-content {
  max-width: 620px;
}

.gatekeeper-steps {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.gate-step {
  display: grid !important;
  grid-template-columns: 54px 1fr !important;
  gap: 18px !important;
  align-items: flex-start !important;
  padding: 22px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  background: rgba(255, 255, 255, 0.055) !important;
}

.gate-step span {
  width: 54px !important;
  height: 54px !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #f0c86a, #fff3bf) !important;
  color: #120d04 !important;
  font-weight: 900 !important;
  font-size: 14px !important;
}

.gate-step strong {
  display: block !important;
  color: #f8f1df !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
  margin-bottom: 7px !important;
}

.gate-step p {
  color: #b9b29f !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  font-size: 14px !important;
  max-width: 100% !important;
}

.print-frame {
  padding: 20px !important;
}

.print-frame img {
  max-height: 520px !important;
  padding: 18px !important;
}

/* ---------- Discovery Section Fix ---------- */
.discovery-layout {
  align-items: stretch !important;
}

.large-card-image {
  min-height: 450px !important;
}

.large-card-image img {
  max-height: 420px !important;
}

.info-card {
  min-height: 170px;
}

/* ---------- Showcase Fix ---------- */
.showcase-grid {
  gap: 18px !important;
}

.showcase-item {
  min-height: 180px;
}

/* ---------- Footer Fix ---------- */
.footer {
  padding: 45px 0 !important;
}

/* ---------- Responsive Fix ---------- */
@media (max-width: 1100px) {
  .hero-layout,
  .discovery-layout,
  .art-system-layout,
  .app-panel,
  .gatekeeper-layout,
  .showcase-layout,
  .access-box {
    grid-template-columns: 1fr !important;
  }

  .hero-content,
  .gatekeeper-content {
    max-width: 100%;
  }

  .hero-art-shell {
    margin: 0 auto;
  }

  .gatekeeper-content {
    text-align: left;
  }

  .asset-strip-inner {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .main-header {
    padding: 8px 0 !important;
  }

  .header-wrapper {
    min-height: 56px;
  }

  .brand-icon,
  .brand-icon img {
    width: 36px !important;
    height: 36px !important;
  }

  .brand-text strong {
    font-size: 15px !important;
  }

  .brand-text small {
    font-size: 10px !important;
  }

  .hero-section {
    padding-top: 115px !important;
  }

  .hero-content {
    text-align: left !important;
  }

  .hero-buttons {
    justify-content: flex-start !important;
  }

  .hero-proof-row {
    grid-template-columns: 1fr !important;
  }

  .pyramid-stage {
    min-height: 330px !important;
  }

  .main-pyramid-img {
    width: 96% !important;
    max-height: 300px !important;
  }

  .asset-item {
    width: 68px;
    height: 68px;
  }

  .asset-item img {
    width: 42px;
    height: 42px;
  }

  .gate-step {
    grid-template-columns: 46px 1fr !important;
    gap: 14px !important;
    padding: 18px !important;
  }

  .gate-step span {
    width: 46px !important;
    height: 46px !important;
  }

  .print-badge {
    position: static !important;
    margin-top: 16px !important;
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .asset-strip-inner {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .asset-item {
    flex: 0 0 68px;
  }

  .section {
    padding: 74px 0 !important;
  }
}


/* =====================================================
   NEW TRIPTYCH UNLOCK SECTION
===================================================== */

.triptych-unlock-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(94, 228, 209, 0.08), transparent 32%),
    radial-gradient(circle at 88% 20%, rgba(240, 200, 106, 0.09), transparent 30%),
    linear-gradient(180deg, #05090f 0%, #09131b 100%);
  overflow: hidden;
}

.triptych-unlock-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

.triptych-unlock-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

/* LEFT IMAGE AREA */
.triptych-unlock-art {
  position: relative;
}

.triptych-print-card {
  position: relative;
  border-radius: 36px;
  padding: 22px;
  border: 1px solid rgba(240, 200, 106, 0.42);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.045)),
    rgba(0,0,0,0.18);
  box-shadow: 0 35px 95px rgba(0,0,0,0.42);
  overflow: hidden;
}

.triptych-print-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(240, 200, 106, 0.26),
    transparent
  );
  transform: translateX(-110%);
  animation: triptychShine 5.5s infinite;
  pointer-events: none;
}

@keyframes triptychShine {
  0%, 45% {
    transform: translateX(-110%);
  }
  70%, 100% {
    transform: translateX(110%);
  }
}

.triptych-print-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 4px 18px;
}

.triptych-print-top span,
.triptych-print-top small {
  color: #f0c86a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.triptych-print-top small {
  color: #b9b29f;
}

.triptych-print-image {
  position: relative;
  z-index: 2;
  min-height: 500px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at center, rgba(94, 228, 209, 0.13), transparent 38%),
    radial-gradient(circle at bottom, rgba(240, 200, 106, 0.11), transparent 42%),
    #020407;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  overflow: hidden;
}

.triptych-print-image::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  border: 1px solid rgba(240, 200, 106, 0.12);
}

.triptych-print-image::after {
  content: "";
  position: absolute;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  border: 1px solid rgba(94, 228, 209, 0.16);
}

.triptych-print-image img {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 520px;
  max-height: 440px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 28px rgba(94, 228, 209, 0.38))
    drop-shadow(0 0 60px rgba(240, 200, 106, 0.18));
}

.triptych-print-bottom {
  position: relative;
  z-index: 2;
  padding: 22px 4px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.triptych-print-bottom strong {
  display: block;
  font-family: var(--font-title, "Cinzel", serif);
  color: #f8f1df;
  font-size: 22px;
  line-height: 1.2;
}

.triptych-print-bottom p {
  color: #b9b29f;
  margin-top: 5px;
  font-size: 14px;
}

.triptych-code-box {
  min-width: 128px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(240, 200, 106, 0.35);
  background: rgba(240, 200, 106, 0.09);
  text-align: center;
}

.triptych-code-box span {
  display: block;
  color: #b9b29f;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.triptych-code-box strong {
  color: #f0c86a;
  font-size: 18px;
  margin-top: 4px;
  font-family: var(--font-body, "Inter", sans-serif);
}

.triptych-floating-note {
  position: absolute;
  right: -26px;
  bottom: 96px;
  width: 235px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(240, 200, 106, 0.38);
  background: rgba(5, 9, 15, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.42);
  z-index: 5;
}

.triptych-floating-note strong {
  display: block;
  color: #f0c86a;
  font-size: 15px;
  margin-bottom: 6px;
}

.triptych-floating-note span {
  display: block;
  color: #b9b29f;
  font-size: 13px;
  line-height: 1.5;
}

/* RIGHT CONTENT AREA */
.triptych-unlock-content {
  max-width: 660px;
}

.triptych-small-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f0c86a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.triptych-small-title::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #f0c86a;
}

.triptych-unlock-content h2 {
  margin-top: 18px;
  font-family: var(--font-title, "Cinzel", serif);
  color: #f8f1df;
  font-size: clamp(36px, 4.7vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.triptych-unlock-content > p {
  margin-top: 20px;
  color: #b9b29f;
  font-size: 17px;
  line-height: 1.75;
  max-width: 610px;
}

.triptych-step-list {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.triptych-step-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  transition: 0.35s ease;
}

.triptych-step-card:hover {
  transform: translateX(8px);
  border-color: rgba(240, 200, 106, 0.48);
  background:
    linear-gradient(145deg, rgba(240, 200, 106, 0.12), rgba(255,255,255,0.04));
}

.triptych-step-number {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0c86a, #fff3bf);
  color: #120d04;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(240, 200, 106, 0.22);
}

.triptych-step-info h3 {
  color: #f8f1df;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.triptych-step-info p {
  color: #b9b29f;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.triptych-unlock-cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.triptych-main-btn,
.triptych-outline-btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  transition: 0.3s ease;
}

.triptych-main-btn {
  background: linear-gradient(135deg, #f0c86a, #fff3bf);
  color: #120d04;
  box-shadow: 0 22px 55px rgba(240, 200, 106, 0.26);
}

.triptych-main-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(240, 200, 106, 0.36);
}

.triptych-outline-btn {
  color: #f8f1df;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.triptych-outline-btn:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 200, 106, 0.48);
  background: rgba(240, 200, 106, 0.1);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .triptych-unlock-wrap {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .triptych-unlock-content {
    max-width: 100%;
  }

  .triptych-unlock-art {
    max-width: 760px;
    margin: 0 auto;
  }

  .triptych-floating-note {
    right: 24px;
  }
}

@media (max-width: 760px) {
  .triptych-unlock-section {
    padding: 82px 0;
  }

  .triptych-print-card {
    padding: 16px;
    border-radius: 28px;
  }

  .triptych-print-image {
    min-height: 360px;
    padding: 22px;
  }

  .triptych-print-image img {
    max-height: 310px;
  }

  .triptych-print-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .triptych-code-box {
    width: 100%;
    text-align: left;
  }

  .triptych-floating-note {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .triptych-step-card {
    grid-template-columns: 54px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .triptych-step-number {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .triptych-unlock-cta a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .triptych-print-image {
    min-height: 300px;
  }

  .triptych-step-card {
    grid-template-columns: 1fr;
  }

  .triptych-step-number {
    width: 52px;
    height: 52px;
  }

  .triptych-unlock-content h2 {
    font-size: 32px;
  }
}


/* =====================================================
   PREMIUM GATEKEEPER SECTION - BALANCED VERSION
===================================================== */

.premium-gate-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(94, 228, 209, 0.08), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(240, 200, 106, 0.09), transparent 30%),
    linear-gradient(180deg, #05090f 0%, #08121a 100%);
  overflow: hidden;
}

.premium-gate-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

.premium-gate-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: stretch;
  min-height: 650px;
}

/* LEFT SIDE */
.premium-gate-left {
  position: relative;
  height: 100%;
  display: flex;
}

.premium-art-card {
  width: 100%;
  min-height: 100%;
  border-radius: 34px;
  padding: 22px;
  border: 1px solid rgba(240, 200, 106, 0.42);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.045)),
    rgba(0,0,0,0.2);
  box-shadow: 0 34px 95px rgba(0,0,0,0.44);
  display: flex;
  flex-direction: column;
}

.premium-art-labels {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 4px 18px;
}

.premium-art-labels span {
  color: #f0c86a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.premium-art-labels span:last-child {
  color: #b9b29f;
}

.premium-art-image {
  flex: 1;
  min-height: 420px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at center, rgba(94, 228, 209, 0.14), transparent 38%),
    radial-gradient(circle at bottom, rgba(240, 200, 106, 0.11), transparent 42%),
    #020407;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
  position: relative;
}

.premium-art-image::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  border: 1px solid rgba(240, 200, 106, 0.12);
}

.premium-art-image::after {
  content: "";
  position: absolute;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  border: 1px solid rgba(94, 228, 209, 0.16);
}

.premium-art-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  max-height: 430px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 28px rgba(94, 228, 209, 0.36))
    drop-shadow(0 0 56px rgba(240, 200, 106, 0.2));
}

.premium-art-info {
  padding: 22px 4px 2px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.premium-art-info h3 {
  font-family: var(--font-title, "Cinzel", serif);
  color: #f8f1df;
  font-size: 23px;
  line-height: 1.2;
}

.premium-art-info p {
  color: #b9b29f;
  font-size: 14px;
  margin-top: 6px;
}

.premium-access-code {
  min-width: 132px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(240, 200, 106, 0.35);
  background: rgba(240, 200, 106, 0.09);
}

.premium-access-code small {
  display: block;
  color: #b9b29f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premium-access-code strong {
  display: block;
  color: #f0c86a;
  font-size: 18px;
  margin-top: 5px;
}

.premium-float-badge {
  position: absolute;
  right: -24px;
  bottom: 145px;
  width: 235px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(240, 200, 106, 0.38);
  background: rgba(5, 9, 15, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.42);
  z-index: 4;
}

.premium-float-badge strong {
  display: block;
  color: #f0c86a;
  font-size: 15px;
  margin-bottom: 6px;
}

.premium-float-badge span {
  color: #b9b29f;
  font-size: 13px;
  line-height: 1.5;
}

/* RIGHT SIDE */
.premium-gate-right {
  min-height: 100%;
  border-radius: 34px;
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.premium-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f0c86a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.premium-section-label::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #f0c86a;
}

.premium-gate-right h2 {
  margin-top: 18px;
  font-family: var(--font-title, "Cinzel", serif);
  color: #f8f1df;
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 720px;
}

.premium-gate-desc {
  margin-top: 20px;
  color: #b9b29f;
  font-size: 16px;
  line-height: 1.75;
  max-width: 650px;
}

.premium-step-list {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.premium-step-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  transition: 0.3s ease;
}

.premium-step-card:hover {
  transform: translateX(7px);
  border-color: rgba(240, 200, 106, 0.48);
  background:
    linear-gradient(145deg, rgba(240, 200, 106, 0.11), rgba(255,255,255,0.04));
}

.premium-step-no {
  width: 62px;
  height: 62px;
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0c86a, #fff3bf);
  color: #120d04;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(240, 200, 106, 0.22);
}

.premium-step-card h3 {
  color: #f8f1df;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 7px;
}

.premium-step-card p {
  color: #b9b29f;
  font-size: 14px;
  line-height: 1.62;
  margin: 0;
}

.premium-gate-buttons {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.premium-btn-main,
.premium-btn-outline {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  transition: 0.3s ease;
}

.premium-btn-main {
  background: linear-gradient(135deg, #f0c86a, #fff3bf);
  color: #120d04;
  box-shadow: 0 20px 48px rgba(240, 200, 106, 0.24);
}

.premium-btn-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 66px rgba(240, 200, 106, 0.34);
}

.premium-btn-outline {
  color: #f8f1df;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.premium-btn-outline:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 200, 106, 0.48);
  background: rgba(240, 200, 106, 0.1);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .premium-gate-box {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .premium-gate-left {
    max-width: 760px;
    margin: 0 auto;
  }

  .premium-gate-right {
    padding: 36px;
  }

  .premium-float-badge {
    right: 24px;
  }
}

@media (max-width: 760px) {
  .premium-gate-section {
    padding: 82px 0;
  }

  .premium-gate-box {
    gap: 34px;
  }

  .premium-art-card {
    padding: 16px;
    border-radius: 28px;
  }

  .premium-art-labels {
    flex-direction: column;
    gap: 6px;
  }

  .premium-art-image {
    min-height: 340px;
    padding: 22px;
  }

  .premium-art-image img {
    max-height: 300px;
  }

  .premium-art-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .premium-access-code {
    width: 100%;
  }

  .premium-float-badge {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .premium-gate-right {
    padding: 26px;
    border-radius: 26px;
  }

  .premium-step-card {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .premium-step-no {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .premium-gate-buttons a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .premium-art-image {
    min-height: 290px;
  }

  .premium-step-card {
    grid-template-columns: 1fr;
  }

  .premium-step-no {
    width: 52px;
    height: 52px;
  }

  .premium-gate-right h2 {
    font-size: 32px;
  }
}


/* =====================================================
   DARK / LIGHT MODE TOGGLE BUTTON
===================================================== */

.theme-toggle-btn {
  width: 54px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(240, 200, 106, 0.45);
  background: rgba(255, 255, 255, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease;
}

.theme-toggle-btn::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0c86a, #fff3bf);
  transition: 0.3s ease;
  z-index: 1;
}

.theme-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 13px;
  line-height: 1;
  z-index: 2;
  color: #120d04;
}

.theme-sun {
  color: #f0c86a;
}

body.light-mode .theme-toggle-btn::before {
  left: 25px;
}

body.light-mode .theme-toggle-btn {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(87, 65, 20, 0.25);
}

/* =====================================================
   LIGHT MODE COLORS
===================================================== */

body.light-mode {
  background:
    radial-gradient(circle at 8% 8%, rgba(94, 228, 209, 0.16), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(240, 200, 106, 0.2), transparent 32%),
    linear-gradient(180deg, #f7f1e6 0%, #eef3ee 42%, #f8f4eb 100%);
  color: #14201d;
}

/* Header */
body.light-mode .main-header {
  background: rgba(248, 244, 235, 0.88);
  border-bottom: 1px solid rgba(20, 32, 29, 0.1);
}

body.light-mode .main-header.scrolled {
  background: rgba(248, 244, 235, 0.92);
}

body.light-mode .brand-text strong,
body.light-mode .nav-menu a {
  color: #14201d;
}

body.light-mode .brand-text small {
  color: #60706a;
}

body.light-mode .nav-menu a:hover {
  color: #9a6b18;
}

body.light-mode .header-btn {
  color: #6e4b0e;
  border-color: rgba(154, 107, 24, 0.35);
  background: rgba(240, 200, 106, 0.2);
}

/* Text */
body.light-mode .hero-content h1,
body.light-mode .section-heading h2,
body.light-mode .art-system-content h2,
body.light-mode .app-left h2,
body.light-mode .gatekeeper-content h2,
body.light-mode .showcase-content h2,
body.light-mode .access-content h2,
body.light-mode .premium-gate-right h2 {
  color: #14201d;
}

body.light-mode .hero-content p,
body.light-mode .section-heading p,
body.light-mode .art-system-content p,
body.light-mode .app-left p,
body.light-mode .gatekeeper-content p,
body.light-mode .showcase-content p,
body.light-mode .access-content p,
body.light-mode .premium-gate-desc {
  color: #566660;
}

/* Cards */
body.light-mode .hero-proof-row div,
body.light-mode .discovery-large-card,
body.light-mode .info-card,
body.light-mode .system-points div,
body.light-mode .symbol-card,
body.light-mode .app-panel,
body.light-mode .journey-card,
body.light-mode .showcase-item,
body.light-mode .access-box,
body.light-mode .premium-gate-right,
body.light-mode .premium-step-card,
body.light-mode .premium-art-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.55));
  border-color: rgba(20, 32, 29, 0.12);
  box-shadow: 0 24px 70px rgba(55, 49, 38, 0.12);
}

/* Dark image panels still premium */
body.light-mode .pyramid-stage,
body.light-mode .large-card-image,
body.light-mode .premium-art-image,
body.light-mode .phone-screen,
body.light-mode .reading-image {
  background:
    radial-gradient(circle at center, rgba(94, 228, 209, 0.18), transparent 38%),
    radial-gradient(circle at bottom, rgba(240, 200, 106, 0.16), transparent 42%),
    #eef3ee;
  border-color: rgba(20, 32, 29, 0.12);
}

/* Card headings */
body.light-mode .large-card-content h3,
body.light-mode .info-card h3,
body.light-mode .system-points strong,
body.light-mode .journey-card h3,
body.light-mode .premium-step-card h3,
body.light-mode .premium-art-info h3 {
  color: #14201d;
}

/* Card paragraphs */
body.light-mode .large-card-content p,
body.light-mode .info-card p,
body.light-mode .system-points span,
body.light-mode .journey-card p,
body.light-mode .premium-step-card p,
body.light-mode .premium-art-info p {
  color: #566660;
}

/* Premium section background */
body.light-mode .premium-gate-section,
body.light-mode .triptych-unlock-section {
  background:
    radial-gradient(circle at 15% 25%, rgba(94, 228, 209, 0.13), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(240, 200, 106, 0.18), transparent 30%),
    linear-gradient(180deg, #f7f1e6 0%, #eef3ee 100%);
}

/* Asset strip */
body.light-mode .asset-strip,
body.light-mode .image-strip {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(20, 32, 29, 0.1);
}

body.light-mode .asset-item {
  background: rgba(255,255,255,0.75);
  border-color: rgba(20, 32, 29, 0.12);
}

/* Forms */
body.light-mode .access-form input {
  background: rgba(255,255,255,0.75);
  color: #14201d;
  border-color: rgba(20, 32, 29, 0.14);
}

body.light-mode .access-form input::placeholder {
  color: #68766f;
}

/* Footer */
body.light-mode .footer {
  background: rgba(255,255,255,0.45);
  border-color: rgba(20, 32, 29, 0.1);
}

body.light-mode .footer p,
body.light-mode .footer-links a {
  color: #566660;
}

/* Mobile menu light */
body.light-mode .nav-menu {
  background: rgba(248, 244, 235, 0.96);
  border-color: rgba(20, 32, 29, 0.12);
}

body.light-mode .mobile-toggle {
  border-color: rgba(20, 32, 29, 0.14);
  background: rgba(0, 0, 0, 0.05);
}

body.light-mode .mobile-toggle span {
  background: #14201d;
}

@media (max-width: 760px) {
  .theme-toggle-btn {
    width: 50px;
    height: 32px;
  }

  .theme-toggle-btn::before {
    width: 22px;
    height: 22px;
  }

  body.light-mode .theme-toggle-btn::before {
    left: 23px;
  }
}


/* =====================================================
   LIGHT MODE DARK GOLD FIX
   Add this at the END of style.css
===================================================== */

body.light-mode {
  --gold: #8a5a08;
  --gold-dark: #5f3c02;
  --border-gold: rgba(138, 90, 8, 0.45);
}

/* Golden labels / mini titles */
body.light-mode .mini-title,
body.light-mode .hero-label,
body.light-mode .premium-section-label,
body.light-mode .triptych-small-title,
body.light-mode .section-kicker {
  color: #8a5a08 !important;
}

body.light-mode .mini-title::before,
body.light-mode .premium-section-label::before,
body.light-mode .triptych-small-title::before,
body.light-mode .hero-label span {
  background: #8a5a08 !important;
}

/* Gold numbers and small highlight text */
body.light-mode .hero-proof-row strong,
body.light-mode .large-card-content span,
body.light-mode .info-card span,
body.light-mode .journey-card span,
body.light-mode .premium-access-code strong,
body.light-mode .premium-float-badge strong,
body.light-mode .premium-step-no,
body.light-mode .premium-art-labels span,
body.light-mode .premium-btn-outline:hover,
body.light-mode .asset-item:hover span {
  color: #8a5a08 !important;
}

/* Gold borders */
body.light-mode .brand-icon,
body.light-mode .header-btn,
body.light-mode .premium-art-card,
body.light-mode .premium-access-code,
body.light-mode .premium-float-badge,
body.light-mode .premium-step-card:hover,
body.light-mode .asset-item:hover,
body.light-mode .journey-card:hover,
body.light-mode .symbol-card:hover,
body.light-mode .showcase-item:hover {
  border-color: rgba(138, 90, 8, 0.45) !important;
}

/* Main gold buttons */
body.light-mode .btn-primary,
body.light-mode .premium-btn-main,
body.light-mode .access-form button,
body.light-mode .phone-screen button,
body.light-mode .header-btn:hover {
  background: linear-gradient(135deg, #8a5a08, #c8952f) !important;
  color: #fff8e8 !important;
  box-shadow: 0 18px 45px rgba(138, 90, 8, 0.24) !important;
}

/* Step number boxes */
body.light-mode .premium-step-no,
body.light-mode .triptych-step-number,
body.light-mode .gate-step span {
  background: linear-gradient(135deg, #8a5a08, #c8952f) !important;
  color: #fff8e8 !important;
}

/* Header waitlist button */
body.light-mode .header-btn {
  color: #6b4304 !important;
  background: rgba(138, 90, 8, 0.1) !important;
  border-color: rgba(138, 90, 8, 0.38) !important;
}

body.light-mode .header-btn:hover {
  color: #fff8e8 !important;
}

/* Toggle button gold */
body.light-mode .theme-toggle-btn {
  border-color: rgba(138, 90, 8, 0.38) !important;
}

body.light-mode .theme-toggle-btn::before {
  background: linear-gradient(135deg, #8a5a08, #c8952f) !important;
}

/* Soft gold backgrounds */
body.light-mode .premium-access-code,
body.light-mode .premium-float-badge,
body.light-mode .journey-card span {
  background: rgba(138, 90, 8, 0.08) !important;
}

/* Hero highlighted title */
body.light-mode .hero-content h1 span {
  color: #8a5a08 !important;
  text-shadow: none !important;
}

/* Phone / card labels */
body.light-mode .question-box small,
body.light-mode .reading-card span {
  color: #8a5a08 !important;
}


html.light-preload body {
  background:
    radial-gradient(circle at 8% 8%, rgba(94, 228, 209, 0.16), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(240, 200, 106, 0.2), transparent 32%),
    linear-gradient(180deg, #f7f1e6 0%, #eef3ee 42%, #f8f4eb 100%);
}