/* ==========================================================================
   Expedait Landing Page — Design System Tokens
   Primary: Deep Space Blue #1E3650
   Accent: Aquamarine #62F0C8
   Font: Montserrat (brand/marketing)
   Grid: 8px base unit
   ========================================================================== */

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

:root {
  /* Brand colors — Deep Space Blue scale */
  --midnight: #0F2236;
  --deep-space: #1E3650;
  --deep-space-dark: #192D43;
  --steel: #2D4F6E;
  --slate-brand: #547792;
  --cloud: #94B4C1;
  --mist: #D4E4ED;
  --ice: #EAF1F5;
  --snow: #F6F8FA;

  /* Accent — Aquamarine */
  --aquamarine: #62F0C8;
  --aquamarine-dark: #2CC09A;
  --aquamarine-600: #3AD9AE;
  --aquamarine-100: #EDFDF8;

  /* Secondary accents */
  --maya-blue: #7CC8FE;

  /* Neutral Grays (cool blue-gray) */
  --gray-50: #F8F9FB;
  --gray-100: #F0F3F7;
  --gray-200: #E4E8ED;
  --gray-300: #D0D6DD;
  --gray-400: #A0ABB5;
  --gray-500: #707D89;
  --gray-600: #515D69;
  --gray-700: #3B4752;
  --gray-800: #28333D;
  --gray-900: #1A2430;

  /* Semantic */
  --success: #2E8B57;
  --warning: #D4943A;
  --error: #C0392B;

  /* Typography */
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing (8px grid) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* Transitions */
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-800);
  background: #fff;
}

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

img, video {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(30, 54, 80, 0.97);
  backdrop-filter: blur(8px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.logo-img {
  height: 32px;
  width: auto;
}

.footer .logo-img {
  height: 28px;
  width: auto;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: var(--sp-8);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cloud);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--aquamarine);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-1);
  color: var(--cloud);
}

.nav-actions {
  display: flex;
  gap: var(--sp-2);
}

/* CTA button */
.cta-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--aquamarine);
  color: var(--deep-space);
  transition: background var(--transition);
}

.cta-fallback:hover {
  background: var(--aquamarine-600);
}

.cta-fallback--white {
  background: #fff;
  color: var(--deep-space);
}

.cta-fallback--white:hover {
  background: var(--ice);
  color: var(--deep-space);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: calc(64px + var(--sp-24)) 0 var(--sp-24);
  background: linear-gradient(180deg, var(--deep-space) 0%, var(--midnight) 100%);
}

.hero-centered {
  text-align: left;
}

.hero > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: var(--sp-6);
}

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

.hero-subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: var(--cloud);
  margin-bottom: var(--sp-8);
}

.hero-subtitle em {
  color: #fff;
  font-style: normal;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-4);
}

.hero-note {
  font-size: 13px;
  color: var(--slate-brand);
}

/* Hero video */
.hero-video {
  width: 100%;
}

.hero-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
  background: var(--deep-space-dark);
  border: 1px solid var(--steel);
  cursor: pointer;
}

.hero-video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  background: linear-gradient(135deg, var(--deep-space-dark) 0%, var(--midnight) 100%);
  transition: background var(--transition);
}

.hero-video-embed:hover .hero-video-poster {
  background: linear-gradient(135deg, var(--steel) 0%, var(--deep-space-dark) 100%);
}

.hero-video-play {
  transition: transform var(--transition);
}

.hero-video-play circle {
  fill: rgba(98, 240, 200, 0.9);
}

.hero-video-play path {
  fill: var(--deep-space);
}

.hero-video-embed:hover .hero-video-play {
  transform: scale(1.1);
}

.hero-video-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--cloud);
}

.hero-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: var(--sp-32) 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-16);
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--deep-space);
  margin-bottom: var(--sp-2);
}

.section-label--light {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--deep-space);
  margin-bottom: var(--sp-4);
}

.section-desc {
  font-size: 17px;
  line-height: 1.5;
  color: var(--gray-500);
}

.section-desc + .section-desc {
  margin-top: var(--sp-4);
}

.section-desc--strong {
  font-weight: 600;
  color: var(--gray-800);
}

/* ==========================================================================
   Founders
   ========================================================================== */

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-12);
  max-width: 800px;
  margin: 0 auto;
}

