/*
 * THE ONE PATTERN — Component Library
 * All reusable UI components for all 4 pages
 * Requires: variables.css loaded first
 * ─────────────────────────────────────────────
 * Component index:
 *   1.  Layout containers
 *   2.  Dividers
 *   3.  Labels
 *   4.  Headlines
 *   5.  CTA Buttons
 *   6.  Cards
 *   7.  Feature lines
 *   8.  Pull quotes
 *   9.  Insight boxes
 *  10.  HUD elements
 *  11.  Sacred geometry symbol
 *  12.  VSL / video container
 *  13.  Book preview
 *  14.  Book mockup (3D CSS)
 *  15.  Price display
 *  16.  FAQ accordion
 *  17.  Form elements
 *  18.  Footer
 *  19.  Decline link
 *  20.  Utility classes
 */


/* ═══════════════════════════════════════════════════════════════
   1. LAYOUT CONTAINERS
═══════════════════════════════════════════════════════════════ */

.container {
  width: 100%;
  max-width: var(--max-width-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--wide {
  max-width: var(--max-width-wide);
}

.container--opt-in {
  max-width: var(--max-width-opt-in);
}

.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.section--tight {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

/* Hero sits flush at top — no top padding */
.section--hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-20);
  position: relative;
  overflow: hidden;
  text-align: center;
}


/* ═══════════════════════════════════════════════════════════════
   2. DIVIDERS
   Diamond ◆ with thin flanking lines — never plain <hr>
═══════════════════════════════════════════════════════════════ */

.divider {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin: var(--space-12) auto;
  max-width: 320px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to var(--_dir, right),
    transparent,
    var(--gold-dim)
  );
}

.divider::before { --_dir: right; }
.divider::after  { --_dir: left;  }

.divider__gem {
  color: var(--gold-dim);
  font-size: 9px;
  letter-spacing: 12px;
  user-select: none;
  flex-shrink: 0;
}

/* Shorthand: <div class="divider"><span class="divider__gem">◆</span></div> */

/* Alternate — three gems, wider spread */
.divider--wide {
  max-width: 480px;
  margin: var(--space-16) auto;
}

.divider--wide .divider__gem {
  letter-spacing: 20px;
}


/* ═══════════════════════════════════════════════════════════════
   3. LABELS
═══════════════════════════════════════════════════════════════ */

/* Green mono label — used above hero headlines and section openers */
.label-small {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  opacity: 0.85;
  margin-bottom: var(--space-5);
}

/* Gold dim label — price context, secondary callouts */
.label-dim {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

/* Gold label — used on section pre-headlines */
.label-gold {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gold-dim);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  margin-bottom: var(--space-4);
}


/* ═══════════════════════════════════════════════════════════════
   4. HEADLINES
═══════════════════════════════════════════════════════════════ */

.headline-display {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.headline-page {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--gold-light);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
}

.headline-section {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-primary);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-8);
}

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

.subheadline {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: var(--max-width-narrow);
  margin-left: auto;
  margin-right: auto;
}

.body-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  letter-spacing: 0.01em;
  max-width: var(--max-width-content);
  margin-left: auto;
  margin-right: auto;
}

.body-text p + p {
  margin-top: var(--space-6);
}

.body-text strong,
.body-text b {
  color: var(--text-primary);
  font-weight: bold;
}

/* Bold key statement — Lora-style bold line */
.key-statement {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: bold;
  color: var(--text-primary);
  line-height: var(--leading-normal);
  margin: var(--space-8) auto;
  max-width: var(--max-width-content);
}

/* Mobile responsive headlines */
@media (max-width: 767px) {
  .headline-display  { font-size: var(--text-3xl-mobile); }
  .headline-page     { font-size: var(--text-2xl-mobile); }
  .headline-section  { font-size: var(--text-xl-mobile); }
  .subheadline       { font-size: var(--text-base); }
}


/* ═══════════════════════════════════════════════════════════════
   5. CTA BUTTONS
═══════════════════════════════════════════════════════════════ */

/* ── Primary — gold shimmer with brutalist corner accents ── */
.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  background-size: 200% 100%;
  color: #0A0A08;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: bold;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 20px 48px;
  border: none;
  cursor: pointer;
  position: relative;
  width: 100%;
  max-width: var(--max-width-cta);

  /* Shimmer — always running, never stops */
  animation: shimmer 3s ease-in-out infinite;
  transition: filter var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}

