/* ==========================================================================
   Thuru 304 — Premium Launch Site
   Design system: ink, emerald felt, ember gold. Cinematic + editorial.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,900&family=Cinzel:wght@500;600;700;900&family=Cinzel+Decorative:wght@700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Ink */
  --ink-deep: #04050a;
  --ink: #07070d;
  --ink-2: #0c0d16;
  --velvet: #131524;
  --velvet-2: #1a1d2c;

  /* Felt (emerald) */
  --felt-deep: #04231a;
  --felt: #0a4733;
  --felt-glow: #1aa776;
  --felt-mist: rgba(26, 167, 118, 0.16);

  /* Gold */
  --gold-shadow: #5a3d0d;
  --gold-dark: #7a5512;
  --gold: #c89c4a;
  --gold-bright: #f0c976;
  --gold-luminous: #fff1c1;
  --gold-mist: rgba(240, 201, 118, 0.18);

  /* Crimson accent */
  --crimson: #7f1734;
  --crimson-bright: #b8254a;

  /* Neutrals */
  --ivory: #f4eedb;
  --ivory-soft: #d8d4c2;
  --ash: #918a76;
  --mist: rgba(244, 238, 219, 0.7);
  --whisper: rgba(244, 238, 219, 0.45);

  /* Surfaces */
  --glass: rgba(255, 255, 255, 0.035);
  --glass-strong: rgba(255, 255, 255, 0.06);
  --hairline: rgba(244, 238, 219, 0.08);
  --hairline-gold: rgba(240, 201, 118, 0.18);

  /* Typography */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-royal: 'Cinzel Decorative', 'Cinzel', 'Trajan Pro', Georgia, serif;
  --font-serif: 'Cinzel', 'Trajan Pro', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Card paper palette */
  --paper: #f6ecd2;
  --paper-2: #efe1c1;
  --paper-3: #d9c79a;
  --gold-deep: #5e3f0a;
  --red-1: #b3192a;
  --red-2: #6e0c14;

  /* Type scale (fluid) */
  --fs-xs: clamp(11px, 0.75rem + 0.05vw, 12px);
  --fs-sm: clamp(13px, 0.85rem + 0.1vw, 14px);
  --fs-md: clamp(15px, 0.95rem + 0.15vw, 17px);
  --fs-lg: clamp(18px, 1rem + 0.5vw, 22px);
  --fs-xl: clamp(22px, 1.2rem + 1vw, 32px);
  --fs-2xl: clamp(30px, 1.6rem + 2vw, 52px);
  --fs-3xl: clamp(44px, 2.5rem + 4vw, 96px);
  --fs-hero: clamp(56px, 3rem + 6vw, 132px);

  /* Spacing rhythm */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 112px;
  --space-9: 168px;

  /* Layout */
  --content-width: 1240px;
  --content-narrow: 880px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Effects */
  --glow-gold: 0 0 0 1px var(--hairline-gold), 0 8px 32px -8px rgba(240, 201, 118, 0.25);
  --glow-emerald: 0 0 60px -10px rgba(26, 167, 118, 0.4);
  --shadow-card: 0 30px 60px -20px rgba(0, 0, 0, 0.65), 0 12px 24px -10px rgba(0, 0, 0, 0.5);
  --shadow-deep: 0 40px 80px -30px rgba(0, 0, 0, 0.85);
}

/* =============================== Reset =============================== */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-color: var(--gold-dark) var(--ink);
}

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }

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

/* =============================== Background atmosphere =============================== */

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.atmosphere::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(60% 50% at 80% 8%, rgba(26, 167, 118, 0.18), transparent 70%),
    radial-gradient(50% 40% at 12% 20%, rgba(240, 201, 118, 0.12), transparent 70%),
    radial-gradient(70% 60% at 50% 100%, rgba(127, 23, 52, 0.18), transparent 75%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
}

.atmosphere::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,241,193,0.08) 0.5px, transparent 1px),
    radial-gradient(circle at 75% 70%, rgba(255,241,193,0.06) 0.5px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255,241,193,0.04) 0.5px, transparent 1px);
  background-size: 220px 220px, 180px 180px, 320px 320px;
  opacity: 0.5;
  mix-blend-mode: screen;
}

