/* Frutawise static homepage/contact styles.
   Ported from documents/frutawise-website-source-v6/app/globals.css via
   LIQUIDATIONS SITE/frontend/src/app/pages/landing/landing.component.scss
   (that version is Angular-component-scoped; this is the same design as a
   plain top-level stylesheet — no Angular/Bootstrap on this domain to guard
   against, so :root/body/html are used directly instead of :host/#top). */

:root {
  --ink: #0b1720;
  --navy: #081f2b;
  --navy-2: #0c2b38;
  --pink: #e82d66;
  --pink-soft: #fff0f4;
  --green: #5bb77b;
  --green-soft: #eaf6ee;
  --paper: #fbfcf9;
  --cream: #f3f5f0;
  --muted: #68757c;
  --line: #dfe5e2;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1200px, calc(100% - 56px));
  margin: auto;
}

.section {
  padding: 118px 0;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--pink);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #8ed0a6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 15px 20px;
  border-radius: 7px;
  font-size: 14.5px;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px #101f1720;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-pink {
  background: var(--pink);
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.hero {
  min-height: 920px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 72% 42%, #173c4938 0, transparent 31%), radial-gradient(circle at 18% 80%, #e82d6612 0, transparent 26%), #061923;
  color: #fff;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image: linear-gradient(#6ba6b30d 1px, transparent 1px), linear-gradient(90deg, #6ba6b30d 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #62d3b660, transparent);
  box-shadow: 0 0 36px #62d3b650;
  animation: scan 8s linear infinite;
}

.nav {
  position: relative;
  z-index: 5;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff16;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #9bb0b7;
  font-size: 13.5px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--pink);
  transition: .2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover:after {
  right: 0;
}

.nav-cta {
  padding: 12px 16px;
  background: #ffffff0e;
  border: 1px solid #ffffff20;
  backdrop-filter: blur(12px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 64px;
  align-items: center;
  padding-top: 78px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  color: #9bb1b8;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.kicker span {
  padding: 6px 8px;
  border: 1px solid #74d49a30;
  border-radius: 4px;
  background: #5bb77b14;
  color: #77cf96;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  color: #fff;
  font-size: 64px;
  line-height: 1.01;
  letter-spacing: -.062em;
}

.hero h1 em,
.section-heading h2 em,
.benchmark h2 em,
.advantage h2 em {
  font-style: normal;
  color: var(--pink);
}

.hero-copy>p {
  max-width: 560px;
  margin: 27px 0 0;
  color: #9fb2b8;
  font-size: 17.5px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.underlink {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: #d8e2e4;
  font-size: 14.5px;
  font-weight: 800;
}

.underlink span {
  color: #74d099;
}

.hero-note {
  display: flex;
  flex-direction: column;
  margin-top: 43px;
  padding-left: 17px;
  border-left: 2px solid #6ac58a;
  color: #edf4f5;
  font-size: 13.5px;
  line-height: 1.55;
}

.hero-note span {
  color: #78919a;
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ffffff12;
  color: #64808a;
  font-size: 11.5px;
}

.hero-bottom>span {
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
}

.hero-bottom div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero-bottom i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
}

.flow-stage {
  position: relative;
  min-height: 540px;
  border: 1px solid #ffffff18;
  border-radius: 18px;
  background: linear-gradient(145deg, #091f2aee, #071822e8);
  box-shadow: 0 45px 100px #0008, 0 0 0 1px #63caaa08 inset;
  overflow: hidden;
}

.flow-stage:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, #5bb77b15, transparent 27%), radial-gradient(circle at 17% 38%, #e82d6614, transparent 20%);
}

.flow-stage-grid {
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image: linear-gradient(#73a9b10a 1px, transparent 1px), linear-gradient(90deg, #73a9b10a 1px, transparent 1px);
  background-size: 30px 30px;
}

.flow-stage-top {
  position: absolute;
  z-index: 4;
  left: 18px;
  right: 18px;
  top: 15px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid #ffffff12;
  color: #67848e;
  font-size: 9px;
  letter-spacing: .12em;
}

.flow-stage-top span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8aa2aa;
}

.flow-stage-top span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #68cb8b;
  box-shadow: 0 0 10px #68cb8b;
  animation: pulse 1.8s ease-in-out infinite;
}

.chaos-zone,
.clarity-zone {
  position: absolute;
  z-index: 3;
  top: 65px;
  bottom: 58px;
  width: 31%;
}

.chaos-zone {
  left: 15px;
}

.clarity-zone {
  right: 15px;
}

.zone-label {
  position: absolute;
  top: 0;
  left: 5px;
  color: #6f8a93;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.source-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 165px;
  padding: 10px;
  border: 1px solid #ffffff18;
  border-radius: 8px;
  background: #102b36d9;
  box-shadow: 0 13px 30px #0004;
  backdrop-filter: blur(12px);
}

.source-node>i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 6px;
  background: #e82d661b;
  color: #ff6d98;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.source-node div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.source-node b {
  color: #e6eef0;
  font-size: 10px;
}

.source-node small {
  margin-top: 3px;
  overflow: hidden;
  color: #708b94;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-node>em {
  margin-left: auto;
  color: #e47491;
  font-size: 10px;
  font-style: normal;
}

.source-one {
  top: 45px;
  left: 3px;
  transform: rotate(-4deg);
  animation: chaosA 5.2s ease-in-out infinite;
}

.source-two {
  top: 135px;
  right: 0;
  transform: rotate(3deg);
  animation: chaosB 6.1s ease-in-out infinite;
}

