/* ==========================================================================
   Awaken The Lion — Premium Edition
   Ultra-modern, exotic, agency-grade visual system
   ========================================================================== */

:root {
  --atl-ink: #161116;
  --atl-paper: #ffffff;
  --atl-warm-paper: #fff8f2;
  --atl-soft-violet: #f5e8fa;
  --atl-line: #e8dceb;
  --atl-violet: #9900cc;
  --atl-violet-deep: #7a00a3;
  --atl-azure: #009eff;
  --atl-orange: #ff6600;
  --atl-turquoise: #37bec1;
  --atl-yellow: #ffc800;
  --atl-plum: #190021;
  --atl-muted: #6e5d70;
  --atl-banner-body: #3e303e;
  --atl-resources-bg: #eafbfb;
  --atl-involved-body: #f5e8fa;

  --gradient-brand: linear-gradient(135deg, #9900cc 0%, #009eff 55%, #37bec1 100%);
  --gradient-warm: linear-gradient(145deg, #fff8f2 0%, #ffffff 45%, #f5e8fa 100%);
  --gradient-hero-text: linear-gradient(120deg, #9900cc 0%, #ff6600 45%, #37bec1 100%);
  --gradient-violet-glow: radial-gradient(circle at 30% 30%, rgba(153, 0, 204, 0.35), transparent 60%);
  --gradient-gold-mesh: radial-gradient(circle at 70% 20%, rgba(255, 200, 0, 0.45), transparent 55%);

  --font-display: "Averia Serif Libre", Georgia, serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-button: 999px;
  --radius-card: 20px;

  --shadow-soft: 0 4px 24px rgba(25, 0, 33, 0.06);
  --shadow-medium: 0 20px 50px rgba(25, 0, 33, 0.1);
  --shadow-premium: 0 32px 80px rgba(25, 0, 33, 0.14);
  --shadow-violet: 0 20px 60px rgba(153, 0, 204, 0.25);
  --shadow-glass: inset 0 1px 0 rgba(255, 255, 255, 0.65);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container-max: 1220px;
  --gutter: clamp(20px, 7.64vw, 110px);
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(153, 0, 204, 0.18);
  color: var(--atl-ink);
}

body {
  margin: 0;
  background: var(--atl-paper);
  color: var(--atl-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-loaded .hero__copy > *,
body.is-loaded .hero-visual {
  animation-play-state: running;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
  overflow-wrap: anywhere;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   Ambient atmosphere
   -------------------------------------------------------------------------- */

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

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

.ambient__orb--violet {
  width: 55vw;
  height: 55vw;
  max-width: 720px;
  max-height: 720px;
  top: -12%;
  right: -8%;
  background: rgba(153, 0, 204, 0.22);
}

.ambient__orb--turquoise {
  width: 40vw;
  height: 40vw;
  max-width: 520px;
  max-height: 520px;
  bottom: 20%;
  left: -10%;
  background: rgba(55, 190, 193, 0.18);
  animation-delay: -6s;
}

.ambient__orb--gold {
  width: 30vw;
  height: 30vw;
  max-width: 420px;
  max-height: 420px;
  top: 45%;
  left: 35%;
  background: rgba(255, 200, 0, 0.12);
  animation-delay: -12s;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  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");
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-2%, 3%) scale(1.04); }
  66% { transform: translate(2%, -2%) scale(0.98); }
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--atl-violet);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.skip-link:focus { top: 16px; }

.container {
  width: min(var(--container-max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.text-gradient {
  background: var(--gradient-hero-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.section-eyebrow {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--atl-violet);
}

.section-eyebrow--turquoise { color: var(--atl-turquoise); }

.section-header__main {
  display: flex;
  flex-direction: column;
  max-width: 620px;
}

/* Scroll reveal */
/* Scroll reveal — only hide when JS is active */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
}

.js .reveal {
  transition:
    opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Buttons & Pills
   -------------------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: none;
  border-radius: var(--radius-button);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s var(--ease-out-expo);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(-1px) scale(0.99); }

.btn__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-out-expo);
}

.btn:hover .btn__shine { transform: translateX(120%); }

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.btn__icon--violet { color: var(--atl-violet); }
.btn__icon--ink { color: var(--atl-ink); }

.btn--violet {
  background: linear-gradient(135deg, #b012e0 0%, var(--atl-violet) 50%, var(--atl-violet-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(153, 0, 204, 0.35);
}

.btn--violet:hover { box-shadow: var(--shadow-violet); }

.btn--glow::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient-brand);
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.35s ease;
}

.btn--glow:hover::after { opacity: 0.55; }

.btn--glass {
  background: rgba(255, 255, 255, 0.72);
  color: var(--atl-violet);
  border: 1px solid rgba(232, 220, 235, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft), var(--shadow-glass);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-medium);
}

.btn--ink {
  background: var(--atl-ink);
  color: #fff;
  box-shadow: 0 12px 40px rgba(22, 17, 22, 0.28);
}

.btn--yellow {
  background: linear-gradient(135deg, #ffd633 0%, var(--atl-yellow) 100%);
  color: var(--atl-ink);
  box-shadow: 0 12px 36px rgba(255, 200, 0, 0.35);
}

.btn--lift:hover {
  transform: translateY(-4px) scale(1.03);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  width: fit-content;
  border: 1px solid transparent;
}

.pill--violet {
  background: rgba(245, 232, 250, 0.85);
  color: var(--atl-violet);
  border-color: rgba(153, 0, 204, 0.12);
  backdrop-filter: blur(8px);
}

.pill--white { background: rgba(255, 255, 255, 0.95); }
.pill--orange-text { color: var(--atl-orange); }
.pill--turquoise-text { color: var(--atl-turquoise); }
.pill--yellow { background: var(--atl-yellow); }
.pill--ink-text { color: var(--atl-ink); text-transform: none; letter-spacing: 0; }

/* --------------------------------------------------------------------------
   Header — glass morphism
   -------------------------------------------------------------------------- */

.glass-header {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232, 220, 235, 0.65);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  transition:
    box-shadow 0.4s var(--ease-out-expo),
    background 0.4s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 40px rgba(25, 0, 33, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-height);
  gap: 24px;
}

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

.site-header__logo:hover { transform: scale(1.02); }

.site-header__logo img {
  width: 286px;
  height: 42px;
  object-fit: contain;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.site-nav__link {
  position: relative;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--atl-muted);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.site-nav__link span { position: relative; z-index: 1; }

.site-nav__link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--atl-soft-violet);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--atl-violet);
}

.site-nav__link:hover::before,
.site-nav__link.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.btn--header { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--atl-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--atl-ink);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero — cinematic
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--gradient-warm);
  padding-block: clamp(48px, 6vw, 72px);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: 10%;
  right: 5%;
  width: min(600px, 70vw);
  height: min(600px, 70vw);
  background: var(--gradient-violet-glow);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 5vw, 90px);
  min-height: clamp(540px, 54vw, 760px);
}

