/* =========================================================================
   Cigarista — Marketing site styles
   Builds on assets/tokens.css. Everything below is page-specific.
   ========================================================================= */

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

html { scroll-behavior: smooth; }

body {
  background: var(--surface-black);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
  transition: background-color 1400ms ease-out;
}

/* The page bg deepens to flat black once the smoke has been scrolled
   past its end. JS controls the .intro-done toggle based on scroll. */
body.intro-done { background-color: #050300; }
body.intro-done .hero-bg { opacity: 0; }
.hero-bg { transition: opacity 1400ms ease-out; }
/* Smoke opacity is driven by JS during scrub. Short transition smooths
   the initial fade-in and any per-frame nudges. */
.hero-smoke { transition: opacity 140ms linear; }

/* Editorial body variant (tweak) */
body.font-editorial { font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif; font-size: 19px; }
body.font-editorial p, body.font-editorial li { letter-spacing: 0.005em; }

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

a { color: var(--gold-yellow); text-decoration: none; transition: opacity var(--dur-fast); }
a:hover { opacity: .8; }

::selection { background: var(--gold-yellow); color: var(--text-on-gold); }

/* ─── Type primitives ─────────────────────────────────────────────── */

.wordmark {
  font-family: var(--font-display);
  letter-spacing: var(--type-wordmark-tracking);
  color: var(--gold-yellow);
  text-transform: uppercase;
  line-height: .9;
  font-weight: 400;
}

.eyebrow {
  font: var(--type-eyebrow);
  letter-spacing: var(--type-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--text-tan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 18px; height: 1px; background: var(--gold-yellow); opacity: .55;
}
.eyebrow.no-rule::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: .92;
  color: var(--text-cream);
}

.headline-gold {
  background: var(--gradient-headline);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subhead {
  color: var(--text-tan);
  font-size: 19px;
  line-height: 1.55;
  max-width: 56ch;
  font-weight: 400;
}

/* ─── Layout ──────────────────────────────────────────────────────── */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

section { position: relative; }

/* ─── Reveal-on-scroll ────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease-smooth), transform 900ms var(--ease-smooth);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── Sticky nav ──────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--dur-slow) var(--ease-smooth),
              backdrop-filter var(--dur-slow) var(--ease-smooth),
              border-color var(--dur-slow) var(--ease-smooth);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 6, 0, .82);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: rgba(242, 191, 102, .08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 24px;
}
.nav-brand { font-size: 22px; letter-spacing: .14em; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-offwhite);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-inner { padding: 14px 20px; }
  .nav-brand { font-size: 20px; }
}
@media (max-width: 480px) {
  .nav-cta .btn-secondary { display: none; }
}

/* ─── Buttons ─────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  border: none;
  transition: transform var(--dur-fast) var(--ease-smooth),
              background var(--dur-fast) var(--ease-smooth),
              box-shadow var(--dur-fast) var(--ease-smooth);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--gold-yellow);
  color: var(--text-on-gold);
  box-shadow: 0 0 0 0 rgba(242,191,102,.0);
}
.btn-primary:hover {
  background: var(--gold-warm);
  box-shadow: var(--glow-gold);
  opacity: 1;
}
.btn-primary:active { background: var(--gold-dark); }

.btn-secondary {
  background: rgba(255,255,255,.04);
  color: var(--text-offwhite);
  border: 1px solid rgba(255,255,255,.12);
}
.btn-secondary:hover {
  background: rgba(242,191,102,.08);
  border-color: rgba(242,191,102,.4);
  color: var(--gold-yellow);
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--gold-yellow);
  padding: 8px 0;
}
.btn-ghost:hover { color: var(--gold-warm); opacity: 1; }

.btn .arrow { transition: transform var(--dur-base) var(--ease-smooth); }
.btn:hover .arrow { transform: translateX(3px); }

/* Store buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px 11px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text-offwhite);
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-smooth);
  min-width: 200px;
}
.store-btn:hover {
  background: rgba(242,191,102,.08);
  border-color: rgba(242,191,102,.4);
  transform: translateY(-1px);
  opacity: 1;
}
.store-btn .store-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--gold-yellow);
}
.store-btn .store-meta {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.store-btn .store-small { font-size: 11px; color: var(--text-tan); letter-spacing: .08em; text-transform: uppercase; }
.store-btn .store-big   { font-size: 16px; font-weight: 600; color: var(--text-offwhite); letter-spacing: .01em; }

.store-btn.primary {
  background: var(--gold-yellow);
  border-color: var(--gold-yellow);
}
.store-btn.primary:hover { background: var(--gold-warm); }
.store-btn.primary .store-icon { color: var(--text-on-gold); }
.store-btn.primary .store-small { color: rgba(0,0,0,.55); }
.store-btn.primary .store-big   { color: var(--text-on-gold); }

/* ─── Hero ────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(45, 26, 6, .9), transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(108, 76, 26, .25), transparent 70%),
    #000;
}
.hero-smoke {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200; /* over the nav */
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: hue-rotate(-8deg) saturate(1.2) contrast(1.05);
  transform: translateY(0) scale(1.05);
  will-change: opacity, transform;
}
.hero-smoke video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* Edge vignette so smoke fades into the page */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, transparent 0%, transparent 60%, rgba(0,0,0,.7) 90%, #000 100%),
    radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - 220px);
  max-width: 880px;
}
@media (max-width: 980px) {
  .hero { padding-top: 110px; padding-bottom: 60px; }
}

