@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600;6..72,700;6..72,800&display=swap');

:root {
  --surface: #f9f9f8;
  --surface-low: #f3f4f3;
  --surface-high: #e7e8e7;
  --card: rgba(255, 255, 255, 0.82);
  --text: #191c1c;
  --muted: #404847;
  --primary: #36605b;
  --primary-soft: #4f7973;
  --tertiary: #8d432c;
  --line: rgba(113, 121, 119, 0.18);
  --shadow: 0 24px 48px rgba(25, 28, 28, 0.06);
  --max: 1180px;
  --nav-height: 108px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 121, 115, 0.14), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(255, 219, 208, 0.55), transparent 26%),
    radial-gradient(circle at 24% 72%, rgba(178, 200, 231, 0.22), transparent 28%),
    var(--surface);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.page-wrap { padding-top: var(--nav-height); }
.marketing-section, .legal-hero-inner, .legal-page-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow,
.team-role,
.advisor-role,
.supplier-label,
.roadmap-phase,
.legal-kicker,
.legal-meta,
.roadmap-stop-label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(54, 96, 91, 0.82);
}

.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2,
.network-heading,
.email-signup h2,
.legal-card h2,
.roadmap-intro h2 {
  margin: 0;
  font-family: 'Newsreader', serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-heading p,
.section-copy,
.email-signup p,
.legal-card p,
.legal-card li,
.faq-item p,
.comparison-card p,
.team-card p,
.advisor-info li,
.supplier-benefit-card p,
.supplier-flow-card p,
.supplier-tier-card p,
.page-hero-copy p,
.roadmap-hero-copy p,
.roadmap-stop-note,
.story-copy p,
.story-panel li,
.supplier-proof-grid li,
.footer-left p,
.footer-disclaimer,
.roadmap-intro p,
.roadmap-item p,
.roadmap-stop-sub { color: var(--muted); }

.section-heading h2 em,
.hero-copy h1 em,
.about-hero-copy h1 em,
.page-hero-copy h1 em,
.roadmap-hero-copy h1 em,
.network-heading em,
.email-signup h2 em { font-style: italic; font-weight: 500; color: var(--primary); }

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #fff;
  box-shadow: 0 18px 36px rgba(54, 96, 91, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border-color: rgba(25, 28, 28, 0.07);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: rgba(54, 96, 91, 0.18);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover { transform: translateY(-1px); }

.site-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1080px, calc(100% - 24px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px 16px 24px;
  border-radius: 999px;
  background: rgba(249, 249, 248, 0.76);
  border: 1px solid rgba(25, 28, 28, 0.05);
  box-shadow: 0 16px 32px rgba(25, 28, 28, 0.05);
  backdrop-filter: blur(24px);
}

.nav-brand { display: inline-flex; align-items: center; }
.nav-logo { height: 42px; width: auto; }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(25, 28, 28, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.nav-links .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  box-shadow: 0 12px 30px rgba(54, 96, 91, 0.18);
}

.hero-section, .about-hero, .page-hero, .roadmap-hero, .legal-hero { padding: 44px 0 88px; }
.page-section { padding: 96px 0; }
.section-muted { background: rgba(243, 244, 243, 0.66); }
.section-soft { background: rgba(231, 232, 231, 0.44); }

.hero-grid,
.about-hero-grid,
.page-hero-grid,
.roadmap-hero-grid,
.story-grid,
.steps-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.hero-copy h1,
.about-hero-copy h1,
.page-hero-copy h1,
.roadmap-hero-copy h1,
.legal-hero-inner h1 {
  margin: 16px 0 24px;
  font-family: 'Newsreader', serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero-signup-form,
.signup-form,
.hero-actions,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-signup-form, .signup-form { margin-top: 24px; }
.hero-actions, .page-hero-actions { margin-top: 24px; }

.hero-signup-form input[type="email"],
.signup-form input[type="email"] {
  min-height: 56px;
  min-width: min(100%, 300px);
  flex: 1 1 300px;
  max-width: 360px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(54, 96, 91, 0.14);
  background: rgba(255, 255, 255, 0.92);
}

.hero-signup-msg, .signup-msg { margin-top: 12px; color: var(--primary); font-weight: 700; }

.hero-visual,
.about-visual,
.story-visual,
.team-card,
.advisor-card,
.comparison-card,
.stat-card,
.timeline-card,
.product-preview,
.testimonial-shell,
.network,
.email-signup,
.faq-item,
.page-hero-card,
.supplier-benefit-card,
.supplier-flow-card,
.supplier-tier-card,
.supplier-proof-card,
.roadmap-panel,
.roadmap-stop,
.legal-card,
.site-footer,
.story-panel {
  background: var(--card);
  border: 1px solid rgba(113, 121, 119, 0.12);
  box-shadow: var(--shadow);
}

.hero-card-stack, .about-hero-stack { display: grid; gap: 20px; }
.hero-visual, .about-visual { overflow: hidden; border-radius: 52px; min-height: 520px; }
.hero-visual img, .about-visual img, .story-visual img, .team-photo img, .advisor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel,
.about-pullquote {
  width: min(88%, 420px);
  margin: -72px auto 0;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(113, 121, 119, 0.12);
  box-shadow: var(--shadow);
}

.hero-panel p,
.about-pullquote p {
  margin: 0;
  font-family: 'Newsreader', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--primary);
}

.stats-grid,
.comparison-grid,
.team-grid,
.supplier-benefit-grid,
.supplier-flow-grid,
.supplier-tier-grid,
.supplier-proof-grid {
  display: grid;
  gap: 20px;
}

.stats-grid,
.comparison-grid,
.team-grid,
.supplier-benefit-grid,
.supplier-flow-grid,
.supplier-tier-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.supplier-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.stat-card,
.comparison-card,
.team-card,
.supplier-benefit-card,
.supplier-flow-card,
.supplier-tier-card,
.supplier-proof-card,
.timeline-card,
.product-preview,
.roadmap-panel,
.roadmap-stop,
.story-panel,
.network,
.email-signup,
.legal-card {
  padding: 30px;
  border-radius: 32px;
}

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

.stat-number {
  display: block;
  margin-bottom: 8px;
  font-family: 'Newsreader', serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--primary);
}

.stat-label { font-weight: 700; color: var(--muted); }

.comparison-card strong,
.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(54, 96, 91, 0.1);
  color: var(--primary);
  font-weight: 800;
}