/* Floating gold embers */
.embers {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.embers span {
  position: absolute;
  bottom: -30px;
  width: 4px;
  height: 4px;
  background: var(--gold-bright);
  border-radius: 50%;
  filter: blur(1px);
  box-shadow: 0 0 10px var(--gold-bright), 0 0 24px rgba(240, 201, 118, 0.6);
  opacity: 0;
  animation: ember-rise linear infinite;
}
@keyframes ember-rise {
  0%   { transform: translate3d(0, 0, 0) scale(0.6); opacity: 0; }
  10%  { opacity: 0.9; }
  60%  { opacity: 0.5; }
  100% { transform: translate3d(var(--ember-drift, 0px), -110vh, 0) scale(0.3); opacity: 0; }
}

/* Film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
}

/* =============================== Layout =============================== */

main, header, footer { position: relative; z-index: 1; }

.wrap {
  width: 100%;
  max-width: var(--content-width);
  padding-inline: clamp(20px, 5vw, 56px);
  margin-inline: auto;
}
.wrap-narrow {
  max-width: var(--content-narrow);
}

section {
  padding-block: clamp(72px, 10vw, 144px);
  position: relative;
}

/* =============================== Header =============================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(7,7,13,0.92), rgba(7,7,13,0.6) 70%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease-out), background .4s var(--ease-out);
}
.site-header.scrolled {
  border-bottom-color: var(--hairline);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-royal);
  font-weight: 900;
  font-size: clamp(20px, 1.4vw, 24px);
  letter-spacing: clamp(2.5px, 0.5vw, 4px);
  line-height: 1;
  color: transparent;
  background: linear-gradient(180deg, #fff5d8 0%, var(--gold-luminous) 30%, var(--gold-bright) 55%, var(--gold) 78%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 1px 0 rgba(0,0,0,0.35);
  filter: drop-shadow(0 2px 12px rgba(240,201,118,0.18));
  transition: filter .35s var(--ease-out);
  position: relative;
}
.brand:hover { filter: drop-shadow(0 2px 18px rgba(240,201,118,0.45)); }
.brand .word {
  display: inline-block;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}
.brand .num {
  display: inline-block;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-royal);
  font-weight: 900;
  letter-spacing: clamp(1px, 0.3vw, 2px);
}
.brand .glyph {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-luminous), var(--gold), var(--gold-dark));
  box-shadow: 0 0 10px var(--gold-bright), 0 0 24px rgba(240,201,118,0.4);
  align-self: center;
  transform: translateY(-1px);
  animation: brand-pulse 3s var(--ease-in-out) infinite;
}
@keyframes brand-pulse {
  0%, 100% { box-shadow: 0 0 10px var(--gold-bright), 0 0 24px rgba(240,201,118,0.4); }
  50%      { box-shadow: 0 0 14px var(--gold-luminous), 0 0 38px rgba(240,201,118,0.7); }
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}
.nav a {
  color: var(--mist);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  position: relative;
  padding: 8px 2px;
  transition: color .25s var(--ease-out);
}
.nav a:hover { color: var(--gold-bright); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s var(--ease-out);
}
.nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px 12px 18px;
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2a1a0a;
  background:
    linear-gradient(135deg, #fff5d8 0%, var(--gold-luminous) 25%, var(--gold-bright) 55%, var(--gold) 85%, var(--gold-dark) 100%);
  border: 1px solid var(--gold-deep);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.65) inset,
    0 -1px 0 rgba(0,0,0,0.25) inset,
    0 0 0 1px rgba(0,0,0,0.6),
    0 0 0 2px rgba(240,201,118,0.45),
    0 12px 28px -6px rgba(240,201,118,0.55),
    0 4px 10px -2px rgba(0,0,0,0.5);
  text-shadow: 0 1px 0 rgba(255,255,255,0.55);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out), filter .35s var(--ease-out);
  isolation: isolate;
  overflow: hidden;
}
.nav-cta::before {
  /* Animated diagonal gold-shimmer sweep across the surface */
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.65) 50%, transparent 80%);
  transform: skewX(-22deg);
  animation: cta-shine 4.2s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes cta-shine {
  0%, 65% { left: -120%; }
  78%     { left: 130%; }
  100%    { left: 130%; }
}
.nav-cta::after {
  /* Soft outer glow that breathes */
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(240,201,118,0.45), transparent 70%);
  filter: blur(8px);
  z-index: -1;
  animation: cta-breathe 3.4s var(--ease-in-out) infinite;
  pointer-events: none;
}
@keyframes cta-breathe {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}
.nav-cta > * { position: relative; z-index: 2; }
.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.65) inset,
    0 -1px 0 rgba(0,0,0,0.25) inset,
    0 0 0 1px rgba(0,0,0,0.6),
    0 0 0 2px rgba(240,201,118,0.7),
    0 18px 36px -6px rgba(240,201,118,0.75),
    0 6px 14px -2px rgba(0,0,0,0.5);
}

/* Live ember pulse glyph (replaces the dot) */
.nav-cta .ember {
  position: relative;
  width: 14px; height: 14px;
  display: inline-grid; place-items: center;
}
.nav-cta .ember svg { width: 14px; height: 14px; display: block; }
.nav-cta .ember::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,23,52,0.5), transparent 70%);
  animation: ember-pulse 1.8s var(--ease-in-out) infinite;
}
@keyframes ember-pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.2); }
}

.nav-toggle { display: none; }