.hero-eyebrow {
  margin-bottom: 28px;
  font-size: 12px;
  color: var(--gold-yellow);
}
.hero-eyebrow::before { background: var(--gold-yellow); opacity: 1; width: 28px; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: .92;
  font-size: clamp(72px, 14vw, 168px);
  color: var(--text-cream);
  margin-bottom: 28px;
}
.hero-title .gold {
  background: var(--gradient-headline);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero-title .stop { display: block; }

.hero-sub {
  color: var(--text-tan);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  max-width: 58ch;
  margin-bottom: 44px;
}

.hero-stores {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  font-size: 13px;
  color: var(--text-tan);
}
.hero-trust strong { color: var(--gold-yellow); font-weight: 600; }
.hero-trust .dot { width: 4px; height: 4px; background: var(--text-tan); border-radius: 50%; opacity: .5; align-self: center; }

/* Hero phone */
.hero-phone {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 1080 / 2424;
  border-radius: 44px;
  overflow: hidden;
  border: 1.5px solid rgba(242,191,102,.22);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.5),
    0 30px 80px rgba(0,0,0,.7),
    0 0 60px rgba(242,191,102,.12);
  background: #000;
  transform: rotate(-2deg);
}
.hero-phone img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-phone::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.5));
  pointer-events: none;
}
@media (max-width: 980px) {
  .hero-phone { max-width: 280px; transform: rotate(0); }
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  left: 50%;
  top: calc(100vh - 60px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-tan);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .55;
  pointer-events: none;
}
.scroll-cue .line {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, var(--gold-yellow));
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-yellow);
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(-100%); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* ─── Section primitives ──────────────────────────────────────────── */

.section {
  padding: 140px 0;
  position: relative;
}
@media (max-width: 720px) {
  .section { padding: 90px 0; }
}

.section-head {
  margin-bottom: 80px;
  max-width: 720px;
}
.section-head .eyebrow { margin-bottom: 24px; }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: .96;
  font-size: clamp(40px, 6vw, 80px);
  color: var(--text-cream);
  margin-bottom: 24px;
}
.section-title .gold {
  background: var(--gradient-headline);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-sub {
  color: var(--text-tan);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  max-width: 60ch;
}

/* Divider with smoke wisp */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242,191,102,.25), transparent);
  margin: 0;
}

/* ─── The Scan — three-screen flow ────────────────────────────────── */

.scan-section {
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(45,26,6,.6), transparent 70%),
    linear-gradient(180deg, #000 0%, #050300 100%);
}

.scan-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .scan-flow { grid-template-columns: 1fr; gap: 48px; }
}