.hero__copy {
  flex: 0 1 610px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero__heading {
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1.06;
  color: var(--atl-ink);
  overflow-wrap: normal;
}

.hero__heading-line {
  display: block;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.hero__body {
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  font-size: clamp(17px, 1.39vw, 20px);
  line-height: 1.62;
  color: var(--atl-muted);
  max-width: 54ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--atl-muted);
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(232, 220, 235, 0.7);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  width: fit-content;
}

.hero__trust-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--atl-turquoise);
}

/* Hero visual — unified premium collage */
.hero-visual {
  position: relative;
  flex: 0 1 min(520px, 100%);
  width: min(520px, 100%);
  max-width: 100%;
  min-width: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -16px -20px -24px -12px;
  border-radius: calc(var(--radius-card) + 14px);
  background: var(--gradient-brand);
  opacity: 0.3;
  filter: blur(36px);
  z-index: -1;
  pointer-events: none;
}

.hero-visual__collage {
  position: relative;
  width: 100%;
  height: 580px;
  border-radius: calc(var(--radius-card) + 6px);
  background:
    radial-gradient(ellipse 90% 70% at 72% 100%, rgba(153, 0, 204, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 16% 92%, rgba(55, 190, 193, 0.08) 0%, transparent 50%),
    var(--atl-warm-paper);
  box-shadow:
    0 40px 90px rgba(25, 0, 33, 0.14),
    0 0 0 1px rgba(232, 220, 235, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.hero-visual__collage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-color: rgba(100, 30, 130, 0.055);
  -webkit-mask-image: url("../assets/patterns/Pattern-4.png");
  mask-image: url("../assets/patterns/Pattern-4.png");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
}

.hero-visual__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-visual__orb--yellow {
  top: 16px;
  right: 28px;
  width: 156px;
  height: 156px;
  background: radial-gradient(circle at 38% 38%, #ffe566, var(--atl-yellow));
  box-shadow: 0 16px 40px rgba(255, 200, 0, 0.4);
  animation: orb-float 5s ease-in-out infinite;
}

.hero-visual__orb--turquoise {
  top: 348px;
  left: 16px;
  width: 132px;
  height: 132px;
  background: radial-gradient(circle at 38% 38%, #62d8da, var(--atl-turquoise));
  box-shadow: 0 14px 36px rgba(55, 190, 193, 0.38);
  animation: orb-float 5s ease-in-out infinite -2.5s;
}

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

.hero-visual__photo {
  position: absolute;
  top: 94px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  width: 440px;
  max-width: calc(100% - 32px);
  padding: 0;
  background: #fff;
  border: 10px solid #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 72px rgba(25, 0, 33, 0.2);
  overflow: hidden;
  z-index: 2;
  isolation: isolate;
  transition: box-shadow 0.5s var(--ease-out-expo);
}

.hero-visual:hover .hero-visual__photo {
  box-shadow: 0 40px 88px rgba(25, 0, 33, 0.24);
}

.hero-visual__photo img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.hero-visual:hover .hero-visual__photo img {
  transform: scale(1.04);
}

.hero-visual__note {
  position: absolute;
  top: auto;
  right: 20px;
  bottom: 28px;
  left: auto;
  width: min(280px, calc(100% - 40px));
  padding: 20px 22px 22px;
  background: linear-gradient(160deg, #b012e0 0%, #640087 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  color: #fff;
  z-index: 3;
  isolation: isolate;
  box-shadow:
    0 32px 64px rgba(25, 0, 33, 0.38),
    0 12px 28px rgba(153, 0, 204, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s ease;
}

.hero-visual:hover .hero-visual__note {
  transform: translateY(-4px);
  box-shadow:
    0 32px 70px rgba(25, 0, 33, 0.38),
    0 12px 32px rgba(153, 0, 204, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-visual__note-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-visual__note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
}

.hero-visual__note-icon svg {
  width: 16px;
  height: 16px;
}

.hero-visual__note-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-visual__note-copy {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.95;
}

/* Load animation */
body.is-loaded .hero__copy .reveal:nth-child(1) { transition-delay: 0.05s; }
body.is-loaded .hero__copy .reveal:nth-child(2) { transition-delay: 0.12s; }
body.is-loaded .hero__copy .reveal:nth-child(3) { transition-delay: 0.2s; }
body.is-loaded .hero__copy .reveal:nth-child(4) { transition-delay: 0.28s; }
body.is-loaded .hero__copy .reveal:nth-child(5) { transition-delay: 0.36s; }

.hero-visual {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 1s var(--ease-out-expo) 0.2s,
    transform 1s var(--ease-out-expo) 0.2s;
}

body.is-loaded .hero-visual {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section { padding-block: clamp(64px, 8vw, 96px); }

.section--warm {
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(153, 0, 204, 0.04), transparent),
    var(--atl-warm-paper);
}

.section--turquoise {
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(55, 190, 193, 0.15), transparent),
    var(--atl-resources-bg);
}

.section-header { margin-bottom: 48px; }

.section-header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.08;
  color: var(--atl-ink);
}

.section-heading--md {
  font-size: clamp(1.875rem, 3.2vw, 2.75rem);
  max-width: 520px;
}

.section-heading--sm {
  font-size: clamp(1.75rem, 2.9vw, 2.5rem);
}

.section-intro {
  max-width: 500px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--atl-muted);
}

/* --------------------------------------------------------------------------
   Premium cards
   -------------------------------------------------------------------------- */

.premium-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 220, 235, 0.85);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    border-color 0.35s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(153, 0, 204, 0.15);
}

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

/* --------------------------------------------------------------------------
   Guided pathways — premium section
   -------------------------------------------------------------------------- */

.section--pathways {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(153, 0, 204, 0.07) 0%, transparent 58%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(55, 190, 193, 0.09) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fffbf8 45%, #f9f2fc 100%);
}

.pathways__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 82%, rgba(255, 200, 0, 0.07) 0%, transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(153, 0, 204, 0.06) 0%, transparent 32%);
}

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