@media (max-width: 820px) {
  .nav .nav-link { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
}

/* =============================== Hero =============================== */

.hero {
  min-height: clamp(640px, 100vh, 980px);
  padding-block: clamp(64px, 8vw, 120px) clamp(80px, 10vw, 140px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -10% -10% auto auto;
  width: 80%;
  height: 80%;
  background: radial-gradient(closest-side, rgba(26, 167, 118, 0.22), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 50%;
  background: radial-gradient(closest-side, rgba(127, 23, 52, 0.16), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(240,201,118,0.08), rgba(240,201,118,0.02));
  border: 1px solid var(--hairline-gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(240,201,118,0.3);
}
.eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--felt-glow);
  box-shadow: 0 0 0 0 rgba(26, 167, 118, 0.6);
  animation: pulse-emerald 2.2s var(--ease-out) infinite;
}
@keyframes pulse-emerald {
  0%   { box-shadow: 0 0 0 0 rgba(26,167,118,0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(26,167,118,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,167,118,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 700;
  font-variation-settings: 'opsz' 144, 'SOFT' 0;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-top: 28px;
  position: relative;
}
.hero-title .display {
  display: inline-block;
  background: linear-gradient(180deg, #fff8e2 0%, var(--gold-bright) 45%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 18px rgba(240,201,118,0.18));
  animation: title-shimmer 8s linear infinite;
  background-size: 200% 100%;
}
@keyframes title-shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.hero-title .display em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, var(--ivory), var(--ivory-soft) 70%, var(--ash));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: none;
}

.hero-sub {
  display: block;
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-xl);
  color: var(--ivory-soft);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.hero-lede {
  margin-top: 26px;
  font-size: var(--fs-lg);
  color: var(--mist);
  max-width: 540px;
  line-height: 1.55;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out), border-color .25s, background .25s;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn .arr {
  display: inline-block;
  transition: transform .35s var(--ease-spring);
}
.btn:hover .arr { transform: translateX(3px); }

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-luminous) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  box-shadow: 0 14px 36px -10px rgba(240,201,118,0.5), inset 0 1px 0 rgba(255,255,255,0.6);
  border-color: var(--gold-luminous);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.7), transparent 70%);
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0.6;
  animation: btn-shine 3.8s linear infinite;
}
@keyframes btn-shine {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}
.btn-primary:hover { box-shadow: 0 18px 48px -10px rgba(240,201,118,0.7), inset 0 1px 0 rgba(255,255,255,0.7); }

.btn-ghost {
  color: var(--ivory);
  background: rgba(255,255,255,0.03);
  border-color: var(--hairline-gold);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(240,201,118,0.08);
  border-color: var(--gold-bright);
  color: var(--gold-luminous);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--whisper);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .bullet {
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%; opacity: 0.7;
}

/* Hero card stage (3D card fan) */

.hero-stage {
  position: relative;
  aspect-ratio: 5 / 6;
  perspective: 1400px;
  perspective-origin: 50% 40%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}
@media (max-width: 980px) {
  .hero-stage { aspect-ratio: 6 / 5; max-width: 540px; margin-inline: auto; }
}

.hero-stage .glow-base {
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  height: 28%;
  background: radial-gradient(closest-side, rgba(26, 167, 118, 0.55), transparent 70%);
  filter: blur(22px);
}
.hero-stage .felt-disc {
  position: absolute;
  inset: 8% 6% 8% 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(26, 167, 118, 0.32), transparent 60%),
    radial-gradient(circle at 50% 50%, var(--felt) 0%, var(--felt-deep) 70%);
  border: 1px solid rgba(240,201,118,0.18);
  box-shadow:
    inset 0 0 60px rgba(0,0,0,0.6),
    inset 0 0 0 8px rgba(0,0,0,0.25),
    0 60px 120px -40px rgba(0,0,0,0.7);
  transform: rotateX(56deg) translateZ(-40px) scale(1.06);
  transform-style: preserve-3d;
}
.hero-stage .felt-disc::after {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px dashed rgba(240,201,118,0.25);
}

.card-stack {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 1.4s var(--ease-out);
  will-change: transform;
  animation: stack-breathe 7s var(--ease-in-out) infinite;
}
@keyframes stack-breathe {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -10px; }
}

/* ==================== Premium playing card ==================== */

.card {
  /* Floor pulled from 120px → 78px so the 5-card fan never overflows
     the hero-stage on small phones (320–400px viewports). At ≥720px the
     18vw rule still drives the size, so desktop is unchanged. */
  --w: clamp(78px, 18vw, 190px);
  --h: calc(var(--w) * 1.42);
  position: absolute;
  top: 50%; left: 50%;
  width: var(--w); height: var(--h);
  border-radius: 12px;
  transform-origin: 50% 92%;
  transform-style: preserve-3d;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255,255,255,0.92) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.06) 0%, transparent 60%),
    linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 65%, var(--paper-3) 100%);
  border: 1px solid rgba(80, 50, 20, 0.32);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 -1px 0 rgba(0,0,0,0.1) inset,
    0 22px 44px -12px rgba(0,0,0,0.7),
    0 8px 16px -6px rgba(0,0,0,0.45);
  overflow: hidden;
  will-change: transform;
  transition: transform .8s var(--ease-spring), box-shadow .6s var(--ease-out);
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4  0 0 0 0 0.3  0 0 0 0 0.15  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23g)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.45;
  pointer-events: none;
  border-radius: inherit;
}
.card::after {
  content: ''; position: absolute; inset: 0 0 55% 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  border-radius: 12px 12px 0 0;
  opacity: 0.55;
}
.card .frame {
  position: absolute; inset: 6px;
  border: 1.5px solid rgba(140, 100, 30, 0.55);
  border-radius: 8px;
  pointer-events: none; z-index: 1;
}
.card .frame::before {
  content: ''; position: absolute; inset: 3px;
  border: 0.5px solid rgba(140, 100, 30, 0.32);
  border-radius: 6px;
}
.card .corner {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  line-height: 0.95;
  z-index: 3;
  font-family: var(--font-serif);
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255,255,255,0.7);
}
.card .corner.tl { top: 10px; left: 12px; }
.card .corner.br { bottom: 10px; right: 12px; transform: rotate(180deg); }
/* Corner rank/suit scale with card width (--w) so they don't blow up on
   the smaller mobile cards. The vw fallbacks keep desktop unchanged. */