.scan-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.scan-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  position: relative;
  cursor: pointer;
  transition: opacity var(--dur-base) var(--ease-smooth);
}
.scan-step:last-child { border-bottom: 1px solid rgba(255,255,255,.05); }
.scan-step.active { opacity: 1; }
.scan-step:not(.active) { opacity: .35; }
.scan-step .step-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold-yellow);
  line-height: 1;
  width: 44px;
  flex-shrink: 0;
}
.scan-step .step-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text-cream);
  margin-bottom: 8px;
  line-height: 1.05;
}
.scan-step .step-body p {
  color: var(--text-tan);
  font-size: 15px;
  line-height: 1.55;
}
.scan-step.active .step-num { color: var(--gold-warm); }

/* Phone stack */
.scan-phone-stack {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 1080 / 2424;
}
.scan-phone {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  overflow: hidden;
  border: 1.5px solid rgba(242,191,102,.22);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.5),
    0 30px 80px rgba(0,0,0,.7),
    0 0 80px rgba(242,191,102,.18);
  background: #000;
  opacity: 0;
  transform: translateY(20px) scale(.98);
  transition: opacity 500ms var(--ease-smooth), transform 500ms var(--ease-smooth);
}
.scan-phone.active {
  opacity: 1;
  transform: none;
}
.scan-phone img,
.scan-phone video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  object-position: center top;
}

/* ─── Pillar features (Humidor / Wishlist / Ledger) ───────────────── */

.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 160px;
}
.pillar:last-child { margin-bottom: 0; }
.pillar.reverse { direction: rtl; }
.pillar.reverse > * { direction: ltr; }
@media (max-width: 980px) {
  .pillar { grid-template-columns: 1fr; gap: 48px; margin-bottom: 100px; direction: ltr; }
}

.pillar-copy .eyebrow { margin-bottom: 20px; }

/* Free / Premium tier pill, sits inline at the end of a pillar eyebrow. */
.tier-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 3px 9px 4px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans, inherit);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1;
  vertical-align: 1px;
}
.tier-badge.free {
  background: var(--gold-yellow);
  color: var(--text-on-gold);
  box-shadow: 0 0 0 1px rgba(242,191,102,.0), 0 4px 18px -8px rgba(242,191,102,.55);
}
.tier-badge.premium {
  background: rgba(242,191,102,.08);
  border: 1px solid rgba(242,191,102,.45);
  color: var(--gold-yellow);
  padding: 2px 8px 3px;
}

.pillar-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: .96;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--text-cream);
  margin-bottom: 20px;
}

.pillar-sub {
  color: var(--text-tan);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 48ch;
}

.pillar-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.pillar-bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text-offwhite);
  font-size: 16px;
  line-height: 1.5;
}
.pillar-bullets li .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(242,191,102,.12);
  color: var(--gold-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pillar-bullets strong { color: var(--gold-yellow); font-weight: 600; }

.pillar-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1080 / 2424;
  border-radius: 44px;
  overflow: hidden;
  border: 1.5px solid rgba(242,191,102,.22);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.5),
    0 40px 100px rgba(0,0,0,.7),
    0 0 80px rgba(242,191,102,.12);
  background: #000;
}
.phone-frame img,
.phone-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Gold bloom behind a phone */
.bloom {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(circle at center, rgba(242,191,102,.22), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* ─── Stats strip ─────────────────────────────────────────────────── */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(242,191,102,.18);
  border: 1px solid rgba(242,191,102,.18);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-image: var(--wash-gold-soft);
}
.stats-strip .stat {
  padding: 32px 24px;
  background: rgba(15, 6, 0, .82);
  text-align: center;
}
.stats-strip .stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--gold-yellow);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.stats-strip .stat-label {
  font: var(--type-eyebrow);
  letter-spacing: var(--type-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--text-tan);
}
@media (max-width: 720px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Coming soon grid ────────────────────────────────────────────── */

.coming-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
}
@media (max-width: 980px) {
  .coming-grid { grid-template-columns: 1fr; }
}

