/* ============================================================
   OMEGA — Marketing landing page
   Built on the supplied shadcn/ui + Tailwind design tokens.
   Hero modelled on the tonyrobbins.com reference (full-bleed
   photo + transparent nav + NEXT EVENT card).
   ============================================================ */

/* ---------- Design tokens (from supplied :root) ---------- */
:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 3.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 3.9%;
  --primary: 0 0% 9%;
  --primary-foreground: 0 0% 98%;
  --secondary: 0 0% 96.1%;
  --secondary-foreground: 0 0% 9%;
  --muted: 0 0% 96.1%;
  --muted-foreground: 0 0% 45.1%;
  --accent: 0 0% 96.1%;
  --accent-foreground: 0 0% 9%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 89.8%;
  --input: 0 0% 89.8%;
  --ring: 0 0% 3.9%;
  --radius: .65rem;

  /* raw palette */
  --color-black: 0, 0, 0;
  --color-white: 255, 255, 255;

  /* fluid type scale */
  --font-size-xs: clamp(.75rem, .17vw + .76rem, .875rem);
  --font-size-sm: clamp(.875rem, .17vw + .76rem, 1rem);
  --font-size-base: clamp(1rem, .34vw + .91rem, 1.25rem);
  --font-size-md: clamp(1.25rem, .5vw + 1.2rem, 1.5rem);
  --font-size-lg: clamp(1.5rem, 1vw + 1.25rem, 2.5rem);
  --font-size-xl: clamp(1.75rem, 1.5vw + 1.5rem, 3.5rem);
  --font-size-xxl: clamp(2.25rem, 2vw + 2rem, 4.5rem);
  --font-size-xxxl: clamp(3rem, 3vw + 2rem, 6rem);

  --height-nav: 5rem;

  /* fonts */
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --font-plex-sans: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;

  --swiper-theme-color: #007aff;

  /* layout helpers */
  --maxw: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4rem);

  /* brand accents */
  --grad-purple: linear-gradient(135deg, #6d3bf5 0%, #3a1d8a 55%, #1b0f3d 100%);
  --grad-blue: linear-gradient(135deg, #2f6bff 0%, #1740b8 60%, #0b1d5c 100%);
  --grad-green: linear-gradient(135deg, #7ba33c 0%, #41601f 55%, #1d2c10 100%);
  --grad-amber: linear-gradient(120deg, #ff9d2f 0%, #ff6a00 45%, #1a1206 100%);
  --grad-night: linear-gradient(160deg, #14213f 0%, #070b18 100%);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border: 0 solid hsl(var(--border));
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  scroll-behavior: smooth;
  scroll-padding-top: var(--height-nav);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-plex-sans);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; }
ul { list-style: none; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* Dark sections flip the shadcn tokens to the dark palette */
.dark {
  --background: 0 0% 3.9%;
  --foreground: 0 0% 98%;
  --card: 0 0% 8%;
  --primary: 0 0% 98%;
  --primary-foreground: 0 0% 9%;
  --secondary: 0 0% 14.9%;
  --muted: 0 0% 14.9%;
  --muted-foreground: 0 0% 63.9%;
  --border: 0 0% 18%;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: hsl(var(--muted-foreground));
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: .6;
}

.lead {
  font-size: var(--font-size-md);
  color: hsl(var(--muted-foreground));
  max-width: 46ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 999px;
  padding: .85rem 1.6rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  white-space: nowrap;
  transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: var(--font-size-base); }
.btn--sm { padding: .55rem 1.1rem; font-size: var(--font-size-xs); }

.btn--primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.btn--primary:hover { box-shadow: 0 12px 30px -10px hsl(var(--primary) / .55); transform: translateY(-2px); }

.btn--ghost { border: 1px solid hsl(var(--border)); color: hsl(var(--foreground)); background: transparent; }
.btn--ghost:hover { background: hsl(var(--foreground) / .06); }

.btn--light { background: rgb(var(--color-white)); color: rgb(var(--color-black)); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(0,0,0,.5); }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: var(--font-size-sm); }
.link-arrow svg { transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   Navigation (transparent overlay → solid on scroll)
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--height-nav);
  color: rgb(var(--color-white));
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -20px #000;
  border-bottom-color: rgba(255,255,255,.08);
}

.nav__inner { height: 100%; display: flex; align-items: center; gap: 2rem; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-plex-sans);
  font-weight: 700;
  letter-spacing: .1em;
  font-size: 1.05rem;
}
.brand__mark {
  display: grid; place-items: center;
  width: 1.9rem; height: 1.9rem;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  font-size: .72rem; letter-spacing: 0;
}

.nav__links { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; font-size: var(--font-size-sm); }
.nav__links a { color: rgba(255,255,255,.85); transition: color .2s ease, text-shadow .2s ease; display: inline-flex; align-items: center; gap: .3rem; font-weight: 500; }
.nav__links a:hover { color: #39ff14; text-shadow: 0 0 8px rgba(57,255,20,.9), 0 0 18px rgba(57,255,20,.6), 0 0 32px rgba(57,255,20,.35); }
.nav__links a svg { opacity: .7; transition: opacity .2s ease; }
.nav__links a:hover svg { opacity: 1; }

.nav__actions { display: flex; align-items: center; gap: 1.1rem; }
.nav__icon { color: rgba(255,255,255,.9); display: grid; place-items: center; }
.nav__login { color: rgba(255,255,255,.9); font-size: var(--font-size-sm); font-weight: 600; }

.nav__toggle { display: none; color: #fff; }
.nav__toggle svg { width: 26px; height: 26px; }

/* mobile drawer */
.nav__drawer {
  position: fixed;
  inset: var(--height-nav) 0 0 0;
  background: rgba(0, 0, 0, .98);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 2rem var(--gutter);
  display: none;
  flex-direction: column;
  gap: 1.1rem;
  z-index: 49;
  font-size: var(--font-size-md);
}
.nav__drawer.is-open { display: flex; }
.nav__drawer a { padding-block: .4rem; border-bottom: 1px solid rgba(255,255,255,.08); transition: color .2s ease, text-shadow .2s ease; }
.nav__drawer a:hover { color: #39ff14; text-shadow: 0 0 8px rgba(57,255,20,.9), 0 0 18px rgba(57,255,20,.6); }

/* ============================================================
   Hero (full-bleed photo)
   ============================================================ */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--height-nav));
  min-height: 94svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: #050b1e;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: var(--height-nav);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.hero__text { max-width: 66%; }
.hero h1 {
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.04;
  margin-bottom: 2rem;
  text-shadow: 0 2px 40px rgba(0,0,0,.45);
}
.hero__pre {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--font-size-md);
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 1rem;
  opacity: .92;
  text-shadow: 0 1px 14px rgba(0,0,0,.55);
}

/* NEXT EVENT card */
.hero__event { width: clamp(270px, 30vw, 380px); flex: none; }
.hero__event-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: var(--font-size-xs);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: .75rem; color: #fff;
}
.hero__event-label::before { content:""; width:.55rem; height:.55rem; border-radius:50%; background:#3ad0c4; }
.next-event {
  display: block; position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16/10;
  background: var(--grad-green);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.8);
  transition: transform .25s ease;
}
.next-event:hover { transform: translateY(-4px); }
.next-event::after { content:""; position:absolute; inset:0; background: radial-gradient(120% 80% at 80% 15%, rgba(255,255,255,.28), transparent 55%); }
.next-event__inner { position:absolute; inset:0; padding:1.25rem; display:flex; flex-direction:column; justify-content:flex-end; z-index:1; }
.next-event .tr { font-family:var(--font-plex-sans); font-weight:600; font-size:.72rem; letter-spacing:.22em; opacity:.9; }
.next-event .lm { font-family:var(--font-plex-sans); font-weight:700; font-size: clamp(1.6rem,2.8vw,2.4rem); line-height:.92; margin-top:.15rem; }
.next-event .lm span { display:block; font-size:.62em; letter-spacing:.04em; }

