/* ============================================================
   IWASREADY.COM — BRIDGING EARTH & KANARIA
   Design System & Global Styles
   Deep indigo / gold / cosmic aesthetic
   Mobile-first, fully responsive
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* === CUSTOM PROPERTIES === */
:root {
  /* Color Palette */
  --space-black:   #04060f;
  --deep-navy:     #080d1c;
  --navy:          #0c1328;
  --indigo-dark:   #111c3a;
  --indigo:        #182045;
  --indigo-mid:    #1e2d5e;
  --indigo-light:  #263870;

  --gold:          #c9a84c;
  --gold-bright:   #e8c86a;
  --gold-pale:     #f5e4a8;
  --gold-glow:     rgba(201, 168, 76, 0.18);
  --gold-glow-lg:  rgba(201, 168, 76, 0.08);

  --white:         #ffffff;
  --text-primary:  #f0ecdf;
  --text-secondary:#d0ccde;
  --text-muted:    #9896ad;
  --text-dim:      #6a687e;

  --glass-bg:      rgba(255, 255, 255, 0.04);
  --glass-border:  rgba(255, 255, 255, 0.08);
  --glass-hover:   rgba(255, 255, 255, 0.07);

  --indigo-glow:   rgba(56, 80, 200, 0.15);
  --blue-glow:     rgba(80, 120, 255, 0.12);

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Typography */
  --font-display: 'Cinzel', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Sizing */
  --max-width:  1100px;
  --nav-height: 72px;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:   240ms;
}

/* === RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--space-black);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover { color: var(--gold-bright); }

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

ul, ol { list-style: none; }

/* === BACKGROUND LAYER === */
.cosmic-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(30, 45, 94, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 80% 50% at 80% 80%, rgba(20, 30, 70, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 60%, rgba(15, 20, 55, 0.5) 0%, transparent 60%),
    var(--space-black);
}

.cosmic-texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('cosmic-field.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  pointer-events: none;
}

.sacred-geo-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(800px, 80vmin);
  height: min(800px, 80vmin);
  z-index: -1;
  background: url('sacred-geometry.png') center / contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

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

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(4, 6, 15, 0.95) 0%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--duration) var(--ease);
}

.nav.scrolled {
  background: rgba(4, 6, 15, 0.96);
  border-bottom-color: var(--glass-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}

.nav-logo-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

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

.nav-link--book {
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}

.nav-link--book:hover {
  background: var(--gold);
  color: var(--space-black);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--space-black);
  background: var(--gold);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease-spring);
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--gold-bright);
  color: var(--space-black);
  transform: translateY(-1px);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-lg) var(--space-3xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('desktop-hero.jpeg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(24, 32, 69, 0.7) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(4, 6, 15, 0.95) 0%, transparent 60%),
    linear-gradient(180deg, rgba(4,6,15,0.2) 0%, rgba(4,6,15,0.6) 100%);
}

/* Sacred geometry rings */
.hero-rings {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.08);
  animation: ring-pulse 8s ease-in-out infinite;
}

.ring-1 { width: 300px; height: 300px; animation-delay: 0s; }
.ring-2 { width: 500px; height: 500px; animation-delay: 1.5s; border-color: rgba(201, 168, 76, 0.05); }
.ring-3 { width: 720px; height: 720px; animation-delay: 3s; border-color: rgba(201, 168, 76, 0.03); }
.ring-4 { width: 960px; height: 960px; animation-delay: 4.5s; border-color: rgba(201, 168, 76, 0.02); }

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: var(--space-xl);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dot-pulse 2.5s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.hero-headline .gold { color: var(--gold); }

.hero-subhead {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease),
    transform var(--duration) var(--ease-spring),
    box-shadow var(--duration) var(--ease);
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
  pointer-events: none;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  font-size: 16px;
  padding: 18px 40px;
  color: var(--space-black);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  box-shadow: 0 0 40px var(--gold-glow), 0 4px 20px rgba(0,0,0,0.4);
}

.btn-primary:hover {
  color: var(--space-black);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 60px rgba(201,168,76,0.35), 0 8px 30px rgba(0,0,0,0.5);
}

