:root {
  --purple-dark: #221a5f;
  --purple-core: #392c8d;
  --purple-tint: #ebe8ff;
  --orange: #f19d49;
  --magenta: #e13670;
  --neutral-50: #f8f8fc;
  --neutral-100: #f0eff8;
  --neutral-300: #c5c2dc;
  --neutral-500: #6d699a;
  --neutral-600: #4e4b72;
  --border: rgba(57, 44, 141, 0.12);
  --white: #fff;
  --body-copy-size: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  font-size: var(--body-copy-size);
  line-height: 1.65;
  color: var(--purple-dark);
  background: var(--page-bg, #fff);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-wrap: pretty;
}

body.nav-locked {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

.page {
  --nav-link-color: var(--purple-dark);
  --nav-link-active: var(--purple-core);
  --nav-overlay-link-color: var(--purple-dark);
  --nav-overlay-link-active: var(--purple-core);
  --nav-scrolled-link-color: var(--neutral-600);
  --nav-scrolled-link-active: var(--purple-core);
  --nav-toggle-color: var(--purple-dark);
  --nav-toggle-overlay-color: var(--purple-dark);
  --nav-toggle-scrolled-color: var(--purple-dark);
  --nav-overlay-bg: rgba(255, 255, 255, 0.88);
  --nav-overlay-border: var(--border);
  --mobile-menu-bg: #fff;
  --mobile-menu-link-color: var(--purple-dark);
  --mobile-menu-link-active: var(--purple-core);
  --mobile-menu-border: var(--border);
  --hero-background: none;
  --hero-border: var(--border);
  --hero-title-color: var(--purple-dark);
  --hero-copy-color: var(--neutral-600);
  --hero-copy-size: var(--body-copy-size);
  --hero-copy-line: 1.7;
  --hero-copy-max: 640px;
  --hero-title-max: 760px;
  --hero-inner-max: 760px;
  --section-padding-x: 48px;
  --hero-padding-bottom: 96px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

section {
  padding: 96px 48px;
}

:where(section:not(.hero)) > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 8px 48px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease-out, border-color 300ms ease-out, backdrop-filter 300ms ease-out;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.site-nav.nav-overlay {
  background: var(--nav-overlay-bg);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--nav-overlay-border);
}

.site-nav.menu-open {
  background: var(--mobile-menu-bg);
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.site-nav .logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-nav .logo img {
  height: 28px;
  width: auto;
  max-width: min(180px, calc(100vw - 112px));
  object-fit: contain;
}

.site-nav .dark-logo {
  display: none;
}

.site-nav .light-logo {
  display: block;
}

.site-nav .links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav .links a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--nav-link-color);
  transition: color 150ms ease-out;
}

.site-nav .links a:hover,
.site-nav .links a.active {
  color: var(--nav-link-active);
}

.site-nav.nav-overlay .links a {
  color: var(--nav-overlay-link-color);
}

.site-nav.nav-overlay .links a:hover,
.site-nav.nav-overlay .links a.active {
  color: var(--nav-overlay-link-active);
}

.site-nav.scrolled .links a {
  color: var(--nav-scrolled-link-color);
}

.site-nav.scrolled .links a:hover,
.site-nav.scrolled .links a.active {
  color: var(--nav-scrolled-link-active);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--nav-toggle-color);
  transition: background 250ms ease-out, transform 300ms ease-out, opacity 300ms ease-out;
}

.site-nav.nav-overlay .nav-toggle span {
  background: var(--nav-toggle-overlay-color);
}

.site-nav.scrolled .nav-toggle span,
.site-nav.menu-open .nav-toggle span {
  background: var(--nav-toggle-scrolled-color);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  flex-direction: column;
  gap: 8px;
  padding: 40px 32px;
  background: var(--mobile-menu-bg);
}

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

.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--mobile-menu-border);
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mobile-menu-link-color);
  transition: color 150ms ease-out;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.mobile-menu a:hover {
  color: var(--mobile-menu-link-active);
}

.site-nav .links a.nav-q3-sprint,
.site-nav .links a.nav-q3-sprint:hover,
.site-nav .links a.nav-q3-sprint.active,
.site-nav.nav-overlay .links a.nav-q3-sprint,
.site-nav.nav-overlay .links a.nav-q3-sprint:hover,
.site-nav.nav-overlay .links a.nav-q3-sprint.active,
.site-nav.scrolled .links a.nav-q3-sprint,
.site-nav.scrolled .links a.nav-q3-sprint:hover,
.site-nav.scrolled .links a.nav-q3-sprint.active,
.mobile-menu a.nav-q3-sprint,
.mobile-menu a.nav-q3-sprint:hover {
  background: linear-gradient(90deg, #e74186 0%, #ca3164 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: #ca3164;
  -webkit-text-fill-color: transparent;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: #ca3164;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--section-padding-x) var(--hero-padding-bottom);
  background: var(--hero-background);
  border-bottom: 1px solid var(--hero-border);
}

.hero-inner {
  max-width: var(--hero-inner-max);
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 28px;
  padding: 6px 18px;
  border: 2px solid transparent;
  border-radius: 9999px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--purple-core);
}

.hero-eyebrow-gradient {
  background: var(--hero-eyebrow-background);
}

.hero-title {
  max-width: var(--hero-title-max);
  margin-bottom: 24px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3rem, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--hero-title-color);
}

.hero-title em {
  font-style: normal;
  color: var(--orange);
}

.hero-caption,
.hero-sub {
  max-width: var(--hero-copy-max);
  margin-bottom: 40px;
  font-family: var(--hero-copy-family, 'Inter', sans-serif);
  font-size: var(--hero-copy-size);
  font-style: var(--hero-copy-style, normal);
  line-height: var(--hero-copy-line);
  color: var(--hero-copy-color);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary,
.btn-cta,
.btn-cta-outline,
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  text-decoration: none;
  transition: background 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out, transform 150ms ease-out;
}

