/* ==========================================================================
   Outré — Global Design System & Award-Winning Agency Stylesheet
   Modern Agency Editorial Canvas with Silky 60fps Anti-Gravity Mechanics
   Strict 5-Color System: #E0405A, #F99638, #FFCED4, #3E4780, #299FAB
   ========================================================================== */

/* --- 1. CSS VARIABLES & DESIGN TOKENS --- */
:root {
  /* Brand Core Palette */
  --color-1: #E0405A; /* Coral Rose — Primary CTAs, active highlight pills, glow centers */
  --color-2: #F99638; /* Sunset Amber — Secondary gradients, metric counters, warm glow accents */
  --color-3: #FFCED4; /* Soft Blush Pink — Tinted pastel card backgrounds, soft perimeter glow */
  --color-4: #3E4780; /* Deep Slate Indigo — High-contrast nocturnal canvas & bento cards */
  --color-5: #299FAB; /* Vibrant Ocean Teal — Progress markers, status dots, interactive paths */

  /* Neutral Surfaces & Texts */
  --canvas-dark: #0B0C10;
  --surface-card-dark: #13141F;
  --canvas-light: #F6F5FA;
  --surface-card-light: #FFFFFF;
  --text-dark: #0F1016;
  --text-muted: #5E6278;
  --text-subtle: #8E92A4;
  --text-light: #FFFFFF;
  --text-light-muted: #C8CBE0;

  /* Hairlines & Translucent Borders */
  --border-light: rgba(255, 255, 255, 0.12);
  --border-card-dark: rgba(255, 255, 255, 0.08);
  --border-dark: rgba(15, 16, 22, 0.07);
  --border-dark-hover: rgba(15, 16, 22, 0.16);

  /* Elevation Shadows */
  --shadow-canvas: 0 32px 90px rgba(19, 20, 31, 0.07), 0 4px 16px rgba(19, 20, 31, 0.03);
  --shadow-card: 0 16px 40px rgba(20, 18, 38, 0.05);
  --shadow-card-hover: 0 24px 50px rgba(20, 18, 38, 0.1);
  --shadow-nocturnal: 0 24px 60px rgba(11, 12, 16, 0.38);
  --shadow-pill-coral: 0 8px 24px rgba(224, 64, 90, 0.32);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Geometry & Radii */
  --radius-frame: 40px;
  --radius-card: 28px;
  --radius-mini: 20px;
  --radius-pill: 9999px;
  --radius-sm: 12px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.agency-body {
  background-color: var(--canvas-light);
  background-image:
    radial-gradient(circle at 12% 10%, rgba(224, 64, 90, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 88% 30%, rgba(249, 150, 56, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(41, 159, 171, 0.05) 0%, transparent 50%);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  padding: 0;
}

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

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

ul, ol {
  list-style: none;
}

/* --- 3. MASTER CANVAS FRAMED SHELL --- */
.master-canvas-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.master-frame-section {
  background: var(--surface-card-light);
  border-radius: var(--radius-frame);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-canvas);
  position: relative;
  overflow: hidden;
}

/* --- 4. SECTION 1: FLOATING AGENCY NAVIGATION BAR --- */
.navbar-wrapper {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}

.agency-navbar {
  pointer-events: auto;
  width: 100%;
  max-width: 1040px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(19, 20, 31, 0.08);
  border-radius: var(--radius-pill);
  padding: 10px 14px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.agency-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 48px rgba(19, 20, 31, 0.12);
  border-color: rgba(224, 64, 90, 0.15);
}

/* Brand Wordmark & Official Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-dark);
  text-decoration: none;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

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

.footer-brand .brand-logo-img {
  height: 48px;
  max-width: 170px;
}

.modal-intro .brand-logo-img {
  height: 44px;
  max-width: 160px;
  margin: 0 auto 6px;
}

.drawer-head .brand-logo-img {
  height: 34px;
  max-width: 130px;
}

.brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-1);
  display: inline-block;
  box-shadow: 0 0 10px var(--color-1);
}

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

.nav-item {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-item:hover {
  color: var(--text-dark);
  background: rgba(15, 16, 22, 0.04);
}

/* Nav Action & Mobile Trigger */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-trigger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 16, 22, 0.05);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-menu-trigger .bar {
  width: 18px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

/* --- 5. BUTTONS & PILL HIGHLIGHTS --- */

/* Highlight Pills in Typography */
.pill-highlight {
  display: inline-block;
  background: var(--color-1);
  color: #FFFFFF;
  padding: 2px 20px 4px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-pill-coral);
  font-weight: 800;
  letter-spacing: -0.02em;
  vertical-align: middle;
}

.pill-highlight-white {
  display: inline-block;
  background: #FFFFFF;
  color: var(--color-1);
  padding: 2px 22px 4px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  vertical-align: middle;
}

/* Elongated Pill Buttons with Diagonal Arrow */
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.pill-btn:hover {
  transform: translateY(-2px);
}

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

.pill-btn .circle-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--color-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-btn:hover .circle-arrow {
  transform: rotate(45deg) scale(1.08);
}

/* Primary Coral Pill Button */
.pill-btn-primary {
  background: var(--color-1);
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(224, 64, 90, 0.34);
}

.pill-btn-primary:hover {
  background: #cf3750;
  box-shadow: 0 14px 34px rgba(224, 64, 90, 0.42);
}

/* Ghost Pill Button */
.pill-btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-dark);
}