.founder-card {
  text-align: center;
}

.founder-avatar {
  margin-bottom: var(--sp-4);
}

.avatar-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
}

.founder-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--deep-space);
  margin-bottom: var(--sp-1);
}

.founder-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--aquamarine-dark);
  margin-bottom: var(--sp-2);
}

.founder-bio {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.5;
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--sp-4);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition);
}

.founder-linkedin:hover {
  color: var(--aquamarine-dark);
}

/* ==========================================================================
   Pain Points (Problem section)
   ========================================================================== */

.pain-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-16);
}

.pain-point {
  padding: var(--sp-6) var(--sp-8);
  border-left: 3px solid var(--aquamarine);
  background: #fff;
  border-radius: 0 8px 8px 0;
}

.pain-point h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-space);
  margin-bottom: var(--sp-1);
}

.pain-point p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Stats strip (compact) */
.stats-strip {
  display: flex;
  justify-content: center;
  gap: var(--sp-12);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--gray-200);
}

.stat-item {
  text-align: center;
}

.stat-item-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--aquamarine-dark);
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.stat-item-label {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.4;
  max-width: 200px;
}

.stat-item-source {
  display: inline-block;
  font-size: 11px;
  color: var(--gray-400);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 4px;
  transition: color var(--transition);
}

.stat-item-source:hover {
  color: var(--aquamarine-dark);
}

/* ==========================================================================
   Features Grid (What we built)
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  padding: var(--sp-8);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: box-shadow var(--transition);
}

.feature-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--aquamarine-100);
  color: var(--aquamarine-dark);
  margin-bottom: var(--sp-4);
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-space);
  margin-bottom: var(--sp-1);
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ==========================================================================
   Design Partner CTA Section
   ========================================================================== */

.section-cta {
  background: var(--deep-space);
  padding: var(--sp-32) 0;
}

.partner-content {
  max-width: 800px;
  margin: 0 auto;
}

.partner-title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: var(--sp-12);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}

.partner-what {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: var(--sp-8);
}

.partner-what h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--sp-4);
}

.partner-what ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-what li {
  position: relative;
  padding-left: var(--sp-6);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: var(--sp-2);
}

.partner-what li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aquamarine);
}

.partner-cta {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Compact Roadmap
   ========================================================================== */

.roadmap-compact {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.roadmap-compact-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: var(--sp-4);
  align-items: baseline;
  padding: var(--sp-4) var(--sp-6);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.roadmap-compact-status {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
}

.roadmap-compact-done .roadmap-compact-status {
  color: var(--success);
}

.roadmap-compact-now .roadmap-compact-status {
  color: var(--aquamarine-dark);
}

.roadmap-compact-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
}

.roadmap-compact-desc {
  font-size: 13px;
  color: var(--gray-400);
}

.roadmap-compact-done {
  border-color: var(--success);
  background: rgba(46, 139, 87, 0.04);
}

.roadmap-compact-now {
  border-color: var(--aquamarine-dark);
  background: var(--aquamarine-100);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--midnight);
  padding: var(--sp-8) 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer .logo-text {
  color: #fff;
}

.footer-tagline {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: var(--sp-1);
}

.footer-legal p {
  font-size: 13px;
  color: var(--gray-500);
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-6);
  margin-bottom: var(--sp-2);
}

.footer-legal-links a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--aquamarine);
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */

.legal-page {
  padding: calc(64px + var(--sp-16)) 0 var(--sp-32);
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--deep-space);
  margin-bottom: var(--sp-2);
}

.legal-effective {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: var(--sp-16);
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-space);
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
}

.legal-page p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-600);
  margin-bottom: var(--sp-4);
}

.legal-page ul {
  margin: 0 0 var(--sp-4) var(--sp-6);
  padding: 0;
}

.legal-page li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-600);
  margin-bottom: var(--sp-1);
}

.legal-page a {
  color: var(--aquamarine-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  color: var(--deep-space);
}

.legal-table-wrapper {
  overflow-x: auto;
  margin-bottom: var(--sp-6);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: var(--sp-2) var(--sp-4);
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
  line-height: 1.5;
}

.legal-table th {
  font-weight: 600;
  color: var(--gray-800);
  background: var(--gray-50);
  white-space: nowrap;
}

.legal-table td strong {
  color: var(--gray-800);
}

.legal-page h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-2);
}