.comparison-card h3,
.team-card h3,
.advisor-info h3,
.supplier-benefit-card h3,
.supplier-flow-card h3,
.supplier-tier-card h3,
.story-panel h3,
.roadmap-stop-head h3,
.page-hero-card h2,
.faq-item summary,
.supplier-proof-grid h3,
.roadmap-item h3 {
  margin: 0 0 12px;
  font-family: 'Newsreader', serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.comparison-card.is-highlight {
  background: linear-gradient(160deg, var(--primary), var(--primary-soft));
}

.comparison-card.is-highlight strong,
.comparison-card.is-highlight h3,
.comparison-card.is-highlight p { color: #fff; }

.comparison-card.is-highlight strong { background: rgba(255, 255, 255, 0.15); }

.steps-list { display: grid; gap: 28px; position: relative; }

.steps-list::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: rgba(79, 121, 115, 0.26);
}

.step-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  position: relative;
}

.step-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #fff;
  font-family: 'Newsreader', serif;
  font-size: 1.4rem;
}

.step-item h3 { margin: 2px 0 6px; font-family: 'Newsreader', serif; font-size: 1.9rem; }

.product-window {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.window-bar { display: flex; gap: 8px; padding: 14px 18px; background: rgba(25, 28, 28, 0.92); }
.window-dot { width: 11px; height: 11px; border-radius: 999px; background: rgba(255, 255, 255, 0.25); }
.window-dot:nth-child(1) { background: rgba(186, 26, 26, 0.4); }
.window-dot:nth-child(2) { background: rgba(141, 67, 44, 0.4); }
.window-dot:nth-child(3) { background: rgba(54, 96, 91, 0.4); }
.window-body { padding: 24px; background: rgba(249, 249, 248, 0.9); }
.window-row, .window-cards { display: grid; gap: 16px; }
.window-row { grid-template-columns: 1fr auto; align-items: center; margin-bottom: 16px; }
.window-pill, .window-avatar, .window-widget, .window-chart { border-radius: 20px; background: rgba(54, 96, 91, 0.08); }
.window-pill { height: 20px; width: 180px; }
.window-avatar { width: 48px; height: 48px; }
.window-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 16px; }
.window-widget, .window-chart { border: 1px solid rgba(54, 96, 91, 0.1); }
.window-widget { min-height: 132px; padding: 20px; }
.window-chart { min-height: 160px; padding: 24px; }

