/* ==========================================================================
   BEING AMBITIOUS — GLOBAL DESIGN SYSTEM
   Premium light theme · D2C growth ecosystem positioning
   ========================================================================== */

@font-face {
  font-family: 'Garet';
  src: url('fonts/Garet-Book.woff') format('woff'),
       url('fonts/Garet-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Garet';
  src: url('fonts/Garet-Book.woff') format('woff'),
       url('fonts/Garet-Book.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Garet';
  src: url('fonts/Garet-Book.woff') format('woff'),
       url('fonts/Garet-Book.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Garet';
  src: url('fonts/Garet-Heavy.woff') format('woff'),
       url('fonts/Garet-Heavy.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Garet';
  src: url('fonts/Garet-Heavy.woff') format('woff'),
       url('fonts/Garet-Heavy.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-warm: #faf8f5;
  --bg-alt: #f5f2ed;
  --bg-card: #ffffff;
  --surface: #f0ece6;
  --text: #1a1816;
  --text-secondary: #353230;
  --muted: #6b6661;
  --faint: #928d88;
  --orange: #e85a1a;
  --orange-light: #f07030;
  --orange-soft: rgba(232, 90, 26, 0.08);
  --orange-glow: rgba(232, 90, 26, 0.22);
  --amber: #f5a623;
  --border: rgba(12, 12, 12, 0.08);
  --border-strong: rgba(12, 12, 12, 0.12);
  --shadow-sm: 0 2px 8px rgba(12, 12, 12, 0.04);
  --shadow-md: 0 8px 30px rgba(12, 12, 12, 0.06);
  --shadow-lg: 0 20px 50px rgba(12, 12, 12, 0.08);
  --shadow-orange: 0 12px 40px rgba(232, 90, 26, 0.15);
  --green: #16a34a;
  --font-display: 'Garet', 'The Seasons', 'Playfair Display', serif;
  --font-body: 'Garet', 'Poppins', sans-serif;
  --font-sans: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-secondary);
  font-family: var(--font-body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

.font-display { font-family: var(--font-display); }
.bg-heading { background-color: var(--text) !important; }

h1, h2, h3, h4, h5, h6,
.text-heading,
.section-label,
.font-display {
  font-family: var(--font-display);
}

/* Transparent logo — no background box */
.site-logo-link {
  background: transparent !important;
  border: none;
  box-shadow: none;
}
.site-logo-img {
  height: 2.4rem;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  display: block;
}
.site-logo-img--footer {
  height: 2rem;
  max-width: 200px;
}

/* Layout rhythm */
.section-spacing { padding: 5rem 0; }
@media (min-width: 1024px) { .section-spacing { padding: 6rem 0; } }
.section-spacing-sm { padding: 3.5rem 0; }
@media (min-width: 1024px) { .section-spacing-sm { padding: 4rem 0; } }

.page-end-cta {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
@media (min-width: 1024px) { .page-end-cta { padding: 6rem 0; } }

/* Semantic text utilities */
.text-heading { color: var(--text) !important; }
.text-muted { color: var(--muted) !important; }
.text-faint { color: var(--faint) !important; }
.text-accent { color: var(--orange) !important; }
.initials-mark {
  font-family: var(--font-display);
  font-weight: 800;
  color: rgba(232, 90, 26, 0.28);
}

.bg-alt { background-color: var(--bg-alt) !important; }
.bg-warm { background-color: var(--bg-warm) !important; }
.border-subtle { border-color: var(--border) !important; }

.text-gradient-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 55%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Grid background */
.grid-bg {
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-section {
  background:
    radial-gradient(ellipse 80% 50% at 90% 10%, rgba(232, 90, 26, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(245, 166, 35, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 55%, var(--bg-alt) 100%);
}

/* Homepage hero — contained grid, no overlapping */
.hero-section--home {
  min-height: auto;
  overflow: visible;
  padding-top: 72px;
}

.hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-inner { padding: 5rem 2rem 6rem; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
}

.hero-title {
  font-size: clamp(1.875rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 18ch;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .hero-title { max-width: 22ch; }
}

@media (min-width: 1024px) {
  .hero-title { max-width: 16ch; font-size: clamp(2.25rem, 3.2vw, 3.25rem); }
}

.hero-aside {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-ecosystem-panel {
  width: 100%;
  min-height: 220px;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-ecosystem-panel { min-height: 280px; padding: 2.5rem; }
}

.hero-metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 480px) {
  .hero-metrics-grid { grid-template-columns: repeat(3, 1fr); }
}

.hero-metric-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.125rem;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 1023px) {
  .hero-section--home .hero-orb { opacity: 0.5; }
}

/* Final CTA band */
.cta-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 50%, rgba(232, 90, 26, 0.04) 100%);
}

/* Glass / navbar */
.glass {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
}

#navbar { transition: background 0.4s ease, box-shadow 0.4s ease; }
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border) !important;
}

.nav-link {
  position: relative;
  color: var(--text-secondary) !important;
  font-family: var(--font-display);
  font-size: 0.825rem;
  font-weight: 700 !important; /* Garet Bold for crisp premium readability */
  letter-spacing: 0.08em; /* Slightly increased letter spacing */
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--orange) !important; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Mobile Menu Readability Optimization */
#mobile-menu a {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  color: var(--text-secondary) !important;
}
#mobile-menu a:hover,
#mobile-menu a.text-heading {
  color: var(--orange) !important;
}

/* Global Font Weight Softening & Hierarchy Overrides */
h1, .hero-title, .page-hero h1 {
  font-weight: 700 !important; /* Garet Bold (Garet-Heavy) */
}
h2, .section-title, .section-spacing h2 {
  font-weight: 600 !important; /* Garet SemiBold (Garet-Book) */
}
h3, .card-title, .content-ecosystem-heading {
  font-weight: 500 !important; /* Garet Medium (Garet-Book) */
}
h4, h5, h6 {
  font-weight: 500 !important; /* Garet Medium (Garet-Book) */
}
.font-extrabold {
  font-weight: 700 !important; /* Soften all inline extrabold utility weights */
}
.font-bold {
  font-weight: 600 !important; /* Soften all inline bold utility weights */
}
.font-semibold {
  font-weight: 500 !important; /* Soften all inline semibold utility weights to medium */
}

/* Card / list item headings — moderate emphasis (editorial hierarchy) */
.card-item-heading,
.curriculum-week-title {
  font-family: var(--font-display);
  font-weight: 500 !important;
  color: var(--text);
  display: block;
  line-height: 1.45;
  margin-bottom: 0.15rem;
}
.curriculum-week-title {
  font-size: 0.875rem;
}
.card-item-heading {
  font-size: 0.95rem;
}
.creator-connect-tick-heading {
  font-family: var(--font-display);
  font-weight: 500 !important;
  color: var(--text);
  display: block;
  line-height: 1.4;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}
.course-module-card h4 {
  font-weight: 500 !important;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(232, 90, 26, 0.28);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: rgba(232, 90, 26, 0.35);
  background: var(--orange-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 1px;
}

.premium-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}
.premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 90, 26, 0.2);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(232, 90, 26, 0.06);
}

.metric-card {
  background: linear-gradient(160deg, var(--orange-soft) 0%, var(--bg-card) 50%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.metric-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.metric-value span { color: var(--orange); }

.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--orange) 0%, #d94e12 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: var(--shadow-orange);
  animation: float-cta 4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.floating-cta.hidden-by-footer {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(20px) !important;
}
.floating-cta:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 20px 56px rgba(232, 90, 26, 0.32);
}
.floating-cta svg { width: 18px; height: 18px; }

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.hero-orb-1 {
  top: -15%;
  right: -5%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(232, 90, 26, 0.18) 0%, transparent 68%);
}
.hero-orb-2 {
  bottom: -20%;
  left: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 68%);
}