.pill-btn-ghost:hover {
  background: rgba(15, 16, 22, 0.04);
  border-color: var(--border-dark-hover);
}

.pill-btn-ghost .circle-arrow {
  background: var(--text-dark);
  color: #FFFFFF;
}

/* Outro Button Cluster Variants */
.pill-btn-white {
  background: #FFFFFF;
  color: var(--text-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.pill-btn-white:hover {
  background: #f7f7fc;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.pill-btn-white .circle-arrow.arrow-dark {
  background: var(--text-dark);
  color: #FFFFFF;
}

.pill-btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.pill-btn-teal {
  background: var(--color-5);
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(41, 159, 171, 0.35);
}

.pill-btn-teal:hover {
  background: #238a94;
}

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

.w-full {
  width: 100%;
}

/* Tag Capsules */
.capsule-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: rgba(15, 16, 22, 0.05);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.capsule-tag-teal {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-5);
  background: rgba(41, 159, 171, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* Corner Arrow */
.corner-circle-arrow,
.corner-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 16, 22, 0.06);
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.2s ease;
}

.bento-card:hover .corner-circle-arrow,
.eco-tile:hover .corner-arrow {
  transform: rotate(45deg);
  background: var(--color-1);
  color: #FFFFFF;
}

/* Editorial Serif Touch */
.editorial-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
}

/* --- 6. SECTION 2: HERO SECTION --- */
.hero-section {
  padding: 64px 44px 44px;
}

.hero-header-stack {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 52px;
}

.eyebrow-capsule {
  display: inline-block;
  background: var(--color-3);
  color: var(--color-1);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  border: 1px solid rgba(224, 64, 90, 0.15);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-subheadline {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 32px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Hero Bento Grid --- */
.hero-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 22px;
  margin-bottom: 36px;
}

.bento-card {
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

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

/* Card A: Soft Pastel --color-3 Canvas */
.bento-card-pastel {
  background: var(--color-3);
  border: 1px solid rgba(224, 64, 90, 0.15);
  box-shadow: 0 12px 32px rgba(224, 64, 90, 0.08);
  min-height: 380px;
  justify-content: space-between;
}

.card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bento-title-dark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-top: 14px;
  margin-bottom: 6px;
}

.bento-desc-dark {
  font-size: 0.9rem;
  color: #4A4D62;
  line-height: 1.45;
}

/* Staggered Floating Tag Cloud */
.skills-drifting-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.skill-pill {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 14px rgba(20, 18, 38, 0.06);
  will-change: transform;
}

.pill-drift-1 { animation: float-slow 5s ease-in-out infinite; }
.pill-drift-2 { animation: float-reverse 6.5s ease-in-out infinite -1s; }
.pill-drift-3 { animation: float-slow 5.8s ease-in-out infinite -2s; }
.pill-drift-4 { animation: float-reverse 7.2s ease-in-out infinite -3s; }
.pill-drift-5 { animation: float-slow 6.2s ease-in-out infinite -1.5s; }
.pill-drift-6 { animation: float-reverse 5.4s ease-in-out infinite -2.5s; }
.pill-drift-7 { animation: float-slow 6.8s ease-in-out infinite -0.5s; }
.pill-drift-8 { animation: float-reverse 7.5s ease-in-out infinite -4s; }

/* Card B: High-Contrast Deep Nocturnal --color-4 */
.bento-card-nocturnal {
  background: var(--color-4);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-nocturnal);
  min-height: 380px;
  justify-content: space-between;
}