.btn-secondary {
  font-size: 14px;
  padding: 14px 28px;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.btn-secondary:hover {
  color: var(--gold-bright);
  border-color: rgba(201, 168, 76, 0.7);
  background: var(--gold-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  font-size: 14px;
  padding: 12px 24px;
  color: var(--text-secondary);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--glass-hover);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 17px;
  padding: 20px 48px;
}

.btn-arrow::after {
  content: ' →';
  font-size: 1.1em;
  background: none;
  position: static;
  opacity: 1;
}

/* === HERO SCROLL HINT === */
.scroll-hint {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: fade-up 1s var(--ease) 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold) 60%, transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === WHAT IS THIS SECTION === */
.what-section {
  position: relative;
  padding: var(--space-3xl) 0;
  text-align: center;
  background: rgba(4, 6, 15, 0.5);
}

.what-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 50%, rgba(12, 19, 40, 0.7) 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.what-section .container {
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.section-body {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.8;
  color: var(--text-primary);
  max-width: 680px;
  margin: 0 auto;
}

/* === SIGNAL TYPES GRID === */
.signals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.signal-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 0 0 var(--space-xl);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.signal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.signal-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  background: var(--glass-hover);
}

.signal-card:hover::before { opacity: 1; }

.signal-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-bottom: var(--space-lg);
}

.signal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.signal-card:hover .signal-card-image img {
  transform: scale(1.04);
}

.signal-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 0 var(--space-lg) var(--space-xs);
  text-transform: uppercase;
}

.signal-subtitle {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 var(--space-lg) var(--space-md);
}

.signal-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-primary);
  opacity: 0.88;
  margin: 0 var(--space-lg);
}

/* === DIVIDER === */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--space-xl) auto;
}

/* === TRAILER SECTION === */
.trailer-section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.trailer-inner {
  max-width: 860px;
  margin: 0 auto;
}

.trailer-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--indigo-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 80px rgba(0,0,0,0.6), 0 0 40px var(--indigo-glow);
}

.trailer-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.trailer-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  background: linear-gradient(135deg, var(--indigo-dark), var(--navy));
}

.trailer-placeholder-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 2px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.trailer-placeholder-text {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trailer-caption {
  text-align: center;
  margin-top: var(--space-lg);
}

.trailer-caption p {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* === ABOUT SECTION === */
.about-section {
  padding: var(--space-3xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.about-body {
  font-size: 19px;
  line-height: 1.85;
  color: var(--text-primary);
}

.about-body p + p {
  margin-top: var(--space-md);
}

.about-visual {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--indigo-dark);
  border: 1px solid var(--glass-border);
}

/* Rick Broider portrait photo */
.about-image-frame--portrait {
  aspect-ratio: 2/3;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow:
    0 0 60px rgba(201, 168, 76, 0.08),
    0 0 100px rgba(56, 80, 200, 0.15),
    0 30px 80px rgba(0,0,0,0.5);
  overflow: hidden;
}

.about-image-frame--portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.95;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.about-image-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: transparent;
  box-shadow: 0 0 60px var(--gold-glow-lg), 0 0 120px var(--indigo-glow);
  pointer-events: none;
}

/* Book badge */
.book-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: calc(-1 * var(--space-lg));
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transform: translateX(-20px);
  white-space: nowrap;
}

.book-badge-icon { font-size: 24px; }

.book-badge-text {
  font-size: 13px;
}

.book-badge-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 2px;
}

.book-badge-sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* === TESTIMONIAL === */
.testimonial-section {
  padding: var(--space-3xl) 0;
  position: relative;
  text-align: center;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(30, 45, 94, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial-quote {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-2xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: var(--space-xl);
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 25px);
  font-style: italic;
  line-height: 1.75;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.testimonial-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.testimonial-name {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* === QUIZ CTA SECTION === */
.quiz-cta-section {
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
}

.quiz-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-2xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.quiz-cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.quiz-cta-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.quiz-cta-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.quiz-cta-body {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.quiz-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.quiz-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px;
  color: var(--text-muted);
}

.quiz-meta-icon { font-size: 16px; }

/* === FAQ === */
.faq-section {
  padding: var(--space-3xl) 0;
}

.faq-list {
  max-width: 720px;
  margin: var(--space-2xl) auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: var(--space-md);
  transition: color var(--duration) var(--ease);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease), background var(--duration) var(--ease);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-glow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 0 var(--space-lg);
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* === BOOK FRAME === */
.book-frame-section {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--glass-border);
}

.book-frame-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.book-frame-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xl);
}

.book-frame-body {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.book-frame-closing {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--glass-border);
}

/* === POST-TRAILER CTA === */
.post-trailer-cta {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
}

.post-trailer-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.post-trailer-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.post-trailer-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: 0.04em;
}

