@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Manrope:wght@200..800&display=swap');

:root {
  /* Colors - Billion Dollar Light Theme (High Contrast, Warm Neutrals) */
  --bg-color: #fcfaf6;
  --bg-subtle: #f3efe7;
  --text-primary: #080808;
  --text-muted: #343434;
  --text-subtle: #767676;
  
  --primary: #000000;
  --primary-hover: #111111;
  
  --accent: #d1d1d6;
  --border: rgba(0, 0, 0, 0.09);
  --border-light: rgba(0, 0, 0, 0.04);
  
  /* Glassmorphism Refined */
  --glass-bg: rgba(252, 250, 246, 0.85);
  --glass-border: rgba(0, 0, 0, 0.04);
  --glass-blur: 24px;
  
  /* Typography - Extreme Precision */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Manrope', sans-serif;
  
  /* Billion Dollar Spacing Scale - Refined for Balance */
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.25rem;
  --space-lg: 1.5rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --container-max: 1200px;
  --section-pad: clamp(3.5rem, 7vw, 7.25rem);
  
  /* Elevation */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
  --shadow-md: 0 12px 24px -6px rgba(0,0,0,0.04);
  --shadow-lg: 0 24px 48px -12px rgba(0,0,0,0.06);
  --shadow-premium: 0 40px 80px -20px rgba(0,0,0,0.1);
  
  /* Motion Control */
  --transition-ultra: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: all 0.25s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.9), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(243, 239, 231, 0.9), transparent 55%),
    var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 700; }

