:root {
  --bg: #fafaf8;
  --near-black: #1c1917;
  --taupe: #78716c;
  --taupe-lt: #a8a29e;
  --border: #e7e5e4;
  --white: #ffffff;
  --green: #059669;
  --mint: #6ee7b7;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Trebuchet MS", Verdana, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--near-black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

p {
  color: var(--taupe);
  line-height: 1.75;
}

h1,
h2,
h3,
h4 {
  color: var(--near-black);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.container {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 40px;
}

.section {
  border-top: 1px solid var(--border);
  padding: 88px 0;
}

.section-eyebrow {
  color: var(--taupe);
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-headline {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 15px;
  margin-bottom: 48px;
  max-width: 680px;
}

.page-hero,
.policy-header {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 88px 0 72px;
  position: relative;
}

.page-hero::before,
.policy-header::before,
.hero::before {
  background-image:
    linear-gradient(rgba(231, 229, 228, 0.75) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 229, 228, 0.75) 1px, transparent 1px);
  background-size: 60px 60px;
  content: "";
  inset: 0;
  opacity: 0.42;
  position: absolute;
}

.page-hero-inner,
.policy-header-inner {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.page-hero-eyebrow,
.policy-header-label {
  color: var(--taupe);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.page-hero h1,
.policy-header h1 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 18px;
  max-width: 820px;
}

.page-hero p {
  font-size: 17px;
  max-width: 660px;
}

.partner-hero::after {
  background: radial-gradient(circle, rgba(5, 150, 105, 0.12) 0%, transparent 65%);
  content: "";
  height: 520px;
  pointer-events: none;
  position: absolute;
  right: -140px;
  top: -180px;
  width: 520px;
}

nav {
  backdrop-filter: blur(12px);
  background: rgba(250, 250, 248, 0.94);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  height: 86px;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 40px;
}

.logo,
.footer-brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
}

.nav-lockup {
  max-width: 54vw;
  width: 228px;
}

.footer-lockup {
  width: 128px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: var(--taupe);
  font-size: 13px;
  transition: color 0.15s ease;
}

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

.nav-links a.active {
  font-weight: 700;
}

.nav-cta {
  background: var(--green);
  border-radius: 3px;
  color: var(--white) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 9px 18px;
  text-transform: uppercase;
  transition: background 0.15s ease !important;
}

.nav-cta:hover {
  background: #047857;
}

.hero {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 112px 0 88px;
  position: relative;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) 400px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  color: var(--taupe);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 720px;
}

.hero-sub {
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-hero {
  background: var(--green);
  border-radius: 3px;
  color: var(--white);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  text-transform: uppercase;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-hero:hover {
  background: #047857;
  transform: translateY(-1px);
}

.btn-ghost {
  border-bottom: 1px solid var(--border);
  color: var(--taupe);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding-bottom: 2px;
  transition: color 0.15s ease;
}

.btn-ghost:hover {
  color: var(--near-black);
}

.hero-diagram {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.diag-label {
  color: var(--taupe-lt);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.diag-box,
.diag-engine {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 12px;
  text-align: center;
}

.diag-box span,
.diag-engine span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.diag-box span {
  color: var(--taupe);
}

.diag-engine span {
  color: var(--near-black);
}

.diag-arrow {
  display: flex;
  justify-content: center;
  margin: 4px 0;
  width: 100%;
}

.diag-stages {
  display: flex;
  gap: 4px;
  margin: 4px 0;
}

.diag-stage {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  flex: 1;
  padding: 8px 4px;
  position: relative;
  text-align: center;
}

.diag-stage span {
  color: var(--taupe);
  font-size: 9px;
  font-weight: 700;
}

.diag-gate {
  background: var(--green);
  border-radius: 1px;
  height: 9px;
  position: absolute;
  right: -5px;
  top: -5px;
  transform: rotate(45deg);
  width: 9px;
}

.diag-outcome {
  background: var(--taupe);
  border-radius: 4px;
  margin-top: 4px;
  padding: 11px 12px;
  text-align: center;
}

.diag-outcome span {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.diag-legend {
  align-items: center;
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.diag-legend-gate {
  background: var(--green);
  flex-shrink: 0;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
}

.diag-legend span {
  color: var(--taupe-lt);
  font-size: 10px;
}

.stat-bar {
  background: var(--taupe);
}

.stat-bar-inner {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 40px;
}

.stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 36px 40px;
}

.stat-num {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num span {
  color: rgba(255, 255, 255, 0.6);
}

.stat-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.stat-source {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  margin-top: 4px;
}

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

.problem-card,
.gap-card {
  background: var(--white);
  padding: 36px 28px;
  transition: background 0.2s ease;
}

.problem-card:hover,
.gap-card:hover {
  background: #f5f4f1;
}

.prob-num,
.gap-num {
  color: var(--border);
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 12px;
}

.prob-tag,
.gap-tag,
.component-tag,
.type-tag,
.team-badge {
  background: var(--taupe);
  border-radius: 3px;
  color: var(--white);
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.component-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--taupe);
  margin-bottom: 16px;
}

.problem-card h3,
.gap-card h3,
.component-card h3,
.principle-card h3,
.type-card h3,
.criteria-item h4,
.team-headline,
.notice-panel h2,
.pricing-block h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.problem-card p,
.gap-card p,
.component-card p,
.principle-card p,
.type-card p,
.criteria-item p,
.team-bio,
.notice-panel p,
.pricing-block p {
  font-size: 14px;
}

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

.component-card,
.principle-card,
.type-card,
.criteria-item,
.fact-card,
.notice-panel,
.pricing-block,
.thesis-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.component-card {
  padding: 36px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.component-card:hover,
.principle-card:hover,
.type-card:hover {
  box-shadow: 0 6px 24px rgba(28, 25, 23, 0.07);
  transform: translateY(-2px);
}

.outcomes-strip {
  background: var(--taupe);
  padding: 38px 0;
}

.outcomes-inner {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 40px;
}

.outcome-item {
  align-items: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 10px;
  padding: 0 24px;
}

.outcome-dot,
.factor-dot {
  background: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  height: 5px;
  margin-top: 7px;
  width: 5px;
}

.outcome-item span {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.principle-card {
  display: flex;
  gap: 20px;
  padding: 32px;
}

.principle-icon {
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.page-hero + .section,
.policy-header + .policy-body {
  border-top: none;
}

.pipeline {
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  overflow: hidden;
}

.pipeline-stage {
  background: var(--white);
  border-right: 1px solid var(--border);
  flex: 1;
  padding: 28px 16px;
  text-align: center;
}

.pipeline-stage:last-child {
  border-right: none;
}

.pipeline-gate,
.gate-diamond {
  background: var(--green);
  border-radius: 1px;
  display: inline-block;
  height: 10px;
  transform: rotate(45deg);
  width: 10px;
}

.pipeline-gate {
  margin-bottom: 14px;
}

.pipeline-stage h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.pipeline-stage p {
  font-size: 12px;
  line-height: 1.55;
}

.gate-note {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.gate-note span {
  color: var(--taupe);
  font-size: 12px;
}

.pricing-block {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr 1fr;
  padding: 48px;
}

.pricing-link,
.text-link,
.fact-link {
  border-bottom: 2px solid var(--green);
  color: var(--near-black);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding-bottom: 2px;
  transition: color 0.15s ease;
}

.pricing-link:hover,
.text-link:hover,
.fact-link:hover {
  color: var(--green);
}

.factors-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.factor-item {
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  display: flex;
  gap: 12px;
  padding: 13px 16px;
}

.factor-dot {
  background: var(--green);
}

.factor-item span {
  color: var(--taupe);
  font-size: 14px;
  line-height: 1.5;
}

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

.integration-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--taupe);
  font-size: 13px;
  font-weight: 700;
  padding: 13px 14px;
  text-align: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.integration-chip:hover {
  border-color: var(--taupe);
  color: var(--near-black);
}

.type-card {
  padding: 40px 36px;
}

.type-card-icon {
  align-items: center;
  background: rgba(5, 150, 105, 0.08);
  border-radius: 10px;
  display: flex;
  height: 52px;
  justify-content: center;
  margin-bottom: 24px;
  width: 52px;
}

.type-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.type-card li {
  align-items: flex-start;
  color: var(--taupe);
  display: flex;
  font-size: 14px;
  gap: 10px;
  line-height: 1.5;
}

.type-card li::before {
  background: var(--green);
  border-radius: 50%;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 6px;
  margin-top: 7px;
  width: 6px;
}

.criteria-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.criteria-item {
  display: flex;
  gap: 20px;
  padding: 28px 28px 28px 24px;
}

.criteria-num {
  color: rgba(5, 150, 105, 0.28);
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  width: 36px;
}

.contact-band {
  background: var(--green);
  overflow: hidden;
  padding: 88px 0;
  position: relative;
}

.contact-band::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  content: "";
  inset: 0;
  position: absolute;
}

.contact-inner {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.contact-inner .section-eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.contact-headline {
  color: var(--white);
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  margin-bottom: 14px;
}

.contact-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  max-width: 540px;
}

.contact-right {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-email-label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-email,
.cta-email {
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.18rem;
  padding-bottom: 3px;
  transition: border-color 0.15s ease;
  white-space: nowrap;
}

.contact-email:hover {
  border-color: var(--white);
}

.team-list {
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
}

.team-card {
  background: var(--white);
  display: grid;
  gap: 52px;
  grid-template-columns: 220px 1fr;
  padding: 44px 40px;
}

.team-avatar {
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  height: 64px;
  justify-content: center;
  margin-bottom: 18px;
  width: 64px;
}

.team-initials {
  color: var(--taupe);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.team-name {
  color: var(--near-black);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.team-role {
  color: var(--taupe);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.team-function {
  color: var(--taupe-lt);
  font-size: 12px;
  margin-bottom: 16px;
}

.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-headline {
  line-height: 1.45;
}

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

.fact-card {
  padding: 28px;
}

.fact-label {
  color: var(--taupe-lt);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.fact-value {
  color: var(--near-black);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 6px;
}

.fact-sub {
  color: var(--taupe);
  font-size: 13px;
  line-height: 1.55;
}

.thesis-block {
  padding: 52px;
}

.thesis-block blockquote {
  border-left: 3px solid var(--green);
  color: var(--near-black);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1.6;
  margin-bottom: 28px;
  padding-left: 28px;
}

.cta-section {
  border-top: 1px solid var(--border);
  padding: 80px 0;
}

.cta-inner {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 40px;
}

.cta-headline {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: 10px;
}

.cta-sub {
  font-size: 15px;
  max-width: 520px;
}

.cta-actions {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-email {
  border-bottom-color: var(--green);
  color: var(--near-black);
}

.cta-email:hover {
  border-bottom-color: var(--green);
  color: var(--green);
}

.cta-note {
  color: var(--taupe-lt);
  font-size: 12px;
  text-align: right;
}

.policy-header-label {
  color: var(--taupe);
}

.policy-date {
  color: var(--taupe);
  font-size: 13px;
}

.policy-body {
  margin: 0 auto;
  max-width: 760px;
  padding: 64px 40px 96px;
}

.policy-intro {
  border-bottom: 1px solid var(--border);
  color: var(--near-black);
  font-size: 16px;
  margin-bottom: 48px;
  padding-bottom: 48px;
}

.policy-section {
  margin-bottom: 48px;
}

.policy-section h2 {
  border-top: 3px solid var(--green);
  display: inline-block;
  font-size: 1.1rem;
  margin-bottom: 14px;
  padding-right: 12px;
  padding-top: 4px;
}

.policy-section p {
  color: var(--near-black);
  font-size: 15px;
  margin-bottom: 12px;
}

.policy-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin-bottom: 12px;
}

.policy-section li {
  align-items: flex-start;
  color: var(--near-black);
  display: flex;
  font-size: 15px;
  gap: 12px;
  line-height: 1.65;
}

.policy-section li::before {
  background: var(--green);
  border-radius: 50%;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 6px;
  margin-top: 8px;
  width: 6px;
}

.policy-section a {
  border-bottom: 1px solid rgba(5, 150, 105, 0.3);
  color: var(--green);
  transition: border-color 0.15s ease;
}

.policy-section a:hover {
  border-color: var(--green);
}

.notice-panel {
  max-width: 760px;
  padding: 42px;
}

.notice-badge {
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  padding: 6px 16px;
  text-transform: uppercase;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--taupe);
  font-size: 13px;
  padding: 8px 16px;
}

footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 36px 0;
}

.footer-inner {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: center;
  list-style: none;
  min-width: 0;
}

.footer-links a {
  color: var(--taupe);
  font-size: 12px;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--near-black);
}

.footer-copy {
  color: var(--taupe-lt);
  font-size: 12px;
  justify-self: end;
  text-align: right;
}

@media (max-width: 980px) {
  .hero-grid,
  .cta-inner,
  .contact-inner,
  .pricing-block,
  .team-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-diagram {
    display: none;
  }

  .problem-grid,
  .gap-grid,
  .component-grid,
  .principles-grid,
  .types-grid,
  .criteria-list,
  .facts-grid {
    grid-template-columns: 1fr;
  }

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

  .outcomes-inner {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pipeline {
    flex-direction: column;
  }

  .pipeline-stage {
    border-bottom: 1px solid var(--border);
    border-right: none;
  }

  .pipeline-stage:last-child {
    border-bottom: none;
  }

  .cta-actions,
  .contact-right {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-copy {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .container,
  .page-hero-inner,
  .policy-header-inner,
  .cta-inner,
  .contact-inner,
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-inner {
    height: 78px;
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-lockup {
    max-width: 66vw;
    width: 188px;
  }

  .footer-lockup {
    width: 120px;
  }

  .hero,
  .page-hero,
  .policy-header {
    padding-bottom: 60px;
    padding-top: 76px;
  }

  .hero {
    padding-top: 96px;
  }

  .section,
  .cta-section,
  .contact-band {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .stat-bar-inner {
    padding: 0 20px;
  }

  .stat-item,
  .outcome-item,
  .pricing-block,
  .team-card,
  .thesis-block,
  .notice-panel {
    padding-left: 24px;
    padding-right: 24px;
  }

  .outcomes-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .outcome-item {
    border-right: none;
    padding: 0;
  }

  .contact-inner {
    gap: 28px;
  }

  .policy-body {
    padding: 48px 24px 72px;
  }
}