.card .corner .rk { font-size: max(11px, calc(var(--w) * 0.115)); }
.card .corner .su { font-size: max(9px, calc(var(--w) * 0.10)); margin-top: 1px; }

.card .body {
  position: absolute;
  /* Was fixed `28px 22px` — at the 78px-wide phone card, 22px each side
     leaves only 34px of usable body width and crushes the medallion. The
     ratios match what 28px / 22px gave on the 190×270 desktop card. */
  inset: 10.4% 11.6%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.card .ace-medallion {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.card .ace-medallion .su {
  /* Was clamp(48px, 7vw, 78px). 48px floor was bigger than a 78px-wide
     mobile card. Switching to a fraction of --w keeps the medallion
     readable and contained at every size (desktop 190px → 80px). */
  font-size: calc(var(--w) * 0.42);
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.18);
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.4));
  z-index: 2;
}
.card .ace-medallion::before {
  content: '';
  position: absolute; width: 70%; height: 70%;
  border: 1.5px solid rgba(140,100,30,0.42);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(140,100,30,0.22);
  z-index: 1;
}
.card .ace-medallion::after {
  content: '';
  position: absolute; width: 86%; height: 86%;
  border: 0.5px dashed rgba(140,100,30,0.32);
  border-radius: 50%;
  z-index: 1;
}
.card .face-emblem {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  position: relative;
}
.card .face-emblem .letter {
  font-family: var(--font-royal);
  /* Was clamp(54px, 8vw, 92px) — 54px floor overflowed the 78px card. */
  font-size: calc(var(--w) * 0.48);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, #2a1a0a 0%, var(--gold-deep) 50%, #2a1a0a 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.03em;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.4));
}
.card.red .face-emblem .letter {
  background: linear-gradient(180deg, #6e0c14 0%, var(--red-1) 50%, #6e0c14 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.card .face-emblem .su {
  font-size: calc(var(--w) * 0.18);
  line-height: 1;
  margin-top: 4px;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.5));
}
.card.red { color: var(--red-1); }
.card.black { color: #15171a; }

/* Velvet card back with monogram */
.card.back {
  background: radial-gradient(ellipse at 50% 50%, #8a1822 0%, #5a0c14 65%, #3d050a 100%);
  border-color: #2a0408;
}
.card.back::before {
  content: '';
  position: absolute; inset: 6px;
  border-radius: 8px;
  background-image:
    repeating-linear-gradient(45deg,
      transparent 0 12px,
      rgba(201,150,47,0) 12px 13px,
      rgba(201,150,47,0.5) 13px 14px,
      rgba(201,150,47,0) 14px 15px,
      transparent 15px 27px),
    repeating-linear-gradient(-45deg,
      transparent 0 12px,
      rgba(201,150,47,0) 12px 13px,
      rgba(201,150,47,0.5) 13px 14px,
      rgba(201,150,47,0) 14px 15px,
      transparent 15px 27px);
  border: 1.5px solid rgba(201,150,47,0.6);
  box-shadow: inset 0 0 0 1px rgba(241,210,122,0.16), inset 0 0 14px rgba(0,0,0,0.5);
  mix-blend-mode: normal;
  opacity: 1;
}
.card.back::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 60%; height: 40%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse at center,
      rgba(122, 18, 28, 0.95) 0%,
      rgba(122, 18, 28, 0.85) 60%,
      transparent 100%);
  border: 2px solid rgba(201,150,47,0.85);
  border-radius: 50%;
  box-shadow:
    0 0 0 3px rgba(80, 8, 14, 0.6),
    0 0 0 5px rgba(241,210,122,0.4),
    inset 0 0 16px rgba(0,0,0,0.45);
  z-index: 2;
}
.card.back .monogram {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-royal);
  font-weight: 900;
  font-size: calc(var(--w) * 0.34);
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-luminous) 0%, var(--gold-bright) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 1px 1px rgba(0,0,0,0.4);
  filter: drop-shadow(0 0 4px rgba(201,150,47,0.6));
  z-index: 3;
}

/* Fan layout — true 3D depth */
.card.c1 { transform: translate(-50%, -50%) rotate(-22deg) translateY(8px) translateZ(-30px); z-index: 1; }
.card.c2 { transform: translate(-50%, -50%) rotate(-11deg) translateY(2px) translateZ(0px); z-index: 2; }
.card.c3 { transform: translate(-50%, -50%) rotate(0deg)   translateY(-6px) translateZ(40px); z-index: 5; }
.card.c4 { transform: translate(-50%, -50%) rotate(11deg)  translateY(2px) translateZ(0px); z-index: 2; }
.card.c5 { transform: translate(-50%, -50%) rotate(22deg)  translateY(8px) translateZ(-30px); z-index: 1; }

