﻿:root {
  --ink: #101820;
  --ink-2: #17212b;
  --teal: #006c67;
  --teal-dark: #003f3c;
  --copper: #97502b;
  --lime: #a9bbb2;
  --mist: #f3f6f4;
  --ivory: #fafaf2;
  --line: #d8ded9;
  --muted: #5e6a70;
  --white: #ffffff;
  --shadow-soft: 0 18px 48px rgba(16, 24, 32, 0.1);
  --shadow-lift: 0 30px 80px rgba(16, 24, 32, 0.18);
  --focus: 0 0 0 4px rgba(151, 80, 43, 0.24);
  --container: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(169, 187, 178, 0.09), transparent 28rem),
    linear-gradient(90deg, rgba(16, 24, 32, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 24, 32, 0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: auto, 72px 72px, 72px 72px;
  font-family: Aptos, Inter, "IBM Plex Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-of-type(2) {
  transition-delay: 80ms;
}

.reveal:nth-of-type(3) {
  transition-delay: 140ms;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(64px, 8vw, 112px);
}

.soft {
  background:
    linear-gradient(135deg, rgba(169, 187, 178, 0.16), transparent 36%),
    linear-gradient(180deg, var(--mist), var(--ivory));
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 242, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px rgba(255, 255, 255, 0.7);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  border-radius: var(--radius);
  text-decoration: none;
}

.brand img {
  display: block;
  width: 54px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 7px 14px rgba(16, 24, 32, 0.12));
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  color: var(--ink);
  font-family: "Space Grotesk", Aptos, Inter, system-ui, sans-serif;
  font-size: 1.64rem;
  font-weight: 850;
  line-height: 1;
}

.brand-name span {
  color: var(--copper);
}

.brand-tagline {
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 800;
  line-height: 1.12;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.45vw, 20px);
  font-size: clamp(0.84rem, 0.9vw, 0.93rem);
  font-weight: 800;
}

.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
}

.header-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--teal);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: 0;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.mobile-nav {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.82rem 1.05rem;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
  touch-action: manipulation;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  border-color: rgba(16, 24, 32, 0.92);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(16, 24, 32, 0.18);
}

.btn-primary::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 8px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--copper);
  transform: scaleX(0.72);
  transform-origin: 0;
  transition: transform 180ms ease;
}

.btn-primary:hover {
  border-color: var(--copper);
  background: #16222c;
  box-shadow: 0 20px 42px rgba(16, 24, 32, 0.24);
}

.btn-primary:hover::after {
  transform: scaleX(1);
}

.btn-secondary {
  border-color: rgba(16, 24, 32, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(16, 24, 32, 0.04);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 78px));
  padding-block: clamp(72px, 11vw, 142px) clamp(44px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(250, 250, 242, 0.98), rgba(255, 255, 255, 0.86)),
    linear-gradient(90deg, rgba(0, 108, 103, 0.08), rgba(169, 187, 178, 0.08));
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 108, 103, 0.42), transparent);
}

.hero-grid,
.split,
.diagnostic-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.hero-grid {
  align-items: center;
}

.hero-copy {
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  width: fit-content;
  border: 1px solid rgba(0, 108, 103, 0.22);
  border-radius: 999px;
  background: rgba(250, 250, 242, 0.76);
  padding: 8px 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Aptos, Inter, system-ui, sans-serif;
  font-weight: 850;
}

h1 {
  max-width: 14ch;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.94;
}

h2 {
  max-width: 18ch;
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 52ch;
  color: #2f3f46;
  font-size: clamp(1.12rem, 1.6vw, 1.34rem);
  line-height: 1.52;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-window {
  width: min(100%, 520px);
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 80px rgba(16, 24, 32, 0.14);
  padding: clamp(18px, 3vw, 28px);
}

.hero-dashboard-row,
.hero-metrics,
.hero-workflow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-dashboard-row {
  justify-content: space-between;
  margin: 22px 0 18px;
}

.hero-dashboard-row strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.hero-dashboard-row span {
  border-radius: 999px;
  background: rgba(0, 108, 103, 0.1);
  color: var(--teal);
  padding: 7px 11px;
  font-size: 0.8rem;
  font-weight: 850;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
}

.hero-metrics div {
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: var(--radius);
  background: var(--ivory);
  padding: 14px;
}

.hero-metrics span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-metrics strong {
  color: var(--ink);
  font-size: 1.7rem;
}

.hero-chart {
  display: flex;
  height: 190px;
  align-items: end;
  gap: 14px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(0, 108, 103, 0.06), transparent),
    repeating-linear-gradient(0deg, rgba(16, 24, 32, 0.06) 0 1px, transparent 1px 44px);
  padding: 18px;
}

