/* ============================================================
   ARTAN — FREE LIVE MASTERCLASS (webinar registration page)
   Same design language as the main 9559FX site:
   dark cozy premium · neon purple/cyan · grain · liquid glass
   ============================================================ */

:root {
  --bg: #06050b;
  --ink: #f4f2ff;
  --muted: #9a93b8;
  --purple: #8b3dff;
  --violet: #b36bff;
  --cyan: #3fd8ff;
  --green: #3dffb4;
  --acid: #7dfc02;
  --red: #ff5470;
  --yt-red: #ff0000;
  /* 'Termina' (the non-Test cdnfonts family) is a scrambled trial face — it
     renders E as Z, A as I. It must NOT be a fallback. system-ui is plain
     but always readable. */
  --font-head: 'Termina Test', system-ui, sans-serif;
  --font-body: 'Almarai', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(139, 61, 255, .45); }

img { max-width: 100%; }

/* `display:flex/grid` on a component beats the UA sheet's `[hidden]` rule,
   which is how the success card ended up visible on load. Win it back. */
[hidden] { display: none !important; }

/* ============================================================
   FILM TREATMENT
   ============================================================ */
.vignette {
  position: fixed; inset: 0; z-index: 80; pointer-events: none;
  background: radial-gradient(115% 90% at 50% 44%,
    transparent 38%,
    rgba(2, 2, 8, .45) 68%,
    rgba(2, 2, 8, .94) 100%);
}

.grain {
  position: absolute; left: 0; right: 0; top: 0; z-index: 3;
  height: 52vh;
  pointer-events: none;
  opacity: .16;
  mix-blend-mode: screen;
  will-change: transform;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
  animation: grain-jitter 1.1s steps(3) infinite;
}
@keyframes grain-jitter {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(-22px, 14px); }
  66%  { transform: translate(16px, -18px); }
  100% { transform: translate(0, 0); }
}
@media (pointer: coarse), (max-width: 880px) {
  .grain { animation: none; will-change: auto; }
}

/* ============================================================
   LIQUID GLASS — refracting lens via SVG displacement (Chromium).
   Other browsers fall back to frosted blur.
   ============================================================ */
