/* ============================================
   SMM Academy — MasterClass aesthetic (2026)
   Mobile-first
   ============================================ */

:root {
  --color-bg: #050505;
  --color-bg-elevated: #0a0a0a;
  --color-bg-light: #f7f4ee;
  --color-bg-card: #ffffff;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.62);
  --color-text-dark: #1a1a1a;
  --color-text-secondary: #5c5c5c;
  --color-accent: #c9a962;
  --color-accent-hover: #d4b872;
  --color-cta: #e32626;
  --color-cta-hover: #c41f1f;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-light: rgba(0, 0, 0, 0.08);

  --font-sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;
  --space-3xl: 10rem;

  --landing-bg: #050505;
  --section-pad-y: clamp(2.25rem, 4.5vw, 3.75rem);
  --section-head-gap: clamp(1.75rem, 3.5vw, 2.75rem);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  --header-height: 64px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition: 0.6s var(--ease-out-expo);
  --transition-fast: 0.25s ease;
  --transition-reveal: 1.15s var(--ease-out-expo);

  --container: min(100% - 1.25rem, 1180px);
  --container-narrow: min(100% - 1.25rem, 760px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, input {
  font: inherit;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container--narrow {
  width: var(--container-narrow);
}

/* ---- Typography ---- */
.lead {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.section__label {
  display: inline-block;
  padding: 0.42rem 1.05rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  text-shadow: 0 0 28px rgba(201, 169, 98, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

/* ---- Unified display headings (hero + sections) ---- */
.display-title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.25rem, 0.6vh, 0.5rem);
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 100%;
  margin: 0;
}

.display-title--hero {
  gap: clamp(0.35rem, 0.8vh, 0.625rem);
  font-size: clamp(2.5rem, 8.5vw, 5.5rem);
  margin-top: 0.125rem;
  margin-bottom: 0.25rem;
}

.display-title--section {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  margin-bottom: var(--space-sm);
}

.display-title__line {
  display: block;
  text-transform: uppercase;
  white-space: nowrap;
}

.display-title__line--primary {
  color: #fff;
  font-weight: 500;
  font-size: 1em;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 80px rgba(0, 0, 0, 0.55);
}

.display-title__accent-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.display-title__line--accent {
  display: block;
  width: 100%;
  color: var(--color-accent);
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 0.022em;
  line-height: 1.15;
  text-align: inherit;
  text-shadow:
    0 0 64px rgba(201, 169, 98, 0.38),
    0 0 18px rgba(201, 169, 98, 0.2);
  vertical-align: top;
}

.section__header--center .display-title,
.program__head .display-title,
.student-results__head .display-title,
.pricing__head .display-title,
.faq__head .display-title,
main .display-title--section {
  align-items: center;
  text-align: center;
  margin-inline: auto;
}

.section__header {
  margin-bottom: var(--section-head-gap);
  max-width: 42rem;
}

.section__header--center,
.program__head,
.student-results__head,
.pricing__head,
.faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: var(--section-head-gap);
}

.section__header--center .section__label,
.program__head .section__label,
.student-results__head .section__label,
.pricing__head .section__label,
.faq__head .section__label {
  margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-cta);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  padding: 1rem 2rem;
}

.btn--primary:hover {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(227, 38, 38, 0.35);
}

.btn--ghost {
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
}

.btn--outline-light {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.btn--outline-dark {
  color: var(--color-text-dark);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn--outline-dark:hover {
  background: var(--color-text-dark);
  color: #fff;
  border-color: var(--color-text-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn--instagram {
  gap: 0.5rem;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(131, 58, 180, 0.18) 0%,
    rgba(225, 48, 108, 0.14) 45%,
    rgba(252, 176, 69, 0.16) 100%
  );
  border: 1px solid rgba(225, 48, 108, 0.32);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn--instagram:hover {
  background: linear-gradient(
    135deg,
    rgba(131, 58, 180, 0.28) 0%,
    rgba(225, 48, 108, 0.22) 45%,
    rgba(252, 176, 69, 0.24) 100%
  );
  border-color: rgba(225, 48, 108, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(225, 48, 108, 0.16);
}

.btn__ig {
  flex-shrink: 0;
}

.header__ig {
  display: inline-flex;
}

.nav__ig {
  margin-top: var(--space-sm);
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  color: var(--color-text);
  z-index: 101;
}

.logo__mark {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
}

.logo__text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  z-index: 99;
}

.nav--open {
  display: flex;
}

.nav__link {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
  opacity: 0.85;
  transition: var(--transition-fast);
}

.nav__link:hover {
  opacity: 1;
  color: var(--color-accent);
}

.nav__cta {
  display: inline-flex;
  margin-top: var(--space-sm);
  padding: 0.875rem 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header__cta {
  display: none;
}

.burger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid rgba(201, 169, 98, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  z-index: 101;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.burger:hover {
  border-color: rgba(201, 169, 98, 0.75);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

.burger__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 28%;
  transform: scale(1.22);
  transform-origin: 50% 50%;
  transition: transform 0.35s ease, filter 0.25s ease;
}

.burger__lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.42);
  transition: opacity 0.25s ease;
}

.burger__lines span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.25s ease;
}

.burger--active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.2);
}

.burger--active .burger__photo {
  transform: scale(1.28);
  filter: brightness(0.75);
}

.burger--active .burger__lines {
  opacity: 1;
}

.burger--active .burger__lines span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.burger--active .burger__lines span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* ---- Hero (cinematic · MasterClass + Apple) ---- */
.hero {
  --hero-gap: clamp(1.5rem, 4vh, 2.25rem);
  --hero-glow-gold: rgba(201, 169, 98, 0.45);
  --hero-glow-warm: rgba(255, 120, 80, 0.12);
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 1.25rem + env(safe-area-inset-top, 0px)) 0 0;
  background: var(--landing-bg);
  color: var(--color-text);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 72% 42%, var(--hero-glow-warm), transparent 65%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.7;
}

.hero__letterbox {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(24px, 4vh, 48px);
  background: var(--landing-bg);
  z-index: 4;
  pointer-events: none;
}

.hero__letterbox--top { top: 0; }
.hero__letterbox--bottom { bottom: 0; }

.hero__spotlight {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 38% -5%, rgba(201, 169, 98, 0.28) 0%, transparent 52%),
    radial-gradient(ellipse 80% 55% at 88% 35%, rgba(140, 100, 220, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0, 0, 0, 0.92) 0%, transparent 68%);
  z-index: 0;
  animation: spotlight-breathe 10s ease-in-out infinite alternate;
}

.hero__spotlight::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 20%;
  width: 1px;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(255, 220, 160, 0.15), transparent);
  transform: rotate(-12deg);
  filter: blur(0.5px);
}

@keyframes spotlight-breathe {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.03); }
}

/* Background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}

.hero__bg::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 5%;
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, var(--hero-glow-gold) 0%, transparent 68%);
  filter: blur(60px);
  opacity: 0.35;
  animation: orb-float 14s ease-in-out infinite;
}

.hero__aurora {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(201, 162, 39, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(120, 80, 200, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 70% 85%, rgba(220, 100, 80, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 40% 60%, rgba(201, 162, 39, 0.06) 0%, transparent 50%);
  animation: aurora-shift 18s ease-in-out infinite alternate;
}

@keyframes aurora-shift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -3%) scale(1.05); }
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orb-float 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  background: rgba(201, 162, 39, 0.32);
  top: -12%;
  right: -8%;
  animation-delay: 0s;
  opacity: 0.65;
}

.hero__orb--2 {
  width: min(360px, 42vw);
  height: min(360px, 42vw);
  background: rgba(100, 70, 180, 0.22);
  bottom: 5%;
  left: -6%;
  animation-delay: -4s;
  opacity: 0.55;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -30px); }
  66% { transform: translate(-15px, 20px); }
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  z-index: 1;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 130% 110% at 50% 50%, transparent 20%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(105deg, rgba(0, 0, 0, 0.55) 0%, transparent 42%, transparent 58%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

/* Layout */
.hero__layout {
  position: relative;
  z-index: 3;
  display: grid;
  gap: clamp(2.8rem, 6.8vw, 5.6rem);
  align-items: center;
  flex: 1;
  padding-bottom: clamp(2.5rem, 5vh, 4rem);
  width: 100%;
}

.hero__main {
  display: flex;
  flex-direction: column;
  gap: var(--hero-gap);
  max-width: 38rem;
  padding-block: clamp(0.5rem, 2vh, 1.25rem);
}

.hero__main > * {
  margin-bottom: 0;
}

/* Eyebrow */
.hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-shadow: 0 0 40px var(--hero-glow-gold);
}

/* Title — uses .display-title */
.hero__title {
  align-items: flex-start;
}

.hero__title-line,
.display-title__line {
  display: block;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__title-line--primary,
.display-title__line--primary {
  color: #fff;
  font-weight: 500;
  font-size: 1em;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 80px rgba(0, 0, 0, 0.55);
}

.hero__title-accent-wrap,
.display-title__accent-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.hero__title-line--accent,
.display-title__line--accent {
  display: block;
  width: 100%;
  color: var(--color-accent);
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 0.022em;
  line-height: 1.15;
  text-align: inherit;
  text-shadow:
    0 0 64px rgba(201, 169, 98, 0.38),
    0 0 18px rgba(201, 169, 98, 0.2);
  vertical-align: top;
}

/* Hero title — mobile & tablet center */
@media (max-width: 1023px) {
  .hero__layout {
    text-align: center;
    gap: clamp(1.25rem, 3.5vh, 2rem);
  }

  .hero__main {
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: none;
  }

  .hero__title,
  .hero__main .display-title--hero {
    align-items: center;
    margin-inline: auto;
  }

  .hero__title-line--primary,
  .display-title--hero .display-title__line--primary {
    text-align: center;
    align-self: center;
  }

  .hero__title-accent-wrap,
  .display-title--hero .display-title__accent-wrap {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .hero__subtitle {
    margin-inline: auto;
    text-align: center;
  }

  .hero__platforms,
  .hero__social-proof {
    justify-content: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
    padding: 0 0 clamp(0.5rem, 1.5vh, 0.875rem);
    overflow: hidden;
    width: 100%;
  }

  .hero__visual::before {
    inset: 18% 22%;
    opacity: 0.1;
    filter: blur(24px);
  }

  .hero__showcase {
    width: min(56vw, 190px);
    aspect-ratio: 16 / 10;
    margin-inline: auto;
    filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.32));
  }

  .hero__ring,
  .hero__float {
    display: none;
  }

  .hero__card--main {
    inset: 5% 4%;
    border-radius: 12px;
    animation: none;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.04) inset,
      0 1px 0 rgba(255, 255, 255, 0.1) inset,
      0 16px 48px rgba(0, 0, 0, 0.4);
  }

  .hero__card-header {
    padding: 0.5rem 0.75rem 0;
    gap: 5px;
  }

  .hero__card-dot {
    width: 7px;
    height: 7px;
  }

  .hero__card-body {
    padding: 0.625rem 0.875rem 0.875rem;
  }

  .hero__metric {
    margin-bottom: 0.5rem;
  }

  .hero__metric-label {
    font-size: 0.5625rem;
  }

  .hero__metric-value {
    font-size: 1.375rem;
  }

  .hero__metric-unit {
    font-size: 0.75rem;
  }

  .hero__chart {
    height: 44px;
    gap: 5px;
    margin-bottom: 0.5rem;
    padding-top: 0.25rem;
  }

  .hero__card-tags {
    gap: 0.35rem;
  }

  .hero__card-tags span {
    font-size: 0.5625rem;
    padding: 0.2rem 0.45rem;
  }
}

/* Subtitle & platforms */
.hero__subtitle {
  font-size: clamp(1.0625rem, 2.5vw, 1.3125rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.9;
  max-width: 34rem;
  letter-spacing: 0.015em;
  padding-top: 0.375rem;
  margin-bottom: 0.25rem;
}

.hero__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.375rem;
}

.hero__platform {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Actions */
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.875rem;
  margin-top: 0.25rem;
}

/* Premium CTA — Apple pill + MasterClass depth */
.hero__actions .btn--primary.btn--glow {
  position: relative;
  isolation: isolate;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(
    180deg,
    #ff5a5a 0%,
    var(--color-cta) 38%,
    #b81c1c 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 980px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 4px 16px rgba(227, 38, 38, 0.35),
    0 16px 48px rgba(227, 38, 38, 0.28),
    0 32px 64px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    border-color 0.35s ease;
  overflow: hidden;
}

.hero__actions .btn--primary.btn--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.28) 0%,
    transparent 42%,
    transparent 58%,
    rgba(255, 255, 255, 0.06) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__actions .btn--primary.btn--glow::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 60%
  );
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.7s var(--ease-out-expo);
  pointer-events: none;
  z-index: 0;
}