.hero-chart i {
  flex: 1;
  min-width: 0;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--teal), rgba(0, 108, 103, 0.32));
}

.hero-chart i:nth-child(1) { height: 46%; }
.hero-chart i:nth-child(2) { height: 68%; background: linear-gradient(180deg, var(--copper), rgba(151, 80, 43, 0.28)); }
.hero-chart i:nth-child(3) { height: 58%; }
.hero-chart i:nth-child(4) { height: 82%; background: linear-gradient(180deg, var(--lime), rgba(169, 187, 178, 0.36)); }

.hero-workflow {
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-workflow span {
  border: 1px solid rgba(0, 108, 103, 0.16);
  border-radius: 999px;
  background: #fff;
  padding: 8px 11px;
}

.hero-workflow i {
  flex: 1;
  min-width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
}

.proof-section {
  padding-block: clamp(48px, 6vw, 82px);
  background:
    linear-gradient(180deg, #fff, rgba(250, 250, 242, 0.72)),
    #fff;
}

.priority-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.priority-copy h2 {
  max-width: 13ch;
  margin-bottom: 16px;
}

.priority-copy > p:not(.eyebrow) {
  max-width: 56ch;
  margin-bottom: 22px;
  font-size: 1.04rem;
}

.intent-picker {
  max-width: 62ch;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.06);
  padding: clamp(18px, 3vw, 24px);
}

.intent-picker > span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.intent-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intent-options button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  padding: 0 12px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.intent-options button:hover,
.intent-options button[aria-pressed="true"] {
  border-color: var(--teal);
  background: rgba(0, 108, 103, 0.1);
  transform: translateY(-1px);
}

.intent-message {
  max-width: 48ch;
  min-height: 0;
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.58;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 108, 103, 0.2);
  border-radius: 999px;
  background: rgba(250, 250, 242, 0.78);
  color: var(--ink);
  padding: 0 12px;
  font-size: 0.88rem;
  font-weight: 800;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(169, 187, 178, 0.2);
}

.order-machine {
  display: grid;
  position: relative;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.96), rgba(18, 43, 47, 0.94)), var(--ink);
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow-lift);
}

.compact-order {
  gap: 20px;
  border-color: rgba(16, 24, 32, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(16, 24, 32, 0.96), rgba(16, 24, 32, 0.91)),
    var(--ink);
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 24px 64px rgba(16, 24, 32, 0.16);
}

.compact-order::before {
  display: none;
}

.compact-order::after {
  opacity: 0.36;
}

.compact-order .machine-topline {
  padding-bottom: 14px;
}

.compact-flow {
  display: grid;
  grid-template-columns: minmax(180px, 0.96fr) minmax(124px, 0.5fr) minmax(220px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.compact-order .chaos-stack,
.compact-order .machine-core,
.compact-order .output-dashboard {
  min-width: 0;
}

.compact-order .chaos-stack {
  gap: 8px;
}

.compact-order .source-card {
  display: grid;
  min-height: 72px;
  align-content: center;
  padding: 12px;
  transform: none;
  animation: none;
}

.compact-order .source-card::after {
  display: none;
}

.compact-order .source-card span {
  font-size: 0.7rem;
}

.compact-order .source-card strong {
  font-size: 0.94rem;
}

.compact-order .machine-core {
  min-height: 100%;
  padding: 16px 12px;
  border-radius: 14px;
  animation: none;
}

.compact-order .core-ring {
  display: none;
}

.compact-order .machine-core strong {
  font-size: 1.08rem;
}

.compact-order .machine-core small {
  max-width: 12ch;
  margin-top: 8px;
  text-align: center;
  line-height: 1.25;
}

.compact-order .output-dashboard {
  display: grid;
  align-content: space-between;
  padding: 14px;
}

.compact-order .dash-grid {
  grid-template-columns: 1fr;
  gap: 8px;
}

.compact-order .dash-grid div {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
}

.compact-order .dash-line {
  margin-top: 12px;
}

.order-machine::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -18%;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(169, 187, 178, 0.18);
  filter: blur(26px);
}

.order-machine::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(169, 187, 178, 0.12) 48%, transparent 58%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 220% 100%, 100% 34px;
  mix-blend-mode: screen;
  animation: machine-sweep 7s ease-in-out infinite;
}

.machine-topline,
.console-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(216, 222, 217, 0.18);
  padding-bottom: 16px;
}