.float-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
}

.hero-badge {
  background: var(--orange-soft) !important;
  border-color: rgba(232, 90, 26, 0.2) !important;
}

.sector-card {
  position: relative;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.35s ease;
}
.sector-card span { color: var(--text) !important; }
.sector-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.sector-card:hover {
  border-color: rgba(232, 90, 26, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.sector-card:hover::before { opacity: 1; }

.visual-panel {
  background: linear-gradient(145deg, #ffffff 0%, var(--bg-warm) 50%, rgba(232, 90, 26, 0.06) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.visual-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(232, 90, 26, 0.1), transparent 55%);
  pointer-events: none;
}

.filter-btn {
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--orange);
  border-color: rgba(232, 90, 26, 0.35);
  background: var(--orange-soft);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

.footer-link {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--orange); }

.site-footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}
.site-footer h4 {
  font-weight: 500 !important;
}
.site-footer .font-bold {
  font-weight: 600 !important;
}
.site-footer .font-extrabold {
  font-weight: 700 !important;
}

.reveal, .reveal-left, .reveal-right {
  opacity: 1;
  transform: none;
}

#site-header {
  position: relative;
  z-index: 300;
  width: 100%;
  max-width: 100vw;
}

#navbar {
  z-index: 300;
}

#mobile-menu-btn {
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 302;
  min-width: 44px;
  min-height: 44px;
}
@media (max-width: 1023px) {
  #mobile-menu-btn {
    display: inline-flex !important;
  }
}


#mobile-menu {
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -20px 0 60px rgba(12, 12, 12, 0.08);
  z-index: 280;
}
#mobile-menu.open { transform: translateX(0); }
#mobile-menu a { color: var(--muted); }
#mobile-menu a.text-white,
#mobile-menu a:first-of-type { color: var(--text); }

.page-hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  border: 1px solid rgba(232, 90, 26, 0.15);
  border-radius: 12px;
  color: var(--orange);
}

.case-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 6px;
}

.trust-pill {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}
.trust-pill:hover {
  border-color: rgba(232, 90, 26, 0.25);
  color: var(--text);
}

.chart-bar span {
  flex: 1;
  background: linear-gradient(180deg, var(--orange) 0%, rgba(232, 90, 26, 0.35) 100%);
  border-radius: 3px 3px 0 0;
}

#book-modal { background: rgba(12, 12, 12, 0.4) !important; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb {
  background: #d4cfc8;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: #b8b2aa; }

/* Logo marquee */
.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: logo-marquee 35s linear infinite;
}
.logo-marquee-track:hover { animation-play-state: paused; }
@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-placeholder {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 56px;
  margin: 0 1.25rem;
  padding: 0 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}
.brand-logo-card:hover {
  border-color: rgba(232, 90, 26, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.brand-logo-card span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.performance-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.performance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.performance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 90, 26, 0.2);
}
.performance-card:hover::before { opacity: 1; }
.performance-roas {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.performance-roas span { color: var(--orange); }

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}
.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 90, 26, 0.2);
}
.founder-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--bg-warm) 0%, rgba(232, 90, 26, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.founder-photo::after {
  content: 'Photo Placeholder';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  font-family: var(--font-display);
}
.founder-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.founder-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.25s ease;
}
.founder-social a:hover {
  border-color: rgba(232, 90, 26, 0.35);
  color: var(--orange);
  background: var(--orange-soft);
}

/* Homepage founder preview — concise cards */
.founder-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.founder-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 90, 26, 0.2);
}
.founder-preview-avatar {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--bg-warm), rgba(232, 90, 26, 0.08));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.expertise-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  margin: 0.25rem 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 6px;
}

