:root {
  --black: #191919;
  --muted: rgba(0, 0, 0, 0.65);
  --line: #e2e2e2;
  --pink: #0b6960;
  --yc: #0b6960;
  --ink: #10211f;
  --deep-teal: #063b37;
  --brand-bg: #fff4f4;
  --brand-bg-soft: #fffafa;
  --brand-surface: #ffffff;
  --brand-soft-surface: #f7fbfa;
  --brand-line: #cfe8e3;
  --brand-mint: #15fbe0;
  --brand-mint-soft: #d9fff9;
  --brand-teal: #0b6960;
  --brand-coral: #ff6b5c;
  --brand-coral-soft: #ffb5ad;
  --brand-muted: #5e6f6b;
  --brand-shadow: 0 18px 60px rgba(6, 59, 55, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--black);
  font-family:
    "General Sans", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button {
  font: inherit;
}

.build-hero {
  --build-background: #fff4f4;
  --build-foreground: var(--ink);
  --build-muted: var(--ink);
  --build-pixel-top: #62f0df;
  --build-pixel-mid: #a6ece4;
  --build-pixel-bottom: #f4dfdf;
  --build-primary: #15fbe0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--build-foreground);
  font-family: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
}

.build-hero-frame {
  position: relative;
  display: grid;
  width: min(1300px, 100vw);
  height: 700px;
  min-height: 520px;
  margin: 0 auto;
  place-items: center;
  overflow: hidden;
  border-inline: 1px dashed var(--line);
  background: linear-gradient(180deg, var(--build-primary) 6.25%, var(--build-background) 83.654%);
}

.build-hero-frame::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(16, 33, 31, 0.08) 1px, transparent 0);
  background-position: center;
  background-size: 26px 26px;
  content: "";
  -webkit-mask-image: radial-gradient(ellipse 62% 52% at 50% 44%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 62% 52% at 50% 44%, black 20%, transparent 100%);
  pointer-events: none;
}

.build-hero-canvas {
  position: absolute;
  inset: -1px 0 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.build-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(894px, calc(100% - 48px));
  flex-direction: column;
  align-items: center;
  gap: 21px;
  text-align: center;
}

.build-hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-family: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  background: linear-gradient(270deg, #0b6960 0%, #063b37 58%, #ff6b5c 112%);
  background-clip: text;
  -webkit-background-clip: text;
}

.build-hero-kicker-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  align-items: center;
  justify-content: center;
  color: #0b6960;
}

.build-hero-kicker-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.build-hero h1 {
  margin: 0;
  font-family: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1.8px;
  line-height: 1.12;
}

.build-hero h1 em {
  color: var(--build-primary);
  font-style: italic;
}