.cta-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #0A0A08;
}

.cta-primary:active {
  transform: translateY(0);
  filter: brightness(0.95);
}

/* Brutalist corner accents — dark notch at each corner */
.cta-primary::before,
.cta-primary::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--bg-primary);
  border-style: solid;
  pointer-events: none;
}

.cta-primary::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.cta-primary::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

/* Wrapper — centers the button and constrains width on desktop */
.cta-wrap {
  display: flex;
  justify-content: center;
  padding: var(--space-10) var(--section-padding-x);
}

/* ── Secondary — dim border, no shimmer ── */
/* Understated gold CTA — same shimmer, narrower + less padding */
.cta-mid {
  display: inline-block;
  background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  background-size: 200% 100%;
  color: #0A0A08;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  animation: shimmer 3s ease-in-out infinite;
  transition: filter var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}

.cta-mid:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #0A0A08;
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold-dim);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 16px 40px;
  border: 1px solid var(--gold-dim);
  cursor: pointer;
  position: relative;
  width: 100%;
  max-width: var(--max-width-cta);
  transition: border-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.cta-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* ── Shimmer keyframe ── */
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}


/* ═══════════════════════════════════════════════════════════════
   6. CARDS
   Dark bg, gold left border, top-left corner bracket
═══════════════════════════════════════════════════════════════ */

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-left: var(--border-width-accent) solid var(--gold-primary);
  padding: var(--space-8) var(--space-10);
  position: relative;
  box-shadow: var(--shadow-card);
}

/* Top-left corner bracket */
.card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--gold-light);
  border-left: 2px solid var(--gold-light);
  pointer-events: none;
}

.card + .card {
  margin-top: var(--space-6);
}

/* Card with icon row */
.card__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  margin-bottom: var(--space-4);
}

.card__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--accent-green);
  font-size: 11px;
  opacity: 0.8;
}

.card__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: bold;
  color: var(--text-primary);
  line-height: var(--leading-snug);
}

.card__body {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* Card label — mono green above title */
.card__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  opacity: 0.85;
  margin-bottom: var(--space-3);
}

@media (max-width: 767px) {
  .card {
    padding: var(--space-6) var(--space-6);
  }
}


/* ═══════════════════════════════════════════════════════════════
   7. FEATURE LINES
   Gold left border, flex layout — used on free.html and index.html
═══════════════════════════════════════════════════════════════ */

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.feature-line {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding-left: var(--space-5);
  border-left: var(--border-width-accent) solid var(--gold-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.feature-line__gem {
  flex-shrink: 0;
  color: var(--gold-primary);
  font-size: 13px;
  margin-top: 4px;
}

.feature-line__title {
  color: var(--text-primary);
  font-weight: bold;
}

/* Arrow list variant — used for "This is for you if" sections */
.arrow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin: var(--space-8) 0;
}

.arrow-list li {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  padding-left: var(--space-8);
  position: relative;
}

.arrow-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-family: var(--font-mono);
}

/* Cross list — "Not for you if" */
.cross-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: var(--space-8) 0;
}

.cross-list li {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-dim);
  line-height: var(--leading-relaxed);
  padding-left: var(--space-8);
  position: relative;
}

.cross-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--text-dim);
}


/* ═══════════════════════════════════════════════════════════════
   8. PULL QUOTES
   Cormorant italic, gold left border
═══════════════════════════════════════════════════════════════ */

.pull-quote {
  border-left: var(--border-width-accent) solid var(--gold-primary);
  padding: var(--space-6) var(--space-8);
  margin: var(--space-12) auto;
  max-width: var(--max-width-narrow);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
}

.pull-quote--centered {
  border-left: none;
  padding-left: 0;
  text-align: center;
  font-size: var(--text-xl);
  color: var(--gold-light);
}

@media (max-width: 767px) {
  .pull-quote { font-size: var(--text-base); }
  .pull-quote--centered { font-size: var(--text-lg); }
}


/* ═══════════════════════════════════════════════════════════════
   9. INSIGHT BOXES
   Warmer bg, gold left border — used in index.html body copy
═══════════════════════════════════════════════════════════════ */