p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem; /* Slightly larger body for balance */
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.9;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-pad) 0;
}
.sectionAlt { background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%); }
.sectionSoft { background: radial-gradient(circle at top left, #f8f9fa 0%, #ffffff 60%); }
.sectionSoftRight { background: radial-gradient(circle at top right, #fafafa 0%, #ffffff 70%); }

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: var(--transition-ultra);
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktopNav {
  display: none;
  gap: 2.5rem;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem; /* Scaled down logo */
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

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

.logo span {
  color: var(--text-subtle);
  font-weight: 300;
}

.navLink {
  font-size: 0.75rem; /* Smaller navigation links */
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0;
}

.navLink::after {
  height: 2px;
}

.navLink:hover {
  color: var(--primary);
}

.navLink:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .desktopNav { display: flex; }
  .ctaButton { display: inline-flex; font-size: 0.7rem; padding: 0.75rem 1.5rem; }
  .hamburger { display: none; }
}

.ctaButton {
  background: var(--primary);
  color: #ffffff;
  border-radius: 9999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-smooth);
}

.ctaButton:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 14px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 1.5px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.hamburger.open span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.hamburger.open span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.mobileMenu {
  position: fixed;
  inset: 0;
  background-color: var(--bg-color);
  z-index: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobileMenu.open {
  opacity: 1;
  visibility: visible;
}

.mobileNavLinks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobileNavLink {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-muted);
}

.mobileNavLink:hover {
  color: var(--primary);
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .desktopNav { display: flex; }
  .ctaButton { display: inline-block; }
  .hamburger { display: none; }
  .mobileMenu { display: none; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 800;
  padding: 1.25rem 3rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-ultra);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-premium);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 3.5rem;
  background:
    radial-gradient(circle at 10% -20%, #efe3d2 0%, transparent 55%),
    radial-gradient(circle at 90% 0%, #f4e7d7 0%, transparent 55%),
    var(--bg-color);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(0, 0, 0, 0.06), transparent 60%);
  pointer-events: none;
}

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

.hero-main {
  max-width: 560px;
  text-align: left;
}

.hero-aside {
  display: flex;
  justify-content: flex-end;
}

.hero-aside-card {
  background: linear-gradient(145deg, #ffffff, #f8f4ec);
  border-radius: 1.75rem;
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.hero-aside-kicker {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--text-subtle);
  margin-bottom: 1.25rem;
}

.hero-aside-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-aside-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-aside-list li + li {
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

.hero-aside-link {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.5rem 1.25rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 9999px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.hero-highlight {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}

.hero-text {
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 0 2.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

/* Slimmer, subtle hero CTAs */
.hero-actions .btn {
  padding: 0.9rem 2.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.hero-actions .btn-primary {
  background-color: #111111;
}

.hero-actions .btn-outline {
  border-color: rgba(0, 0, 0, 0.5);
  color: var(--text-muted);
}

.hero-actions .btn-outline:hover {
  color: #ffffff;
}

.hero-meta {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-subtle);
  max-width: 460px;
}

.hero-meta--aside {
  margin-top: 1.5rem;
  max-width: none;
}

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

  .hero-aside {
    justify-content: flex-start;
    margin-top: 2.5rem;
  }

  .hero-main {
    max-width: 100%;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-aside-card {
    width: 100%;
  }
}

/* PROBLEM BENTO */
.problem { 
  padding: var(--section-pad) 0;
  background: var(--bg-subtle);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.problem-card {
  background: var(--bg-color);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: var(--text-subtle);
}

.problem-number {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--bg-subtle);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.problem-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

/* PILLARS */
.sectionSoft {
  background: var(--bg-color);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.pillar-card {
  background: radial-gradient(circle at top left, #f9f5ed 0%, var(--bg-subtle) 55%);
  border: 1px solid var(--border-light);
  border-radius: 1.25rem;
  padding: 3rem;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  background: var(--bg-color);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.pillar-number { 
  display: block; 
  margin-bottom: 1.5rem; 
  color: var(--text-subtle); 
  font-size: 0.75rem; 
  text-transform: uppercase; 
  letter-spacing: 0.1rem;
  font-weight: 700;
}

.pillar-card p {
  font-size: 1rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(4, 1fr); }
}

/* GENERIC SECTION STRUCTURE */
.section-header {
  max-width: 720px;
  margin: 0 auto 2.25rem;
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--text-subtle);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.section-footer-link {
  margin-top: 3rem;
}

.section-footer-link a {
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--text-primary);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.section-header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 72px;
  height: 1px;
  background-color: var(--border);
  transform: translateX(-50%);
}

/* Labeled homepage sections – large ghost words */
.section-architecture::before,
.section-symptoms::before,
.section-pillars::before,
.section-journey::before,
.section-outcomes::before,
.section-services-hero::before,
.section-process-hero::before,
.section-case-hero::before,
.section-blog-hero::before,
.section-about-hero::before,
.section-contact-hero::before,
.section-privacy-hero::before,
.section-terms-hero::before {
  position: absolute;
  top: 12%;
  left: 5%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 11vw, 6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--border-light);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.section-architecture::before { content: 'ARCHITECTURE'; }
.section-symptoms::before { content: 'SYMPTOMS'; }
.section-pillars::before { content: 'PILLARS'; }
.section-journey::before { content: 'JOURNEY'; }
.section-outcomes::before { content: 'OUTCOMES'; }
.section-services-hero::before { content: 'SERVICES'; }
.section-process-hero::before { content: 'PROCESS'; }
.section-case-hero::before { content: 'CASE STUDIES'; }
.section-blog-hero::before { content: 'INSIGHTS'; }
.section-about-hero::before { content: 'FOUNDERS'; }
.section-contact-hero::before { content: 'CONTACT'; }
.section-privacy-hero::before { content: 'PRIVACY'; }
.section-terms-hero::before { content: 'TERMS'; }

.section > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .section-architecture::before,
  .section-symptoms::before,
  .section-pillars::before,
  .section-journey::before,
  .section-outcomes::before,
  .section-services-hero::before,
  .section-process-hero::before,
  .section-case-hero::before,
  .section-blog-hero::before,
  .section-about-hero::before,
  .section-contact-hero::before,
  .section-privacy-hero::before,
  .section-terms-hero::before {
    opacity: 0.16;
    font-size: clamp(2.1rem, 7.5vw, 3rem);
    top: 8%;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 480px) {
  .section-architecture::before,
  .section-symptoms::before,
  .section-pillars::before,
  .section-journey::before,
  .section-outcomes::before,
  .section-services-hero::before,
  .section-process-hero::before,
  .section-case-hero::before,
  .section-blog-hero::before,
  .section-about-hero::before,
  .section-contact-hero::before,
  .section-privacy-hero::before,
  .section-terms-hero::before {
    opacity: 0.12;
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    top: 6%;
    letter-spacing: 0.1em;
  }
}

/* PROCESS / TIMELINE */
.timeline-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}

/* Timeline Vertical Line */
@media (min-width: 768px) {
  .timeline-grid::before {
    content: '';
    position: absolute;
    left: 3.5rem; /* Center of the 4rem stage-number */
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
    z-index: 0;
  }
}

.stage-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg-color);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.stage-card:hover {
  border-color: var(--text-muted);
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.stage-number {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-subtle);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.stage-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.stage-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

/* CARDS - IMMERSIVE SYSTEM */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.card {
  background: linear-gradient(145deg, #ffffff, #f9f5ed);
  border: 1px solid var(--border-light);
  border-radius: 1.75rem;
  padding: calc(var(--space-xl) - 0.5rem);
  transition: var(--transition-ultra);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-ultra);
}

.card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: var(--shadow-premium);
  border-color: var(--text-subtle);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-kicker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-subtle);
  margin-bottom: var(--space-md);
  display: block;
}

.card h2 {
  font-size: 1.85rem;
  margin-bottom: var(--space-md);
}

.card h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Home: narrative band cards */
.card-grid.three .card {
  padding: 2.25rem;
  border-radius: 1.5rem;
}

.card-grid.three .card h3 {
  font-size: 1.15rem;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
}

.card-grid.three .card p {
  font-size: 0.98rem;
}

/* Home: outcome cards with lists */
.sectionSoftRight .card ul {
  margin-top: 1.5rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.sectionSoftRight .card p + ul {
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: flex-start; }
.contact-meta { max-width: 500px; padding-top: 1rem; }
.contact-meta h2 { margin-bottom: 2rem; }
.contact-meta p { color: var(--text-muted); font-size: 1.1rem; }
.contact-meta strong {
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.form-card {
  background: var(--bg-color);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 2rem; }
.label { display: block; margin-bottom: 0.75rem; font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.input, .select, .textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--bg-subtle);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--text-primary);
  background: var(--bg-color);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; }
}

@media (max-width: 599px) {
  .form-card {
    padding: 2.25rem 1.75rem;
  }
}

/* FOUNDERS */
.founders-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.founder-card {
  background: var(--bg-color);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3.5rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.founder-card h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.founder-card p strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.founder-card:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-5px);
  border-color: var(--text-subtle);
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 2rem;
}

.founder-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
}

.founder-links a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

@media (min-width: 768px) {
  .founders-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 6rem 0 3rem;
  background: var(--bg-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand-text {
  max-width: 320px;
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.footer-links-title {
  margin-bottom: 2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-subtle);
}

.footer-legal { display: flex; gap: 2rem; }
.footer-legal a:hover { color: var(--text-primary); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* CTA STRIP */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.ctaSection {
  background-color: var(--primary);
  color: #ffffff;
  text-align: center;
  padding: 6rem 0;
}

.ctaSection h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.ctaSection p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .section {
    padding: 3.25rem 0;
  }

  .hero {
    padding: 6.25rem 0 2.75rem;
  }

  .card {
    padding: 2rem;
  }
}

.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }

.ctaSection .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.ctaSection .btn-outline:hover {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}

/* ANIMATIONS & REVEAL */
@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Delay for staggered lists if needed */
  .problem-grid .problem-card:nth-child(2) { transition-delay: 0.1s; }
  .problem-grid .problem-card:nth-child(3) { transition-delay: 0.2s; }
  /* ... more if needed ... */
}

/* ACCESSIBILITY & FOCUS */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: #ffffff;
  z-index: 1100;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
}

/* TRUST BAND */
.trust-band {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--text-subtle);
  margin-bottom: 1.5rem;
}

.trust-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.metric {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.metric-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 280px;
}

@media (min-width: 768px) {
  .trust-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric {
    border-top: none;
    border-left: 1px solid var(--border);
    padding: 0 2rem;
  }

  .metric:first-child {
    border-left: none;
    padding-left: 0;
  }
}