.machine-topline span,
.console-header span {
  color: #a9b9b5;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.machine-topline strong,
.console-header strong {
  border-radius: 999px;
  background: rgba(169, 187, 178, 0.22);
  color: var(--lime);
  padding: 6px 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.chaos-stack {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.source-card {
  position: relative;
  border: 1px solid rgba(216, 222, 217, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.07);
  padding: 14px 16px;
  transform: translateX(var(--offset, 0)) scale(1);
  animation: source-flow 7.2s ease-in-out infinite;
}

.source-card:nth-child(2) {
  --offset: 26px;
  animation-delay: 0.65s;
}

.source-card:nth-child(3) {
  --offset: 10px;
  animation-delay: 1.3s;
}

.source-card span {
  color: #9fb0ad;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.source-card strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
}

.source-card.is-active {
  border-color: rgba(169, 187, 178, 0.62);
  background:
    linear-gradient(90deg, rgba(169, 187, 178, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
}

.source-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -44px;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(169, 187, 178, 0.04), rgba(169, 187, 178, 0.9), transparent);
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: 0 50%;
  animation: connector-pulse 7.2s ease-in-out infinite;
}

.source-card:nth-child(2)::after {
  animation-delay: 0.65s;
}

.source-card:nth-child(3)::after {
  animation-delay: 1.3s;
}

.machine-core {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  min-height: 150px;
  border: 1px solid rgba(169, 187, 178, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle, rgba(169, 187, 178, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 44px rgba(169, 187, 178, 0.06);
  animation: core-breathe 4.8s ease-in-out infinite;
}

.core-ring {
  position: absolute;
  width: 104px;
  aspect-ratio: 1;
  border: 1px solid rgba(169, 187, 178, 0.45);
  border-top-color: var(--lime);
  border-radius: 50%;
  animation: radar-spin 6s linear infinite;
}

.machine-core strong {
  position: relative;
  color: var(--white);
  font-size: 1.36rem;
}

.machine-core small {
  position: relative;
  color: #cbd8d3;
  margin-top: 34px;
}

.output-dashboard {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(216, 222, 217, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.output-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 42%, rgba(169, 187, 178, 0.16), transparent 58%);
  transform: translateX(-120%);
  animation: dashboard-reveal 5.8s ease-in-out infinite;
}

.dash-head,
.screen-bar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.dash-head span {
  color: #9fb0ad;
  font-weight: 800;
  text-transform: uppercase;
}

.dash-head strong {
  color: var(--lime);
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.dash-grid div {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  transition: background 220ms ease, transform 220ms ease;
}

.dash-grid div:hover {
  background: rgba(169, 187, 178, 0.12);
  transform: translateY(-2px);
}

.dash-grid span {
  display: block;
  color: #9fb0ad;
  font-size: 0.72rem;
  font-weight: 800;
}

.dash-grid strong {
  color: var(--white);
}

.dash-line {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(216, 222, 217, 0.14);
  margin-top: 16px;
}

.dash-line i {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  animation: line-pulse 4.2s ease-in-out infinite;
}

.decision-node {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--lime), #8fa99b);
  color: var(--ink);
  margin-top: 8px;
  padding: 16px 18px;
  font-weight: 850;
}

.signal-board {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(216, 222, 217, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.signal-board div {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  align-items: center;
  gap: 12px;
}

.signal-board span {
  color: #9fb0ad;
  font-size: 0.82rem;
  font-weight: 800;
}

.signal-board i {
  position: relative;
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(216, 222, 217, 0.18);
}

.signal-board i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--lime));
}

.signal-board strong {
  color: var(--lime);
  font-size: 0.88rem;
}

.panel-note {
  margin: 0;
  color: #cbd8d3;
  font-size: 0.86rem;
  line-height: 1.5;
}

.proofbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 250, 242, 0.92);
  box-shadow: 0 16px 38px rgba(16, 24, 32, 0.08);
}

.proofbar div {
  min-height: 112px;
  border-right: 1px solid var(--line);
  padding: 22px;
}

.proofbar div:last-child {
  border-right: 0;
}

.proofbar strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 1.08rem;
}

.proofbar span {
  display: block;
  max-width: 24ch;
  color: var(--muted);
  line-height: 1.45;
}

.system-section,
.ink,
.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 8%, rgba(169, 187, 178, 0.18), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(0, 108, 103, 0.22), transparent 34%),
    linear-gradient(135deg, #070d12, var(--ink) 56%, #0d2f2d);
}

.system-grid,
.decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.system-section h2,
.ink h2,
.contact h2,
.method-list h3 {
  color: var(--white);
}

.system-section p,
.ink p,
.contact p {
  color: #dfe8e1;
}

.system-section .eyebrow,
.ink .eyebrow,
.contact .eyebrow {
  color: var(--lime);
}