.ambient-mesh-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--color-1) 0%, var(--color-2) 60%, transparent 80%);
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

.bento-title-light {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.bento-desc-light {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  position: relative;
  z-index: 2;
}

/* 3D Geometric Core Stage */
.geometric-core-stage {
  position: relative;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
  z-index: 2;
}

.ambient-core-halo {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 64, 90, 0.4) 0%, rgba(249, 150, 56, 0.25) 50%, transparent 75%);
  filter: blur(18px);
}

.core-prism-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  will-change: transform;
}

.outer-ring {
  width: 110px;
  height: 110px;
  animation: core-spin 12s linear infinite;
}

.inner-ring {
  width: 80px;
  height: 80px;
  border-color: rgba(249, 150, 56, 0.5);
  animation: core-spin-reverse 9s linear infinite;
}

.core-central-gem {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFCED4 60%, var(--color-1) 100%);
  box-shadow: 0 12px 28px rgba(224, 64, 90, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-4);
  font-size: 1.4rem;
  font-weight: 800;
  animation: core-float 4.5s ease-in-out infinite;
}

/* Glassmorphic Credential Badge */
.glassmorphic-credential-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  position: relative;
  z-index: 2;
}

.badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-5);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.badge-text {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* Card C: Dual Stacked Mini-Bentos */
.bento-card-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mini-bento-card {
  background: #FFFFFF;
  border-radius: var(--radius-mini);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-card);
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.mini-bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.mini-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.capsule-tag-mini {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulse-glow 2s infinite alternate;
}

.corner-micro-arrow {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mini-stat-wrap {
  margin: 12px 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.avatar-stack-row {
  display: flex;
  align-items: center;
}

.avatar-pill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-left: -8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

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

.av-1 { background: var(--color-1); }
.av-2 { background: var(--color-2); }
.av-3 { background: var(--color-4); }
.av-more { background: var(--color-5); font-size: 0.65rem; }

/* Progress Ring in Mini Card 2 */
.success-ring-content {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.progress-ring-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.progress-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: rgba(41, 159, 171, 0.15);
  stroke-width: 6;
}

.ring-fill {
  fill: none;
  stroke: var(--color-5);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 201;
  stroke-dashoffset: 20;
  animation: ring-pulse 4s ease-in-out infinite alternate;
}

.ring-center-val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-5);
}

.success-text-wrap {
  flex: 1;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.success-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 2px;
}

/* Bottom Trust Bar */
.hero-trust-bar {
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

.trust-pills-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(15, 16, 22, 0.03);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 16, 22, 0.05);
}

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-1);
}

/* --- 7. SECTION 3: IMPACT & METRICS ROW --- */
.metrics-section {
  padding: 32px 36px;
}

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

.metric-bento-card {
  background: #FFFFFF;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-mini);
  padding: 28px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.metric-bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-dark-hover);
  box-shadow: var(--shadow-card-hover);
}

.metric-sup {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-subtle);
  display: block;
  margin-bottom: 8px;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  line-height: 1;
}

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

.metric-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 10px;
  margin-bottom: 4px;
}

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

/* --- 8. SECTION 4: ASYMMETRIC EDITORIAL SPLIT --- */
.what-we-do-section {
  padding: 56px 44px;
}

