/* ==========================================================================
   MAAYA — The Art of Illusion | Magician Course Platform
   Premium dark theme. Ellusionist-inspired, tailored for Indian audiences.
   All colors/fonts/animations are token-driven so they map cleanly into an
   Elementor Global Kit later.
   ========================================================================== */

:root {
  /* Brand palette — luxury LIGHT theme (warm ivory + espresso + antique gold) */
  --bg:            #f6f1e7;
  --bg-2:          #efe8da;
  --bg-3:          #e7ded0;
  --panel:         #fffdf8;
  --ink:           #201a12;
  --ink-soft:      #5b5346;
  --ink-mute:      #706858;
  --gold:          #806417;
  --gold-2:        #c9a24b;
  --gold-deep:     #6f560f;
  --crimson:       #b3122b;
  --crimson-2:     #d12a44;
  --violet:        #6d3bf5;
  --line:          rgba(128,100,23,.28);
  --line-soft:     rgba(32,26,18,.10);

  /* Type */
  --font-display: "Cinzel", "Playfair Display", serif;
  --font-serif:   "Playfair Display", serif;
  --font-body:    "Manrope", system-ui, sans-serif;

  /* Rhythm */
  --container: 1240px;
  --radius: 16px;
  --radius-lg: 26px;
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-2: cubic-bezier(.16,1,.3,1);
  --shadow: 0 26px 60px -30px rgba(70,52,18,.28);
  --glow-gold: 0 0 0 1px rgba(128,100,23,.26), 0 14px 40px -12px rgba(128,100,23,.28);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: none; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: #000; }

/* Keyboard focus — visible for a11y (the custom cursor hides the pointer) */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
input:focus-visible, textarea:focus-visible, select:focus-visible { outline-offset: 1px; }

/* Background texture — subtle stage haze */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 600px at 82% -5%, rgba(201,162,75,.16), transparent 60%),
    radial-gradient(900px 700px at -10% 8%, rgba(128,100,23,.10), transparent 55%),
    radial-gradient(1200px 820px at 50% 120%, rgba(201,162,75,.12), transparent 62%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 44px, var(--container)); margin-inline: auto; }