.hero__actions .btn--primary.btn--glow span,
.hero__actions .btn--primary.btn--glow .btn__arrow {
  position: relative;
  z-index: 1;
}

.hero__actions .btn--primary.btn--glow:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 24px rgba(227, 38, 38, 0.45),
    0 24px 56px rgba(227, 38, 38, 0.35),
    0 40px 80px rgba(0, 0, 0, 0.4);
}

.hero__actions .btn--primary.btn--glow:hover::after {
  transform: translateX(280%) skewX(-12deg);
}

.hero__actions .btn--primary.btn--glow:active {
  transform: translateY(0) scale(0.99);
  transition-duration: 0.1s;
}

.hero__actions .btn--ghost {
  padding: 0.875rem 1.5rem;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.hero__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--glow {
  gap: 0.75rem;
}

.btn__arrow {
  transition: transform var(--transition-fast);
}

.btn--glow:hover .btn__arrow {
  transform: translateX(3px);
}

.btn--play {
  gap: 0.75rem;
}

.btn__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.btn--play:hover .btn__play-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Social proof */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: 0.75rem;
  margin-top: 0.375rem;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 36px;
  height: 36px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  background: hsl(var(--hue, 40) 50% 45%);
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__avatar:last-child {
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.hero__social-proof p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.hero__social-proof strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Visual showcase */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-md) 0;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 5% 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, var(--hero-glow-gold), transparent 70%);
  filter: blur(40px);
  opacity: 0.25;
  pointer-events: none;
}

.hero__showcase {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 4 / 5;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.55));
}

.hero__ring {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.12);
  animation: ring-spin 30s linear infinite;
}

.hero__ring::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px var(--color-accent);
}

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

.hero__card--main {
  position: absolute;
  inset: 8% 5% 8% 5%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 32px 100px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(201, 169, 98, 0.08);
  overflow: hidden;
  animation: card-float 7s ease-in-out infinite;
}

.hero__card--main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__card-header {
  display: flex;
  gap: 6px;
  padding: 1rem 1.25rem 0;
}

.hero__card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.hero__card-dot:first-child { background: #ff5f57; }
.hero__card-dot:nth-child(2) { background: #febc2e; }
.hero__card-dot:nth-child(3) { background: #28c840; }

.hero__card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.hero__metric {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.hero__metric-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: auto;
}

.hero__metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 30%, rgba(255, 255, 255, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__metric-unit {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
}

.hero__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}

.hero__chart-bar {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(201, 162, 39, 0.3) 100%);
  transform-origin: bottom;
  animation: bar-grow 1.2s cubic-bezier(0.34, 1.2, 0.64, 1) backwards;
  animation-delay: calc(0.8s + var(--i, 0) * 0.08s);
}

.hero__chart-bar:nth-child(1) { --i: 0; }
.hero__chart-bar:nth-child(2) { --i: 1; }
.hero__chart-bar:nth-child(3) { --i: 2; }
.hero__chart-bar:nth-child(4) { --i: 3; }
.hero__chart-bar:nth-child(5) { --i: 4; }
.hero__chart-bar:nth-child(6) { --i: 5; }
.hero__chart-bar:nth-child(7) { --i: 6; }

@keyframes bar-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.hero__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__card-tags span {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  color: var(--color-accent);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

/* Floating cards */
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  background: rgba(8, 8, 8, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(201, 169, 98, 0.06);
  z-index: 2;
}

.hero__float--growth {
  top: 18%;
  right: -8%;
  animation: float-drift 5s ease-in-out infinite;
}

.hero__float--roas {
  bottom: 22%;
  left: -10%;
  animation: float-drift 5s ease-in-out infinite reverse;
  animation-delay: -2.5s;
}

@keyframes float-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__float-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  background: rgba(52, 199, 89, 0.15);
  color: #34c759;
}

.hero__float-icon--gold {
  background: rgba(201, 162, 39, 0.15);
  color: var(--color-accent);
  font-size: 0.75rem;
}

.hero__float-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero__float-label {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
}

/* Marquee */
.hero__marquee {
  position: relative;
  z-index: 2;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.hero__marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 245, 247, 0.4);
  animation: marquee 28s linear infinite;
}

.hero__marquee-track span:nth-child(even) {
  color: var(--color-accent);
  opacity: 0.6;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Bottom bar */
.hero__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0 var(--space-lg);
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
  width: 100%;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.35);
}

.hero__stat {
  text-align: center;
  min-width: 80px;
}

.hero__stat-value {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.hero__stat-suffix {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}

.hero__stat-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
  display: none;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.hero__scroll:hover {
  color: var(--color-accent);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Hero entrance animations — layered text reveal */
.hero-enter {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(14px);
}

.hero--loaded .hero-enter {
  animation: hero-enter 1.35s var(--ease-out-expo) forwards;
  animation-delay: calc(0.2s + var(--i, 0) * 0.16s);
}

.hero--loaded .hero__visual.hero-enter {
  animation: hero-visual-in 1.6s var(--ease-out-expo) forwards;
  animation-delay: calc(0.55s + var(--i, 0) * 0.1s);
}

.hero--loaded .hero__title.hero-enter {
  animation: hero-title-in 1.5s var(--ease-out-expo) forwards;
  animation-delay: 0.35s;
}

.hero--loaded .hero__title.hero-enter .display-title__line--accent,
.hero--loaded .hero__title.hero-enter .hero__title-line--accent {
  opacity: 0;
  animation: hero-title-in 1.45s var(--ease-out-expo) forwards;
  animation-delay: 0.72s;
}

.hero--loaded .hero__subtitle.hero-enter {
  animation: hero-text-soft 1.4s var(--ease-out-expo) forwards;
  animation-delay: 0.58s;
}

.hero--loaded .hero__platforms.hero-enter .hero__platform {
  opacity: 0;
  animation: hero-platform-in 0.9s var(--ease-out-expo) forwards;
}

.hero--loaded .hero__platforms.hero-enter .hero__platform:nth-child(1) { animation-delay: 0.85s; }
.hero--loaded .hero__platforms.hero-enter .hero__platform:nth-child(2) { animation-delay: 0.95s; }
.hero--loaded .hero__platforms.hero-enter .hero__platform:nth-child(3) { animation-delay: 1.05s; }
.hero--loaded .hero__platforms.hero-enter .hero__platform:nth-child(4) { animation-delay: 1.15s; }

.hero--loaded .hero__actions.hero-enter {
  animation: none;
  opacity: 1;
  transform: none;
  filter: none;
}

.hero--loaded .hero__platforms.hero-enter {
  animation: none;
  opacity: 1;
  transform: none;
  filter: none;
}

.hero--loaded .hero__actions.hero-enter .btn--primary {
  opacity: 0;
  animation: hero-cta-in 1.1s var(--ease-out-expo) forwards;
  animation-delay: 1.05s;
}

.hero--loaded .hero__actions.hero-enter .btn--ghost {
  opacity: 0;
  animation: hero-cta-in 1.1s var(--ease-out-expo) forwards;
  animation-delay: 1.2s;
}

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(1.25em);
    filter: blur(10px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hero-text-soft {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes hero-platform-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-cta-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.94);
    filter: blur(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero--loaded .hero__chart-bar {
  animation: bar-grow 1s cubic-bezier(0.34, 1.2, 0.64, 1) backwards;
  animation-delay: calc(1.2s + var(--i, 0) * 0.07s);
}

/* ---- Mobile hero (MasterClass) ---- */
@media (max-width: 767px) {
  :root {
    --container: min(100% - 1.5rem, 1180px);
    --container-narrow: min(100% - 1.5rem, 760px);
  }

  .section {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .program,
  .student-results,
  .faq,
  .cta,
  .pricing,
  .contacts {
    padding-top: clamp(2rem, 6vw, 3rem);
    padding-bottom: clamp(2rem, 6vw, 3rem);
  }

  .nav {
    justify-content: flex-start;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: calc(var(--header-height) + 1.5rem) 1.5rem 2rem;
    gap: var(--space-md);
  }

  .hero {
    --hero-gap: clamp(1.75rem, 4.5vh, 2.25rem);
    padding-top: calc(var(--header-height) + 1.5rem);
    min-height: auto;
    padding-bottom: 0;
  }

  .hero::after {
    opacity: 0.45;
  }

  .hero__layout {
    text-align: center;
    gap: clamp(1rem, 3vh, 1.75rem);
    padding-bottom: var(--space-lg);
  }

  .hero__main {
    max-width: none;
    margin-inline: auto;
    gap: var(--hero-gap);
    padding-block: clamp(0.75rem, 2vh, 1.5rem);
    padding-inline: clamp(0.25rem, 2vw, 1rem);
  }

  .hero__title {
    font-size: clamp(2.125rem, 10vw, 3.15rem);
    align-items: center;
    gap: clamp(0.3rem, 0.7vh, 0.5rem);
  }

  .hero__title-accent-wrap {
    text-align: center;
  }

  .hero__title-line--primary {
    letter-spacing: 0.05em;
  }

  .hero__subtitle {
    margin-inline: auto;
    font-size: 1.0625rem;
    line-height: 1.75;
  }

  .hero__platforms {
    justify-content: center;
  }

  .hero__actions {
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    gap: 0.875rem;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .hero__actions .btn--primary.btn--glow {
    padding: 1.0625rem 2rem;
  }

  .hero__social-proof {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .hero__marquee {
    padding: var(--space-sm) 0;
  }

  .hero__bottom {
    padding: var(--space-md) 0 var(--space-lg);
    gap: var(--space-md);
  }

  .hero__stats {
    padding: var(--space-md);
    gap: var(--space-sm) var(--space-md);
  }

  .hero__stat-value {
    font-size: 1.375rem;
  }

  .nav__link {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    font-weight: 500;
  }

  .section__header {
    margin-bottom: var(--space-xl);
  }

  .audience-grid {
    gap: 1rem;
  }

  .audience-card {
    padding: 1.5rem;
  }

  .program__title,
  .pricing__title,
  .faq__title,
  .display-title--section {
    font-size: clamp(2rem, 8.5vw, 2.75rem);
  }

  .program__watermark {
    font-size: clamp(9rem, 32vw, 14rem);
  }

  .program-module__title {
    max-width: 100%;
    padding-right: 3rem;
  }

  .program-module__ghost {
    font-size: clamp(3rem, 12vw, 5rem);
    right: 0.75rem;
  }

  .program-module--featured .program-module__title,
  .program-module--featured .program-module__desc {
    max-width: 100%;
  }

  .program-module--featured .program-module__ghost {
    font-size: clamp(3.5rem, 14vw, 5.5rem);
  }

  .pricing-card--best {
    order: unset;
  }

  .pricing-card--flagship {
    order: unset;
  }

  .faq__trigger {
    gap: 0.75rem;
    padding: 1rem 1.125rem;
  }

  .faq__num {
    min-width: 1.75rem;
    padding: 0.2rem 0.4rem;
    font-size: 0.5625rem;
  }

  .faq__content-inner {
    padding-left: 1.125rem;
  }

  .cta__btn {
    width: 100%;
    max-width: 22rem;
    padding: 1.0625rem 1.75rem;
    font-size: 0.8125rem;
  }

  .cta__form-wrap {
    max-width: 100%;
    width: 100%;
  }

  .footer__contact span {
    overflow-wrap: anywhere;
  }

  .toast {
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: none;
    transform: translateY(120%);
    border-radius: var(--radius-lg);
    text-align: center;
  }

  .toast--visible {
    transform: translateY(0);
  }
}

@media (max-width: 767px) and (hover: none) {
  .program-module:hover,
  .testimonial-card:hover,
  .pricing-card:hover,
  .audience-card:hover,
  .outcome-card:hover {
    transform: none;
  }

  .program-module--featured:hover,
  .testimonial-card--featured:hover,
  .pricing-card--best:hover,
  .pricing-card--flagship:hover,
  .pricing-card--popular:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 64px;
    --container: min(100% - 1.25rem, 1180px);
    --container-narrow: min(100% - 1.25rem, 760px);
  }

  body {
    font-size: 1rem;
  }

  .hero__letterbox {
    height: 16px;
  }

  .hero__title {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    gap: 0.3rem;
  }

  .hero__title-line--primary {
    letter-spacing: 0.045em;
  }

  .hero__title-line--accent {
    font-size: 0.78em;
    letter-spacing: 0.008em;
  }

  .hero__showcase {
    width: min(52vw, 160px);
    aspect-ratio: 16 / 9;
  }

  .hero__metric-value {
    font-size: 1.25rem;
  }

  .hero__chart {
    height: 36px;
    margin-bottom: 0.375rem;
  }

  .hero__card-body {
    padding: 0.5rem 0.75rem 0.75rem;
  }

  .hero__stats {
    padding: 1rem;
    gap: 0.75rem 1rem;
  }

  .hero__stat {
    min-width: 70px;
  }

  .hero__stat-value {
    font-size: 1.25rem;
  }

  .section__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .nav__link {
    font-size: clamp(1.375rem, 5.5vw, 1.75rem);
  }

  .audience-card__index {
    top: 1.25rem;
    right: 1.25rem;
  }

  .program__meta {
    gap: 0.5rem;
  }

  .program__meta span {
    font-size: 0.5625rem;
    padding: 0.4rem 0.75rem;
  }

  .pricing-card__amount {
    font-size: clamp(2.125rem, 8vw, 2.5rem);
  }

  .enroll-form {
    padding: 1.5rem;
  }

  .enroll-field__input {
    font-size: 16px;
  }

  .cta__title {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .faq__stats {
    gap: 0.5rem;
  }

  .faq__stats span {
    font-size: 0.5625rem;
    padding: 0.4rem 0.75rem;
  }

  .faq__content-inner {
    padding-left: 1.125rem;
  }

  .logo__mark {
    font-size: 1rem;
  }

  .logo__text {
    font-size: 1.125rem;
  }

  .pricing-card__badge {
    font-size: 0.625rem;
    padding: 0.3125rem 0.75rem;
  }

  .pricing-card__badge-row {
    margin-bottom: 1rem;
  }

  .toast {
    bottom: max(var(--space-sm), env(safe-area-inset-bottom, 0px));
  }
}

/* ---- Sections ---- */
.section {
  padding: var(--section-pad-y) 0;
  background: var(--landing-bg);
}

/* ---- Landing flow (seamless dark page) — see css/landing-flow.css ---- */
main {
  background: var(--landing-bg);
}

.section--light {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section--light .section__title {
  color: var(--color-text-dark);
}

.section--dark {
  background: var(--landing-bg);
  color: var(--color-text);
}

.section--dark .section__title {
  color: var(--color-text);
}

/* ---- About ---- */
.about__grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: start;
}

.about__text p:not(.lead) {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.about__features li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.about__icon {
  flex-shrink: 0;
  color: var(--color-accent);
  font-size: 0.625rem;
  margin-top: 0.5rem;
}

.about__features strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about__features span {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.about__card {
  background: var(--color-bg);
  color: var(--color-text);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.about__card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(201, 162, 39, 0.15), transparent 70%);
  pointer-events: none;
}

.about__card-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: #000;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.about__card h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: var(--space-xs);
}

.about__card > p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}

.about__card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

/* ---- Academy Programs (dark · premium) ---- */
.academy-programs {
  position: relative;
  overflow: hidden;
  background: var(--landing-bg);
}

.academy-programs__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.academy-programs__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(201, 169, 98, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 60%, rgba(100, 70, 180, 0.05) 0%, transparent 50%);
}

.academy-programs__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 35%, #000 20%, transparent 75%);
}

.academy-programs__inner {
  position: relative;
  z-index: 1;
}

.academy-programs .section__header {
  margin-bottom: var(--section-head-gap);
}

.section__header--center .section__lead,
.program__lead,
.pricing__lead,
.faq__lead,
.outcomes__lead,
.student-results__lead,
.academy-programs__lead {
  max-width: 36rem;
  margin: var(--space-md) auto 0;
  text-align: center;
}

.academy-programs__lead {
  max-width: 38rem;
  margin: clamp(0.75rem, 2vw, var(--space-md)) auto 0;
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text-muted);
  text-align: center;
}

.academy-tracks {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.625rem, 1.5vw, 0.875rem);
  max-width: 44rem;
  margin: 0 auto clamp(2.25rem, 4.5vw, 3rem);
  padding: clamp(0.875rem, 2vw, 1rem);
  border-radius: 16px;
  border: 1px solid rgba(201, 169, 98, 0.2);
  background: linear-gradient(
    180deg,
    rgba(201, 169, 98, 0.07) 0%,
    rgba(201, 169, 98, 0.02) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  isolation: isolate;
}

.academy-tracks::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(201, 169, 98, 0.55) 0%,
    rgba(255, 255, 255, 0.08) 42%,
    rgba(201, 169, 98, 0.22) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}

.academy-track {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 2vw, 0.75rem);
  min-width: 0;
  padding: clamp(0.75rem, 2vw, 0.875rem) clamp(0.875rem, 2vw, 1rem);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 98, 0.28);
  background: linear-gradient(
    165deg,
    rgba(201, 169, 98, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 48%,
    rgba(0, 0, 0, 0.14) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(201, 169, 98, 0.05);
  overflow: hidden;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.academy-track::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(232, 213, 163, 0.65) 0%,
    rgba(201, 169, 98, 0.15) 45%,
    rgba(201, 169, 98, 0.35) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.42;
  pointer-events: none;
}

.academy-track--smm {
  border-color: rgba(201, 169, 98, 0.32);
}

.academy-track--target {
  border-color: rgba(201, 169, 98, 0.42);
  background: linear-gradient(
    165deg,
    rgba(201, 169, 98, 0.16) 0%,
    rgba(255, 255, 255, 0.05) 48%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.academy-track__emoji {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1;
  border-radius: 9px;
  border: 1px solid rgba(201, 169, 98, 0.28);
  background: rgba(201, 169, 98, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.academy-track > div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.academy-track__name {
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0.1rem;
}

.academy-track__desc {
  font-size: clamp(0.6875rem, 1.4vw, 0.8125rem);
  color: rgba(232, 213, 163, 0.72);
  line-height: 1.4;
}

.academy-programs-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
  align-items: stretch;
  margin-top: 0;
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.academy-programs-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 98, 0.35) 50%,
    transparent
  );
  pointer-events: none;
}

.academy-program {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(0.875rem, 2vw, 1.125rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 4px 18px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.45s var(--ease-out-expo),
    border-color 0.4s ease,
    background 0.4s ease;
}

.academy-program__glow {
  position: absolute;
  top: -25%;
  right: -12%;
  width: 55%;
  height: 65%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 65%);
  opacity: 0.2;
  pointer-events: none;
}

.academy-program__glow--popular {
  opacity: 0.3;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.14) 0%, transparent 65%);
}

.academy-program__head {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}

.academy-program__emoji {
  flex-shrink: 0;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1;
}

.academy-program__name {
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.15rem;
}

.academy-program__price {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-accent);
}