.coming-card {
  background: var(--surface-gray);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: var(--radius-2xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.coming-card.featured {
  background: linear-gradient(160deg, #1d1309 0%, #0c0600 100%);
  border: 1px solid rgba(242,191,102,.22);
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.coming-card.featured::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(242,191,102,.2), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.coming-card > * { position: relative; z-index: 1; }

.coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  background: rgba(242,191,102,.08);
  border: 1px solid rgba(242,191,102,.25);
  color: var(--gold-yellow);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.coming-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--text-cream);
  margin-bottom: 14px;
  line-height: 1;
}
.coming-card.featured h3 { font-size: 44px; }
.coming-card p {
  color: var(--text-tan);
  font-size: 15px;
  line-height: 1.55;
}

.coming-visual {
  margin-top: 28px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
}
.share-card-preview {
  width: 100%;
  max-width: 280px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0,0,0,.6),
    0 0 0 1px rgba(242,191,102,.15),
    0 0 50px rgba(242,191,102,.18);
  transform: rotate(-3deg);
  transition: transform var(--dur-slow) var(--ease-smooth);
}
.coming-card:hover .share-card-preview { transform: rotate(-1deg) translateY(-4px); }
.share-card-preview img { width: 100%; display: block; }

/* Mini-illustrations for non-featured cards */
.illus {
  margin-top: 24px;
  width: 100%;
  height: 140px;
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.04);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Pricing ─────────────────────────────────────────────────────── */

.pricing-section {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(45,26,6,.4), transparent 70%),
    #000;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--surface-gray);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius-2xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: linear-gradient(160deg, #2a1808 0%, #0a0402 100%);
  border-color: rgba(242,191,102,.45);
  position: relative;
  box-shadow: var(--glow-gold);
}
.price-card.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -1px; right: 24px;
  background: var(--gold-yellow);
  color: var(--text-on-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
}
.price-tier {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: .04em;
  color: var(--gold-yellow);
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1;
}
.price-byline {
  font-size: 13px;
  color: var(--text-tan);
  margin-bottom: 28px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--text-cream);
  line-height: 1;
  margin-bottom: 4px;
}
.price-period {
  font-size: 13px;
  color: var(--text-tan);
  margin-bottom: 28px;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 28px;
}
.price-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-offwhite);
  line-height: 1.5;
}
.price-features .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--gold-yellow);
}
.price-features .dim { color: var(--text-tan); }

/* ─── FAQ ─────────────────────────────────────────────────────────── */

.faq-section { background: #000; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 0; } }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
}
.faq-item summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-cream);
  list-style: none;
  padding-right: 4px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold-yellow);
  line-height: 1;
  transition: transform var(--dur-base) var(--ease-smooth);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 14px;
  color: var(--text-tan);
  font-size: 15px;
  line-height: 1.65;
  max-width: 60ch;
}

/* ─── Closing CTA ─────────────────────────────────────────────────── */

.cta-section {
  padding: 160px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(45,26,6,.6), transparent 70%),
    #000;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(242,191,102,.08), transparent 40%),
    radial-gradient(circle at 70% 50%, rgba(108,76,26,.15), transparent 40%);
  pointer-events: none;
}
.cta-section > .container { position: relative; }

.cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: .95;
  font-size: clamp(48px, 8vw, 96px);
  color: var(--text-cream);
  margin-bottom: 28px;
}
.cta-title .gold {
  background: var(--gradient-headline);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-sub {
  color: var(--text-tan);
  font-size: clamp(17px, 1.6vw, 20px);
  margin-bottom: 48px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-stores {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ─── Footer ──────────────────────────────────────────────────────── */

.footer {
  background: #050300;
  border-top: 1px solid rgba(242,191,102,.08);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}
.footer-brand .wordmark { font-size: 32px; }
.footer-brand p { color: var(--text-tan); font-size: 14px; line-height: 1.5; }

.footer h5 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-yellow);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--text-tan);
  font-size: 14px;
}
.footer-links a:hover { color: var(--gold-yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-tan);
}
.footer-bottom .disclaimer {
  max-width: 720px;
  font-size: 12px;
  color: var(--text-tan);
  opacity: .7;
}

/* ─── Smoke wisp accent (CSS) ─────────────────────────────────────── */

.wisp {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .4;
  filter: blur(20px);
}
.wisp.top-left {
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242,191,102,.2), transparent 60%);
}
.wisp.bottom-right {
  bottom: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,76,26,.3), transparent 60%);
}

/* ─── Section anchor offset (for sticky nav) ───────────────────── */
[id] { scroll-margin-top: 80px; }