.btn-primary {
  padding: 14px 28px;
  background: var(--purple-core);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.btn-primary:hover {
  background: #4435a4;
  color: #fff;
  transform: translateY(-1px);
}

.btn-primary svg {
  transition: transform 150ms ease-out;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  padding: 14px 28px;
  border: 1.5px solid rgba(57, 44, 141, 0.25);
  color: var(--purple-core);
  font-size: 0.9375rem;
  font-weight: 600;
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--purple-core);
  background: rgba(57, 44, 141, 0.08);
}

.btn-hero-lg {
  font-size: 1.5rem;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-300);
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 48px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--purple-dark);
}

.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.js .fade-in {
  opacity: 0;
  transform: translateY(24px);
}

.js .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 80ms;
}

.delay-2 {
  transition-delay: 160ms;
}

.delay-3 {
  transition-delay: 240ms;
}

.text-orange {
  color: var(--orange);
}

.site-footer {
  position: relative;
  overflow: hidden;
  min-height: 518px;
  padding: 80px var(--section-padding-x) 160px;
  background: #f8f6f1;
}

.footer-inner {
  position: relative;
  width: min(100%, 1024px);
  min-height: 278px;
  margin: 0 auto;
}

.footer-content {
  position: relative;
  z-index: 2;
  width: min(100%, 419px);
}