.academy-program__level {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 0.625rem;
}

.academy-program__divider {
  border: none;
  height: 1px;
  margin: 0 0 0.625rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.academy-program__includes-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

.academy-program__features {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.academy-program__features li {
  position: relative;
  padding-left: 0.75rem;
  font-size: clamp(0.6875rem, 1.4vw, 0.8125rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
}

.academy-program__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-accent);
}

.academy-program__access {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 0.625rem;
}

.academy-program__access--lifetime {
  color: var(--color-accent);
}

.academy-program__gift {
  margin-bottom: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 10px;
  background: rgba(201, 169, 98, 0.06);
  border: 1px solid rgba(201, 169, 98, 0.16);
}

.academy-program__gift-label {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.academy-program__gift p {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.academy-program__gift span {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.academy-program__cta {
  margin-top: auto;
}

.academy-program__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.academy-program__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.35rem 0.75rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, #e8d5a3 0%, var(--color-accent) 50%, #b8944f 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 12px rgba(201, 169, 98, 0.3);
  white-space: nowrap;
  z-index: 2;
}

.academy-program--target {
  border-color: rgba(201, 169, 98, 0.1);
}

.academy-program--popular {
  border-color: rgba(201, 169, 98, 0.24);
  background: rgba(201, 169, 98, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 6px 24px rgba(0, 0, 0, 0.22);
}

.academy-program--popular::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.35), transparent);
}

.academy-program:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 98, 0.18);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.24);
}

.academy-program--popular:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 28px rgba(0, 0, 0, 0.28);
}

@media (min-width: 768px) {
  .academy-tracks {
    gap: clamp(0.625rem, 1.2vw, 0.875rem);
  }

  .academy-programs-grid {
    gap: clamp(0.625rem, 1.2vw, 0.875rem);
  }

  .academy-program {
    padding: clamp(1rem, 1.5vw, 1.125rem);
  }
}

@media (min-width: 1024px) {
  .academy-programs-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.625rem, 1vw, 0.875rem);
    align-items: stretch;
  }
}

@media (max-width: 767px) and (hover: none) {
  .academy-program:hover,
  .academy-program--popular:hover {
    transform: none;
  }
}

/* ---- Audience (dark · premium) ---- */
.audience {
  position: relative;
  overflow: hidden;
  background: #000;
}

.audience__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.audience__spotlight {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 98, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(100, 70, 180, 0.06) 0%, transparent 50%);
}

.audience__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.audience__inner {
  position: relative;
  z-index: 1;
}

.audience__lead {
  max-width: 36rem;
  margin: var(--space-md) auto 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
  text-align: center;
}

.audience .section__header {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(2rem, 4vw, 2.5rem);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 48%,
    rgba(0, 0, 0, 0.2) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.6s var(--ease-out-expo),
    border-color 0.45s ease,
    box-shadow 0.6s var(--ease-out-expo),
    background 0.45s ease;
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(201, 169, 98, 0.35) 0%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(201, 169, 98, 0.2) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.audience-card__shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0.5;
  transition: opacity 0.45s ease;
}

.audience-card__glow {
  position: absolute;
  top: -50%;
  right: -40%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.22) 0%, transparent 68%);
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.6s var(--ease-out-expo);
  pointer-events: none;
}

.audience-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
  background: linear-gradient(
    145deg,
    rgba(201, 169, 98, 0.18) 0%,
    rgba(201, 169, 98, 0.06) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.55s var(--ease-out-expo),
    background 0.45s ease,
    box-shadow 0.45s ease,
    color 0.4s ease;
}

.audience-card__icon svg {
  width: 26px;
  height: 26px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card__index {
  position: absolute;
  top: clamp(1.75rem, 4vw, 2.25rem);
  right: clamp(1.75rem, 4vw, 2.25rem);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.audience-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  transition: color 0.4s ease, transform 0.5s var(--ease-out-expo);
}

.audience-card__text {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  transition: color 0.4s ease;
}

.audience-card__tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.45rem 1rem;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.5s var(--ease-out-expo),
    box-shadow 0.4s ease;
}

/* Hover */
.audience-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(201, 169, 98, 0.3);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(201, 169, 98, 0.06) 60%,
    rgba(0, 0, 0, 0.15) 100%
  );
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.08) inset,
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 32px 64px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(201, 169, 98, 0.1);
}

.audience-card:hover::before {
  opacity: 1;
}

.audience-card:hover .audience-card__shine {
  opacity: 1;
}

.audience-card:hover .audience-card__glow {
  opacity: 1;
  transform: scale(1.2);
}

.audience-card:hover .audience-card__icon {
  transform: scale(1.1) translateY(-3px);
  color: #fff;
  background: linear-gradient(
    145deg,
    rgba(201, 169, 98, 0.45) 0%,
    rgba(201, 169, 98, 0.2) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 12px 32px rgba(201, 169, 98, 0.25);
}

.audience-card:hover .audience-card__index {
  color: var(--color-accent);
  text-shadow: 0 0 24px rgba(201, 169, 98, 0.5);
}

.audience-card:hover .audience-card__title {
  color: #fff;
  transform: translateX(2px);
}

.audience-card:hover .audience-card__text {
  color: rgba(255, 255, 255, 0.8);
}

.audience-card:hover .audience-card__tag {
  background: rgba(201, 169, 98, 0.2);
  border-color: rgba(201, 169, 98, 0.45);
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(201, 169, 98, 0.15);
}

.audience-card:focus-within {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

@media (hover: none) {
  .audience-card:active {
    transform: scale(0.98);
  }
}


/* ---- Outcomes (dark · Hero continuation) ---- */
.outcomes {
  position: relative;
  overflow: hidden;
  background: var(--landing-bg);
}

.outcomes__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.outcomes__spotlight {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 55% at 50% -10%, rgba(201, 169, 98, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse 80% 45% at 12% 40%, rgba(140, 100, 220, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 88% 70%, rgba(255, 120, 80, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 90% 40% at 50% 100%, rgba(5, 5, 5, 0.35) 0%, transparent 65%);
  animation: spotlight-breathe 12s ease-in-out infinite alternate;
}

.outcomes__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.outcomes__glow--1 {
  width: min(55vw, 480px);
  height: min(45vw, 380px);
  top: 8%;
  left: -8%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.18) 0%, transparent 68%);
  opacity: 0.7;
}

.outcomes__glow--2 {
  width: min(40vw, 340px);
  height: min(35vw, 280px);
  bottom: 5%;
  right: -5%;
  background: radial-gradient(circle, rgba(100, 70, 180, 0.1) 0%, transparent 70%);
  opacity: 0.6;
}

.outcomes__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 75% at 50% 30%, #000 15%, transparent 72%);
}

.outcomes__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.outcomes__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.outcomes__intro {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  width: 100%;
  margin-bottom: 0;
}

.outcomes__intro .display-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

.outcomes .section__header,
.outcomes__intro.section__header {
  margin-bottom: 0;
}

.outcomes__lead {
  max-width: 36rem;
  margin: clamp(0.75rem, 2vw, 1rem) auto 0;
  padding-bottom: 0;
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text-muted);
  text-align: center;
}