/* About page — detailed founder profiles */
.founder-profile-detailed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.founder-profile-detailed .founder-photo {
  aspect-ratio: 16/10;
}
.founder-profile-detailed .founder-photo::after {
  content: 'Photo Placeholder';
}
.founder-achievement {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}
.founder-achievement::before {
  content: '◆';
  color: var(--orange);
  font-size: 0.5rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* Course mentors — distinct from founder section */
.mentor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mentor-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mentor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--bg-warm), rgba(232, 90, 26, 0.08));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  color: rgba(232, 90, 26, 0.45);
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .reel-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
  .reel-grid { grid-template-columns: repeat(6, 1fr); }
}
.reel-card {
  aspect-ratio: 9/16;
  background: linear-gradient(160deg, var(--bg-alt) 0%, var(--bg-warm) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  cursor: pointer;
}
.reel-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 90, 26, 0.25);
}
.reel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 12, 12, 0.5) 100%);
  z-index: 1;
}
.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.reel-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  font-family: var(--font-display);
}

.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.dashboard-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-body { padding: 1.5rem; }
.dashboard-metric {
  background: var(--orange-soft);
  border: 1px solid rgba(232, 90, 26, 0.12);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.dashboard-step {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.dashboard-step:last-child { border-bottom: none; }
.dashboard-step-num {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
}

.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--amber));
  border-radius: 1px;
}
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--bg);
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.launchpad-highlight {
  background: linear-gradient(135deg, var(--bg-warm) 0%, rgba(232, 90, 26, 0.06) 50%, var(--bg) 100%);
  border: 1px solid rgba(232, 90, 26, 0.15);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.cohort-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.cohort-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.cohort-stat-num span { color: var(--orange); }

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.25s ease;
}
.service-cta:hover { gap: 0.6rem; }

@media (max-width: 768px) {
  .floating-cta {
    bottom: 20px;
    right: 16px;
    padding: 0.875rem 1.25rem;
    font-size: 0.7rem;
  }
  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .ecosystem-node { font-size: 0.5rem; min-width: 4.5rem; padding: 0.4rem; }
  .ecosystem-hub { width: 6rem; height: 6rem; }
  .site-footer--home .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Homepage final —— */
.hero-trust-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .hero-trust-cards { grid-template-columns: repeat(2, 1fr); }
}
.hero-trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.125rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-trust-card:hover {
  border-color: rgba(232, 90, 26, 0.25);
  box-shadow: var(--shadow-md);
}
.hero-trust-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.hero-trust-card span {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
}

.ecosystem-diagram {
  position: relative;
  width: 100%;
  min-height: 320px;
  padding: 1.5rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, var(--bg-warm) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .ecosystem-diagram { min-height: 380px; }
}
.ecosystem-diagram svg.ecosystem-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}
.ecosystem-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  box-shadow: var(--shadow-orange);
}
.ecosystem-hub span {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}
.ecosystem-node {
  position: absolute;
  z-index: 2;
  min-width: 5.5rem;
  max-width: 6.5rem;
  padding: 0.5rem 0.625rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.25;
}
.ecosystem-node--tl { top: 8%; left: 6%; }
.ecosystem-node--tr { top: 8%; right: 6%; }
.ecosystem-node--ml { top: 42%; left: 2%; }
.ecosystem-node--mr { top: 42%; right: 2%; }
.ecosystem-node--bl { bottom: 8%; left: 10%; }
.ecosystem-node--br { bottom: 8%; right: 10%; }

.engine-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.engine-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 90, 26, 0.22);
}
.engine-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-soft);
  border: 1px solid rgba(232, 90, 26, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.brand-category {
  margin-bottom: 2.5rem;
}
.brand-category-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 90, 26, 0.2);
}
.industry-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1rem;
}
.industry-insight {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.performance-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.performance-dashboard-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--text);
  color: #fff;
}
.performance-dashboard-bar span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.performance-dashboard-dots {
  display: flex;
  gap: 6px;
}
.performance-dashboard-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  font-style: normal;
}
.performance-dashboard-dots i:first-child { background: #ff5f57; }
.performance-dashboard-dots i:nth-child(2) { background: #febc2e; }
.performance-dashboard-dots i:nth-child(3) { background: #28c840; }
.performance-dashboard-body {
  padding: 1.5rem;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.service-preview-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: all 0.35s ease;
}
.service-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 90, 26, 0.25);
}
.service-preview-card h3 { color: var(--text); }
.service-preview-card .service-cta { margin-top: auto; padding-top: 1.25rem; }

.course-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}
.course-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 90, 26, 0.2);
}
.course-preview-card.featured {
  border-color: rgba(232, 90, 26, 0.3);
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(232, 90, 26, 0.04) 100%);
}

.founder-home-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.founder-home-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 90, 26, 0.2);
}
.founder-home-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--bg-warm) 0%, rgba(232, 90, 26, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.founder-home-photo .initials-mark { font-size: 3.5rem; }
.founder-home-body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.founder-home-highlight {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0.75rem;
  flex: 1;
}
.founder-brand-mentions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}
.founder-brand-mentions span {
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 4px;
}

.testimonials-section { overflow: hidden; }
.testimonials-carousel {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
@media (min-width: 768px) {
  .testimonial-card { padding: 3rem 2.5rem; }
}
.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
}
.testimonial-meta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.testimonial-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-soft);
}
.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-strong);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.testimonial-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

.site-footer--home .footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .site-footer--home .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .site-footer--home .footer-grid {
    grid-template-columns: 1.4fr repeat(5, 1fr);
  }
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.25s ease;
}
.footer-social a:hover {
  border-color: rgba(232, 90, 26, 0.35);
  color: var(--orange);
  background: var(--orange-soft);
}

.prose-block {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
}
.prose-block p + p { margin-top: 1.25rem; }
.prose-block strong { color: var(--text); font-weight: 600; }

/* —— About page —— */
.about-hero-belief {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 42rem;
}
.about-hero-belief strong { color: var(--text); display: block; margin-bottom: 0.5rem; font-weight: 600; }

.story-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.story-pill {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
}