.post-trailer-body {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.post-trailer-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* === GIFTED TRANSMISSION === */
.gift-section {
  padding: var(--space-2xl) 0;
  text-align: center;
}

.gift-inner {
  max-width: 600px;
  margin: 0 auto;
}

.gift-text {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.gift-form-wrap {
  max-width: 480px;
  margin: 0 auto;
}

.gift-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.gift-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color var(--duration) var(--ease);
  resize: vertical;
  box-sizing: border-box;
}

.gift-input::placeholder {
  color: var(--text-muted);
}

.gift-input:focus {
  outline: none;
  border-color: rgba(212,175,55,0.45);
}

.gift-textarea {
  min-height: 80px;
}

.gift-submit {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 11px 20px;
  cursor: pointer;
  transition: color var(--duration) var(--ease), border-color var(--duration) var(--ease);
  align-self: center;
}

.gift-submit:hover {
  color: var(--text-secondary);
  border-color: rgba(212,175,55,0.3);
}

.gift-confirm {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gold);
  text-align: center;
  margin-top: var(--space-md);
  min-height: 24px;
}

/* === FOOTER === */
.footer {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--glass-border);
  position: relative;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}

.footer-link {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.footer-link:hover { color: var(--gold); }

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ============================================================
   QUIZ PAGE
   ============================================================ */

.quiz-page-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-xl);
  text-align: center;
  overflow: hidden;
}

.quiz-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.quiz-page-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-page-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

.quiz-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.quiz-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.quiz-trust-icon { font-size: 14px; }

/* === PROGRESS BAR === */
.progress-container {
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  background: rgba(4, 6, 15, 0.95);
  backdrop-filter: blur(12px);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--glass-border);
}

.progress-track {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.progress-bar-bg {
  flex: 1;
  height: 4px;
  background: var(--indigo-dark);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 100px;
  transition: width 0.4s var(--ease);
}

.progress-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

/* === QUIZ BODY === */
.quiz-body {
  min-height: calc(100svh - var(--nav-height) - 280px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  /* Offset for sticky progress bar so scrollIntoView doesn't hide content behind it */
  scroll-margin-top: calc(var(--nav-height) + 60px);
}

.quiz-card {
  width: 100%;
  max-width: 660px;
  animation: fade-up 0.4s var(--ease) both;
}

.question-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: block;
}

.question-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}

.answer-instruction {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  display: block;
}

.answers-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.answer-btn {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition:
    border-color var(--duration) var(--ease),
    background var(--duration) var(--ease),
    transform var(--duration) var(--ease-spring),
    box-shadow var(--duration) var(--ease);
  width: 100%;
  font-family: var(--font-body);
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.55;
  min-height: 60px;
  position: relative;
}

.answer-btn:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.answer-btn:active {
  transform: scale(0.98);
}

.answer-btn.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  box-shadow: 0 0 20px var(--gold-glow);
}

.answer-indicator {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--duration) var(--ease);
  font-family: var(--font-display);
}

.answer-btn.selected .answer-indicator {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--space-black);
}

/* === QUIZ COMPLETION === */
.quiz-completing {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  gap: var(--space-lg);
}

.quiz-completing.active { display: flex; }

.completing-spinner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  border-top-color: var(--gold);
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.completing-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
}

.completing-subtitle {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text-secondary);
}

/* ============================================================
   RESULT PAGE
   ============================================================ */

.result-page {
  min-height: 100svh;
}

.result-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
  text-align: center;
  overflow: hidden;
}

.result-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(24, 32, 69, 0.6) 0%, transparent 70%);
  pointer-events: none;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}

.result-type-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.result-tagline {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  line-height: 1.5;
  color: var(--gold);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.result-archetype-image {
  max-width: 480px;
  margin: 0 auto var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(212,175,55,0.12), 0 24px 64px rgba(0,0,0,0.5);
}

.archetype-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.result-share-prompt {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

/* === RESULT CONTENT === */
.result-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-3xl);
}

.result-section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-xl);
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
}

.result-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.result-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: block;
}

.result-section-text {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.8;
  color: var(--text-primary);
}

.result-section-text p + p {
  margin-top: var(--space-md);
}

/* Shadow section has different accent */
.result-section.shadow-section::before {
  background: linear-gradient(180deg, rgba(150, 100, 200, 0.8), transparent);
}

.result-section.shadow-section .result-section-label {
  color: rgba(180, 130, 255, 0.9);
}

/* === NEXT STEPS === */
.result-next-steps {
  margin-top: var(--space-xl);
}