/* Each card breathes on its own micro-cycle for life */
.card.c1 { animation: cardWobble1 9s var(--ease-in-out) infinite; }
.card.c2 { animation: cardWobble2 7s var(--ease-in-out) infinite; }
.card.c3 { animation: cardWobble3 6s var(--ease-in-out) infinite; }
.card.c4 { animation: cardWobble4 8s var(--ease-in-out) infinite; }
.card.c5 { animation: cardWobble5 10s var(--ease-in-out) infinite; }
@keyframes cardWobble1 { 0%,100% { transform: translate(-50%, -50%) rotate(-22deg) translateY(8px)  translateZ(-30px); } 50% { transform: translate(-50%, -50%) rotate(-21deg) translateY(2px)  translateZ(-22px); } }
@keyframes cardWobble2 { 0%,100% { transform: translate(-50%, -50%) rotate(-11deg) translateY(2px)  translateZ(0px); }   50% { transform: translate(-50%, -50%) rotate(-10deg) translateY(-4px) translateZ(8px); } }
@keyframes cardWobble3 { 0%,100% { transform: translate(-50%, -50%) rotate(0deg)   translateY(-6px) translateZ(40px); }  50% { transform: translate(-50%, -50%) rotate(0.4deg) translateY(-14px) translateZ(54px); } }
@keyframes cardWobble4 { 0%,100% { transform: translate(-50%, -50%) rotate(11deg)  translateY(2px)  translateZ(0px); }   50% { transform: translate(-50%, -50%) rotate(10deg)  translateY(-4px) translateZ(8px); } }
@keyframes cardWobble5 { 0%,100% { transform: translate(-50%, -50%) rotate(22deg)  translateY(8px)  translateZ(-30px); } 50% { transform: translate(-50%, -50%) rotate(21deg)  translateY(2px)  translateZ(-22px); } }

/* Hover spread — pull the fan wide and forward */
.card-stack:hover .card.c1 { animation: none; transform: translate(-50%, -50%) rotate(-32deg) translateY(20px) translateX(-14px) translateZ(-20px); }
.card-stack:hover .card.c2 { animation: none; transform: translate(-50%, -50%) rotate(-16deg) translateY(8px)  translateX(-7px)  translateZ(10px); }
.card-stack:hover .card.c3 { animation: none; transform: translate(-50%, -50%) rotate(0deg)   translateY(-22px) translateZ(70px); }
.card-stack:hover .card.c4 { animation: none; transform: translate(-50%, -50%) rotate(16deg)  translateY(8px)  translateX(7px)   translateZ(10px); }
.card-stack:hover .card.c5 { animation: none; transform: translate(-50%, -50%) rotate(32deg)  translateY(20px) translateX(14px)  translateZ(-20px); }

.hero-stage .glint {
  position: absolute;
  width: 120%;
  height: 30px;
  top: 35%;
  left: -10%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: rotate(-12deg);
  filter: blur(8px);
  animation: glint-sweep 7s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes glint-sweep {
  0%   { opacity: 0; transform: translateX(-30%) rotate(-12deg); }
  20%  { opacity: 1; }
  60%  { opacity: 0; }
  100% { opacity: 0; transform: translateX(60%) rotate(-12deg); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--whisper);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold-bright), transparent);
  animation: cue-line 2.4s var(--ease-in-out) infinite;
  transform-origin: top;
}
@keyframes cue-line {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* =============================== Trust strip =============================== */

.trust-strip {
  padding-block: clamp(36px, 5vw, 56px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.15));
  position: relative;
}
.trust-strip::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-gold), transparent);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 36px);
  align-items: center;
  text-align: center;
}
@media (max-width: 900px) { .trust-row { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); row-gap: 28px; justify-items: center; } }
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: calc(clamp(8px, 1vw, 18px) * -1);
  top: 18%; bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--hairline-gold), transparent);
}
@media (max-width: 900px) { .trust-item::after { display: none; } }
.trust-item .num {
  font-family: var(--font-royal);
  font-weight: 900;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-luminous), var(--gold-bright) 50%, var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 1px 6px rgba(240,201,118,0.18));
}
.trust-item .lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  max-width: 180px;
  line-height: 1.4;
}

/* =============================== Section heads =============================== */

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section-head.center {
  text-align: center;
  align-items: center;
  margin-inline: auto;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright));
}
.section-eyebrow::after { background: linear-gradient(90deg, var(--gold-bright), transparent); }

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-lede {
  font-size: var(--fs-lg);
  color: var(--mist);
  max-width: 620px;
  line-height: 1.55;
}

/* =============================== Brand promise (4 pillars) =============================== */

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 880px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  padding: 36px 28px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .35s var(--ease-out);
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 60% at 50% 0%, rgba(240,201,118,0.10), transparent 70%);
  opacity: 0;
  transition: opacity .4s var(--ease-out);
}
.pillar:hover { transform: translateY(-4px); border-color: var(--hairline-gold); }
.pillar:hover::before { opacity: 1; }
.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-bright);
  letter-spacing: 2px;
}
.pillar-name {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.pillar-name em { font-style: italic; font-weight: 500; color: var(--gold-bright); }
.pillar-desc {
  margin-top: 14px;
  font-size: 15px;
  color: var(--mist);
  line-height: 1.6;
}

/* =============================== Experience (storytelling) =============================== */

.story {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 56px;
}
@media (max-width: 980px) { .story { grid-template-columns: 1fr; } }

.story-card {
  position: relative;
  padding: 36px 32px 40px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(20, 26, 40, 0.7), rgba(13, 14, 21, 0.4));
  border: 1px solid var(--hairline);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  transition: transform .6s var(--ease-out), border-color .4s;
}
.story-card:hover { transform: translateY(-6px); border-color: var(--hairline-gold); }
.story-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(26, 167, 118, 0.15), transparent 60%);
  opacity: 0.35;
}