.timeline-phase-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}
.timeline-item--future {
  opacity: 0.85;
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1.25rem 0;
  margin-left: -0.5rem;
  padding-left: 0.5rem;
}
.timeline-item--future::before {
  border-style: dashed;
  background: var(--bg-alt);
}

.about-founders-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 1024px) {
  .about-founders-section { padding-top: 8rem; padding-bottom: 8rem; }
}

.founder-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
}
@media (min-width: 768px) {
  .founder-showcase-card {
    grid-template-columns: 300px 1fr;
    align-items: stretch;
    min-height: 660px;
  }
}
@media (min-width: 1024px) {
  .founder-showcase-card {
    grid-template-columns: 360px 1fr;
    align-items: stretch;
    min-height: 580px;
  }
}
.founder-showcase-visual {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 0;
  background: linear-gradient(160deg, var(--bg-warm) 0%, rgba(232, 90, 26, 0.08) 100%);
  position: relative;
  overflow: hidden;
  align-self: start;
}
@media (min-width: 768px) {
  .founder-showcase-visual {
    aspect-ratio: auto;
    height: 100%;
    align-self: stretch;
  }
}
.founder-showcase-img {
  width: 100%;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.founders-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .founders-list {
    gap: 3.5rem;
  }
}
.founders-list .founder-showcase-card {
  opacity: 1;
  visibility: visible;
  width: 100%;
  transform: none;
}
.founder-showcase-visual .initials-mark { font-size: 4.5rem; }
.founder-showcase-body {
  position: relative;
  padding: 1.75rem 1.75rem 2rem;
  align-self: start;
  min-width: 0;
}
@media (min-width: 768px) {
  .founder-showcase-body {
    padding: 2.25rem 2rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .founder-showcase-body {
    padding: 2.5rem 2.75rem;
  }
}
.founder-linkedin-pill {
  position: absolute;
  top: 2.25rem;
  right: 2rem;
  z-index: 2;
  flex-shrink: 0;
  text-decoration: none;
}
.founder-linkedin-pill:hover {
  border-color: rgba(232, 90, 26, 0.35) !important;
  color: var(--orange);
}
@media (min-width: 1024px) {
  .founder-linkedin-pill {
    top: 2.5rem;
    right: 2.75rem;
  }
}
.founder-showcase-body .founder-section-label {
  padding-right: 9rem;
}
.founder-showcase-extra-heading {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.founder-philosophy {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--orange);
  background: var(--orange-soft);
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.65;
}
.founder-section-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.ecosystem-map {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .ecosystem-map { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .ecosystem-map { grid-template-columns: repeat(4, 1fr); }
}
.ecosystem-pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.ecosystem-pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.ecosystem-pillar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ecosystem-pillar li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
}
.ecosystem-pillar li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.45rem;
  top: 0.55rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.value-card:hover {
  border-color: rgba(232, 90, 26, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.value-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 1.25rem 3rem 1.25rem 1.25rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item .faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0;
}

.mission-vision-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.mission-vision-card h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--text);
}

/* —— Services page —— */
.growth-system-diagram {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  min-height: 400px;
  padding: 2rem;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.growth-system-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
  box-shadow: var(--shadow-orange);
}
.growth-system-hub span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.25;
}
.growth-system-node {
  position: absolute;
  z-index: 2;
  padding: 0.5rem 0.75rem;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
  max-width: 5.5rem;
  line-height: 1.2;
  box-shadow: var(--shadow-sm);
}
.growth-system-node--t { top: 6%; left: 50%; transform: translateX(-50%); }
.growth-system-node--tr { top: 18%; right: 8%; }
.growth-system-node--br { bottom: 18%; right: 8%; }
.growth-system-node--b { bottom: 6%; left: 50%; transform: translateX(-50%); }
.growth-system-node--bl { bottom: 18%; left: 8%; }
.growth-system-node--tl { top: 18%; left: 8%; }

.service-block {
  scroll-margin-top: 160px;
}
.service-block-header {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}
.service-block-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.service-block-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}
.service-detail-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .service-detail-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.service-detail-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.service-detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-detail-card li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.45;
}
.service-detail-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.75rem;
}
.service-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.service-tag {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--bg-warm);
}
.service-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-pill-list span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 6px;
}
.credibility-highlight {
  background: linear-gradient(135deg, var(--bg-warm) 0%, rgba(232, 90, 26, 0.08) 100%);
  border: 1px solid rgba(232, 90, 26, 0.2);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin-top: 2rem;
}
.credibility-highlight p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.founder-expertise-mini {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .founder-expertise-mini { grid-template-columns: repeat(2, 1fr); }
}
.founder-expertise-mini .premium-card {
  padding: 1.25rem;
}
.process-steps {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(5, 1fr); }
}
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 1.5rem;
    height: 2px;
    background: var(--border-strong);
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
  }
}
.process-step-num {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--orange-soft);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--orange);
}
.services-stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .services-stats-bar { grid-template-columns: repeat(4, 1fr); }
}
.services-stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.services-stat-card .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.services-stat-card .stat-num span { color: var(--orange); }
.services-stat-card p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.services-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.services-jump-nav a {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: all 0.25s ease;
}
.services-jump-nav a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-soft);
}