.split-editorial-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.manifesto-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-1);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 14px;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.manifesto-body {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Interactive Pill Feature Stack */
.editorial-features-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-interactive-pill {
  background: #FFFFFF;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.feature-interactive-pill:hover {
  transform: translateX(6px);
  border-color: var(--color-5);
  box-shadow: 0 8px 24px rgba(41, 159, 171, 0.12);
}

.f-pill-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--canvas-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.f-pill-text {
  flex: 1;
}

.f-pill-text h4 {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text-dark);
}

.f-pill-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.f-arrow {
  color: var(--text-subtle);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, color 0.2s ease;
}

.feature-interactive-pill:hover .f-arrow {
  transform: rotate(45deg);
  color: var(--color-5);
}

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

.roadmap-dark-container {
  background: var(--color-4);
  padding: 64px 48px;
  color: #FFFFFF;
  border-radius: var(--radius-frame);
}

.roadmap-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.roadmap-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-top: 14px;
  margin-bottom: 8px;
}

.roadmap-sub {
  font-size: 1.05rem;
  color: var(--text-light-muted);
}

/* Step-Flow Pathway Card */
.step-flow-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
  position: relative;
  gap: 12px;
}

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

.step-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-5);
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.flow-step-item:hover .step-badge {
  transform: scale(1.08);
}

.step-badge.badge-accent {
  background: var(--color-1);
  color: #FFFFFF;
  border-color: var(--color-1);
  box-shadow: 0 0 24px rgba(224, 64, 90, 0.6);
}

.step-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  color: #FFFFFF;
  white-space: nowrap;
}

.step-detail {
  font-size: 0.76rem;
  color: var(--text-light-muted);
  margin-top: 4px;
  line-height: 1.35;
}

.flow-arrow {
  color: var(--color-5);
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0.8;
  flex-shrink: 0;
}

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

.tool-badge-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tool-badge-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--color-5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tool-highlight-card {
  border-color: rgba(224, 64, 90, 0.4);
  background: rgba(224, 64, 90, 0.09);
  box-shadow: 0 0 20px rgba(224, 64, 90, 0.1);
}

.tool-highlight-card:hover {
  border-color: var(--color-1);
}

.tool-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.tool-info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.tool-info p {
  font-size: 0.82rem;
  color: var(--text-light-muted);
  line-height: 1.45;
}

/* --- 10. SECTION 6: CHOOSE YOUR LEARNING FORMAT --- */
.formats-section {
  padding: 56px 44px;
}

.section-top-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-top: 12px;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

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

.format-card {
  border-radius: var(--radius-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

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

/* Format Card 1: Outré Live (Pastel Glass) */
.format-card-live {
  background: #FFFFFF;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-card);
}

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

.badge-capsule-online {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-5);
  background: rgba(41, 159, 171, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.format-badge-flag {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--canvas-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.format-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.format-summary {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 28px;
}

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

.format-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
}

.bullet-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(41, 159, 171, 0.15);
  color: var(--color-5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* Format Card 2: Outré Studio (Nocturnal Canvas) */
.format-card-studio {
  background: var(--color-4);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-nocturnal);
}

.ambient-studio-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--color-1) 0%, var(--color-2) 60%, transparent 80%);
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}

.badge-capsule-inperson {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-2);
  background: rgba(249, 150, 56, 0.16);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

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

.text-white { color: #FFFFFF; }
.text-light { color: var(--text-light-muted); }

.bullets-light li {
  color: #FFFFFF;
}

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

/* --- 11. SECTION 7: UPCOMING SESSIONS (COHORT SCHEDULE) --- */
.schedule-section {
  padding: 56px 44px;
}

.schedule-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.schedule-card {
  background: #FFFFFF;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-dark-hover);
}

.schedule-date-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 16px;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.date-coral { background: var(--color-1); box-shadow: 0 8px 20px rgba(224, 64, 90, 0.35); }
.date-amber { background: var(--color-2); box-shadow: 0 8px 20px rgba(249, 150, 56, 0.35); }
.date-teal { background: var(--color-5); box-shadow: 0 8px 20px rgba(41, 159, 171, 0.35); }

.s-day {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.s-month {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.schedule-type-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-1);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 6px;
}

.type-studio { color: var(--color-2); }
.type-webinar { color: var(--color-5); }

.schedule-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.schedule-timing {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-4);
  margin-bottom: 12px;
}