.section { padding: clamp(70px, 9vw, 140px) 0; position: relative; }
.eyebrow {
  font: 600 12px/1 var(--font-body);
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); opacity: .6; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 28px; height: 1px; background: var(--gold); opacity: .6; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -.01em; }
.h-xl { font-size: clamp(2.6rem, 7vw, 6rem); }
.h-lg { font-size: clamp(2rem, 4.6vw, 3.6rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 500; }
.gold-text {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 38%, var(--gold-2) 55%, var(--gold) 70%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% auto; animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }
.lead { color: var(--ink-soft); font-size: clamp(1rem, 1.3vw, 1.18rem); max-width: 56ch; }
.center { text-align: center; }
.muted { color: var(--ink-mute); }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%; mix-blend-mode: difference; }
.cursor-dot { width: 7px; height: 7px; background: var(--gold-2); transform: translate(-50%,-50%); }
.cursor-ring { width: 38px; height: 38px; border: 1px solid rgba(245,241,234,.5); transform: translate(-50%,-50%); transition: width .25s var(--ease), height .25s var(--ease), background .25s; }
.cursor-ring.hover { width: 64px; height: 64px; background: rgba(212,175,55,.12); border-color: transparent; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Sale banner (refined announcement bar) ---------- */
.sale-banner {
  background: linear-gradient(90deg, #171009, #241a0d 50%, #171009);
  color: #efe3cc; font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  text-align: center; padding: 10px 16px; position: relative; z-index: 60;
  border-bottom: 1px solid rgba(201,162,75,.42);
  box-shadow: 0 1px 0 rgba(201,162,75,.10) inset;
}
.sale-banner .marq { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; }
.sale-banner b { color: #e8c877; font-weight: 800; letter-spacing: .1em; }
.sale-banner .code-box {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 13px; border-radius: 6px;
  background: rgba(201,162,75,.13); border: 1px solid rgba(201,162,75,.55); color: #f0d999;
  font-weight: 800; letter-spacing: .18em; text-transform: none;
}
.sale-banner .close { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; display: grid; place-items: center; font-size: 15px; opacity: .55; color: #efe3cc; transition: opacity .25s var(--ease); }
.sale-banner .close:hover { opacity: 1; }
.sale-banner.hide { display: none; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(246,241,231,.72);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s;
}
.nav.scrolled { background: rgba(250,246,238,.92); border-color: var(--line); box-shadow: 0 10px 30px -22px rgba(70,52,18,.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-size: 21px; letter-spacing: .12em; }
.brand .mark { width: 34px; height: 34px; display: grid; place-items: center; color: var(--gold); }
.brand .mark svg { width: 100%; height: 100%; filter: drop-shadow(0 0 8px rgba(212,175,55,.5)); }
.brand small { display: block; font: 500 8.5px/1 var(--font-body); letter-spacing: .42em; color: var(--ink-mute); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { position: relative; padding: 9px 16px; font-size: 15.5px; font-weight: 600; letter-spacing: .01em; color: var(--ink-soft); transition: color .3s; }
.nav-links a::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.cart-btn { position: relative; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line-soft); border-radius: 12px; transition: border-color .3s, background .3s; }
.cart-btn:hover { border-color: var(--gold); background: rgba(212,175,55,.08); }
.cart-count { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px; display: grid; place-items: center; background: var(--crimson); color: #fff; font-size: 11px; font-weight: 800; border-radius: 999px; transform: scale(0); transition: transform .3s var(--ease); }
.cart-count.show { transform: scale(1); }
.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line-soft); border-radius: 12px; }
.burger span { width: 20px; height: 2px; background: var(--ink); transition: .3s; }

/* ---------- Buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 14.5px; letter-spacing: .02em; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; }
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1206; box-shadow: var(--glow-gold); }
.btn-gold::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.6) 50%, transparent 70%); transform: translateX(-120%); transition: transform .7s var(--ease); }
.btn-gold:hover::after { transform: translateX(120%); }
.btn-gold:hover { transform: translateY(-3px); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(212,175,55,.07); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 11px 20px; font-size: 13px; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .40s; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 40px; overflow: hidden; }
.hero-stage { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.spotlight { position: absolute; top: -20%; left: 50%; width: 1100px; height: 1100px; transform: translateX(-50%); background: radial-gradient(circle, rgba(212,175,55,.18), transparent 60%); filter: blur(10px); animation: breathe 9s var(--ease) infinite; }
@keyframes breathe { 50% { opacity: .55; transform: translateX(-50%) scale(1.08); } }

/* Floating cards */
.float-card {
  position: absolute; width: 120px; aspect-ratio: 5/7; border-radius: 12px;
  background: linear-gradient(160deg, #fdfbf5, #efe8d6);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7), inset 0 0 0 1px rgba(0,0,0,.08);
  display: grid; place-items: center; will-change: transform;
  animation: floatcard var(--dur,11s) var(--ease) infinite;
}
.float-card .pip { font-family: var(--font-serif); font-weight: 700; font-size: 30px; }
.float-card.red .pip { color: var(--crimson); }
.float-card.black .pip { color: #141414; }
.float-card .corner { position: absolute; font-weight: 800; font-size: 13px; line-height: 1; }
.float-card .tl { top: 9px; left: 10px; }
.float-card .br { bottom: 9px; right: 10px; transform: rotate(180deg); }
.float-card.red .corner { color: var(--crimson); }
.float-card.black .corner { color: #141414; }
.fc1 { top: 14%; left: 8%;  --dur: 12s; transform: rotate(-14deg); }
.fc2 { top: 22%; right: 9%; --dur: 14s; transform: rotate(11deg); animation-delay: -3s; }
.fc3 { bottom: 16%; left: 14%; --dur: 13s; transform: rotate(8deg); animation-delay: -6s; }
.fc4 { bottom: 20%; right: 13%; --dur: 15s; transform: rotate(-9deg); animation-delay: -2s; }
@keyframes floatcard { 50% { transform: translateY(-26px) rotate(var(--r,0deg)); } }

/* drifting sparks */
.spark { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 10px 2px rgba(240,213,122,.7); animation: rise linear infinite; opacity: 0; }
@keyframes rise { 0% { transform: translateY(0) scale(.4); opacity: 0; } 12% { opacity: 1; } 100% { transform: translateY(-90vh) scale(1); opacity: 0; } }

.hero-content { position: relative; z-index: 2; max-width: 880px; margin-inline: auto; text-align: center; }
.hero h1 { margin: 22px 0 20px; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; transform: translateY(110%); animation: rise-in 1s var(--ease) forwards; }
.hero h1 .line:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes rise-in { to { transform: none; } }
.hero .lead { margin: 0 auto 34px; text-align: center; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 9px; color: var(--ink-mute); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; z-index: 2; }
.hero-scroll .mouse { width: 22px; height: 36px; border: 1.5px solid var(--ink-mute); border-radius: 12px; position: relative; }
.hero-scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; width: 3px; height: 6px; background: var(--gold); border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 50% { transform: translate(-50%, 10px); opacity: .3; } }

/* ---------- Trust marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line-soft); padding: 22px 0; --gap: 60px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: var(--gap); width: max-content; animation: marq 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.7rem); color: var(--ink); display: inline-flex; align-items: center; gap: var(--gap); }
.marquee-track span::after { content: "✦"; color: var(--gold); font-size: .7em; }
@keyframes marq { to { transform: translateX(calc(-50% - var(--gap)/2)); } }

/* ---------- Section heading block ---------- */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin: 18px 0 16px; }

/* ---------- Two ways to learn ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.learn-card { position: relative; padding: 42px; border-radius: var(--radius-lg); border: 1px solid var(--line-soft); background: linear-gradient(160deg, var(--bg-2), var(--bg)); overflow: hidden; transition: transform .5s var(--ease), border-color .5s; }
.learn-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at var(--mx,50%) var(--my,0%), rgba(212,175,55,.14), transparent 60%); opacity: 0; transition: opacity .4s; }
.learn-card:hover { transform: translateY(-6px); border-color: var(--line); }
.learn-card:hover::before { opacity: 1; }
.learn-card .tag { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.learn-card h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 14px 0 14px; }
.learn-card p { color: var(--ink-soft); margin-bottom: 26px; }
.learn-card .meta { display: flex; gap: 22px; margin-bottom: 28px; }
.learn-card .meta div { font-size: 13px; color: var(--ink-mute); }
.learn-card .meta b { display: block; font-family: var(--font-display); font-size: 22px; color: var(--ink); }
.learn-icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; background: rgba(212,175,55,.1); border: 1px solid var(--line); color: var(--gold); margin-bottom: 22px; }
.learn-icon svg { width: 28px; height: 28px; }

/* ==========================================================================
   COURSE / PRODUCT CARDS
   ========================================================================== */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--panel); border: 1px solid var(--line-soft); transition: transform .5s var(--ease), border-color .4s, box-shadow .5s; }
.card:hover { transform: translateY(-7px); border-color: var(--line); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; display: grid; place-items: center; }
.card-media .art { position: absolute; inset: 0; }
.card-media .play { position: relative; z-index: 2; width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: rgba(10,10,15,.4); border: 1px solid rgba(245,241,234,.4); backdrop-filter: blur(4px); transform: scale(.85); opacity: 0; transition: .4s var(--ease); }
.card:hover .play { transform: scale(1); opacity: 1; }
.card-media .play svg { width: 22px; height: 22px; color: #fff; margin-left: 3px; }
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,15,.85), transparent 55%); }
.badge-row { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; gap: 7px; }
.badge { font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 10px; border-radius: 6px; backdrop-filter: blur(6px); }
.badge.new { background: rgba(109,59,245,.85); color: #fff; }
.badge.best { background: rgba(212,175,55,.92); color: #1a1206; }
.badge.sale { background: rgba(200,16,46,.92); color: #fff; }
.badge.feat { background: rgba(245,241,234,.92); color: #111; }
.card-body { padding: 20px; }
.card-cat { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.card-body h3 { font-family: var(--font-body); font-weight: 700; font-size: 17px; line-height: 1.3; margin: 9px 0 8px; }
.card-desc { font-size: 13.5px; color: var(--ink-mute); margin-bottom: 14px; min-height: 38px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { display: flex; align-items: baseline; gap: 8px; }
.price .now { font-family: var(--font-display); font-size: 20px; color: var(--ink); }
.price .was { font-size: 13px; color: var(--ink-mute); text-decoration: line-through; }
.stars { display: flex; gap: 2px; color: var(--gold); font-size: 12px; margin-bottom: 10px; }
.stars .n { color: var(--ink-mute); margin-left: 6px; }
.add-cart { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: rgba(212,175,55,.1); border: 1px solid var(--line); color: var(--gold); transition: .3s; flex: none; }
.add-cart:hover { background: var(--gold); color: #1a1206; }
.add-cart svg { width: 18px; height: 18px; }
.level-pill { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line-soft); color: var(--ink-soft); }

/* Card art generator (CSS playing-card motifs, no external images) */
.art { background:
  radial-gradient(120% 120% at 30% 20%, rgba(212,175,55,.16), transparent 50%),
  linear-gradient(150deg, var(--c1, #20131a), var(--c2, #0c0c14)); }
.art .suit { position: absolute; inset: 0; display: grid; place-items: center; font-size: 84px; color: rgba(245,241,234,.07); }
.art.v1 { --c1:#2a1622; --c2:#0c0c14; }
.art.v2 { --c1:#14202e; --c2:#0a0e16; }
.art.v3 { --c1:#241a0e; --c2:#120d08; }
.art.v4 { --c1:#1c1430; --c2:#0b0a16; }
.art.v5 { --c1:#102420; --c2:#080f0d; }

/* ---------- Filters ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 34px; padding: 16px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: rgba(255,253,248,.7); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; border: 1px solid var(--line-soft); color: var(--ink-soft); transition: .3s; }
.chip:hover { border-color: var(--line); color: var(--ink); }
.chip.active { background: var(--gold); color: #1a1206; border-color: var(--gold); }
.filter-right { display: flex; gap: 10px; align-items: center; }
.search-box { display: flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid var(--line-soft); border-radius: 999px; background: var(--bg); }
.search-box input { background: none; border: none; color: var(--ink); outline: none; font-size: 13.5px; width: 150px; }
.search-box svg { width: 16px; height: 16px; color: var(--ink-mute); }
.select { padding: 9px 14px; border: 1px solid var(--line-soft); border-radius: 999px; background: var(--bg); color: var(--ink-soft); font-size: 13px; outline: none; }
.card.hide { display: none; }
.empty-state { text-align: center; padding: 60px; color: var(--ink-mute); display: none; }
.empty-state.show { display: block; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.stat { text-align: center; padding: 34px 18px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: linear-gradient(160deg, var(--bg-2), var(--bg)); }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.4rem); color: var(--gold); }
.stat .lbl { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-top: 6px; }

/* ---------- Levels (programs) ---------- */
.levels { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.level { position: relative; padding: 38px 32px; border-radius: var(--radius-lg); border: 1px solid var(--line-soft); background: linear-gradient(170deg, var(--bg-2), var(--bg)); overflow: hidden; transition: .5s var(--ease); }
.level:hover { transform: translateY(-8px); border-color: var(--line); }
.level .ribbon { position: absolute; top: 20px; right: -34px; transform: rotate(45deg); background: var(--gold); color: #1a1206; font-size: 11px; font-weight: 800; padding: 5px 40px; letter-spacing: .08em; }
.level .lvl-no { font-family: var(--font-display); font-size: 60px; color: rgba(212,175,55,.18); line-height: 1; }
.level h3 { font-size: 1.6rem; margin: 6px 0 8px; }
.level .sub { color: var(--ink-soft); margin-bottom: 22px; }
.level .price { margin-bottom: 22px; }
.level ul { display: grid; gap: 12px; margin-bottom: 28px; }
.level li { display: flex; gap: 11px; font-size: 14px; color: var(--ink-soft); }
.level li svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.level.featured { border-color: var(--line); box-shadow: var(--glow-gold); }

/* ---------- Lesson / curriculum accordion ---------- */
.curriculum { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.module { border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; background: var(--panel); }
.module-head { display: flex; align-items: center; gap: 16px; padding: 20px 24px; }
.module-head .ix { font-family: var(--font-display); color: var(--gold); font-size: 18px; }
.module-head h4 { flex: 1; font-family: var(--font-body); font-weight: 700; font-size: 16px; }
.module-head .meta { font-size: 12.5px; color: var(--ink-mute); }
.module-head .chev { transition: transform .4s var(--ease); color: var(--ink-mute); }
.module.open .module-head .chev { transform: rotate(180deg); }
.module-body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.module.open .module-body { max-height: 420px; }
.module-body ul { padding: 4px 24px 22px; display: grid; gap: 2px; }
.module-body li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line-soft); font-size: 14px; color: var(--ink-soft); }
.module-body li svg { width: 16px; height: 16px; color: var(--gold); }
.module-body li .dur { margin-left: auto; font-size: 12px; color: var(--ink-mute); }

/* ---------- Testimonials ---------- */
.testi { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.quote { padding: 32px; border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--panel); position: relative; }
.quote .mk { font-family: var(--font-serif); font-size: 70px; line-height: .5; color: rgba(212,175,55,.25); height: 28px; }
.quote p { color: var(--ink-soft); margin-bottom: 22px; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #1a1206; background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.quote .who b { display: block; font-size: 14px; }
.quote .who span { font-size: 12.5px; color: var(--ink-mute); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line-soft); border-radius: 14px; background: var(--panel); overflow: hidden; }
.faq-q { display: flex; align-items: center; gap: 16px; padding: 22px 24px; font-weight: 700; font-size: 16px; }
.faq-q .ic { margin-left: auto; flex: none; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; border: 1px solid var(--line-soft); position: relative; transition: .3s; }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; background: var(--gold); }
.faq-q .ic::before { width: 11px; height: 2px; }
.faq-q .ic::after { width: 2px; height: 11px; transition: transform .3s; }
.faq-item.open .ic::after { transform: rotate(90deg) scaleX(0); }
.faq-item.open .ic { background: rgba(212,175,55,.1); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { padding: 0 24px 24px; color: var(--ink-soft); font-size: 14.5px; }
.faq-item.open .faq-a { max-height: 240px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; text-align: center; padding: clamp(60px,8vw,110px) 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(150deg, rgba(212,175,55,.1), rgba(109,59,245,.08)); }
.cta-band h2 { margin-bottom: 18px; }
.cta-band .lead { margin: 0 auto 30px; }

/* ---------- Newsletter ---------- */
.news-form { display: flex; gap: 12px; max-width: 480px; margin: 26px auto 0; }
.news-form input { flex: 1; padding: 15px 22px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,253,248,.8); color: var(--ink); outline: none; }
.news-form input:focus { border-color: var(--gold); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { border-top: 1px solid var(--line-soft); padding-top: 70px; margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.foot-grid h5 { font-family: var(--font-body); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 18px; }
.foot-grid a { display: block; color: var(--ink-soft); font-size: 14px; padding: 6px 0; transition: color .3s, padding-left .3s; }
.foot-grid a:hover { color: var(--gold); padding-left: 6px; }
.foot-about p { color: var(--ink-soft); font-size: 14px; margin: 16px 0 20px; max-width: 34ch; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-soft); border-radius: 11px; color: var(--ink-soft); padding: 0; }
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.socials svg { width: 17px; height: 17px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 26px 0; border-top: 1px solid var(--line-soft); font-size: 13px; color: var(--ink-mute); }
.foot-bottom .pays { display: flex; gap: 8px; }
.foot-bottom .pays span { padding: 4px 10px; border: 1px solid var(--line-soft); border-radius: 6px; font-size: 11px; }

/* ==========================================================================
   CART DRAWER + TOAST
   ========================================================================== */
.toast { position: fixed; top: 88px; right: 24px; z-index: 9998; display: flex; align-items: center; gap: 13px; padding: 15px 20px; background: var(--bg-3); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 12px; box-shadow: var(--shadow); transform: translateX(140%); transition: transform .5s var(--ease); max-width: 340px; }
.toast.show { transform: none; }
.toast .ok { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(46,204,113,.15); color: #2ecc71; flex: none; }
.toast .ok svg { width: 18px; height: 18px; }
.toast b { display: block; font-size: 14px; }
.toast span { font-size: 12.5px; color: var(--ink-mute); }

.drawer-overlay { position: fixed; inset: 0; z-index: 9990; background: rgba(0,0,0,.6); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: .4s; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); z-index: 9991; background: var(--bg-2); border-left: 1px solid var(--line-soft); transform: translateX(100%); transition: transform .5s var(--ease); display: flex; flex-direction: column; }
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--line-soft); }
.drawer-head h3 { font-family: var(--font-display); font-size: 20px; }
.drawer-close { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-soft); display: grid; place-items: center; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.drawer-empty { text-align: center; color: var(--ink-mute); padding: 60px 0; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.cart-item .ci-art { width: 64px; height: 64px; border-radius: 10px; flex: none; position: relative; overflow: hidden; }
.cart-item .ci-info { flex: 1; }
.cart-item .ci-info b { font-size: 14px; display: block; }
.cart-item .ci-info .ci-cat { font-size: 11.5px; color: var(--gold); }
.cart-item .ci-info .ci-price { font-family: var(--font-display); color: var(--ink); margin-top: 4px; }
.cart-item .ci-rm { color: var(--ink-mute); align-self: flex-start; font-size: 18px; }
.cart-item .ci-rm:hover { color: var(--crimson-2); }
.drawer-foot { padding: 22px 24px; border-top: 1px solid var(--line-soft); }
.drawer-foot .row { display: flex; justify-content: space-between; margin-bottom: 16px; }
.drawer-foot .row b { font-family: var(--font-display); font-size: 22px; color: var(--gold); }

/* ==========================================================================
   PAGE HEADER (inner pages)
   ========================================================================== */
.page-head { padding: 80px 0 30px; text-align: center; position: relative; }
.page-head .crumbs { font-size: 12.5px; color: var(--ink-mute); letter-spacing: .1em; margin-bottom: 18px; }
.page-head .crumbs a:hover { color: var(--gold); }
.page-head h1 { margin-bottom: 16px; }
.page-head .lead { margin-inline: auto; text-align: center; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-portrait { aspect-ratio: 4/5; border-radius: var(--radius-lg); position: relative; overflow: hidden; border: 1px solid var(--line); background:
  radial-gradient(100% 80% at 50% 0%, rgba(212,175,55,.2), transparent 55%),
  linear-gradient(160deg, #1a1320, #0b0b12); display: grid; place-items: center; }
.about-portrait .glyph { font-family: var(--font-display); font-size: 130px; color: rgba(212,175,55,.22); }
.about-portrait .frame { position: absolute; inset: 16px; border: 1px solid var(--line); border-radius: 18px; }
.timeline { display: grid; gap: 0; margin-top: 30px; }
.tl-item { display: grid; grid-template-columns: 90px 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--line-soft); }
.tl-item .yr { font-family: var(--font-display); color: var(--gold); font-size: 18px; }
.tl-item h4 { font-family: var(--font-body); font-weight: 700; margin-bottom: 5px; }
.tl-item p { color: var(--ink-mute); font-size: 14px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info .ci { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.contact-info .ci .ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: rgba(212,175,55,.1); border: 1px solid var(--line); color: var(--gold); flex: none; }
.contact-info .ci .ic svg { width: 20px; height: 20px; }
.contact-info .ci b { display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.contact-info .ci a, .contact-info .ci p { font-size: 16px; color: var(--ink); }
.form { padding: 36px; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--bg-2), var(--bg)); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--ink-soft); }
.field input, .field textarea, .field select { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line-soft); background: var(--bg); color: var(--ink); font-family: inherit; font-size: 14.5px; outline: none; transition: border-color .3s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 12px; color: var(--ink-mute); margin-top: 6px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .levels, .testi { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(320px,84vw); flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 100px 28px; background: var(--bg-2); border-left: 1px solid var(--line-soft); transform: translateX(100%); transition: transform .45s var(--ease); gap: 4px; }
  .nav-links.open { transform: none; }
  .nav-links a { width: 100%; font-size: 18px; padding: 14px 0; }
  .burger { display: flex; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .split, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .news-form .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   DRAWER SUCCESS FLASH
   ========================================================================== */
.drawer-flash { max-height: 0; overflow: hidden; padding: 0 24px; background: rgba(31,157,85,.12); color: #1a814a; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; display: flex; align-items: center; transition: max-height .4s var(--ease), padding .4s var(--ease); }
.drawer-flash.show { max-height: 64px; padding: 14px 24px; }
.drawer-flash .dot { display: inline-grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: #2ecc71; color: #06281a; font-size: 11px; font-weight: 900; margin-right: 9px; flex: none; }
.drawer-flash b { color: var(--ink); margin: 0 4px; }

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */
.co-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; align-items: start; }
.co-block { border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--bg-2), var(--bg)); padding: 30px; margin-bottom: 22px; }
.co-block h3 { font-family: var(--font-display); font-size: 1.3rem; display: flex; align-items: center; margin-bottom: 6px; }
.co-block .sub { color: var(--ink-mute); font-size: 13px; margin-bottom: 24px; }
.co-step { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(212,175,55,.12); border: 1px solid var(--line); color: var(--gold); font-size: 13px; font-weight: 800; margin-right: 12px; flex: none; }

.pay-methods { display: grid; gap: 12px; }
.pay { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid var(--line-soft); border-radius: 14px; transition: border-color .3s, background .3s; }
.pay:hover { border-color: var(--line); }
.pay.sel { border-color: var(--gold); background: rgba(212,175,55,.06); }
.pay input { accent-color: var(--gold); width: 18px; height: 18px; flex: none; }
.pay b { font-size: 14.5px; }
.pay small { display: block; color: var(--ink-mute); font-size: 12px; margin-top: 2px; }
.pay .pi { margin-left: auto; display: flex; gap: 6px; flex-wrap: wrap; }
.pay .pi span { padding: 3px 9px; border: 1px solid var(--line-soft); border-radius: 6px; font-size: 10.5px; color: var(--ink-soft); }
.razor-note { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 12.5px; color: var(--ink-mute); }
.razor-note b { color: #3a5bd9; }
.pay-ic { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: rgba(212,175,55,.08); border: 1px solid var(--line-soft); color: var(--gold); }
.pay-ic svg { width: 20px; height: 20px; }
.pay-txt { flex: 1; }

/* order summary aside */
.co-aside { position: sticky; top: 100px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--bg-2), var(--bg)); padding: 28px; box-shadow: var(--shadow); }
.co-aside h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 18px; }
.co-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.co-item .ci-art { width: 54px; height: 54px; border-radius: 10px; flex: none; position: relative; overflow: hidden; display: grid; place-items: center; }
.co-item .ci-art .suit { font-size: 24px; color: rgba(245,241,234,.14); }
.co-item-info { flex: 1; }
.co-item-info b { font-size: 14px; display: block; line-height: 1.3; }
.co-item-info .ci-cat { font-size: 11px; color: var(--gold); }
.co-item-price { text-align: right; font-family: var(--font-display); font-size: 15px; }
.co-rm { display: block; font-size: 11px; color: var(--ink-mute); margin-top: 8px; }
.co-rm:hover { color: var(--crimson-2); }
.qty { display: inline-flex; align-items: center; margin-top: 10px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.qty button { display: grid; place-items: center; width: 34px; height: 34px; color: var(--ink); font-size: 20px; line-height: 1; font-weight: 600; transition: background .25s, color .25s; }
.qty button:hover { background: rgba(212,175,55,.14); color: var(--gold); }
.qty span { min-width: 40px; height: 34px; display: grid; place-items: center; text-align: center; font-size: 14px; font-weight: 700; border-inline: 1px solid var(--line-soft); }

.co-coupon { display: flex; gap: 10px; margin: 20px 0 6px; }
.co-coupon input { flex: 1; padding: 12px 14px; border: 1px solid var(--line-soft); border-radius: 10px; background: var(--bg); color: var(--ink); outline: none; text-transform: uppercase; font-size: 13.5px; letter-spacing: .05em; }
.co-coupon input:focus { border-color: var(--gold); }
.co-coupon-msg { font-size: 12.5px; min-height: 16px; }
.co-coupon-msg.ok { color: #1a814a; }
.co-coupon-msg.err { color: var(--crimson-2); }

.co-totals { margin-top: 14px; border-top: 1px solid var(--line-soft); padding-top: 18px; }
.co-totals .row { display: flex; justify-content: space-between; margin-bottom: 13px; color: var(--ink-soft); font-size: 14px; }
.co-totals .row.disc { color: #1a814a; }
.co-totals .row.grand { border-top: 1px solid var(--line-soft); padding-top: 16px; margin-top: 2px; color: var(--ink); font-size: 16px; align-items: baseline; }
.co-totals .row.grand b { font-family: var(--font-display); font-size: 26px; color: var(--gold); }
.co-secure { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: var(--ink-mute); margin-top: 16px; }
.co-empty { text-align: center; padding: 80px 20px; }
.co-empty .h-md { margin-bottom: 12px; }
.co-items { margin-bottom: 4px; }
.co-trust { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 18px; }
.co-trust span { padding: 4px 10px; border: 1px solid var(--line-soft); border-radius: 6px; font-size: 11px; color: var(--ink-soft); }
.empty-card { text-align: center; max-width: 480px; margin: 40px auto; padding: 56px 30px; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--bg-2), var(--bg)); }
.empty-card .ic { width: 64px; height: 64px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 16px; background: rgba(212,175,55,.1); border: 1px solid var(--line); color: var(--gold); }
.empty-card .ic svg { width: 30px; height: 30px; }
.empty-card .lead { margin: 10px 0 24px; }
.empty-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   SUCCESS / CONFIRMATION PAGE
   ========================================================================== */
.success { max-width: 660px; margin-inline: auto; text-align: center; padding: 30px 0 60px; }
.success .check { width: 104px; height: 104px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 26px; background: radial-gradient(circle, rgba(46,204,113,.25), transparent 70%); animation: pop .6s var(--ease) both; }
.success .check svg { width: 58px; height: 58px; color: #2ecc71; }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.success h1 { margin-bottom: 14px; }
.order-card { border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--bg-2), var(--bg)); padding: 28px; text-align: left; margin: 32px 0; }
.order-card .oc-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--line-soft); margin-bottom: 8px; }
.order-card .oc-head .oid { font-family: var(--font-display); color: var(--gold); font-size: 18px; }
.order-card ul { margin: 8px 0 14px; }
.order-card ul li { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14px; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); }
.order-card .oc-total { display: flex; justify-content: space-between; padding-top: 14px; font-size: 16px; }
.order-card .oc-total b { font-family: var(--font-display); font-size: 22px; color: var(--gold); }
.next-steps { display: grid; gap: 14px; text-align: left; margin: 28px 0; }
.next-steps .ns { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--line-soft); border-radius: 14px; background: var(--panel); }
.next-steps .ns .ic { width: 42px; height: 42px; border-radius: 12px; flex: none; display: grid; place-items: center; background: rgba(212,175,55,.1); border: 1px solid var(--line); color: var(--gold); }
.next-steps .ns .ic svg { width: 20px; height: 20px; }
.next-steps .ns b { display: block; margin-bottom: 3px; }
.next-steps .ns p { color: var(--ink-mute); font-size: 13.5px; }

@media (max-width: 900px) {
  .co-grid { grid-template-columns: 1fr; }
  .co-aside { position: static; }
}

/* Program tile cover thumbnail */
.lvl-cover { display: block; border-radius: 12px; overflow: hidden; margin-bottom: 18px; aspect-ratio: 16/9; border: 1px solid var(--line-soft); }
.lvl-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.level:hover .lvl-cover img { transform: scale(1.05); }
.lvl-detail { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--gold); }
.lvl-detail svg { width: 15px; height: 15px; }

/* ==========================================================================
   COURSE DETAIL PAGE
   ========================================================================== */
.card-media img.art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-media-link { display: block; }

.course-hero { padding-top: 24px; }
.ch-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 44px; align-items: start; }
.ch-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4/3; }
.ch-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ch-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,15,.6), transparent 50%); pointer-events: none; }
.ch-play { position: absolute; inset: 0; margin: auto; width: 74px; height: 74px; opacity: 1; transform: none; z-index: 3; }
.ch-play svg { width: 24px; height: 24px; }
.ch-preview-tag { position: absolute; left: 16px; bottom: 16px; z-index: 3; font-size: 12px; font-weight: 600; letter-spacing: .04em; color: var(--ink-soft); background: rgba(10,10,15,.55); border: 1px solid var(--line-soft); backdrop-filter: blur(6px); padding: 7px 12px; border-radius: 999px; }
.ch-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 12px; }
.ch-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; border: 1px solid var(--line-soft); cursor: pointer; transition: border-color .4s, transform .5s var(--ease); }
.ch-gallery img:hover { border-color: var(--gold); transform: translateY(-3px); }

.ch-info .card-cat { font-size: 12px; letter-spacing: .18em; }
.ch-rate { display: flex; align-items: center; gap: 10px; }
.ch-rate .stars { margin: 0; font-size: 15px; }
.ch-rate b { font-family: var(--font-display); color: var(--ink); }
.ch-rate .muted { color: var(--ink-mute); font-size: 13.5px; }

.ch-meta { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin: 26px 0; }
.chip-meta { padding: 14px 12px; border: 1px solid var(--line-soft); border-radius: 14px; background: rgba(255,253,248,.7); text-align: center; }
.chip-meta .k { display: block; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 5px; }
.chip-meta .v { font-family: var(--font-display); color: var(--gold); font-size: 16px; }

.buy-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(212,175,55,.06), var(--bg-2) 40%); padding: 22px; box-shadow: var(--glow-gold); }
.buy-card .bc-price { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.buy-card .price .now { font-size: 30px; }
.buy-card .price .was { font-size: 15px; }
.save-pill { font-size: 11.5px; font-weight: 800; letter-spacing: .04em; padding: 6px 11px; border-radius: 999px; background: rgba(200,16,46,.18); color: var(--crimson-2); border: 1px solid rgba(200,16,46,.3); }
.bc-trust { margin-top: 16px; display: grid; gap: 9px; }
.bc-trust li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-soft); }
.bc-trust li svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.btn-block + .btn-block { margin-top: 10px; }