.workflow-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.workflow-tabs button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e8eeea;
  cursor: pointer;
  padding: 0 16px;
  font-weight: 850;
}

.workflow-tabs button:hover,
.workflow-tabs button[aria-selected="true"] {
  border-color: rgba(169, 187, 178, 0.78);
  background: var(--lime);
  color: var(--ink);
}

.ops-console {
  overflow: hidden;
  border: 1px solid rgba(216, 222, 217, 0.18);
  border-radius: 18px;
  background: linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)), rgba(10, 16, 22, 0.82);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28);
}

.console-main {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: center;
  padding-block: 28px;
}

.console-kpi {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: clamp(3rem, 8vw, 5.8rem);
  font-weight: 900;
  line-height: 0.9;
}

.console-main h3 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.product-screen {
  display: grid;
  position: relative;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(216, 222, 217, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  transform: perspective(900px) rotateY(-5deg);
}

.product-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(169, 187, 178, 0.16), transparent);
  transform: translateY(-100%);
  animation: screen-scan 5.6s ease-in-out infinite;
}

.screen-bar {
  justify-content: flex-start;
  border-bottom: 1px solid rgba(216, 222, 217, 0.14);
  padding-bottom: 12px;
}

.screen-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(216, 222, 217, 0.34);
}

.screen-bar span:first-child {
  background: var(--copper);
}

.screen-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px;
  transition: background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.screen-row.active,
.screen-row.is-active {
  background: rgba(169, 187, 178, 0.13);
  box-shadow: inset 3px 0 var(--lime);
  transform: translateX(2px);
}

.screen-row span {
  color: #dfe8e1;
  font-weight: 800;
}

.screen-row i {
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: rgba(216, 222, 217, 0.16);
}

.screen-row i::before {
  content: "";
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  animation: line-pulse 4.4s ease-in-out infinite;
}

.screen-row.is-active i::before {
  animation-duration: 1.4s;
}

.screen-row strong {
  color: var(--lime);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.system-map {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.system-map span {
  border: 1px solid rgba(216, 222, 217, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #e8eeea;
  padding: 8px 10px;
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.system-map span.is-active {
  border-color: rgba(169, 187, 178, 0.7);
  background: rgba(169, 187, 178, 0.14);
  color: var(--lime);
}

.system-map i {
  position: relative;
  overflow: hidden;
  height: 1px;
  background: linear-gradient(90deg, rgba(169, 187, 178, 0.76), rgba(169, 187, 178, 0.08));
}

.system-map i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  animation: map-flow 2.4s linear infinite;
}

.radar {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(169, 187, 178, 0.52);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(169, 187, 178, 0.22) 0 3px, transparent 4px),
    repeating-radial-gradient(circle, rgba(216, 222, 217, 0.18) 0 1px, transparent 1px 30px);
}

.radar::before {
  content: "";
  position: absolute;
  inset: 50% 0 0 50%;
  transform-origin: 0 0;
  background: linear-gradient(70deg, rgba(169, 187, 178, 0.45), transparent 70%);
  animation: radar-spin 4s linear infinite;
}

.radar span {
  position: absolute;
  inset: 34%;
  border: 1px solid rgba(169, 187, 178, 0.52);
  border-radius: 50%;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.pipeline div {
  min-height: 112px;
  border: 1px solid rgba(216, 222, 217, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 14px;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.pipeline div.is-active {
  border-color: rgba(169, 187, 178, 0.78);
  background: rgba(169, 187, 178, 0.12);
  transform: translateY(-4px);
}

.pipeline span {
  display: block;
  margin-bottom: 18px;
  color: rgba(169, 187, 178, 0.82);
  font-size: 0.78rem;
  font-weight: 850;
}

.pipeline strong {
  color: var(--white);
}

.symptom-list {
  display: grid;
  gap: 14px;
}

.symptom {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
}

.symptom span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--copper);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 0 0 5px rgba(151, 80, 43, 0.12);
}

.symptom p {
  margin-bottom: 0;
}

.symptom strong {
  color: var(--ink);
}

.symptom-result {
  border-color: rgba(0, 108, 103, 0.24);
  background: linear-gradient(135deg, rgba(0, 108, 103, 0.1), rgba(169, 187, 178, 0.14));
}

.symptom-result span {
  background: var(--teal);
}

.symptom-result span::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--lime);
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 22ch;
}

.section-head p {
  max-width: 70ch;
}

.offer-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.offer-card,
.case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(#fffffffa, rgba(250, 250, 242, 0.92));
  padding: clamp(22px, 2.6vw, 30px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.offer-card {
  display: grid;
  min-height: 600px;
  grid-template-rows: 104px 90px 76px auto;
  align-content: stretch;
  padding-bottom: 96px;
}

.offer-card::before,
.case-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--teal), var(--lime));
  transform: scaleX(0);
  transform-origin: 0;
  transition: transform 220ms ease;
}