.source-three {
  bottom: 84px;
  left: 9px;
  transform: rotate(2deg);
  animation: chaosB 5.6s ease-in-out infinite reverse;
}

.source-four {
  bottom: 5px;
  right: 1px;
  transform: rotate(-3deg);
  animation: chaosA 6.4s ease-in-out infinite reverse;
}

.noise-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e82d66;
  box-shadow: 0 0 12px #e82d66;
}

.dot-a {
  left: 21%;
  top: 42%;
  animation: drift 4s ease-in-out infinite;
}

.dot-b {
  right: 7%;
  top: 31%;
  animation: drift 5s ease-in-out infinite reverse;
}

.dot-c {
  left: 44%;
  bottom: 31%;
  background: #5bb77b;
  box-shadow: 0 0 12px #5bb77b;
  animation: drift 4.5s ease-in-out infinite;
}

.intelligence-core {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 165px;
  height: 165px;
  transform: translate(-50%, -50%);
}

.core-ring {
  position: absolute;
  border: 1px solid #6bc99142;
  border-radius: 50%;
  inset: 0;
}

.ring-one {
  animation: spin 14s linear infinite;
}

.ring-one:before,
.ring-one:after,
.ring-two:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64c98a;
  box-shadow: 0 0 14px #64c98a;
}

.ring-one:before {
  left: 18px;
  top: 18px;
}

.ring-one:after {
  right: -3px;
  top: 74px;
  background: #e82d66;
  box-shadow: 0 0 14px #e82d66;
}

.ring-two {
  inset: 16px;
  border-style: dashed;
  border-color: #e82d6640;
  animation: spin 10s linear infinite reverse;
}

.ring-two:before {
  left: 20px;
  bottom: 9px;
  background: #e82d66;
  box-shadow: 0 0 14px #e82d66;
}

.core-center {
  position: absolute;
  inset: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #ffffff19;
  border-radius: 50%;
  background: radial-gradient(circle, #123d45, #0b2631 68%);
  box-shadow: 0 0 55px #5bb77b18;
}

.mini-fruit {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  margin-bottom: 5px;
}

.mini-fruit i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  left: 1px;
  top: 1px;
}

.mini-fruit i:nth-child(2) {
  left: 12px;
}

.mini-fruit i:nth-child(3) {
  top: 12px;
}

.mini-fruit i:nth-child(4) {
  left: 12px;
  top: 12px;
}

.core-center small {
  color: #76c992;
  font-size: 7px;
  letter-spacing: .12em;
}

.core-center b {
  margin: 3px 0;
  color: #fff;
  text-align: center;
  font-size: 9px;
  line-height: 1.35;
}

.core-center em {
  color: #6f9099;
  font-size: 6.5px;
  font-style: normal;
  letter-spacing: .09em;
}

.core-tag {
  position: absolute;
  padding: 4px 6px;
  border: 1px solid #ffffff14;
  border-radius: 4px;
  background: #0a202ad9;
  color: #78949d;
  font-size: 7px;
  letter-spacing: .08em;
}

.tag-one {
  left: -20px;
  top: 13px;
}

.tag-two {
  right: -27px;
  top: 69px;
}

.tag-three {
  left: -24px;
  bottom: 8px;
}

.flow-beam {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #67ca8a55);
}

.beam-in {
  left: 29%;
}

.beam-out {
  right: 29%;
  transform: rotate(180deg);
}

.flow-beam i {
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6cce90;
  box-shadow: 0 0 10px #6cce90;
  animation: stream 2.4s linear infinite;
}

.flow-beam i:nth-child(2) {
  animation-delay: .8s;
}

.flow-beam i:nth-child(3) {
  animation-delay: 1.6s;
}

.result-node {
  position: absolute;
  left: 5px;
  right: 5px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 14px;
  border: 1px solid #67c88a23;
  border-radius: 8px;
  background: linear-gradient(110deg, #102e38, #0d2731);
  box-shadow: 0 15px 35px #0003;
  animation: resultGlow 3.5s ease-in-out infinite;
}

.result-node span {
  grid-column: 1/-1;
  margin-bottom: 4px;
  color: #6f8c95;
  font-size: 8px;
  letter-spacing: .09em;
}

.result-node b {
  color: #fff;
  font-size: 21.5px;
}

.result-node em {
  align-self: end;
  color: #67c78a;
  font-size: 8px;
  font-style: normal;
}

.result-one {
  top: 44px;
}

.result-two {
  top: 157px;
  animation-delay: .6s;
}

.result-three {
  bottom: 5px;
  animation-delay: 1.2s;
}

.flow-stage-bottom {
  position: absolute;
  z-index: 4;
  left: 18px;
  right: 18px;
  bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding-top: 12px;
  border-top: 1px solid #ffffff10;
  color: #647f88;
  font-size: 8.5px;
  letter-spacing: .08em;
}

.flow-stage-bottom i {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, #e82d66, #5bb77b);
}

.flow-stage-bottom b {
  color: #8ba5ad;
}

.flow-stage-bottom strong {
  color: #74cc93;
}

.manifesto {
  padding: 74px 0;
  background: var(--navy);
  color: #fff;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 140px 1fr 190px;
  gap: 55px;
  align-items: start;
}

.manifesto blockquote {
  max-width: 760px;
  margin: 0;
  font-size: 31.5px;
  line-height: 1.35;
  letter-spacing: -.035em;
}

.manifesto-side {
  display: flex;
  flex-direction: column;
  color: #88a0a8;
}

.manifesto-side>b {
  color: #8ed0a6;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.manifesto-side p {
  margin: 10px 0 14px;
  color: #d1dcdf;
  font-size: 12.5px;
  line-height: 1.55;
}

.manifesto-side span {
  padding-top: 10px;
  border-top: 1px solid #ffffff1a;
  font-size: 10px;
  line-height: 1.5;
}

.section-heading {
  display: grid;
  grid-template-columns: 160px 1fr .74fr;
  gap: 50px;
  align-items: start;
}

.section-heading h2 {
  margin: 0;
  font-size: 49px;
  line-height: 1.08;
  letter-spacing: -.048em;
}

.section-heading>p:last-child {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.problem-visual {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 100px;
  margin-top: 75px;
}

.file-stack {
  position: relative;
  min-height: 390px;
  border-radius: 13px;
  background: linear-gradient(145deg, #f0f3ef, #e8ece8);
  overflow: hidden;
}

.file-stack:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#152a3309 1px, transparent 1px), linear-gradient(90deg, #152a3309 1px, transparent 1px);
  background-size: 35px 35px;
}

.loose-file {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 255px;
  padding: 15px;
  border: 1px solid #dfe4e1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 15px 35px #14272017;
}

.loose-file>span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 10px;
  font-weight: 900;
}

.loose-file b {
  font-size: 11.5px;
}

.loose-file small {
  margin-left: auto;
  color: #8a9498;
  font-size: 9px;
}

.file-a {
  top: 44px;
  left: 45px;
  transform: rotate(-4deg);
}

.file-b {
  top: 132px;
  right: 38px;
  transform: rotate(3deg);
}

.file-c {
  bottom: 76px;
  left: 55px;
  transform: rotate(2deg);
}

.file-d {
  bottom: 22px;
  right: 38px;
  transform: rotate(-3deg);
}

.stack-label {
  position: absolute;
  right: 28px;
  top: 26px;
  text-align: right;
  color: #92a09b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.question-list {
  display: flex;
  flex-direction: column;
}

.question-list>div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.question-list>div:last-child {
  border-bottom: 1px solid var(--line);
}

.question-list span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
}