.outcomes-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
  margin-top: 0;
  isolation: isolate;
}

.outcome-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(0.75rem, 2vw, 1rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 4px 18px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-out-expo),
    border-color 0.4s ease,
    background 0.4s ease;
}

.outcome-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(201, 169, 98, 0.28) 0%,
    rgba(255, 255, 255, 0.04) 42%,
    rgba(201, 169, 98, 0.08) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.2;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.outcome-card__shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  opacity: 0.35;
  transition: opacity 0.4s ease;
}

.outcome-card__glow {
  position: absolute;
  top: -45%;
  right: -35%;
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.14) 0%, transparent 68%);
  opacity: 0.2;
  transition: opacity 0.45s ease, transform 0.5s var(--ease-out-expo);
  pointer-events: none;
}

.outcome-card__icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.625rem;
  color: var(--color-accent);
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.18);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.4s var(--ease-out-expo),
    background 0.4s ease,
    border-color 0.4s ease;
}

.outcome-card__icon--ai {
  background: rgba(140, 100, 220, 0.1);
  border-color: rgba(140, 100, 220, 0.22);
  color: #c4a8f0;
}

.outcome-card__icon svg {
  width: 16px;
  height: 16px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outcome-card__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.25rem;
  transition: color 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.outcome-card__text {
  position: relative;
  z-index: 1;
  font-size: clamp(0.6875rem, 1.4vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.4s ease;
}

.outcome-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 98, 0.2);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.24);
}

.outcome-card:hover::before {
  opacity: 0.35;
}

.outcome-card:hover .outcome-card__shine {
  opacity: 0.5;
}

.outcome-card:hover .outcome-card__glow {
  opacity: 0.35;
  transform: scale(1.04);
}

.outcome-card:hover .outcome-card__icon {
  transform: scale(1.03);
  background: rgba(201, 169, 98, 0.14);
  border-color: rgba(201, 169, 98, 0.28);
}

.outcome-card:hover .outcome-card__icon--ai {
  background: rgba(140, 100, 220, 0.14);
  border-color: rgba(140, 100, 220, 0.3);
}

.outcome-card:hover .outcome-card__title {
  color: #fff;
}

.outcome-card:hover .outcome-card__text {
  color: rgba(255, 255, 255, 0.62);
}

.outcome-card:focus-within {
  outline: 2px solid rgba(201, 169, 98, 0.45);
  outline-offset: 4px;
}

@media (hover: none) {
  .outcome-card:active {
    transform: scale(0.98);
  }
}

@media (min-width: 768px) {
  .outcomes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.625rem, 1.2vw, 0.875rem);
  }

  .outcomes__inner {
    gap: clamp(1.75rem, 3vw, 2.5rem);
  }

  .outcome-card {
    padding: clamp(0.875rem, 1.5vw, 1.125rem);
  }

  .outcome-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.75rem;
  }

  .outcome-card__icon svg {
    width: 17px;
    height: 17px;
  }
}

@media (min-width: 1024px) {
  .outcomes__inner {
    gap: clamp(2rem, 3.5vw, 2.75rem);
  }
}

/* ---- Founder ---- */
.founder {
  position: relative;
  overflow: hidden;
  background: var(--landing-bg);
}

.founder__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.founder__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(100, 70, 180, 0.06) 0%, transparent 50%);
}

.founder__inner {
  position: relative;
  z-index: 1;
}

.founder__inner > .section__header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.founder__grid {
  display: grid;
  grid-template-columns: minmax(5.5rem, 34%) minmax(0, 1fr);
  gap: clamp(0.875rem, 3vw, 1.25rem);
  align-items: start;
}

.founder__visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.founder__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(201, 169, 98, 0.06) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: clamp(14px, 2.5vw, 24px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 169, 98, 0.06);
}

.founder__photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}

.founder__content {
  min-width: 0;
}

.founder__stats {
  display: none;
  gap: 1rem;
  justify-content: center;
}

.founder__stat {
  flex: 1;
  max-width: 10rem;
  padding: 1.25rem 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.founder__stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.founder__stat span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.founder__lead {
  font-size: clamp(0.9375rem, 2vw, 1.1875rem);
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  margin-bottom: clamp(0.5rem, 2vw, var(--space-md));
}

.founder__body {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 2vw, 1rem);
}

.founder__body p {
  font-size: clamp(0.8125rem, 1.8vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

.founder__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
  padding: 0;
  list-style: none;
}

.founder__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.founder__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.founder__quote {
  margin: 0;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(201, 169, 98, 0.06);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 12px 12px 0;
}

@media (min-width: 480px) {
  .founder__grid {
    grid-template-columns: minmax(7rem, 30%) minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 1.5rem);
  }
}

@media (min-width: 640px) {
  .founder__grid {
    grid-template-columns: minmax(9rem, 34%) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
  }

  .founder__stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
    width: 100%;
  }

  .founder__stat {
    padding: 0.75rem 0.625rem;
    max-width: none;
  }

  .founder__stat strong {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  }

  .founder__stat span {
    font-size: 0.6875rem;
  }
}

@media (min-width: 768px) {
  .founder__grid {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
  }

  .founder__visual {
    gap: 1rem;
    align-items: center;
  }

  .founder__photo {
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 16rem;
    margin-inline: auto;
  }

  .founder__stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-self: center;
    width: 100%;
    max-width: 16rem;
    margin-inline: auto;
    gap: 0.75rem;
  }

  .founder__stat {
    flex: 1 1 0;
    max-width: 9rem;
    padding: 1rem 0.75rem;
  }
}

@media (min-width: 1024px) {
  .founder__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .founder__visual {
    gap: 1.5rem;
    align-items: center;
  }

  .founder__photo {
    max-width: 22rem;
  }

  .founder__stats {
    max-width: 22rem;
    gap: 1rem;
  }

  .founder__stat {
    max-width: 10rem;
    padding: 1.25rem 1rem;
  }
}

/* Founder metrics — compact supporting proof */
.founder-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(201, 169, 98, 0.08);
}

.founder-metric {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: clamp(0.75rem, 2vw, 1rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 4px 18px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.45s var(--ease-out-expo),
    border-color 0.4s ease,
    background 0.4s ease;
}

.founder-metric::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(201, 169, 98, 0.28) 0%,
    rgba(255, 255, 255, 0.04) 45%,
    rgba(201, 169, 98, 0.08) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.2;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.founder-metric__shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  opacity: 0.35;
  transition: opacity 0.4s ease;
}

.founder-metric__glow {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.14) 0%, transparent 68%);
  opacity: 0.2;
  transition: opacity 0.45s ease, transform 0.5s var(--ease-out-expo);
  pointer-events: none;
}

.founder-metric__value {
  position: relative;
  z-index: 1;
  margin: 0 0 0.2rem;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 213, 163, 0.9) 70%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s var(--ease-out-expo);
}

.founder-metric__value--text {
  font-size: clamp(0.875rem, 2vw, 1.0625rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.founder-metric__label {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: none;
  font-size: clamp(0.6875rem, 1.4vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.4s ease;
}

.founder-metric:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 98, 0.2);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.24);
}

.founder-metric:hover::before {
  opacity: 0.35;
}

.founder-metric:hover .founder-metric__glow {
  opacity: 0.35;
  transform: scale(1.04);
}

.founder-metric:hover .founder-metric__shine {
  opacity: 0.5;
}

.founder-metric:hover .founder-metric__value {
  transform: translateY(-1px);
}

.founder-metric:hover .founder-metric__label {
  color: rgba(255, 255, 255, 0.62);
}

@media (min-width: 768px) {
  .founder-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.625rem, 1.2vw, 0.875rem);
  }

  .founder-metric {
    padding: clamp(0.875rem, 1.5vw, 1.125rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder-metric:hover {
    transform: none;
  }

  .founder-metric:hover .founder-metric__value {
    transform: none;
  }

  .founder-metric:hover .founder-metric__glow {
    transform: none;
  }
}

/* ---- Student Results ---- */
.student-results {
  position: relative;
  overflow: hidden;
  background: var(--landing-bg);
}

.student-results__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.student-results__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(201, 169, 98, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 80%, rgba(227, 38, 38, 0.08) 0%, transparent 50%);
}

.student-results__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
}

.student-results__inner {
  position: relative;
  z-index: 1;
}

.student-results__lead {
  max-width: 36rem;
  margin: var(--space-sm) auto 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
  text-align: center;
}

.student-results__tagline {
  max-width: 28rem;
  margin: var(--space-sm) auto 0;
  font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
  color: rgba(201, 169, 98, 0.85);
  text-align: center;
}

/* ---- Student case blocks ---- */
.student-cases {
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  max-width: 42rem;
  margin-inline: auto;
}

.student-cases-carousel {
  position: relative;
  outline: none;
}

.student-cases-carousel__viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y pinch-zoom;
}

.student-cases-carousel__track {
  display: flex;
  transition: transform 0.65s var(--ease-out-expo);
  will-change: transform;
}

.student-cases-carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.student-cases-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.student-cases-carousel__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(201, 169, 98, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-accent);
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease-out-expo),
    opacity 0.3s ease;
}

.student-cases-carousel__btn svg {
  width: 20px;
  height: 20px;
}

.student-cases-carousel__btn:hover {
  background: rgba(201, 169, 98, 0.12);
  border-color: rgba(201, 169, 98, 0.65);
  transform: scale(1.05);
}

.student-cases-carousel__btn:active {
  transform: scale(0.97);
}

.student-cases-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-width: 0;
}

.student-cases-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.25);
  cursor: pointer;
  transition:
    transform 0.35s var(--ease-out-expo),
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.student-cases-carousel__dot:hover {
  background: rgba(201, 169, 98, 0.5);
}

.student-cases-carousel__dot--active {
  transform: scale(1.35);
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(201, 169, 98, 0.45);
}

.student-case {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.student-case__badge {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.125rem, 2.5vw, 1.5rem);
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.95) 0%,
    rgba(155, 122, 57, 0.92) 55%,
    rgba(120, 92, 40, 0.95) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.student-case__badge-mark {
  flex-shrink: 0;
  width: 2px;
  height: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1px;
}

.student-case__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #fff;
}

.student-case__media {
  display: flex;
  justify-content: center;
  padding: clamp(0.5rem, 2vw, 1rem) 0;
}

.student-case__phone {
  position: relative;
  width: min(100%, 280px);
  padding: 6px;
  background: linear-gradient(
    160deg,
    rgba(201, 169, 98, 0.55) 0%,
    rgba(201, 169, 98, 0.15) 40%,
    rgba(201, 169, 98, 0.45) 100%
  );
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.35),
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(201, 169, 98, 0.08);
}

.student-case__phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 4px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
}

.student-case__phone img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  background: #111;
}

/* Chat screenshot — show full message, scaled inside phone frame */
.student-case__phone--fit-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.student-case__phone--fit-chat img {
  width: 84%;
  height: auto;
  max-height: 90%;
  aspect-ratio: unset;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  background: #fff;
}

.student-case__phone--fit-chat-lg img {
  width: 100%;
  max-height: 100%;
  border-radius: 20px;
  background: transparent;
}

/* Full mockup PNG — zoom to chat area only */
.student-case__phone--crop-mockup {
  overflow: hidden;
  aspect-ratio: 9 / 16;
}

.student-case__phone--crop-mockup img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: 50% 33%;
  transform: scale(2.35);
  transform-origin: 50% 27%;
}

.student-case__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.625rem, 2vw, 0.875rem);
}

.student-case__point {
  padding: clamp(1rem, 2.5vw, 1.25rem);
  border-radius: 16px;
  min-height: 100%;
}