.offer-card:hover,
.case-card:hover {
  border-color: rgba(0, 108, 103, 0.45);
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px);
}

.offer-card:hover::before,
.case-card:hover::before {
  transform: scaleX(1);
}

.price {
  color: var(--copper);
  display: flex;
  min-height: 78px;
  align-items: flex-start;
  margin-bottom: 0;
  font-family: "Space Grotesk", Aptos, Inter, system-ui, sans-serif;
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  font-weight: 850;
  line-height: 1.08;
}

.offer-card h3 {
  display: flex;
  min-height: 76px;
  align-items: flex-start;
  margin-bottom: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.offer-card p:not(.price) {
  min-height: 58px;
  margin-bottom: 0;
  line-height: 1.5;
}

.offer-points {
  display: grid;
  align-content: start;
  grid-template-rows: repeat(4, minmax(42px, auto));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-points li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.28;
}

.offer-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  align-self: 0.45em;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(0, 108, 103, 0.08);
}

.offer-cta {
  position: absolute;
  right: clamp(22px, 2.6vw, 30px);
  bottom: clamp(22px, 2.6vw, 30px);
  left: clamp(22px, 2.6vw, 30px);
  width: auto;
  justify-content: center;
  margin-top: 0;
}

.case-card {
  display: grid;
  min-height: 470px;
}

.case-card .tag {
  margin-top: 20px;
}

.case-card p {
  font-size: 1.02rem;
}

.case-result {
  display: block;
  margin-top: 8px;
  color: var(--teal-dark);
  font-family: "Space Grotesk", Aptos, Inter, system-ui, sans-serif;
  font-size: 1.06rem;
}

.case-mockup {
  display: grid;
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 24, 32, 0.08);
  padding: 16px;
}

.mockup-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.mockup-top span {
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
}

.kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.kanban div {
  display: grid;
  gap: 9px;
  border-radius: 12px;
  background: var(--mist);
  padding: 10px;
}

.kanban b {
  color: var(--ink);
  font-size: 0.72rem;
}

.kanban i {
  height: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 3px 0 var(--teal);
}

.kanban div:nth-child(2) i {
  box-shadow: inset 3px 0 var(--copper);
}

.kanban div:nth-child(3) i {
  box-shadow: inset 3px 0 var(--lime);
}

.workflow-mockup {
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.workflow-mockup .node {
  border: 1px solid rgba(0, 108, 103, 0.16);
  border-radius: 12px;
  background: var(--ivory);
  color: var(--ink);
  padding: 14px 12px;
  font-size: 0.78rem;
  font-weight: 850;
}

.workflow-mockup i {
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 108, 103, 0.22), var(--teal));
}

.dashboard-mockup {
  gap: 14px;
}

.mini-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-kpis b {
  border-radius: 10px;
  background: var(--mist);
  color: var(--ink);
  padding: 12px 8px;
  font-size: 0.78rem;
}

.bars {
  display: flex;
  height: 92px;
  align-items: end;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 108, 103, 0.06), rgba(169, 187, 178, 0.1));
  padding: 12px;
}

.bars i {
  flex: 1;
  border-radius: 7px 7px 0 0;
  background: var(--teal);
}

.bars i:nth-child(1) { height: 44%; }
.bars i:nth-child(2) { height: 78%; background: var(--copper); }
.bars i:nth-child(3) { height: 58%; }
.bars i:nth-child(4) { height: 86%; background: var(--lime); }

.packaged-section {
  margin-top: 0;
}

.packaged-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 28px;
}

.packaged-head h2 {
  max-width: 34ch;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
}

.packaged-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  display: grid;
  min-height: 500px;
  align-content: start;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 242, 0.9)),
    #fff;
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.package-card:hover {
  border-color: rgba(0, 108, 103, 0.36);
  box-shadow: 0 20px 48px rgba(16, 24, 32, 0.1);
  transform: translateY(-4px);
}

.package-card h4 {
  min-height: 2.4em;
  margin: 14px 0 10px;
  color: var(--ink);
  font-family: "Space Grotesk", Aptos, Inter, system-ui, sans-serif;
  font-size: 1.16rem;
  line-height: 1.18;
}

.package-visual {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 292px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 245, 0.9)),
    #fff;
  box-shadow: 0 18px 46px rgba(16, 24, 32, 0.1);
  margin-bottom: 18px;
  padding: 16px;
}