.next-steps-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.next-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}

.next-step-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: var(--glass-hover);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.next-step-icon { font-size: 28px; }

.next-step-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.next-step-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* === SHARE SECTION === */
.share-section {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.share-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.share-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.share-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.share-body {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

.share-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-secondary);
}

.share-btn:hover {
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
  transform: translateY(-1px);
}

.share-btn--primary {
  background: var(--gold-glow);
  border-color: rgba(201,168,76,0.35);
  color: var(--gold);
}

.share-btn--primary:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.result-retake {
  text-align: center;
  margin-top: var(--space-lg);
}

.result-retake a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.result-retake a:hover { color: var(--text-secondary); }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fade-up {
  animation: fade-up 0.7s var(--ease) both;
}

.animate-fade-up.delay-1 { animation-delay: 0.15s; }
.animate-fade-up.delay-2 { animation-delay: 0.3s; }
.animate-fade-up.delay-3 { animation-delay: 0.45s; }
.animate-fade-up.delay-4 { animation-delay: 0.6s; }

/* ============================================================
   UTILITIES
   ============================================================ */

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

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

/* ============================================================
   MOBILE — max 768px
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --space-3xl: 64px;
    --space-4xl: 80px;
  }

  body { font-size: 17px; }

  .nav-link { display: none; }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    padding-bottom: var(--space-2xl);
  }

  .ring-3, .ring-4 { display: none; }

  .hero-headline { font-size: clamp(32px, 8vw, 48px); }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .signals-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-visual { order: -1; }

  .about-image-frame { aspect-ratio: 3/2; }
  /* Portrait frame keeps a vertical crop on mobile */
  .about-image-frame--portrait { aspect-ratio: 4/3; }

  .book-badge {
    position: static;
    transform: none;
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    justify-content: center;
  }

  .next-steps-grid {
    grid-template-columns: 1fr;
  }

  .result-section {
    padding: var(--space-lg);
  }

  .share-section {
    padding: var(--space-lg);
  }

  .quiz-trust-row {
    gap: var(--space-md);
  }

  .footer-links { gap: var(--space-md); }
}

/* === HERO IDENTITY TAGS === */
.hero-identity-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: var(--space-xl);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-identity-tags .tag-dot {
  color: var(--gold);
  opacity: 0.5;
}

.hero-subhead--kicker {
  margin-top: var(--space-md);
  margin-bottom: var(--space-xl);
  font-size: clamp(18px, 2.2vw, 23px);
  color: var(--text-primary);
}

.hero-trailer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(184, 180, 200, 0.2);
  transition: color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.hero-trailer-link:hover {
  color: var(--gold);
  border-bottom-color: rgba(201, 168, 76, 0.4);
}

.trailer-link-icon {
  font-size: 16px;
}

/* === TRAILER INTRO TEXT === */
.trailer-intro {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: -var(--space-md);
}

/* === HTML5 AUDIO PLAYER === */
.audio-player {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  background: linear-gradient(135deg, var(--indigo-dark) 0%, var(--navy) 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 80px rgba(0,0,0,0.6),
    0 0 40px var(--indigo-glow),
    0 2px 0 rgba(201,168,76,0.15) inset;
}

.audio-player::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.5) 50%, transparent 100%);
}

.audio-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 0 30px var(--gold-glow),
    0 4px 20px rgba(0,0,0,0.5);
  transition:
    transform var(--duration) var(--ease-spring),
    box-shadow var(--duration) var(--ease);
  color: var(--space-black);
}

.audio-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 50px rgba(201,168,76,0.45), 0 8px 30px rgba(0,0,0,0.5);
}

.audio-play-btn svg {
  width: 28px;
  height: 28px;
}

.audio-body {
  flex: 1;
  min-width: 0;
}

.audio-track-info {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-md);
}

.audio-track-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.audio-track-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 2px;
}

.audio-track-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* Waveform animation */
.audio-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
  margin-bottom: var(--space-md);
}

.wv-bar {
  display: inline-block;
  width: 3px;
  border-radius: 2px;
  background: rgba(201, 168, 76, 0.25);
  animation: wv-idle 2s ease-in-out infinite;
  transform-origin: center;
}