.window-widget::before,
.window-widget::after,
.window-chart::before,
.window-chart::after {
  content: "";
  display: block;
  border-radius: 999px;
  background: rgba(54, 96, 91, 0.16);
}

.window-widget::before { width: 48%; height: 12px; margin-bottom: 14px; }
.window-widget::after { width: 36%; height: 34px; }
.window-chart::before { width: 100%; height: 14px; margin-bottom: 12px; }
.window-chart::after { width: 72%; height: 14px; }

.testimonial-shell {
  border-radius: 52px;
  padding: 58px 42px;
  background: linear-gradient(145deg, var(--primary), #274944);
  color: #fff;
}

.testimonial-kicker { text-align: center; color: rgba(255, 255, 255, 0.58); }
.testimonial-content { max-width: 820px; margin: 0 auto; text-align: center; }

.testimonial-quote {
  margin: 18px 0;
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-style: italic;
}

.testimonial-author {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.testimonial-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots span { width: 8px; height: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.24); cursor: pointer; }
.testimonial-dots span.active { transform: scale(1.3); background: #fff; }

.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 0 24px; border-radius: 28px; cursor: pointer; }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "v";
  flex: 0 0 auto;
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { margin: 0; padding: 0 0 24px; }

.network, .email-signup { text-align: center; border-radius: 52px; }
.network-heading, .email-signup h2 { margin-bottom: 10px; }

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 38px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  opacity: 0.72;
}

.logo-row img { max-height: 46px; max-width: 150px; object-fit: contain; filter: grayscale(1); }

.team-grid { align-items: start; }
.team-card, .advisor-card { display: grid; gap: 20px; }
.team-photo, .advisor-photo, .story-visual { overflow: hidden; border-radius: 26px; min-height: 320px; }
.team-photo { aspect-ratio: 1 / 1; }
.team-card blockquote {
  margin: 10px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-style: italic;
}

.advisor-grid { display: grid; gap: 22px; }
.advisor-card {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  overflow: hidden;
}

.advisor-photo { min-height: 100%; border-radius: 0; }
.advisor-info { padding: 34px; }
.advisor-list, .story-panel ul, .supplier-proof-grid ul, .legal-card ul { margin: 0; padding-left: 20px; }

.story-visual { min-height: 480px; border-radius: 52px; }
.page-hero-card ul, .page-hero-card ol { margin: 18px 0 0; padding-left: 22px; }
.page-hero-card li { margin: 10px 0; color: var(--muted); }

.roadmap-page-inner { display: grid; gap: 28px; }
.roadmap-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.roadmap-intro p { margin: 12px 0 0; }
.roadmap-trail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 12px 0;
}