.question-list p {
  margin: 0;
  font-size: 19.5px;
  line-height: 1.45;
}

.question-list b {
  font-weight: 800;
}

.transformation {
  background: var(--cream);
}

.section-heading.narrow {
  grid-template-columns: 160px 1fr .62fr;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 58px;
}

.input-grid article {
  min-height: 126px;
  display: flex;
  gap: 13px;
  padding: 19px;
  border: 1px solid #dce2de;
  border-radius: 8px;
  background: #fff;
}

.data-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 7px;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 17.5px;
  font-weight: 900;
}

.input-grid h3 {
  margin: 3px 0 7px;
  font-size: 12px;
}

.input-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.pipeline {
  display: grid;
  grid-template-columns: 1.55fr repeat(5, 1fr);
  margin-top: 17px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.pipeline-label {
  padding: 24px 26px;
}

.pipeline-label span {
  display: block;
  color: #82c59a;
  font-size: 9px;
  letter-spacing: .15em;
}

.pipeline-label b {
  display: block;
  margin-top: 8px;
  font-size: 18.5px;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-left: 1px solid #ffffff13;
}

.process-step:after {
  content: "→";
  position: absolute;
  right: -5px;
  color: #6b8790;
  font-size: 11px;
}

.process-step:last-child:after {
  display: none;
}

.process-step small {
  color: #66828b;
  font-size: 10px;
}

.process-step b {
  margin-top: 8px;
  font-size: 12.5px;
}

.output-banner {
  display: grid;
  grid-template-columns: 90px .8fr 1.6fr;
  align-items: center;
  gap: 22px;
  margin-top: 17px;
  padding: 22px 25px;
  border: 1px solid #d4e6d9;
  border-radius: 9px;
  background: var(--green-soft);
}

.output-banner>span {
  color: #4b9c68;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.output-banner h3 {
  margin: 0;
  font-size: 17px;
}

.output-banner div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: #4b6c57;
  font-size: 11px;
}

.output-banner i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
}