.insight-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-gold);
  border-left: var(--border-width-accent) solid var(--gold-primary);
  padding: var(--space-8) var(--space-8);
  margin: var(--space-10) auto;
  max-width: var(--max-width-content);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  position: relative;
}

.insight-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--gold-dim);
  border-left: 2px solid var(--gold-dim);
}

.insight-box strong {
  color: var(--gold-light);
  display: block;
  margin-bottom: var(--space-3);
}


/* ═══════════════════════════════════════════════════════════════
   10. BOOK MOCKUP REVEAL
═══════════════════════════════════════════════════════════════ */

.book-reveal-section {
  background: #111110;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.book-reveal-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.book-reveal-img {
  position: relative;
  z-index: 1;
  max-width: 360px;
  width: 100%;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.9)) drop-shadow(0 0 60px rgba(201,168,76,0.1));
}

@media (max-width: 768px) {
  .book-reveal-img {
    max-width: 240px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   11. SACRED GEOMETRY SYMBOL
   SVG — slow rotation, gold stroke, no fill
═══════════════════════════════════════════════════════════════ */

.symbol {
  stroke: var(--gold-primary);
  fill: none;
  opacity: 0.9;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.4));
  animation: symbol-rotate var(--duration-symbol) linear infinite;
  transform-origin: center;
}

.symbol-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: var(--z-below);
}

/* Hero background — large, faint */
.symbol-wrap--hero {
  width: min(640px, 90vw);
  height: min(640px, 90vw);
  opacity: 0.06;
}

/* Section break — small, centered */
.symbol-wrap--section {
  position: static;
  transform: none;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  opacity: 0.4;
  display: block;
}

@keyframes symbol-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Centered symbol in section break context */
.symbol-break {
  display: flex;
  justify-content: center;
  margin: var(--space-12) 0;
}

.symbol-break .symbol-wrap--section {
  display: flex;
}


/* ═══════════════════════════════════════════════════════════════
   12. VSL / VIDEO CONTAINER
   Thin gold border, corner brackets, glow on edges
═══════════════════════════════════════════════════════════════ */

.vsl-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: var(--space-10) auto var(--space-8);
}

.vsl-container {
  position: relative;
  width: 100%;
  background: #000;
  border: 1px solid rgba(201, 168, 76, 0.25);
  overflow: hidden;
}

/* Gold corner brackets on VSL */
.vsl-container::before,
.vsl-container::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold-light);
  border-style: solid;
  z-index: var(--z-raised);
  pointer-events: none;
}

.vsl-container::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.vsl-container::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

/* Also add bottom-left / top-right via inner spans */
.vsl-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold-light);
  border-style: solid;
  z-index: var(--z-raised);
  pointer-events: none;
}

.vsl-corner--tr {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.vsl-corner--bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.vsl-container iframe,
.vsl-container video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ═══════════════════════════════════════════════════════════════
   13. BOOK PREVIEW
   Cream bg, serif font, fade-out at bottom — reveal.html only
═══════════════════════════════════════════════════════════════ */

.book-preview {
  background: var(--bg-book);      /* #F0EDE0 — cream, intentional contrast */
  color: var(--text-book);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: var(--leading-loose);
  padding: var(--space-16) var(--space-20);
  position: relative;
  box-shadow: var(--shadow-book);
  max-width: var(--max-width-content);
  margin: 0 auto;
}

.book-preview__chapter-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(26, 26, 20, 0.45);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-8);
}

.book-preview__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-book);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-8);
}

.book-preview p + p {
  margin-top: var(--space-6);
}

/* Fade-out gradient at the bottom — text disappears into dark */
.book-preview__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(240, 237, 224, 0.7) 40%,
    var(--bg-book) 70%,
    var(--bg-primary) 100%
  );
  pointer-events: none;
}

/* Section wrapper for the cream reveal area */
.book-preview-section {
  background: var(--bg-primary);
  padding-bottom: 0;
  position: relative;
}

@media (max-width: 767px) {
  .book-preview {
    padding: var(--space-10) var(--space-6);
    font-size: 16px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   14. BOOK MOCKUP — 3D CSS
   Left column on reveal.html hero — pure CSS, no image needed
═══════════════════════════════════════════════════════════════ */

.book-scene {
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-10) 0;
}

.book-3d {
  width: 200px;
  height: 280px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-28deg) rotateX(4deg);
  transition: transform 0.6s var(--ease-in-out);
  animation: book-float 6s ease-in-out infinite;
}