.pathways__header {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.pathways__intro {
  padding-left: 24px;
  border-left: 2px solid rgba(153, 0, 204, 0.22);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pathways .pathway-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
  padding: 30px 28px 28px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 100%);
  border: 1px solid rgba(232, 220, 235, 0.92);
  box-shadow:
    0 2px 4px rgba(25, 0, 33, 0.02),
    0 16px 40px rgba(25, 0, 33, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.pathways .pathway-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 56px rgba(25, 0, 33, 0.1),
    0 8px 24px rgba(153, 0, 204, 0.08);
}

.pathway-card__glow {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  opacity: 0;
  filter: blur(40px);
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.pathway-card--violet .pathway-card__glow { background: rgba(153, 0, 204, 0.35); }
.pathway-card--orange .pathway-card__glow { background: rgba(255, 102, 0, 0.3); }
.pathway-card--turquoise .pathway-card__glow { background: rgba(55, 190, 193, 0.35); }
.pathway-card--azure .pathway-card__glow { background: rgba(0, 158, 255, 0.3); }

.pathways .pathway-card:hover .pathway-card__glow {
  opacity: 1;
}

.pathways .pathway-card::before {
  background: var(--atl-violet);
}

.pathways .pathway-card--orange::before {
  background: var(--atl-orange);
}

.pathways .pathway-card--turquoise::before {
  background: var(--atl-turquoise);
}

.pathways .pathway-card--azure::before {
  background: var(--atl-azure);
}

.pathways .pathway-card--violet:hover {
  border-color: rgba(153, 0, 204, 0.22);
}

.pathways .pathway-card--orange:hover {
  border-color: rgba(255, 102, 0, 0.22);
}

.pathways .pathway-card--turquoise:hover {
  border-color: rgba(55, 190, 193, 0.24);
}

.pathways .pathway-card--azure:hover {
  border-color: rgba(0, 158, 255, 0.22);
}

.pathway-card__index {
  position: absolute;
  left: -6px;
  top: 50%;
  z-index: 0;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 11vw, 7.25rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: rgba(153, 0, 204, 0.07);
  pointer-events: none;
  user-select: none;
}

.pathway-card--orange .pathway-card__index { color: rgba(255, 102, 0, 0.08); }
.pathway-card--turquoise .pathway-card__index { color: rgba(55, 190, 193, 0.09); }
.pathway-card--azure .pathway-card__index { color: rgba(0, 158, 255, 0.07); }

.pathway-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.pathway-card__icon {
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #fff;
  box-shadow:
    0 10px 24px rgba(25, 0, 33, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.35s var(--ease-spring);
}

.pathways .premium-card:hover .pathway-card__icon {
  transform: scale(1.06) rotate(-4deg);
}

.pathway-card__icon svg { width: 20px; height: 20px; }

.pathway-card__icon--violet { background: linear-gradient(135deg, #b012e0, var(--atl-violet)); }
.pathway-card__icon--orange { background: linear-gradient(135deg, #ff8533, var(--atl-orange)); }
.pathway-card__icon--turquoise { background: linear-gradient(135deg, #5fd4d6, var(--atl-turquoise)); }
.pathway-card__icon--azure { background: linear-gradient(135deg, #33b5ff, var(--atl-azure)); }

.pathway-card__link {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 6px;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--atl-violet);
  background: rgba(245, 232, 250, 0.7);
  border: 1px solid rgba(153, 0, 204, 0.1);
  border-radius: 999px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    gap 0.3s var(--ease-out-expo),
    transform 0.3s var(--ease-out-expo);
}

.pathway-card__link > span {
  min-width: 0;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pathway-card__link svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out-expo);
}

.pathway-card--orange .pathway-card__link {
  color: var(--atl-orange);
  background: rgba(255, 240, 230, 0.75);
  border-color: rgba(255, 102, 0, 0.12);
}

.pathway-card--turquoise .pathway-card__link {
  color: #1a9699;
  background: rgba(234, 251, 251, 0.85);
  border-color: rgba(55, 190, 193, 0.15);
}

.pathway-card--azure .pathway-card__link {
  color: var(--atl-azure);
  background: rgba(230, 246, 255, 0.85);
  border-color: rgba(0, 158, 255, 0.12);
}

.pathway-card__link:hover {
  gap: 10px;
  transform: translateX(2px);
  background: rgba(245, 232, 250, 1);
  border-color: rgba(153, 0, 204, 0.2);
}

.pathway-card__link:hover svg {
  transform: translateX(2px);
}

.pathway-card__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.6vw, 1.4375rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.pathway-card__body {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.58;
  color: var(--atl-muted);
  margin-top: auto;
}

/* Featured banner — ultra-premium spotlight */
.featured-banner {
  position: relative;
  padding: clamp(52px, 7vw, 80px) 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fffbf8 50%, #ffffff 100%);
}

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

.featured-banner__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.featured-banner__orb--gold {
  top: -18%;
  left: 8%;
  width: min(420px, 42vw);
  height: min(420px, 42vw);
  background: rgba(153, 0, 204, 0.04);
  opacity: 0.35;
}

.featured-banner__orb--orange {
  bottom: -24%;
  right: 6%;
  width: min(360px, 36vw);
  height: min(360px, 36vw);
  background: rgba(55, 190, 193, 0.06);
  opacity: 0.35;
}

.featured-banner__orb--violet {
  top: 20%;
  right: 18%;
  width: min(280px, 28vw);
  height: min(280px, 28vw);
  background: rgba(153, 0, 204, 0.08);
}

.featured-banner__wrap {
  position: relative;
  z-index: 1;
}

.featured-banner__panel {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 4px);
  padding: clamp(36px, 5vw, 54px) clamp(32px, 4.5vw, 52px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.42) 100%),
    linear-gradient(118deg, #ffe566 0%, var(--atl-yellow) 38%, #ffb800 72%, #ff9f1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 2px 4px rgba(25, 0, 33, 0.03),
    0 20px 56px rgba(255, 170, 0, 0.2),
    0 48px 96px rgba(25, 0, 33, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(255, 140, 0, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform 0.55s var(--ease-out-expo),
    box-shadow 0.55s var(--ease-out-expo);
}

.featured-banner__panel:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 72px rgba(255, 170, 0, 0.26),
    0 56px 120px rgba(25, 0, 33, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.featured-banner__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  background-color: rgba(255, 120, 0, 0.055);
  -webkit-mask-image: url("../assets/patterns/Pattern-4.png");
  mask-image: url("../assets/patterns/Pattern-4.png");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.featured-banner__sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.42) 48%,
    transparent 66%
  );
  opacity: 0.55;
}

.featured-banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.featured-banner__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
  max-width: 720px;
}

.featured-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 16px 8px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--atl-orange);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-radius: 999px;
  box-shadow:
    0 4px 18px rgba(255, 102, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.featured-banner__eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--atl-orange);
  box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.45);
  animation: featured-pulse 2.4s ease-in-out infinite;
}

@keyframes featured-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.45); }
  50% { box-shadow: 0 0 0 7px rgba(255, 102, 0, 0); }
}

.featured-banner__heading {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.featured-banner__accent {
  background: linear-gradient(120deg, #e85d00 0%, var(--atl-orange) 45%, var(--atl-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.featured-banner__body {
  font-size: clamp(16px, 1.6vw, 17px);
  font-weight: 500;
  line-height: 1.58;
  color: var(--atl-banner-body);
  max-width: 620px;
}

.featured-banner__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.featured-banner__emblem {
  position: relative;
  width: 118px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-banner__emblem-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.featured-banner__emblem-ring--outer {
  inset: 0;
  border: 1px dashed rgba(255, 102, 0, 0.28);
  animation: featured-spin 28s linear infinite;
}

.featured-banner__emblem-ring--inner {
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.35);
  animation: featured-spin 20s linear infinite reverse;
}

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

.featured-banner__emblem-core {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  color: var(--atl-orange);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 252, 245, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow:
    0 14px 36px rgba(255, 102, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.featured-banner__emblem-core svg {
  width: 36px;
  height: 36px;
}

.btn--featured {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(165deg, #2a222a 0%, var(--atl-ink) 55%, #0d0a0d 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow:
    0 16px 44px rgba(22, 17, 22, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.btn--featured:hover {
  box-shadow:
    0 22px 56px rgba(22, 17, 22, 0.42),
    0 0 0 1px rgba(255, 200, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

/* --------------------------------------------------------------------------
   Programmes — bento spotlight layout
   -------------------------------------------------------------------------- */

.section--programmes {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 50% 100%, rgba(255, 102, 0, 0.05) 0%, transparent 62%),
    linear-gradient(180deg, #fff8f2 0%, #fffdfb 50%, #ffffff 100%);
}

.programmes__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 50%, rgba(153, 0, 204, 0.05) 0%, transparent 32%),
    radial-gradient(circle at 95% 30%, rgba(255, 200, 0, 0.06) 0%, transparent 28%);
}

.programmes__grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(22, 17, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 17, 22, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

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

.programmes__header {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(48px, 6vw, 68px);
  text-align: center;
}

.programmes__intro {
  max-width: 580px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.58;
  color: var(--atl-muted);
}

.programme-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

/* Featured spotlight — dark plum panel */
.programme-spotlight {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
  padding: clamp(32px, 4vw, 44px);
  border-radius: calc(var(--radius-lg) + 2px);
  color: #fff;
  background: linear-gradient(155deg, #1f0a28 0%, #2d1040 42%, var(--atl-plum) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 64px rgba(25, 0, 33, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    transform 0.5s var(--ease-out-expo),
    box-shadow 0.5s var(--ease-out-expo);
}

.programme-spotlight:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 80px rgba(25, 0, 33, 0.34),
    0 0 0 1px rgba(153, 0, 204, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.programme-spotlight__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.04);
  -webkit-mask-image: url("../assets/patterns/Pattern-4.png");
  mask-image: url("../assets/patterns/Pattern-4.png");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.programme-spotlight__glow {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: rgba(153, 0, 204, 0.45);
  filter: blur(60px);
  pointer-events: none;
}

.programme-spotlight__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.programme-spotlight__badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--atl-plum);
  background: var(--atl-yellow);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(255, 200, 0, 0.35);
}

.programme-spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.625rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.programme-spotlight__body {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.78);
}

.programme-spotlight__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 8px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--atl-plum);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition:
    gap 0.3s var(--ease-out-expo),
    transform 0.3s var(--ease-out-expo),
    box-shadow 0.3s ease;
}

.programme-spotlight__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out-expo);
}

.programme-spotlight__link:hover {
  gap: 14px;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.programme-spotlight__link:hover svg {
  transform: translateX(3px);
}

/* Horizontal programme strips */
.programme-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.programme-strip {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2.5vw, 24px);
  padding: 22px clamp(20px, 2.5vw, 26px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(232, 220, 235, 0.92);
  border-radius: var(--radius-md);
  box-shadow:
    0 2px 4px rgba(25, 0, 33, 0.02),
    0 8px 24px rgba(25, 0, 33, 0.04);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo),
    border-color 0.35s ease;
}

.programme-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 3px;
  border-radius: 999px;
  background: var(--strip-accent, var(--atl-violet));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.programme-strip:hover {
  transform: translateX(8px);
  box-shadow:
    0 12px 36px rgba(25, 0, 33, 0.08),
    0 4px 12px rgba(25, 0, 33, 0.04);
}

.programme-strip:hover::before {
  opacity: 1;
}

.programme-strip--orange { --strip-accent: var(--atl-orange); }
.programme-strip--turquoise { --strip-accent: var(--atl-turquoise); }
.programme-strip--azure { --strip-accent: var(--atl-azure); }

.programme-strip--orange:hover { border-color: rgba(255, 102, 0, 0.22); }
.programme-strip--turquoise:hover { border-color: rgba(55, 190, 193, 0.24); }
.programme-strip--azure:hover { border-color: rgba(0, 158, 255, 0.22); }

.programme-strip__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(22, 17, 22, 0.12);
  user-select: none;
}

.programme-strip--orange .programme-strip__num { color: rgba(255, 102, 0, 0.22); }
.programme-strip--turquoise .programme-strip__num { color: rgba(55, 190, 193, 0.25); }
.programme-strip--azure .programme-strip__num { color: rgba(0, 158, 255, 0.22); }

.programme-strip__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.programme-strip__status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--strip-accent, var(--atl-violet));
}