.ch-cols { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.ch-block { margin-bottom: 44px; }
.ch-block .h-md { margin-bottom: 18px; }
.learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.learn-pill { display: flex; align-items: flex-start; gap: 12px; padding: 16px; border: 1px solid var(--line-soft); border-radius: 14px; background: var(--panel); font-size: 14px; color: var(--ink-soft); transition: border-color .4s; }
.learn-pill:hover { border-color: var(--line); }
.learn-pill svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 1px; }
.req-list { display: grid; gap: 10px; max-width: 640px; }
.req-list li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--ink-soft); }
.req-list li svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

.instructor { display: flex; gap: 18px; align-items: flex-start; padding: 24px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel); }
.instr-av { width: 64px; height: 64px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--font-display); font-size: 22px; color: var(--gold); background: rgba(212,175,55,.12); border: 1px solid var(--line); }
.instructor p { color: var(--ink-mute); font-size: 14px; margin-top: 8px; }

.ch-side { position: sticky; top: 90px; }
.sticky-buy .sb-cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; aspect-ratio: 4/3; border: 1px solid var(--line-soft); }
.sticky-buy .sb-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 980px) {
  .ch-grid { grid-template-columns: 1fr; gap: 26px; }
  .ch-cols { grid-template-columns: 1fr; }
  .ch-side { position: static; }
  .ch-meta { grid-template-columns: repeat(2,1fr); }
  .learn-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HOMEPAGE — ABOUT + GALLERY
   ========================================================================== */
.about-home { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.about-figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4/3; }
.about-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-figure .af-badge { position: absolute; left: 18px; bottom: 18px; display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 14px; background: rgba(10,10,15,.62); border: 1px solid var(--line); backdrop-filter: blur(8px); }
.about-figure .af-badge b { font-family: var(--font-display); color: var(--gold); font-size: 22px; display: block; line-height: 1; }
.about-figure .af-badge span { font-size: 11.5px; color: var(--ink-mute); letter-spacing: .1em; text-transform: uppercase; }
.about-copy .lead { margin: 18px 0 22px; }
.about-points { display: grid; gap: 16px; margin: 24px 0 28px; }
.about-points .pt { display: flex; gap: 14px; align-items: flex-start; }
.about-points .pt .ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; background: rgba(212,175,55,.1); border: 1px solid var(--line); color: var(--gold); }
.about-points .pt .ic svg { width: 21px; height: 21px; }
.about-points .pt b { display: block; margin-bottom: 3px; font-size: 15px; }
.about-points .pt p { color: var(--ink-mute); font-size: 13.5px; }