.legal-page ol {
  margin: 0 0 var(--sp-4) var(--sp-6);
  padding: 0;
}

.legal-page ol li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-600);
  margin-bottom: var(--sp-1);
}

.legal-highlight {
  background: var(--gray-50);
  border-left: 3px solid var(--aquamarine);
  border-radius: 0 8px 8px 0;
  padding: var(--sp-6) var(--sp-8);
  margin-bottom: var(--sp-6);
}

.legal-highlight p {
  margin-bottom: var(--sp-2);
}

.legal-highlight p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Context Flow Diagram
   ========================================================================== */

.flow-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr auto 1fr;
  gap: var(--sp-6);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto var(--sp-16);
}

.flow-column {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.flow-sources,
.flow-targets {
  gap: var(--sp-2);
  justify-content: center;
}

.flow-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: var(--sp-1);
}

/* Compact flow cards */
.flow-card {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: #fff;
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.flow-card-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.flow-card-group-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
}

.flow-card-logos {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  align-items: center;
}

.flow-card-logos a {
  display: flex;
  transition: transform var(--transition);
}

.flow-card-logos a:hover {
  transform: scale(1.15);
}

.flow-card-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}

/* Expedait native tools (separate labeled cards) */
.flow-native {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.flow-native-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px var(--sp-3);
  border: 1px solid var(--aquamarine);
  border-radius: 8px;
  background: var(--aquamarine-100);
  font-size: 12px;
  font-weight: 600;
  color: var(--deep-space);
}

.flow-native-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

/* SVG arrows */
.flow-arrow-svg {
  width: 80px;
  height: 20px;
}

/* Pulse animation for flow cards */
.flow-card--source.is-animated,
.flow-card--target.is-animated {
  animation: flowPulse 4s ease-in-out infinite;
}

@keyframes flowPulse {
  0%, 100% { border-color: var(--gray-200); }
  50% { border-color: var(--aquamarine); }
}

/* Center Expedait hub */
.flow-center {
  align-items: center;
  text-align: center;
}

.flow-expedait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-6);
  border: 2px solid var(--aquamarine);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 0 4px var(--aquamarine-100);
}

.flow-expedait-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.flow-expedait-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-space);
  letter-spacing: -0.01em;
}

.flow-docs {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
}

.flow-doc {
  font-size: 11px;
  font-weight: 600;
  color: var(--deep-space);
  background: var(--ice);
  padding: 2px 10px;
  border-radius: 9999px;
}

/* Flow meta (expert + scoring indicators) */
.flow-meta {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
  justify-content: center;
}

.flow-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
}

.flow-meta-item svg {
  color: var(--aquamarine-dark);
  flex-shrink: 0;
}

/* Checkmarks on docs */
.flow-doc--checked::before {
  content: '\2713';
  color: var(--aquamarine-dark);
  font-size: 10px;
  font-weight: 700;
  margin-right: 3px;
}

/* Arrows */
.flow-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--sp-1);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .hero > .container {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .hero-centered {
    text-align: center;
  }

  .hero-content {
    max-width: 640px;
    margin: 0 auto;
  }

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

  .hero-video {
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(30, 54, 80, 0.98);
    backdrop-filter: blur(8px);
    padding: var(--sp-4) var(--sp-6);
    border-bottom: 1px solid var(--steel);
    gap: var(--sp-4);
  }

  .nav-links--open {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    padding: calc(64px + var(--sp-16)) 0 var(--sp-16);
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section {
    padding: var(--sp-16) 0;
  }

  .section-title {
    font-size: 24px;
  }

  .pain-points {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-6);
  }

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

  .flow-diagram {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    max-width: 300px;
    margin: 0 auto var(--sp-12);
  }

  .flow-arrows {
    transform: rotate(90deg);
    padding: var(--sp-2) 0;
  }

  .flow-meta {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-1);
  }

  .partner-title {
    font-size: 24px;
  }

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

  .roadmap-compact-item {
    grid-template-columns: 70px 1fr;
  }

  .roadmap-compact-desc {
    grid-column: 1 / -1;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 22px;
  }
}