.package-windowbar {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  margin-bottom: 14px;
  padding-bottom: 12px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.package-windowbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(16, 24, 32, 0.12);
}

.package-windowbar span:first-child {
  background: var(--copper);
}

.package-windowbar strong {
  margin-left: auto;
  color: var(--teal-dark);
  font-size: 0.76rem;
}

.prospect-visual {
  gap: 0;
}

.prospect-board {
  display: grid;
  gap: 9px;
  align-content: center;
}

.prospect-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(16, 24, 32, 0.06);
  border-radius: 12px;
  background: var(--mist);
  padding: 10px 12px;
}

.prospect-row.active {
  border-color: rgba(0, 108, 103, 0.22);
  background: rgba(0, 108, 103, 0.08);
  box-shadow: inset 4px 0 var(--teal);
}

.prospect-row span {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 850;
}

.prospect-row b {
  display: inline-flex;
  min-width: 34px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
}

.ocr-visual {
  gap: 0;
}

.ocr-stage {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.document-sheet {
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.document-sheet span {
  height: 8px;
  border-radius: 999px;
  background: var(--line);
}

.document-sheet span:nth-child(2) {
  width: 76%;
}

.document-sheet span:nth-child(3) {
  width: 54%;
}

.document-sheet strong {
  margin-top: auto;
  color: var(--copper);
  font-size: 0.86rem;
}

.extract-panel {
  display: grid;
  gap: 8px;
  align-content: center;
}

.extract-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 10px;
  background: var(--mist);
  padding: 11px;
}

.extract-panel span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.extract-panel b {
  color: var(--teal);
  font-size: 0.78rem;
}

.automation-visual {
  gap: 0;
}

.automation-chain {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
}

.auto-node {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 108, 103, 0.16);
  border-radius: 12px;
  background: var(--ivory);
  color: var(--ink);
  padding: 12px 10px;
  font-size: 0.74rem;
  font-weight: 850;
  text-align: center;
}

.automation-chain i {
  display: none;
}

.package-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 108, 103, 0.16);
  border-radius: 999px;
  background: rgba(169, 187, 178, 0.2);
  color: var(--teal-dark);
  margin-top: 14px;
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 850;
}

.package-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.package-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

dl {
  display: grid;
  gap: 14px;
  margin: 12px 0 0;
}

dt {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.tag {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: var(--mist);
  color: var(--ink);
  margin-bottom: 16px;
  padding: 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.tag.signal {
  background: rgba(169, 187, 178, 0.42);
}

.case-card p strong {
  color: var(--ink);
}

.founder-section {
  background: linear-gradient(180deg, #fff, var(--ivory));
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.founder-copy {
  border-left: 3px solid var(--lime);
  padding-left: clamp(20px, 4vw, 34px);
}

.founder-copy h3 {
  max-width: 44ch;
  font-size: clamp(1.28rem, 2vw, 1.75rem);
}

.founder-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 2px;
}

.founder-proof span {
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  padding: 12px 14px;
  font-weight: 750;
}

.founder-proof strong {
  display: block;
  color: var(--teal-dark);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.founder-proof a {
  color: var(--ink);
  font-weight: 850;
}

.founder-proof a:hover {
  color: var(--teal);
}

.founder-copy p:last-child {
  margin-bottom: 0;
}

.founder-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.founder-teaser h2 {
  max-width: 18ch;
}

.founder-teaser p {
  margin-bottom: 0;
}

.name-story-section {
  background:
    linear-gradient(180deg, rgba(250, 250, 242, 0.95), #fff),
    var(--ivory);
}

.story-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(169, 187, 178, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(250, 250, 242, 0.94));
  box-shadow: 0 24px 60px rgba(16, 24, 32, 0.08);
  padding: clamp(22px, 4vw, 34px);
}

.story-symbol {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.story-symbol img {
  width: clamp(78px, 9vw, 112px);
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(16, 24, 32, 0.12));
}

.story-symbol span {
  color: var(--copper);
  font-family: "Space Grotesk", Aptos, Inter, system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0;
}

.story-panel-copy h2 {
  max-width: 20ch;
  margin-bottom: 12px;
}

.story-panel-copy p {
  max-width: 72ch;
  margin-bottom: 0;
}

.story-mini-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.story-mini-principles li {
  border-left: 3px solid var(--lime);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.35;
}

.name-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.name-story-copy {
  position: relative;
  border: 1px solid rgba(0, 108, 103, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(24px, 4vw, 36px);
}

.name-story-copy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--lime), var(--teal));
}

.name-mark {
  margin-bottom: 18px;
  color: var(--copper);
  font-family: "Space Grotesk", Aptos, Inter, system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 850;
  line-height: 0.9;
}

.name-story-copy h3 {
  max-width: 42ch;
  font-size: clamp(1.24rem, 2vw, 1.65rem);
}

.name-story-principles {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.name-story-principles li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 750;
}

.name-story-principles li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(169, 187, 178, 0.24);
}

.name-story-details {
  border-top: 1px solid rgba(16, 24, 32, 0.1);
  padding-top: 14px;
}

.name-story-details summary {
  color: var(--teal-dark);
  cursor: pointer;
  font-weight: 850;
}

.name-story-details p:first-of-type {
  margin-top: 16px;
}

.name-story-question,
.name-story-signature {
  border-left: 3px solid var(--copper);
  background: rgba(184, 108, 70, 0.08);
  padding: 16px 18px;
  color: var(--teal-dark);
  font-family: "Space Grotesk", Aptos, Inter, system-ui, sans-serif;
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  font-weight: 850;
  line-height: 1.25;
}

.name-story-signature {
  margin-top: 24px;
  border-left-color: var(--lime);
  background: rgba(0, 108, 103, 0.08);
}

.name-story-copy p:last-child {
  margin-bottom: 0;
}

.method-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  position: relative;
  padding: 0 0 30px 34px;
}