/* —— Academy / Courses —— */
.academy-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.875rem;
  border-radius: 999px;
  background: var(--orange-soft);
  border: 1px solid rgba(232, 90, 26, 0.2);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.academy-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .academy-trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.academy-trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.academy-trust-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.35;
}
.comparison-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .comparison-grid { grid-template-columns: repeat(2, 1fr); }
}
.comparison-col {
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
}
.comparison-col--traditional {
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.comparison-col--academy {
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(232, 90, 26, 0.06) 100%);
  border: 1px solid rgba(232, 90, 26, 0.25);
  box-shadow: var(--shadow-md);
}
.comparison-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comparison-list li {
  font-size: 0.9rem;
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.45;
}
.comparison-col--traditional .comparison-list li { color: var(--muted); }
.comparison-col--traditional .comparison-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
  font-size: 0.75rem;
}
.comparison-col--academy .comparison-list li { color: var(--text-secondary); }
.comparison-col--academy .comparison-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.program-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 90, 26, 0.3);
}
.program-card.featured {
  border-color: rgba(232, 90, 26, 0.35);
  background: linear-gradient(180deg, rgba(232, 90, 26, 0.04) 0%, var(--bg-card) 40%);
}
.program-card-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border);
}
.program-card-body {
  padding: 1.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.program-card-footer {
  padding: 0 2rem 2rem;
  margin-top: auto;
}
.program-duration {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.learn-pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.learn-pipeline-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
  min-width: 100px;
  box-shadow: var(--shadow-sm);
}
.learn-pipeline-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text);
}
.learn-pipeline-item span {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.25rem;
  display: block;
}
.learn-pipeline-arrow {
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .learn-pipeline-arrow { display: none; }
  .learn-pipeline { flex-direction: column; }
}

.framework-steps {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .framework-steps {
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
  }
}
.framework-step {
  text-align: center;
  position: relative;
}
.framework-step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.framework-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.framework-step p {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--faint); }

.course-facts-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .course-facts-bar { grid-template-columns: repeat(4, 1fr); }
}
.course-fact {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.course-fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}
.course-fact span {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
  display: block;
}

.curriculum-module {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
}
.curriculum-module summary {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  list-style: none;
  color: var(--text);
}
.curriculum-module summary::-webkit-details-marker { display: none; }
.curriculum-module .module-body {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
}
.curriculum-module ul {
  list-style: none;
  padding: 0.75rem 0 0;
  margin: 0;
}
.curriculum-module li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
}
.curriculum-module li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.7rem;
}

/* ═══════════════════════════════════════════════════════════════
   LOGO
   ═══════════════════════════════════════════════════════════════ */
.logo-link img, #site-header img[alt="Being Ambitious"] {
  height: 2.25rem;
  width: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   AUTO-SCROLL BRAND TICKER
   ═══════════════════════════════════════════════════════════════ */
.brand-ticker {
  overflow: hidden;
  padding: 1.25rem 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.brand-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 38s linear infinite;
  align-items: center;
}
.brand-ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  flex-shrink: 0;
  padding: 0.5rem 2rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}
.ticker-item::after {
  content: '◆';
  color: var(--orange);
  font-size: 0.45rem;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════
   HERO TRUST CARDS — HIGHLIGHTED
   ═══════════════════════════════════════════════════════════════ */
.hero-trust-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 90, 26, 0.18);
  border-radius: 14px;
  padding: 1.125rem 1.25rem;
  box-shadow: 0 2px 12px rgba(232, 90, 26, 0.07), var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hero-trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  opacity: 0.7;
}
.hero-trust-card:hover {
  border-color: rgba(232, 90, 26, 0.35);
  box-shadow: 0 4px 20px rgba(232, 90, 26, 0.12), var(--shadow-md);
  transform: translateY(-2px);
}
.hero-trust-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}
.hero-trust-card span {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════
   ANTLER FEATURED BRAND CARD
   ═══════════════════════════════════════════════════════════════ */
.brand-logo-card--featured {
  border-color: rgba(232, 90, 26, 0.3) !important;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232, 90, 26, 0.04) 100%) !important;
  box-shadow: 0 4px 16px rgba(232, 90, 26, 0.1) !important;
  position: relative;
}
.brand-logo-card--featured::after {
  content: 'Partner';
  position: absolute;
  top: 8px; right: 8px;
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}
.brand-logo-card--featured span {
  color: var(--text) !important;
  font-size: 0.85rem !important;
}

/* ═══════════════════════════════════════════════════════════════
   OUR PURPOSE — ENRICHED SECTION
   ═══════════════════════════════════════════════════════════════ */
.purpose-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.purpose-stat {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.purpose-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.purpose-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.35rem;
  font-family: var(--font-display);
}

/* Scrollbar Hide Helper for Horizontal Scrolling Sections */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Hero Slide Item styling */
.hero-slide-item {
  width: 100%;
}

.text-justify { text-align: justify; }

/* Full-bleed homepage strips */
.hero-fullbleed-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.hero-credibility-fullbleed {
  padding: 1.25rem clamp(1rem, 4vw, 3rem);
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero-credibility-fullbleed .hero-credibility-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
  max-width: none;
  grid-template-columns: unset;
}
@media (min-width: 900px) {
  .hero-credibility-fullbleed .hero-credibility-list {
    flex-wrap: nowrap;
    justify-content: space-evenly;
  }
}
.hero-credibility-fullbleed .hero-credibility-list li {
  flex: 1 1 auto;
  text-align: center;
  min-width: 140px;
}
.logo-marquee-fullbleed {
  padding: 1.25rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logo-marquee-fullbleed .logo-marquee-track {
  width: max-content;
}

/* Antler highlight */
.antler-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(232, 90, 26, 0.25);
  background: linear-gradient(180deg, rgba(232, 90, 26, 0.08) 0%, transparent 100%);
}
.antler-highlight-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.antler-highlight-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