.wv-bar:nth-child(1)  { height: 12px; animation-delay: 0.00s; }
.wv-bar:nth-child(2)  { height: 20px; animation-delay: 0.08s; }
.wv-bar:nth-child(3)  { height: 28px; animation-delay: 0.16s; }
.wv-bar:nth-child(4)  { height: 18px; animation-delay: 0.24s; }
.wv-bar:nth-child(5)  { height: 24px; animation-delay: 0.32s; }
.wv-bar:nth-child(6)  { height: 14px; animation-delay: 0.40s; }
.wv-bar:nth-child(7)  { height: 30px; animation-delay: 0.48s; }
.wv-bar:nth-child(8)  { height: 22px; animation-delay: 0.56s; }
.wv-bar:nth-child(9)  { height: 16px; animation-delay: 0.64s; }
.wv-bar:nth-child(10) { height: 26px; animation-delay: 0.72s; }
.wv-bar:nth-child(11) { height: 20px; animation-delay: 0.80s; }
.wv-bar:nth-child(12) { height: 32px; animation-delay: 0.88s; }
.wv-bar:nth-child(13) { height: 18px; animation-delay: 0.96s; }
.wv-bar:nth-child(14) { height: 24px; animation-delay: 1.04s; }
.wv-bar:nth-child(15) { height: 14px; animation-delay: 1.12s; }
.wv-bar:nth-child(16) { height: 28px; animation-delay: 1.20s; }
.wv-bar:nth-child(17) { height: 16px; animation-delay: 1.28s; }
.wv-bar:nth-child(18) { height: 20px; animation-delay: 1.36s; }

@keyframes wv-idle {
  0%, 100% { transform: scaleY(0.5); opacity: 0.25; }
  50%       { transform: scaleY(1);   opacity: 0.5; }
}

.audio-player.playing .wv-bar {
  background: var(--gold);
  animation: wv-play 0.7s ease-in-out infinite;
}

@keyframes wv-play {
  0%, 100% { transform: scaleY(0.2); }
  50%       { transform: scaleY(1); }
}

/* Timeline */
.audio-timeline {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.audio-time {
  font-size: 13px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  line-height: 1;
}

.audio-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.audio-progress-track:hover {
  height: 6px;
}

.audio-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-bright) 0%, var(--gold) 100%);
  border-radius: 2px;
  position: relative;
  transition: width 0.1s linear;
}

.audio-progress-fill::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-glow);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.audio-progress-track:hover .audio-progress-fill::after,
.audio-player.playing .audio-progress-fill::after {
  opacity: 1;
}

/* Audio player mobile */
@media (max-width: 640px) {
  .audio-player {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-lg);
    gap: var(--space-lg);
  }

  .audio-play-btn {
    width: 60px;
    height: 60px;
  }

  .audio-waveform { display: none; }
}

/* Mobile-specific hero override: intentional layout */
@media (max-width: 600px) {
  .hero {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding-top: calc(var(--nav-height) + 48px);
  }

  .hero-content {
    max-width: 100%;
    text-align: left;
  }

  .hero-badge {
    font-size: 11px;
    margin-bottom: var(--space-lg);
  }

  .hero-subhead {
    text-align: left;
    margin: 0 0 var(--space-md);
  }

  .hero-subhead--kicker {
    text-align: left;
    margin: 0 0 var(--space-lg);
  }

  .hero-identity-tags {
    justify-content: flex-start;
    margin-bottom: var(--space-lg);
  }

  .hero-actions {
    align-items: flex-start;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .testimonial-quote { padding: var(--space-xl) var(--space-lg); }
  .quiz-cta-inner { padding: var(--space-xl) var(--space-lg); }
  .result-hero { padding-top: calc(var(--nav-height) + var(--space-2xl)); }
}

/* ============================================================
   TESTIMONIAL CAROUSEL (infinite scroll, two rows)
   ============================================================ */

.testimonial-section-sub {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.carousel-mask {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Soft fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.carousel-track {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.carousel-row {
  display: flex;
  width: max-content;
  gap: var(--space-md);
}

.carousel-row--1 {
  animation: carousel-left 60s linear infinite;
}

.carousel-row--2 {
  animation: carousel-right 55s linear infinite;
}

@keyframes carousel-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes carousel-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.carousel-mask:hover .carousel-row {
  animation-play-state: paused;
}

.tc-card {
  flex-shrink: 0;
  width: clamp(280px, 32vw, 360px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
  position: relative;
}

.tc-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 18px;
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  pointer-events: none;
}

.tc-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.tc-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-primary);
  flex: 1;
  padding-top: var(--space-sm);
}

.tc-attr {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-sm);
}

/* ============================================================
   QUIZ BACK BUTTON
   ============================================================ */

.quiz-back-row {
  margin-bottom: var(--space-md);
}

.quiz-back-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--duration) var(--ease);
}