.student-case__point--a {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.student-case__point--b {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 169, 98, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(201, 169, 98, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.25);
}

.student-case__point-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.student-case__point-text {
  margin: 0;
  font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

/* Final CTA block */
.student-case-cta {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.student-case-cta__inner {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 2rem);
  padding: clamp(1.5rem, 3.5vw, 2rem);
  border: 1px dashed rgba(201, 169, 98, 0.45);
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.04) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.student-case-cta__visual {
  flex-shrink: 0;
  width: clamp(72px, 18vw, 96px);
  aspect-ratio: 9 / 16;
}

.student-case-cta__frame {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  background: linear-gradient(
    160deg,
    rgba(201, 169, 98, 0.12) 0%,
    rgba(40, 32, 18, 0.65) 100%
  );
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.35);
}

.student-case-cta__content {
  flex: 1;
  min-width: 0;
}

.student-case-cta__eyebrow {
  margin: 0 0 0.25rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(201, 169, 98, 0.78);
}

.student-case-cta__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.student-case-cta__text {
  margin: 0 0 1.25rem;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.student-case-cta__btn {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .student-cases {
    max-width: 36rem;
  }

  .student-case__phone {
    width: min(100%, 300px);
  }
}

@media (min-width: 1024px) {
  .student-cases {
    max-width: 40rem;
  }

  .student-case__phone {
    width: 320px;
  }
}

/* ---- Contacts ---- */
.contacts {
  position: relative;
  padding: var(--section-pad-y) 0;
  background: var(--landing-bg);
  color: var(--color-text);
  overflow: hidden;
}

.contacts__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contacts__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: cta-orb-float 10s ease-in-out infinite;
}

.contacts__glow--1 {
  width: 400px;
  height: 400px;
  top: -15%;
  left: 10%;
  background: rgba(201, 169, 98, 0.3);
}

.contacts__glow--2 {
  width: 350px;
  height: 350px;
  bottom: -10%;
  right: 5%;
  background: rgba(227, 38, 38, 0.22);
  animation-delay: -5s;
}

.contacts__inner {
  position: relative;
  z-index: 1;
}

.contacts__inner > .section__header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contacts__layout {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.contacts__main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacts__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 32rem;
  margin: var(--space-md) auto 0;
  text-align: center;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.contacts__link {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.35s ease, transform 0.35s var(--ease-out-expo);
}

.contacts__link svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

.contacts__link:hover {
  color: #fff;
  transform: translateX(4px);
}

.contacts__card {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .contacts__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
    align-items: center;
  }

  .contacts__card {
    margin: 0;
    justify-self: end;
  }
}

/* ---- Results (legacy) ---- */
.results__grid {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.result {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.result:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.result__icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.result__icon svg {
  width: 100%;
  height: 100%;
}

.result h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.result p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.results__highlight {
  text-align: center;
  padding: var(--space-lg);
  border-left: 3px solid var(--color-accent);
  background: rgba(201, 162, 39, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.results__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.results__source {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
}

/* ---- Program (premium modules) ---- */
@keyframes program-aurora {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate(4%, -3%) scale(1.08);
    opacity: 0.85;
  }
}

@keyframes program-shine-sweep {
  0% {
    transform: translateX(-120%) skewX(-12deg);
    opacity: 0;
  }
  40% {
    opacity: 0.35;
  }
  100% {
    transform: translateX(220%) skewX(-12deg);
    opacity: 0;
  }
}

.program {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad-y) 0;
  color: var(--color-text);
  background: var(--landing-bg);
  isolation: isolate;
}

.program__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.program__aurora {
  position: absolute;
  width: min(90vw, 720px);
  height: min(70vw, 520px);
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 169, 98, 0.22) 0%,
    rgba(201, 169, 98, 0.04) 45%,
    transparent 70%
  );
  filter: blur(60px);
  animation: program-aurora 14s ease-in-out infinite;
}

.program__aurora--2 {
  top: auto;
  bottom: -12%;
  left: 20%;
  width: min(70vw, 560px);
  height: min(50vw, 400px);
  background: radial-gradient(
    ellipse at center,
    rgba(227, 38, 38, 0.12) 0%,
    rgba(201, 169, 98, 0.06) 40%,
    transparent 68%
  );
  animation-duration: 18s;
  animation-direction: reverse;
}

.program__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.program__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-serif);
  font-size: clamp(12rem, 38vw, 22rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}

.program__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.35) 0%, transparent 14%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.35) 0%, transparent 16%),
    radial-gradient(ellipse 100% 80% at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.28) 100%);
}

.program__inner {
  position: relative;
  z-index: 1;
}

.program__head {
  max-width: 46rem;
}

.program__head .section__label {
  margin-bottom: var(--space-sm);
}

.program__lead {
  max-width: 36rem;
  margin: var(--space-md) auto 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
  text-align: center;
}

.program__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-top: var(--space-lg);
}

.program__meta span {
  padding: 0.5rem 1.125rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  transition:
    border-color 0.4s ease,
    background 0.4s ease,
    color 0.4s ease;
}

.program__meta span:hover {
  border-color: rgba(201, 169, 98, 0.35);
  background: rgba(201, 169, 98, 0.1);
  color: var(--color-accent);
}

.program-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(0.875rem, 2vw, 1.25rem);
  align-items: stretch;
}

/* Module card */
.program-module {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 11.5rem;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 48%,
    rgba(0, 0, 0, 0.2) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.65s var(--ease-out-expo),
    border-color 0.45s ease,
    box-shadow 0.65s var(--ease-out-expo),
    background 0.45s ease;
}

.program-module::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25) 50%,
    transparent
  );
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.program-module__glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 80%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.2) 0%, transparent 68%);
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.65s var(--ease-out-expo);
  pointer-events: none;
}

.program-module__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 60%
  );
  opacity: 0;
  pointer-events: none;
}

.program-module__ghost {
  position: absolute;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: -0.15em;
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 14vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  transition:
    -webkit-text-stroke-color 0.5s ease,
    transform 0.65s var(--ease-out-expo);
}

.program-module__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.program-module__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.625rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text);
  max-width: 92%;
  margin-bottom: 0.625rem;
  transition: color 0.4s ease, transform 0.55s var(--ease-out-expo);
}

.program-module__desc {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 100%;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text-muted);
  transition: color 0.4s ease;
}

.program-module__bar {
  position: relative;
  z-index: 1;
  width: 2.5rem;
  height: 2px;
  margin-top: auto;
  padding-top: 1.25rem;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  border-radius: var(--radius-full);
  transition: width 0.55s var(--ease-out-expo), opacity 0.4s ease;
}

.program-module--featured {
  border-color: rgba(201, 169, 98, 0.18);
  background: linear-gradient(
    155deg,
    rgba(201, 169, 98, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 40%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.program-module--featured .program-module__ghost {
  -webkit-text-stroke-color: rgba(201, 169, 98, 0.12);
}

/* Hover */
.program-module:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.32);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(201, 169, 98, 0.06) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.06) inset,
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(201, 169, 98, 0.08);
}

.program-module:hover::before {
  opacity: 1;
}

.program-module:hover .program-module__glow {
  opacity: 1;
  transform: scale(1.15);
}

.program-module:hover .program-module__shine {
  opacity: 1;
  animation: program-shine-sweep 1.1s var(--ease-out-expo) forwards;
}

.program-module:hover .program-module__ghost {
  -webkit-text-stroke-color: rgba(201, 169, 98, 0.2);
  transform: translate(-6px, -4px);
}

.program-module:hover .program-module__title {
  color: #fff;
  transform: translateX(4px);
}

.program-module:hover .program-module__desc {
  color: rgba(255, 255, 255, 0.78);
}

.program-module:hover .program-module__bar {
  width: 4.5rem;
}

@media (min-width: 640px) {
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
  }
}

@media (min-width: 900px) {
  .program-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }

  .program-module {
    min-height: 12.5rem;
    padding: clamp(1.35rem, 2vw, 1.75rem);
  }

  .program-module__ghost {
    font-size: clamp(3rem, 5vw, 4.25rem);
    right: 0.85rem;
    bottom: -0.05em;
  }

  .program-module__title {
    font-size: clamp(1.15rem, 1.6vw, 1.375rem);
    max-width: 100%;
    padding-right: 2.5rem;
  }

  .program-module__desc {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .program-module--featured {
    border-color: rgba(201, 169, 98, 0.28);
  }

  .program-module--featured .program-module__ghost {
    -webkit-text-stroke-color: rgba(201, 169, 98, 0.14);
  }
}

@media (min-width: 1280px) {
  .program-grid {
    gap: 1.35rem;
  }

  .program-module {
    min-height: 13.5rem;
    padding: clamp(1.5rem, 2vw, 2rem);
  }

  .program-module__title {
    font-size: clamp(1.25rem, 1.4vw, 1.5rem);
  }

  .program-module__desc {
    font-size: 0.9375rem;
  }

  .program-module__ghost {
    font-size: clamp(3.5rem, 4.5vw, 5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .program__aurora {
    animation: none;
  }

  .program-module:hover .program-module__shine {
    animation: none;
  }
}

/* ---- Reviews (premium testimonials) ---- */
@keyframes testimonial-shine {
  0% {
    transform: translateX(-120%) skewX(-10deg);
    opacity: 0;
  }
  45% {
    opacity: 0.3;
  }
  100% {
    transform: translateX(220%) skewX(-10deg);
    opacity: 0;
  }
}

.reviews {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad-y) 0;
  color: var(--color-text);
  background: var(--landing-bg);
  isolation: isolate;
}

.reviews__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.reviews__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.reviews__glow--1 {
  width: min(60vw, 520px);
  height: min(50vw, 420px);
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 169, 98, 0.14) 0%, transparent 70%);
}

.reviews__glow--2 {
  width: min(45vw, 380px);
  height: min(40vw, 320px);
  bottom: -8%;
  right: -5%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 68%);
}

.reviews__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 15%, transparent 72%);
}

.reviews__inner {
  position: relative;
  z-index: 1;
}

.reviews__head {
  max-width: 40rem;
}

.reviews__head .section__label {
  margin-bottom: var(--space-sm);
}

.reviews__lead {
  max-width: 34rem;
  margin: var(--space-md) auto 0;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
  align-items: stretch;
}

/* Testimonial card */
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 45%,
    rgba(0, 0, 0, 0.25) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    transform 0.65s var(--ease-out-expo),
    border-color 0.45s ease,
    box-shadow 0.65s var(--ease-out-expo),
    background 0.45s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0.45;
  transition: opacity 0.4s ease;
}

.testimonial-card__glow {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.18) 0%, transparent 65%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.65s var(--ease-out-expo);
}

.testimonial-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 42%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 58%
  );
  opacity: 0;
  pointer-events: none;
}

.testimonial-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-card__photo {
  flex-shrink: 0;
  position: relative;
  width: clamp(4.5rem, 12vw, 5.5rem);
  height: clamp(4.5rem, 12vw, 5.5rem);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    hsl(var(--photo-hue, 40) 42% 52%) 0%,
    hsl(var(--photo-hue, 40) 32% 32%) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 0 32px rgba(201, 169, 98, 0.08);
  transition: transform 0.55s var(--ease-out-expo), box-shadow 0.55s ease;
}

.testimonial-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 45%);
  pointer-events: none;
}

.testimonial-card__initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.testimonial-card__meta {
  min-width: 0;
}

.testimonial-card__name {
  display: block;
  font-style: normal;
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0.2rem;
  transition: color 0.4s ease;
}

.testimonial-card__role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.testimonial-card__stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 1px 3px rgba(201, 169, 98, 0.35));
  transition: transform 0.35s var(--ease-out-expo);
}

.testimonial-card__result {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  padding: 1rem 1.125rem;
  background: rgba(201, 169, 98, 0.06);
  border: 1px solid rgba(201, 169, 98, 0.18);
  border-radius: 14px;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.5s var(--ease-out-expo);
}

.testimonial-card__result-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.testimonial-card__result-text {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2.2vw, 1.3125rem);
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
}

.testimonial-card__quote {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  quotes: none;
  transition: color 0.4s ease;
}

.testimonial-card__quote::before {
  content: "\201C";
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.55;
}

.testimonial-card--featured {
  border-color: rgba(201, 169, 98, 0.22);
  background: linear-gradient(
    160deg,
    rgba(201, 169, 98, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 42%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

/* Hover */
.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 98, 0.32);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(201, 169, 98, 0.05) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.06) inset,
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(201, 169, 98, 0.07);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover .testimonial-card__glow {
  opacity: 1;
  transform: scale(1.1);
}

.testimonial-card:hover .testimonial-card__shine {
  opacity: 1;
  animation: testimonial-shine 1.15s var(--ease-out-expo) forwards;
}

.testimonial-card:hover .testimonial-card__photo {
  transform: scale(1.04);
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.25) inset,
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(201, 169, 98, 0.15);
}