/* Hero credibility box */
.hero-credibility-box {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
}
.hero-credibility-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .hero-credibility-list { grid-template-columns: repeat(2, 1fr); }
}
.hero-credibility-list li {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
.hero-credibility-list strong {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  display: block;
  font-size: 0.85rem;
}

/* Shark Tank logos — full colour, no containers */
.shark-logo-set {
  background: none;
  border: none;
  box-shadow: none;
}
.shark-logo-img {
  height: 2.75rem;
  width: auto;
  max-width: 11rem;
  min-width: 0;
  object-fit: contain;
  object-position: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0;
  padding: 0 0.35rem;
  opacity: 1;
  filter: none !important;
  -webkit-filter: none !important;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.shark-logo-img--wide {
  max-width: 9.5rem;
}
.shark-logo-set {
  align-items: center;
  gap: 2rem !important;
}
.shark-logo-img:hover {
  transform: scale(1.02);
}
@media (max-width: 767px) {
  .shark-logo-img {
    height: 2.25rem;
    max-width: 8.5rem;
  }
  .shark-logo-img--wide {
    max-width: 7.5rem;
  }
  .shark-logo-set {
    gap: 1.5rem !important;
  }
}
.logo-marquee-fullbleed .logo-marquee {
  background: transparent;
  border: none;
  box-shadow: none;
}
.logo-marquee--hero { border-radius: 12px; background: var(--bg-card); border: 1px solid var(--border); }

/* Hero performance panel */
.hero-performance-panel {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.hero-performance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.hero-performance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero-performance-stat {
  padding: 0.75rem;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.hero-performance-stat .stat-val {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--orange);
}
.hero-performance-stat .stat-lbl {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-performance-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 80px;
  padding-top: 0.5rem;
}
.perf-bar {
  flex: 1;
  height: var(--h, 50%);
  min-height: 12px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--orange-light), var(--orange));
  opacity: 0.85;
}

/* Industries auto-scroll */
.industries-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.industries-marquee-track {
  display: flex;
  width: max-content;
  animation: industries-scroll 40s linear infinite;
}
.industries-marquee-track:hover { animation-play-state: paused; }
.industries-marquee-group {
  display: flex;
  gap: 2rem;
  padding: 0 1rem;
  flex-shrink: 0;
}
@keyframes industries-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.industry-pill {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
  padding: 0.5rem 0;
}
.industry-pill em {
  font-style: normal;
  color: var(--orange);
  font-size: 0.75rem;
  margin-left: 0.5rem;
  font-weight: 700;
}

/* Footer full width */
.site-footer-inner {
  width: 100%;
  max-width: none;
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
}
.site-footer--home .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem 2.5rem;
  width: 100%;
}
@media (max-width: 1200px) {
  .site-footer--home .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .site-footer--home .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-cta-col { min-width: 0; }

/* About — story visual */
.about-story-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  align-self: stretch;
  height: 100%;
}
.about-office-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

/* Journey — full width horizontal line */
.journey-section-full {
  width: 100%;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}
.journey-timeline-line {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  padding-top: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.journey-timeline-line::before {
  content: '';
  position: absolute;
  top: 0.65rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 50%, var(--amber) 100%);
  z-index: 0;
}
.journey-timeline-line .timeline-item {
  flex: 1 1 0;
  min-width: 140px;
  max-width: none;
  scroll-snap-align: start;
  text-align: center;
  padding: 1.75rem 0.5rem 0;
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  box-shadow: none;
}
.journey-timeline-line .timeline-phase-num {
  display: inline-block;
  background: var(--bg-alt);
  padding: 0 0.35rem;
  position: relative;
}
.journey-timeline-line .timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--bg-alt);
  box-shadow: 0 0 0 2px var(--orange-soft);
}
@media (max-width: 900px) {
  .journey-timeline-line .timeline-item {
    flex: 0 0 min(200px, 75vw);
  }
}

/* Founder LinkedIn — official brand icon */
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: transparent;
  border: none;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.founder-linkedin:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 102, 194, 0.28);
}
.founder-linkedin:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.founder-linkedin img {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 6px;
}

/* Footer social — brand icons */
.footer-social-brand {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
}
.footer-social-brand:hover {
  background: transparent !important;
  border-color: transparent !important;
  transform: translateY(-2px);
  color: var(--orange);
}
.footer-social-brand svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  overflow: visible;
}
.footer-social-brand img {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

/* Values — 4 cards from reference */
.values-grid-four {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .values-grid-four { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .values-grid-four { grid-template-columns: repeat(4, 1fr); }
}
.value-card-premium {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.value-card-premium:hover {
  border-color: rgba(232, 90, 26, 0.3);
  box-shadow: var(--shadow-md);
}
.value-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.value-card-premium h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.value-card-premium p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: justify;
}

/* Contact — three cards, buttons aligned one row */
.contact-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .contact-cards-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-card-equal {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}
.contact-card-equal .contact-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-card-equal .contact-card-actions {
  margin-top: auto;
  padding-top: 2rem;
}
.contact-card-equal .contact-card-actions .btn-primary,
.contact-card-equal .contact-card-actions .btn-secondary,
.contact-card-equal .contact-card-actions .whatsapp-btn {
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}

/* Approach hub diagram */
.approach-hub-diagram {
  position: relative;
  width: 100%;
  min-height: 340px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
}
.approach-hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: var(--orange-soft);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  z-index: 2;
}
.approach-hub-center span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  line-height: 1.2;
}
.approach-hub-node {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  white-space: nowrap;
}
.approach-hub-node--t  { top: 8%; left: 50%; transform: translateX(-50%); }
.approach-hub-node--tr { top: 18%; right: 8%; }
.approach-hub-node--br { bottom: 18%; right: 8%; }
.approach-hub-node--b  { bottom: 8%; left: 50%; transform: translateX(-50%); }
.approach-hub-node--bl { bottom: 18%; left: 8%; }
.approach-hub-node--tl { top: 18%; left: 8%; }