.footer-symbol {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.footer-symbol img {
  width: 100%;
  height: 100%;
}

.footer-content h2 {
  margin-bottom: 40px;
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  color: var(--purple-core);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  color: #000;
}

.footer-links a {
  transition: color 150ms ease-out;
}

.footer-links a:hover {
  color: var(--purple-core);
}

.footer-art {
  position: absolute;
  z-index: 1;
  top: -72px;
  left: 466px;
  width: 838px;
  max-width: none;
  height: 838px;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.page-home {
  --page-bg: #fff;
  --nav-link-color: rgba(255, 255, 255, 0.65);
  --nav-link-active: #fff;
  --nav-overlay-link-color: rgba(255, 255, 255, 0.72);
  --nav-overlay-link-active: #fff;
  --nav-scrolled-link-color: var(--neutral-600);
  --nav-scrolled-link-active: var(--purple-core);
  --nav-toggle-color: rgba(255, 255, 255, 0.8);
  --nav-toggle-overlay-color: rgba(255, 255, 255, 0.8);
  --nav-toggle-scrolled-color: var(--purple-dark);
  --nav-overlay-bg: rgba(34, 26, 95, 0.45);
  --nav-overlay-border: rgba(255, 255, 255, 0.08);
  --mobile-menu-bg: var(--purple-dark);
  --mobile-menu-link-color: rgba(255, 255, 255, 0.7);
  --mobile-menu-link-active: #fff;
  --mobile-menu-border: rgba(255, 255, 255, 0.08);
  --hero-background:
    linear-gradient(to top, rgba(34, 26, 95, 0.92) 0%, rgba(34, 26, 95, 0.55) 50%, rgba(34, 26, 95, 0.35) 100%),
    url('assets/hero-bg.jpg') center center / cover no-repeat;
  --hero-border: rgba(255, 255, 255, 0.08);
  --hero-title-color: #fff;
  --hero-copy-color: rgb(222, 219, 250);
  --hero-copy-size: var(--body-copy-size);
  --hero-copy-line: 1.5;
  --hero-copy-max: 800px;
  --hero-title-max: 624px;
  --hero-inner-max: 900px;
  --home-sprint-bar-height: 109px;
}

.page-home .site-nav {
  padding-inline: 32px;
}

.page-home .site-nav .dark-logo {
  display: block;
}

.page-home .site-nav .light-logo {
  display: none;
}

.page-home .site-nav.scrolled .dark-logo {
  display: none;
}

.page-home .site-nav.scrolled .light-logo {
  display: block;
}

.page-home .hero {
  min-height: calc(100vh - var(--home-sprint-bar-height));
  min-height: calc(100svh - var(--home-sprint-bar-height));
  padding-bottom: clamp(56px, 8vh, 88px);
}

.page-home .hero-title {
  margin-bottom: 40px;
}

.page-home .hero-caption {
  margin-bottom: 48px;
}

.page-home .btn-home-hero {
  background: var(--orange);
  color: var(--purple-dark);
}

.page-home .btn-home-hero:hover {
  background: #f4ad63;
  color: var(--purple-dark);
}

.page-home .section-heading-tight {
  margin-bottom: 40px;
}

.home-sprint-bar {
  --ticker-gap: clamp(28px, 5vw, 72px);
  position: relative;
  display: block;
  overflow: hidden;
  min-height: var(--home-sprint-bar-height);
  padding: 24px 0;
  background:
    radial-gradient(circle at 8% 28%, #ca3164 0 18%, transparent 36%),
    radial-gradient(circle at 34% 4%, #b42b5a 0 22%, transparent 46%),
    radial-gradient(circle at 72% 34%, #ca3164 0 26%, transparent 54%),
    radial-gradient(circle at 96% 78%, #b42b5a 0 24%, transparent 48%),
    linear-gradient(115deg, #b42b5a 0%, #ca3164 48%, #b42b5a 100%);
  color: #fff;
  border-bottom: 1px solid rgba(34, 26, 95, 0.12);
  box-shadow: 0 18px 40px rgba(225, 54, 112, 0.18);
}

.home-sprint-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 0 0.5px, transparent 0.8px),
    radial-gradient(circle, rgba(34, 26, 95, 0.18) 0 0.5px, transparent 0.9px);
  background-position: 0 0, 1.5px 1.5px;
  background-size: 3px 3px, 4px 4px;
  mix-blend-mode: overlay;
  opacity: 0.28;
  pointer-events: none;
}

.home-sprint-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.home-sprint-header strong {
  letter-spacing: 0;
}

.home-sprint-title-mobile {
  display: none;
}

.home-sprint-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
  padding: 7px 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: background 150ms ease-out, color 150ms ease-out, transform 150ms ease-out;
}

.home-sprint-button:hover,
.home-sprint-button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.home-sprint-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  animation: homeSprintTicker 30s linear infinite;
}

.home-sprint-bar:hover .home-sprint-track,
.home-sprint-bar:focus-visible .home-sprint-track {
  animation-play-state: paused;
}

.home-sprint-sequence {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--ticker-gap);
  min-width: max-content;
  padding: 0 calc(var(--ticker-gap) / 2);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.75rem, 1.05vw, 0.875rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.home-sprint-sequence > * {
  position: relative;
}

.home-sprint-sequence > *:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(var(--ticker-gap) / -2);
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transform: translate(50%, -50%);
}

@keyframes homeSprintTicker {
  from {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .home-sprint-track {
    width: 100%;
    animation: none;
  }

  .home-sprint-sequence {
    flex-wrap: wrap;
    min-width: 0;
    white-space: normal;
  }

  .home-sprint-sequence[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-sprint-title-desktop {
    display: none;
  }

  .home-sprint-title-mobile {
    display: inline;
  }
}

@media (max-width: 420px) {
  .page-home {
    --home-sprint-bar-height: 107px;
  }

  .home-sprint-header {
    gap: 10px;
    padding-inline: 10px;
    font-size: 0.8125rem;
  }

  .home-sprint-button {
    min-height: 28px;
    padding: 6px 10px;
    font-size: 16px;
  }
}

/* ── Portfolio ─────────────────────────────────────────── */

.portfolio {
  background: #feeede;
}

.portfolio .section-heading {
  color: #221a5f;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
}

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

.portfolio-card {
  --portfolio-accent: var(--purple-core);
  --portfolio-hover-fg: #fff;
  --portfolio-hover-muted: rgba(255, 255, 255, 0.78);
  --portfolio-hover-border: rgba(255, 255, 255, 0.45);
  --portfolio-hover-logo-filter: brightness(0) invert(1);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 36px 30px;
  background: #fff;
  border-radius: 8px;
  color: #5f4c3c;
  transition: background-color 180ms ease-out, color 180ms ease-out;
}

a.portfolio-card:hover,
a.portfolio-card:focus-visible {
  background: var(--portfolio-accent);
  color: var(--portfolio-hover-fg);
}

.portfolio-card-empty {
  background: transparent;
  border: 0;
}

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.portfolio-year,
.portfolio-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 4px 11px;
  border: 1px solid rgba(95, 76, 60, 0.2);
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(95, 76, 60, 0.75);
  transition: border-color 180ms ease-out, color 180ms ease-out;
}

.portfolio-year {
  font-variant-numeric: lining-nums tabular-nums;
}

.portfolio-status {
  text-transform: none;
}

.portfolio-logo {
  display: flex;
  align-items: center;
  height: 40px;
}

.portfolio-logo img {
  width: var(--portfolio-logo-width, 140px);
  height: 32px;
  object-fit: contain;
  object-position: left center;
  transition: filter 180ms ease-out;
}

.portfolio-card[data-brand="adian"] {
  --portfolio-accent: #0f785f;
  --portfolio-logo-width: 172px;
}

.portfolio-card[data-brand="pipol"] {
  --portfolio-accent: #ebff80;
  --portfolio-hover-fg: #221a5f;
  --portfolio-hover-muted: rgba(34, 26, 95, 0.72);
  --portfolio-hover-border: rgba(34, 26, 95, 0.28);
  --portfolio-hover-logo-filter: brightness(0) saturate(100%) invert(10%) sepia(57%) saturate(2688%) hue-rotate(240deg) brightness(82%) contrast(103%);
  --portfolio-logo-width: 108px;
}

.portfolio-card[data-brand="lumni"] {
  --portfolio-accent: #093fcf;
}

.portfolio-card[data-brand="samax"] {
  --portfolio-accent: #8343d6;
}

.portfolio-card[data-brand="anunci"] {
  --portfolio-accent: #f8c26c;
  --portfolio-hover-fg: #221a5f;
  --portfolio-hover-muted: rgba(34, 26, 95, 0.72);
  --portfolio-hover-border: rgba(34, 26, 95, 0.28);
  --portfolio-hover-logo-filter: brightness(0) saturate(100%) invert(10%) sepia(57%) saturate(2688%) hue-rotate(240deg) brightness(82%) contrast(103%);
}

.portfolio-card[data-brand="technation"] {
  --portfolio-logo-width: 196px;
}

.portfolio-card[data-brand="codiz"] {
  --portfolio-logo-width: 168px;
}

.portfolio-card-inactive {
  background: #fff;
  color: #4a4a4a;
  cursor: default;
  filter: grayscale(1);
}

.portfolio-card-inactive .portfolio-year,
.portfolio-card-inactive .portfolio-status {
  border-color: rgba(74, 74, 74, 0.24);
  color: rgba(74, 74, 74, 0.72);
}

.portfolio-card-inactive .portfolio-logo img {
  filter: grayscale(1);
}

.portfolio-card-inactive .portfolio-desc {
  color: #4a4a4a;
}

.portfolio-desc {
  font-size: var(--body-copy-size);
  line-height: 1.4;
  color: #5f4c3c;
  transition: color 180ms ease-out;
}

a.portfolio-card:hover .portfolio-year,
a.portfolio-card:focus-visible .portfolio-year {
  border-color: var(--portfolio-hover-border);
  color: var(--portfolio-hover-muted);
}

a.portfolio-card:hover .portfolio-logo img,
a.portfolio-card:focus-visible .portfolio-logo img {
  filter: var(--portfolio-hover-logo-filter);
}

a.portfolio-card:hover .portfolio-desc,
a.portfolio-card:focus-visible .portfolio-desc {
  color: var(--portfolio-hover-fg);
}

.manifesto {
  background: var(--purple-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.manifesto-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
}

.manifesto-divider {
  width: 1px;
  margin: 0 48px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.1);
}

.manifesto-col-num {
  margin-bottom: 20px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.manifesto-col-title {
  margin-bottom: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}

.manifesto-col-desc {
  font-size: var(--body-copy-size);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Studio (team) ─────────────────────────────────────── */

.studio {
  position: relative;
  overflow: hidden;
  padding: 120px 48px;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
}

.studio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/team-bg-optimized.jpg') center 18% / cover no-repeat;
  z-index: 0;
}

.studio::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(32, 30, 44, 0) 0%, rgba(32, 30, 44, 0.8) 100%);
  z-index: 1;
}

.studio-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  align-items: end;
}

.studio-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.studio-text-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.studio-heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.1;
  color: #fff;
}