/* ============================================================
   Event rail ("Events that liberate")
   ============================================================ */
.events-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.75rem; }
.events-head .eyebrow { color: rgba(255,255,255,.7); }
.carousel-nav { display: flex; gap: .5rem; }
.carousel-nav button {
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; display: grid; place-items: center;
  transition: background .2s ease, border-color .2s ease;
}
.carousel-nav button:hover { background: rgba(255,255,255,.12); }

.rail {
  display: flex; gap: 1rem; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.event-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(220px, 30%, 300px);
  border-radius: calc(var(--radius) * 1.6);
  min-height: 210px;
  padding: 1.4rem;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .25s ease;
}
.event-card:hover { transform: translateY(-6px); }
.event-card .kicker { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; opacity: .75; }
.event-card h4 { font-size: var(--font-size-md); margin-top: auto; }
.event-card .where { font-size: var(--font-size-xs); opacity: .7; margin-top: .5rem; }
.ec-1 { background: linear-gradient(160deg,#2a2a2e,#0d0d0f); }
.ec-2 { background: linear-gradient(160deg,#1c2f5a,#0a0f22); }
.ec-3 { background: linear-gradient(160deg,#4a1f5e,#150a1c); }
.ec-4 { background: linear-gradient(160deg,#5e2a1f,#1c0d08); }
.ec-5 { background: linear-gradient(160deg,#1f5e3a,#081c12); }

/* ============================================================
   Gradient band ("Master every area of your life")
   ============================================================ */
.band {
  position: relative;
  min-height: clamp(380px, 52vh, 560px);
  display: grid; place-items: center; text-align: center;
  color: #fff; overflow: hidden;
  background: var(--grad-night);
}
.band::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(80% 120% at 70% 10%, rgba(60,90,200,.35), transparent 55%);
}
.band__content { position: relative; z-index: 1; padding: var(--gutter); max-width: 720px; }
.band__content h2 { font-size: var(--font-size-xxl); margin-bottom: 1rem; }
.band__content p { color: rgba(255,255,255,.8); font-size: var(--font-size-md); margin-bottom: 2rem; }
.play-btn { display: inline-flex; align-items: center; gap: .7rem; font-weight: 600; }
.play-btn .ring {
  width: 3rem; height: 3rem; border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid rgba(255,255,255,.7);
  transition: background .2s ease;
}
.play-btn:hover .ring { background: rgba(255,255,255,.15); }

/* ============================================================
   Pillars
   ============================================================ */
.pillars__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.pillars__list { margin-top: 1.5rem; }
.pillars__list li {
  font-family: var(--font-plex-sans); font-weight: 700;
  font-size: var(--font-size-xl); letter-spacing: -.02em; line-height: 1.25;
  color: hsl(var(--muted-foreground));
  transition: color .2s ease, transform .2s ease; cursor: default;
}
.pillars__list li:hover { color: hsl(var(--foreground)); transform: translateX(6px); }
.pillars__media {
  border-radius: calc(var(--radius) * 2); aspect-ratio: 4/5;
  background: var(--grad-purple); position: relative; overflow: hidden;
  box-shadow: 0 40px 80px -50px rgba(70,30,160,.8);
}
.pillars__media::after { content:""; position:absolute; inset:0; background: radial-gradient(100% 60% at 30% 10%, rgba(255,255,255,.3), transparent 60%); }

/* ============================================================
   Big testimonial
   ============================================================ */
.quote-block { background: var(--grad-purple); color: #fff; }
.quote-block .container { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.quote-block blockquote {
  font-family: var(--font-plex-sans); font-weight: 600;
  font-size: var(--font-size-xl); line-height: 1.25;
  max-width: 24ch; margin-left: auto; text-align: right;
}
.avatars { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.avatar { display: flex; align-items: center; gap: .7rem; font-size: var(--font-size-xs); }
.avatar .dot {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: rgba(255,255,255,.18); display: grid; place-items: center;
  font-weight: 700; font-family: var(--font-plex-sans);
  border: 1px solid rgba(255,255,255,.25);
}
.avatar small { display: block; opacity: .65; }

/* ============================================================
   Split "hunger" section
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__media {
  border-radius: calc(var(--radius) * 2); aspect-ratio: 1/1;
  background: var(--grad-blue); position: relative; overflow: hidden;
  box-shadow: 0 40px 80px -50px rgba(20,60,200,.7);
}
.split__media::after { content:""; position:absolute; inset:0; background: radial-gradient(90% 60% at 70% 10%, rgba(255,255,255,.3), transparent 55%); }
.split h2 { font-size: var(--font-size-xl); margin-bottom: 1.25rem; }
.split p { color: hsl(var(--muted-foreground)); margin-bottom: 1.75rem; }
.featured-card {
  margin-top: 2.5rem; border-radius: calc(var(--radius) * 1.5);
  background: rgb(var(--color-black)); color: #fff; padding: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.featured-card .label { font-family: var(--font-mono); font-size: var(--font-size-xs); letter-spacing: .14em; text-transform: uppercase; opacity: .7; }

/* ============================================================
   Results / stats
   ============================================================ */
.results__head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: end; margin-bottom: 3rem; }
.results h2 { font-size: var(--font-size-xxl); }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.stat .num { font-family: var(--font-plex-sans); font-weight: 700; font-size: var(--font-size-xxl); line-height: 1; letter-spacing: -.03em; }
.stat .desc { color: hsl(var(--muted-foreground)); font-size: var(--font-size-sm); margin-top: .5rem; max-width: 28ch; }

.tcards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; }
.tcard {
  background: hsl(var(--secondary)); border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) * 1.4); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem; min-height: 230px;
}
.tcard p { font-size: var(--font-size-sm); }
.tcard .who { margin-top: auto; font-size: var(--font-size-xs); color: hsl(var(--muted-foreground)); display:flex; align-items:center; gap:.6rem; }
.tcard .who .dot { width: 2rem; height: 2rem; border-radius: 50%; background: var(--grad-blue); display:grid; place-items:center; color:#fff; font-weight:700; font-size:.7rem; }

/* ============================================================
   Centered statement
   ============================================================ */
.statement { text-align: center; }
.statement h2 { font-size: var(--font-size-xxl); margin-bottom: 1.25rem; }
.statement p { color: hsl(var(--muted-foreground)); font-size: var(--font-size-md); max-width: 56ch; margin-inline: auto; }

/* ============================================================
   Upcoming events feature card
   ============================================================ */
.feature-event {
  border-radius: calc(var(--radius) * 2.2); background: var(--grad-purple); color: #fff;
  padding: clamp(2rem, 5vw, 4rem); display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 2.5rem; align-items: center; position: relative; overflow: hidden;
}
.feature-event::after { content:""; position:absolute; inset:0; background: radial-gradient(80% 120% at 90% 10%, rgba(255,255,255,.25), transparent 55%); pointer-events:none; }
.feature-event .tag { font-family: var(--font-mono); font-size: var(--font-size-xs); letter-spacing:.16em; text-transform:uppercase; opacity:.85; }
.feature-event h3 { font-size: var(--font-size-xl); margin: 1rem 0 1.5rem; max-width: 16ch; }
.feature-event .meta { display:flex; gap: 2rem; flex-wrap:wrap; font-size: var(--font-size-sm); margin-bottom: 1.75rem; opacity:.9; }
.feature-event__media { position: relative; z-index:1; aspect-ratio: 4/3; border-radius: var(--radius); background: rgba(0,0,0,.35); border:1px solid rgba(255,255,255,.2); display:grid; place-items:center; }

/* ============================================================
   Expert guidance (amber)
   ============================================================ */
.guidance {
  border-radius: calc(var(--radius) * 2.2); background: var(--grad-amber); color: #fff;
  padding: clamp(2rem, 5vw, 4rem); display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center; position: relative; overflow: hidden;
}
.guidance h2 { font-size: var(--font-size-xl); margin-bottom: 1.5rem; }
.guidance .stats { grid-template-columns: repeat(2,1fr); margin-bottom: 1.75rem; }
.guidance .num { color: #fff; }
.guidance .desc { color: rgba(255,255,255,.8); }
.guidance .btns { display:flex; gap:1rem; flex-wrap:wrap; }

/* ============================================================
   Products grid
   ============================================================ */
.filters { display:flex; gap:.5rem; flex-wrap:wrap; justify-content:center; margin: 1.75rem 0 2.5rem; }
.filters button {
  border: 1px solid hsl(var(--border)); border-radius: 999px; padding: .45rem 1.1rem;
  font-size: var(--font-size-xs); color: hsl(var(--muted-foreground)); transition: all .2s ease;
}
.filters button.is-active { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); border-color: hsl(var(--primary)); }

.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.product {
  border: 1px solid hsl(var(--border)); border-radius: calc(var(--radius) * 1.4);
  overflow: hidden; background: hsl(var(--card)); transition: transform .2s ease, box-shadow .2s ease;
}
.product:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -30px rgba(0,0,0,.25); }
.product__img { aspect-ratio: 1/1; position: relative; display:grid; place-items:center; }
.product__img .badge { position:absolute; top:.75rem; left:.75rem; font-family:var(--font-mono); font-size:.6rem; letter-spacing:.12em; text-transform:uppercase; background:rgb(var(--color-black)); color:#fff; padding:.2rem .5rem; border-radius:999px; }
.pi-1 { background: linear-gradient(150deg,#e9e7ff,#c9c2ff); }
.pi-2 { background: linear-gradient(150deg,#dfeefe,#bcd8fb); }
.pi-3 { background: linear-gradient(150deg,#fff0d9,#ffd79e); }
.pi-4 { background: linear-gradient(150deg,#e8f7ec,#c3ebcf); }
.product__body { padding: 1.1rem 1.25rem 1.4rem; }
.product__body h4 { font-size: var(--font-size-base); margin-bottom: .3rem; }
.product__body .price { font-size: var(--font-size-sm); color: hsl(var(--muted-foreground)); }

/* ============================================================
   Podcast
   ============================================================ */
.podcast__grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,4vw,3rem); align-items: stretch; }
.podcast__feature {
  border-radius: calc(var(--radius)*2); background: var(--grad-purple); color:#fff;
  padding: clamp(1.75rem, 4vw, 3rem); display:flex; flex-direction:column; justify-content:flex-end;
  min-height: 360px; position:relative; overflow:hidden;
}
.podcast__feature::after { content:""; position:absolute; inset:0; background: radial-gradient(90% 60% at 80% 0%, rgba(255,255,255,.25), transparent 55%); }
.podcast__feature .tag { font-family:var(--font-mono); font-size:var(--font-size-xs); letter-spacing:.16em; text-transform:uppercase; opacity:.85; position:relative; z-index:1; }
.podcast__feature h3 { font-size: var(--font-size-lg); margin-top:.75rem; position:relative; z-index:1; max-width: 22ch; }
.episodes { display:flex; flex-direction:column; }
.episode { display:flex; gap:1rem; padding: 1rem 0; border-bottom:1px solid hsl(var(--border)); }
.episode:first-child { padding-top:0; }
.episode__art { width: 3.5rem; height:3.5rem; border-radius: var(--radius); flex:none; background: var(--grad-blue); }
.episode__meta .cat { font-family:var(--font-mono); font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color:hsl(var(--muted-foreground)); }
.episode__meta h5 { font-size: var(--font-size-sm); margin-top:.2rem; }

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta { text-align:center; background: radial-gradient(120% 120% at 50% 0%, #14213f 0%, #070b18 60%); color:#fff; }
.final-cta h2 { font-size: var(--font-size-xxl); margin-bottom: 1.25rem; }
.final-cta p { color: rgba(255,255,255,.7); font-size: var(--font-size-md); max-width: 46ch; margin: 0 auto 2rem; }
.subscribe { display:flex; gap:.6rem; max-width: 460px; margin: 0 auto; flex-wrap:wrap; justify-content:center; }
.subscribe input {
  flex:1 1 220px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2);
  border-radius:999px; padding:.85rem 1.25rem; color:#fff; font-size: var(--font-size-sm);
}
.subscribe input::placeholder { color: rgba(255,255,255,.5); }
.subscribe textarea {
  flex:1 1 220px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2);
  border-radius:999px; padding:.85rem 1.25rem; color:#fff; font-size: var(--font-size-sm);
}


/* ============================================================
   Footer
   ============================================================ */
.footer { background: rgb(var(--color-black)); color: rgba(255,255,255,.7); padding-block: clamp(3rem,6vw,5rem) 2rem; }
.footer__grid { display:grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 2rem; }
.footer__brand .brand { color:#fff; margin-bottom: 1rem; }
.footer__brand p { font-size: var(--font-size-sm); max-width: 30ch; }
.footer h6 { color:#fff; font-family: var(--font-plex-sans); font-size: var(--font-size-sm); margin-bottom: 1rem; }
.footer ul li { margin-bottom: .6rem; }
.footer a { font-size: var(--font-size-sm); transition: color .2s ease; }
.footer a:hover { color:#fff; }
.socials { display:flex; gap:.75rem; margin-top:1.5rem; }
.socials a { width:2.4rem; height:2.4rem; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:grid; place-items:center; color:#fff; }
.socials a:hover { background: rgba(255,255,255,.1); }
.footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top:1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size: var(--font-size-xs); }
.footer__bottom .legal { display:flex; gap:1.5rem; flex-wrap:wrap; }

/* ============================================================
   Scroll-reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .tcards { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav__links, .nav__login { display: none; }
  .nav__toggle { display: inline-flex; }
  .hero__inner { flex-direction: column; align-items: flex-start; }
  .hero__text { max-width: 100%; }
  .hero__event { width: 100%; max-width: 360px; }
  .pillars__grid, .split, .results__head, .feature-event, .guidance, .podcast__grid { grid-template-columns: 1fr; }
  .quote-block .container { grid-template-columns: 1fr; }
  .quote-block blockquote { text-align: left; margin-left: 0; max-width: 100%; }
  .pillars__media, .split__media { max-width: 460px; }
}

@media (max-width: 560px) {
  .tcards, .products { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
}