.method-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(169, 187, 178, 0.16);
}

.method-list li::after {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 6px;
  left: 5px;
  width: 2px;
  background: rgba(216, 222, 217, 0.28);
}

.method-list li:last-child::after {
  display: none;
}

.diagnostic-grid {
  align-items: stretch;
}

.score-box {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(169, 187, 178, 0.18), transparent 42%),
    linear-gradient(180deg, #fff, var(--ivory));
  box-shadow: var(--shadow-soft);
  margin-top: 28px;
  padding: 22px;
}

.score-box span {
  color: var(--teal);
  font-weight: 850;
}

.score-box strong {
  display: block;
  margin: 8px 0;
  font-size: 1.45rem;
}

.score-recommendation {
  border: 1px solid rgba(0, 108, 103, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  margin-top: 16px;
  padding: 16px;
}

.score-recommendation span {
  display: block;
  color: var(--copper);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.score-recommendation strong {
  margin: 6px 0;
  color: var(--ink);
  font-size: 1.04rem;
}

.score-recommendation p {
  margin-bottom: 0;
  line-height: 1.5;
}

.score-meter {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(216, 222, 217, 0.95);
  margin-top: 18px;
}

.score-meter i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--copper), var(--teal), var(--lime));
  transition: width 240ms ease;
}

.score-cta {
  width: 100%;
  margin-top: 18px;
}

.question-list {
  display: grid;
  gap: 14px;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  margin: 0;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.04);
}

legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  padding: 0 4px;
  font-weight: 850;
}

fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  cursor: pointer;
  padding: 10px;
  font-weight: 700;
}

fieldset label:hover {
  border-color: rgba(0, 108, 103, 0.45);
  background: rgba(0, 108, 103, 0.06);
  color: var(--ink);
}

.resource-library-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.05);
  padding: 24px;
}

.resource-library-callout h3 {
  margin-bottom: 6px;
}

.resource-library-callout p {
  margin-bottom: 0;
}

.faq-section {
  background: var(--ivory);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0 18px;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  padding: 18px 0;
  font-weight: 850;
}

.faq-list p {
  max-width: 78ch;
  margin: 0 0 18px;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.seo-link-grid a {
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 850;
}

.seo-link-grid a:hover {
  border-color: rgba(32, 128, 136, 0.42);
  color: var(--teal);
}

.contact-grid {
  align-items: start;
}

.direct-mail {
  display: inline-flex;
  color: var(--lime);
  margin-top: 24px;
  font-weight: 850;
}

.contact-note {
  max-width: 58ch;
  border-left: 3px solid var(--lime);
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 0 12px 16px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
}

.contact-actions {
  margin-top: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lift);
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 0.9rem;
}

.contact-form textarea {
  resize: vertical;
  line-height: 1.55;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wide {
  grid-column: 1 / -1;
}

.consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 650 !important;
}

.consent input {
  width: auto;
  min-height: auto;
  margin-top: 6px;
}

.form-status {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  background: #0f171f;
  color: var(--white);
  padding-block: 34px;
}

.site-footer p {
  color: #dfe8e1;
  margin: 8px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
}

.footer-grid div {
  display: grid;
  gap: 8px;
}

.footer-grid a {
  color: #dfe8e1;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--lime);
}

.legal-page {
  background: var(--ivory);
}