.file-stack {
  background: radial-gradient(circle at 50% 50%, #143541, #0a202a 70%);
  border: 1px solid #193945;
  box-shadow: 0 25px 60px #10251d20;
}

.file-stack:before {
  background-image: linear-gradient(#78a6af0b 1px, transparent 1px), linear-gradient(90deg, #78a6af0b 1px, transparent 1px);
  background-size: 30px 30px;
}

.file-stack:after {
  content: "";
  position: absolute;
  inset: 25% 33%;
  border: 1px solid #5bb77b30;
  border-radius: 50%;
  box-shadow: 0 0 55px #5bb77b12;
}

.loose-file {
  border-color: #ffffff17;
  background: #102d38e8;
  box-shadow: 0 15px 35px #0004;
  backdrop-filter: blur(10px);
}

.loose-file b {
  color: #eaf2f3;
}

.loose-file small {
  color: #6d8992;
}

.loose-file>span {
  background: #e82d661c;
}

.file-a {
  animation: chaosA 5.2s ease-in-out infinite;
}

.file-b {
  animation: chaosB 6s ease-in-out infinite;
}

.file-c {
  animation: chaosB 5.5s ease-in-out infinite reverse;
}

.file-d {
  animation: chaosA 6.4s ease-in-out infinite reverse;
}

.stack-label {
  color: #59747d;
}

.transformation {
  position: relative;
  overflow: hidden;
  background: #071a24;
  color: #fff;
}

.transformation:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image: linear-gradient(#78a6af0a 1px, transparent 1px), linear-gradient(90deg, #78a6af0a 1px, transparent 1px);
  background-size: 44px 44px;
}

.transformation>.shell {
  position: relative;
  z-index: 1;
}

.transformation .section-heading h2 {
  color: #fff;
}

.transformation .section-heading>p:last-child {
  color: #8ca2aa;
}

.flow-lab {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 55px 1fr 55px 1.12fr;
  gap: 0;
  margin-top: 60px;
  padding: 28px;
  border: 1px solid #ffffff13;
  border-radius: 16px;
  background: linear-gradient(145deg, #0b2530e8, #081b25e8);
  box-shadow: 0 35px 80px #0005;
}

.lab-label {
  display: block;
  margin-bottom: 18px;
  color: #64818a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.lab-column {
  display: flex;
  flex-direction: column;
}

.lab-column article {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  margin-bottom: 8px;
  padding: 10px;
  border: 1px solid #ffffff13;
  border-radius: 8px;
  background: #102c37aa;
  animation: cardSignal 4.5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.lab-column article:last-child {
  margin-bottom: 0;
}

.flow-lab .data-icon {
  width: 32px;
  height: 32px;
  background: #e82d6618;
  font-size: 14.5px;
}

.lab-column article div {
  min-width: 0;
}

.lab-column h3 {
  margin: 0 0 4px;
  color: #e7eff1;
  font-size: 9px;
}

.lab-column p {
  margin: 0;
  color: #708b94;
  font-size: 8.5px;
  line-height: 1.4;
}

.lab-inputs article>em {
  margin-left: auto;
  color: #e05d81;
  font-size: 7px;
  font-style: normal;
}

.lab-results article {
  border-color: #5bb77b20;
  background: #102e37;
}

.lab-results article>b {
  margin-left: auto;
  color: #65c689;
  font-size: 8px;
  letter-spacing: .08em;
}

.lab-rail {
  position: relative;
  align-self: center;
  height: 1px;
  margin: 0 6px;
  background: linear-gradient(90deg, #e82d6630, #65c98b88);
}

.lab-rail:before,
.lab-rail:after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5fc284;
  box-shadow: 0 0 11px #5fc284;
}

.lab-rail:before {
  left: -2px;
}

.lab-rail:after {
  right: -2px;
}

.lab-rail span {
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7bd79b;
  box-shadow: 0 0 10px #7bd79b;
  animation: stream 2s linear infinite;
}

.lab-rail span:nth-child(2) {
  animation-delay: .67s;
}

.lab-rail span:nth-child(3) {
  animation-delay: 1.34s;
}

.rail-right {
  transform: rotate(180deg);
}

.lab-engine {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.engine-orbit {
  position: relative;
  width: 155px;
  height: 155px;
  margin: 8px auto 20px;
  border: 1px solid #63c98a35;
  border-radius: 50%;
  animation: spin 15s linear infinite;
}

.engine-orbit>i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #67cb8b;
  box-shadow: 0 0 13px #67cb8b;
}

.engine-orbit>i:nth-child(1) {
  left: 12px;
  top: 25px;
}

.engine-orbit>i:nth-child(2) {
  right: -3px;
  top: 72px;
  background: #e82d66;
  box-shadow: 0 0 13px #e82d66;
}

.engine-orbit>i:nth-child(3) {
  left: 43px;
  bottom: 3px;
}

.engine-orbit>div {
  position: absolute;
  inset: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px dashed #e82d6640;
  border-radius: 50%;
  background: radial-gradient(circle, #133b43, #0b2630);
  animation: spin 15s linear infinite reverse;
}

.engine-orbit .mini-fruit {
  transform: scale(.8);
}

.engine-orbit b {
  font-size: 10px;
}

.engine-orbit small {
  margin-top: 3px;
  color: #67858e;
  text-align: center;
  font-size: 7px;
  line-height: 1.3;
}

.lab-engine ol {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lab-engine li {
  display: grid;
  grid-template-columns: 22px 1fr 20px;
  align-items: center;
  padding: 7px 4px;
  border-top: 1px solid #ffffff0d;
}

.lab-engine li span {
  color: #58757e;
  font-size: 8px;
}

.lab-engine li b {
  color: #adc0c5;
  font-size: 9px;
}

.lab-engine li i {
  position: relative;
  width: 16px;
  height: 3px;
  border-radius: 3px;
  background: #173a34;
  overflow: hidden;
}

.lab-engine li i:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #66c98a;
  transform-origin: left;
  animation: load 3.5s ease-in-out infinite;
}

.flow-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 17px;
  padding: 14px;
  border: 1px solid #ffffff0e;
  border-radius: 8px;
  background: #0c2630;
  color: #66828b;
  font-size: 9px;
  letter-spacing: .08em;
}

.flow-caption i {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, #e82d66, #5bb77b);
}

.flow-caption b {
  color: #a3b7bd;
}

.flow-caption strong {
  color: #72cb91;
}

.section-heading.split {
  grid-template-columns: 1.3fr .7fr;
}

.section-heading.split>div h2 {
  max-width: 720px;
}

.section-heading.split>p {
  padding-top: 25px;
}

.decision-system {
  margin-top: 55px;
}

.decision-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
}

.decision-tab {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s, transform .25s, box-shadow .25s;
}

.decision-tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px #0b172012;
}

.decision-tab:focus-visible {
  outline: 3px solid #e82d6640;
  outline-offset: 3px;
}

.decision-tab .decision-number {
  position: absolute;
  top: 20px;
  right: 19px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 900;
}

.decision-tab .data-icon {
  width: 39px;
  height: 39px;
}

.decision-tab h3 {
  margin: 29px 0 8px;
  font-size: 17px;
  letter-spacing: -.03em;
}

.decision-tab p {
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.55;
}

.decision-tab small {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #96a0a3;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: .11em;
}

.decision-tab small b {
  color: var(--pink);
  font-size: 11.5px;
}

.decision-tab.is-active {
  border-color: #0b1720;
  background: #0b1720;
  color: #fff;
  box-shadow: 0 24px 50px #0b172025;
}

.decision-tab.is-active p {
  color: #8fa4ab;
}

.decision-tab.is-active .data-icon {
  background: #e82d6624;
  color: #ff6f9b;
}

.decision-tab.is-active small {
  color: #fff;
}

.decision-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 80px;
  align-items: center;
  min-height: 285px;
  margin-top: 11px;
  padding: 40px 45px;
  overflow: hidden;
  border-radius: 12px;
  background: #0b1720;
  color: #fff;
  animation: panelReveal .35s ease both;
}

.decision-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#ffffff08 1px, transparent 1px), linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.decision-panel:after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  right: -130px;
  top: -160px;
  border: 1px solid #5bb77b30;
  border-radius: 50%;
  box-shadow: 0 0 90px #5bb77b10;
}