.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.gallery-grid .gi { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); aspect-ratio: 3/4; transition: transform .55s var(--ease), border-color .4s; }
.gallery-grid .gi:hover { transform: translateY(-6px); border-color: var(--gold); }
.gallery-grid .gi img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-grid .gi span { position: absolute; left: 14px; bottom: 14px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.gallery-grid .gi::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,15,.8), transparent 55%); }

@media (max-width: 900px) {
  .about-home { grid-template-columns: 1fr; gap: 30px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}

/* ==========================================================================
   ACCOUNT / STUDENT DASHBOARD
   ========================================================================== */
.acct-link { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line-soft); border-radius: 12px; color: var(--ink); transition: border-color .3s, background .3s; }
.acct-link:hover { border-color: var(--gold); background: rgba(212,175,55,.08); }
.acct-link svg { width: 20px; height: 20px; }

.acct-head { padding: 40px 0 22px; }
.acct-greet { display: flex; align-items: center; gap: 18px; }
.acct-av { width: 66px; height: 66px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--font-display); font-size: 25px; color: #1a1206; background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: var(--glow-gold); }
.acct-greet h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); line-height: 1.1; }
.acct-greet .acct-sub { color: var(--ink-soft); font-size: 14px; margin-top: 4px; }

.acct-wrap { display: grid; grid-template-columns: 248px 1fr; gap: 28px; align-items: start; padding-bottom: 90px; }
.acct-side { position: sticky; top: 90px; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: var(--panel); padding: 12px; }
.acct-nav { display: grid; gap: 4px; }
.acct-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; font-size: 14px; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: background .3s, color .3s; }
.acct-nav a svg { width: 18px; height: 18px; flex: none; }
.acct-nav a:hover { background: rgba(212,175,55,.06); color: var(--ink); }
.acct-nav a.active { background: rgba(212,175,55,.12); color: var(--gold); }
.acct-nav a.danger:hover { color: var(--crimson-2); background: rgba(200,16,46,.08); }