/* Portfolio galleries */
.portfolio-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}
.portfolio-gallery-item,
.portfolio-mockup-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.portfolio-gallery-item img {
  height: 280px;
  width: auto;
  max-width: 220px;
  object-fit: cover;
  display: block;
}
.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.portfolio-masonry--ugc { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.portfolio-mockup-item img { width: 100%; display: block; }

/* Device mockups */
.device-mockup {
  background: #2a2928;
  border-radius: 12px;
  padding: 0.5rem;
  border: 2px solid #3d3c3a;
}
.device-mockup--laptop { max-width: 320px; padding-top: 0.75rem; border-radius: 10px 10px 4px 4px; }
.device-mockup--laptop::before {
  content: '';
  display: block;
  height: 6px;
  width: 40%;
  margin: 0 auto 0.5rem;
  background: #444;
  border-radius: 3px;
}
.device-mockup--mobile { max-width: 140px; border-radius: 20px; padding: 0.65rem 0.35rem; }
.device-mockup-screen {
  border-radius: 6px;
  overflow: hidden;
  background: #111;
}
.device-mockup-screen img { width: 100%; height: auto; display: block; }

/* Growth Stack — services approach */
.growth-stack {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
}
.growth-stack__title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  text-align: center;
  margin: 0 0 1.5rem;
}
.growth-stack__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}
.growth-stack__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--orange);
  text-align: center;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.growth-stack__card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 90, 26, 0.25);
}
.growth-stack__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.3;
}
.growth-stack__tagline {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1.25rem 0 0;
  line-height: 1.55;
}

/* Horizontal proof carousels */
.proof-carousel {
  cursor: grab;
  scroll-padding-inline: 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 90, 26, 0.35) transparent;
}
.proof-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}
.proof-carousel::-webkit-scrollbar {
  height: 6px;
}
.proof-carousel::-webkit-scrollbar-thumb {
  background: rgba(232, 90, 26, 0.35);
  border-radius: 999px;
}

/* Content Ecosystem — stacked carousel blocks */
.content-ecosystem-layout {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.content-ecosystem-block {
  display: flex;
  flex-direction: column;
}
.content-ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .content-ecosystem-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .content-ecosystem-grid {
    gap: 2.5rem;
  }
}
.content-ecosystem-col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.content-ecosystem-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.content-ecosystem-ugc {
  margin-top: 2.5rem;
  text-align: center;
}
.content-ecosystem-ugc .content-ecosystem-heading {
  margin-bottom: 1.25rem;
}
.content-ecosystem-col .home-proof-row,
.content-ecosystem-ugc .home-proof-row {
  flex: 1;
  min-height: 200px;
}

/* Homepage proof rows */
.home-proof-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.home-proof-row img {
  flex: 0 0 auto;
  height: 220px;
  width: auto;
  max-width: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  scroll-snap-align: center;
}
.home-proof-row--social img {
  max-width: 160px;
}
.home-proof-row--websites {
  align-items: flex-end;
  gap: 1.25rem;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .home-proof-row--websites {
    justify-content: center;
  }
}
.home-proof-row--centered {
  justify-content: center;
}
.home-proof-row--ugc {
  max-width: none;
  margin: 0;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .content-ecosystem-col .home-proof-row--websites .device-mockup--laptop {
    flex: 0 0 min(200px, 70vw);
  }
}

/* Horizontal curriculum modules */
.curriculum-timeline--horizontal,
.module-timeline--horizontal {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.curriculum-timeline--horizontal > *,
.module-timeline--horizontal > * {
  flex: 0 0 min(260px, 80vw);
  min-width: 0;
}

/* Phase tabs — readable on all phases */
.phase-tab-btn {
  color: var(--muted) !important;
  background: var(--bg-card) !important;
}
.phase-tab-btn.active {
  color: #fff !important;
  background: var(--orange) !important;
  border-color: var(--orange) !important;
}
.phase-content { color: var(--text-secondary); }

/* Framework wide */
.framework-grid--wide {
  max-width: none !important;
  width: 100%;
}

/* Sticky services nav */
.services-with-nav {
  position: relative;
}
.services-nav-sticky {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.services-nav-sticky .services-jump-nav {
  border-bottom: none;
  padding-bottom: 0.5rem;
}
.services-jump-nav a.active {
  color: var(--orange);
  border-color: var(--orange);
  background: var(--orange-soft);
}

/* Course pages — shared layout */
.course-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.course-pill {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.course-learn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .course-learn-grid { grid-template-columns: repeat(2, 1fr); }
}
.course-learn-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 0.9rem;
  color: var(--muted);
}
.course-learn-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.course-outcomes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.course-outcomes-list li {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted);
}
.course-outcomes-list li::before {
  content: '✓';
  color: var(--orange);
  font-family: var(--font-display);
  margin-right: 0.5rem;
}
.course-module-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.course-module-card {
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: start;
}
.course-module-card h4 {
  color: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.course-cta-section {
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-warm) 100%);
}

/* ==========================================================================
   PREMIUM MOBILE — compact layout, desktop parity at smaller scale
   ========================================================================== */