.studio-heading em {
  font-style: normal;
  color: var(--orange);
}

.studio-desc {
  font-size: var(--body-copy-size);
  line-height: 1.5;
  color: #fff;
}

.studio-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.studio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 4px;
  background: rgba(89, 84, 120, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.studio-badge svg {
  flex-shrink: 0;
  opacity: 0.85;
}

/* ── Other (Future Shapers + Reads) ───────────────────── */

.other {
  border-top: 1px solid var(--border);
}

.other-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.other-card {
  --other-card-x-padding: 40px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 220px var(--other-card-x-padding) 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #221a5f;
  transition: opacity 200ms ease-out;
}

.other-card:hover {
  opacity: 0.92;
}

.other-card-shapers {
  background: #feeede;
}

.other-card-reads {
  background: #ebe8ff;
}

.other-card-bg {
  position: absolute;
  top: -88px;
  left: 0;
  width: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  pointer-events: none;
}

.other-card-shapers .other-card-bg {
  background-image: url("assets/shapers-card-bg.jpg");
}

.other-card-reads .other-card-bg {
  background-image: url("assets/reads-card-bg.jpg");
}

.other-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.other-card-badge {
  display: inline-flex;
  width: fit-content;
  padding: 2px;
  border-radius: 100px;
}

.other-card-badge-shapers {
  background: linear-gradient(90deg, #503fbb, #e13670, #f19d49);
}

.other-card-badge-reads {
  background: linear-gradient(90deg, #381cec, #7462e2, #221a5f);
}

.other-card-badge-inner {
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.8);
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
  color: #221a5f;
  white-space: nowrap;
}

.other-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #221a5f;
}

.other-card-desc {
  font-size: var(--body-copy-size);
  line-height: 1.55;
  color: #484848;
}

.other-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(95, 76, 60, 0.25);
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #221a5f;
  align-self: flex-start;
  transition: background 150ms ease-out;
}

.other-card:hover .other-card-cta {
  background: rgba(255, 255, 255, 0.75);
}

.page-founders {
  --page-bg: #fefcfa;
  --nav-overlay-bg: rgba(254, 252, 250, 0.6);
  --mobile-menu-bg: #fefcfa;
  --hero-background:
    linear-gradient(to top, rgba(254, 252, 250, 0.97) 0%, rgba(254, 252, 250, 0.65) 50%, rgba(254, 252, 250, 0.2) 100%),
    url('assets/why-bg.jpg') center center / cover no-repeat,
    var(--page-bg);
  --hero-copy-size: var(--body-copy-size);
  --hero-copy-line: 1.5;
  --hero-copy-max: 640px;
  --hero-eyebrow-background:
    linear-gradient(rgba(254, 238, 222, 0.7), rgba(254, 238, 222, 0.7)) padding-box,
    linear-gradient(30deg, #503fbb, #e13670, #f19d49) border-box;
}

.page-founders .purpose {
  background: var(--purple-dark);
}

.page-founders .section-label {
  color: var(--neutral-300);
}

.page-founders .purpose .section-label {
  color: rgba(255, 255, 255, 0.3);
}

.page-founders .purpose .section-label::before {
  background: rgba(255, 255, 255, 0.2);
}

.page-founders .benefits > .section-heading,
.page-founders .founders > .section-heading,
.page-founders .skills > .section-heading,
.page-founders .skills-note,
.page-founders .founders-note {
  width: 100%;
  max-width: 1200px;
}

.page-founders .founders > .section-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--purple-core);
}

.page-founders .founders > .section-label::before {
  content: none;
}

.purpose-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.purpose-lead {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #fff;
}

.purpose-desc {
  font-size: var(--body-copy-size);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

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

.page-founders .benefits,
.page-founders .skills {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
}

.page-founders .benefits-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 32px;
  background: #fff;
  transition: background 200ms ease-out;
}

.benefit-card:hover {
  background: var(--neutral-50);
}

.benefit-num {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: var(--orange);
}

.benefit-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--purple-dark);
}

.benefit-desc {
  font-size: var(--body-copy-size);
  line-height: 1.65;
  color: var(--neutral-500);
}

.benefit-card-accent {
  background: var(--purple-tint);
}

.benefit-card-accent .benefit-num,
.benefit-card-accent .benefit-title {
  color: var(--purple-core);
}

.benefit-card-accent .benefit-title {
  font-size: 2rem;
}

.benefit-card-accent .benefit-desc {
  font-style: italic;
  color: rgba(57, 44, 141, 0.7);
}

.founders {
  background: var(--page-bg);
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.founder-type {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.founder-type-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 14px;
  border-radius: 9999px;
  background: var(--purple-tint);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-core);
}

.founder-type h3 {
  margin-bottom: 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--purple-dark);
}

.founder-type ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.founder-type li {
  position: relative;
  padding-left: 20px;
  font-size: var(--body-copy-size);
  line-height: 1.65;
  color: var(--neutral-600);
}

.founder-type li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: 0.8125rem;
  color: var(--orange);
}

.founders-note {
  max-width: 760px;
  padding: 36px 40px;
  border-radius: 16px;
  background: var(--purple-tint);
}

.founders-note-title {
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--purple-dark);
}

.founders-note-copy {
  font-size: var(--body-copy-size);
  line-height: 1.7;
  color: var(--neutral-600);
}

.skills-note {
  max-width: 640px;
  margin-bottom: 48px;
  font-size: var(--body-copy-size);
  line-height: 1.7;
  color: var(--neutral-500);
}

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

.skill-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--page-bg);
}

.skill-title {
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--purple-dark);
}

.skill-desc {
  font-size: var(--body-copy-size);
  line-height: 1.65;
  color: var(--neutral-500);
}