.story-art {
  position: relative;
  height: 220px;
  margin: -16px -32px 24px;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(13, 14, 21, 0.4), transparent);
  overflow: hidden;
}
.story-roman {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--gold-bright);
  letter-spacing: 4px;
  z-index: 2;
}
.story-title {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ivory);
  z-index: 2;
}
.story-body {
  margin-top: 14px;
  color: var(--mist);
  font-size: 15px;
  line-height: 1.65;
  z-index: 2;
}

/* =========================================================================
   Story art — editorial restraint: huge numeral watermark + single SVG icon
   ========================================================================= */

.story-art {
  position: relative;
  inset: auto;
  height: 220px;
  margin: -16px -32px 24px;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  place-items: center;
  background:
    radial-gradient(80% 90% at 50% 30%, rgba(26,167,118,0.12), transparent 70%),
    linear-gradient(180deg, rgba(13, 14, 21, 0.6), rgba(7, 7, 13, 0.2));
  overflow: hidden;
}

/* Massive Cinzel Decorative Roman numeral as watermark behind the icon.
   Floor reduced from 160px → 92px: at 160px floor "II" / "III" overflow
   a single-column story-card on phones (≤480px) and look brutally cropped.
   The clamp still pushes back up to 240px on tablets / desktop. */
.story-art .numeral {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-royal);
  font-weight: 900;
  font-size: clamp(92px, 22vw, 240px);
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, rgba(240,201,118,0.20) 0%, rgba(122,85,18,0.04) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

/* Subtle gold scrolled ornament under the icon */
.story-art .ornament {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0.5;
}
.story-art .ornament::before, .story-art .ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  transform: translateY(-50%);
  box-shadow: 0 0 8px var(--gold-bright);
}
.story-art .ornament::before { left: 18%; }
.story-art .ornament::after  { right: 18%; }

/* Focal SVG icon — premium, drops a real shadow */
.story-art .icon-svg {
  position: relative;
  z-index: 2;
  height: 150px;
  width: auto;
  /* Belt-and-braces: never push past the panel width on narrow viewports. */
  max-width: 70%;
  filter:
    drop-shadow(0 18px 28px rgba(0,0,0,0.7))
    drop-shadow(0 6px 14px rgba(240,201,118,0.22));
  animation: icon-float 7s var(--ease-in-out) infinite;
  transition: transform .8s var(--ease-spring);
}
.story-card:hover .icon-svg { transform: translateY(-4px) scale(1.04) rotate(0.5deg); }
@keyframes icon-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-6px) rotate(-0.4deg); }
}

/* Mobile / single-column story stack: the art panel was sized for a 3-up
   desktop grid where each card is ~340px. When the grid collapses to 1
   column on phones, the same 220px panel + 150px icon look bloated next
   to a stacked card title/body. Tighten everything proportionally. */
@media (max-width: 700px) {
  .story-art {
    height: 168px;
    margin: -16px -24px 20px;
  }
  .story-art .icon-svg { height: 110px; }
  .story-card {
    padding: 28px 24px 32px;
    min-height: 0;
  }
  .story-title { font-size: 24px; }
}

/* =========================================================================
   Premium top-down table — single cohesive SVG illustration
   ========================================================================= */

.table-stage {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  aspect-ratio: 1;
}
.table-stage svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 50px 80px rgba(0,0,0,0.7));
  animation: table-breathe 9s var(--ease-in-out) infinite;
}
@keyframes table-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.012); }
}

/* =============================== Features grid =============================== */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1080px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .features { grid-template-columns: 1fr; } }

.feature {
  position: relative;
  padding: 32px 26px 30px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012));
  border: 1px solid var(--hairline);
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s var(--ease-out), border-color .4s, background .4s;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.feature::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, transparent 30%, var(--gold-mist), transparent 70%);
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
  z-index: 0;
}
.feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at var(--mx, 50%) var(--my, 0%), rgba(240,201,118,0.08), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  z-index: 0;
}
.feature:hover { transform: translateY(-4px); }
.feature:hover::before, .feature:hover::after { opacity: 1; }
.feature > * { position: relative; z-index: 1; }

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(240,201,118,0.16), rgba(240,201,118,0.04));
  border: 1px solid var(--hairline-gold);
  display: grid; place-items: center;
  color: var(--gold-bright);
}
.feature-name {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ivory);
  line-height: 1.2;
}
.feature-desc {
  margin-top: 10px;
  font-size: 14px;
  color: var(--mist);
  line-height: 1.6;
}
.feature-tag {
  margin-top: auto;
  padding-top: 18px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--whisper);
  text-transform: uppercase;
}

/* =============================== Immersion (table) =============================== */

.immersion {
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(26,167,118,0.10), transparent 70%);
  border-block: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.immersion .wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 980px) {
  .immersion .wrap { grid-template-columns: 1fr; }
}
.immersion-text { max-width: 480px; }
.immersion-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.immersion-list li {
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--mist);
  line-height: 1.55;
}
.immersion-list li::before {
  content: '';
  flex: 0 0 auto;
  margin-top: 9px;
  width: 6px; height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}


/* =============================== Social section =============================== */

.social {
  position: relative;
}
.social .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 980px) { .social .wrap { grid-template-columns: 1fr; } }
.social-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 12px;
}
.social-list .item {
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  transition: border-color .35s, transform .5s var(--ease-out);
}
.social-list .item:hover { border-color: var(--hairline-gold); transform: translateX(4px); }
.social-list .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: var(--gold-bright);
  line-height: 1;
}
.social-list h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ivory);
  margin-bottom: 6px;
}
.social-list p {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.55;
}