@media (max-width: 767px) {
  .section-spacing {
    padding: 3.25rem 0;
  }
  .section-spacing-sm {
    padding: 2.5rem 0;
  }
  .page-end-cta {
    padding: 3.25rem 0;
  }

  /* Hero — tighter, no endless vertical stretch */
  .hero-section--home {
    padding-top: 72px;
    padding-bottom: 0;
  }
  .hero-inner {
    padding: 2rem 1rem 0.75rem;
  }
  .hero-credibility-fullbleed {
    margin-top: 0;
  }
  .hero-section--home h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
    line-height: 1.1;
  }
  .hero-section--home .hero-sub {
    font-size: 0.95rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary,
  .hero-ctas button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero-performance-panel {
    padding: 1rem;
    margin-top: 1rem;
  }
  .hero-performance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .hero-performance-stat {
    padding: 0.5rem;
  }
  .antler-highlight {
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
  }

  /* Credibility + marquee */
  .hero-credibility-fullbleed {
    padding: 1rem;
  }
  .hero-credibility-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .hero-credibility-list li {
    font-size: 0.72rem;
  }
  .logo-marquee-fullbleed {
    padding: 0.85rem 0;
  }
  .shark-logo-img {
    height: 2.25rem;
    max-width: 140px;
  }

  /* Section headings — scaled down */
  .section-spacing h2,
  .page-hero h1 {
    font-size: clamp(1.5rem, 6.5vw, 2rem) !important;
  }

  /* Engine / value cards — 2-up grid like desktop density */
  .stagger-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .programs-grid,
  .journeys-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .engine-card {
    padding: 1rem !important;
  }
  .engine-card h3 {
    font-size: 0.85rem !important;
  }
  .engine-card p {
    font-size: 0.7rem !important;
    line-height: 1.35;
  }
  .engine-card-icon {
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.5rem;
  }

  /* Content ecosystem — compact proof strips */
  .content-ecosystem-grid {
    gap: 1.75rem;
  }
  .content-ecosystem-ugc {
    margin-top: 1.75rem;
  }
  .home-proof-row img {
    height: 140px;
    max-width: 110px;
    border-radius: 8px;
  }
  .home-proof-row--social img {
    max-width: 100px;
  }
  .home-proof-row--websites {
    gap: 0.75rem;
  }
  .device-mockup--laptop {
    flex: 0 0 min(160px, 42vw);
  }
  .device-mockup--mobile {
    flex: 0 0 min(72px, 18vw);
  }

  /* About — founders & journey */
  .founders-list {
    gap: 2.5rem !important;
  }
  .founder-showcase-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  .founder-showcase-visual {
    width: min(280px, 85vw);
    aspect-ratio: 3 / 4;
    height: auto;
    margin: 1.25rem auto 0;
    border-radius: 16px;
    align-self: center;
  }
  .founder-showcase-img {
    object-fit: cover;
    object-position: center 18%;
  }
  .founder-showcase-body {
    width: 100%;
    padding: 1.5rem 1.25rem 2rem;
  }
  .founder-showcase-body .founder-section-label {
    padding-right: 0;
  }
  .founder-linkedin-pill {
    position: static;
    margin-bottom: 1rem;
    width: fit-content;
  }
  .journey-section-full {
    padding-left: 0;
    padding-right: 0;
  }
  .journey-timeline-line {
    padding-top: 1.5rem;
  }
  .values-grid-four {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .value-card-premium {
    padding: 1.25rem 1rem;
  }

  /* Services — jump nav scroll */
  .services-jump-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
  }

  /* Footer — 2 column compact */
  .site-footer--home .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .footer-cta-col {
    grid-column: 1 / -1;
  }
  .footer-cta-buttons {
    flex-direction: row;
    gap: 0.75rem;
  }
  .footer-cta-buttons .btn-primary,
  .footer-cta-buttons .btn-secondary,
  .footer-cta-buttons a,
  .footer-cta-buttons button {
    flex: 1;
  }

  /* Premium cards — less padding */
  .premium-card {
    padding: 1.25rem !important;
  }

  /* Page hero */
  .page-hero-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .page-hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.25rem) !important;
  }
}

@media (max-width: 399px) {
  .stagger-cards {
    grid-template-columns: 1fr !important;
  }
  .hero-credibility-list {
    grid-template-columns: 1fr;
  }
  .values-grid-four {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   GLOBAL — no horizontal page scroll (320px–768px+)
   ========================================================================== */
html {
  overflow-x: clip;
  max-width: 100%;
}

main,
section,
header,
footer,
.hero-inner,
.page-hero-content,
.site-footer-inner,
.max-w-7xl,
.max-w-4xl,
.max-w-5xl,
.max-w-3xl {
  max-width: 100%;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}
.founder-showcase-img {
  height: 100% !important;
}

.premium-card,
.engine-card,
.contact-card-equal,
.founder-showcase-card,
.device-mockup,
.home-proof-row img {
  max-width: 100%;
}

.btn-primary,
.btn-secondary,
.whatsapp-btn {
  max-width: 100%;
  word-break: break-word;
}

@media (max-width: 1023px) {
  .logo-marquee-fullbleed,
  .hero-fullbleed-strip {
    max-width: 100vw;
    overflow: hidden;
  }

  .module-timeline--horizontal,
  .curriculum-timeline--horizontal,
  .course-module-scroll,
  .home-proof-row,
  .journey-timeline-line,
  .services-jump-nav {
    max-width: 100%;
  }

  .hero-title,
  .page-hero h1,
  h1, h2 {
    overflow-wrap: anywhere;
    word-wrap: break-word;
  }
}

/* —— Creator Connect —— */
.creator-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.creator-filter-btn {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s ease;
}
.creator-filter-btn:hover,
.creator-filter-btn.active {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-soft);
}
.creator-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.creator-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.creator-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 90, 26, 0.2);
}
.creator-card__visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}
.creator-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.creator-card__visual--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--orange-soft) 100%);
}
.creator-card__visual--placeholder span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.creator-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.creator-carousel {
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  gap: 1.5rem !important;
  padding-bottom: 1rem;
  scrollbar-width: none; /* Firefox */
}
.creator-carousel::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.creator-carousel .creator-card {
  flex: 0 0 320px !important;
  scroll-snap-align: start !important;
}


/* ─── CREATOR PORTFOLIO STYLES ─── */
.portfolio-hero {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}
.portfolio-hero-img-container {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.portfolio-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--orange-soft);
  color: var(--orange);
  border: 1px solid var(--orange-glow);
}
.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.work-grid-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  background: #000;
}
.work-grid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.85;
}
.work-grid-card:hover img {
  transform: scale(1.05);
  opacity: 0.95;
}
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(232, 90, 26, 0.9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(232, 90, 26, 0.4);
  transition: all 0.3s ease;
  z-index: 10;
}
.work-grid-card:hover .video-play-button {
  background: var(--orange-light);
  transform: translate(-50%, -50%) scale(1.1);
}
.work-grid-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
  z-index: 5;
}

/* Ensure mobile menu button is hidden on desktop viewports */
@media (min-width: 1024px) {
  #mobile-menu-btn {
    display: none !important;
  }
}