.legal-shell {
  max-width: 860px;
  padding-block: clamp(56px, 8vw, 96px);
}

.legal-shell h1 {
  max-width: 18ch;
  margin-bottom: 18px;
}

.legal-shell h2 {
  max-width: none;
  margin-top: 36px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-shell a {
  color: var(--teal);
  font-weight: 800;
}

@keyframes radar-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes machine-sweep {
  0%,
  30%,
  100% {
    background-position: 120% 0, 0 0;
    opacity: 0.72;
  }

  55% {
    background-position: -80% 0, 0 0;
    opacity: 1;
  }
}

@keyframes source-flow {
  0%,
  100% {
    border-color: rgba(216, 222, 217, 0.18);
    opacity: 0.82;
    transform: translateX(var(--offset, 0)) scale(1);
  }

  35% {
    border-color: rgba(169, 187, 178, 0.5);
    opacity: 1;
    transform: translateX(calc(var(--offset, 0) + 12px)) scale(1.015);
  }

  56% {
    transform: translateX(calc(var(--offset, 0) + 34px)) scale(0.985);
    opacity: 0.68;
  }
}

@keyframes connector-pulse {
  0%,
  24%,
  100% {
    opacity: 0;
    transform: scaleX(0.2);
  }

  38%,
  54% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes core-breathe {
  0%,
  100% {
    box-shadow: inset 0 0 44px rgba(169, 187, 178, 0.06), 0 0 0 rgba(169, 187, 178, 0);
  }

  50% {
    box-shadow: inset 0 0 64px rgba(169, 187, 178, 0.13), 0 0 32px rgba(169, 187, 178, 0.12);
  }
}

@keyframes dashboard-reveal {
  0%,
  38%,
  100% {
    transform: translateX(-120%);
  }

  62% {
    transform: translateX(120%);
  }
}

@keyframes screen-scan {
  0%,
  32%,
  100% {
    transform: translateY(-100%);
  }

  58% {
    transform: translateY(100%);
  }
}

@keyframes map-flow {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(260%);
  }
}

@keyframes line-pulse {
  0%,
  100% {
    width: 58%;
  }

  50% {
    width: 92%;
  }
}

@media (max-width: 1160px) {
  .brand-tagline {
    display: none;
  }

  .brand img {
    width: 48px;
  }

  .header-inner {
    gap: 14px;
  }
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 10px;
  }

  .mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav a {
    display: inline-flex;
    flex: none;
    min-height: 34px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--ink);
    padding: 0 12px;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .offer-grid,
  .case-grid,
  .packaged-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .packaged-head {
    grid-template-columns: 1fr;
  }

  .proofbar {
    grid-template-columns: repeat(2, 1fr);
  }

  .proofbar div:nth-child(2) {
    border-right: 0;
  }

  .proofbar div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .section {
    padding-block: 56px;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand img {
    width: 46px;
  }

  .brand-name {
    font-size: 1.38rem;
  }

  .brand-tagline {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .priority-grid,
  .system-grid,
  .founder-grid,
  .founder-teaser,
  .name-story-grid,
  .story-panel,
  .story-mini-principles,
  .diagnostic-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 9vw, 2.95rem);
  }

  .actions,
  .actions .btn,
  .btn-primary.wide {
    width: 100%;
  }

  .offer-grid,
  .case-grid,
  .packaged-grid,
  .proofbar,
  fieldset,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .founder-proof {
    grid-template-columns: 1fr;
  }

  .proofbar div,
  .proofbar div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proofbar div:last-child {
    border-bottom: 0;
  }

  .console-main,
  .system-map,
  .pipeline {
    grid-template-columns: 1fr;
  }

  .system-map i {
    width: 1px;
    min-height: 18px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(169, 187, 178, 0.76), rgba(169, 187, 178, 0.08));
  }

  .product-screen {
    transform: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .hero-metrics,
  .kanban,
  .mini-kpis {
    grid-template-columns: 1fr;
  }

  .workflow-mockup {
    grid-template-columns: 1fr;
  }

  .ocr-stage,
  .automation-chain {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  .package-visual {
    height: auto;
    min-height: 250px;
  }

  .compact-flow {
    grid-template-columns: 1fr;
  }

  .compact-order .machine-core {
    min-height: 140px;
  }

  .compact-order .dash-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .compact-order .dash-grid div {
    display: block;
  }

  .workflow-mockup i {
    width: 2px;
    min-height: 18px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(0, 108, 103, 0.22), var(--teal));
  }

  .resource-library-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .seo-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.offer-link::after {
  content: "\2192";
}

.offer-link:hover {
  text-decoration: underline;
}