[data-glass] {
  position: relative;
  background: rgba(255,255,255,.012);
  backdrop-filter: blur(2px) saturate(175%) brightness(1.1);
  -webkit-backdrop-filter: blur(2px) saturate(175%) brightness(1.1);
  backdrop-filter: url(#lg-dist) saturate(185%) brightness(1.1);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    inset 0 -6px 14px -8px rgba(120,160,255,.12),
    0 14px 36px rgba(0,0,0,.45);
  transition: filter .45s ease;
}
[data-glass].lit { filter: brightness(1.18) saturate(1.08); }

@media (pointer: coarse) {
  [data-glass] {
    backdrop-filter: blur(9px) saturate(190%) brightness(1.16) contrast(1.05);
    -webkit-backdrop-filter: blur(9px) saturate(190%) brightness(1.16) contrast(1.05);
    background:
      linear-gradient(155deg, rgba(255,255,255,.10), rgba(255,255,255,.02) 42%, rgba(255,255,255,0) 70%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.22),
      inset 0 -8px 16px -10px rgba(120,160,255,.22),
      inset 0 0 0 1px rgba(255,255,255,.08),
      0 14px 36px rgba(0,0,0,.45);
  }
}

/* ============================================================
   STICKY EVENT BAR
   ============================================================ */
.eventbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1vw, 12px);
  padding: 10px clamp(12px, 4vw, 28px);
  font-size: clamp(9.5px, 1.05vw, 12.5px);
  font-weight: 300;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(244,242,255,.86);
  background: linear-gradient(180deg, rgba(9,7,17,.94), rgba(7,6,13,.86));
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.eb-dot {
  width: .58em; height: .58em; border-radius: 50%;
  background: var(--yt-red);
  box-shadow: 0 0 9px rgba(255,0,0,.95), 0 0 18px rgba(255,45,0,.6);
  animation: eb-pulse 1.8s ease-in-out infinite;
}
@keyframes eb-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.eb-sep { color: rgba(244,242,255,.3); }
.eb-label {
  color: var(--yt-red);
  letter-spacing: .2em;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(255,0,0,.65), 0 0 28px rgba(255,45,0,.35);
}
.eb-cta {
  margin-left: clamp(8px, 1.6vw, 20px);
  padding: .5em 1.15em;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  letter-spacing: .14em;
  background: linear-gradient(180deg, #3a3a44, #23232b);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 3px 0 #14141a,
    0 6px 18px rgba(139,61,255,.5);
  transition: transform .14s ease, box-shadow .14s ease;
}
.eb-cta:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 4px 0 #14141a, 0 10px 26px rgba(139,61,255,.85);
}
@media (max-width: 720px) {
  /* `.eb-sep:first-of-type` never matched — .eb-dot is the first <span>,
     so the separator after the hidden label survived. Target it directly. */
  .eb-label, .eb-label + .eb-sep { display: none; }
  .eventbar { gap: 7px; letter-spacing: .1em; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(46px, 8vh, 90px) 5vw clamp(58px, 9vh, 96px);
  background:
    radial-gradient(115% 85% at 50% 118%, rgba(70,30,140,.20) 0%, rgba(70,30,140,.14) 18%, rgba(70,30,140,.088) 34%, rgba(70,30,140,.05) 50%, rgba(70,30,140,.022) 66%, rgba(70,30,140,.008) 80%, transparent 96%),
    linear-gradient(180deg, #07060d 0%, #07070e 30%, #08070f 55%, #090812 78%, #0a0814 100%);
}
.hero-glow {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(85% 68% at 22% 24%, rgba(139,61,255,.17) 0%, rgba(139,61,255,.115) 20%, rgba(139,61,255,.07) 38%, rgba(139,61,255,.037) 55%, rgba(139,61,255,.015) 72%, transparent 92%),
    radial-gradient(80% 64% at 80% 30%, rgba(63,216,255,.11) 0%, rgba(63,216,255,.075) 20%, rgba(63,216,255,.045) 38%, rgba(63,216,255,.023) 55%, rgba(63,216,255,.009) 72%, transparent 92%);
}
.dust {
  position: absolute; z-index: 9; top: 0; left: 0;
  width: 100%; height: 70vh;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 10;
  width: min(1080px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ——— glass eyebrow pill ——— */
.pill-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: clamp(20px, 3.2vh, 34px);
  font-size: clamp(11px, 1.15vw, 15px);
}
.pill-aura {
  position: absolute;
  left: 1.35em; top: 50%;
  width: 2.1em; height: 2.1em;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(125,252,2,.95), rgba(125,252,2,.35) 38%, rgba(125,252,2,0) 70%);
  animation: aura-pulse 2.4s cubic-bezier(.25,.6,.3,1) infinite;
}
@keyframes aura-pulse {
  0%        { transform: translate(-50%, -50%) scale(.55); opacity: .95; }
  70%, 100% { transform: translate(-50%, -50%) scale(1.5); opacity: .25; }
}
.glass-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .75em;
  padding: .6em 1.3em .54em;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1em;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  color: #fff;
}
.pill-dot {
  width: .62em; height: .62em;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px rgba(125,252,2,.9);
}

/* ——— headline ——— */
.headline {
  max-width: 1020px;
  text-transform: uppercase;
}
.head-big {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(25px, 3.9vw, 58px);
  line-height: 1.06;
  letter-spacing: .01em;
  text-wrap: balance;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/></svg>"),
    linear-gradient(180deg, #ffffff 30%, #d9d3f0 100%);
  background-blend-mode: multiply;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hl {
  -webkit-text-fill-color: var(--violet);
  color: var(--violet);
  text-shadow: 0 0 26px rgba(179,107,255,.55), 0 0 60px rgba(139,61,255,.35);
}

.hero-sub {
  margin-top: clamp(18px, 2.6vh, 28px);
  max-width: 700px;
  font-weight: 300;
  font-size: clamp(13px, 1.15vw, 17px);
  line-height: 1.75;
  color: rgba(244,242,255,.74);
  text-wrap: pretty;
}
.hero-sub b { font-weight: 700; color: var(--ink); }

/* ============================================================
   VSL — paused video sitting between the subhead and the CTA
   ============================================================ */
.vsl {
  position: relative;
  width: min(760px, 100%);
  margin-top: clamp(26px, 4vh, 42px);
  border-radius: clamp(12px, 1.4vw, 18px);
  overflow: hidden;
  background: #07060d;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 26px 60px rgba(0,0,0,.6),
    0 0 60px rgba(139,61,255,.28);
}
.vsl-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #07060d;
}
.vsl-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: .45em .9em;
  border-radius: 999px;
  font-size: clamp(8.5px, .82vw, 10.5px);
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,242,255,.75);
  background: rgba(8,7,14,.72);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}