.book-3d:hover {
  transform: rotateY(-18deg) rotateX(2deg);
}

@keyframes book-float {
  0%, 100% { transform: rotateY(-28deg) rotateX(4deg) translateY(0px); }
  50%       { transform: rotateY(-28deg) rotateX(4deg) translateY(-8px); }
}

/* Front face */
.book-3d__front {
  position: absolute;
  inset: 0;
  background: #0D0D0B;
  border: 1px solid var(--gold-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  transform: translateZ(18px);
  box-shadow:
    inset 0 0 40px rgba(201, 168, 76, 0.05),
    var(--shadow-gold-glow);
}

/* Spine */
.book-3d__spine {
  position: absolute;
  left: -18px;
  top: 0;
  width: 18px;
  height: 100%;
  background: linear-gradient(to right, #0A0906, #1A1810);
  border-left: 1px solid var(--gold-dim);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  transform: rotateY(-90deg) translateZ(9px) translateX(-9px);
  transform-origin: right center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Back face */
.book-3d__back {
  position: absolute;
  inset: 0;
  background: #0A0906;
  transform: translateZ(-18px);
  border: 1px solid rgba(138, 111, 53, 0.3);
}

/* Book cover content */
.book-3d__symbol {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-6);
  opacity: 0.8;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.5));
  animation: symbol-rotate var(--duration-symbol) linear infinite;
}

.book-3d__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.4;
}

.book-3d__subtitle {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--gold-dim);
  letter-spacing: var(--tracking-wider);
  text-align: center;
  margin-top: var(--space-2);
  text-transform: uppercase;
}

/* Gold glow beneath book */
.book-scene::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

@media (max-width: 767px) {
  .book-3d {
    width: 150px;
    height: 210px;
  }

  .book-3d__spine {
    left: -14px;
    width: 14px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   15. PRICE DISPLAY
   Large Cormorant Garamond, gold — proof.html price reveal
═══════════════════════════════════════════════════════════════ */

.price-block {
  text-align: center;
  padding: var(--space-12) var(--space-8);
  border: 1px solid var(--border-gold);
  position: relative;
  max-width: 400px;
  margin: var(--space-12) auto;
}

/* Corner accents */
.price-block::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 18px; height: 18px;
  border-top: 2px solid var(--gold-dim);
  border-left: 2px solid var(--gold-dim);
}

.price-block::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 18px; height: 18px;
  border-bottom: 2px solid var(--gold-dim);
  border-right: 2px solid var(--gold-dim);
}

.price-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  display: block;
  margin-bottom: var(--space-5);
}

.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-4);
}

.price-context {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-dim);
  line-height: var(--leading-relaxed);
}

.price-guarantee {
  font-family: var(--font-body);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--text-dim);
  margin-top: var(--space-4);
  display: block;
}

@media (max-width: 767px) {
  .price-amount { font-size: var(--text-2xl-mobile); }
}


/* ═══════════════════════════════════════════════════════════════
   16. FAQ ACCORDION
   Visible on desktop, accordion-interactive on mobile
═══════════════════════════════════════════════════════════════ */

.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-8) 0;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-left: var(--border-width-accent) solid var(--gold-dim);
  background: var(--bg-secondary);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 12px; height: 12px;
  border-top: 1px solid var(--gold-dim);
  border-left: 1px solid var(--gold-dim);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) var(--space-8);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: bold;
  color: var(--text-primary);
  line-height: var(--leading-snug);
  list-style: none;
  gap: var(--space-4);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '◈';
  flex-shrink: 0;
  color: var(--gold-dim);
  font-size: 10px;
  transition: transform var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

details[open] .faq-question::after {
  transform: rotate(45deg);
  color: var(--gold-primary);
}

.faq-answer {
  padding: 0 var(--space-8) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

@media (max-width: 767px) {
  .faq-question { padding: var(--space-5) var(--space-6); }
  .faq-answer   { padding: 0 var(--space-6) var(--space-5); }
}


/* ═══════════════════════════════════════════════════════════════
   17. FORM ELEMENTS
   ConvertKit opt-in placeholder — free.html
═══════════════════════════════════════════════════════════════ */

.form-wrap {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  padding: var(--space-8);
  max-width: var(--max-width-form);
  margin: var(--space-10) auto;
  position: relative;
}

.form-wrap::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 18px; height: 18px;
  border-top: 2px solid var(--gold-primary);
  border-left: 2px solid var(--gold-primary);
}