.programme-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.programme-strip__body {
  font-size: 14px;
  line-height: 1.5;
  color: var(--atl-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.programme-strip__action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  color: var(--strip-accent, var(--atl-violet));
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(232, 220, 235, 0.95);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(25, 0, 33, 0.06);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s ease;
}

.programme-strip__action svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out-expo);
}

.programme-strip--orange .programme-strip__action {
  color: var(--atl-orange);
  background: rgba(255, 240, 230, 0.6);
  border-color: rgba(255, 102, 0, 0.12);
}

.programme-strip--turquoise .programme-strip__action {
  color: #1a9699;
  background: rgba(234, 251, 251, 0.7);
  border-color: rgba(55, 190, 193, 0.14);
}

.programme-strip--azure .programme-strip__action {
  color: var(--atl-azure);
  background: rgba(230, 246, 255, 0.7);
  border-color: rgba(0, 158, 255, 0.12);
}

.programme-strip__action:hover {
  transform: scale(1.08);
  color: #fff;
  background: var(--strip-accent, var(--atl-violet));
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(25, 0, 33, 0.14);
}

.programme-strip__action:hover svg {
  transform: translateX(2px);
}

/* --------------------------------------------------------------------------
   Resources — premium catalog
   -------------------------------------------------------------------------- */