.cta-section {
  background: var(--page-bg);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  padding: 72px 64px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 18%, #5143b6 0%, rgba(81, 67, 182, 0) 34%),
    radial-gradient(circle at 82% 18%, #2d237a 0%, rgba(45, 35, 122, 0) 36%),
    radial-gradient(circle at 70% 88%, #4435a4 0%, rgba(68, 53, 164, 0) 42%),
    radial-gradient(circle at 8% 92%, #1d174f 0%, rgba(29, 23, 79, 0) 38%),
    linear-gradient(135deg, #392c8d 0%, #221a5f 100%);
}

.cta-heading {
  margin-bottom: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.cta-sub {
  font-size: var(--body-copy-size);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  white-space: nowrap;
}

.btn-cta {
  padding: 14px 28px;
  background: #fff;
  color: var(--purple-dark);
  font-size: 0.9375rem;
  font-weight: 700;
}

.btn-cta:hover {
  background: var(--purple-tint);
  transform: translateY(-1px);
}

.btn-cta-outline {
  padding: 14px 28px;
  border: 1.5px solid transparent;
  background: #fff;
  color: var(--purple-dark);
  font-size: 0.9375rem;
  font-weight: 700;
}

.btn-cta-outline:hover {
  background: var(--purple-tint);
  transform: translateY(-1px);
}

.page-co-building-sprint {
  --hero-background:
    linear-gradient(to top, rgba(253, 248, 244, 0.97) 0%, rgba(253, 248, 244, 0.76) 42%, rgba(253, 248, 244, 0.28) 100%),
    linear-gradient(to right, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.36) 48%, rgba(255, 255, 255, 0.12) 100%),
    url('assets/co-building-sprint-bg.png') center center / cover no-repeat,
    #fdf8f4;
  --hero-eyebrow-background:
    linear-gradient(rgba(254, 238, 222, 0.72), rgba(254, 238, 222, 0.72)) padding-box,
    linear-gradient(30deg, #f19d49, #e13670) border-box;
  --hero-title-max: 880px;
  --hero-copy-max: 760px;
}

.sprint-highlights {
  padding: 56px var(--section-padding-x);
  background:
    radial-gradient(circle at 14% 20%, rgba(241, 157, 73, 0.18) 0%, rgba(241, 157, 73, 0) 32%),
    radial-gradient(circle at 86% 78%, rgba(225, 54, 112, 0.2) 0%, rgba(225, 54, 112, 0) 34%),
    var(--purple-core);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sprint-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  max-width: 1200px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
}

.sprint-highlight {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: rgba(34, 26, 95, 0.38);
}

.sprint-highlight span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--orange);
}

.sprint-highlight h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.sprint-overview {
  background: #fff;
  border-top: 1px solid var(--border);
}

.sprint-intro {
  max-width: 860px;
  margin-bottom: 48px;
}

.page-co-building-sprint .sprint-intro,
.page-co-building-sprint .sprint-intro .section-heading,
.page-co-building-sprint .sprint-copy,
.page-co-building-sprint .sprint-application-panel {
  max-width: 1200px;
}

.sprint-intro .section-heading {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.sprint-copy {
  font-size: var(--body-copy-size);
  line-height: 1.7;
  color: var(--neutral-600);
}

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

.sprint-card {
  min-height: 100%;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--neutral-50);
}

.sprint-card-kicker {
  display: block;
  margin-bottom: 32px;
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  color: var(--orange);
}

.sprint-card h3 {
  margin-bottom: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--purple-core);
}

.sprint-card p {
  font-size: var(--body-copy-size);
  line-height: 1.65;
  color: var(--neutral-600);
}

.sprint-testimonials {
  background: #fff;
  border-top: 1px solid var(--border);
}

.testimonial-carousel {
  --testimonial-radius: 16px;
  --testimonial-gap: 32px;
  --testimonial-progress: 0;
  --testimonial-slide-width: min(1174px, calc(100vw - 300px));
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.testimonial-carousel-viewport {
  position: relative;
  min-height: clamp(620px, 52vw, 660px);
}

.testimonial-carousel-track {
  position: relative;
  min-height: inherit;
}

.testimonial-slide {
  isolation: isolate;
  display: flex;
  width: var(--testimonial-slide-width);
  min-height: clamp(620px, 52vw, 660px);
  overflow: hidden;
  border-radius: var(--testimonial-radius);
  background: var(--purple-dark);
  box-shadow: 0 28px 64px rgba(34, 26, 95, 0.16);
  position: absolute;
  top: 0;
  left: 50%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: transform 500ms ease, opacity 500ms ease, box-shadow 500ms ease, filter 500ms ease;
}

.testimonial-slide.is-repositioning {
  transition: none;
}

.testimonial-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(34, 26, 95, 0.12) 0%, rgba(34, 26, 95, 0.08) 45%, rgba(11, 8, 34, 0.18) 100%);
  pointer-events: none;
}

.testimonial-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 34% center;
}

.testimonial-slide:nth-child(2) .testimonial-slide-image {
  object-position: 30% center;
}

.testimonial-slide:nth-child(3) .testimonial-slide-image {
  object-position: 22% center;
}

.testimonial-slide.is-active,
.testimonial-slide.is-prev,
.testimonial-slide.is-next {
  opacity: 1;
}

.testimonial-slide.is-active {
  z-index: 3;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.testimonial-slide.is-active::before {
  background:
    linear-gradient(90deg, rgba(34, 26, 95, 0.08) 0%, rgba(34, 26, 95, 0.04) 44%, rgba(11, 8, 34, 0.28) 100%);
}

.testimonial-slide.is-active::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: 2px;
  background: rgba(255, 255, 255, 0.58);
  pointer-events: none;
  transform: scaleX(var(--testimonial-progress));
  transform-origin: left center;
}

.testimonial-slide.is-prev,
.testimonial-slide.is-next {
  z-index: 1;
  pointer-events: auto;
  opacity: 0.3;
  filter: saturate(0.9);
  box-shadow: none;
}

.testimonial-slide.is-prev {
  transform: translateX(calc(-50% - var(--testimonial-slide-width) - var(--testimonial-gap)));
}

.testimonial-slide.is-next {
  transform: translateX(calc(-50% + var(--testimonial-slide-width) + var(--testimonial-gap)));
}