.acct-panel { display: none; }
.acct-panel.active { display: block; animation: acctFade .5s var(--ease); }
@keyframes acctFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.acct-panel > h2 { font-size: 1.5rem; margin-bottom: 6px; }
.acct-panel > .sub { color: var(--ink-mute); font-size: 14px; margin-bottom: 26px; }

.ac-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 32px; }
.ac-stat { border: 1px solid var(--line-soft); border-radius: var(--radius); background: linear-gradient(160deg, var(--bg-2), var(--bg)); padding: 22px; }
.ac-stat .num { font-family: var(--font-display); color: var(--gold); font-size: 30px; line-height: 1; }
.ac-stat .lbl { color: var(--ink-mute); font-size: 13px; margin-top: 8px; }

.ac-course { display: grid; grid-template-columns: 116px 1fr auto; gap: 18px; align-items: center; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel); padding: 14px; margin-bottom: 12px; transition: border-color .4s; }
.ac-course:hover { border-color: var(--line); }
.ac-course .thumb { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; border: 1px solid var(--line-soft); }
.ac-course .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ac-course .cat { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.ac-course h4 { font-size: 15px; margin: 6px 0 8px; }
.prog { height: 7px; border-radius: 999px; background: rgba(32,26,18,.10); overflow: hidden; margin-bottom: 6px; }
.prog > span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold-deep), var(--gold-2)); }
.ac-course .pmeta { font-size: 12px; color: var(--ink-mute); }