.section--resources {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 55% at 100% 40%, rgba(55, 190, 193, 0.11) 0%, transparent 58%),
    radial-gradient(ellipse 50% 45% at 0% 90%, rgba(153, 0, 204, 0.04) 0%, transparent 52%),
    linear-gradient(180deg, #f6fdfd 0%, var(--atl-resources-bg) 48%, #f2fbfb 100%);
}

.resources__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 22%, rgba(55, 190, 193, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 10% 70%, rgba(0, 158, 255, 0.05) 0%, transparent 28%);
}

.resources__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 72px);
}

.resources__copy {
  flex: 0 1 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resources__label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a9699;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(55, 190, 193, 0.18);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(55, 190, 193, 0.1);
}

.resources__body {
  font-size: 17px;
  line-height: 1.58;
  color: var(--atl-muted);
  max-width: 460px;
}

.resources__catalog {
  flex: 1 1 600px;
  max-width: 640px;
  min-width: 0;
  width: 100%;
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: calc(var(--radius-lg) + 2px);
  box-shadow:
    0 2px 4px rgba(25, 0, 33, 0.02),
    0 24px 64px rgba(25, 0, 33, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.resources__catalog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(232, 220, 235, 0.85);
}

.resources__catalog-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--atl-muted);
}

.resources__catalog-count {
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a9699;
  background: rgba(55, 190, 193, 0.1);
  border: 1px solid rgba(55, 190, 193, 0.14);
  border-radius: 999px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.resource-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(232, 220, 235, 0.92);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--atl-ink);
  box-shadow: 0 2px 8px rgba(25, 0, 33, 0.03);
  transition:
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.resource-tile:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(55, 190, 193, 0.32);
  box-shadow:
    0 14px 36px rgba(55, 190, 193, 0.14),
    0 4px 12px rgba(25, 0, 33, 0.04);
}