.social-art {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.social-art .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(240,201,118,0.18);
  animation: ring-rotate 32s linear infinite;
}
.social-art .ring:nth-child(2) { inset: 8%; animation-duration: 26s; animation-direction: reverse; border-color: rgba(26,167,118,0.22); }
.social-art .ring:nth-child(3) { inset: 16%; animation-duration: 22s; border-style: dashed; border-color: rgba(240,201,118,0.14); }
.social-art .ring:nth-child(4) { inset: 28%; animation-duration: 18s; animation-direction: reverse; border-color: rgba(127,23,52,0.18); }

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

.social-art .core {
  position: relative;
  padding: 32px 38px;
  background: linear-gradient(180deg, rgba(13,14,21,0.85), rgba(7,7,13,0.65));
  border: 1px solid var(--hairline-gold);
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.social-art .core .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(58px, 10vw, 120px);
  line-height: 0.9;
  background: linear-gradient(180deg, var(--gold-luminous), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
}
.social-art .core .label {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.social-art .core .sub {
  margin-top: 12px;
  font-size: 14px;
  color: var(--mist);
}

.social-art .suit {
  position: absolute;
  font-size: 22px;
  color: var(--gold);
  opacity: 0.7;
  z-index: 3;
}
.social-art .suit.s1 { top: 6%; left: 50%; transform: translateX(-50%); }
.social-art .suit.s2 { bottom: 6%; left: 50%; transform: translateX(-50%); color: var(--crimson-bright); }
.social-art .suit.s3 { top: 50%; left: 6%; transform: translateY(-50%); color: var(--crimson-bright); }
.social-art .suit.s4 { top: 50%; right: 6%; transform: translateY(-50%); }

/* =============================== Launch CTA =============================== */

.launch {
  text-align: center;
  position: relative;
  padding-block: clamp(96px, 12vw, 168px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(240,201,118,0.10), transparent 70%);
}
.launch .wrap-narrow { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--hairline-gold);
  background: rgba(240,201,118,0.07);
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 500;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.launch-title {
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw + 1rem, 110px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, var(--ivory), var(--ivory-soft) 60%, var(--ash));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.launch-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, var(--gold-luminous), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.launch-lede {
  max-width: 580px;
  font-size: var(--fs-lg);
  color: var(--mist);
  line-height: 1.55;
}
.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--hairline-gold);
  background: linear-gradient(180deg, rgba(240,201,118,0.06), rgba(240,201,118,0.01));
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--ivory);
  text-transform: uppercase;
  cursor: default;
}
.launch-pill .icon { color: var(--gold-bright); }
.launch-note {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--whisper);
}

/* =============================== Footer =============================== */

.site-footer {
  padding: 60px 0 32px;
  position: relative;
  border-top: 1px solid var(--hairline);
}
.site-footer .top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 720px) { .site-footer .top { grid-template-columns: 1fr; } }

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
}
.footer-brand .brand { font-size: 22px; }
.footer-brand p {
  font-size: 13px;
  color: var(--mist);
  line-height: 1.6;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 560px) { .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.footer-cols h5 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-bright);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-cols ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-cols a {
  font-size: 14px;
  color: var(--mist);
  transition: color .25s;
}
.footer-cols a:hover { color: var(--gold-bright); }

.site-footer .bottom {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--whisper);
  letter-spacing: 1px;
}
.disclaimer {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--ash);
}

/* =============================== Reveal animations =============================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal-stagger].in > *:nth-child(1) { transition-delay: .05s; opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(2) { transition-delay: .15s; opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(3) { transition-delay: .25s; opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(4) { transition-delay: .35s; opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(5) { transition-delay: .45s; opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(6) { transition-delay: .55s; opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(7) { transition-delay: .65s; opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(8) { transition-delay: .75s; opacity: 1; transform: none; }

/* =========================================================================
   Play glyph + Launch CTA
   ========================================================================= */

.btn .play-glyph {
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(20, 12, 0, 0.18);
  font-size: 9px;
  line-height: 1;
  margin-right: -2px;
  text-shadow: none;
  transition: transform .35s var(--ease-spring), background .35s var(--ease-out);
}
.btn:hover .play-glyph {
  transform: scale(1.08);
  background: rgba(20, 12, 0, 0.32);
}

.btn.launch-play {
  margin-top: 4px;
  padding: 18px 30px;
  font-size: 15px;
  letter-spacing: 1px;
}

/* =========================================================================
   Responsive polish — guarantees the page looks right on every device size
   ========================================================================= */

/* Tablet landscape and below (≤ 1024px) */
@media (max-width: 1024px) {
  .hero { min-height: auto; padding-block: clamp(56px, 8vw, 110px); }
  section { padding-block: clamp(56px, 8vw, 120px); }
}

/* Tablet portrait and below (≤ 820px) */
@media (max-width: 820px) {
  .hero .wrap { gap: clamp(32px, 6vw, 56px); }
  .hero-stage { aspect-ratio: 6 / 5; max-width: 480px; margin-inline: auto; width: 88%; }
  .hero-meta { gap: 14px; font-size: 12px; }
  .section-head { margin-bottom: clamp(28px, 4vw, 56px); }
  .story-card { min-height: 420px; padding: 28px 24px 32px; }
  .story-art { height: 200px; margin: -12px -24px 20px; }
  .story-art .icon-svg { height: 130px; }
  .immersion .wrap, .social .wrap { gap: 32px; }
  .table-stage { max-width: 480px; }
}

