/* ==========================================================================
   Outré. — Comprehensive Design System & Master Stylesheet
   Blueprint-faithful Re-creation of Reference Visual Direction
   Brand Colors:
     --color-1: #E0405A (Coral Rose)
     --color-2: #F99638 (Sunset Amber)
     --color-3: #FFCED4 (Soft Blush Pink)
     --color-4: #3E4780 (Deep Slate Indigo)
     --color-5: #299FAB (Vibrant Ocean Teal)
   ========================================================================== */

/* --- 1. DESIGN TOKENS & SYSTEM VARIABLES --- */
:root {
  /* Brand Core Accents */
  --color-1: #E0405A;
  --color-2: #F99638;
  --color-3: #FFCED4;
  --color-4: #3E4780;
  --color-5: #299FAB;

  /* Typography Fonts */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: var(--font-body);
  --font-hand: 'Caveat', cursive, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Geometry & Radii */
  --radius-full: 9999px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;

  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --------------------------------------------------------------------------
   DARK THEME (DEFAULT / BLUEPRINT SOURCE OF TRUTH)
   -------------------------------------------------------------------------- */
:root,
[data-theme="dark"] {
  --bg-canvas: #07080D;
  --bg-canvas-rgb: 7, 8, 13;
  --bg-canvas-subtle: #0D0F18;
  --bg-card: rgba(18, 20, 31, 0.85);
  --bg-card-solid: #12141F;
  --bg-card-globe: #0B0E19;
  --bg-card-pathway: linear-gradient(135deg, #171830 0%, #201836 100%);
  --bg-card-curriculum: #FFCED4;
  --bg-card-community: #FFFFFF;
  --bg-glass-nav: rgba(10, 11, 16, 0.78);
  --bg-pill-ghost: rgba(255, 255, 255, 0.05);

  --text-main: #FFFFFF;
  --text-sub: #B5B9D0;
  --text-muted: #7E84A3;
  --text-dark: #0F1016;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-hover: rgba(255, 255, 255, 0.22);
  --border-curriculum: rgba(0, 0, 0, 0.06);

  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-bento-hero: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-pill-cta: 0 10px 30px rgba(224, 64, 90, 0.38);
  --shadow-popover: 0 24px 60px rgba(0, 0, 0, 0.7);

  --glow-ambient-magenta: rgba(224, 64, 90, 0.22);
  --glow-ambient-cyan: rgba(41, 159, 171, 0.18);
  --glow-ambient-purple: rgba(62, 71, 128, 0.28);
}

/* --------------------------------------------------------------------------
   LIGHT THEME (POLISHED MONOCHROME ADAPTATION WITH SAME SPACING & HIERARCHY)
   -------------------------------------------------------------------------- */
[data-theme="light"] {
  --bg-canvas: #F7F7FA;
  --bg-canvas-rgb: 247, 247, 250;
  --bg-canvas-subtle: #EBEBF2;
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-card-solid: #FFFFFF;
  --bg-card-globe: #FFFFFF;
  --bg-card-pathway: linear-gradient(135deg, #2D3360 0%, #1E2245 100%);
  --bg-card-curriculum: #FFCED4;
  --bg-card-community: #FFFFFF;
  --bg-glass-nav: rgba(255, 255, 255, 0.85);
  --bg-pill-ghost: rgba(0, 0, 0, 0.04);

  --text-main: #0B0C12;
  --text-sub: #494D66;
  --text-muted: #727794;
  --text-dark: #0F1016;

  --border-subtle: rgba(15, 16, 22, 0.08);
  --border-medium: rgba(15, 16, 22, 0.14);
  --border-hover: rgba(15, 16, 22, 0.24);
  --border-curriculum: rgba(0, 0, 0, 0.08);

  --shadow-card: 0 16px 36px rgba(20, 24, 44, 0.06);
  --shadow-bento-hero: 0 20px 48px rgba(20, 24, 44, 0.08);
  --shadow-pill-cta: 0 10px 28px rgba(224, 64, 90, 0.32);
  --shadow-popover: 0 24px 60px rgba(15, 16, 22, 0.15);

  --glow-ambient-magenta: rgba(224, 64, 90, 0.08);
  --glow-ambient-cyan: rgba(41, 159, 171, 0.07);
  --glow-ambient-purple: rgba(62, 71, 128, 0.08);
}

/* Smooth 350ms theme transition across colors, surfaces and shadows */
html.theme-transition,
html.theme-transition *,
html.theme-transition *::before,
html.theme-transition *::after {
  transition: background-color 350ms var(--ease-spring),
              border-color 350ms var(--ease-spring),
              color 350ms var(--ease-spring),
              box-shadow 350ms var(--ease-spring),
              fill 350ms var(--ease-spring),
              stroke 350ms var(--ease-spring) !important;
}

/* --- 2. BASE RESET & SCAFFOLDING --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.agency-body {
  background-color: var(--bg-canvas);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

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

button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

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

/* Master canvas shell container (12-column system, 64px page margins) */
.master-canvas-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px 80px 64px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .master-canvas-shell {
    padding: 0 32px 60px 32px;
  }
}

@media (max-width: 768px) {
  .master-canvas-shell {
    padding: 0 16px 50px 16px;
  }
}

/* --- 3. SECTION 1: FLOATING NAVIGATION BAR (64px margin alignment) --- */
.navbar-wrapper {
  left: 0;
  padding: 20px 64px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: padding 300ms ease;
}

.navbar-wrapper.is-scrolled {
  padding: 12px 64px;
}

@media (max-width: 1024px) {
  .navbar-wrapper {
    padding: 16px 32px;
  }
  .navbar-wrapper.is-scrolled {
    padding: 10px 32px;
  }
}

@media (max-width: 768px) {
  .navbar-wrapper {
    padding: 12px 16px;
  }
  .navbar-wrapper.is-scrolled {
    padding: 10px 16px;
  }
}

.agency-navbar {
  align-items: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--bg-glass-nav);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1360px;
  padding: 10px 18px 10px 24px;
  position: relative;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.navbar-wrapper.is-scrolled .agency-navbar {
  border-color: var(--border-medium);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

/* Brand Logo */
.brand-logo {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  transition: transform 250ms var(--ease-spring);
}

.brand-logo-img.logo-dark-theme {
  display: block;
}

.brand-logo-img.logo-light-theme {
  display: none;
}

[data-theme="light"] .brand-logo-img.logo-dark-theme {
  display: none;
}

[data-theme="light"] .brand-logo-img.logo-light-theme {
  display: block;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.02);
}

/* Nav Menu */
.nav-menu {
  align-items: center;
  display: flex;
  gap: 32px;
}

.nav-item {
  color: var(--text-sub);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  transition: color 250ms ease;
}

.nav-item:hover {
  color: var(--text-main);
}

.nav-item::after {
  background: linear-gradient(90deg, var(--color-1), var(--color-2));
  border-radius: 2px;
  bottom: -4px;
  content: '';
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease, opacity 250ms ease;
  width: 100%;
}

.nav-item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Nav Actions */
.nav-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

/* Icon Buttons (Search & Theme) */
.nav-icon-btn,
.theme-toggle-btn {
  align-items: center;
  background: var(--bg-pill-ghost);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-main);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  position: relative;
  transition: border-color 250ms ease, background 250ms ease, transform 250ms var(--ease-spring);
  width: 40px;
}

.nav-icon-btn:hover,
.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
  transform: scale(1.05);
}