.schedule-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
}

/* --- 12. SECTION 8: OUTRÉ ECOSYSTEM --- */
.ecosystem-section {
  padding: 56px 44px;
}

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

.eco-tile {
  background: #FFFFFF;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-mini);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.eco-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-dark-hover);
}

.eco-tile-highlight {
  background: var(--color-4);
  color: #FFFFFF;
  border-color: var(--border-light);
}

.eco-tile-highlight .eco-title { color: #FFFFFF; }
.eco-tile-highlight .eco-desc { color: var(--text-light-muted); }
.eco-tile-highlight .eco-index { color: var(--color-1); }
.eco-tile-highlight .corner-arrow { background: rgba(255, 255, 255, 0.1); color: #FFFFFF; }

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

.eco-index {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-5);
}

.eco-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.eco-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- 13. SECTION 9: FREQUENTLY ASKED QUESTIONS --- */
.faq-section {
  padding: 56px 44px;
}

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

.faq-capsule-item {
  background: #FFFFFF;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-mini);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-capsule-item.is-open {
  border-color: var(--color-1);
  box-shadow: 0 10px 28px rgba(224, 64, 90, 0.1);
}

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

.faq-question {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.faq-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--canvas-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

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

.faq-drawer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.25s ease;
}

.faq-capsule-item.is-open .faq-drawer {
  max-height: 240px;
  padding: 0 28px 24px;
}

.faq-drawer p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* --- 14. SECTION 10: BRAND PHILOSOPHY & FINAL CONVERSION BANNER --- */
.outro-section {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.outro-banner-card {
  background: linear-gradient(135deg, var(--surface-card-dark) 0%, var(--color-4) 100%);
  border-radius: var(--radius-frame);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-nocturnal);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ambient-outro-glow {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(224, 64, 90, 0.45) 0%, rgba(249, 150, 56, 0.3) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: pulse-glow 5s infinite alternate;
}

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

.eyebrow-capsule-white {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.outro-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1.15;
}

.outro-manifesto-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.outro-sub {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  margin-bottom: 36px;
}

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

.outro-contact-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light-muted);
}

.contact-link {
  color: #FFFFFF;
  transition: color 0.2s ease;
}

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

.strip-divider {
  color: rgba(255, 255, 255, 0.3);
}

/* --- 15. GLOBAL FOOTER --- */
.agency-footer {
  background: var(--canvas-light);
  padding: 40px 24px 60px;
  border-top: 1px solid var(--border-dark);
}

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

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

.footer-motto {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

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

.footer-links-group a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

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

/* --- 16. MOBILE DRAWER OVERLAY --- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s ease;
}

.mobile-drawer.is-open {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 0.3s ease;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 16, 0.55);
  backdrop-filter: blur(8px);
}

.drawer-content {
  position: relative;
  z-index: 10;
  width: 82%;
  max-width: 340px;
  height: 100%;
  background: #FFFFFF;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

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

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

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--canvas-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-dark);
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.drawer-link {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  display: block;
  padding: 6px 0;
}

.drawer-foot {
  padding-top: 20px;
}

/* --- 17. CALLBACK MODAL WINDOW --- */
.modal-backdrop-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s ease;
}

.modal-backdrop-overlay.is-open {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 0.3s ease;
}

.modal-blur-bg {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 16, 0.6);
  backdrop-filter: blur(10px);
}

.modal-capsule-window {
  position: relative;
  z-index: 10;
  background: #FFFFFF;
  border-radius: var(--radius-card);
  max-width: 460px;
  width: 100%;
  padding: 36px 32px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--canvas-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
}

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

.justify-center {
  justify-content: center;
}

.modal-h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 10px;
  margin-bottom: 6px;
}