.testimonial-card:hover .testimonial-card__stars svg:nth-child(1) { transition-delay: 0ms; transform: scale(1.08); }
.testimonial-card:hover .testimonial-card__stars svg:nth-child(2) { transition-delay: 30ms; transform: scale(1.08); }
.testimonial-card:hover .testimonial-card__stars svg:nth-child(3) { transition-delay: 60ms; transform: scale(1.08); }
.testimonial-card:hover .testimonial-card__stars svg:nth-child(4) { transition-delay: 90ms; transform: scale(1.08); }
.testimonial-card:hover .testimonial-card__stars svg:nth-child(5) { transition-delay: 120ms; transform: scale(1.08); }

.testimonial-card:hover .testimonial-card__result {
  background: rgba(201, 169, 98, 0.1);
  border-color: rgba(201, 169, 98, 0.32);
  transform: translateY(-2px);
}

.testimonial-card:hover .testimonial-card__quote {
  color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
  }

  .testimonial-card--featured {
    transform: translateY(-6px);
  }

  .testimonial-card--featured:hover {
    transform: translateY(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card:hover .testimonial-card__shine {
    animation: none;
  }
}

/* ---- Pricing ---- */
.pricing {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad-y) 0;
  color: var(--color-text);
  background: var(--landing-bg);
  isolation: isolate;
}

.pricing__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pricing__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.pricing__glow--1 {
  width: min(65vw, 560px);
  height: min(50vw, 420px);
  top: -6%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 169, 98, 0.14) 0%, transparent 68%);
}

.pricing__glow--2 {
  width: min(50vw, 420px);
  height: min(40vw, 340px);
  bottom: 10%;
  right: -8%;
  background: radial-gradient(circle, rgba(227, 38, 38, 0.08) 0%, transparent 70%);
}

.pricing__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, #000 15%, transparent 72%);
}

.pricing__inner {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.pricing__head {
  max-width: 40rem;
}

.pricing__head .section__label {
  margin-bottom: var(--space-sm);
}

.pricing__lead {
  max-width: 34rem;
  margin: var(--space-md) auto 0;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* Limited-time offer banner */
.pricing-offer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.125rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 1.75rem);
  background: linear-gradient(
    135deg,
    rgba(227, 38, 38, 0.1) 0%,
    rgba(201, 169, 98, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: 18px;
}

.pricing-offer__main {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pricing-offer__badge {
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, #e8d5a3 0%, var(--color-accent) 100%);
  border-radius: var(--radius-full);
}

.pricing-offer__title {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.35rem;
}

.pricing-offer__timer {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.pricing-offer__timer strong {
  font-variant-numeric: tabular-nums;
  color: var(--color-accent);
  font-weight: 600;
}

.pricing-offer .btn--instagram {
  align-self: flex-start;
}

@media (min-width: 640px) {
  .pricing-offer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Gift banner */
.pricing-gift {
  max-width: 56rem;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
  font-size: clamp(1rem, 2.2vw, 1.1875rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.16) 0%,
    rgba(201, 169, 98, 0.06) 50%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.06) inset,
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 0 60px rgba(201, 169, 98, 0.08);
  animation: pricing-gift-pulse 4s ease-in-out infinite;
}

@keyframes pricing-gift-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(201, 169, 98, 0.06) inset,
      0 12px 40px rgba(0, 0, 0, 0.25),
      0 0 60px rgba(201, 169, 98, 0.08);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(201, 169, 98, 0.12) inset,
      0 16px 48px rgba(0, 0, 0, 0.3),
      0 0 80px rgba(201, 169, 98, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-gift {
    animation: none;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
  align-items: stretch;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  overflow: visible;
}

/* Plan card */
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 3.5vw, 2.25rem);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition:
    transform 0.6s var(--ease-out-expo),
    border-color 0.45s ease,
    box-shadow 0.6s var(--ease-out-expo);
}

.pricing-card__glow {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.12) 0%, transparent 65%);
  opacity: 0.5;
  pointer-events: none;
}

.pricing-card__head {
  margin-bottom: 1.5rem;
}

.pricing-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: max-content;
  flex-shrink: 0;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.875rem;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--color-accent);
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: var(--radius-full);
}

.pricing-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 500;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 0.35rem;
}

.pricing-card__tagline {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.pricing-card__save {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.125rem;
  min-height: 1.625rem;
  padding: 0.35rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  color: #000;
  background: linear-gradient(135deg, #f0dca8 0%, var(--color-accent) 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pricing-card__pricing {
  margin-bottom: 0.35rem;
}

.pricing-card__was {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.pricing-card__was-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.pricing-card__was s {
  color: rgba(255, 255, 255, 0.38);
  text-decoration-color: rgba(227, 38, 38, 0.55);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0;
}

.pricing-card__amount {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.pricing-card__currency {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing-card__installment {
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.pricing-card__installment strong {
  color: var(--color-accent);
  font-weight: 600;
}

.pricing-card__highlights {
  flex: 1;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-card__highlights li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.pricing-card__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

.pricing-card__cta {
  margin-top: auto;
}

.pricing-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: auto;
}

.pricing-card__actions .btn {
  font-size: 0.75rem;
  padding: 0.75rem 0.875rem;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  min-height: 2.75rem;
  height: auto;
}

.pricing-card__actions .btn span {
  flex: 1;
  min-width: 0;
  white-space: normal;
}

.pricing-card__badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  min-height: 2.0625rem;
  margin: 0 0 1.125rem;
  text-align: center;
}

.pricing-card__badge-row:empty {
  visibility: hidden;
  pointer-events: none;
}

.pricing-card__badge {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 0.375rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.38);
  border-radius: var(--radius-full);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Flagship / Most Popular plan */
.pricing-card--flagship,
.pricing-card--popular {
  padding-top: clamp(1.75rem, 3.5vw, 2.25rem);
  border-color: rgba(201, 169, 98, 0.38);
  background: linear-gradient(
    165deg,
    rgba(201, 169, 98, 0.16) 0%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(0, 0, 0, 0.2) 100%
  );
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.1) inset,
    0 20px 56px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(201, 169, 98, 0.14);
}

.pricing-card--flagship::before,
.pricing-card--popular::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.55), transparent);
}

.pricing-card__glow--flagship {
  opacity: 0.9;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.28) 0%, transparent 65%);
}

.pricing-card__icon--flagship {
  background: rgba(201, 169, 98, 0.22);
  border-color: rgba(201, 169, 98, 0.45);
}

.pricing-card--flagship:hover,
.pricing-card--popular:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 98, 0.5);
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.12) inset,
    0 28px 64px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(201, 169, 98, 0.16);
}

/* Best value bundle */
.pricing-card__badge--bundle {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(201, 169, 98, 0.85) 100%);
  color: #1a1a1a;
}

.pricing-card--best {
  padding-top: clamp(2rem, 3.5vw, 2.5rem);
  transform: none;
  border-color: rgba(201, 169, 98, 0.32);
  background: linear-gradient(
    165deg,
    rgba(201, 169, 98, 0.12) 0%,
    rgba(255, 255, 255, 0.05) 45%,
    rgba(0, 0, 0, 0.2) 100%
  );
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.08) inset,
    0 16px 48px rgba(0, 0, 0, 0.35),
    0 0 60px rgba(201, 169, 98, 0.1);
}

.pricing-card--best::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.5), transparent);
}

.pricing-card__glow--best {
  opacity: 0.85;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.22) 0%, transparent 65%);
}

.pricing-card__icon--best {
  background: rgba(201, 169, 98, 0.18);
  border-color: rgba(201, 169, 98, 0.4);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.pricing-card--best:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.08) inset,
    0 16px 48px rgba(0, 0, 0, 0.35),
    0 0 60px rgba(201, 169, 98, 0.08);
}

/* Comparison table */
.pricing-compare {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.pricing-compare__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pricing-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.pricing-table__caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pricing-table thead th {
  padding: 1rem 1.125rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table thead th:first-child {
  text-align: left;
  position: sticky;
  left: 0;
  z-index: 2;
  background: rgba(8, 8, 8, 0.98);
  min-width: 11rem;
}

.pricing-table__col--flagship {
  color: var(--color-accent);
  background: rgba(201, 169, 98, 0.08);
}

.pricing-table__col--best {
  color: var(--color-accent);
  background: rgba(201, 169, 98, 0.06);
}

.pricing-table tbody th {
  padding: 0.875rem 1.125rem;
  font-weight: 400;
  text-align: left;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  left: 0;
  z-index: 1;
  background: rgba(8, 8, 8, 0.98);
  min-width: 11rem;
}

.pricing-table tbody td {
  padding: 0.875rem 1.125rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table__cell--flagship {
  background: rgba(201, 169, 98, 0.06);
}

.pricing-table__cell--best {
  background: rgba(201, 169, 98, 0.04);
}

.pricing-table__yes,
.pricing-table__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricing-table__yes svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.pricing-table__no svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.2);
}

.pricing-table__text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.pricing-table__text--accent {
  color: var(--color-accent);
}

.pricing__note {
  max-width: 40rem;
  margin: clamp(1rem, 2.5vw, 1.5rem) auto clamp(0.5rem, 2vw, 1rem);
  padding: 0 0.5rem;
  font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(201, 169, 98, 0.78);
}

.pricing__cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
  margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
}

/* Floating Instagram Direct */
.ig-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.125rem;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(131, 58, 180, 0.85) 0%,
    rgba(225, 48, 108, 0.9) 50%,
    rgba(252, 176, 69, 0.85) 100%
  );
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(225, 48, 108, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ig-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(225, 48, 108, 0.45);
}

.ig-fab__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 479px) {
  .ig-fab__label {
    display: none;
  }

  .ig-fab {
    padding: 0.875rem;
    border-radius: 50%;
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.625rem, 1vw, 1rem);
    align-items: stretch;
  }

  .pricing-card--flagship,
  .pricing-card--popular {
    transform: scale(1.05);
    z-index: 2;
  }

  .pricing-card--flagship:hover,
  .pricing-card--popular:hover {
    transform: scale(1.05) translateY(-10px);
  }

  .pricing-card--best {
    transform: none;
    z-index: 1;
  }

  .pricing-card--best:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 767px) {
  .pricing-table thead th,
  .pricing-table tbody th {
    font-size: 0.8125rem;
  }

  .pricing-table thead th:not(:first-child),
  .pricing-table tbody td {
    min-width: 5.5rem;
  }
}

/* ---- FAQ (modern accordion) ---- */
.faq {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad-y) 0;
  color: var(--color-text);
  background: var(--landing-bg);
  isolation: isolate;
}

.faq__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.faq__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.faq__glow--1 {
  width: min(55vw, 480px);
  height: min(45vw, 380px);
  top: 8%;
  left: -8%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.12) 0%, transparent 68%);
}

.faq__glow--2 {
  width: min(50vw, 420px);
  height: min(40vw, 340px);
  bottom: 5%;
  right: -6%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.07) 0%, transparent 70%);
}

.faq__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
}

.faq__inner {
  position: relative;
  z-index: 1;
}

.faq__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.faq__head {
  max-width: 36rem;
}

.faq__head .section__label {
  margin-bottom: var(--space-sm);
}

.faq__lead {
  max-width: 32rem;
  margin: var(--space-md) auto 0;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.faq__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-top: var(--space-lg);
}

.faq__stats span {
  padding: 0.5rem 1rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.faq__item {
  position: relative;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.55s var(--ease-out-expo),
    transform 0.55s var(--ease-out-expo);
}

.faq__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq__item:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.faq__item--open {
  border-color: rgba(201, 169, 98, 0.28);
  background: linear-gradient(
    155deg,
    rgba(201, 169, 98, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.06) inset,
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.faq__item--open::before {
  opacity: 1;
}

.faq__trigger {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  width: 100%;
  padding: clamp(1.125rem, 2.5vw, 1.375rem) clamp(1.25rem, 3vw, 1.5rem);
  text-align: left;
  color: var(--color-text);
  cursor: pointer;
  transition: color 0.35s ease;
}

.faq__trigger:hover {
  color: #fff;
}

.faq__item--open .faq__trigger {
  color: #fff;
}

.faq__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius-full);
  transition:
    background 0.35s ease,
    border-color 0.35s ease;
}

.faq__item--open .faq__num {
  background: rgba(201, 169, 98, 0.18);
  border-color: rgba(201, 169, 98, 0.35);
}

.faq__question {
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  transition:
    transform 0.5s var(--ease-out-expo),
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.faq__item--open .faq__icon {
  background: rgba(201, 169, 98, 0.15);
  border-color: rgba(201, 169, 98, 0.35);
  color: var(--color-accent);
  transform: rotate(180deg);
}

.faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-out-expo);
}