[data-theme="light"] .nav-icon-btn:hover,
[data-theme="light"] .theme-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

.nav-search-svg {
  height: 18px;
  width: 18px;
}

/* Animated Sun <-> Moon Toggle */
.theme-icon-slot {
  height: 20px;
  position: relative;
  width: 20px;
}

.theme-svg {
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  transition: opacity 350ms var(--ease-spring), transform 400ms var(--ease-bounce);
  width: 20px;
}

/* In dark mode, sun is ready to switch to light */
:root .sun-svg,
[data-theme="dark"] .sun-svg {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

:root .moon-svg,
[data-theme="dark"] .moon-svg {
  opacity: 0;
  pointer-events: none;
  transform: rotate(90deg) scale(0.6);
}

/* In light mode, moon is active */
[data-theme="light"] .sun-svg {
  opacity: 0;
  pointer-events: none;
  transform: rotate(-90deg) scale(0.6);
}

[data-theme="light"] .moon-svg {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Pill Buttons */
.pill-btn {
  align-items: center;
  border-radius: var(--radius-full);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  letter-spacing: -0.01em;
  padding: 10px 22px;
  position: relative;
  transition: all 250ms var(--ease-spring);
  white-space: nowrap;
}

.pill-btn-login {
  background: transparent;
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  padding: 9px 20px;
}

.pill-btn-login:hover {
  background: var(--bg-pill-ghost);
  border-color: var(--border-hover);
}

/* Primary Coral-Sunset Gradient CTA */
.pill-btn-primary {
  background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
  border: none;
  box-shadow: var(--shadow-pill-cta);
  color: #FFFFFF;
}

.pill-btn-primary:hover {
  box-shadow: 0 12px 34px rgba(224, 64, 90, 0.5);
  filter: brightness(1.06);
  transform: translateY(-1.5px);
}

.pill-btn-primary:active {
  transform: translateY(0);
}

.cta-arrow {
  display: inline-block;
  font-size: 16px;
  transition: transform 250ms ease;
}

.pill-btn:hover .cta-arrow {
  transform: translateX(3px);
}

/* Mobile Hamburger Trigger */
.mobile-menu-trigger {
  align-items: center;
  display: none;
  flex-direction: column;
  gap: 6px;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.mobile-menu-trigger .bar {
  background: var(--text-main);
  border-radius: 2px;
  height: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
  width: 22px;
}

@media (max-width: 980px) {
  .nav-menu {
    display: none;
  }
  .mobile-menu-trigger {
    display: flex;
  }
}

@media (max-width: 640px) {
  .agency-navbar {
    padding: 8px 12px;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-icon-btn,
  .theme-toggle-btn {
    height: 36px;
    width: 36px;
  }
  .pill-btn-primary.nav-cta,
  .pill-btn-primary.nav-enroll-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .navbar-wrapper {
    padding: 8px 10px !important;
  }
  .agency-navbar {
    padding: 6px 10px !important;
  }
  .brand-logo-img {
    height: 22px !important;
  }
  #searchTriggerBtn,
  .agency-navbar .nav-icon-btn.search-trigger {
    display: none !important;
  }
  .nav-actions {
    gap: 6px;
  }
  .theme-toggle-btn {
    height: 32px;
    width: 32px;
  }
  .pill-btn-primary.nav-cta,
  .pill-btn-primary.nav-enroll-btn {
    padding: 6px 11px;
    font-size: 11.5px;
    gap: 4px;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  inset: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  transition: opacity 300ms ease, visibility 300ms ease;
  visibility: hidden;
  z-index: 1000;
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.drawer-backdrop {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  inset: 0;
  position: absolute;
}

.drawer-content {
  background: var(--bg-card-solid);
  border-left: 1px solid var(--border-medium);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 340px;
  padding: 28px 24px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 350ms var(--ease-spring);
  width: 85%;
}

.mobile-drawer.is-open .drawer-content {
  transform: translateX(0);
}

.drawer-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}

.drawer-close {
  color: var(--text-main);
  font-size: 22px;
  padding: 8px;
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: auto;
}

.drawer-link {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  transition: color 200ms ease;
}

.drawer-link:hover {
  color: var(--color-1);
}

.drawer-foot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}

.drawer-theme-row {
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
}

.mobile-theme-btn {
  border-radius: var(--radius-full);
  font-size: 13px;
  padding: 6px 14px;
  width: auto;
}

/* Command Palette Search Modal */
.search-modal-overlay {
  align-items: flex-start;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 90px 20px 20px;
  pointer-events: none;
  position: fixed;
  transition: opacity 250ms ease, visibility 250ms ease;
  visibility: hidden;
  z-index: 1200;
}

.search-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.search-modal-backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  inset: 0;
  position: absolute;
}

.search-palette-window {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-popover);
  max-width: 620px;
  overflow: hidden;
  position: relative;
  transform: translateY(-15px) scale(0.98);
  transition: transform 250ms var(--ease-spring);
  width: 100%;
  z-index: 2;
}

.search-modal-overlay.is-open .search-palette-window {
  transform: translateY(0) scale(1);
}

.search-input-header {
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  gap: 12px;
  padding: 18px 22px;
}

.search-icon-inside {
  color: var(--text-muted);
  height: 20px;
  width: 20px;
}

.search-text-input {
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  width: 100%;
}

.search-text-input::placeholder {
  color: var(--text-muted);
}

.search-close-key {
  background: var(--bg-pill-ghost);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 8px;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  max-height: 380px;
  overflow-y: auto;
  padding: 12px;
}

.search-quick-category {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 8px 12px 4px;
  text-transform: uppercase;
}

.search-hit-item {
  align-items: center;
  border-radius: var(--radius-md);
  display: flex;
  gap: 14px;
  padding: 12px;
  transition: background 150ms ease;
}

.search-hit-item:hover {
  background: var(--bg-pill-ghost);
}

.hit-icon {
  font-size: 20px;
}

.hit-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hit-title {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.hit-sub {
  color: var(--text-muted);
  font-size: 12px;
}

.hit-arrow {
  color: var(--text-muted);
  font-size: 16px;
}

/* =========================================================================
   SECTION 2: HERO FIRST SECTION (EXACT REFERENCE BLUEPRINT RECREATION)
   ========================================================================= */
.hero-first-section {
  padding-top: 36px;
  padding-bottom: 40px;
  position: relative;
}

/* Ambient Radial Background Glows */
.hero-ambient-glow {
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.glow-magenta {
  background: var(--glow-ambient-magenta);
  height: 480px;
  left: 20%;
  top: 10%;
  width: 480px;
}

.glow-cyan {
  background: var(--glow-ambient-cyan);
  bottom: 10%;
  height: 420px;
  right: 35%;
  width: 420px;
}

/* =========================================================================
   SECTION 2: HERO BENTO GRID (PRODUCTION-READY EDITORIAL BLUEPRINT)
   ========================================================================= */
.hero-first-section {
  overflow: hidden;
  padding: 10px 0 24px;
  position: relative;
}

/* Master Asymmetric 12-Column Editorial Bento Grid */
.hero-master-bento-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: 340px 1.15fr 1.35fr;
  grid-template-rows: auto auto;
  gap: 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .hero-master-bento-grid {
    grid-template-columns: 310px 1.05fr 1.25fr;
    gap: 20px;
  }
}

/* =========================================================================
   COLUMN 1: TALL BLUSH PINK CARD (#FFCED4)
   ========================================================================= */
.bento-tall-card {
  background: var(--color-3);
  border: 1px solid rgba(224, 64, 90, 0.16);
  border-radius: 36px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  color: #1A1A24;
  display: flex;
  flex-direction: column;
  grid-column: 1;
  grid-row: 1 / span 2;
  justify-content: space-between;
  padding: 32px;
  position: relative;
  transition: transform 280ms var(--ease-spring), box-shadow 280ms var(--ease-spring);
}

.bento-tall-card:hover {
  box-shadow: 0 24px 54px rgba(224, 64, 90, 0.22);
  transform: translateY(-4px);
}

.tall-card-eyebrow {
  color: #151620;
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-divider {
  color: #151620;
  display: inline-block;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  margin-top: 6px;
}

/* 3D Outré Ring Stage */
.tall-card-torus-stage {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto 0;
  padding: 18px 0;
  position: relative;
}

.torus-render-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transform: perspective(900px) rotateX(var(--torus-tilt-x, 0deg)) rotateY(var(--torus-tilt-y, 0deg));
  transition: transform 120ms ease-out;
  width: 100%;
}

/* Ambient soft studio bloom behind 3D ring */
.torus-render-wrap::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, rgba(224, 64, 90, 0.16) 45%, transparent 72%);
  border-radius: 50%;
  content: '';
  filter: blur(22px);
  height: 240px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 240px;
  z-index: 1;
}

.tall-torus-img {
  animation: floatHeroRing 6s ease-in-out infinite;
  display: block;
  filter: drop-shadow(0 18px 32px rgba(224, 64, 90, 0.24));
  height: auto;
  max-width: 300px;
  position: relative;
  transition: transform 250ms ease-out;
  width: 100%;
  z-index: 2;
}

@keyframes floatHeroRing {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0.8deg);
  }
}