.modal-p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
  background: var(--canvas-light);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-1);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(224, 64, 90, 0.12);
}

.modal-success-state {
  text-align: center;
  padding: 16px 0;
}

.success-check-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  font-size: 1.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.success-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- 18. HARDWARE-ACCELERATED 60FPS CSS KEYFRAME ANIMATIONS --- */
@keyframes float-slow {
  0%, 100% {
    transform: translate3d(0, -8px, 0);
  }
  50% {
    transform: translate3d(0, 4px, 0);
  }
}

@keyframes float-reverse {
  0%, 100% {
    transform: translate3d(0, 4px, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -6px, 0) rotate(3deg);
  }
}

@keyframes pulse-glow {
  0% {
    opacity: 0.4;
    transform: scale(0.95);
  }
  100% {
    opacity: 0.85;
    transform: scale(1.05);
  }
}

@keyframes ring-pulse {
  0% {
    stroke-dashoffset: 28;
  }
  100% {
    stroke-dashoffset: 12;
  }
}

@keyframes core-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes core-spin-reverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes core-float {
  0%, 100% {
    transform: translate3d(0, -6px, 0) rotate(-4deg);
  }
  50% {
    transform: translate3d(0, 6px, 0) rotate(4deg);
  }
}

/* --- 19. RESPONSIVE BREAKPOINT SPECIFICATIONS --- */