.build-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(16, 33, 31, 0.68);
  font-family: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.build-hero-button {
  height: 36px;
  min-height: 36px;
  margin-top: 3px;
  border: 0;
  border-radius: 2px;
  background: var(--deep-teal);
  color: #fff;
  padding: 8px 14px;
  box-shadow: none;
  cursor: pointer;
  font-family: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-header__margin {
  display: flex;
  justify-content: center;
  width: 100%;
}

.nav {
  position: relative;
  display: flex;
  width: min(1300px, 100%);
  height: 72px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 95.6px;
  height: 25.6px;
  object-fit: contain;
}

.nav-links {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 32px;
  transform: translateX(-50%);
}

.nav-links a {
  color: var(--ink);
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-decoration: none;
}

.nav-links a:hover {
  opacity: 0.72;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ghost-button,
.dark-button,
.outline-button {
  min-width: 0;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ghost-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.cta-button {
  height: 36px;
  border: 0;
  border-radius: 2px;
  background: var(--deep-teal);
  color: #fff;
  padding: 8px 14px;
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.cta-button:hover {
  background: var(--brand-mint);
  color: var(--deep-teal);
  box-shadow: 0 10px 28px rgba(11, 105, 96, 0.16);
  transform: translateY(-1px);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button:focus-visible {
  outline: 2px solid var(--brand-mint);
  outline-offset: 3px;
}

.dark-button {
  height: 36px;
  border: 1px solid var(--black);
  background: var(--black);
  color: #fff;
  padding: 0 14px;
  font-size: 15px;
}

.dark-button.large,
.outline-button.large {
  height: 40px;
  padding: 0 10px;
  font-size: 14px;
}

.outline-button {
  border: 1px solid #000;
  background: transparent;
  color: #000;
}

.hero {
  overflow: hidden;
  background: #fff;
}

.hero-frame {
  position: relative;
  width: min(1300px, 100vw);
  height: 700px;
  margin: 0 auto;
}

.hero-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 20;
  border-left: 1px dashed var(--line);
  pointer-events: none;
}

.hero-rail-left {
  left: 0;
}

.hero-rail-right {
  right: 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: 50px 509px 59px 682px;
  height: 100%;
  min-height: 520px;
}

.hero-layout--copy-only {
  grid-template-columns: minmax(50px, 1fr) minmax(0, 509px) minmax(50px, 1fr);
}

.hero-copy {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.yc-line {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13.5px;
  line-height: 1;
  color: var(--black);
  text-transform: uppercase;
}

.yc-mark {
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  background: var(--yc);
  color: #fff;
  font-size: 10px;
  font-weight: 650;
}

.yc-name {
  color: var(--yc);
}

.copy-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  margin: 0;
  color: var(--black);
  font-size: 52px;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero p {
  max-width: 509px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

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

.hero-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: auto;
  height: 700px;
}

.hero-svg {
  position: absolute;
  inset: 0;
}

.hero-svg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-svg.is-restarting {
  opacity: 0.999;
}

.below {
  border-top: 1px solid #ededed;
  padding: 72px min(8vw, 80px) 70px;
}

.below span,
.eyebrow {
  display: block;
  margin-bottom: 22px;
  color: #e367a8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.below h2,
.section-frame h2 {
  max-width: 680px;
  margin: 0;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.08;
}

.below p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(25, 25, 25, 0.64);
  font-size: 16px;
  line-height: 1.55;
}

.team-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.team-strip-inner {
  display: flex;
  width: min(1300px, 100vw);
  min-height: 170px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-inline: 1px dashed var(--line);
  color: rgba(25, 25, 25, 0.7);
  font-size: 18px;
}

.team-strip-inner strong {
  color: #191919;
  font-weight: 600;
}

.team-school {
  display: inline-block;
  color: #191919;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1;
}

.section-frame {
  width: min(1300px, 100vw);
  margin: 0 auto;
  padding: 86px 40px;
  border-inline: 1px solid var(--line);
}

.problem-section,
.benchmark-section,
.build-section,
.workflow-section,
.faq-section {
  border-top: 1px solid var(--line);
  background: #fff;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border: 1px solid var(--line);
}

.problem-grid article {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.problem-grid article:last-child {
  border-right: 0;
}

.problem-grid span,
.build-grid span,
.workflow-grid span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: rgba(25, 25, 25, 0.45);
  font-size: 13px;
}

.problem-grid strong {
  display: block;
  margin-top: 74px;
  color: #191919;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.problem-grid p,
.problem-note p,
.capability-copy p,
.build-grid p,
.workflow-grid p {
  color: rgba(25, 25, 25, 0.64);
  line-height: 1.55;
}

.problem-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 36px;
  margin-top: 46px;
}

.problem-note p {
  margin: 0;
  max-width: 820px;
  font-size: 17px;
}

.problem-note a,
.text-link {
  color: #191919;
  font-weight: 600;
  text-decoration: none;
}

.capability-row {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 2fr);
  gap: 64px;
  width: min(1300px, 100vw);
  min-height: 478px;
  margin: 0 auto;
  padding: 64px 40px 32px;
  border-top: 1px solid var(--line);
  border-inline: 1px solid var(--line);
  background: #fff;
}

.capability-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 390px;
  padding-bottom: 8px;
}

.capability-copy h3 {
  margin: 0 0 20px;
  color: #191919;
  font-size: 28px;
  line-height: 1.05;
}

.capability-copy p {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.parse-demo,
.extract-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  min-height: 350px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.demo-doc,
.raw-input,
.extracted-output,
.parse-status {
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.demo-title,
.chart-title,
.raw-input b,
.extracted-output b,
.parse-status span {
  display: block;
  margin-bottom: 16px;
  color: rgba(25, 25, 25, 0.66);
  font-size: 12px;
}

.chart-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding: 10px 0;
  color: rgba(25, 25, 25, 0.72);
  font-size: 13px;
}

.demo-doc p {
  margin: 16px 0 0;
  color: rgba(25, 25, 25, 0.52);
  font-size: 12px;
  line-height: 1.5;
}

.parse-status {
  border-color: rgba(11, 105, 96, 0.4);
}

.parse-status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #e367a8;
  animation: split-dot-pulse 1.2s ease-in-out infinite;
}

.parse-status b {
  display: block;
  margin-top: 20px;
  color: rgba(25, 25, 25, 0.52);
  font-size: 12px;
  font-weight: 500;
}

.raw-input dl {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  margin: 0;
  font-size: 13px;
}

.raw-input dt {
  color: rgba(25, 25, 25, 0.5);
}

.raw-input dd {
  margin: 0;
}

.extracted-output {
  border-color: rgba(11, 105, 96, 0.48);
  background: rgba(217, 255, 249, 0.34);
}

.extracted-output p {
  margin: 10px 0;
  color: rgba(25, 25, 25, 0.72);
  font-size: 13px;
}

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

.split-card {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 2fr);
  gap: 64px;
  width: min(1300px, 100vw);
  min-height: 478px;
  margin: 0 auto;
  padding: 64px 40px 32px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 390px;
  padding-bottom: 8px;
}

.split-copy h3 {
  margin: 0 0 20px;
  color: #191919;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.split-copy p {
  margin: 0;
  color: rgba(25, 25, 25, 0.72);
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.split-art {
  display: flex;
  min-height: 380px;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.split-stage {
  position: relative;
  width: 640px;
  height: 380px;
  font-family:
    "Geist Mono", ui-monospace,
    SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #191919;
}

.split-document {
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 366px;
  border: 1px solid #d9d9d9;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.split-file-title {
  display: flex;
  height: 28px;
  align-items: center;
  border-bottom: 1px solid #efefef;
  padding: 0 12px;
  color: rgba(25, 25, 25, 0.72);
  font-size: 11px;
  letter-spacing: -0.02em;
}

.split-page {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  height: 53px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #efefef;
  padding: 0 10px;
  background: #fff;
  transition:
    background 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.split-page:last-child {
  border-bottom: 0;
}

.split-page.is-active {
  background: linear-gradient(90deg, rgba(11, 105, 96, 0.22), rgba(217, 255, 249, 0.42));
  box-shadow:
    inset 0 0 0 1px rgba(11, 105, 96, 0.38),
    0 0 0 1px rgba(217, 255, 249, 0.42);
}

.split-page-number {
  color: rgba(25, 25, 25, 0.55);
  font-size: 11px;
}

.split-lines {
  display: grid;
  gap: 4px;
  align-self: center;
}

.split-lines i {
  display: block;
  width: 82px;
  height: 3px;
  background: #d9d9d9;
}

.split-lines i:nth-child(2) {
  width: 108px;
}

.split-lines i:nth-child(3) {
  width: 68px;
}

.split-page.is-active .split-lines i {
  background: rgba(11, 105, 96, 0.44);
}

.split-tag {
  border: 1px solid rgba(11, 105, 96, 0.52);
  background: rgba(217, 255, 249, 0.36);
  padding: 3px 6px;
  color: rgba(25, 25, 25, 0.72);
  font-size: 10px;
  letter-spacing: -0.02em;
}

.split-page.is-active .split-tag {
  background: rgba(217, 255, 249, 0.72);
  border-color: rgba(11, 105, 96, 0.82);
  color: #191919;
}

.split-connectors {
  position: absolute;
  top: 0;
  left: 252px;
  width: 140px;
  height: 360px;
  overflow: visible;
}

.split-connectors path {
  fill: none;
  stroke: #e367a8;
  stroke-linecap: round;
  stroke-width: 1.15;
  opacity: 0.16;
  transition: opacity 300ms ease-out;
}

.split-connectors path.is-active {
  animation: split-line-draw 950ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 1;
  stroke-width: 1.35;
}

.split-connectors circle {
  fill: #e367a8;
  opacity: 0.28;
  transition: opacity 260ms ease-out;
}

.split-connectors circle.is-active {
  animation: split-dot-pulse 950ms ease-out forwards;
  opacity: 1;
}

@keyframes split-line-draw {
  from {
    stroke-dasharray: 0 1;
  }
  to {
    stroke-dasharray: 1 0;
  }
}

@keyframes split-dot-pulse {
  0% {
    r: 2.2px;
    opacity: 0.25;
  }
  40% {
    r: 5px;
    opacity: 1;
  }
  100% {
    r: 3.2px;
    opacity: 1;
  }
}

.split-results {
  position: absolute;
  top: 6px;
  right: 0;
  display: grid;
  width: 260px;
  gap: 26px;
}

.split-bucket {
  border: 1px solid rgba(11, 105, 96, 0.48);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(11, 105, 96, 0.14);
  transition:
    background 360ms ease-out,
    border-color 360ms ease-out,
    box-shadow 360ms ease-out,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.split-bucket.is-active {
  border-color: rgba(11, 105, 96, 0.94);
  background: rgba(217, 255, 249, 0.38);
  box-shadow:
    0 0 0 1px rgba(217, 255, 249, 0.42),
    -4px -4px 0 rgba(252, 129, 8, 0.12);
  transform: translateY(-2px);
}

.split-bucket-head {
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(11, 105, 96, 0.28);
  padding: 0 12px;
}

.split-bucket-head span {
  color: rgba(25, 25, 25, 0.72);
  font-size: 11px;
  letter-spacing: -0.02em;
}

.split-bucket-head b {
  color: rgba(25, 25, 25, 0.48);
  font-size: 10px;
  font-weight: 500;
}

.split-file {
  height: 29px;
  border-bottom: 1px solid rgba(11, 105, 96, 0.16);
  padding: 8px 12px 0;
  color: rgba(25, 25, 25, 0.62);
  font-size: 11px;
  letter-spacing: -0.02em;
  transition:
    background 280ms ease-out,
    color 280ms ease-out,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.split-file:last-child {
  border-bottom: 0;
}

.split-file.is-active {
  background: rgba(217, 255, 249, 0.52);
  color: #191919;
  transform: translateX(4px);
}

.centered {
  text-align: center;
}

.centered h2,
.centered p {
  margin-inline: auto;
}

.benchmark-section p {
  max-width: 620px;
  color: rgba(25, 25, 25, 0.66);
  font-size: 16px;
  line-height: 1.55;
}

.benchmark-section p span {
  color: #e367a8;
  font-weight: 700;
}

.benchmark-chart {
  max-width: 900px;
  height: 430px;
  margin: 64px auto 32px;
  border: 1px solid var(--line);
  padding: 28px 34px 40px;
  text-align: left;
}

.benchmark-chart h3 {
  margin: 0;
  text-align: center;
  font-size: 22px;
}

.benchmark-chart p {
  margin: 8px auto 0;
  text-align: center;
  font-size: 13px;
}

.bars {
  display: flex;
  height: 280px;
  align-items: end;
  gap: 32px;
  border-bottom: 1px solid #ddd;
  margin-top: 36px;
  padding-inline: 38px;
}

.bars i {
  position: relative;
  flex: 1;
  height: var(--h);
  background: linear-gradient(#f861a8, #fc8108);
}

.bars i b {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-style: normal;
  white-space: nowrap;
}

.benchmark-section small {
  display: block;
  margin-top: 20px;
  color: rgba(25, 25, 25, 0.45);
}

.build-grid,
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 52px;
  border: 1px solid var(--line);
}

.build-grid article,
.workflow-grid article {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.build-grid article:last-child,
.workflow-grid article:last-child {
  border-right: 0;
}

.build-grid h3,
.workflow-grid h3 {
  margin: 34px 0 14px;
  font-size: 22px;
  line-height: 1.1;
}

.workflow-section h2 {
  max-width: 760px;
}

.workflow-frame {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(360px, 0.92fr) minmax(520px, 1.08fr);
  gap: 0;
  padding-block: 0;
}

.workflow-left {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: space-between;
  padding: 70px 56px 64px 0;
}

.workflow-left h2 {
  max-width: 570px;
  margin: 0;
  font-size: clamp(46px, 5vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.workflow-steps {
  display: grid;
  gap: 22px;
  margin-top: 86px;
}

.workflow-steps button {
  width: fit-content;
  border: 0;
  background: transparent;
  color: rgba(25, 25, 25, 0.36);
  padding: 0;
  text-align: left;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  cursor: default;
  transition:
    color 420ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-steps button.is-active {
  color: #191919;
  transform: translateX(1px);
}

.workflow-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  padding: 68px 0 50px 56px;
}

.workflow-copy-panels {
  position: relative;
  z-index: 2;
  min-height: 100px;
  max-width: 430px;
}

.workflow-copy-panels p {
  position: absolute;
  inset: 0 auto auto 0;
  margin: 0;
  color: rgba(25, 25, 25, 0.66);
  font-size: 20px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-copy-panels p.is-active {
  opacity: 1;
  transform: translateY(0);
}

.workflow-stack {
  position: absolute;
  right: 16px;
  bottom: 34px;
  width: 610px;
  height: 470px;
  transform: translateZ(0);
  animation: workflow-stack-breathe 2400ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes workflow-stack-breathe {
  0% {
    filter: blur(0.01px);
  }

  48% {
    filter: blur(0.01px);
  }

  100% {
    filter: blur(0);
  }
}

.workflow-plane {
  position: absolute;
  width: 330px;
  height: 188px;
  border: 1px solid rgba(25, 25, 25, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 1px 0 rgba(25, 25, 25, 0.06),
    0 28px 60px rgba(25, 25, 25, 0.045);
  transform: matrix(0.866025, -0.5, 0, 1, 0, 0);
  transform-origin: 0 0;
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms ease,
    background-color 520ms ease;
}

.workflow-plane::before,
.workflow-plane::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  height: 1px;
  background: rgba(25, 25, 25, 0.11);
}

.workflow-plane::before {
  top: 38px;
}

.workflow-plane::after {
  top: 74px;
}

.workflow-plane i {
  position: absolute;
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(25, 25, 25, 0.09);
  transition:
    width 560ms ease,
    opacity 420ms ease,
    background-color 420ms ease;
}

.workflow-plane i:nth-of-type(1) {
  top: 28px;
  left: 24px;
  width: 62px;
}

.workflow-plane i:nth-of-type(2) {
  top: 60px;
  left: 24px;
  width: 210px;
}

.workflow-plane i:nth-of-type(3) {
  top: 92px;
  left: 24px;
  width: 150px;
}

.workflow-plane i:nth-of-type(4) {
  top: 124px;
  left: 24px;
  width: 246px;
}

.workflow-plane i:nth-of-type(5) {
  top: 154px;
  left: 24px;
  width: 114px;
}

.workflow-plane-top {
  left: 232px;
  top: 42px;
  opacity: 0.76;
}

.workflow-plane-mid {
  left: 170px;
  top: 126px;
  opacity: 0.9;
}

.workflow-plane-bottom {
  left: 108px;
  top: 210px;
  opacity: 0.68;
}

.workflow-plane .corner {
  position: absolute;
  top: 13px;
  right: 18px;
  color: rgba(25, 25, 25, 0.24);
  font-size: 18px;
  line-height: 1;
}

.source-label {
  position: absolute;
  top: 24px;
  left: 24px;
  color: rgba(25, 25, 25, 0.42);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 420ms ease;
}

.workflow-drop-line {
  position: absolute;
  left: 323px;
  top: 268px;
  width: 1px;
  height: 130px;
  background: linear-gradient(rgba(25, 25, 25, 0.04), rgba(25, 25, 25, 0.34));
  transform-origin: top;
  transition:
    opacity 520ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-drop-line::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -4px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(25, 25, 25, 0.3);
  background: #fff;
}

.workflow-cube {
  position: absolute;
  left: 284px;
  top: 392px;
  width: 82px;
  height: 82px;
  transform: rotate(45deg) skew(-12deg, -12deg);
  transform-origin: center;
  transition:
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease;
}

.workflow-cube span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(11, 105, 96, 0.72);
  background: rgba(21, 251, 224, 0.42);
}

.workflow-cube span:nth-child(2) {
  transform: translate(14px, -14px);
  opacity: 0.42;
}

.workflow-cube span:nth-child(3) {
  transform: translate(28px, -28px);
  opacity: 0.18;
}

.workflow-output-card {
  position: absolute;
  right: 20px;
  bottom: 28px;
  display: grid;
  width: 210px;
  gap: 10px;
  border: 1px solid rgba(25, 25, 25, 0.16);
  background: rgba(255, 255, 255, 0.9);
  padding: 16px 18px;
  opacity: 0;
  transform: translate(20px, 24px);
  transition:
    opacity 520ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-output-card b {
  color: #191919;
  font-size: 15px;
}

.workflow-output-card em {
  color: rgba(25, 25, 25, 0.48);
  font-size: 13px;
  font-style: normal;
}

.workflow-frame[data-workflow-state="0"] .workflow-plane-mid {
  border-color: rgba(11, 105, 96, 0.36);
}

.workflow-frame[data-workflow-state="0"] .workflow-plane-mid .source-label {
  opacity: 1;
}

.workflow-frame[data-workflow-state="0"] .workflow-plane-mid i:nth-of-type(1) {
  opacity: 0;
}

.workflow-frame[data-workflow-state="1"] .workflow-plane-top {
  transform: matrix(0.866025, -0.5, 0, 1, -30, 42);
  opacity: 0.92;
}

.workflow-frame[data-workflow-state="1"] .workflow-plane-mid {
  transform: matrix(0.866025, -0.5, 0, 1, -8, 18);
  border-color: rgba(11, 105, 96, 0.45);
}

.workflow-frame[data-workflow-state="1"] .workflow-plane i:nth-of-type(2),
.workflow-frame[data-workflow-state="1"] .workflow-plane i:nth-of-type(4) {
  background: rgba(21, 251, 224, 0.42);
}

.workflow-frame[data-workflow-state="1"] .workflow-drop-line {
  transform: scaleY(1.08);
}

.workflow-frame[data-workflow-state="1"] .workflow-cube {
  transform: translateY(-8px) rotate(45deg) skew(-12deg, -12deg);
}

.workflow-frame[data-workflow-state="2"] .workflow-plane-top {
  transform: matrix(0.866025, -0.5, 0, 1, -50, 72);
  opacity: 0.48;
}

.workflow-frame[data-workflow-state="2"] .workflow-plane-mid {
  transform: matrix(0.866025, -0.5, 0, 1, -28, 46);
  opacity: 0.62;
}

.workflow-frame[data-workflow-state="2"] .workflow-plane-bottom {
  transform: matrix(0.866025, -0.5, 0, 1, -6, 18);
  border-color: rgba(11, 105, 96, 0.3);
  opacity: 0.86;
}

.workflow-frame[data-workflow-state="2"] .workflow-drop-line {
  transform: scaleY(1.16);
}

.workflow-frame[data-workflow-state="2"] .workflow-cube {
  opacity: 0.9;
  transform: translate(12px, -4px) rotate(45deg) skew(-12deg, -12deg);
}

.workflow-frame[data-workflow-state="2"] .workflow-output-card {
  opacity: 1;
  transform: translate(0, 0);
}

.faq-frame {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
}

.impact-section {
  position: relative;
  background: #fff;
}

.impact-shell {
  position: relative;
  width: min(1300px, 100vw);
  margin: 0 auto;
}

.impact-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 20;
  display: none;
  border-left: 1px dashed var(--line);
  pointer-events: none;
}

.impact-rail-left {
  left: 0;
}

.impact-rail-right {
  right: 0;
}

.impact-layout {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(255, 255, 255, 0.64);
}

.impact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px;
}

.impact-kicker {
  color: rgba(0, 0, 0, 0.64);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
}

.impact-copy h2 {
  margin: 28px 0 0;
  color: #000;
  font-family: "General Sans", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.impact-copy p {
  max-width: 420px;
  margin: 28px 0 0;
  color: #6b6b6b;
  font-family: "General Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.impact-copy strong {
  color: #191919;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.impact-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: #f8f8f8;
}

.impact-visual .hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
}

.impact-visual .hero-svg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.pricing-section {
  position: relative;
  background: #fff;
}

.pricing-shell {
  position: relative;
  width: min(1300px, 100vw);
  margin: 0 auto;
  padding: 0;
}

.pricing-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 20;
  display: none;
  border-left: 1px dashed var(--line);
  pointer-events: none;
}

.pricing-rail-left {
  left: 0;
}

.pricing-rail-right {
  right: 0;
}

.pricing-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px 40px;
  border: 1px solid var(--line);
  border-top: 0;
  border-bottom: 0;
  text-align: center;
}

.pricing-kicker {
  color: rgba(0, 0, 0, 0.64);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
}

.pricing-heading h2 {
  margin: 28px 0 0;
  color: #000;
  font-family: "General Sans", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.pricing-heading p {
  max-width: 620px;
  margin: 20px 0 0;
  color: #6b6b6b;
  font-family: "General Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.pricing-toggle {
  display: inline-flex;
  margin-top: 32px;
  border: 1px solid var(--line);
  background: #fff;
  color: #6b6b6b;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 16px;
}

.pricing-toggle button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 8px 16px;
  cursor: pointer;
  font: inherit;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.pricing-toggle button:focus-visible {
  outline: 2px solid #191919;
  outline-offset: 2px;
}

.pricing-toggle .is-active {
  background: #191919;
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(255, 255, 255, 0.64);
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #ffffff;
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
}

.pricing-card:last-child {
  border-right: 0;
}

.pricing-card-featured {
  background: #f8f8f8;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #191919;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: -0.2px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.pricing-card-label {
  color: rgba(0, 0, 0, 0.48);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.24px;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 22px 0 0;
  color: #000;
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
}

.pricing-card h3 .pricing-period {
  color: #6b6b6b;
  font-size: 22px;
  font-weight: 400;
}

.pricing-currency,
.pricing-price {
  display: inline-block;
  font-family: "Geist Mono", ui-monospace, monospace;
}

.pricing-price {
  min-width: 4ch;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card.is-switching .pricing-price {
  opacity: 0;
  transform: translateY(-6px);
}

.pricing-billing-note {
  min-height: 20px;
  margin-top: 6px;
  color: rgba(0, 0, 0, 0.48);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: -0.22px;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card.is-switching .pricing-billing-note {
  opacity: 0;
  transform: translateY(4px);
}

.pricing-card p {
  margin: 16px 0 0;
  color: #6b6b6b;
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.pricing-card a {
  display: inline-flex;
  height: 40px;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
  background: var(--deep-teal);
  color: #fff;
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.pricing-card a:hover {
  background: var(--brand-mint);
  color: var(--deep-teal);
  box-shadow: 0 10px 28px rgba(11, 105, 96, 0.16);
  transform: translateY(-1px);
}

.pricing-card a:active {
  transform: translateY(0);
}

.pricing-card a:focus-visible {
  outline: 2px solid var(--brand-mint);
  outline-offset: 3px;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  color: #191919;
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  list-style: none;
}

.pricing-card li {
  position: relative;
  display: flex;
  min-height: 22px;
  align-items: flex-start;
  gap: 9px;
  color: var(--brand-muted);
}

.pricing-card li::before {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border: 1px solid rgba(11, 105, 96, 0.22);
  border-radius: 999px;
  background: var(--brand-mint-soft);
  color: var(--deep-teal);
  content: "✓";
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px;
  line-height: 1;
}

.pricing-card li:nth-child(1)::before,
.pricing-card li:nth-child(2)::before {
  content: none;
  display: none;
}

.pricing-card li:nth-child(2) {
  padding-bottom: 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--brand-line);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list button {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 24px 0;
  color: #191919;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
}

main button[aria-expanded],
main button[aria-expanded] + div,
main ul[class*="border"] {
  border-color: var(--brand-line) !important;
}

.site-footer {
  background: #fff;
  color: var(--ink);
}

@media (max-width: 1180px) and (min-width: 981px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-layout {
    grid-template-columns: minmax(320px, 0.9fr) minmax(460px, 1.1fr);
  }

  .impact-copy {
    padding-inline: 40px;
  }

  .pricing-card:nth-child(2) {
    border-right: 0;
  }

  .pricing-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

.site-footer__inner {
  width: min(1300px, 100%);
  margin: 0 auto;
  border-inline: 1px solid var(--line);
  padding: 64px 40px 48px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand-block {
  flex: 0 0 285px;
  padding-left: 8px;
}

.footer-brand {
  display: inline-flex;
}

.footer-brand img {
  display: block;
  width: 160.6px;
  height: 43px;
  object-fit: contain;
}

.footer-description {
  margin: 24px 0 0;
  max-width: 277px;
  color: rgba(16, 33, 31, 0.66);
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

.footer-address {
  margin: 16px 0 0;
  color: rgba(16, 33, 31, 0.62);
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.footer-copyright-text {
  margin: 10px 0 0;
  color: rgba(16, 33, 31, 0.62);
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex: 1;
  max-width: 700px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.footer-column a {
  color: rgba(16, 33, 31, 0.62);
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 48px;
  background: transparent;
  border-top: none;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-badges {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.footer-badges img {
  display: block;
  width: 120px;
  height: auto;
  object-fit: cover;
}

.footer-socials {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: var(--ink);
  font-family: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.footer-social:hover {
  color: var(--brand-teal);
}

.footer-watermark {
  --footer-pixel-top: #0b6960;
  --footer-pixel-mid: #063b37;
  --footer-pixel-bottom: #10211f;
  position: relative;
  display: block;
  width: min(1300px, 100%);
  height: 360px;
  margin: 0 auto;
  overflow: hidden;
  border-inline: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 42%, rgba(21, 251, 224, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(21, 251, 224, 0.08), rgba(255, 244, 244, 0.72) 76%, #fff 100%),
    #fff;
}

.footer-watermark-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Brand palette pass: keep the hero animation isolated, tune the rest. */
body {
  background:
    linear-gradient(0deg, rgba(255, 244, 244, 0.88) 0%, rgba(21, 251, 224, 0.1) 54%, rgba(255, 250, 250, 0.96) 100%) 0 0 /
      100% 980px no-repeat,
    var(--brand-bg-soft);
  color: var(--ink);
}

.site-header,
.nav {
  background: #ffffff;
}

.site-header {
  border-bottom-color: rgba(207, 232, 227, 0.86);
  backdrop-filter: blur(18px);
}

.nav-links a,
.ghost-button {
  color: var(--brand-muted);
}

.nav-links a:hover,
.ghost-button:hover,
.footer-column a:hover {
  color: var(--brand-teal);
}

.cta-button,
.pricing-card a {
  background: var(--deep-teal);
  color: #ffffff;
}

.pricing-section,
.site-footer,
main > section.relative.bg-white {
  background: var(--brand-bg-soft);
}

.impact-section,
.pricing-section {
  background: #ffffff;
}

main > section.relative.bg-white.agent-capabilities-section {
  background: #ffffff;
}

.agent-capability-visual-placeholder {
  width: 100%;
  max-width: 560px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--brand-line, #cfe8e3);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(217, 255, 249, 0.18), rgba(255, 244, 244, 0.14)),
    rgba(247, 251, 250, 0.72);
}

.agent-capability-visual-placeholder__label {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: -0.24px;
  color: rgba(16, 33, 31, 0.48);
  text-transform: uppercase;
}

main > section.relative.bg-white.how-mira-section {
  background: #ffffff;
}

.how-mira-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-mira-heading h2 {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.impact-layout,
.pricing-grid,
.site-footer__inner,
main > section.relative.bg-white > .relative > .grid {
  border-color: var(--brand-line);
  background:
    linear-gradient(180deg, rgba(217, 255, 249, 0.22), rgba(255, 244, 244, 0.2)),
    rgba(247, 251, 250, 0.86);
}

.pricing-heading {
  border-color: var(--brand-line);
  background: #ffffff;
}

.impact-layout,
.pricing-grid,
.site-footer__inner {
  box-shadow: 0 18px 60px rgba(6, 59, 55, 0.06);
}

.impact-visual {
  border-left-color: var(--brand-line);
  background:
    radial-gradient(circle at 56% 42%, rgba(21, 251, 224, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(217, 255, 249, 0.62), rgba(255, 244, 244, 0.52)),
    var(--brand-soft-surface);
}

.impact-kicker,
.pricing-kicker,
main > section.relative.bg-white .uppercase {
  color: var(--brand-teal) !important;
}

.impact-copy h2,
.pricing-heading h2,
.pricing-card h3,
.pricing-card-label,
.footer-column h3,
.faq-list button,
main > section.relative.bg-white h2,
main > section.relative.bg-white h3 {
  color: var(--ink) !important;
}

.impact-copy p,
.pricing-heading p,
.pricing-card p,
.pricing-card ul,
.footer-description,
.footer-address,
.footer-column a,
.footer-copyright-text,
main > section.relative.bg-white p {
  color: var(--brand-muted) !important;
}

.impact-copy strong,
.pricing-price,
.pricing-currency {
  color: var(--deep-teal);
}

.pricing-toggle {
  border-color: var(--brand-line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-muted);
}

.pricing-toggle .is-active {
  background: var(--deep-teal);
  color: #ffffff;
}

.pricing-card {
  border-color: var(--brand-line);
}

.pricing-card-featured {
  background:
    linear-gradient(180deg, rgba(217, 255, 249, 0.42), rgba(255, 244, 244, 0.48)),
    var(--brand-soft-surface);
}

.pricing-badge {
  border-color: rgba(11, 105, 96, 0.22);
  background: var(--brand-mint-soft);
  color: var(--deep-teal);
}

.text-link,
.problem-note a {
  color: var(--brand-coral);
}

.footer-watermark {
  --footer-pixel-top: #0b6960;
  --footer-pixel-mid: #063b37;
  --footer-pixel-bottom: #10211f;
  border-inline-color: var(--brand-line);
  background:
    radial-gradient(circle at 50% 42%, rgba(21, 251, 224, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(247, 251, 250, 0.9) 0%, rgba(217, 255, 249, 0.22) 48%, rgba(247, 251, 250, 0.94) 100%),
    #f7fbfa;
}

.footer-watermark::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 76%, #f7fbfa 100%),
    radial-gradient(ellipse 76% 46% at 50% 52%, transparent 48%, rgba(247, 251, 250, 0.52) 100%);
  content: "";
  pointer-events: none;
}

main > section.relative.bg-white [class*="border-[#"],
main > section.relative.bg-white [class*="border-["] {
  border-color: var(--brand-line) !important;
}

main > section.relative.bg-white [class*="bg-[#F8F8F8"],
main > section.relative.bg-white [class*="bg-white/[0.64]"] {
  background-color: rgba(247, 251, 250, 0.72) !important;
}

@media (max-width: 980px) {
  .build-hero-frame {
    width: 100%;
    height: 620px;
  }

  .build-hero h1 {
    font-size: clamp(40px, 10vw, 54px);
    line-height: 1.1;
  }

  .build-hero p {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.55;
  }

  .nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hero-frame {
    width: 100%;
    height: auto;
  }

  .hero-layout {
    display: block;
    min-height: 0;
  }

  .hero-copy {
    padding: 74px 26px 34px;
  }

  .desktop-break {
    display: none;
  }

  .hero h1 {
    font-size: clamp(40px, 10vw, 54px);
    line-height: 1.02;
  }

  .hero p {
    max-width: 620px;
  }

  .hero-art {
    height: min(720px, 98vw);
  }

  .hero-svg {
    width: 682px;
    left: 50%;
    transform: translateX(-43%);
  }

  .hero-rail {
    display: none;
  }

  .split-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 24px 32px;
    border-inline: 0;
  }

  .split-copy {
    max-width: 620px;
    padding-bottom: 0;
  }

  .split-art {
    overflow: hidden;
  }

  .split-stage {
    transform: scale(0.88);
    transform-origin: center top;
  }

  .problem-grid,
  .build-grid,
  .workflow-grid,
  .pricing-grid,
  .impact-layout,
  .workflow-frame,
  .faq-frame,
  .capability-row {
    grid-template-columns: 1fr;
  }

  .impact-shell {
    padding-inline: 24px;
  }

  .impact-copy {
    padding: 64px 24px 34px;
  }

  .impact-visual {
    min-height: min(620px, 82vw);
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pricing-shell {
    padding-inline: 24px;
  }

  .pricing-heading {
    padding: 64px 24px 34px;
  }

  .pricing-card,
  .pricing-card:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pricing-card:last-child {
    border-bottom: 0;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand-block {
    flex-basis: auto;
    padding-left: 0;
  }

  .footer-columns {
    flex-wrap: wrap;
    max-width: none;
    width: 100%;
    gap: 32px 24px;
  }

  .footer-column {
    min-width: 120px;
  }

  .site-footer__inner {
    padding-inline: 24px;
  }

  .section-frame {
    border-inline: 0;
    padding-inline: 24px;
  }

  .problem-grid article,
  .build-grid article,
  .workflow-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .problem-note {
    grid-template-columns: 1fr;
  }

  .workflow-left {
    min-height: auto;
    padding: 54px 0 38px;
  }

  .workflow-left h2 {
    font-size: clamp(42px, 9vw, 64px);
  }

  .workflow-steps {
    margin-top: 54px;
  }

  .workflow-visual {
    min-height: 540px;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 42px 0 0;
  }

  .workflow-copy-panels {
    max-width: 540px;
  }

  .workflow-stack {
    right: 50%;
    bottom: 0;
    transform: translateX(50%) scale(0.82);
    transform-origin: center bottom;
  }

  .parse-demo,
  .extract-demo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .build-hero-copy {
    width: min(100% - 32px, 560px);
    gap: 18px;
  }

  .build-hero-kicker {
    font-size: 13px;
    line-height: 18px;
  }

  .build-hero-frame {
    height: 560px;
  }

  .build-hero p {
    font-size: 16px;
    line-height: 1.5;
  }

  .nav-actions .ghost-button {
    display: none;
  }

  .nav {
    padding-inline: 26px;
  }

  .brand {
    font-size: 20px;
  }

  .hero-copy {
    gap: 28px;
  }

  .yc-line {
    font-size: 12px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-art {
    height: 560px;
  }

  .hero-svg {
    transform: translateX(-46%);
  }

  .impact-visual {
    min-height: 520px;
  }

  .workflow-visual {
    min-height: 470px;
  }

  .workflow-copy-panels {
    min-height: 134px;
  }

  .workflow-copy-panels p {
    font-size: 18px;
  }

  .workflow-stack {
    transform: translateX(50%) scale(0.66);
  }

  .below {
    padding: 52px 24px 64px;
  }

  .below h2 {
    font-size: 34px;
  }

  .split-copy h3 {
    font-size: 26px;
  }

  .split-copy p {
    font-size: 16px;
  }

  .split-stage {
    margin-left: -100px;
    transform: scale(0.62);
  }
}