.torus-floor-shadow {
  animation: floorShadowPulse 6s ease-in-out infinite;
  background: radial-gradient(ellipse at center, rgba(175, 40, 70, 0.28) 0%, rgba(175, 40, 70, 0.1) 48%, transparent 75%);
  border-radius: 50%;
  filter: blur(6px);
  height: 20px;
  margin-top: -14px;
  position: relative;
  width: 215px;
  z-index: 1;
}

@keyframes floorShadowPulse {
  0%, 100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 0.52;
    transform: scale(0.86);
  }
}

.tall-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tall-card-desc {
  color: #2D2E3E;
  font-size: 13.5px;
  font-weight: 450;
  line-height: 1.55;
}

.tall-card-cta-btn {
  align-items: center;
  align-self: flex-start;
  background: #0A0B10;
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
  letter-spacing: -0.01em;
  padding: 12px 24px;
  transition: all 250ms ease;
}

.tall-card-cta-btn:hover {
  background: #1C1E2B;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.pill-cta-arrow {
  display: inline-block;
  font-size: 16px;
  transition: transform 200ms ease;
}

.tall-card-cta-btn:hover .pill-cta-arrow {
  transform: translateX(3px);
}

/* =========================================================================
   CENTER HERO: HEADLINE BLOCK
   ========================================================================= */
.hero-headline-block {
  display: flex;
  flex-direction: column;
  grid-column: 2;
  grid-row: 1;
  justify-content: center;
  padding: 8px 0 12px;
  position: relative;
}

/* Handwritten Cursive Annotation & Curved Arrow */
.handwritten-pointer-wrap {
  animation: floatHandwritten 4.5s ease-in-out infinite;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 14%;
  width: 140px;
  z-index: 5;
}