.quiz-back-btn:hover {
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .tc-card {
    width: clamp(220px, 72vw, 300px);
  }

  .carousel-row--1 { animation-duration: 40s; }
  .carousel-row--2 { animation-duration: 36s; }
}

/* ============================================================
   TESTIMONIAL SUBMISSION FORM
   ============================================================ */

.tsubmit-section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.tsubmit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(30, 45, 94, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.tsubmit-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tsubmit-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--text-primary);
  margin: var(--space-sm) 0 var(--space-md);
  letter-spacing: 0.02em;
}

.tsubmit-body {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.tsubmit-body em {
  font-style: italic;
  color: var(--gold-pale);
}

.tsubmit-form-wrap {
  text-align: left;
}

.tsubmit-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tsubmit-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.tsubmit-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tsubmit-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tsubmit-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  opacity: 0.7;
}

.tsubmit-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
  box-sizing: border-box;
}

.tsubmit-input::placeholder {
  color: var(--text-dim);
}

.tsubmit-input:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.tsubmit-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239896ad' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.tsubmit-select option {
  background: var(--deep-navy);
  color: var(--text-primary);
}

.tsubmit-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.65;
}

.tsubmit-consent {
  margin-top: var(--space-xs);
}

.tsubmit-consent-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.tsubmit-checkbox {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}

.tsubmit-consent-label span {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.tsubmit-consent-label span em {
  font-style: italic;
  color: var(--text-secondary);
}

.tsubmit-btn {
  align-self: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-navy);
  background: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 36px;
  cursor: pointer;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
  margin-top: var(--space-sm);
}

.tsubmit-btn:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.tsubmit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.tsubmit-error {
  font-family: var(--font-body);
  font-size: 13px;
  color: #e07070;
  text-align: center;
  margin-top: var(--space-sm);
}

.tsubmit-confirm {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
}

.tsubmit-confirm-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--gold-pale);
  margin-bottom: var(--space-sm);
}

.tsubmit-confirm-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .tsubmit-row--2col {
    grid-template-columns: 1fr;
  }

  .tsubmit-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   HERO — TWO-COLUMN DESKTOP LAYOUT
   ============================================================ */

/* Image column hidden on mobile — single column default */
.hero-text-col {
  width: 100%;
}

.hero-image-col {
  display: none;
}

@media (min-width: 900px) {
  /* Switch hero to two-column grid */
  .hero {
    text-align: left;
    align-items: center;
    justify-content: flex-start;
    min-height: 100svh;
    /* Tighter vertical padding keeps CTAs in viewport */
    padding-top: calc(var(--nav-height) + var(--space-md));
    padding-bottom: var(--space-xl);
  }

  .hero-content {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
  }

  .hero-text-col {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Smaller headline on desktop — keeps CTAs above fold */
  .hero-headline {
    font-size: clamp(32px, 3.8vw, 52px);
    margin-bottom: var(--space-md);
  }

  /* Tighter badge spacing */
  .hero-badge {
    margin-bottom: var(--space-md);
  }

  /* Relax max-width constraints that assumed centered single col */
  .hero-subhead {
    margin-left: 0;
    margin-right: 0;
    max-width: 540px;
    margin-bottom: var(--space-md);
  }

  /* Second subhead redundant when image is present on desktop */
  .hero-subhead--kicker {
    display: none;
  }

  /* Tighten identity tags and actions spacing */
  .hero-identity-tags {
    margin-bottom: var(--space-md);
  }

  .hero-actions {
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .hero-identity-tags {
    justify-content: flex-start;
  }

  /* Show image column */
  .hero-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Stretch column to match hero height */
    align-self: stretch;
  }

  .hero-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-journey-img {
    width: 100%;
    max-width: 100%;
    /* Cap height at viewport so it never overflows */
    max-height: calc(100svh - var(--nav-height) - var(--space-2xl));
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    object-fit: contain;
    box-shadow:
      0 32px 80px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(255, 255, 255, 0.06);
  }

  /* Ambient gold glow behind the image */
  .hero-image-glow {
    position: absolute;
    inset: -15%;
    background: radial-gradient(ellipse 80% 70% at 50% 55%, rgba(201, 168, 76, 0.14) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    filter: blur(20px);
  }
}

@media (min-width: 900px) and (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 56fr 44fr;
    gap: var(--space-xl);
  }
}