.faq__content-inner {
  padding: 0 clamp(1.25rem, 3vw, 1.5rem) clamp(1.25rem, 3vw, 1.5rem);
  padding-left: calc(clamp(1.25rem, 3vw, 1.5rem) + 3rem);
}

.faq__content-inner p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
  padding-top: 0.5rem;
}

.faq__content-inner a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.faq__content-inner a:hover {
  color: var(--color-accent-hover);
}

.faq__content-inner strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.faq__item--open .faq__content-inner p {
  color: rgba(255, 255, 255, 0.75);
}

.faq__footnote {
  max-width: 28rem;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  font-size: 0.9375rem;
  font-weight: 300;
  text-align: center;
  color: var(--color-text-muted);
}

.faq__footnote a {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.faq__footnote a:hover {
  color: var(--color-accent-hover);
}

@media (min-width: 1024px) {
  .faq__layout {
    max-width: 760px;
    margin: 0 auto;
  }

  .faq-list {
    max-width: none;
    margin: 0;
  }
}

/* ---- CTA (final) ---- */
.cta {
  position: relative;
  padding: clamp(5rem, 14vw, 9rem) 0 clamp(4rem, 10vw, 6rem);
  background: #050505;
  color: var(--color-text);
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta__gradient {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 45% at 20% 40%, rgba(201, 169, 98, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 25%, rgba(180, 60, 120, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(227, 38, 38, 0.25) 0%, transparent 55%),
    linear-gradient(160deg, #0a0a12 0%, #050505 40%, #0d0806 100%);
  animation: cta-gradient-shift 14s ease-in-out infinite alternate;
}

.cta__gradient--2 {
  opacity: 0.7;
  background:
    radial-gradient(ellipse 40% 35% at 70% 70%, rgba(100, 80, 220, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 35% 30% at 30% 80%, rgba(201, 169, 98, 0.2) 0%, transparent 45%);
  animation-delay: -7s;
}

@keyframes cta-gradient-shift {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.08) rotate(2deg); }
}

.cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: cta-orb-float 10s ease-in-out infinite;
}

.cta__orb--1 {
  width: 400px;
  height: 400px;
  top: -15%;
  left: 10%;
  background: rgba(201, 169, 98, 0.35);
}

.cta__orb--2 {
  width: 350px;
  height: 350px;
  bottom: -10%;
  right: 5%;
  background: rgba(227, 38, 38, 0.28);
  animation-delay: -5s;
}

@keyframes cta-orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -25px); }
}

.cta__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.cta__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.cta__hero {
  text-align: center;
  max-width: 52rem;
}

.cta__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: var(--space-lg);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 8vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  text-wrap: balance;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.4);
}

.cta__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #f5e6b8 0%, var(--color-accent) 50%, #e8a87c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta__subtitle {
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 36rem;
  margin: 0 auto var(--space-xl);
}

.cta__subtitle strong {
  color: #fff;
  font-weight: 600;
}

/* Main CTA button */
.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #ff5a5a 0%, var(--color-cta) 40%, #a81818 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 980px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 8px 32px rgba(227, 38, 38, 0.45),
    0 24px 64px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.cta__btn span,
.cta__btn svg {
  position: relative;
  z-index: 1;
}

.cta__btn svg {
  transition: transform 0.4s var(--ease-out-expo);
}

.cta__btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 12px 40px rgba(227, 38, 38, 0.55),
    0 32px 80px rgba(0, 0, 0, 0.45);
}

.cta__btn:hover svg {
  transform: translateX(4px);
}

.cta__price {
  margin-top: var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.cta__price span {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
}

/* Form card */
.cta__form-wrap {
  width: 100%;
  max-width: 440px;
}

.enroll-form {
  position: relative;
  text-align: left;
  padding: clamp(1.75rem, 3.5vw, 2.25rem);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(201, 169, 98, 0.06);
  overflow: hidden;
}

.enroll-form__glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.enroll-form__head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.enroll-form__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.5rem;
}

.enroll-form__subtitle {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.enroll-form__fields {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--space-md);
}

.enroll-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.enroll-field__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 0.25rem;
}

.enroll-field__wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.enroll-field__icon {
  position: absolute;
  left: 1rem;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  transition: color 0.35s ease;
}

.enroll-field__input {
  width: 100%;
  padding: 1rem 1.125rem 1rem 2.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-text);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.enroll-field__input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.enroll-field__input:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.38);
}

.enroll-field__input:focus {
  outline: none;
  border-color: rgba(201, 169, 98, 0.55);
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

.enroll-field:focus-within .enroll-field__icon {
  color: var(--color-accent);
}

.enroll-field__input:invalid:not(:placeholder-shown) {
  border-color: rgba(227, 38, 38, 0.45);
}

.enroll-form__submit {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  padding: 1.0625rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #ff5a5a 0%, var(--color-cta) 45%, #a81818 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 8px 28px rgba(227, 38, 38, 0.4);
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo);
  overflow: hidden;
}

.enroll-form__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.enroll-form__submit span,
.enroll-form__submit svg {
  position: relative;
  z-index: 1;
}

.enroll-form__submit svg {
  transition: transform 0.4s var(--ease-out-expo);
}

.enroll-form__submit:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 12px 36px rgba(227, 38, 38, 0.5);
}

.enroll-form__submit:hover svg {
  transform: translateX(3px);
}

.enroll-form__submit:active {
  transform: translateY(0);
}

.enroll-form__note {
  position: relative;
  z-index: 1;
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-sm);
  line-height: 1.55;
}

/* ---- Footer ---- */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--landing-bg);
  color: var(--color-text-muted);
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2rem);
  border-top: none;
}

.footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer__glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: min(70vw, 600px);
  height: min(40vw, 280px);
  background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
  filter: blur(40px);
}

.footer__line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.35), transparent);
}

.footer__inner {
  position: relative;
  z-index: 1;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand {
  max-width: 22rem;
}

.logo--footer {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.footer__heading {
  display: block;
  margin-bottom: 1.125rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__nav-list a {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease, transform 0.35s var(--ease-out-expo);
}

.footer__nav-list a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}

.footer__contact svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.35s var(--ease-out-expo);
}

.footer__contact:hover {
  color: #fff;
}

.footer__contact:hover svg {
  opacity: 1;
  transform: scale(1.08);
}

.footer__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s ease;
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

.footer__social-link:hover {
  color: #fff;
  background: rgba(201, 169, 98, 0.12);
  border-color: rgba(201, 169, 98, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.12);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.footer__copy {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--color-accent);
}

@media (min-width: 640px) {
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: 28rem;
  }
}

@media (min-width: 1024px) {
  .footer__top {
    grid-template-columns: 1.4fr 0.8fr 1fr 0.7fr;
    align-items: start;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: auto;
    max-width: 20rem;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer__legal {
    justify-content: flex-end;
  }
}

/* ---- Checkout page ---- */
.page-checkout {
  background: #050505;
}

.checkout {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 2rem) 0 clamp(4rem, 10vw, 6rem);
  color: var(--color-text);
  isolation: isolate;
}

.checkout__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.checkout__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.checkout__glow--1 {
  width: min(65vw, 560px);
  height: min(50vw, 420px);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 169, 98, 0.12) 0%, transparent 68%);
}

.checkout__glow--2 {
  width: min(45vw, 380px);
  height: min(40vw, 320px);
  bottom: 10%;
  right: -5%;
  background: radial-gradient(circle, rgba(100, 70, 180, 0.08) 0%, transparent 70%);
}

.checkout__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 30%, #000 15%, transparent 72%);
}

.checkout__inner {
  position: relative;
  z-index: 1;
}

.checkout__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.checkout__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.checkout__title em {
  font-style: italic;
  color: var(--color-accent);
}

.checkout__lead {
  font-size: clamp(1rem, 2vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.checkout-status {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
}

.checkout-status--success {
  color: #a8e6a1;
  background: rgba(72, 187, 95, 0.12);
  border: 1px solid rgba(72, 187, 95, 0.28);
}

.checkout-status--cancel {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2rem);
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.checkout-summary-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.checkout-summary-card__heading {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.25rem;
}

.checkout-summary-card__note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-accent);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.checkout-field__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.checkout-field__select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.checkout-field__select:hover,
.checkout-field__select:focus {
  border-color: rgba(201, 169, 98, 0.4);
  outline: none;
}

.checkout-summary {
  text-align: center;
  padding: 1rem 0 0;
}

.checkout-summary__emoji {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.checkout-summary__name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.35rem;
}

.checkout-summary__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, #e8d5a3, var(--color-accent));
  border-radius: var(--radius-full);
}

.checkout-summary__price {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
}

.checkout-summary__access {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.checkout-summary__gift {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.625rem 0.875rem;
  background: rgba(201, 169, 98, 0.08);
  border-radius: 10px;
  margin-top: 0.75rem;
}

.checkout-form-wrap {
  width: 100%;
}

.checkout-form {
  max-width: none;
}

.checkout-providers {
  position: relative;
  z-index: 1;
  border: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.checkout-providers__legend {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
  padding: 0;
}

.checkout-provider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: border-color 0.35s ease, background 0.35s ease;
}

.checkout-provider input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-provider--active,
.checkout-provider:has(input:checked) {
  border-color: rgba(201, 169, 98, 0.35);
  background: rgba(201, 169, 98, 0.08);
}

.checkout-provider__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(99, 91, 255, 0.15);
  color: #635bff;
}

.checkout-provider__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.checkout-provider__icon--wfp {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  background: rgba(201, 169, 98, 0.15);
}

.checkout-provider__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}

.checkout-provider__text strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
}

.checkout-provider__text small {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.checkout-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkout-actions .btn.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.nav--checkout .nav__link {
  font-size: 0.875rem;
}

@media (min-width: 900px) {
  .checkout__layout {
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    max-width: 980px;
  }
}

@media (max-width: 767px) {
  .nav--checkout {
    display: none;
  }
}

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--color-bg-card);
  color: var(--color-text-dark);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 200;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.toast--visible {
  transform: translateX(-50%) translateY(0);
}