.form-wrap::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 18px; height: 18px;
  border-bottom: 2px solid var(--gold-primary);
  border-right: 2px solid var(--gold-primary);
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-dim);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.form-input {
  display: block;
  width: 100%;
  padding: 14px var(--space-5);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  outline: none;
  margin-bottom: var(--space-5);
  transition: border-color var(--duration-fast) var(--ease-out);
  -webkit-appearance: none;
}

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

.form-input:focus {
  border-color: var(--gold-primary);
}

/* Full-width CTA inside form */
.form-wrap .cta-primary {
  max-width: 100%;
  width: 100%;
}

.form-micro {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin-top: var(--space-5);
  line-height: var(--leading-normal);
}


/* ═══════════════════════════════════════════════════════════════
   18. FOOTER
   Minimal, mono, dark
═══════════════════════════════════════════════════════════════ */

.site-footer {
  padding: var(--space-12) var(--section-padding-x);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

.site-footer__text {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-dim);
  line-height: var(--leading-relaxed);
  letter-spacing: 0.05em;
}

.site-footer__text a {
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__text a:hover {
  color: var(--gold-dim);
}

/* ═══════════════════════════════════════════════════════════════
   19. DECLINE LINK
   Subtle text link — below secondary CTA buttons
═══════════════════════════════════════════════════════════════ */

.decline-link {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-dim);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: var(--space-6);
  transition: color var(--duration-fast);
}

.decline-link:hover {
  color: var(--text-secondary);
}


/* ═══════════════════════════════════════════════════════════════
   20. UTILITY CLASSES
═══════════════════════════════════════════════════════════════ */

/* Text alignment */
.text-center { text-align: center; }
.text-left   { text-align: left;   }

/* Visibility for animations — JS removes .js-hidden after load */
.js-hidden   { opacity: 0; }

/* Animate-on-scroll — toggled by IntersectionObserver */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children delays — applied to nth-child by JS */
.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 200ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 400ms; }
.stagger-5 { transition-delay: 500ms; }

/* Spacers */
.mt-auto { margin-top: auto; }
.mb-0    { margin-bottom: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Gold text highlight */
.text-gold  { color: var(--gold-primary); }
.text-gold-light { color: var(--gold-light); }
.text-green { color: var(--accent-green); }
.text-dim   { color: var(--text-dim); }

/* Visually hidden (accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE — global adjustments below 768px
───────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .section {
    padding-top: var(--section-padding-y-mobile);
    padding-bottom: var(--section-padding-y-mobile);
  }

  .section--hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-16);
  }

  /* CTAs go full-width on mobile — already set via width:100% on .cta-primary */
  .cta-primary,
  .cta-secondary {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
}

/* ─────────────────────────────────────────────────────────────────
   THEME TOGGLE
   Fixed top-right button — sun/moon icon swap
───────────────────────────────────────────────────────────────── */
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 80px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  background: var(--bg-secondary);
  color: var(--gold-primary);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition:
    background-color 0.4s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.theme-toggle:hover {
  background: var(--bg-tertiary);
  border-color: var(--gold-primary);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold-dim);
}

/* Icon visibility — dark mode shows moon, light mode shows sun */
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun  { display: none;  }

[data-theme="light"] .theme-toggle .icon-moon { display: none;  }
[data-theme="light"] .theme-toggle .icon-sun  { display: block; }

/* ─────────────────────────────────────────────────────────────
   MEMBER LOGIN LINK — fixed top-right, left of theme toggle
───────────────────────────────────────────────────────────── */
.member-login-link {
  position: fixed;
  top: 28px;
  right: 140px;           /* 80px toggle position + 44px width + 16px gap */
  z-index: 9999;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.member-login-link:hover {
  opacity: 1;
  color: var(--gold-primary);
}

@media (max-width: 540px) {
  .theme-toggle {
    right: 16px;
  }
  .member-login-link {
    position: absolute;
    top: 18px;
    right: auto;
    left: 16px;
    font-size: 8px;
    letter-spacing: 0.1em;
  }
}