.resource-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, #5fd4d6, var(--atl-turquoise));
  border-radius: 12px;
  box-shadow:
    0 8px 20px rgba(55, 190, 193, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.35s var(--ease-spring);
}

.resource-tile__icon svg {
  width: 18px;
  height: 18px;
}

.resource-tile__icon--violet {
  background: linear-gradient(135deg, #b012e0, var(--atl-violet));
  box-shadow: 0 8px 20px rgba(153, 0, 204, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.resource-tile__icon--azure {
  background: linear-gradient(135deg, #33b5ff, var(--atl-azure));
  box-shadow: 0 8px 20px rgba(0, 158, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.resource-tile__icon--orange {
  background: linear-gradient(135deg, #ff8533, var(--atl-orange));
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.resource-tile:hover .resource-tile__icon {
  transform: scale(1.06);
}

.resource-tile__label {
  flex: 1;
  min-width: 0;
  line-height: 1.25;
}

.resource-tile__arrow {
  display: flex;
  flex-shrink: 0;
  opacity: 0;
  color: var(--atl-turquoise);
  transform: translateX(-6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s var(--ease-out-expo);
}

.resource-tile__arrow svg {
  width: 16px;
  height: 16px;
}

.resource-tile:hover .resource-tile__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   Trust & Values — editorial bento + CTA panel
   -------------------------------------------------------------------------- */

.section--trust {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 48% at 8% 42%, rgba(153, 0, 204, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 92% 68%, rgba(255, 200, 0, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #fffefb 0%, var(--atl-warm-paper) 45%, #ffffff 100%);
}

.trust__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 25%, rgba(153, 0, 204, 0.05) 0%, transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(55, 190, 193, 0.06) 0%, transparent 26%);
}

.trust {
  padding-block: clamp(72px, 9vw, 108px);
}

.trust__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 40px);
}

.trust__main {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 36px);
  min-width: 0;
  min-height: 100%;
}

.trust__header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust__heading {
  display: flex;
  flex-direction: column;
  gap: 0.06em;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--atl-ink);
}

.trust__heading-line {
  display: block;
}

.trust__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: clamp(280px, 32vw, 360px);
}

.trust__pillar {
  --pillar-accent: var(--atl-violet);
  --pillar-tint: rgba(153, 0, 204, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 3vw, 28px);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 100%);
  border: 1px solid rgba(232, 220, 235, 0.9);
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(25, 0, 33, 0.02),
    0 16px 40px rgba(25, 0, 33, 0.06);
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.trust__pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pillar-accent), color-mix(in srgb, var(--pillar-accent) 55%, white));
}

.trust__pillar--orange {
  --pillar-accent: var(--atl-orange);
  --pillar-tint: rgba(255, 102, 0, 0.1);
}

.trust__pillar--turquoise {
  --pillar-accent: var(--atl-turquoise);
  --pillar-tint: rgba(55, 190, 193, 0.12);
}

.trust__pillar--azure {
  --pillar-accent: var(--atl-azure);
  --pillar-tint: rgba(0, 158, 255, 0.1);
}

.trust__pillar:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--pillar-accent) 22%, rgba(232, 220, 235, 0.9));
  box-shadow:
    0 20px 48px rgba(25, 0, 33, 0.1),
    0 4px 12px color-mix(in srgb, var(--pillar-accent) 12%, transparent);
}