/* ============================================================
   CTA — dark-grey 3D keycap, concentrated purple glow underneath
   ============================================================ */
.cta-key {
  position: relative;
  z-index: 2;
  margin-top: clamp(28px, 4.4vh, 46px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: clamp(15px, 2vw, 24px) clamp(30px, 4.4vw, 62px);
  border-radius: clamp(14px, 1.6vw, 20px);
  text-decoration: none;
  color: #fff;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, #3a3a44 0%, #2a2a32 52%, #1c1c22 100%);
  box-shadow:
    inset 0 2px 1px rgba(255,255,255,.16),
    inset 0 -5px 9px rgba(0,0,0,.55),
    0 9px 0 #14141a,
    0 12px 14px rgba(0,0,0,.5),
    0 18px 30px rgba(139, 61, 255, .6);
  transition: transform .14s ease, box-shadow .14s ease;
}
.cta-key:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 2px 1px rgba(255,255,255,.2),
    inset 0 -5px 9px rgba(0,0,0,.55),
    0 12px 0 #14141a,
    0 16px 18px rgba(0,0,0,.5),
    0 24px 50px rgba(139, 61, 255, .95),
    0 34px 90px rgba(139, 61, 255, .6);
}
.cta-key:active {
  transform: translateY(7px);
  box-shadow:
    inset 0 2px 1px rgba(255,255,255,.12),
    inset 0 -3px 7px rgba(0,0,0,.55),
    0 2px 0 #14141a,
    0 4px 10px rgba(0,0,0,.5),
    0 14px 26px rgba(160, 90, 255, 1);
}
.cta-key-full { width: 100%; margin-top: clamp(20px, 3vh, 30px); }
.btn-text {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(17px, 2.3vw, 32px);
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.cta-arrow {
  font-size: clamp(16px, 2.1vw, 28px);
  line-height: 1;
  transition: transform .2s ease;
}
.cta-key:hover .cta-arrow { transform: translateX(5px); }

.cta-micro {
  margin-top: clamp(12px, 1.8vh, 18px);
  font-size: clamp(10px, .95vw, 12.5px);
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— rotating social-proof toast ——— */
.proof-toast {
  margin-top: clamp(24px, 3.6vh, 40px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 10px;
  border-radius: 999px;
  font-size: clamp(10.5px, 1vw, 13px);
  font-weight: 300;
  color: rgba(244,242,255,.8);
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 8px 26px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}
.proof-toast.show { opacity: 1; transform: translateY(0); }
.pt-av {
  width: 24px; height: 24px; border-radius: 50%;
  background: radial-gradient(70% 70% at 50% 30%, rgba(139,61,255,.9), rgba(63,216,255,.35) 70%, transparent);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.pt-copy b { font-weight: 700; color: var(--ink); }
.pt-copy i { font-style: normal; color: var(--muted); }

/* ——— trust row ——— */
.trust {
  margin-top: clamp(30px, 4.6vh, 54px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.trust-label {
  font-size: clamp(9px, .9vw, 11px);
  font-weight: 300;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(154,147,184,.7);
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
}
.trust-logos b {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(12px, 1.5vw, 19px);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(244,242,255,.42);
  transition: color .25s ease, text-shadow .25s ease;
}
.trust-logos b:hover { color: rgba(244,242,255,.85); text-shadow: 0 0 18px rgba(139,61,255,.5); }

.scroll-cue {
  position: absolute;
  bottom: clamp(14px, 2.4vh, 26px);
  left: 0; right: 0;
  z-index: 10;
  text-align: center;
}
.cue {
  font-size: clamp(9px, .85vw, 11px);
  font-weight: 300;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(154,147,184,.5);
  animation: cue-fade 2.6s ease-in-out infinite;
}
@keyframes cue-fade { 0%,100% { opacity: .35; } 50% { opacity: .9; } }

/* ============================================================
   SHARED BAND / WRAP
   ============================================================ */
.band {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 11vh, 140px) 5vw;
  background:
    radial-gradient(95% 75% at 12% 26%, rgba(123,43,255,.11) 0%, rgba(123,43,255,.075) 20%, rgba(123,43,255,.045) 38%, rgba(123,43,255,.023) 56%, rgba(123,43,255,.009) 73%, transparent 92%),
    radial-gradient(95% 75% at 88% 30%, rgba(63,216,255,.08) 0%, rgba(63,216,255,.054) 20%, rgba(63,216,255,.032) 38%, rgba(63,216,255,.016) 56%, rgba(63,216,255,.006) 73%, transparent 92%),
    linear-gradient(180deg, #06050b 0%, #06050d 20%, #060510 42%, #060510 62%, #05040b 82%, #050409 100%);
}
.band-tickers { padding-top: clamp(40px, 6vh, 72px); padding-bottom: clamp(40px, 6vh, 72px); }
.wrap { width: min(1200px, 100%); margin: 0 auto; }
.wrap.narrow { width: min(760px, 100%); }
.center-all { display: flex; flex-direction: column; align-items: center; text-align: center; }

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(21px, 3vw, 42px);
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.1;
  text-wrap: balance;
  background: linear-gradient(180deg, #ffffff 30%, #d9d3f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.section-title.center { text-align: center; }

.lede {
  margin-top: clamp(14px, 2vh, 20px);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 21px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--violet);
  text-shadow: 0 0 24px rgba(139,61,255,.45);
}
.body-copy {
  margin-top: clamp(16px, 2.2vh, 24px);
  font-size: clamp(13px, 1.05vw, 16.5px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(244,242,255,.76);
  text-wrap: pretty;
}
.body-copy i { color: var(--ink); font-style: italic; }

/* ============================================================
   TICKERS
   ============================================================ */
.tickers {
  width: min(1200px, 94vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vh, 26px);
  align-items: center;
}
.tickers .ticker { width: 100%; }
.ticker {
  width: min(1200px, 94vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
/* Just the images rolling: no card frame, no crop. Every image is set to the
   same height and keeps its own width, so nothing is cut off. */
.tick {
  position: relative;
  height: clamp(110px, 12vw, 160px);
  flex: none;
}
.tick img {
  display: block;
  height: 100%;
  width: auto;
  border-radius: 8px;
}

/* ============================================================
   WHAT YOU'LL LEARN
   ============================================================ */
.learn-list {
  margin-top: clamp(34px, 5vh, 60px);
  list-style: none;
  display: grid;
  gap: clamp(14px, 2.2vh, 22px);
}
.learn-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(16px, 2.4vw, 30px);
  padding: clamp(20px, 2.6vw, 32px);
  border-radius: clamp(12px, 1.3vw, 18px);
  background: linear-gradient(160deg, rgba(22,18,31,.72), rgba(10,8,16,.72));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.learn-item:hover {
  transform: translateY(-3px);
  border-color: rgba(179,107,255,.28);
  box-shadow: 0 22px 56px rgba(0,0,0,.5), 0 0 44px rgba(139,61,255,.22);
}
/* transparent fill + stroke, so the layered text-shadows bloom out of the
   glyph itself and the numeral reads as lit glass rather than flat type */
.li-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(214,178,255,.98);
  /* keep the stroke bright, but a tight halo only: no wide bloom */
  text-shadow:
    0 0 5px  rgba(196,150,255,.5),
    0 0 14px rgba(139,61,255,.28);
  animation: num-breathe 4.2s ease-in-out infinite;
}
@keyframes num-breathe {
  0%, 100% { filter: brightness(1)    }
  50%      { filter: brightness(1.16) }
}
/* each card's numeral drifts out of phase so the column shimmers */
.learn-item:nth-child(2) .li-num { animation-delay: -.8s; }
.learn-item:nth-child(3) .li-num { animation-delay: -1.6s; }
.learn-item:nth-child(4) .li-num { animation-delay: -2.4s; }
.learn-item:nth-child(5) .li-num { animation-delay: -3.2s; }
.li-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(13px, 1.25vw, 18px);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--ink);
}
.li-body p {
  margin-top: 8px;
  font-size: clamp(12.5px, 1vw, 15.5px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(244,242,255,.68);
}

/* ============================================================
   COUNTDOWN + REGISTRATION
   ============================================================ */
.band-register {
  background:
    radial-gradient(95% 80% at 50% -4%, rgba(139,61,255,.22) 0%, rgba(139,61,255,.15) 18%, rgba(139,61,255,.093) 34%, rgba(139,61,255,.052) 50%, rgba(139,61,255,.024) 66%, rgba(139,61,255,.009) 80%, transparent 96%),
    linear-gradient(180deg, #06050b 0%, #07050e 22%, #080611 45%, #070510 64%, #05040b 84%, #050409 100%);
}
.countdown-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2.4vh, 24px);
  padding: clamp(22px, 3vw, 36px) clamp(20px, 3vw, 40px);
  border-radius: clamp(14px, 1.6vw, 22px);
}
.cd-eyebrow {
  font-size: clamp(9px, .9vw, 11.5px);
  font-weight: 300;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, .9vw, 12px);
}
/* each unit is its own rounded tile, number above a label inside the box */
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, .7vw, 9px);
  min-width: clamp(66px, 8.4vw, 128px);
  padding: clamp(14px, 1.8vw, 26px) clamp(8px, 1.2vw, 18px) clamp(10px, 1.3vw, 18px);
  border-radius: clamp(14px, 1.7vw, 24px);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.09),
    inset 0 -14px 24px -18px rgba(120,160,255,.3),
    0 12px 30px rgba(0,0,0,.45);
}
.cd-unit b {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #e9e6f7;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.cd-unit i {
  font-style: normal;
  font-size: clamp(8px, .85vw, 11px);
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.cd-colon {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(14px, 1.8vw, 24px);
  line-height: 1;
  color: rgba(233,230,247,.35);
}

.seats { width: min(420px, 100%); display: flex; flex-direction: column; align-items: center; gap: 9px; }
.seats-bar {
  width: 100%; height: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.seats-fill {
  display: block; height: 100%;
  border-radius: 999px;
  /* fiery YouTube red: deep ember into #FF0000 into an orange flame tip */
  background: linear-gradient(90deg,
    #8c0000 0%, #cc0000 16%, #ff0000 46%, #ff2d00 68%, #ff6a00 86%, #ff9d21 100%);
  background-size: 160% 100%;
  box-shadow:
    0 0 14px rgba(255, 0, 0, .9),
    0 0 30px rgba(255, 61, 0, .6),
    0 0 60px rgba(255, 0, 0, .3);
  animation: seats-flicker 4.5s ease-in-out infinite;
}
@keyframes seats-flicker {
  0%, 100% { background-position:   0% 50%; filter: brightness(1); }
  50%      { background-position: 100% 50%; filter: brightness(1.12); }
}
.seats-label {
  font-size: clamp(9.5px, .92vw, 12px);
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.seats-label b { color: var(--ink); font-weight: 700; }

.reg-title { margin-top: clamp(40px, 6vh, 74px); }
.reg-sub {
  margin-top: 12px;
  text-align: center;
  font-size: clamp(11px, 1vw, 13.5px);
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.reg-form {
  margin-top: clamp(26px, 4vh, 42px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vh, 20px);
  align-items: center;
}
.field { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: clamp(9px, .88vw, 11px);
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input {
  width: 100%;
  padding: clamp(13px, 1.5vw, 18px) clamp(14px, 1.6vw, 20px);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 300;
  color: var(--ink);
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input::placeholder { color: rgba(154,147,184,.55); }
.field input:focus {
  background: rgba(255,255,255,.055);
  border-color: rgba(179,107,255,.6);
  box-shadow: 0 0 0 3px rgba(139,61,255,.16), 0 0 30px rgba(139,61,255,.25);
}
.field input.invalid { border-color: rgba(255,84,112,.7); box-shadow: 0 0 0 3px rgba(255,84,112,.14); }
.form-error {
  width: 100%;
  font-size: clamp(11px, .95vw, 13px);
  font-weight: 300;
  color: var(--red);
}

.reg-success {
  margin-top: clamp(26px, 4vh, 42px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: clamp(14px, 1.6vw, 22px);
  background: linear-gradient(160deg, rgba(22,18,31,.8), rgba(10,8,16,.8));
  border: 1px solid rgba(61,255,180,.22);
  box-shadow: 0 22px 60px rgba(0,0,0,.5), 0 0 50px rgba(61,255,180,.14);
}
.rs-tick {
  display: grid; place-items: center;
  width: clamp(44px, 4.4vw, 60px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(70% 70% at 50% 30%, rgba(61,255,180,.24), transparent 72%);
  border: 1px solid rgba(61,255,180,.34);
}
.rs-tick svg { width: 58%; height: 58%; fill: none; stroke: var(--green); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.reg-success h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
}
.reg-success p {
  max-width: 460px;
  font-size: clamp(12.5px, 1vw, 15.5px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(244,242,255,.72);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  margin-top: clamp(36px, 5.5vh, 66px);
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 56px) clamp(22px, 2.8vw, 44px);
}
.testi-slot { display: flex; flex-direction: column; gap: 14px; }
.testi-video {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: clamp(10px, 1.1vw, 16px);
  background:
    radial-gradient(70% 70% at 50% 30%, rgba(139,61,255,.16), rgba(63,216,255,.05) 70%, transparent),
    linear-gradient(180deg, #0b0a14, #07060d);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 0 34px rgba(139,61,255,.18);
}
.testi-video wistia-player { display: block; width: 100%; }
.testi-video.has-video { place-items: stretch; }
.testi-ph {
  display: grid;
  place-items: center;
  width: clamp(42px, 4vw, 58px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(70% 70% at 50% 30%, rgba(139,61,255,.22), rgba(63,216,255,.06) 70%, transparent);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 0 26px rgba(139,61,255,.2);
}
.testi-ph svg {
  width: 58%; height: 58%;
  fill: var(--cyan);
  filter: drop-shadow(0 0 6px rgba(63,216,255,.85)) drop-shadow(0 0 16px rgba(139,61,255,.5));
}
.testi-name {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 2.6em;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(11.5px, 1vw, 15px);
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--ink);
}

.quote-rows {
  margin-top: clamp(44px, 6.5vh, 84px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
}
.quote-row {
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: clamp(12px, 1.3vw, 18px);
  background: linear-gradient(160deg, rgba(22,18,31,.7), rgba(10,8,16,.7));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 18px 44px rgba(0,0,0,.42);
}
.quote-row p {
  font-size: clamp(12.5px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(244,242,255,.76);
}
.quote-row cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: clamp(9.5px, .9vw, 11.5px);
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--violet);
}

/* ============================================================
   VERIFIED PAYOUT GALLERY
   ============================================================ */
.gallery-sub {
  margin: 12px auto 0;
  max-width: 620px;
  text-align: center;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(244,242,255,.66);
}
.gallery {
  margin-top: clamp(30px, 4.6vh, 56px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1.2vw, 18px);
}
.gal-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(160deg, #14141d, #0a0a11);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 26px rgba(0,0,0,.42);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gal-item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(179,107,255,.35);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 36px rgba(139,61,255,.3);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   ABOUT + STAT CARDS
   ============================================================ */
.about-row {
  margin-top: clamp(30px, 4.6vh, 58px);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #16121f, #0a0810);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 44px rgba(139,61,255,.32), 0 0 90px rgba(139,61,255,.16);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo.no-img::after {
  content: 'ARTAN';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: .2em;
  color: rgba(244,242,255,.18);
  background: radial-gradient(80% 60% at 50% 35%, rgba(139,61,255,.18), transparent 70%);
}
.about-text p {
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.75;
  font-weight: 300;
  color: rgba(244,242,255,.78);
}
.about-text p + p { margin-top: 16px; }
.about-text b { font-weight: 700; color: var(--ink); }

.stat-grid {
  margin-top: clamp(38px, 5.6vh, 70px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: clamp(20px, 2.4vw, 32px) clamp(12px, 1.6vw, 20px);
  border-radius: clamp(12px, 1.3vw, 18px);
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(19px, 2.5vw, 34px);
  line-height: 1;
  color: var(--ink);
  text-shadow: 0 0 26px rgba(139,61,255,.5);
}
.stat-label {
  font-style: normal;
  font-size: clamp(8.5px, .85vw, 11px);
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   FINAL CTA + FOOTER
   ============================================================ */
.band-final {
  background:
    radial-gradient(105% 88% at 50% 108%, rgba(139,61,255,.24) 0%, rgba(139,61,255,.165) 18%, rgba(139,61,255,.10) 34%, rgba(139,61,255,.056) 50%, rgba(139,61,255,.025) 66%, rgba(139,61,255,.009) 80%, transparent 96%),
    linear-gradient(180deg, #050409 0%, #05050a 30%, #06050b 60%, #05050a 82%, #04040a 100%);
}
.final-sub {
  margin-top: 14px;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.foot {
  padding: clamp(40px, 6vh, 72px) 5vw clamp(48px, 7vh, 84px);
  text-align: center;
  background: #04040a;
  border-top: 1px solid rgba(255,255,255,.05);
}
.foot-disc {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(10px, .88vw, 12px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(154,147,184,.6);
}
.foot-copy {
  margin-top: clamp(16px, 2.2vh, 22px);
  font-size: clamp(9.5px, .85vw, 11.5px);
  font-weight: 300;
  letter-spacing: .14em;
  color: rgba(154,147,184,.45);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-rows { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: repeat(4, 1fr); gap: 34px 20px; }
  .testi-slot { grid-column: span 2; }
  .testi-slot:nth-child(3) { grid-column: 2 / span 2; }
  .about-row { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .about-photo { width: min(320px, 80vw); }
}

@media (max-width: 620px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-slot, .testi-slot:nth-child(3) { grid-column: 1; }
  .learn-item { gap: 12px; padding: 18px; }
  .cd-unit { min-width: 62px; padding: 12px 6px 9px; border-radius: 13px; }
  .trust-logos { gap: 12px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   TICKER MOTION — the track is duplicated in webinar.js, so a
   -50% translate lands exactly on the seam. No GSAP needed.
   ============================================================ */
.ticker-track.rolling { animation: ticker-roll 68s linear infinite; }
@keyframes ticker-roll     { from { transform: translateX(0);     } to { transform: translateX(-50%); } }

/* ============================================================
   SCROLL REVEAL — set by the IntersectionObserver in webinar.js
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