.testimonial-slide-content {
  position: absolute;
  top: 40px;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  width: min(530px, calc(100% - 560px));
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  border-radius: 12px;
  background:
    linear-gradient(rgba(46, 50, 54, 0.33), rgba(46, 50, 54, 0.33)),
    rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
}

.testimonial-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial-copy h3,
.testimonial-copy p {
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.testimonial-copy h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.testimonial-copy p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.42;
}

.testimonial-slide-meta strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.testimonial-slide-meta span {
  display: block;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
}

.studied-theses {
  background: #feeede;
}

.studied-theses-intro {
  display: flex;
  max-width: 1200px;
  flex-direction: column;
  gap: 16px;
}

.studied-theses-intro h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.44px;
  line-height: 52.8px;
  color: #221a5f;
}

.studied-theses-intro p {
  max-width: 1200px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  color: #4e4b72;
}

.studied-theses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px 8px;
  max-width: 1200px;
  padding-top: 40px;
}

.studied-thesis-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 36px 30px;
  border-radius: 8px;
  background: #fff;
}

.studied-thesis-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.studied-thesis-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border: 1px solid rgba(95, 76, 60, 0.2);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 23.1px;
  color: rgba(95, 76, 60, 0.75);
}

.studied-thesis-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.studied-thesis-copy h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: #000;
}

.studied-thesis-copy p {
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  color: #5f4c3c;
}

.sprint-paths {
  background: #fdf8f4;
  border-top: 1px solid var(--border);
}

.path-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.path-option {
  position: relative;
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(57, 44, 141, 0.14);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

.path-option:hover,
.path-option:focus-within {
  transform: translateY(-2px);
  border-color: rgba(57, 44, 141, 0.28);
  box-shadow: 0 18px 40px rgba(34, 26, 95, 0.08);
}

.path-option.is-active {
  border-color: var(--purple-core);
  box-shadow: 0 20px 44px rgba(34, 26, 95, 0.12);
}

.path-option input {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.path-option-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f8efe6;
}

.path-option-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.path-option-copy {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.path-option-kicker {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--orange);
}

.path-option-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--purple-core);
}

.path-panels {
  max-width: 1200px;
}

.path-panel {
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.sprint-application-panel {
  max-width: 960px;
}

.path-panel[hidden] {
  display: none;
}

.path-panel-header {
  max-width: 860px;
  margin-bottom: 36px;
}

.path-panel-header .section-heading {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.path-panel-header a {
  color: var(--purple-core);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.thesis-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--neutral-50);
}

.thesis-card-kicker {
  margin-bottom: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange);
}

.thesis-card h3 {
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--purple-core);
}

.thesis-card p {
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-600);
}

.thesis-card a {
  margin-top: auto;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--purple-core);
}

.sprint-form {
  display: grid;
  gap: 24px;
}

.form-choice-group {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-choice-group legend {
  margin-bottom: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--purple-core);
}

.choice-options {
  display: grid;
  gap: 12px;
}

.choice-option,
.sprint-form .choice-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(57, 44, 141, 0.16);
  border-radius: 10px;
  background: var(--neutral-50);
  cursor: pointer;
  transition: border-color 150ms ease-out, background 150ms ease-out, box-shadow 150ms ease-out;
}

.choice-option:hover,
.choice-option:focus-within {
  border-color: rgba(57, 44, 141, 0.34);
  background: #fff;
  box-shadow: 0 10px 24px rgba(34, 26, 95, 0.06);
}

.choice-option input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  accent-color: var(--purple-core);
}

.choice-option span,
.sprint-form .choice-option span {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--purple-core);
}

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

.sprint-form label {
  display: grid;
  gap: 8px;
}

.sprint-form label span {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--purple-core);
}

.sprint-form input,
.sprint-form textarea {
  width: 100%;
  border: 1px solid rgba(57, 44, 141, 0.18);
  border-radius: 8px;
  background: var(--neutral-50);
  color: var(--purple-dark);
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
  transition: border-color 150ms ease-out, box-shadow 150ms ease-out, background 150ms ease-out;
}

.sprint-form input {
  min-height: 48px;
  padding: 10px 14px;
}

.sprint-form .choice-option input {
  flex: 0 0 18px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
}

.sprint-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 14px;
}

.sprint-form input:focus,
.sprint-form textarea:focus {
  border-color: var(--purple-core);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(57, 44, 141, 0.1);
}

.sprint-form label.has-field-error > input,
.sprint-form label.has-field-error > textarea {
  border-color: #b7353f;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(183, 53, 63, 0.1);
}

.sprint-form .form-choice-group.has-field-error .choice-option {
  border-color: rgba(183, 53, 63, 0.46);
  background: #fffafa;
}

.form-field-error {
  min-height: 18px;
  margin: -2px 0 0;
  color: #a43d44;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.4;
}

.form-field-error:empty {
  display: none;
}

.sprint-form .btn-primary {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.sprint-form .btn-primary:disabled {
  cursor: progress;
  opacity: 0.68;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  margin: -8px 0 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-status[data-status="success"] {
  color: #256b4f;
}

.form-status[data-status="error"] {
  color: #a43d44;
}

.page-corporations {
  --page-bg: #fff;
  --nav-overlay-bg: rgba(235, 232, 255, 0.5);
  --mobile-menu-bg: #ebe8ff;
  --hero-background:
    linear-gradient(to top, rgba(235, 232, 255, 0.97) 0%, rgba(235, 232, 255, 0.65) 50%, rgba(235, 232, 255, 0.2) 100%),
    url('assets/corp-bg.jpg') center center / cover no-repeat,
    #ebe8ff;
  --hero-copy-size: var(--body-copy-size);
  --hero-copy-line: 1.5;
  --hero-eyebrow-background:
    linear-gradient(rgba(254, 238, 222, 0.7), rgba(254, 238, 222, 0.7)) padding-box,
    linear-gradient(30deg, #503fbb, #e13670, #f19d49) border-box;
}

.page-corporations .section-heading {
  margin-bottom: 56px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.page-corporations .methodology > .section-heading {
  width: 100%;
  max-width: 1200px;
}

.intro-band {
  padding: 72px 48px;
  background: var(--purple-tint);
  border-bottom: 1px solid var(--border);
}

.intro-copy {
  max-width: 1200px;
}

.intro-lead {
  margin-bottom: 24px;
  font-family: 'Manrope', sans-serif;
  font-size: var(--body-copy-size);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--purple-dark);
}

.methodology {
  background: #fff;
  border-top: 1px solid var(--border);
}

.phase {
  margin-bottom: 72px;
}

.phase:last-child {
  margin-bottom: 0;
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.phase-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-tint);
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--purple-core);
}

.phase-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--purple-core);
}

.phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
}

.phase-item {
  padding: 36px 40px;
  background: #fff;
}

.phase-item-period {
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--neutral-300);
}

.phase-item-title {
  margin-bottom: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--purple-core);
}

.phase-item-desc {
  font-size: var(--body-copy-size);
  line-height: 1.7;
  color: var(--neutral-600);
}

.page-corporations .cta-section {
  background: var(--neutral-50);
  border-top: 1px solid var(--border);
}

.page-future-shapers {
  --page-bg: #fdf8f4;
  --nav-link-color: var(--neutral-600);
  --nav-link-active: var(--purple-core);
  --nav-overlay-link-color: var(--neutral-600);
  --nav-overlay-link-active: var(--purple-core);
  --nav-scrolled-link-color: var(--neutral-600);
  --nav-scrolled-link-active: var(--purple-core);
  --nav-overlay-bg: rgba(235, 232, 255, 0.5);
  --mobile-menu-bg: #feeede;
  --hero-background:
    linear-gradient(to top, rgba(254, 238, 222, 0.97) 0%, rgba(254, 238, 222, 0.6) 50%, rgba(254, 238, 222, 0.15) 100%),
    url('assets/shapers-bg.jpg') center center / cover no-repeat,
    #feeede;
  --hero-title-max: 640px;
  --hero-copy-size: var(--body-copy-size);
  --hero-copy-line: 1.5;
  --hero-copy-max: 640px;
  --hero-copy-color: rgb(33, 30, 75);
  --hero-eyebrow-background:
    linear-gradient(rgba(254, 238, 222, 0.7), rgba(254, 238, 222, 0.7)) padding-box,
    linear-gradient(30deg, #503fbb, #e13670, #f19d49) border-box;
}

.page-future-shapers section:not(.hero) {
  padding: 96px 0;
}

.page-future-shapers .what-is {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.page-future-shapers .what-is h2,
.page-future-shapers .benefits h2,
.page-future-shapers .stories h2 {
  margin-bottom: 48px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--purple-core);
}

.page-future-shapers .what-is h2 {
  margin-bottom: 24px;
}

.page-future-shapers .what-is p {
  max-width: 760px;
  margin-bottom: 40px;
  font-size: var(--body-copy-size);
  line-height: 1.75;
  color: var(--neutral-600);
}

.funnel-label {
  margin-bottom: 40px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--purple-core);
}

.funnel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
}

.funnel-item {
  padding: 36px 32px;
  background: #fff;
}

.funnel-num {
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
}

.funnel-item:first-child .funnel-num {
  color: var(--neutral-300);
}

.funnel-item:not(:first-child) .funnel-num {
  color: var(--purple-dark);
}

.funnel-desc {
  font-size: var(--body-copy-size);
  line-height: 1.5;
  color: var(--neutral-500);
}

.funnel-note {
  font-size: inherit;
  color: var(--neutral-300);
}

.page-future-shapers .benefits {
  background: var(--page-bg);
}

.page-future-shapers .benefits-grid {
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.page-future-shapers .benefit h3 {
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--purple-dark);
}

.page-future-shapers .benefit p {
  font-family: 'Inter', sans-serif;
  font-size: var(--body-copy-size);
  font-style: normal;
  line-height: 1.7;
  color: var(--neutral-600);
}

.stories {
  background: #fff;
  border-top: 1px solid var(--border);
}

.story-card {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.story-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.story-photo {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  background: var(--neutral-100);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.story-headline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.story-name {
  margin-right: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--purple-core);
}

.story-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--purple-core);
}

.story-role {
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple-dark);
}

.story-quote {
  font-family: 'Lora', Georgia, serif;
  font-size: var(--body-copy-size);
  font-style: italic;
  line-height: 1.75;
  color: var(--neutral-600);
}