.trust__pillar-mark {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--pillar-accent);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}

.trust__pillar-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pillar-accent);
}

.trust__pillar-body {
  position: relative;
  flex: 1;
  font-size: clamp(14px, 1.4vw, 15px);
  line-height: 1.58;
  color: var(--atl-muted);
}

.trust__cta {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: clamp(36px, 5vw, 44px);
  background: linear-gradient(162deg, #120318 0%, #1e0828 40%, var(--atl-plum) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-lg) + 4px);
  color: #fff;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(25, 0, 33, 0.12),
    0 32px 80px rgba(25, 0, 33, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.5s var(--ease-out-expo),
    box-shadow 0.5s ease;
}

.trust__cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 40px 96px rgba(25, 0, 33, 0.38),
    0 4px 8px rgba(25, 0, 33, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust__cta-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-color: rgba(153, 0, 204, 0.12);
  -webkit-mask-image: url("../assets/patterns/Pattern-4.png");
  mask-image: url("../assets/patterns/Pattern-4.png");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.trust__cta-glow {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 75%;
  height: 70%;
  background: radial-gradient(circle, rgba(153, 0, 204, 0.38) 0%, transparent 68%);
  pointer-events: none;
}

.trust__cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 22px);
  flex: 1;
  height: 100%;
}

.trust__cta-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: var(--atl-ink);
  background: var(--atl-yellow);
  border-radius: 999px;
}

.trust__cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 2.6vw, 2.125rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.trust__cta-body {
  flex: 1;
  font-size: 17px;
  line-height: 1.55;
  color: var(--atl-involved-body);
}

.trust__cta .btn {
  align-self: flex-start;
  margin-top: auto;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--atl-plum);
  color: var(--atl-involved-body);
  min-height: 300px;
  padding-block: 64px;
  overflow: hidden;
}