.decision-panel-copy,
.decision-signal {
  position: relative;
  z-index: 2;
}

.panel-kicker {
  color: #e82d66;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.decision-panel h3 {
  margin: 12px 0 13px;
  font-size: 31px;
  letter-spacing: -.04em;
}

.decision-panel-copy>p {
  max-width: 680px;
  margin: 0;
  color: #9cb0b6;
  font-size: 13.5px;
  line-height: 1.72;
}

.evidence-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: #c3d0d3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
}

.evidence-row span {
  padding: 8px 10px;
  border: 1px solid #ffffff13;
  border-radius: 5px;
  background: #ffffff08;
}

.evidence-row i {
  color: #5bb77b;
  font-style: normal;
}

.decision-signal {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid #ffffff16;
  border-radius: 10px;
  background: #112b36;
}

.decision-signal>span {
  color: #78929a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.decision-signal>strong {
  margin-top: 8px;
  color: #fff;
  font-size: 36.5px;
  letter-spacing: -.045em;
}

.decision-signal>small {
  margin-top: 2px;
  color: #75cb93;
  font-size: 10px;
}

.decision-signal>div {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 23px;
  padding-top: 17px;
  border-top: 1px solid #ffffff11;
  color: #748d95;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
}

.decision-signal>div i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 9px var(--pink);
}

.decision-signal>p {
  margin: 8px 0 0;
  color: #eef4f5;
  font-size: 11.5px;
  font-weight: 800;
}

.decision-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 13px 0 0;
  color: #899397;
  font-size: 10px;
}

.decision-hint span {
  color: var(--pink);
  font-size: 14.5px;
}

.benchmark {
  padding: 115px 0;
  background: linear-gradient(145deg, var(--navy), #0b303c);
  color: #fff;
}

.benchmark-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 100px;
  align-items: center;
}

.benchmark h2 {
  margin: 0;
  font-size: 47px;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.benchmark-copy>p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 28px;
  color: #afc0c5;
  font-size: 15.5px;
  line-height: 1.75;
}

.benchmark-copy ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12.5px;
}

.benchmark-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benchmark-copy li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #193f35;
  color: #73c592;
  font-size: 11px;
}

.benchmark-card {
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 35px 75px #0005;
}

.benchmark-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.benchmark-card header div {
  display: flex;
  flex-direction: column;
}

.benchmark-card header small {
  color: #909a9d;
  font-size: 9px;
  letter-spacing: .1em;
}

.benchmark-card header b {
  margin-top: 5px;
  font-size: 14.5px;
}

.benchmark-card header>span {
  color: #879196;
  font-size: 10px;
}