.roadmap-trail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 760px;
  transform: translateX(-50%);
  opacity: 0.82;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 760 1400' preserveAspectRatio='none'%3E%3Cpath d='M380 0 C 18 195, 742 270, 380 470 C 24 680, 736 755, 380 935 C 32 1145, 728 1225, 380 1400' fill='none' stroke='rgba(54,96,91,0.28)' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M380 0 C 18 195, 742 270, 380 470 C 24 680, 736 755, 380 935 C 32 1145, 728 1225, 380 1400' fill='none' stroke='rgba(79,121,115,0.12)' stroke-width='14' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 760px 1400px;
  pointer-events: none;
}

.roadmap-stop {
  position: relative;
  padding: 0 0 10px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.roadmap-stop-marker {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  border: 4px solid var(--primary);
  transform: translateX(-50%);
  box-shadow: 0 0 0 8px rgba(54, 96, 91, 0.08);
  z-index: 1;
}

.roadmap-stop-head {
  position: relative;
  left: calc(50% + 26px);
  width: fit-content;
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 2px;
  display: flex;
  margin-bottom: 22px;
}

.roadmap-stop-label { font-size: 1.05rem; }
.roadmap-stop-sub { font-weight: 700; }

.roadmap-stop-now .roadmap-stop-label,
.roadmap-stop-now .roadmap-stop-marker {
  color: var(--tertiary);
  border-color: var(--tertiary);
}

.roadmap-stop-next .roadmap-stop-label,
.roadmap-stop-next .roadmap-stop-marker {
  color: var(--primary-soft);
  border-color: var(--primary-soft);
}

.roadmap-stop-later .roadmap-stop-label,
.roadmap-stop-later .roadmap-stop-marker {
  color: var(--primary);
  border-color: var(--primary);
}

.roadmap-stop-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.roadmap-item {
  position: relative;
  width: calc(50% - 142px);
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(113, 121, 119, 0.12);
  box-shadow: var(--shadow);
}

.roadmap-item::before {
  content: "";
  position: absolute;
  top: 26px;
  width: 34px;
  height: 2px;
  background: rgba(54, 96, 91, 0.22);
}

.roadmap-item h3 { font-size: 1.8rem; }
.roadmap-item p { margin: 0; }

.roadmap-item:nth-child(odd) {
  margin-right: auto;
}

.roadmap-item:nth-child(odd)::before {
  right: -34px;
}

.roadmap-item:nth-child(even) {
  margin-left: auto;
}

.roadmap-item:nth-child(even)::before {
  left: -34px;
}

.roadmap-stop-grid-reverse .roadmap-item:nth-child(odd) {
  margin-left: auto;
  margin-right: 0;
}

.roadmap-stop-grid-reverse .roadmap-item:nth-child(odd)::before {
  left: -34px;
  right: auto;
}

.roadmap-stop-grid-reverse .roadmap-item:nth-child(even) {
  margin-right: auto;
  margin-left: 0;
}

.roadmap-stop-grid-reverse .roadmap-item:nth-child(even)::before {
  right: -34px;
  left: auto;
}

.roadmap-stop-now .roadmap-stop-marker {
  top: 14px;
  left: calc(50% - 59px);
}

.roadmap-stop-now .roadmap-stop-head {
  left: calc(50% - 31px);
  top: 10px;
  margin-bottom: 28px;
}

.roadmap-stop-next .roadmap-stop-marker {
  left: calc(50% - 16px);
  top: -69px;
}

.roadmap-stop-next .roadmap-stop-head {
  left: calc(50% + 12px);
  top: -75px;
}

.roadmap-stop-later .roadmap-stop-marker {
  left: calc(50% - 100px);
}

.roadmap-stop-later .roadmap-stop-head {
  left: calc(50% - 72px);
}

.roadmap-stop-now .roadmap-item:first-child,
.roadmap-stop-next .roadmap-item:nth-child(2),
.roadmap-stop-later .roadmap-item:last-child {
  background: linear-gradient(160deg, rgba(54, 96, 91, 0.12), rgba(79, 121, 115, 0.08));
  border-color: rgba(54, 96, 91, 0.18);
}

.roadmap-note {
  margin-top: 28px;
  text-align: center;
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.legal-page { padding-bottom: 24px; }
.legal-intro { max-width: 720px; }
.legal-card > *:first-child { margin-top: 0; }
.legal-card p, .legal-card ul { margin: 0 0 18px; }
.legal-card h2 { margin: 34px 0 12px; font-size: 2rem; }
.legal-card a, .roadmap-stop a, .footer-legal a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 88px auto 36px;
  padding: 34px;
  border-radius: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-left strong {
  display: inline-block;
  margin-bottom: 10px;
  font-family: 'Newsreader', serif;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.footer-right { max-width: 520px; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(54, 96, 91, 0.08);
  color: var(--primary);
}

.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 12px; font-weight: 700; }

@media (max-width: 1040px) {
  .hero-grid,
  .about-hero-grid,
  .page-hero-grid,
  .roadmap-hero-grid,
  .story-grid,
  .steps-shell,
  .advisor-card { grid-template-columns: 1fr; }

  .stats-grid,
  .comparison-grid,
  .team-grid,
  .supplier-benefit-grid,
  .supplier-flow-grid,
  .supplier-tier-grid,
  .supplier-proof-grid { grid-template-columns: 1fr; }

  .hero-visual, .about-visual, .story-visual { min-height: 380px; }

  .roadmap-trail::before {
    left: -18px;
    width: 72px;
    transform: none;
    background-size: 72px 440px;
  }

  .roadmap-stop {
    padding-left: 38px;
  }

  .roadmap-stop-marker {
    left: 18px;
    transform: translateX(-50%);
    top: 6px;
  }

  .roadmap-stop-head {
    left: 0;
    width: auto;
    display: flex;
    padding-top: 0;
    margin-bottom: 18px;
  }

  .roadmap-stop-now .roadmap-stop-marker,
  .roadmap-stop-next .roadmap-stop-marker,
  .roadmap-stop-later .roadmap-stop-marker {
    left: 18px;
    top: 6px;
  }

  .roadmap-stop-now .roadmap-stop-head,
  .roadmap-stop-next .roadmap-stop-head,
  .roadmap-stop-later .roadmap-stop-head {
    left: 0;
    top: 0;
    margin-bottom: 18px;
  }

  .roadmap-item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .roadmap-item::before,
  .roadmap-item:nth-child(odd)::before,
  .roadmap-item:nth-child(even)::before,
  .roadmap-stop-grid-reverse .roadmap-item:nth-child(odd)::before,
  .roadmap-stop-grid-reverse .roadmap-item:nth-child(even)::before {
    left: -20px;
    right: auto;
    width: 20px;
  }
}

@media (max-width: 760px) {
  :root { --nav-height: 142px; }

  .site-nav {
    top: 12px;
    width: calc(100% - 16px);
    padding: 14px 16px;
    border-radius: 30px;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links { width: 100%; justify-content: flex-start; }
  .marketing-section, .legal-hero-inner, .legal-page-inner, .site-footer { width: calc(100% - 24px); }
  .hero-section, .about-hero, .page-hero, .roadmap-hero, .legal-hero, .page-section { padding-top: 28px; padding-bottom: 72px; }

  .hero-copy h1,
  .about-hero-copy h1,
  .page-hero-copy h1,
  .roadmap-hero-copy h1,
  .legal-hero-inner h1 { font-size: clamp(2.8rem, 15vw, 4.3rem); }

  .hero-panel, .about-pullquote { width: calc(100% - 32px); margin-top: -44px; padding: 22px; }

  .stat-card,
  .comparison-card,
  .team-card,
  .supplier-benefit-card,
  .supplier-flow-card,
  .supplier-tier-card,
  .supplier-proof-card,
  .timeline-card,
  .product-preview,
  .roadmap-panel,
  .roadmap-stop,
  .story-panel,
  .network,
  .email-signup,
  .legal-card,
  .site-footer { padding: 24px; }

  .faq-item { padding: 0 18px; }
  .site-footer { flex-direction: column; }
}