/* Phones (≤ 560px) */
@media (max-width: 560px) {
  .site-header { padding: 12px 0; }
  .brand { font-size: 18px; letter-spacing: 2.5px; gap: 8px; }
  .brand .glyph { width: 5px; height: 5px; margin-right: 4px; }
  .nav-cta {
    padding: 9px 14px 9px 12px;
    font-size: 11px;
    letter-spacing: 2px;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.6) inset,
      0 -1px 0 rgba(0,0,0,0.25) inset,
      0 0 0 1px rgba(0,0,0,0.55),
      0 0 0 2px rgba(240,201,118,0.4),
      0 8px 18px -4px rgba(240,201,118,0.5);
  }
  .nav-cta .ember, .nav-cta .ember svg { width: 12px; height: 12px; }

  .hero { padding-block: 40px 60px; }
  .hero-title { margin-top: 18px; }
  .hero-stage { aspect-ratio: 1 / 1; max-width: 380px; }
  .hero-ctas .btn { padding: 14px 22px; font-size: 13px; flex: 1 1 auto; justify-content: center; }
  .hero-meta { row-gap: 8px; }
  .scroll-cue { display: none; }

  .trust-strip { padding-block: 28px; }
  .trust-row { gap: 18px; }
  .trust-item .num { font-size: 28px; }
  .trust-item .lbl { font-size: 10px; letter-spacing: 1.6px; max-width: 120px; }

  .section-eyebrow { font-size: 10px; letter-spacing: 4px; }
  .section-eyebrow::before, .section-eyebrow::after { width: 18px; }

  .story-card { min-height: 380px; padding: 22px 20px 26px; }
  .story-art { height: 180px; margin: -10px -20px 18px; }
  .story-art .icon-svg { height: 110px; }
  .story-art .numeral { font-size: 140px; }
  .story-title { font-size: 24px; }

  .pillar { padding: 26px 22px; }
  .pillar-name { font-size: 22px; }

  .feature { min-height: auto; padding: 24px 22px; }

  .immersion-list { gap: 12px; }
  .immersion-list li { font-size: 14px; }

  .launch { padding-block: clamp(56px, 12vw, 100px); }
  .launch-title { font-size: clamp(38px, 9vw, 64px); }
  .launch-pill { padding: 12px 20px; font-size: 11px; letter-spacing: 2px; }

  .site-footer { padding: 40px 0 24px; }
  .site-footer .top { padding-bottom: 24px; }
  .site-footer .bottom { font-size: 11px; gap: 8px; }
  .disclaimer { font-size: 10px; letter-spacing: 2px; }

  .doc-page .wrap-narrow { padding-inline: 16px; }
}

/* Tiny phones (≤ 380px) */
@media (max-width: 380px) {
  .wrap { padding-inline: 16px; }
  .nav { gap: 12px; }
  .brand { font-size: 16px; letter-spacing: 2px; }
  .nav-cta { padding: 7px 11px 7px 9px; font-size: 10px; letter-spacing: 1.5px; gap: 7px; }
  .nav-cta::after { display: none; }
  .hero-title { font-size: clamp(46px, 12vw, 64px); }
  .hero-lede { font-size: 15px; }
  .hero-stage { max-width: 300px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* Landscape phones — keep hero compact */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 520px) {
  .hero { min-height: auto; padding-block: 40px 56px; }
  .hero .wrap { grid-template-columns: 1.1fr 1fr; }
  .hero-stage { aspect-ratio: 5 / 6; max-width: 280px; }
  .scroll-cue { display: none; }
}

/* Hover effects only on devices that actually hover (avoid sticky hover state on touch) */
@media (hover: none) {
  .card-stack:hover .card.c1,
  .card-stack:hover .card.c2,
  .card-stack:hover .card.c3,
  .card-stack:hover .card.c4,
  .card-stack:hover .card.c5 { transform: none; animation: inherit; }
  .pillar:hover, .story-card:hover, .feature:hover, .social-list .item:hover { transform: none; }
  .nav-cta:hover { transform: none; filter: none; }
}

/* Safe-area for iPhone notch */
@supports (padding: max(0px)) {
  .site-header { padding-top: max(16px, env(safe-area-inset-top)); }
  .site-footer { padding-bottom: max(32px, env(safe-area-inset-bottom)); }
}

/* =============================== Reduced motion =============================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
  .embers { display: none; }
}

/* =============================== Sub-pages (privacy/terms/support) =============================== */

.doc-page {
  padding-block: clamp(56px, 8vw, 96px);
}
.doc-page .wrap-narrow { max-width: 720px; }
.doc-page h1 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 12px;
}
.doc-page .meta {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--whisper);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.doc-page h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ivory);
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.doc-page p, .doc-page li {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 14px;
}
.doc-page ul { padding-left: 22px; }
.doc-page a { color: var(--gold-bright); border-bottom: 1px solid var(--hairline-gold); }
.doc-page .placeholder-note {
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid var(--hairline-gold);
  border-radius: 12px;
  background: rgba(240,201,118,0.05);
  font-size: 13px;
  color: var(--ivory-soft);
  line-height: 1.6;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold-bright);
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.back-link:hover { color: var(--gold-luminous); }