.toast--error {
  background: #2a1515;
  color: #ffb4b4;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* ---- Reveal animations (MasterClass scroll) ---- */
.reveal {
  opacity: 0;
  transform: translateY(56px);
  filter: blur(10px);
  transition:
    opacity var(--transition-reveal),
    transform var(--transition-reveal),
    filter var(--transition-reveal);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform, filter;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal--fade {
  transform: translateY(32px);
}

.reveal--scale {
  transform: translateY(40px) scale(0.97);
}

.reveal--scale.reveal--visible {
  transform: translateY(0) scale(1);
}

/* ---- Tablet (640px+) ---- */
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
  }

  .hero__stat-divider {
    display: block;
  }

  .hero__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero__float--growth {
    right: -4%;
  }

  .hero__float--roas {
    left: -4%;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ---- Desktop (1024px+) ---- */
@media (min-width: 1024px) {
  :root {
    --header-height: 72px;
  }

  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    backdrop-filter: none;
    gap: var(--space-lg);
    z-index: auto;
  }

  .nav__link {
    font-size: 0.875rem;
    font-weight: 400;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__ig {
    display: inline-flex;
  }

  .nav__ig {
    display: none;
  }

  .burger {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .hero__layout {
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(4rem, 6.3vw, 6.9rem);
    padding-bottom: clamp(3.25rem, 5.5vh, 5rem);
    padding-left: clamp(2rem, 4vw, 3.5rem);
    padding-right: clamp(0.75rem, 1.5vw, 1.25rem);
    align-items: center;
  }

  .hero__main {
    max-width: none;
    text-align: left;
    gap: clamp(2rem, 3.2vh, 3.25rem);
    padding-block: clamp(1rem, 2.5vh, 1.75rem);
    padding-left: clamp(0.5rem, 1.5vw, 1.25rem);
    padding-right: clamp(1.5rem, 3.5vw, 3rem);
  }

  .hero__title {
    font-size: clamp(3rem, 4.2vw, 5rem);
    margin-top: 0.25rem;
    margin-bottom: 0.375rem;
    gap: clamp(0.4rem, 0.7vh, 0.625rem);
  }

  .hero__title-line--primary {
    letter-spacing: 0.075em;
  }

  .hero__title-line--accent {
    font-size: 0.8em;
    letter-spacing: 0.02em;
  }

  .hero__subtitle {
    max-width: 28rem;
    padding-top: 0.5rem;
    margin-bottom: 0.375rem;
  }

  .hero__platforms,
  .hero__social-proof {
    justify-content: flex-start;
  }

  .hero__visual {
    justify-content: flex-end;
    padding: 0;
    margin-right: clamp(-1rem, -2vw, 0);
  }

  .hero__showcase {
    width: 100%;
    max-width: 440px;
  }

  .about__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .results__grid {
    grid-template-columns: repeat(4, 1fr);
  }

}

/* ---- Large desktop (1280px+) — hero composition ---- */
@media (min-width: 1280px) {
  .audience-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .hero__layout {
    grid-template-columns: 1.12fr 0.88fr;
    gap: clamp(4.6rem, 6.9vw, 8rem);
    align-items: center;
    padding-left: clamp(2.5rem, 5vw, 4.5rem);
    padding-right: clamp(1rem, 2vw, 1.5rem);
  }

  .hero__main {
    padding-left: clamp(1rem, 2vw, 2rem);
    padding-right: clamp(2rem, 4vw, 3.5rem);
    gap: clamp(2.125rem, 3.4vh, 3.375rem);
  }

  .hero__title {
    font-size: clamp(3.75rem, 4vw, 5.5rem);
    letter-spacing: -0.02em;
    margin-top: 0.375rem;
    margin-bottom: 0.5rem;
    gap: clamp(0.45rem, 0.8vh, 0.7rem);
  }

  .hero__title-line--primary {
    letter-spacing: 0.085em;
  }

  .hero__title-line--accent {
    font-size: 0.8em;
    letter-spacing: 0.024em;
  }

  .hero__subtitle {
    font-size: 1.375rem;
    max-width: 32rem;
    padding-top: 0.625rem;
    margin-bottom: 0.5rem;
  }

  .hero__showcase {
    max-width: 480px;
  }

  .hero__float--growth {
    right: -6%;
  }

  .hero__float--roas {
    left: -8%;
  }

  .hero__orb--1 {
    right: 0;
  }
}

@media (min-width: 1440px) {
  .hero__layout {
    padding-left: clamp(3rem, 5.5vw, 5rem);
    gap: clamp(5rem, 7vw, 8.5rem);
  }

  .hero__main {
    padding-left: clamp(1.5rem, 2.5vw, 2.5rem);
    padding-right: 3.75rem;
    gap: clamp(2.25rem, 3.5vh, 3.5rem);
  }

  .hero__visual {
    margin-right: -2rem;
  }

  .hero__showcase {
    max-width: 520px;
  }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-enter {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    animation: none;
  }

  .hero--loaded .hero-enter {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .hero--loaded .hero__title-line--accent,
  .hero--loaded .hero__platforms .hero__platform,
  .hero--loaded .hero__actions .btn {
    opacity: 1;
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   Student Dashboard — Netflix + Notion + MasterClass
   ============================================ */

.page-dashboard,
.page-login {
  background: #0c0c0c;
  color: var(--color-text);
  min-height: 100vh;
}

.page-dashboard {
  overflow: hidden;
}

.dashboard-app {
  display: flex;
  min-height: 100vh;
}

/* ---- Sidebar (Notion) ---- */
.dashboard-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  width: 260px;
  height: 100vh;
  padding: 1.25rem 0.875rem;
  background: #111111;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease-out-expo);
}

.dashboard-sidebar--open {
  transform: translateX(0);
}

.dashboard-sidebar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.375rem 1rem;
}

.logo--dashboard .logo__mark,
.logo--login .logo__mark {
  color: var(--color-accent);
}

.logo--dashboard .logo__text,
.logo--login .logo__text {
  color: #fff;
}

.dashboard-sidebar__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dashboard-sidebar__close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.dashboard-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.625rem;
  margin-bottom: 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.dashboard-user__avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #111;
  background: linear-gradient(135deg, var(--color-accent) 0%, #e8d5a3 100%);
}

.dashboard-user__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dashboard-user__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-user__plan {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.dashboard-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0 0.25rem;
}

.dashboard-nav__label {
  display: block;
  padding: 1rem 0.625rem 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.dashboard-nav__link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.625rem;
  margin-bottom: 2px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dashboard-nav__link svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.dashboard-nav__emoji {
  flex-shrink: 0;
  width: 18px;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1;
}

.dashboard-nav__link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.dashboard-nav__link--active {
  background: rgba(201, 169, 98, 0.12);
  color: #fff;
}

.dashboard-nav__link--active svg {
  opacity: 1;
  color: var(--color-accent);
}

.dashboard-nav__link--muted {
  color: rgba(255, 255, 255, 0.45);
}

.dashboard-nav__link--btn {
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.dashboard-sidebar__footer {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.dashboard-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

body.dashboard-nav-open {
  overflow: hidden;
}

/* ---- Main ---- */
.dashboard-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #0c0c0c;
}

.dashboard-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-topbar__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.dashboard-topbar__menu:hover {
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-topbar__search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  max-width: 420px;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-topbar__search svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.35);
}

.dashboard-topbar__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.875rem;
  color: #fff;
  outline: none;
}

.dashboard-topbar__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.dashboard-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.dashboard-topbar__streak {
  display: none;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.dashboard-topbar__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #111;
  background: linear-gradient(135deg, var(--color-accent) 0%, #e8d5a3 100%);
}

.dashboard-content {
  flex: 1;
  padding: 1.5rem 1.25rem 3rem;
  overflow-y: auto;
}

.dashboard-section {
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
  scroll-margin-top: 5rem;
}

.dashboard-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.dashboard-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}

.dashboard-section__link {
  font-size: 0.875rem;
  color: var(--color-accent);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--transition-fast);
}

.dashboard-section__link:hover {
  opacity: 0.8;
}

.dashboard-section__count {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Hero overview ---- */
.dashboard-hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1.5rem;
  border-radius: 16px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201, 169, 98, 0.1) 0%, transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.375rem;
}

.dashboard-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.75rem;
}

.dashboard-hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

.dashboard-hero__lead {
  max-width: 36rem;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.dashboard-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dashboard-hero__stat-value {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.dashboard-hero__stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-accent);
}

.dashboard-hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.dashboard-stat-card {
  padding: 1.125rem 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-stat-card--accent {
  background: rgba(201, 169, 98, 0.08);
  border-color: rgba(201, 169, 98, 0.18);
}

.dashboard-stat-card__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
}

.dashboard-stat-card__label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---- Course cards (Netflix) ---- */
.dashboard-courses-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.course-card {
  position: relative;
  min-height: 220px;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.course-card:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.course-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.course-card--smm .course-card__bg {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(160deg, #1a3a5c 0%, #0d1f33 50%, #051018 100%);
}

.course-card--target .course-card__bg {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.8) 100%),
    linear-gradient(160deg, #3d2a1a 0%, #1a1208 50%, #0a0604 100%);
}

.course-card--trading .course-card__bg {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.22) 0%, rgba(56, 189, 248, 0.08) 50%, transparent 100%);
}

.course-card--ai .course-card__bg {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(160deg, #2a1a4a 0%, #120a24 50%, #060310 100%);
}

.course-card--featured {
  min-height: 260px;
  border: 1px solid rgba(201, 169, 98, 0.25);
}

.course-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: inherit;
  padding: 1.5rem;
}

.course-card__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.625rem;
  margin-bottom: 0.625rem;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.course-card__badge--gold {
  color: #111;
  background: var(--color-accent);
}

.course-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 3vw, 1.625rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.25rem;
}

.course-card__meta {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
}

.course-card__progress {
  height: 3px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.course-card__progress-bar {
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  border-radius: inherit;
  background: var(--color-accent);
  transition: width 1s var(--ease-out-expo);
}

.course-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.course-card:hover .course-card__cta {
  opacity: 1;
  transform: translateY(0);
}

.course-card__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #111;
}

.course-card__play svg {
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

/* ---- Progress grid ---- */
.dashboard-progress-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.progress-item {
  padding: 1.125rem 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-item--featured {
  background: rgba(201, 169, 98, 0.06);
  border-color: rgba(201, 169, 98, 0.15);
}

.progress-item__head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
}

.progress-item__emoji {
  font-size: 1.25rem;
  line-height: 1;
}

.progress-item__head > div {
  flex: 1;
  min-width: 0;
}

.progress-item__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
}

.progress-item__detail {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.progress-item__pct {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-accent);
}

.progress-item__bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-item__bar span {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-accent) 0%, #e8d5a3 100%);
}

/* ---- Materials list (Notion) ---- */
.dashboard-list {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.dashboard-list__item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.125rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background var(--transition-fast);
}

.dashboard-list__item:last-child {
  border-bottom: none;
}

.dashboard-list__item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-list__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dashboard-list__icon--pdf {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.12);
}

.dashboard-list__icon--doc {
  color: #4dabf7;
  background: rgba(77, 171, 247, 0.12);
}

.dashboard-list__icon--zip {
  color: #ffd43b;
  background: rgba(255, 212, 59, 0.12);
}

.dashboard-list__icon--video {
  color: #69db7c;
  background: rgba(105, 219, 124, 0.12);
}

.dashboard-list__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.dashboard-list__body strong {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}

.dashboard-list__body small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.dashboard-list__action {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: var(--color-accent);
}

/* ---- Homework ---- */
.dashboard-homework {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.homework-card {
  padding: 1.125rem 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.homework-card--new {
  border-color: rgba(201, 169, 98, 0.2);
  background: rgba(201, 169, 98, 0.04);
}

.homework-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.homework-card__status--new {
  color: var(--color-accent);
}

.homework-card__status--done {
  color: #69db7c;
}

.homework-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.homework-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.homework-card__course {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.5rem;
}

.homework-card__date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.homework-card__btn {
  margin-top: 0.5rem;
}

/* ---- Certificate (MasterClass) ---- */
.certificate-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.certificate-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201, 169, 98, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.certificate-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.certificate-card__preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  max-width: 280px;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 12px;
  background:
    linear-gradient(145deg, #1a1610 0%, #0d0b08 100%);
  border: 1px solid rgba(201, 169, 98, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.certificate-card__seal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  background: var(--color-accent);
}

.certificate-card__preview-title {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--color-accent);
  text-align: center;
}

.certificate-card__preview-name {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.certificate-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.certificate-card__status--locked svg {
  opacity: 0.6;
}

.certificate-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}

.certificate-card__desc {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 1.25rem;
}

.certificate-card__progress-wrap {
  margin-bottom: 1.25rem;
}

.certificate-card__progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.certificate-card__progress-label strong {
  color: var(--color-accent);
  font-weight: 600;
}

.certificate-card__progress-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.certificate-card__progress-bar span {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  background: var(--color-accent);
}

.page-dashboard .btn--outline-light:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ---- Login ---- */
.login {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1.25rem;
}

.login__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.login__glow {
  position: absolute;
  top: 20%;
  left: 50%;
  width: min(70vw, 500px);
  height: min(50vw, 360px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.14) 0%, transparent 68%);
  filter: blur(60px);
}

.login__card {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: clamp(2rem, 5vw, 2.5rem);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.logo--login {
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.login__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
}

.login__lead {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.75rem;
}

.login__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-login .enroll-field__label {
  color: rgba(255, 255, 255, 0.55);
}

.page-login .enroll-field__input {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.page-login .enroll-field__input:focus {
  border-color: rgba(201, 169, 98, 0.5);
}

.login__demo {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

.login__demo a {
  color: var(--color-accent);
}

/* ---- Dashboard responsive ---- */
@media (min-width: 640px) {
  .dashboard-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .dashboard-homework {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-homework .homework-card:last-child {
    grid-column: span 2;
  }
}

@media (min-width: 768px) {
  .dashboard-hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .dashboard-hero__stat {
    align-items: flex-end;
    text-align: right;
  }

  .dashboard-courses-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .course-card--featured {
    grid-column: span 1;
  }

  .certificate-card__inner {
    flex-direction: row;
    align-items: center;
  }

  .certificate-card__preview {
    flex-shrink: 0;
    margin: 0;
  }

  .dashboard-topbar__streak {
    display: block;
  }
}

@media (min-width: 1024px) {
  .dashboard-sidebar {
    position: sticky;
    transform: none;
    flex-shrink: 0;
  }

  .dashboard-sidebar__close,
  .dashboard-topbar__menu,
  .dashboard-overlay {
    display: none;
  }

  .dashboard-content {
    padding: 2rem 2.5rem 4rem;
  }

  .dashboard-topbar {
    padding: 1rem 2.5rem;
  }

  .dashboard-homework {
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-homework .homework-card:last-child {
    grid-column: auto;
  }
}