.bubble-chart {
  position: relative;
  height: 295px;
  margin: 25px 3px 14px;
  border-left: 1px solid #cfd7d4;
  border-bottom: 1px solid #cfd7d4;
  background-image: linear-gradient(#dfe6e344 1px, transparent 1px), linear-gradient(90deg, #dfe6e344 1px, transparent 1px);
  background-size: 25% 25%;
  overflow: visible;
}

.axis-y {
  position: absolute;
  left: -19px;
  top: 50%;
  color: #8c979b;
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: .12em;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.axis-x {
  position: absolute;
  right: 0;
  bottom: -18px;
  color: #8c979b;
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: .12em;
}

.target-zone {
  position: absolute;
  right: 0;
  top: 0;
  width: 39%;
  height: 39%;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  padding: 10px;
  border: 1px dashed #5bb77b55;
  border-radius: 7px;
  background: #eaf6ee88;
  color: #4b9d68;
}

.target-zone span {
  font-size: 7px;
  letter-spacing: .12em;
}

.target-zone b {
  margin-top: 3px;
  font-size: 9px;
}

.bubble {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #a8cbbb;
  border-radius: 50%;
  background: #cfe7d8cc;
  color: #4e8262;
  box-shadow: 0 8px 20px #1e453019;
  transition: transform .2s, box-shadow .2s;
}

.bubble:hover {
  z-index: 5;
  transform: scale(1.12);
  box-shadow: 0 12px 27px #1e45302d;
}

.bubble i {
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.bubble-a {
  width: 48px;
  height: 48px;
  left: 13%;
  bottom: 14%;
}

.bubble-b {
  width: 68px;
  height: 68px;
  left: 30%;
  bottom: 38%;
  background: #f5cfdaaa;
  border-color: #e9a9bb;
  color: #c54a70;
}

.bubble-c {
  width: 39px;
  height: 39px;
  left: 47%;
  bottom: 24%;
}

.bubble-d {
  width: 57px;
  height: 57px;
  right: 13%;
  bottom: 17%;
}

.bubble-e {
  width: 31px;
  height: 31px;
  right: 8%;
  top: 11%;
  background: #b7dcc4;
}

.bubble-you {
  z-index: 4;
  width: 82px;
  height: 82px;
  left: 59%;
  top: 23%;
  display: flex;
  flex-direction: column;
  border: 7px solid #f7bdce;
  background: var(--pink);
  color: #fff;
  box-shadow: 0 12px 30px #e82d6640;
  animation: bubblePulse 3.5s ease-in-out infinite;
}

.bubble-you i {
  font-size: 9px;
}

.bubble-you b {
  margin-top: 3px;
  font-size: 12.5px;
}

.bubble-you small {
  margin-top: 2px;
  color: #ffd7e3;
  font-size: 8px;
}

.bubble-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  padding: 8px 0 19px;
  color: #7b898e;
  font-size: 8.5px;
}

.bubble-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bubble-legend i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-market {
  background: #cfe7d8;
  border: 1px solid #a8cbbb;
}

.legend-you {
  background: var(--pink);
  border: 2px solid #f7bdce;
}

.legend-size {
  position: relative;
  border: 1px solid #9eabad;
  background: transparent;
}

.legend-size:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  right: -5px;
  bottom: -1px;
  border: 1px solid #9eabad;
  border-radius: 50%;
}

.benchmark-result {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 17px 19px;
  border-radius: 8px;
  background: #f5f7f5;
}

.benchmark-result>span {
  font-size: 9px;
  letter-spacing: .1em;
  color: #8b9599;
}

.benchmark-result>strong {
  font-size: 30.5px;
  color: var(--pink);
}

.benchmark-result>div {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.benchmark-result div b {
  font-size: 13.5px;
}

.benchmark-result div small {
  margin-top: 3px;
  color: #3c945d;
  font-size: 9px;
}

.benchmark-card footer {
  display: flex;
  justify-content: space-between;
  padding: 18px 4px 0;
  color: #7d898e;
  font-size: 9px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  margin-top: 55px;
}

.independence-card {
  min-height: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 35px;
  border-radius: 12px;
  background: radial-gradient(circle at 70% 18%, #164557, transparent 38%), var(--navy);
  color: #fff;
}

.independence-card:after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 330px;
  height: 330px;
  border: 1px solid #ffffff12;
  border-radius: 50%;
}

.independent-seal {
  position: absolute;
  top: 36px;
  right: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 115px;
  border: 1px solid #7bc39355;
  border-radius: 50%;
  color: #8fd0a6;
  font-size: 29.5px;
  font-weight: 800;
}

.independent-seal small {
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: .15em;
}

.independence-card h3 {
  max-width: 410px;
  margin: 0 0 15px;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.independence-card p:last-child {
  max-width: 430px;
  margin: 0;
  color: #afc0c5;
  font-size: 13.5px;
  line-height: 1.7;
}

.advantage-list {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.advantage-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 27px 29px;
  border-bottom: 1px solid var(--line);
}

.advantage-list article:last-child {
  border: 0;
}

.advantage-list article>span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
}

.advantage-list h3 {
  margin: 0 0 7px;
  font-size: 16px;
}

.advantage-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.model {
  background: var(--cream);
}

.model-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 110px;
  align-items: center;
}

.model h2 {
  margin: 0 0 21px;
  font-size: 43px;
  line-height: 1.09;
  letter-spacing: -.042em;
}

.model-grid>div:first-child>p:last-child {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
}

.model-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 15px;
  align-items: stretch;
}

.model-cards article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
}

.model-cards article>span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
}

.model-cards article>small {
  margin-top: 55px;
  color: #869196;
  font-size: 9px;
  letter-spacing: .12em;
}

.model-cards h3 {
  margin: 9px 0 11px;
  font-size: 20px;
}

.model-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.model-cards>i {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  margin: 0 -6px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  z-index: 2;
}

.final-cta {
  padding: 78px 0;
  background: var(--pink);
  color: #fff;
}

.final-cta>.shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: end;
}

.final-cta .eyebrow {
  color: #ffd6e2;
}

.final-cta h2 {
  max-width: 850px;
  margin: 0;
  font-size: 46px;
  line-height: 1.07;
  letter-spacing: -.045em;
}

.final-cta>div>div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 13px;
}

.final-cta .btn-pink {
  background: #fff;
  color: var(--ink);
}

.final-cta div>span {
  font-size: 10px;
  letter-spacing: .1em;
}

.footer {
  padding: 55px 0 25px;
  background: #061822;
  color: #fff;
}

.footer>.shell:first-child {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.footer p {
  margin: 0;
  color: #8fa3aa;
  font-size: 12.5px;
  line-height: 1.6;
}

.footer>.shell:first-child>div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 11.5px;
}