/* Tablet (768px – 1023px) */
@media (max-width: 1023px) {
  .master-canvas-shell {
    padding: 86px 16px 48px;
    gap: 24px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-trigger {
    display: flex;
  }

  .hero-section {
    padding: 48px 28px 32px;
  }

  /* 2-column hero bento */
  .hero-bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card-stack {
    grid-column: span 2;
    flex-direction: row;
  }

  /* 2x2 metrics grid */
  .metrics-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-editorial-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stack-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-bento-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-agency-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (< 767px) */
@media (max-width: 767px) {
  .master-canvas-shell {
    padding: 78px 8px 36px;
    gap: 20px;
  }

  .master-frame-section {
    border-radius: 24px;
  }

  .hero-section {
    padding: 36px 18px 24px;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .pill-highlight {
    padding: 2px 14px 4px;
  }

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

  .bento-card-stack {
    grid-column: span 1;
    flex-direction: column;
  }

  .trust-pills-row {
    flex-direction: column;
    align-items: stretch;
  }

  .metrics-section {
    padding: 24px 18px;
  }

  .metrics-bento-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .what-we-do-section {
    padding: 36px 20px;
  }

  .formats-section {
    padding: 36px 18px;
  }

  .formats-bento-pair {
    grid-template-columns: 1fr;
  }

  .roadmap-dark-container {
    padding: 40px 20px;
    border-radius: 24px;
  }

  .step-flow-card {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

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

  .schedule-section {
    padding: 36px 18px;
  }

  .ecosystem-section {
    padding: 36px 18px;
  }

  .ecosystem-agency-grid {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 36px 18px;
  }

  .outro-banner-card {
    padding: 56px 20px;
    border-radius: 24px;
  }

  .outro-btn-cluster {
    flex-direction: column;
    width: 100%;
  }

  .outro-btn-cluster .pill-btn {
    width: 100%;
    min-height: 52px;
  }

  .outro-contact-strip {
    flex-direction: column;
    gap: 8px;
  }

  .strip-divider {
    display: none;
  }

  .pill-btn {
    min-height: 52px;
    width: 100%;
  }

  .nav-actions .nav-cta {
    display: none;
  }
}

/* ==========================================================================
   AMU — OUTRÉ AI CAREER ADVISOR CHATBOT WIDGET STYLES
   ========================================================================== */

/* Floating Launcher */
.amu-launcher-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.amu-launcher-btn {
  background: #13141F;
  border: 1.5px solid rgba(224, 64, 90, 0.4);
  border-radius: var(--radius-pill);
  padding: 8px 18px 8px 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(11, 12, 16, 0.45), 0 0 20px rgba(224, 64, 90, 0.2);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  animation: launcherFloat 5s ease-in-out infinite alternate;
}

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

.amu-launcher-btn:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--color-1);
  box-shadow: 0 24px 50px rgba(224, 64, 90, 0.4);
}

.amu-avatar-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  position: relative;
  box-shadow: 0 4px 14px rgba(224, 64, 90, 0.5);
}

.amu-avatar-icon {
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

.amu-pulse-online {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #10B981;
  border: 2px solid #13141F;
  box-shadow: 0 0 8px #10B981;
}

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

.amu-title-text {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.amu-sub-text {
  font-size: 0.74rem;
  color: var(--text-light-muted);
  line-height: 1.2;
}

.amu-sparkle-pill {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--color-5);
  background: rgba(41, 159, 171, 0.22);
  border: 1px solid rgba(41, 159, 171, 0.4);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

/* Chat Overlay & Window */
.amu-chat-overlay {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10000;
  width: 410px;
  max-width: calc(100vw - 32px);
  height: 600px;
  max-height: calc(100vh - 48px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.amu-chat-overlay.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.amu-chat-window {
  background: var(--surface-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Header */
.amu-chat-header {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.amu-header-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10B981;
  border: 2px solid var(--surface-card-dark);
}

.amu-header-meta {
  display: flex;
  flex-direction: column;
}

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

.amu-name-row h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
}

.amu-agent-pill {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--color-1);
  background: rgba(224, 64, 90, 0.16);
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}

.amu-status-text {
  font-size: 0.72rem;
  color: var(--text-light-muted);
}

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

.amu-ctrl-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.amu-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}

/* Chat Body */
.amu-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
}

.amu-message-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.amu-msg-bot .amu-msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.amu-msg-bot .amu-msg-content {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px 18px 18px 4px;
  padding: 14px 16px;
  color: #FFFFFF;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 84%;
}

.amu-msg-bot .amu-msg-content p + p {
  margin-top: 8px;
}

.amu-msg-user {
  justify-content: flex-end;
}

.amu-msg-user .amu-msg-content {
  background: var(--color-1);
  color: #FFFFFF;
  border-radius: 18px 18px 4px 18px;
  padding: 12px 16px;
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 80%;
  box-shadow: 0 4px 14px rgba(224, 64, 90, 0.3);
}

/* Quick Action Buttons inside Bot Replies */
.amu-action-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.amu-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease;
}

.amu-action-link:hover {
  background: var(--color-1);
  border-color: var(--color-1);
}

/* Quick Prompt Chips */
.amu-quick-chips-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 40px;
  margin-top: 4px;
}

.amu-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  color: var(--text-light-muted);
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.amu-chip:hover {
  transform: translateX(4px);
  background: rgba(41, 159, 171, 0.15);
  border-color: var(--color-5);
  color: #FFFFFF;
}

/* Typing Indicator */
.amu-typing-indicator {
  display: flex;
  gap: 10px;
  align-items: center;
  animation: fadeIn 0.2s ease;
}

.typing-bubble {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px 18px 18px 4px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.typing-bubble .d2 { animation-delay: 0.2s; background: var(--color-2); }
.typing-bubble .d3 { animation-delay: 0.4s; background: var(--color-5); }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-5px); opacity: 1; }
}

/* Footer / Input */
.amu-chat-footer {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.amu-chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.amu-chat-input:focus {
  border-color: var(--color-1);
  background: rgba(255, 255, 255, 0.1);
}

.amu-chat-input::placeholder {
  color: var(--text-subtle);
}

.amu-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(224, 64, 90, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.amu-send-btn:hover {
  background: #cf3750;
  transform: rotate(45deg);
}

/* Mobile Responsiveness for AMU */
@media (max-width: 767px) {
  .amu-launcher-wrap {
    bottom: 16px;
    right: 16px;
  }
  
  .amu-launcher-btn {
    padding: 6px 14px 6px 6px;
  }

  .amu-avatar-badge {
    width: 36px;
    height: 36px;
  }

  .amu-chat-overlay {
    bottom: 12px;
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
    height: 84vh;
    max-height: 84vh;
  }
}