.story-quote p + p {
  margin-top: 12px;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: calc(100% - 96px);
  max-width: 1200px;
  margin: 0 auto 96px;
  padding: 56px 64px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 18%, #5143b6 0%, rgba(81, 67, 182, 0) 34%),
    radial-gradient(circle at 82% 18%, #2d237a 0%, rgba(45, 35, 122, 0) 36%),
    radial-gradient(circle at 70% 88%, #4435a4 0%, rgba(68, 53, 164, 0) 42%),
    radial-gradient(circle at 8% 92%, #1d174f 0%, rgba(29, 23, 79, 0) 38%),
    linear-gradient(135deg, #392c8d 0%, #221a5f 100%);
}

.cta-banner h2 {
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.cta-banner p {
  font-size: var(--body-copy-size);
  color: rgba(255, 255, 255, 0.6);
}

.btn-white {
  padding: 14px 28px;
  background: #fff;
  color: var(--purple-core);
  font-size: 0.9375rem;
  font-weight: 700;
  white-space: nowrap;
}

.btn-white:hover {
  background: var(--purple-tint);
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .site-nav .links {
    gap: 20px;
  }

  .site-nav .links a {
    font-size: 0.875rem;
  }

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

@media (max-width: 1320px) {
  .testimonial-carousel {
    --testimonial-slide-width: calc(100vw - 120px);
  }

  .testimonial-carousel-viewport,
  .testimonial-slide {
    min-height: 760px;
  }

  .testimonial-slide-content {
    width: min(530px, calc(100% - 340px));
  }
}

@media (max-width: 900px) {
  .site-nav {
    padding: 8px 24px;
  }

  .page-home .site-nav {
    padding: 0 24px;
  }

  .site-nav .links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .container {
    padding: 0 24px;
  }

  section {
    padding: 72px 24px;
  }

  .page-home section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding: 0 24px 72px;
  }

  .page-home .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-caption,
  .hero-sub {
    max-width: 100%;
    font-size: var(--body-copy-size);
  }

  .hero-eyebrow {
    font-size: 0.875rem;
  }

  .btn-hero-lg {
    font-size: 1rem;
    padding: 14px 22px;
  }

  .site-footer {
    min-height: 500px;
    padding: 72px 24px 120px;
  }

  .footer-inner {
    width: min(100%, 720px);
  }

  .footer-art {
    top: 24px;
    left: min(46vw, 360px);
    width: 680px;
    height: 680px;
  }

  .manifesto-cols {
    grid-template-columns: 1fr;
  }

  .manifesto-divider {
    width: 100%;
    height: 1px;
    margin: 32px 0;
  }

  .studio-inner {
    grid-template-columns: 1fr;
  }

  .studio-badges {
    justify-content: flex-start;
  }

  .page-home .studio-badges {
    display: none;
  }

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

  .page-home .other-card {
    --other-card-x-padding: 24px;
  }

  .purpose-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-founders .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .testimonial-carousel-viewport,
  .testimonial-slide {
    min-height: 760px;
  }

  .testimonial-carousel {
    --testimonial-slide-width: calc(100vw - 80px);
  }

  .testimonial-slide-content {
    width: min(520px, calc(100% - 220px));
  }

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

  .studied-theses-intro h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.1;
  }

  .studied-theses-grid {
    grid-template-columns: 1fr;
  }

  .path-options {
    grid-template-columns: 1fr;
  }

  .path-panel {
    padding: 32px 24px;
  }

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

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 32px;
  }

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

  .phase-item {
    padding: 28px 24px;
  }

  .page-future-shapers .benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .story-card {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 24px 64px;
    padding: 40px 32px;
  }

  .page-future-shapers section:not(.hero) {
    padding: 72px 0;
  }
}

@media (max-width: 800px) {
  .testimonial-carousel {
    --testimonial-slide-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-carousel-viewport,
  .testimonial-slide {
    min-height: 980px;
  }

  .testimonial-slide {
    left: 0;
    transform: scale(0.94);
  }

  .testimonial-slide.is-active {
    transform: scale(1);
  }

  .testimonial-slide.is-prev,
  .testimonial-slide.is-next {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.94);
  }

  .testimonial-slide-content {
    top: auto;
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: auto;
    padding: 24px;
  }

  .testimonial-slide-image {
    object-position: 30% center;
  }

  .testimonial-slide:nth-child(2) .testimonial-slide-image {
    object-position: 27% center;
  }

  .testimonial-slide:nth-child(3) .testimonial-slide-image {
    object-position: 18% center;
  }

  .testimonial-copy {
    gap: 8px;
  }

  .testimonial-copy h3 {
    font-size: 1.125rem;
    line-height: 1.25;
  }

  .testimonial-copy p {
    font-size: 0.9375rem;
    line-height: 1.38;
  }
}

@media (max-width: 680px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card-empty {
    display: none;
  }

  .testimonial-carousel {
    --testimonial-slide-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-slide {
    left: 0;
    transform: scale(0.94);
  }

  .testimonial-slide.is-active {
    transform: scale(1);
  }

  .testimonial-slide.is-prev,
  .testimonial-slide.is-next {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.94);
  }

  .testimonial-slide-content {
    top: auto;
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: auto;
    padding: 24px;
  }

  .testimonial-carousel-viewport,
  .testimonial-slide {
    min-height: 980px;
  }

  .testimonial-copy {
    gap: 8px;
  }

  .testimonial-copy h3 {
    font-size: 1.125rem;
    line-height: 1.25;
  }

  .testimonial-copy p {
    font-size: 0.9375rem;
    line-height: 1.38;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 20px;
  }

  section {
    padding: 56px 20px;
  }

  .page-home section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding: 0 20px 56px;
  }

  .site-footer {
    min-height: 0;
    padding: 64px 20px 0;
  }

  .footer-inner {
    min-height: 0;
  }

  .footer-content h2 {
    margin-bottom: 32px;
    font-size: clamp(2.35rem, 12vw, 3rem);
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-art {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 620px;
    height: auto;
    margin: 32px 0 -180px -92px;
    transform: none;
  }

  .page-home .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-future-shapers section:not(.hero) {
    padding: 56px 0;
  }

  .portfolio-grid,
  .page-founders .benefits-grid,
  .skills-grid,
  .sprint-highlights-grid,
  .sprint-grid,
  .thesis-grid,
  .funnel-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-carousel-viewport,
  .testimonial-slide {
    min-height: 980px;
  }

  .testimonial-slide {
    left: 0;
    transform: scale(0.94);
  }

  .testimonial-slide.is-active {
    transform: scale(1);
  }

  .testimonial-slide.is-prev,
  .testimonial-slide.is-next {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.94);
  }

  .testimonial-slide-content {
    top: auto;
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: auto;
    padding: 24px;
  }

  .testimonial-slide::before {
    background:
      linear-gradient(180deg, rgba(11, 8, 34, 0.04) 0%, rgba(11, 8, 34, 0.12) 44%, rgba(11, 8, 34, 0.2) 100%);
  }

  .testimonial-copy {
    gap: 8px;
  }

  .testimonial-copy h3 {
    font-size: 1.125rem;
    line-height: 1.25;
  }

  .testimonial-copy p {
    font-size: 0.9375rem;
    line-height: 1.38;
  }

  .testimonial-slide-meta strong {
    font-size: 1.125rem;
  }

  .testimonial-slide-meta span {
    font-size: 0.9375rem;
  }

  .sprint-highlight {
    min-height: 168px;
  }

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

  .founder-type,
  .benefit-card,
  .funnel-item {
    padding: 28px 24px;
  }

  .cta-inner {
    padding: 36px 24px;
  }

  .phase-header {
    gap: 12px;
  }

  .cta-banner {
    margin: 0 20px 48px;
    padding: 32px 24px;
  }
}