.footer>.shell:first-child>div:last-child span {
  color: #738b93;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ffffff16;
  color: #59747d;
  font-size: 10px;
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 85px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

  .hero-copy {
    max-width: 750px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .product-stage {
    margin: 25px 30px 55px;
  }

  .hero-bottom {
    display: none;
  }

  .manifesto-grid {
    grid-template-columns: 120px 1fr;
  }

  .manifesto-side {
    grid-column: 2;
  }

  .section-heading,
  .section-heading.narrow {
    grid-template-columns: 120px 1fr;
  }

  .section-heading>p:last-child {
    grid-column: 2;
  }

  .problem-visual {
    gap: 45px;
  }

  .input-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pipeline {
    grid-template-columns: 1.2fr repeat(5, 1fr);
  }

  .pipeline-label b {
    font-size: 14.5px;
  }

  .output-banner {
    grid-template-columns: 70px 1fr;
  }

  .output-banner div {
    grid-column: 1/-1;
    justify-content: center;
  }

  .benchmark-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .model-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .final-cta h2 {
    font-size: 40px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: calc(100% - 30px);
  }

  .section {
    padding: 80px 0;
  }

  .nav {
    height: 76px;
  }

  .nav-cta {
    font-size: 0;
    padding: 11px;
  }

  .nav-cta span {
    font-size: 14.5px;
  }

  .hero-content {
    gap: 42px;
    padding-top: 55px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-copy>p {
    font-size: 16.5px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-note {
    margin-top: 35px;
  }

  .product-stage {
    margin: 0 0 55px;
    padding: 9px;
    transform: none;
  }

  .chip-one {
    right: 7px;
  }

  .chip-two {
    left: 7px;
  }

  .stage-kpis strong {
    font-size: 17.5px;
  }

  .stage-main {
    grid-template-columns: 1fr;
  }

  .receiver-card {
    display: none;
  }

  .plot-bars {
    gap: 9px;
  }

  .alert-card {
    right: 0;
    width: 260px;
  }

  .manifesto {
    padding: 60px 0;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .manifesto blockquote {
    font-size: 26.5px;
  }

  .manifesto-side {
    grid-column: 1;
  }

  .section-heading,
  .section-heading.narrow,
  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section-heading>p:last-child,
  .section-heading.split>p {
    grid-column: 1;
    padding-top: 8px;
  }

  .section-heading h2 {
    font-size: 37px;
  }

  .problem-visual {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .file-stack {
    min-height: 350px;
  }

  .loose-file {
    width: 230px;
    padding: 11px;
  }

  .file-a {
    left: 18px;
  }

  .file-b {
    right: 12px;
  }

  .file-c {
    left: 18px;
  }

  .file-d {
    right: 12px;
  }

  .question-list p {
    font-size: 17.5px;
  }

  .input-grid {
    grid-template-columns: 1fr;
  }

  .input-grid article {
    min-height: auto;
  }

  .pipeline {
    grid-template-columns: 1fr 1fr;
  }

  .pipeline-label {
    grid-column: 1/-1;
  }

  .process-step {
    border-top: 1px solid #ffffff13;
  }

  .output-banner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .output-banner div {
    grid-column: 1;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 285px;
  }

  .outcome-grid article,
  .outcome-grid article.outcome-featured,
  .outcome-grid article:nth-child(4),
  .outcome-grid article:nth-child(5) {
    grid-column: 1;
  }

  .benchmark {
    padding: 80px 0;
  }

  .benchmark h2 {
    font-size: 37px;
  }

  .benchmark-card {
    padding: 16px;
  }

  .benchmark-result {
    grid-template-columns: 1fr auto;
  }

  .benchmark-result>div {
    grid-column: 1/-1;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 12px 0 0;
  }

  .benchmark-card footer {
    gap: 12px;
  }

  .independence-card {
    min-height: 450px;
    padding: 27px;
  }

  .independent-seal {
    width: 90px;
    height: 90px;
    top: 25px;
    right: 25px;
    font-size: 24.5px;
  }

  .independence-card h3 {
    font-size: 28px;
  }

  .advantage-list article {
    padding: 22px;
  }

  .model-cards {
    grid-template-columns: 1fr;
  }

  .model-cards>i {
    margin: -23px auto;
  }

  .model-cards article {
    min-height: 250px;
  }

  .final-cta>.shell {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .final-cta h2 {
    font-size: 35px;
  }

  .final-cta>div>div:last-child {
    align-items: flex-start;
  }

  .footer>.shell:first-child {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer>.shell:first-child>div:last-child {
    align-items: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@keyframes scan {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(1150px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: .45;
    transform: scale(.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes stream {
  0% {
    left: 0;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes chaosA {
  0%,
  100% {
    transform: translate(0, 0) rotate(-4deg);
  }

  45% {
    transform: translate(7px, -7px) rotate(-1deg);
  }

  70% {
    transform: translate(-3px, 5px) rotate(-6deg);
  }
}

@keyframes chaosB {
  0%,
  100% {
    transform: translate(0, 0) rotate(3deg);
  }

  40% {
    transform: translate(-8px, 6px) rotate(1deg);
  }

  75% {
    transform: translate(4px, -5px) rotate(5deg);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: .35;
  }

  50% {
    transform: translate(12px, -15px);
    opacity: 1;
  }
}

@keyframes resultGlow {
  0%,
  100% {
    border-color: #67c88a20;
    box-shadow: 0 15px 35px #0003;
  }

  50% {
    border-color: #67c88a50;
    box-shadow: 0 15px 40px #5bb77b10;
  }
}

@keyframes cardSignal {
  0%,
  100% {
    border-color: #ffffff10;
  }

  50% {
    border-color: #e82d6632;
  }
}

@keyframes load {
  0%,
  15% {
    transform: scaleX(.1);
    opacity: .4;
  }

  60%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bubblePulse {
  0%,
  100% {
    box-shadow: 0 12px 30px #e82d6640;
  }

  50% {
    box-shadow: 0 14px 36px #e82d6670;
  }
}

@media (max-width: 1000px) {
  .flow-stage {
    margin: 28px 22px 58px;
  }

  .flow-lab {
    grid-template-columns: 1fr 38px .9fr 38px 1fr;
    padding: 20px;
  }

  .source-node {
    width: 150px;
  }

  .lab-column article {
    padding: 8px;
  }

  .lab-column p {
    display: none;
  }
}

@media (max-width: 1000px) {
  .decision-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .decision-tab {
    min-height: 195px;
  }

  .decision-panel {
    gap: 40px;
  }

  .benchmark-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .benchmark-card {
    max-width: 720px;
    width: 100%;
    margin: auto;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-bottom: 40px;
  }

  .hero-content {
    padding-top: 48px;
  }

  .flow-stage {
    min-height: 665px;
    margin: 5px 0 25px;
    border-radius: 13px;
  }

  .flow-stage-top {
    left: 12px;
    right: 12px;
  }

  .chaos-zone {
    left: 12px;
    right: 12px;
    top: 60px;
    width: auto;
    height: 150px;
    bottom: auto;
  }

  .source-node {
    width: 47%;
    padding: 7px;
  }

  .source-node>i {
    width: 24px;
    height: 24px;
  }

  .source-one {
    top: 26px;
    left: 0;
  }

  .source-two {
    top: 26px;
    right: 0;
  }

  .source-three {
    bottom: 0;
    left: 18%;
  }

  .source-four {
    display: none;
  }

  .noise-dot {
    display: none;
  }

  .intelligence-core {
    top: 355px;
    width: 145px;
    height: 145px;
  }

  .core-tag {
    display: none;
  }

  .flow-beam {
    display: none;
  }

  .clarity-zone {
    left: 10px;
    right: 10px;
    top: 480px;
    width: auto;
    height: 125px;
    bottom: auto;
  }

  .result-node {
    top: 25px !important;
    bottom: auto;
    width: 32%;
    height: 96px;
    padding: 9px;
  }

  .result-node span {
    font-size: 7px;
  }

  .result-node b {
    font-size: 17.5px;
  }

  .result-one {
    left: 0;
    right: auto;
  }

  .result-two {
    left: 34%;
    right: auto;
  }

  .result-three {
    left: 68%;
    right: auto;
  }

  .flow-stage-bottom {
    display: none;
  }

  .flow-lab {
    grid-template-columns: 1fr;
    padding: 17px;
  }

  .lab-rail,
  .rail-right {
    width: 1px;
    height: 36px;
    margin: 9px auto;
    transform: none;
    background: linear-gradient(#e82d66, #5bb77b);
  }

  .lab-rail span,
  .lab-rail:before,
  .lab-rail:after {
    display: none;
  }

  .lab-engine {
    padding: 8px 0;
  }

  .lab-column p {
    display: block;
  }

  .flow-caption {
    flex-wrap: wrap;
    gap: 8px;
    text-align: center;
  }

  .flow-caption i {
    width: 24px;
  }

  .file-stack {
    min-height: 370px;
  }

  .loose-file {
    width: 215px;
  }

  .file-a {
    top: 48px;
  }

  .file-b {
    top: 140px;
  }

  .file-c {
    bottom: 82px;
  }

  .file-d {
    bottom: 20px;
  }
}

@media (max-width: 700px) {
  .decision-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 0 8px;
  }

  .decision-tab {
    min-width: 168px;
    min-height: 188px;
    scroll-snap-align: start;
  }

  .decision-panel {
    grid-template-columns: 1fr;
    gap: 25px;
    min-height: auto;
    padding: 29px 23px;
  }

  .decision-panel h3 {
    font-size: 27px;
  }

  .evidence-row {
    flex-wrap: wrap;
  }

  .decision-signal {
    padding: 21px;
  }

  .decision-hint {
    line-height: 1.5;
  }

  .bubble-chart {
    height: 260px;
    margin-top: 22px;
  }

  .bubble-a {
    left: 8%;
  }

  .bubble-b {
    left: 22%;
  }

  .bubble-c {
    left: 47%;
  }

  .bubble-you {
    width: 72px;
    height: 72px;
    left: 54%;
    top: 26%;
  }

  .bubble-d {
    right: 9%;
  }

  .bubble-e {
    right: 4%;
  }

  .bubble-legend {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .benchmark-card header>span {
    max-width: 110px;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero:after,
  .source-node,
  .noise-dot,
  .core-ring,
  .flow-beam i,
  .result-node,
  .lab-column article,
  .lab-rail span,
  .engine-orbit,
  .engine-orbit>div,
  .lab-engine li i:after,
  .decision-panel,
  .bubble-you {
    animation: none !important;
  }
}

.solution-soft {
  color: var(--pink);
  font-weight: 400;
}

.question-list b {
  color: var(--pink);
  font-weight: 400;
}

.legal-hero {
  min-height: 0;
}

/* Segmented-control look: one shared pill-shaped container, buttons sit
   flush inside it with no border of their own — reads as "pick one of these
   two", not just two separate floating buttons. */
.legal-tabs {
  display: inline-flex;
  gap: 4px;
  margin-top: 28px;
  padding: 4px;
  border-radius: 10px;
  border: 1px solid #ffffff20;
  background: #ffffff0e;
  backdrop-filter: blur(12px);
}

.legal-tab {
  padding: 10px 20px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: #9bb0b7;
  font: inherit;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.legal-tab:hover {
  color: #fff;
}

.legal-tab.is-active {
  background: var(--pink);
  color: #fff;
}

.legal-content {
  max-width: 760px;
  padding: 90px 0;
}

.legal-content h2 {
  margin: 48px 0 16px;
  font-size: 22px;
  letter-spacing: -.02em;
  color: var(--ink);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-updated {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.legal-intro {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--muted);
}

.legal-content p {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink);
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
}

.legal-content strong {
  font-weight: 800;
}

.legal-content a {
  color: var(--pink);
  text-decoration: underline;
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
}