.ac-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ac-table th, .ac-table td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--line-soft); }
.ac-table th { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.ac-table td .o-name { color: var(--ink); }
.stat-pill { display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: rgba(31,157,85,.15); color: #1a814a; }

.ac-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 660px; }
.ac-form .full { grid-column: 1 / -1; }
.ac-field label { display: block; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.ac-field input { width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line-soft); background: var(--bg-2); color: var(--ink); font-family: var(--font-body); font-size: 14px; transition: border-color .3s; }
.ac-field input:focus { outline: none; border-color: var(--gold); }
.ac-form .actions { display: flex; gap: 12px; margin-top: 6px; }

@media (max-width: 860px) {
  .acct-wrap { grid-template-columns: 1fr; }
  .acct-side { position: static; }
  .acct-nav { grid-auto-flow: column; grid-auto-columns: max-content; overflow-x: auto; }
  .ac-stats { grid-template-columns: 1fr; }
  .ac-course { grid-template-columns: 84px 1fr; }
  .ac-course .ac-cta { grid-column: 1 / -1; }
  .ac-form { grid-template-columns: 1fr; }
  .ac-table thead { display: none; }
  .ac-table tr { display: grid; grid-template-columns: 1fr 1fr; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
  .ac-table td { border: 0; padding: 6px 12px; }
}

/* ==========================================================================
   MILESTONES STRIP  (home + about single coloured band)
   ========================================================================== */
.milestones { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(120deg, rgba(212,175,55,.10), rgba(109,59,245,.06)); box-shadow: var(--shadow); }
.milestones .ms { position: relative; text-align: center; padding: clamp(28px,4vw,46px) 20px; border-right: 1px solid var(--line-soft); }
.milestones .ms:last-child { border-right: 0; }
.milestones .ms .num { font-family: var(--font-display); font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1; color: var(--gold); }
.milestones .ms .num .suffix { color: var(--gold-2); }
.milestones .ms .lbl { font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-top: 10px; }
/* solid gold variant — About page single continuous coloured section */
.milestones--gold { background: linear-gradient(115deg, var(--gold-deep), var(--gold) 46%, var(--gold-2)); border-color: transparent; box-shadow: 0 30px 70px -30px rgba(212,175,55,.55); }
.milestones--gold .ms { border-color: rgba(26,18,6,.16); }
.milestones--gold .ms .num, .milestones--gold .ms .num .suffix { color: #1a1206; }
.milestones--gold .ms .lbl { color: rgba(26,18,6,.72); }
@media (max-width: 760px) { .milestones { grid-template-columns: 1fr 1fr; } .milestones .ms:nth-child(2n) { border-right: 0; } .milestones .ms:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); } }

/* ==========================================================================
   HORIZONTAL SCROLL RAILS  (Ellusionist-style)
   ========================================================================== */
.hscroll-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.hscroll-head .eyebrow { color: var(--gold); }
.hscroll-head h2 { margin: 12px 0 0; }
.hscroll-head .view-all { flex: none; }
.hrow { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x proximity; padding: 6px 0 18px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: rgba(212,175,55,.4) transparent; }
.hrow::-webkit-scrollbar { height: 8px; }
.hrow::-webkit-scrollbar-track { background: transparent; }
.hrow::-webkit-scrollbar-thumb { background: rgba(212,175,55,.32); border-radius: 999px; }
.hrow::-webkit-scrollbar-thumb:hover { background: rgba(212,175,55,.55); }
.hrow > .card { flex: 0 0 300px; scroll-snap-align: start; }
@media (max-width: 600px) { .hrow > .card { flex-basis: 80%; } }

/* ==========================================================================
   LIGHT CARD SECTION  (make cards stand out — used across pages)
   ========================================================================== */
.section-light { background: linear-gradient(180deg, #f7f3ea, #efe8d8); color: #1c1710; }
.section-light .eyebrow { color: var(--gold-deep); }
.section-light h1, .section-light h2, .section-light h3, .section-light .h-lg, .section-light .h-md { color: #16110a; }
.section-light .lead, .section-light p, .section-light .muted { color: #6a6152; }
.section-light .hscroll-head .eyebrow { color: var(--gold-deep); }
.section-light .card { background: #fffdf8; border-color: rgba(26,18,6,.09); box-shadow: 0 22px 44px -26px rgba(60,45,10,.4); }
.section-light .card:hover { border-color: rgba(212,175,55,.55); box-shadow: 0 30px 60px -26px rgba(60,45,10,.5); }
.section-light .card-body h3 { color: #16110a; }
.section-light .card-cat { color: var(--gold-deep); }
.section-light .card-desc { color: #6d6456; }
.section-light .price .now { color: #16110a; }
.section-light .price .was { color: #a49a88; }
.section-light .stars .n { color: #9a917f; }
.section-light .btn-ghost { border-color: rgba(26,18,6,.18); color: #16110a; }
.section-light .btn-ghost:hover { border-color: var(--gold-deep); background: rgba(212,175,55,.12); }
.section-light .hrow::-webkit-scrollbar-thumb { background: rgba(138,109,31,.35); }

/* ==========================================================================
   PROGRAM CARD EXTRAS  (Popular badge, Coming Soon, View Details)
   ========================================================================== */
.badge-pop { position: absolute; top: 20px; left: 20px; z-index: 4; display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1206; font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; box-shadow: var(--glow-gold); }
.level.soon { opacity: .96; }
.level .lvl-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-soon { display: inline-flex; align-items: center; gap: 9px; padding: 15px 26px; border-radius: 999px; font-weight: 700; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; background: rgba(32,26,18,.04); border: 1px solid var(--line-soft); color: var(--ink-mute); cursor: not-allowed; }
.btn-soon svg { width: 16px; height: 16px; }
.lvl-view { font-size: 13.5px; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 7px; transition: gap .3s var(--ease); }
.lvl-view svg { width: 16px; height: 16px; }
.lvl-view:hover { gap: 12px; }

/* ==========================================================================
   PROGRAM BENEFITS ROW
   ========================================================================== */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit { display: flex; gap: 15px; align-items: flex-start; padding: 24px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel); transition: transform .5s var(--ease), border-color .4s; }
.benefit:hover { transform: translateY(-5px); border-color: var(--line); }
.benefit .ic { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; background: rgba(212,175,55,.1); border: 1px solid var(--line); color: var(--gold); }
.benefit .ic svg { width: 22px; height: 22px; }
.benefit b { display: block; font-size: 15px; margin-bottom: 4px; }
.benefit p { color: var(--ink-mute); font-size: 13px; line-height: 1.45; }
@media (max-width: 860px) { .benefits { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .benefits { grid-template-columns: 1fr; } }

/* ==========================================================================
   DEDICATED PROGRAM ROW  (each flagship program its own horizontal section)
   ========================================================================== */
.prow { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.prow.flip .prow-media { order: 2; }
.prow-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4/3; }
.prow-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prow-media .badge-pop { top: 18px; left: 18px; }
.prow-lvl { font-family: var(--font-display); font-size: 15px; letter-spacing: .06em; color: var(--gold); }
.prow-body h2 { margin: 10px 0 14px; }
.prow-body .lead { margin: 0 0 20px; }
.prow-list { display: grid; gap: 12px; margin: 8px 0 26px; }
.prow-list li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink-soft); }
.prow-list li svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }
.prow-body .price { margin-bottom: 22px; }
@media (max-width: 900px) { .prow { grid-template-columns: 1fr; gap: 28px; } .prow.flip .prow-media { order: 0; } }

/* ==========================================================================
   CTA WITH IMAGE  (all pages)
   ========================================================================== */
.cta-band.cta-img { padding: 0; text-align: left; overflow: hidden; }
.cta-media { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; }
.cta-media .cta-copy { padding: clamp(40px, 6vw, 80px); align-self: center; }
.cta-media .cta-copy .lead { margin: 16px 0 30px; }
.cta-media .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-media .cta-pic { position: relative; min-height: 340px; overflow: hidden; border-left: 1px solid var(--line); }
.cta-media .cta-pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-media .cta-pic::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(212,175,55,.14), transparent 40%); }
@media (max-width: 820px) { .cta-media { grid-template-columns: 1fr; } .cta-media .cta-pic { order: -1; min-height: 230px; border-left: 0; border-bottom: 1px solid var(--line); } }

/* ==========================================================================
   ADD-TO-CART TEXT BUTTON  (tricks / product cards)
   ========================================================================== */
.btn-add { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 20px; border-radius: 11px; font-family: var(--font-body); font-weight: 700; font-size: 13.5px; letter-spacing: .01em; background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1206; box-shadow: var(--glow-gold); transition: transform .28s var(--ease), box-shadow .28s, background .28s, color .28s; }
.btn-add svg { width: 16px; height: 16px; }
.btn-add:hover { transform: translateY(-2px); }
.btn-add.added { background: rgba(46,204,113,.14); color: #2ecc71; box-shadow: none; border: 1px solid rgba(46,204,113,.45); }
.section-light .btn-add.added { background: rgba(46,160,89,.14); color: #1f9d55; }

/* ==========================================================================
   CHECKOUT — LIGHT THEME
   ========================================================================== */
.checkout-light { background: #f7f3ea; color: #1c1710; }
.checkout-light .eyebrow { color: var(--gold-deep); }
.checkout-light h1, .checkout-light h2, .checkout-light h3, .checkout-light h4, .checkout-light .co-title, .checkout-light .co-aside h3 { color: #16110a; }
.checkout-light .lead, .checkout-light p, .checkout-light .co-rm, .checkout-light .co-secure { color: #6a6152; }
.checkout-light .co-block { padding: 26px; border: 1px solid rgba(26,18,6,.1); border-radius: var(--radius-lg); background: #fffdf8; box-shadow: 0 18px 40px -30px rgba(60,45,10,.4); }
.checkout-light .co-title { margin-bottom: 24px; }
.checkout-light .co-step { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1206; }
.checkout-light .co-field label { color: #6a6152; }
.checkout-light input, .checkout-light select, .checkout-light textarea, .checkout-light .co-coupon input { background: #fbf8f1; border-color: rgba(26,18,6,.15); color: #16110a; }
.checkout-light input:focus, .checkout-light select:focus, .checkout-light textarea:focus { border-color: var(--gold-deep); }
.checkout-light input::placeholder { color: #a49a88; }
.checkout-light .co-aside { background: #fffdf8; border-color: rgba(26,18,6,.12); box-shadow: 0 26px 60px -34px rgba(60,45,10,.5); }
.checkout-light .co-item, .checkout-light .co-totals, .checkout-light .co-totals .row.grand { border-color: rgba(26,18,6,.1); }
.checkout-light .co-totals .row { color: #6a6152; }
.checkout-light .co-totals .row.grand { color: #16110a; }
.checkout-light .co-item-info b, .checkout-light .co-item-price { color: #16110a; }
.checkout-light .qty { border-color: rgba(26,18,6,.2); }
.checkout-light .qty button { color: #16110a; }
.checkout-light .qty button:hover { background: rgba(212,175,55,.16); color: var(--gold-deep); }
.checkout-light .qty span { border-color: rgba(26,18,6,.12); }
.checkout-light .pay-method { border-color: rgba(26,18,6,.14); background: #fbf8f1; }
.checkout-light .pay-ic { background: rgba(212,175,55,.12); border-color: rgba(26,18,6,.1); color: var(--gold-deep); }
.checkout-light .co-trust span { border-color: rgba(26,18,6,.14); color: #6a6152; }
.checkout-light .btn-ghost { border-color: rgba(26,18,6,.2); color: #16110a; }

/* ==========================================================================
   AUTH — login / register / forgot password (focused split-screen layout)
   ========================================================================== */
.auth { min-height: 100svh; display: grid; grid-template-columns: 1.04fr 1fr; }

.auth-visual { position: relative; overflow: hidden; padding: 52px 54px; display: flex; flex-direction: column; justify-content: space-between; gap: 30px;
  background:
    radial-gradient(120% 90% at 12% -5%, rgba(201,162,75,.22), transparent 55%),
    radial-gradient(90% 80% at 105% 108%, rgba(109,59,245,.15), transparent 60%),
    linear-gradient(160deg, #14100a, #1e1810 58%, #14100a); }
.auth-visual::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(201,162,75,.16) 1px, transparent 1.4px); background-size: 26px 26px; opacity: .55; -webkit-mask-image: radial-gradient(85% 75% at 45% 25%, #000, transparent 80%); mask-image: radial-gradient(85% 75% at 45% 25%, #000, transparent 80%); }
.auth-visual > * { position: relative; z-index: 1; }
.auth-visual .brand { color: #f5f1ea; }
.auth-visual .brand small { color: rgba(245,241,234,.55); }
.auth-hero h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 3.1vw, 3rem); line-height: 1.05; color: #f5f1ea; letter-spacing: -.01em; }
.auth-hero h2 em { font-family: "Playfair Display", serif; font-style: italic; color: var(--gold-2); }
.auth-hero p { color: rgba(245,241,234,.72); margin-top: 16px; max-width: 44ch; line-height: 1.6; }
.auth-benefits { list-style: none; margin-top: 30px; display: grid; gap: 14px; }
.auth-benefits li { display: flex; align-items: center; gap: 12px; color: rgba(245,241,234,.88); font-size: 14.5px; }
.auth-benefits svg { width: 20px; height: 20px; color: var(--gold-2); flex: none; }
.auth-quote { font-size: 13px; color: rgba(245,241,234,.6); line-height: 1.6; border-left: 2px solid rgba(201,162,75,.5); padding-left: 14px; }
.auth-quote b { color: #f5f1ea; font-weight: 600; }

.auth-panel { display: flex; align-items: center; justify-content: center; padding: 48px 30px; background: var(--bg); }
.auth-card { width: 100%; max-width: 430px; }
.auth-card > .brand { display: none; margin-bottom: 24px; }
.auth-card .back { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-mute); margin-bottom: 26px; transition: color .3s; }
.auth-card .back svg { width: 15px; height: 15px; }
.auth-card .back:hover { color: var(--gold-deep); }
.auth-card h1 { font-size: clamp(1.7rem, 3vw, 2.1rem); margin-bottom: 8px; }
.auth-card .sub { color: var(--ink-soft); margin-bottom: 28px; }
.auth-card .sub a { color: var(--gold-deep); font-weight: 600; }

.auth-form { display: grid; gap: 16px; }
.auth-form .fld { display: grid; gap: 8px; }
.auth-form label { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute); }
.auth-form input[type=text], .auth-form input[type=email], .auth-form input[type=tel], .auth-form input[type=password] { width: 100%; padding: 14px 15px; border-radius: 12px; border: 1px solid var(--line-soft); background: var(--panel); color: var(--ink); font-family: var(--font-body); font-size: 14.5px; transition: border-color .3s, box-shadow .3s; }
.auth-form input::placeholder { color: var(--ink-mute); }
.auth-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.14); }
.auth-form input.bad { border-color: var(--crimson); box-shadow: 0 0 0 3px rgba(179,18,43,.12); }
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 46px; }
.pw-toggle { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; display: grid; place-items: center; color: var(--ink-mute); border-radius: 8px; transition: color .3s; }
.pw-toggle:hover { color: var(--gold-deep); }
.pw-toggle svg { width: 19px; height: 19px; }
.pw-hint { font-size: 12px; color: var(--ink-mute); }

.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; }
.auth-check { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-soft); cursor: pointer; }
.auth-check input { width: 16px; height: 16px; accent-color: var(--gold-deep); flex: none; }
.auth-check.legal { align-items: flex-start; font-size: 12.5px; line-height: 1.5; }
.auth-check a { color: var(--gold-deep); font-weight: 600; }
.auth-row > a { color: var(--gold-deep); font-weight: 600; }

.auth-err { font-size: 12.5px; color: var(--crimson); background: rgba(179,18,43,.07); border: 1px solid rgba(179,18,43,.22); border-radius: 10px; padding: 10px 13px; }
.auth-ok { font-size: 13.5px; color: #1a814a; background: rgba(31,157,85,.1); border: 1px solid rgba(31,157,85,.28); border-radius: 12px; padding: 14px 16px; line-height: 1.5; }

.auth-sep { display: flex; align-items: center; gap: 14px; color: var(--ink-mute); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; margin: 20px 0; }
.auth-sep::before, .auth-sep::after { content: ""; height: 1px; flex: 1; background: var(--line-soft); }
.auth-social { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-oauth { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); color: var(--ink); font-weight: 600; font-size: 13.5px; cursor: pointer; transition: border-color .3s, background .3s, transform .3s; }
.btn-oauth:hover { border-color: var(--gold); background: rgba(201,162,75,.06); transform: translateY(-2px); }
.btn-oauth svg { width: 18px; height: 18px; }
.btn-oauth.btn-google { width: 100%; }
.auth-alt { text-align: center; margin-top: 24px; font-size: 14px; color: var(--ink-soft); }
.auth-alt a { color: var(--gold-deep); font-weight: 700; }
.auth-legal { margin-top: 22px; font-size: 11.5px; color: var(--ink-mute); text-align: center; line-height: 1.6; }
.auth-legal a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 900px) {
  .auth { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-card > .brand { display: flex; }
}

/* ==========================================================================
   CONTENT PAGES — legal prose / blog / 404
   ========================================================================== */
.legal { max-width: 820px; margin: 0 auto; }
.legal .upd { color: var(--ink-mute); font-size: 13px; margin-bottom: 26px; }
.legal .toc { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel); padding: 16px 22px; margin-bottom: 34px; }
.legal .toc b { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.legal .toc a { display: inline-block; margin: 4px 16px 4px 0; font-weight: 600; color: var(--gold-deep); }
.legal h2 { font-size: 1.35rem; margin: 36px 0 12px; scroll-margin-top: 90px; }
.legal h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.75; }
.legal p { margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--gold-deep); font-weight: 600; }
.legal .disclaimer { margin-top: 40px; padding: 16px 20px; border: 1px dashed var(--line); border-radius: var(--radius); background: rgba(201,162,75,.06); font-size: 13px; color: var(--ink-mute); }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; background: var(--panel); transition: transform .5s var(--ease), border-color .4s, box-shadow .5s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow); }
.post-card .pc-cover { aspect-ratio: 16/10; background: linear-gradient(150deg, #17120a, #241c11); display: grid; place-items: center; }
.post-card .pc-cover svg { width: 52px; height: 52px; color: var(--gold-2); }
.post-card .pc-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card .pc-cat { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.post-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; line-height: 1.35; }
.post-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; flex: 1; }
.post-card .pc-meta { color: var(--ink-mute); font-size: 12.5px; margin-top: 6px; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

.nf { min-height: 72vh; display: grid; place-items: center; text-align: center; padding: 60px 20px; }
.nf .code { font-family: var(--font-display); font-size: clamp(5.5rem, 20vw, 11rem); line-height: .9; color: var(--gold); letter-spacing: -.02em; }
.nf .code em { font-family: "Playfair Display", serif; font-style: italic; color: var(--ink); }
.nf h1 { margin: 6px 0 12px; }
.nf p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 26px; line-height: 1.6; }
.nf .nf-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
   HOMEPAGE — Latest Arrivals mini-cards + rail "view more" card
   ========================================================================== */
.arrivals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.arr-card { display: flex; gap: 14px; align-items: center; padding: 14px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel); text-decoration: none; transition: transform .5s var(--ease), border-color .4s, box-shadow .5s; }
.arr-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow); }
.arr-media { position: relative; width: 92px; flex: none; aspect-ratio: 1; border-radius: 12px; overflow: hidden; background: var(--bg-3); }
.arr-media img { width: 100%; height: 100%; object-fit: cover; }
.arr-media .badge { position: absolute; top: 6px; left: 6px; }
.arr-body { min-width: 0; }
.arr-body .card-cat { font-size: 11px; }
.arr-body h4 { font-family: var(--font-body); font-weight: 700; font-size: 15px; margin: 3px 0 7px; line-height: 1.25; color: var(--ink); }
.arr-body .price .now { font-family: var(--font-display); color: var(--ink); font-size: 16px; }
.arr-body .price .was { text-decoration: line-through; color: var(--ink-mute); font-size: 12px; margin-left: 6px; }
@media (max-width: 820px) { .arrivals { grid-template-columns: 1fr; } }

.view-more-card { flex: 0 0 220px; scroll-snap-align: start; display: grid; place-items: center; text-align: center; border: 1px dashed var(--line); background: linear-gradient(160deg, var(--bg-2), var(--bg)); text-decoration: none; transition: border-color .4s, transform .5s var(--ease); }
.view-more-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.vm-inner { padding: 26px 22px; display: grid; gap: 9px; justify-items: center; }
.vm-inner .vm-ic { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: rgba(201,162,75,.14); color: var(--gold-deep); font-size: 22px; }
.vm-inner b { font-family: var(--font-display); font-size: 18px; color: var(--ink); line-height: 1.2; }
.vm-inner span { font-size: 12.5px; color: var(--ink-mute); }

/* ==========================================================================
   CLIENT CHANGE ROUND (PDF) — rails, mobile nav, CTA, programs spacing
   ========================================================================== */
/* #4 rails: bigger, higher-contrast scrollbar + arrow controls */
.hrow::-webkit-scrollbar { height: 14px; }
.hrow::-webkit-scrollbar-thumb { background: rgba(138,109,31,.6); border: 3px solid var(--bg); }
.hrow::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }
.section-light .hrow::-webkit-scrollbar-thumb { background: rgba(138,109,31,.65); border-color: var(--bg-2); }
.rail-arrows { display: inline-flex; gap: 10px; margin-left: 14px; flex: none; }
.rail-arrow { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; border: 1.5px solid var(--gold); background: var(--panel); color: var(--gold-deep); cursor: pointer; transition: background .3s, transform .3s, opacity .3s, color .3s; box-shadow: var(--glow-gold); }
.rail-arrow:hover { background: var(--gold); color: #1a1206; transform: translateY(-2px); }
.rail-arrow svg { width: 24px; height: 24px; }
.rail-arrow:disabled { opacity: .3; cursor: default; box-shadow: none; transform: none; }
@media (max-width: 560px) { .rail-arrow { width: 44px; height: 44px; } }

/* #7 Programs page — more space between Add to Cart and View Details */
.lvl-actions { gap: 26px; align-items: center; }
.lvl-actions .lvl-view { margin-left: 2px; }

/* #14 CTA centered on mobile (match hero alignment) */
@media (max-width: 820px) {
  .cta-band.cta-img { text-align: center; }
  .cta-media .cta-copy { text-align: center; }
  .cta-media .cta-actions { justify-content: center; }
}

/* #13 utility: hide element on phones */
@media (max-width: 760px) { .hide-mobile { display: none !important; } }

/* #12 mobile nav — opaque panel + dark scrim + body scroll lock */
@media (max-width: 760px) {
  /* nav's backdrop-filter created a containing block that trapped the fixed
     menu panel — drop it on mobile so the panel fills the whole screen */
  .nav { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: rgba(250,246,238,.97); }
  .nav-links { background: var(--panel); box-shadow: -24px 0 70px -22px rgba(40,28,8,.5); overflow-y: auto; padding-top: 96px; z-index: 55; top: 0; height: 100dvh; }
  .nav-links a { border-bottom: 1px solid var(--line-soft); }
  .nav-links a::after { display: none; }
  .burger { position: relative; z-index: 60; }
}
.nav-scrim { position: fixed; inset: 0; background: rgba(20,14,6,.55); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; z-index: 52; }
.nav-scrim.open { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ==========================================================================
   HOMEPAGE HERO — client banner photo (#20)
   ========================================================================== */
.hero--photo { background: #1a0606 url("../assets/hero.jpg") center 22% / cover no-repeat; min-height: 94vh; align-items: flex-end; }
.hero--photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(12,6,4,.5) 0%, rgba(12,6,4,.05) 24%, rgba(12,6,4,.1) 52%, rgba(12,6,4,.72) 82%, rgba(12,6,4,.94) 100%); }
.hero--photo .hero-content { position: relative; z-index: 2; text-align: center; padding-bottom: 66px; }
.hero--photo h1 { font-size: clamp(2.1rem, 4.6vw, 4rem); }
.hero--photo .lead { max-width: 620px; margin-left: auto; margin-right: auto; }
.hero--photo .eyebrow, .hero--photo .eyebrow.center { color: var(--gold-2); }
.hero--photo .eyebrow::before, .hero--photo .eyebrow::after { background: rgba(233,200,120,.6); }
.hero--photo h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.hero--photo .lead { color: rgba(255,255,255,.92); text-shadow: 0 1px 16px rgba(0,0,0,.4); }
.hero--photo .btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.hero--photo .btn-ghost:hover { border-color: var(--gold-2); background: rgba(255,255,255,.1); }
.hero--photo .hero-scroll { color: rgba(255,255,255,.75); z-index: 2; }
.hero--photo .hero-scroll .mouse { border-color: rgba(255,255,255,.6); }
@media (max-width: 700px) { .hero--photo { min-height: 90vh; background-position: center 18%; } .hero--photo .hero-content { padding-bottom: 46px; } }

/* About — real portrait photo inside the framed block */
.about-portrait > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; z-index: 0; }
.about-portrait .frame { position: relative; z-index: 1; }

/* ==========================================================================
   CLIENT: flat static cards (no hover lift / no shadow / no popup) +
   fix rail header so View All + arrows sit together on the right
   ========================================================================== */
.hscroll-head { align-items: center; }
.hscroll-right { display: flex; align-items: center; gap: 16px; flex: none; }
/* mobile: keep rails horizontal + show the scroll arrows below the title */
@media (max-width: 600px) {
  .hscroll-head { flex-wrap: wrap; }
  .hscroll-right { width: 100%; justify-content: space-between; margin-top: 6px; }
  .rail-arrow { width: 42px; height: 42px; }
  .hrow { flex-wrap: nowrap; overflow-x: auto; }
  .hrow > .card, .hrow > .view-more-card { flex: 0 0 82%; }
}

/* remove resting drop-shadows on cards */
.card, .section-light .card, .learn-card, .post-card, .arr-card, .prow-media { box-shadow: none !important; }

/* kill hover lift + shadow + border highlight on every card type */
.card:hover, .learn-card:hover, .post-card:hover, .arr-card:hover, .benefit:hover, .level:hover, .gallery-grid .gi:hover, .ac-course:hover, .view-more-card:hover, .prow-media:hover { transform: none !important; box-shadow: none !important; }
.card:hover, .learn-card:hover, .arr-card:hover, .view-more-card:hover { border-color: var(--line-soft) !important; }
.section-light .card:hover { border-color: rgba(26,18,6,.09) !important; }
.post-card:hover, .benefit:hover, .level:hover { border-color: var(--line-soft) !important; }
.level:hover .lvl-cover img, .card:hover .card-media img { transform: none !important; }

/* ==========================================================================
   SINGLE-TRICK detail page (trick.html) + locked 2-video lessons
   ========================================================================== */
.trick-hero { display: grid; grid-template-columns: minmax(0, 420px) 1fr; gap: 44px; align-items: start; margin-top: 18px; }
.trick-cover { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--bg-3); }
.trick-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trick-cover .badge { position: absolute; top: 16px; left: 16px; }
.trick-info .stars { color: var(--gold-deep); font-size: 14px; }
.trick-info .stars .n { color: var(--ink-mute); }
.trick-tag { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-deep); margin: 4px 0 2px; }
.trick-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.trick-note { font-size: 12.5px; }
@media (max-width: 820px) { .trick-hero { grid-template-columns: 1fr; gap: 26px; } .trick-cover { max-width: 460px; } }

.lessons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 40px; }
.lesson { border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; background: var(--panel); }
.lesson-thumb, .lesson-video { position: relative; aspect-ratio: 16/9; background: linear-gradient(150deg, #17120a, #241c11); }
.lesson-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.lesson-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lesson-lock { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(12,8,4,.5); color: var(--gold-2); }
.lesson-lock svg { width: 40px; height: 40px; }
.lesson-body { padding: 18px 20px; }
.lesson-ix { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.lesson-body h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; margin: 4px 0 6px; }
.lesson-body p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.55; }
.lesson-status { display: inline-block; margin-top: 12px; font-size: 12.5px; font-weight: 600; color: var(--ink-mute); }
.lesson.unlocked .lesson-status { color: #1a814a; }
.trick-learn { border-top: 1px solid var(--line-soft); padding-top: 30px; }
@media (max-width: 620px) { .lessons { grid-template-columns: 1fr; } }

/* Beginner curriculum list (data-driven) */
.blessons { border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; background: var(--panel); }
.bl-item { display: flex; align-items: center; gap: 16px; padding: 15px 18px; border-bottom: 1px solid var(--line-soft); text-decoration: none; color: var(--ink); transition: background .25s; }
.bl-item:last-child { border-bottom: 0; }
a.bl-item:hover { background: rgba(201,162,75,.07); }
.bl-ix { font-family: var(--font-display); color: var(--gold-deep); font-size: 15px; width: 30px; flex: none; }
.bl-info { flex: 1; min-width: 0; }
.bl-info h4 { font-family: var(--font-body); font-weight: 700; font-size: 15px; }
.bl-info p { color: var(--ink-mute); font-size: 12.5px; margin-top: 2px; }
.bl-tag { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); border: 1px solid var(--line-soft); border-radius: 999px; padding: 3px 9px; flex: none; }
.bl-arrow { color: var(--gold-deep); flex: none; font-size: 18px; }
.bl-item.is-placeholder { opacity: .8; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