.site-footer__glow {
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(153, 0, 204, 0.2), transparent 60%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.site-footer__brand {
  flex: 0 1 430px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer__brand img {
  width: 290px;
  height: 42px;
  object-fit: contain;
}

.site-footer__brand p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

.site-footer__nav {
  display: flex;
  gap: 54px;
}

.site-footer__column h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.site-footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__column a {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__column a:hover {
  opacity: 1;
  transform: translateX(4px);
}

/* Stagger reveals in grids */
.pathway-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.pathway-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.pathway-grid .reveal:nth-child(3) { transition-delay: 0.19s; }
.pathway-grid .reveal:nth-child(4) { transition-delay: 0.26s; }

.programme-spotlight.reveal { transition-delay: 0.05s; }

.programme-stack .reveal:nth-child(1) { transition-delay: 0.12s; }
.programme-stack .reveal:nth-child(2) { transition-delay: 0.19s; }
.programme-stack .reveal:nth-child(3) { transition-delay: 0.26s; }

.trust__grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.trust__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.trust__grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.trust__grid .reveal:nth-child(4) { transition-delay: 0.2s; }

.resource-grid .resource-tile:nth-child(1) { transition-delay: 0.04s; }
.resource-grid .resource-tile:nth-child(2) { transition-delay: 0.08s; }
.resource-grid .resource-tile:nth-child(3) { transition-delay: 0.12s; }
.resource-grid .resource-tile:nth-child(4) { transition-delay: 0.16s; }
.resource-grid .resource-tile:nth-child(5) { transition-delay: 0.2s; }
.resource-grid .resource-tile:nth-child(6) { transition-delay: 0.24s; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
  .pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programme-showcase {
    grid-template-columns: 1fr;
  }

  .programme-spotlight {
    min-height: 360px;
  }

  .hero__inner {
    flex-direction: column;
    min-height: auto;
    align-items: stretch;
  }

  .hero__copy {
    flex: none;
    max-width: none;
  }

  .hero-visual {
    flex: none;
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }

  .hero-visual__collage {
    height: auto;
    min-height: 480px;
    padding-bottom: 16px;
  }

  .section-header--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .section-intro,
  .pathways__intro {
    max-width: none;
  }

  .section-heading--md {
    max-width: none;
  }

  .featured-banner__inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .featured-banner__aside {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
  }

  .featured-banner__emblem {
    width: 88px;
    height: 88px;
  }

  .featured-banner__emblem-core {
    width: 60px;
    height: 60px;
  }

  .featured-banner__emblem-core svg {
    width: 28px;
    height: 28px;
  }

  .resources__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .resources__copy {
    flex: none;
    max-width: none;
  }

  .resources__catalog {
    flex: none;
    width: 100%;
    max-width: none;
  }

  .trust__stage {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 28px);
  }

  .trust__grid {
    min-height: 0;
  }

  .trust__cta .btn {
    margin-top: 8px;
  }
}

@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--atl-line);
    padding: 28px var(--gutter);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease-out-expo), opacity 0.35s ease, visibility 0.35s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-toggle { display: flex; }
  .btn--header { display: none; }
  .site-footer__inner { flex-direction: column; }

  .pathway-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root { --header-height: 72px; }

  .pathway-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pathways .pathway-card {
    min-height: 0;
    padding: 24px 22px;
  }

  /* Keep icon + link pill on one row — same as desktop */
  .pathway-card__top {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 10px;
  }

  .pathway-card__icon {
    flex: 0 0 48px;
  }

  .pathway-card__link {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
  }

  .programme-strip {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 18px 16px;
    gap: 14px;
  }

  .programme-spotlight {
    min-height: 320px;
    padding: 28px 24px;
  }

  .programme-spotlight__body {
    max-width: none;
  }

  .trust__heading {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resources__catalog {
    padding: 20px 18px;
  }

  .resources__catalog-head {
    flex-wrap: wrap;
    gap: 10px;
  }

  .site-header__logo img {
    width: min(220px, 55vw);
    height: auto;
  }

  .hero__inner {
    gap: 32px;
  }

  .hero__heading {
    font-size: clamp(1.75rem, 7.5vw, 2.5rem);
  }

  .hero__heading-line {
    white-space: normal;
  }

  .hero__body {
    font-size: 16px;
    max-width: none;
  }

  .hero__trust {
    width: 100%;
    max-width: none;
  }

  .hero-visual {
    min-height: 0;
    padding-bottom: 0;
  }

  .hero-visual__collage {
    height: auto;
    min-height: 0;
    padding-bottom: 28px;
  }

  .hero-visual__photo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 32px auto 0;
    width: min(100%, 440px);
    border-width: 8px;
  }

  .hero-visual__photo img {
    height: auto;
    aspect-ratio: 440 / 300;
  }

  .hero-visual__note {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    margin: -28px 16px 0 auto;
    width: min(280px, calc(100% - 32px));
    min-height: 0;
  }

  .hero-visual__orb--yellow {
    top: 12px;
    right: 8px;
    width: 100px;
    height: 100px;
  }

  .hero-visual__orb--turquoise {
    top: auto;
    bottom: 120px;
    left: 4px;
    width: 88px;
    height: 88px;
  }

  .featured-banner {
    padding: 40px 0;
  }

  .featured-banner__panel {
    padding: 28px 24px;
  }

  .featured-banner__aside {
    flex-direction: column;
    align-items: stretch;
  }

  .featured-banner__emblem {
    display: none;
  }

  .site-footer__nav {
    flex-wrap: wrap;
    gap: 32px;
  }

  .site-footer__brand {
    flex: none;
    max-width: none;
  }

  .site-footer__brand img {
    width: min(260px, 70vw);
    height: auto;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 240px);
  }
}

@media (max-width: 540px) {
  .pathway-grid {
    gap: 14px;
  }

  .trust__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .programme-strip {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: start;
    gap: 12px;
  }

  .programme-strip__action {
    justify-self: start;
  }

  .programme-strip__body {
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
  }

  .trust__cta,
  .trust__pillar {
    padding: 24px 20px;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .featured-banner__aside .btn {
    width: 100%;
    min-width: 0;
  }

  .pathways__intro {
    padding-left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-visual {
    opacity: 1;
    transform: none;
  }

  .featured-banner__eyebrow-pulse,
  .featured-banner__emblem-ring {
    animation: none;
  }

  .featured-banner__panel:hover {
    transform: none;
  }
}