@keyframes floatHandwritten {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.handwritten-annotation-img {
  height: auto;
  width: 100%;
}

[data-theme="light"] .handwritten-annotation-img {
  filter: invert(1) brightness(0.2) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.hero-headline-display {
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.hero-h-line {
  display: block;
}

.hero-dot-coral {
  color: var(--color-1);
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(224, 64, 90, 0.45));
}

.hero-subtext {
  color: var(--text-sub);
  font-size: 17.5px;
  font-weight: 450;
  line-height: 1.45;
  margin-bottom: 20px;
  margin-top: 18px;
}

.hero-pill-badge-row {
  display: flex;
  margin-top: 4px;
}

/* Master Pill: "Become Outré." */
.hero-pill-badge-coral {
  background: linear-gradient(135deg, var(--color-1) 0%, #FF2654 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 32px rgba(224, 64, 90, 0.45);
  color: #FFFFFF;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  padding: 8px 28px 10px;
  position: relative;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.hero-pill-badge-coral:hover {
  box-shadow: 0 14px 40px rgba(224, 64, 90, 0.6);
  transform: translateY(-2px);
}

/* =========================================================================
   RIGHT LEARNING PATHWAY CARD (Electric Indigo/Purple #3E4780)
   ========================================================================= */
.bento-card-pathway-purple {
  background: linear-gradient(145deg, #2D356A 0%, #202652 45%, #15183A 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  box-shadow: 0 20px 48px rgba(62, 71, 128, 0.35);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  grid-column: 3;
  grid-row: 1;
  justify-content: space-between;
  padding: 32px;
  position: relative;
  transition: transform 280ms var(--ease-spring), box-shadow 280ms ease;
}

.bento-card-pathway-purple:hover {
  box-shadow: 0 24px 56px rgba(62, 71, 128, 0.5);
  transform: translateY(-4px);
}

.pathway-header-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.capsule-sub-tag {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.corner-circle-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #FFFFFF;
  display: inline-flex;
  font-size: 15px;
  height: 34px;
  justify-content: center;
  transition: transform 200ms ease, background 200ms ease;
  width: 34px;
}

.bento-card-pathway-purple:hover .corner-circle-arrow {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.08) translate(1px, -1px);
}

.pathway-titles {
  margin-bottom: 18px;
}

.pathway-headline {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.1vw, 28px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 6px;
}

.pathway-subtext {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  line-height: 1.45;
}

.pathway-body-split {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 1.35fr 1fr;
}

/* Feature Rows: Equal-Height & Identical Padding */
.pathway-feature-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pathway-feature-row {
  align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  gap: 12px;
  height: 44px;
  padding: 0 16px;
  transition: background 200ms ease, border-color 200ms ease;
}

.pathway-feature-row:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon-badge {
  align-items: center;
  border-radius: 50%;
  color: #FFFFFF;
  display: inline-flex;
  flex-shrink: 0;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.feature-icon-badge svg {
  height: 13px;
  width: 13px;
}

.feature-icon-badge.icon-amber {
  background: var(--color-2);
}

.feature-icon-badge.icon-purple {
  background: var(--color-4);
}

.feature-icon-badge.icon-teal {
  background: var(--color-5);
}

.feature-row-label {
  color: #FFFFFF;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
}

/* Orbital Radar Visual & Cursive Handwritten Note */
.pathway-orbital-col {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.orbital-radar-widget {
  align-items: center;
  display: flex;
  height: 105px;
  justify-content: center;
  position: relative;
  width: 105px;
}

.orbital-ring {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.ring-outer {
  animation: radarPulse 3.5s ease-out infinite;
  height: 105px;
  width: 105px;
}

.ring-mid {
  animation: radarPulse 3.5s ease-out 1.75s infinite;
  height: 75px;
  width: 75px;
}

@keyframes radarPulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 0.1; }
}

.orbital-core-squircle {
  align-items: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE6EE 100%);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.9);
  display: inline-flex;
  height: 52px;
  justify-content: center;
  position: relative;
  width: 52px;
  z-index: 2;
}

.orbital-star-icon {
  color: var(--color-4);
  font-size: 24px;
  line-height: 1;
}

.pathway-handwritten-note {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
  position: relative;
}

.handwritten-arrow-svg {
  height: 24px;
  width: 24px;
}

.handwritten-text-cursive {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-hand);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

/* =========================================================================
   BOTTOM COMBINED COMMUNITY CARD (Soft Sky Blue #D5E8F8)
   Combines "All around the globe" and "40K+ Active Learners"
   ========================================================================= */
.bento-card-community-combined {
  align-items: center;
  background: #D5E8F8;
  border-radius: 36px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
  color: #0F1016;
  display: grid;
  gap: 28px;
  grid-column: 2 / span 2;
  grid-row: 2;
  grid-template-columns: 1fr 1.35fr;
  min-height: 240px;
  overflow: hidden;
  padding: 32px 36px;
  position: relative;
  transition: transform 280ms var(--ease-spring), box-shadow 280ms ease;
}

.bento-card-community-combined:hover {
  box-shadow: 0 24px 54px rgba(41, 159, 171, 0.25);
  transform: translateY(-4px);
}

.community-combined-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.community-combined-title {
  color: #0B0D17;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.community-combined-sub {
  color: #383F54;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 24px;
}

/* Six Unique Diverse Avatars Stack + +12K Badge */
.community-avatars-row {
  align-items: center;
  display: flex;
  padding-left: 4px;
}

.avatar-circle-item {
  border: 2.5px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  height: 44px;
  margin-left: -10px;
  overflow: hidden;
  position: relative;
  transition: transform 200ms ease, z-index 200ms ease;
  width: 44px;
}

.avatar-circle-item:first-child {
  margin-left: 0;
}

.avatar-circle-item:hover {
  transform: translateY(-4px) scale(1.12);
  z-index: 10;
}

.avatar-circle-item .avatar-photo {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.avatar-circle-item.avatar-plus-pill {
  align-items: center;
  background: var(--color-3);
  color: var(--color-1);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
}

.community-combined-right {
  display: flex;
  height: 100%;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.community-globe-frame {
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  max-height: 230px;
  overflow: hidden;
  width: 100%;
}

.community-globe-artwork {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

/* =========================================================================
   SUB-HERO EDITORIAL FOOTER STRIP
   ========================================================================= */
.hero-editorial-footer-bar {
  align-items: center;
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding: 0 6px;
}

.editorial-phrase {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.editorial-line {
  background: var(--border-subtle);
  flex: 1;
  height: 1px;
}

.editorial-brand {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* =========================================================================
   HERO FIRST SECTION RESPONSIVE SYSTEM (TABLET & MOBILE)
   ========================================================================= */
@media (max-width: 1040px) {
  .hero-master-bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
  }
  .hero-headline-block {
    grid-column: 1;
    grid-row: 1;
  }
  .bento-card-pathway-purple {
    grid-column: 2;
    grid-row: 1;
  }
  .bento-tall-card {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 24px;
    padding: 32px;
  }
  .tall-card-torus-stage {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    height: auto;
  }
  .tall-card-eyebrow {
    grid-column: 1;
    grid-row: 1;
  }
  .tall-card-bottom {
    grid-column: 1;
    grid-row: 2;
  }
  .bento-card-community-combined {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (max-width: 768px) {
  .hero-master-bento-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
  }

  /* 1. Primary Headline & CTA First */
  .hero-headline-block {
    order: 1 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    padding: 12px 4px 6px !important;
    position: relative;
    box-sizing: border-box;
  }

  .hero-headline-display {
    font-size: clamp(36px, 9.5vw, 50px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.035em !important;
  }

  .handwritten-pointer-wrap {
    position: absolute !important;
    top: 10px !important;
    right: 8px !important;
    width: 95px !important;
    animation: floatHandwritten 4.5s ease-in-out infinite;
  }

  .hero-subtext {
    font-size: 16px !important;
    line-height: 1.45 !important;
    margin-top: 14px !important;
    margin-bottom: 18px !important;
    max-width: 100% !important;
  }

  .hero-pill-badge-coral {
    padding: 12px 28px !important;
    font-size: 15px !important;
  }

  /* 2. Bento Tall Card (Blush Pink with 3D Ring) */
  .bento-tall-card {
    order: 2 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 28px 22px !important;
    border-radius: 28px !important;
    box-sizing: border-box !important;
  }

  .tall-card-torus-stage {
    margin: 20px 0 24px !important;
    height: 240px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .torus-render-wrap {
    max-width: 220px !important;
  }

  .tall-card-desc {
    font-size: 14.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }

  .tall-card-cta-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 13px 20px !important;
    font-size: 14.5px !important;
    box-sizing: border-box !important;
  }

  /* 3. Deep Royal Indigo Pathway Card */
  .bento-card-pathway-purple {
    order: 3 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    padding: 28px 22px !important;
    border-radius: 28px !important;
    box-sizing: border-box !important;
  }

  .pathway-headline {
    font-size: 22px !important;
  }

  .pathway-subtext {
    font-size: 13.5px !important;
  }

  .pathway-body-split {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .pathway-orbital-col {
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    padding: 14px 10px 4px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .pathway-handwritten-note {
    margin-top: 0 !important;
    text-align: left !important;
  }

  /* 4. Soft Sky Blue Community Combined Card */
  .bento-card-community-combined {
    order: 4 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 28px 22px !important;
    border-radius: 28px !important;
    gap: 24px !important;
    box-sizing: border-box !important;
  }

  .community-combined-title {
    font-size: 28px !important;
    line-height: 1.15 !important;
  }

  .break-desktop {
    display: none !important;
  }

  .community-combined-sub {
    font-size: 14px !important;
    margin-bottom: 18px !important;
  }

  .community-avatars-row {
    flex-wrap: wrap !important;
    gap: 4px !important;
  }

  .avatar-circle-item {
    height: 38px !important;
    width: 38px !important;
    margin-left: -8px !important;
  }

  .community-combined-right {
    width: 100% !important;
    justify-content: center !important;
  }

  .community-globe-frame {
    width: 100% !important;
    max-height: 220px !important;
    border-radius: 20px !important;
  }

  .community-globe-artwork {
    width: 100% !important;
    height: 220px !important;
  }

  /* Sub-Hero Editorial Bar */
  .hero-editorial-footer-bar {
    gap: 12px !important;
    margin-top: 24px !important;
  }

  .editorial-phrase {
    font-size: 9.5px !important;
    letter-spacing: 0.1em !important;
  }

  .editorial-brand {
    font-size: 9.5px !important;
    letter-spacing: 0.14em !important;
  }
}

@media (max-width: 480px) {
  .hero-headline-display {
    font-size: 34px !important;
  }
  .handwritten-pointer-wrap {
    width: 80px !important;
    top: -10px !important;
    right: 0 !important;
  }
  .bento-tall-card,
  .bento-card-pathway-purple,
  .bento-card-community-combined {
    padding: 22px 18px !important;
    border-radius: 24px !important;
  }
  .tall-card-torus-stage {
    height: 190px !important;
  }
  .torus-render-wrap {
    max-width: 175px !important;
  }
  .pathway-feature-row {
    height: 40px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
  }
}

/* =========================================================================
   SECTION 3: IMPACT & METRICS SECTION (EXACT REFERENCE RECREATION)
   ========================================================================= */
.metrics-section {
  padding: 30px 0 40px;
  position: relative;
}

.metrics-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .metrics-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .metrics-bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.metric-bento-card {
  align-items: stretch;
  background: #0E1019;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: space-between;
  min-height: 205px;
  overflow: hidden;
  padding: 26px 20px 22px 26px;
  position: relative;
  transition: transform 280ms var(--ease-spring), border-color 280ms ease, box-shadow 280ms ease;
}

[data-theme="light"] .metric-bento-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 36px rgba(20, 24, 44, 0.06);
}

.metric-bento-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  transform: translateY(-4px);
}

/* Left Content */
.metric-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  max-width: 58%;
  position: relative;
  z-index: 2;
}

.metric-sup {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

[data-theme="light"] .metric-sup {
  color: #727794;
}

.metric-val-wrap {
  margin-bottom: 6px;
}

.metric-val {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.2vw, 46px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.val-coral {
  color: var(--color-1);
}

.val-amber {
  color: var(--color-2);
}

.val-purple {
  color: #A288FD;
}

[data-theme="light"] .val-purple {
  color: #6347EA;
}

.val-gradient {
  background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-title {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
}

.metric-desc {
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.45;
}

/* Right Visual with Circular Backdrop and Person Illustration */
.metric-card-visual {
  align-items: flex-end;
  bottom: 0;
  display: flex;
  height: 100%;
  justify-content: flex-end;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  z-index: 1;
}

/* Glowing Circular Gradient Disc */
.metric-disc {
  border-radius: 50%;
  bottom: 12px;
  height: 130px;
  position: absolute;
  right: 14px;
  width: 130px;
  z-index: 1;
  transition: transform 300ms var(--ease-spring);
}

.metric-bento-card:hover .metric-disc {
  transform: scale(1.05);
}

.disc-coral {
  background: radial-gradient(circle at 35% 35%, #FF7043 0%, #D82848 70%, #801224 100%);
  box-shadow: 0 10px 30px rgba(224, 64, 90, 0.35);
}

.disc-amber {
  background: radial-gradient(circle at 35% 35%, #F99638 0%, #B84D12 70%, #5E2005 100%);
  box-shadow: 0 10px 30px rgba(249, 150, 56, 0.35);
}

.disc-purple {
  background: radial-gradient(circle at 35% 35%, #8B6BFF 0%, #462A9B 70%, #20104A 100%);
  box-shadow: 0 10px 30px rgba(110, 63, 227, 0.4);
}

.disc-placement {
  background: radial-gradient(circle at 35% 35%, #E0405A 0%, #9E1B32 70%, #4A0815 100%);
  box-shadow: 0 10px 30px rgba(224, 64, 90, 0.35);
}

/* Floating Orb / Dot */
.metric-floating-orb {
  border-radius: 50%;
  height: 14px;
  position: absolute;
  width: 14px;
  z-index: 3;
  animation: orbFloat 4s ease-in-out infinite;
}

.orb-coral {
  background: #FF3B62;
  box-shadow: 0 0 12px rgba(255, 59, 98, 0.8);
  right: 18px;
  top: 32px;
}

.orb-amber {
  background: #F99638;
  box-shadow: 0 0 12px rgba(249, 150, 56, 0.8);
  right: 122px;
  top: 48px;
}

.orb-purple {
  background: #B19BFF;
  box-shadow: 0 0 12px rgba(177, 155, 255, 0.8);
  right: 125px;
  top: 36px;
}

.orb-placement {
  background: #FF5A78;
  box-shadow: 0 0 12px rgba(255, 90, 120, 0.8);
  right: 128px;
  top: 42px;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Person Cutout Artwork */
.metric-person-img {
  bottom: 0;
  display: block;
  height: 100%;
  max-height: 195px;
  object-fit: contain;
  object-position: bottom right;
  position: absolute;
  right: 8px;
  transition: transform 280ms var(--ease-spring);
  width: auto;
  z-index: 2;
}

.metric-bento-card:hover .metric-person-img {
  transform: scale(1.03) translateY(-2px);
}

/* =========================================================================
   SECTION 4: ASYMMETRIC EDITORIAL SPLIT ("WHAT WE DO")
   ========================================================================= */
.what-we-do-section {
  padding: 60px 0 70px;
  position: relative;
}

.manifesto-editorial-row {
  align-items: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: 290px 1fr;
}

@media (max-width: 1240px) {
  .manifesto-editorial-row {
    grid-template-columns: 260px 1fr;
    gap: 16px;
  }
}

@media (max-width: 960px) {
  .manifesto-editorial-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* --- Left Manifesto Lead Column --- */
.manifesto-lead-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 12px 8px 0;
}

.manifesto-eyebrow {
  color: var(--color-1);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.manifesto-headline {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: clamp(34px, 2.9vw, 46px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 24px;
}

.editorial-highlight {
  background: linear-gradient(135deg, #FF4565 15%, #F99638 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.manifesto-body {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.62;
  margin-bottom: 34px;
  max-width: 285px;
}

@media (max-width: 960px) {
  .manifesto-body {
    max-width: 600px;
  }
}

.manifesto-action {
  align-items: center;
  display: flex;
}

.manifesto-cta-pill {
  align-items: center;
  background: linear-gradient(90deg, #E0405A 0%, #F99638 100%);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(224, 64, 90, 0.45), 0 0 40px rgba(249, 150, 56, 0.2);
  color: #FFFFFF;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
  padding: 13px 26px;
  text-decoration: none;
  transition: all 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.manifesto-cta-pill:hover {
  box-shadow: 0 14px 34px rgba(224, 64, 90, 0.65), 0 0 50px rgba(249, 150, 56, 0.3);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.manifesto-cta-pill .cta-arrow {
  font-size: 16px;
  transition: transform 200ms ease;
}

.manifesto-cta-pill:hover .cta-arrow {
  transform: translateX(4px);
}

/* --- Right Cards Grid (4 Columns) --- */
.manifesto-cards-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1240px) {
  .manifesto-cards-grid {
    gap: 14px;
  }
}

@media (max-width: 960px) {
  .manifesto-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .manifesto-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* --- Individual Visual Card --- */
.manifesto-visual-card {
  background: #0E1019;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.manifesto-visual-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.6);
  transform: translateY(-5px);
}

[data-theme="light"] .manifesto-visual-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .manifesto-visual-card:hover {
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

/* Top Visual Header & Image */
.card-visual-header {
  background: #000000;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.card-tag {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  left: 18px;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
  top: 18px;
  z-index: 3;
}

[data-theme="light"] .card-tag {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.card-artwork-img {
  display: block;
  height: 230px;
  object-fit: cover;
  object-position: center top;
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.manifesto-visual-card:hover .card-artwork-img {
  transform: scale(1.04);
}

.card-img-fade {
  background: linear-gradient(to bottom, transparent 65%, #0E1019 100%);
  bottom: 0;
  height: 42px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 2;
}

[data-theme="light"] .card-img-fade {
  background: linear-gradient(to bottom, transparent 60%, #FFFFFF 100%);
}

/* Card Body */
.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 20px 20px;
}

.card-text-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-title {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}

[data-theme="light"] .card-title {
  color: #11131A;
}

.card-desc {
  color: #8E94A8;
  font-size: 12.5px;
  line-height: 1.48;
  margin: 0;
}

[data-theme="light"] .card-desc {
  color: #585F75;
}

/* Bottom Action Row & Circular Buttons */
.card-action-row {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.card-circle-btn {
  align-items: center;
  background: #080A10;
  border-radius: 50%;
  color: #FFFFFF;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  text-decoration: none;
  transition: all 260ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 38px;
}

/* Card Accent Borders */
.card-accent-amber .card-circle-btn {
  border: 1.5px solid rgba(249, 150, 56, 0.55);
}

.card-accent-purple .card-circle-btn {
  border: 1.5px solid rgba(168, 85, 247, 0.55);
}

.card-accent-coral .card-circle-btn {
  border: 1.5px solid rgba(244, 63, 94, 0.55);
}

/* Hover Accent Buttons */
.manifesto-visual-card.card-accent-amber:hover .card-circle-btn {
  background: #F99638;
  border-color: #F99638;
  box-shadow: 0 0 18px rgba(249, 150, 56, 0.55);
}

.manifesto-visual-card.card-accent-purple:hover .card-circle-btn {
  background: #8B6BFF;
  border-color: #8B6BFF;
  box-shadow: 0 0 18px rgba(139, 107, 255, 0.55);
}

.manifesto-visual-card.card-accent-coral:hover .card-circle-btn {
  background: #E0405A;
  border-color: #E0405A;
  box-shadow: 0 0 18px rgba(224, 64, 90, 0.55);
}

.card-circle-btn .btn-arrow {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: transform 200ms ease;
}

.manifesto-visual-card:hover .btn-arrow {
  transform: translateX(2px);
}

/* =========================================================================
   SECTION 5: THE OUTRÉ PROGRAM & SKILL ROADMAP
   ========================================================================= */
.program-roadmap-section {
  padding: 40px 0;
}

.roadmap-dark-container {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-bento-hero);
  padding: 44px 38px;
}

.roadmap-header {
  margin-bottom: 36px;
  text-align: center;
}

.capsule-tag-teal {
  color: var(--color-5);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.roadmap-h2 {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}

.roadmap-sub {
  color: var(--text-sub);
  font-size: 15.5px;
}

/* Step Flow Pathway Card */
.step-flow-card {
  align-items: center;
  background: var(--bg-canvas-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
  padding: 24px;
}

@media (max-width: 860px) {
  .step-flow-card {
    flex-direction: column;
    gap: 16px;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
}

.flow-step-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.step-badge {
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-main);
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  margin-bottom: 8px;
  width: 38px;
}

.badge-accent {
  background: linear-gradient(135deg, var(--color-1), var(--color-2));
  border: none;
  color: #FFFFFF;
}

.step-name {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
}

.step-detail {
  color: var(--text-muted);
  font-size: 12px;
}

.flow-arrow {
  color: var(--text-muted);
  font-size: 18px;
}

/* 8 Tools & Skills Grid */
.stack-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 900px) {
  .stack-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .stack-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.tool-badge-card {
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  gap: 14px;
  padding: 16px;
  transition: all 200ms ease;
}

.tool-badge-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.tool-highlight-card {
  border-color: rgba(224, 64, 90, 0.35);
}

.tool-icon {
  font-size: 22px;
}

.tool-info h4 {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.tool-info p {
  color: var(--text-muted);
  font-size: 12px;
}

/* =========================================================================
   SECTION 6: LEARNING FORMATS (LIVE VS STUDIO BENTO PAIR)
   ========================================================================= */
.formats-section {
  padding: 40px 0;
}

.section-top-header {
  margin-bottom: 34px;
  text-align: center;
}

.capsule-tag {
  color: var(--color-1);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-sub);
  font-size: 15.5px;
}

.formats-bento-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 820px) {
  .formats-bento-pair {
    grid-template-columns: 1fr;
  }
}

.format-card {
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  padding: 38px 32px;
  position: relative;
  transition: transform 250ms var(--ease-spring), box-shadow 250ms var(--ease-spring);
}

.format-card:hover {
  transform: translateY(-4px);
}

.format-card-live {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.format-card-studio {
  background: linear-gradient(135deg, var(--color-4) 0%, #202447 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-bento-hero);
  color: #FFFFFF;
  overflow: hidden;
}

.ambient-studio-glow {
  background: radial-gradient(circle, rgba(224, 64, 90, 0.3) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(50px);
  height: 200px;
  pointer-events: none;
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
}

.format-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.badge-capsule-online {
  color: var(--color-5);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.badge-capsule-inperson {
  color: var(--color-3);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.format-badge-flag {
  background: var(--bg-pill-ghost);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
}

.flag-accent {
  background: rgba(224, 64, 90, 0.25);
  border-color: rgba(224, 64, 90, 0.4);
  color: #FFFFFF;
}

.format-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.format-summary {
  color: var(--text-sub);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.text-white {
  color: #FFFFFF !important;
}

.text-light {
  color: rgba(255, 255, 255, 0.75) !important;
}

.format-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.format-bullets li {
  align-items: center;
  display: flex;
  font-size: 14px;
  gap: 10px;
}

.bullet-check {
  color: var(--color-5);
  font-size: 13px;
  font-weight: 800;
}

.check-accent {
  color: var(--color-2) !important;
}

.format-cta-wrap {
  margin-top: auto;
}

.w-full {
  width: 100%;
}

/* =========================================================================
   SECTION 7: UPCOMING SESSIONS (COHORT SCHEDULE / WEBINAR SHOWCASE)
   ========================================================================= */
.schedule-section {
  padding: 50px 0 60px;
  position: relative;
}

.webinar-showcase-card {
  align-items: center;
  background: #080A10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: space-between;
  min-height: 400px;
  overflow: hidden;
  padding: 48px 0 48px 64px;
  position: relative;
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.webinar-showcase-card:hover {
  border-color: rgba(224, 64, 90, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 50px rgba(224, 64, 90, 0.12);
  transform: translateY(-4px);
}

[data-theme="light"] .webinar-showcase-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .webinar-showcase-card:hover {
  border-color: rgba(224, 64, 90, 0.4);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

/* Ambient Radial Glow */
.webinar-ambient-glow {
  background: radial-gradient(circle, rgba(224, 64, 90, 0.18) 0%, rgba(249, 150, 56, 0.08) 50%, transparent 75%);
  filter: blur(60px);
  height: 380px;
  pointer-events: none;
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  z-index: 1;
}

/* Left Content Column */
.webinar-content-col {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  position: relative;
  z-index: 3;
}

.webinar-eyebrow {
  color: var(--color-1);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.webinar-headline {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 18px;
}

[data-theme="light"] .webinar-headline {
  color: #11131A;
}

.webinar-gradient-year {
  background: linear-gradient(135deg, #FF4565 15%, #F99638 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.webinar-desc {
  color: #8E94A8;
  font-size: 15px;
  line-height: 1.58;
  margin-bottom: 34px;
  max-width: 440px;
}

[data-theme="light"] .webinar-desc {
  color: #555B70;
}

/* Action Status Pill */
.webinar-action-row {
  align-items: center;
  display: flex;
}

.webinar-status-pill {
  align-items: center;
  background: rgba(224, 64, 90, 0.05);
  border: 1.5px solid rgba(224, 64, 90, 0.45);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(224, 64, 90, 0.18);
  color: #EAEFFC;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.12em;
  padding: 13px 26px;
  text-transform: uppercase;
  transition: all 280ms cubic-bezier(0.16, 1, 0.3, 1);
  width: fit-content;
}

.webinar-showcase-card:hover .webinar-status-pill {
  border-color: rgba(224, 64, 90, 0.75);
  box-shadow: 0 0 32px rgba(224, 64, 90, 0.35);
  transform: translateY(-2px);
}

[data-theme="light"] .webinar-status-pill {
  background: rgba(224, 64, 90, 0.06);
  color: #1B1E29;
}

.webinar-cal-icon {
  color: var(--color-1);
  flex-shrink: 0;
  stroke: var(--color-1);
}

/* Right Artwork Column */
.webinar-artwork-col {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 1.25;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.webinar-globe-img {
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: right center;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.webinar-showcase-card:hover .webinar-globe-img {
  transform: scale(1.03);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .webinar-showcase-card {
    padding: 44px 0 44px 40px;
  }
}

@media (max-width: 900px) {
  .webinar-showcase-card {
    flex-direction: column;
    padding: 38px 24px 0;
    text-align: left;
  }
  .webinar-content-col {
    max-width: 100%;
  }
  .webinar-desc {
    max-width: 100%;
  }
  .webinar-artwork-col {
    justify-content: center;
    margin-top: 24px;
    width: 100%;
  }
  .webinar-globe-img {
    max-height: 320px;
    object-position: center;
  }
}

@media (max-width: 600px) {
  .webinar-showcase-card {
    border-radius: 22px;
    padding: 30px 18px 0;
  }
  .webinar-headline {
    font-size: clamp(28px, 6vw, 36px);
  }
  .webinar-status-pill {
    font-size: 11px;
    gap: 8px;
    padding: 11px 18px;
  }
}

/* =========================================================================
   SECTION 8: OUTRÉ ECOSYSTEM (MODULAR GRID)
   ========================================================================= */
.ecosystem-section {
  padding: 40px 0;
}

.ecosystem-agency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .ecosystem-agency-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .ecosystem-agency-grid {
    grid-template-columns: 1fr;
  }
}

.eco-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: all 250ms var(--ease-spring);
}

.eco-tile:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.eco-tile-highlight {
  border-color: rgba(224, 64, 90, 0.35);
}

.eco-tile-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.eco-index {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.corner-arrow {
  color: var(--text-muted);
  font-size: 16px;
  transition: transform 200ms ease;
}

.eco-tile:hover .corner-arrow {
  color: var(--color-1);
  transform: translate(2px, -2px);
}

.eco-title {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

.eco-desc {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
}

/* =========================================================================
   SECTION 9: FREQUENTLY ASKED QUESTIONS (FAQ ACCORDION)
   ========================================================================= */
.faq-section {
  padding: 40px 0;
}

.faq-bento-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
  max-width: 840px;
}

.faq-capsule-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 200ms ease;
}

.faq-capsule-item.is-open {
  border-color: var(--border-hover);
}

.faq-toggle-btn {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 22px 24px;
  text-align: left;
  width: 100%;
}

.faq-question {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.faq-icon-circle {
  align-items: center;
  background: var(--bg-pill-ghost);
  border-radius: 50%;
  color: var(--text-main);
  display: inline-flex;
  font-size: 18px;
  height: 32px;
  justify-content: center;
  transition: transform 250ms ease, background 250ms ease;
  width: 32px;
}

.faq-capsule-item.is-open .faq-icon-circle {
  background: var(--color-1);
  color: #FFFFFF;
  transform: rotate(45deg);
}

.faq-drawer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease-spring), opacity 300ms ease, padding 300ms ease;
}

.faq-capsule-item.is-open .faq-drawer {
  opacity: 1;
  padding: 0 24px 22px 24px;
}

.faq-drawer p {
  color: var(--text-sub);
  font-size: 14.5px;
  line-height: 1.65;
}

/* =========================================================================
   SECTION 10: OUTRO BANNER & PHILOSOPHY
   ========================================================================= */
.outro-section {
  padding: 40px 0;
}

.outro-banner-card {
  background: linear-gradient(135deg, #181926 0%, #0F101A 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-bento-hero);
  color: #FFFFFF;
  overflow: hidden;
  padding: 60px 40px;
  position: relative;
  text-align: center;
}

[data-theme="light"] .outro-banner-card {
  background: linear-gradient(135deg, #232538 0%, #151622 100%);
}

.ambient-outro-glow {
  background: radial-gradient(circle, rgba(224, 64, 90, 0.3) 0%, rgba(249, 150, 56, 0.2) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  height: 400px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
}

.outro-content-stack {
  margin: 0 auto;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.eyebrow-capsule-white {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  padding: 4px 14px;
  text-transform: uppercase;
}

.outro-headline {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 20px;
}

.pill-highlight-white {
  background: linear-gradient(135deg, var(--color-1), var(--color-2));
  border-radius: var(--radius-full);
  display: inline-block;
  padding: 2px 18px;
}

.outro-manifesto-quote {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}

.outro-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  margin-bottom: 34px;
}

.outro-btn-cluster {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 30px;
}

.pill-btn-white {
  background: #FFFFFF;
  color: #0F1016;
}

.pill-btn-white:hover {
  background: #F4F4F8;
  transform: translateY(-2px);
}

.pill-btn-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.pill-btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
}

.pill-btn-teal {
  background: var(--color-5);
  color: #FFFFFF;
}

.pill-btn-teal:hover {
  filter: brightness(1.1);
}

.outro-contact-strip {
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  font-size: 13.5px;
  gap: 12px;
}

.contact-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 200ms ease;
}

.contact-link:hover {
  color: #FFFFFF;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.agency-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 28px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 auto;
  max-width: 1360px;
}

.footer-brand {
  max-width: 380px;
}

.footer-motto {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.55;
  margin-top: 12px;
}

.footer-links-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links-group a {
  color: var(--text-sub);
  font-size: 14px;
  transition: color 200ms ease;
}

.footer-links-group a:hover {
  color: var(--color-1);
}

.footer-bottom-line {
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  font-size: 12.5px;
  justify-content: space-between;
  padding-top: 24px;
}

@media (max-width: 600px) {
  .footer-bottom-line {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* =========================================================================
   CALLBACK MODAL WINDOW
   ========================================================================= */
.modal-backdrop-overlay {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 20px;
  pointer-events: none;
  position: fixed;
  transition: opacity 300ms ease, visibility 300ms ease;
  visibility: hidden;
  z-index: 2000;
}

.modal-backdrop-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modal-blur-bg {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  inset: 0;
  position: absolute;
}

.modal-capsule-window {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-popover);
  max-width: 460px;
  padding: 36px 30px;
  position: relative;
  transform: translateY(15px) scale(0.96);
  transition: transform 300ms var(--ease-spring);
  width: 100%;
  z-index: 2;
}

.modal-backdrop-overlay.is-open .modal-capsule-window {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  color: var(--text-muted);
  font-size: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  transition: color 200ms ease;
}

.modal-close-btn:hover {
  color: var(--text-main);
}

.modal-intro {
  margin-bottom: 24px;
  text-align: center;
}

.justify-center {
  justify-content: center;
  margin-bottom: 12px;
}

.modal-h3 {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.modal-p {
  color: var(--text-sub);
  font-size: 13.5px;
  line-height: 1.5;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  color: var(--text-sub);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  background: var(--bg-canvas-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  padding: 12px 14px;
  transition: border-color 200ms ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-1);
}

.modal-success-state {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  text-align: center;
}

.success-check-badge {
  align-items: center;
  background: var(--color-5);
  border-radius: 50%;
  color: #FFFFFF;
  display: inline-flex;
  font-size: 24px;
  font-weight: 800;
  height: 56px;
  justify-content: center;
  margin-bottom: 16px;
  width: 56px;
}

.success-heading {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.success-desc {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.5;
}

/* =========================================================================
   AMU — AI CAREER ADVISOR CHATBOT WIDGET
   ========================================================================= */
.amu-launcher-wrap {
  bottom: 24px;
  position: fixed;
  right: 24px;
  z-index: 1000;
}

.amu-launcher-btn {
  align-items: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--bg-card-solid);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  color: var(--text-main);
  display: inline-flex;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  transition: transform 250ms var(--ease-spring), box-shadow 250ms ease;
}

.amu-launcher-btn:hover {
  box-shadow: 0 16px 40px rgba(224, 64, 90, 0.3);
  transform: translateY(-2px) scale(1.02);
}

.amu-avatar-badge {
  align-items: center;
  background: linear-gradient(135deg, var(--color-1), var(--color-4));
  border-radius: 50%;
  color: #FFFFFF;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  position: relative;
  width: 36px;
}

.amu-avatar-icon {
  font-size: 16px;
}

.amu-pulse-online {
  background: #10B981;
  border: 2px solid var(--bg-card-solid);
  border-radius: 50%;
  bottom: 0;
  height: 10px;
  position: absolute;
  right: 0;
  width: 10px;
}

.amu-launcher-label {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.amu-title-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}

.amu-sub-text {
  color: var(--text-muted);
  font-size: 11px;
}

.amu-sparkle-pill {
  background: linear-gradient(135deg, var(--color-1), var(--color-2));
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
}

/* Chat Overlay & Window */
.amu-chat-overlay {
  bottom: 90px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transition: opacity 300ms ease, transform 300ms var(--ease-spring), visibility 300ms ease;
  visibility: hidden;
  z-index: 1050;
}

.amu-chat-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.amu-chat-window {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-popover);
  display: flex;
  flex-direction: column;
  height: 520px;
  overflow: hidden;
  width: 380px;
}

@media (max-width: 480px) {
  .amu-chat-overlay {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
  }
  .amu-chat-window {
    border-radius: 0;
    height: 100%;
    width: 100%;
  }
}

.amu-chat-header {
  align-items: center;
  background: var(--bg-canvas-subtle);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
}

.amu-header-profile {
  align-items: center;
  display: flex;
  gap: 10px;
}

.amu-header-avatar {
  align-items: center;
  background: linear-gradient(135deg, var(--color-1), var(--color-4));
  border-radius: 50%;
  color: #FFFFFF;
  display: inline-flex;
  font-size: 14px;
  height: 32px;
  justify-content: center;
  position: relative;
  width: 32px;
}

.amu-header-dot {
  background: #10B981;
  border: 1.5px solid var(--bg-canvas-subtle);
  border-radius: 50%;
  bottom: 0;
  height: 8px;
  position: absolute;
  right: 0;
  width: 8px;
}

.amu-name-row {
  align-items: center;
  display: flex;
  gap: 6px;
}

.amu-name-row h4 {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.amu-agent-pill {
  background: rgba(41, 159, 171, 0.15);
  border-radius: var(--radius-full);
  color: var(--color-5);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
}

.amu-status-text {
  color: var(--text-muted);
  font-size: 11px;
}

.amu-header-controls {
  align-items: center;
  display: flex;
  gap: 4px;
}

.amu-ctrl-btn {
  color: var(--text-muted);
  font-size: 14px;
  padding: 6px;
  transition: color 150ms ease;
}

.amu-ctrl-btn:hover {
  color: var(--text-main);
}

.amu-chat-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding: 16px;
}

.amu-message-item {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.amu-msg-bot .amu-msg-avatar {
  align-items: center;
  background: linear-gradient(135deg, var(--color-1), var(--color-4));
  border-radius: 50%;
  color: #FFFFFF;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 12px;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.amu-msg-content {
  background: var(--bg-canvas-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  color: var(--text-main);
  font-size: 13.5px;
  line-height: 1.5;
  padding: 10px 14px;
}

.amu-msg-user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--color-1), var(--color-2));
  border-radius: 14px;
  color: #FFFFFF;
  font-size: 13.5px;
  line-height: 1.45;
  margin-left: auto;
  max-width: 80%;
  padding: 10px 14px;
}

.amu-quick-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.amu-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-sub);
  font-size: 12px;
  padding: 6px 12px;
  transition: all 150ms ease;
}

.amu-chip:hover {
  background: var(--bg-pill-ghost);
  border-color: var(--border-hover);
  color: var(--text-main);
}

.amu-typing-indicator {
  align-items: center;
  display: flex;
  gap: 8px;
}

.typing-bubble {
  align-items: center;
  background: var(--bg-canvas-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  display: inline-flex;
  gap: 4px;
  padding: 8px 12px;
}

.typing-bubble .dot {
  animation: typingBounce 1.4s infinite ease-in-out both;
  background: var(--text-muted);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.typing-bubble .d1 { animation-delay: -0.32s; }
.typing-bubble .d2 { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.amu-chat-footer {
  align-items: center;
  background: var(--bg-canvas-subtle);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 8px;
  padding: 12px;
}

.amu-chat-input {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
  padding: 10px 16px;
  width: 100%;
}

.amu-chat-input:focus {
  border-color: var(--color-1);
}

.amu-send-btn {
  align-items: center;
  background: linear-gradient(135deg, var(--color-1), var(--color-2));
  border-radius: 50%;
  color: #FFFFFF;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  transition: transform 200ms ease;
  width: 36px;
}

.amu-send-btn:hover {
  transform: scale(1.08);
}

/* ==========================================================================
   RESPONSIVE NAVBAR REFINEMENT FOR MOBILE (< 768px & < 540px)
   ========================================================================== */
@media (max-width: 768px) {
  .navbar-wrapper {
    padding: 8px 12px !important;
  }
  .agency-navbar {
    padding: 6px 12px !important;
  }
}

@media (max-width: 540px) {
  #searchTriggerBtn,
  .search-trigger {
    display: none !important;
  }
  .nav-actions {
    gap: 6px !important;
  }
  .theme-toggle-btn {
    height: 34px !important;
    width: 34px !important;
  }
  .pill-btn-primary.nav-cta,
  .pill-btn-primary.nav-enroll-btn {
    padding: 6px 10px !important;
    font-size: 11.5px !important;
    white-space: nowrap;
  }
  .mobile-menu-trigger {
    height: 34px !important;
    width: 34px !important;
  }
}

@media (max-width: 400px) {
  .navbar-wrapper {
    padding: 6px 8px !important;
  }
  .agency-navbar {
    padding: 5px 8px !important;
  }
  .brand-logo-img {
    height: 22px !important;
  }
  .pill-btn-primary.nav-cta,
  .pill-btn-primary.nav-enroll-btn {
    padding: 5px 8px !important;
    font-size: 11px !important;
  }
  .theme-toggle-btn {
    height: 30px !important;
    width: 30px !important;
  }
  .mobile-menu-trigger {
    height: 30px !important;
    width: 30px !important;
  }
}

.cta-short-label {
  display: none;
}

@media (max-width: 480px) {
  .cta-full-label {
    display: none !important;
  }
  .cta-short-label {
    display: inline !important;
  }
}



