﻿    :root {
      --bg: #050816;
      --bg-soft: #0b1120;
      --surface: #101828;
      --surface-2: #0f172a;
      --card: rgba(16, 24, 40, 0.72);
      --card-solid: #111827;
      --text: #f8fafc;
      --text-soft: #cbd5e1;
      --text-muted: #94a3b8;
      --primary: #2ecc71;
      --primary-strong: #22c55e;
      --secondary: #00bcd4;
      --secondary-strong: #06b6d4;
      --accent-gradient: linear-gradient(135deg, #2ecc71 0%, #00bcd4 100%);
      --border: rgba(255, 255, 255, 0.08);
      --border-strong: rgba(255, 255, 255, 0.14);
      --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);
      --shadow-glow-green: 0 0 30px rgba(46, 204, 113, 0.18);
      --shadow-glow-cyan: 0 0 30px rgba(0, 188, 212, 0.16);
      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 32px;
      --container: 1200px;
      --space-1: 4px;
      --space-2: 8px;
      --space-3: 12px;
      --space-4: 16px;
      --space-5: 24px;
      --space-6: 32px;
      --space-7: 48px;
      --space-8: 64px;
      --space-9: 96px;
      --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
      --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
      --transition-fast: 160ms var(--ease-out);
      --transition-base: 220ms var(--ease-out);
      --transition-slow: 320ms var(--ease-in-out);
      --section-space: clamp(80px, 7vw, 96px);
      --section-head-gap: clamp(22px, 2.2vw, 30px);
      --section-content-gap: clamp(30px, 2.8vw, 36px);
      --kicker-title-gap: 12px;
      --title-copy-gap: 18px;
      --panel-pad: clamp(24px, 2.6vw, 32px);
      --card-pad: 22px;
      --component-gap: 14px;
      --timeline-min-height: 172px;
      --card-min-height: 196px;
      --font-display: "Space Grotesk", "Sora", "Aptos Display", system-ui, sans-serif;
      --font-body: "Inter", "Aptos", "Segoe UI", system-ui, sans-serif;
      --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    }

    * { box-sizing: border-box; }
    html {
      color-scheme: dark;
      scroll-behavior: smooth;
    }
    body {
      margin: 0;
      background:
        radial-gradient(circle at 74% 7%, rgba(0, 188, 212, 0.15), transparent 32rem),
        radial-gradient(circle at 14% 18%, rgba(46, 204, 113, 0.13), transparent 29rem),
        linear-gradient(180deg, #050816 0%, #060a18 44%, #040711 100%);
      color: var(--text);
      font-family: var(--font-body);
      line-height: 1.55;
      overflow-x: hidden;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.034) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.034) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.92), transparent 84%);
      z-index: -2;
    }
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(5,8,22,0.94), transparent 18%, transparent 82%, rgba(5,8,22,0.94));
      z-index: -1;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    button, input, textarea {
      font: inherit;
    }
    .container {
      width: min(var(--container), calc(100% - 48px));
      margin-inline: auto;
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--border);
      background: rgba(5, 8, 22, 0.78);
      backdrop-filter: blur(18px);
    }
    .nav {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
    .brand-mark {
      width: 36px;
      height: 36px;
      flex: 0 0 auto;
      display: block;
      object-fit: contain;
      image-rendering: auto;
    }
    .brand-word {
      font-family: var(--font-display);
      font-size: 1.02rem;
      font-weight: 560;
      letter-spacing: 0;
    }
    .brand-sub {
      display: block;
      color: var(--text-muted);
      font: 0.68rem/1.1 var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-top: 2px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      color: var(--text-soft);
      font-size: 0.92rem;
    }
    .nav-links a {
      padding: 10px 12px;
      border-radius: 999px;
      transition: color var(--transition-fast), background var(--transition-fast);
    }
    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--text);
      background: rgba(255,255,255,0.06);
      outline: none;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .menu-button {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 14px;
      color: var(--text);
      background: rgba(255,255,255,0.04);
      cursor: pointer;
    }
    .menu-button span,
    .menu-button::before,
    .menu-button::after {
      content: "";
      display: block;
      width: 18px;
      height: 2px;
      margin: 4px auto;
      background: currentColor;
      border-radius: 99px;
      transition: transform var(--transition-base), opacity var(--transition-base);
    }
    .menu-button[aria-expanded="true"] span { opacity: 0; }
    .menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
    .menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid var(--border-strong);
      color: var(--text);
      background: rgba(255,255,255,0.045);
      cursor: pointer;
      font-weight: 500;
      letter-spacing: 0.005em;
      transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
      white-space: nowrap;
    }
    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(255,255,255,0.22);
      outline: none;
    }
    .btn-primary {
      border: 1px solid transparent;
      background:
        linear-gradient(135deg, rgba(8, 18, 28, 0.94), rgba(9, 22, 30, 0.94)) padding-box,
        var(--accent-gradient) border-box;
      color: var(--text);
      font-weight: 520;
      box-shadow: 0 0 22px rgba(46,204,113,0.13), 0 0 20px rgba(0,188,212,0.10);
    }
    .btn-primary:hover,
    .btn-primary:focus-visible {
      background:
        linear-gradient(135deg, rgba(11, 29, 35, 0.98), rgba(9, 28, 34, 0.98)) padding-box,
        var(--accent-gradient) border-box;
      box-shadow: 0 0 28px rgba(46,204,113,0.18), 0 0 30px rgba(0,188,212,0.13);
    }
    .btn-ghost {
      background: transparent;
    }
    .hero {
      position: relative;
      padding: clamp(56px, 8vw, 104px) 0 var(--space-9);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
      gap: clamp(30px, 5vw, 60px);
      align-items: center;
    }
    .hero-grid > *,
    .section-head > *,
    .positioning > *,
    .stack-shell > * {
      min-width: 0;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 22px;
      color: var(--text-soft);
      font: 0.76rem/1 var(--font-mono);
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 18px rgba(46,204,113,0.7);
    }
    .tablet-break {
      display: inline;
    }
    h1, h2, h3 {
      font-family: var(--font-display);
      letter-spacing: 0;
      line-height: 1;
      margin: 0;
      text-wrap: balance;
    }
    h1 {
      max-width: 760px;
      font-size: clamp(2.55rem, 5vw, 4.65rem);
      font-weight: 680;
      letter-spacing: -0.01em;
    }
    .line {
      display: block;
    }
    .nowrap {
      white-space: nowrap;
    }
    .gradient-text {
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero-copy {
      max-width: 660px;
      margin: 24px 0 0;
      color: var(--text-soft);
      font-size: clamp(1.05rem, 1.5vw, 1.24rem);
      text-wrap: pretty;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }
    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 36px;
      max-width: 650px;
    }
    .proof-item {
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.035);
      padding: 14px;
    }
    .proof-item strong {
      display: block;
      color: var(--text);
      font: 0.72rem/1 var(--font-mono);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .proof-item span {
      display: block;
      margin-top: 7px;
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    .hero-visual {
      position: relative;
      min-height: 610px;
      border: 1px solid var(--border-strong);
      border-radius: var(--radius-xl);
      background:
        linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015)),
        radial-gradient(circle at 25% 15%, rgba(46,204,113,0.17), transparent 28rem),
        radial-gradient(circle at 80% 30%, rgba(0,188,212,0.16), transparent 25rem),
        rgba(11,17,32,0.78);
      box-shadow: var(--shadow-soft), var(--shadow-glow-cyan);
      overflow: hidden;
    }
    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: 0.5;
    }
    .logo-orbit {
      position: absolute;
      top: 28px;
      left: 28px;
      right: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--text-muted);
      font: 0.7rem/1 var(--font-mono);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .system-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(5,8,22,0.56);
      padding: 9px 12px;
    }
    .system-chip::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--secondary);
      box-shadow: 0 0 14px rgba(0,188,212,0.8);
    }
    .dashboard-card {
      position: absolute;
      inset: 92px 28px auto;
      height: 228px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: rgba(5,8,22,0.58);
      backdrop-filter: blur(12px);
      padding: 22px;
    }
    .dash-top {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: flex-start;
    }
    .dash-title {
      color: var(--text);
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 620;
    }
    .dash-label {
      margin-top: 4px;
      color: var(--text-muted);
      font-size: 0.86rem;
    }
    .signal-badge {
      color: #06130f;
      background: var(--primary);
      border-radius: 999px;
      padding: 7px 10px;
      font: 0.7rem/1 var(--font-mono);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .chart {
      display: grid;
      grid-template-columns: repeat(18, 1fr);
      align-items: end;
      gap: 7px;
      height: 102px;
      margin-top: 28px;
    }
    .bar {
      min-height: 12px;
      border-radius: 99px 99px 4px 4px;
      background: linear-gradient(180deg, rgba(0,188,212,0.92), rgba(46,204,113,0.55));
      box-shadow: 0 0 18px rgba(0,188,212,0.16);
      transform-origin: bottom;
      animation: rise 900ms var(--ease-out) both;
      animation-delay: calc(var(--i) * 45ms);
    }
    @keyframes rise {
      from { transform: scaleY(0.2); opacity: 0.3; }
      to { transform: scaleY(1); opacity: 1; }
    }
    .flow-layer {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 34px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      align-items: stretch;
    }
    .pipeline {
      border: 1px solid var(--border);
      border-radius: 22px;
      background: rgba(5,8,22,0.62);
      padding: 18px;
      min-height: 252px;
    }
    .pipeline-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--text);
      font: 0.78rem/1 var(--font-mono);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .pipeline-steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }
    .pipeline-step {
      position: relative;
      display: grid;
      grid-template-columns: 20px 1fr;
      gap: 9px;
      align-items: start;
      padding: 12px;
      min-height: 68px;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 15px;
      background: rgba(255,255,255,0.035);
      color: var(--text-soft);
      font-size: 0.84rem;
    }
    .node {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.04);
      position: relative;
    }
    .node::after {
      content: "";
      position: absolute;
      inset: 6px;
      border-radius: inherit;
      background: var(--primary);
      box-shadow: 0 0 16px rgba(46,204,113,0.8);
    }
    .pipeline-step small {
      display: block;
      grid-column: 2;
      margin-top: 4px;
      color: var(--text-muted);
      font: 0.62rem/1 var(--font-mono);
      letter-spacing: 0.08em;
    }
    section {
      padding: var(--section-space) 0;
      border-top: 1px solid rgba(255,255,255,0.055);
    }
    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
      gap: var(--section-head-gap);
      align-items: end;
      margin-bottom: var(--section-content-gap);
    }
    .section-kicker {
      color: var(--secondary);
      font: 0.76rem/1 var(--font-mono);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin: 0 0 var(--kicker-title-gap);
    }
    .section-kicker-highlight {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 7px 10px;
      border: 1px solid rgba(0,188,212,0.28);
      border-radius: 999px;
      background: rgba(0,188,212,0.07);
      color: #67e8f9;
      box-shadow: 0 0 22px rgba(0,188,212,0.08);
    }
    .section-kicker-highlight::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 12px rgba(46,204,113,0.72);
    }
    h2 {
      font-size: clamp(1.8rem, 3.35vw, 3.65rem);
      font-weight: 640;
      line-height: 1.04;
      letter-spacing: -0.005em;
    }
    .section-lead {
      color: var(--text-soft);
      font-size: 1.02rem;
      line-height: 1.65;
      margin: 0;
      max-width: 52ch;
      text-wrap: balance;
    }
    .copy-balance {
      display: block;
      max-width: 48ch;
    }
    .mobile-copy {
      display: none;
    }
    .wide-copy {
      display: contents;
    }
    .copy-balance .line,
    .section-head h2 .line {
      display: block;
    }
    .positioning {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
      gap: 22px;
      align-items: start;
    }
    .statement {
      border: 1px solid var(--border-strong);
      border-radius: var(--radius-xl);
      background: linear-gradient(140deg, rgba(16,24,40,0.86), rgba(15,23,42,0.42));
      padding: 32px var(--panel-pad);
      display: grid;
      align-content: start;
      overflow: hidden;
      position: relative;
    }
    .statement::after {
      content: "";
      position: absolute;
      right: -140px;
      bottom: -140px;
      width: 330px;
      height: 330px;
      border-radius: 50%;
      border: 1px solid rgba(0,188,212,0.22);
      box-shadow: inset 0 0 60px rgba(0,188,212,0.09);
    }
    .statement h2 {
      max-width: 800px;
    }
    .statement .section-kicker-highlight {
      margin-bottom: 22px;
    }
    .statement p {
      max-width: 720px;
      color: var(--text-soft);
      font-size: 1.12rem;
      margin: var(--title-copy-gap) 0 0;
    }
    .ops-card {
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(46,204,113,0.08), transparent 34%),
        radial-gradient(circle at 86% 18%, rgba(0,188,212,0.12), transparent 28%),
        rgba(255,255,255,0.035);
      padding: var(--panel-pad);
      display: grid;
      grid-template-rows: auto 1fr;
      gap: var(--component-gap);
      min-height: 352px;
      overflow: hidden;
      position: relative;
    }
    .ops-card::before {
      content: "";
      position: absolute;
      inset: 16px;
      border-radius: calc(var(--radius-xl) - 10px);
      background:
        linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.045) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(255,255,255,0.04) 50%, transparent 51%);
      opacity: 0.65;
      pointer-events: none;
    }
    .ops-card > strong {
      position: relative;
      z-index: 1;
      font-family: var(--font-display);
      font-size: 1.16rem;
      font-weight: 620;
      line-height: 1.32;
      max-width: 24ch;
    }
    .ops-list {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: 1fr;
      gap: var(--component-gap);
      color: var(--text-soft);
      margin: 0;
      padding: 0;
      list-style: none;
      align-self: stretch;
    }
    .ops-list li {
      display: grid;
      grid-template-rows: auto auto 1fr;
      gap: 8px;
      min-height: 0;
      align-content: start;
      padding: 15px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background:
        linear-gradient(145deg, rgba(255,255,255,0.045), rgba(5,8,22,0.34)),
        rgba(5,8,22,0.46);
      font-size: 0.88rem;
      line-height: 1.28;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }
    .ops-list li::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent-gradient);
      box-shadow: 0 0 18px rgba(46,204,113,0.25);
    }
    .pillar-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .system-grid {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 0;
      border: 1px solid var(--border-strong);
      border-radius: var(--radius-xl);
      background: rgba(5,8,22,0.5);
      overflow: hidden;
    }
    .system-card {
      position: relative;
      min-height: var(--timeline-min-height);
      padding: 20px 18px;
      border-right: 1px solid var(--border);
      display: grid;
      align-content: start;
      gap: 10px;
      background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
    }
    .system-card:last-child { border-right: 0; }
    .system-card:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -5px;
      width: 9px;
      height: 9px;
      border-top: 1px solid var(--secondary);
      border-right: 1px solid var(--secondary);
      background: #071020;
      transform: translateY(-50%) rotate(45deg);
      z-index: 1;
    }
    .system-card span,
    .segment-card span {
      color: var(--secondary);
      font: 0.7rem/1 var(--font-mono);
      letter-spacing: 0.13em;
    }
    .system-card strong {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 620;
      line-height: 1.1;
      min-height: 2.4em;
      display: block;
    }
    .system-card small {
      color: var(--text-muted);
      font-size: 0.78rem;
      line-height: 1.4;
    }
    .system-card-accent {
      background: linear-gradient(145deg, rgba(46,204,113,0.12), rgba(0,188,212,0.07));
    }
    .pillar-card,
    .solution-card,
    .diff-card {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: var(--card);
      padding: var(--card-pad);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
      transition: transform var(--transition-base), border-color var(--transition-base), background var(--transition-base);
    }
    .pillar-card:hover,
    .solution-card:hover,
    .diff-card:hover {
      transform: translateY(-4px);
      border-color: rgba(0,188,212,0.28);
      background: rgba(16,24,40,0.86);
    }
    .icon {
      width: 46px;
      height: 46px;
      border: 1px solid var(--border-strong);
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: var(--primary);
      background: rgba(46,204,113,0.07);
      margin-bottom: 34px;
    }
    .icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    h3 {
      font-size: 1.35rem;
      line-height: 1.12;
      font-weight: 620;
      margin-bottom: 12px;
      text-wrap: balance;
    }
    .card-copy {
      color: var(--text-muted);
      margin: 0;
      text-wrap: pretty;
    }
    .solution-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .segment-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }
    .segment-card {
      min-height: var(--card-min-height);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.045), rgba(5,8,22,0.3)),
        rgba(16,24,40,0.62);
      padding: var(--card-pad);
      display: grid;
      align-content: space-between;
      gap: var(--component-gap);
      transition: transform var(--transition-base), border-color var(--transition-base);
    }
    .segment-card:hover {
      transform: translateY(-4px);
      border-color: rgba(0,188,212,0.28);
    }
    .segment-card h3 { margin: auto 0 0; }
    .solution-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 18px;
      align-items: start;
      box-shadow: none;
      background: rgba(255,255,255,0.032);
    }
    .solution-card .icon {
      margin: 0;
      color: var(--secondary);
      background: rgba(0,188,212,0.07);
    }
    .flow-section {
      position: relative;
    }
    .flow-board {
      border: 1px solid var(--border-strong);
      border-radius: var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(16,24,40,0.74), rgba(5,8,22,0.5)),
        rgba(5,8,22,0.52);
      padding: 20px;
      overflow: hidden;
    }
    .flow-steps {
      display: grid;
      grid-template-columns: repeat(6, minmax(130px, 1fr));
      gap: 0;
      overflow-x: auto;
      padding-bottom: 4px;
      scrollbar-color: rgba(0,188,212,0.4) transparent;
    }
    .flow-card {
      min-height: var(--timeline-min-height);
      padding: 20px 18px;
      border-right: 1px solid var(--border);
      display: grid;
      align-content: start;
      gap: 10px;
      position: relative;
    }
    .flow-card:first-child {
      border-left: 1px solid var(--border);
      border-radius: 18px 0 0 18px;
      background: rgba(46,204,113,0.06);
    }
    .flow-card:last-child {
      border-radius: 0 18px 18px 0;
      background: rgba(0,188,212,0.05);
    }
    .flow-number {
      color: var(--text-muted);
      font: 0.72rem/1 var(--font-mono);
      letter-spacing: 0.13em;
    }
    .flow-card strong {
      font-family: var(--font-display);
      font-size: 1.18rem;
      min-height: 3.2em;
      display: block;
    }
    .flow-card span {
      color: var(--text-muted);
      font-size: 0.88rem;
    }
    .ops-list li strong {
      color: var(--text);
      font-family: var(--font-display);
      font-size: 0.92rem;
      font-weight: 620;
      line-height: 1.25;
    }
    .ops-list li span {
      color: var(--text-muted);
      font-size: 0.78rem;
      line-height: 1.45;
    }
    .stack-shell {
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
    }
    .stack-cue {
      display: none;
    }
    .stack-tabs {
      display: grid;
      gap: 10px;
    }
    .tab-button {
      width: 100%;
      min-height: 56px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: rgba(255,255,255,0.035);
      color: var(--text-soft);
      text-align: left;
      padding: 0 16px;
      cursor: pointer;
      transition: background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
    }
    .tab-button[aria-selected="true"] {
      color: var(--text);
      border-color: rgba(46,204,113,0.34);
      background: linear-gradient(135deg, rgba(46,204,113,0.12), rgba(0,188,212,0.08));
    }
    .stack-panel {
      display: none;
      min-height: 282px;
      border: 1px solid var(--border-strong);
      border-radius: var(--radius-xl);
      background: rgba(16,24,40,0.72);
      padding: var(--panel-pad);
    }
    .stack-panel.active {
      display: block;
    }
    .tool-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 24px;
    }
    .tool-pill {
      border: 1px solid var(--border);
      border-radius: 16px;
      background: rgba(255,255,255,0.035);
      padding: 16px;
      color: var(--text-soft);
    }
    .tool-pill strong {
      display: block;
      color: var(--text);
      margin-bottom: 4px;
    }
    .diff-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }
    .diff-card {
      min-height: var(--card-min-height);
      display: grid;
      align-content: space-between;
      box-shadow: none;
    }
    .diff-card span {
      color: var(--secondary);
      font: 0.74rem/1 var(--font-mono);
      letter-spacing: 0.13em;
    }
    .cta-band {
      padding-bottom: var(--space-9);
    }
    .cta-panel {
      width: min(820px, 100%);
      margin-inline: auto;
      border: 1px solid rgba(46,204,113,0.24);
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 18% 20%, rgba(46,204,113,0.16), transparent 28rem),
        radial-gradient(circle at 78% 50%, rgba(0,188,212,0.14), transparent 30rem),
        linear-gradient(135deg, rgba(16,24,40,0.88), rgba(5,8,22,0.86));
      padding: clamp(22px, 2.3vw, 28px);
      display: grid;
      grid-template-columns: 1fr;
      justify-content: center;
      justify-items: center;
      gap: clamp(16px, 1.8vw, 20px);
      align-items: center;
      box-shadow: var(--shadow-glow-green);
    }
    .cta-copy {
      display: grid;
      gap: 14px;
      width: 100%;
      max-width: 100%;
      text-align: center;
    }
    .cta-panel h2 {
      max-width: none;
      font-size: clamp(1.55rem, 2.15vw, 2.2rem);
      line-height: 1.1;
      white-space: normal;
      text-wrap: balance;
    }
    .cta-panel p {
      max-width: 100%;
      margin: 0;
      color: var(--text-soft);
      font-size: 1.02rem;
      text-wrap: balance;
      text-align: center;
    }
    .cta-panel .btn {
      justify-self: center;
    }
    .site-footer {
      border-top: 1px solid var(--border);
      padding: 28px 0 38px;
      color: var(--text-muted);
    }
    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      font-size: 0.92rem;
    }
    .contact-dialog {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: none;
      place-items: center;
      padding: 20px;
      background: rgba(1,4,12,0.72);
      backdrop-filter: blur(10px);
    }
    .contact-dialog.open {
      display: grid;
    }
    .dialog-panel {
      width: min(560px, 100%);
      border: 1px solid var(--border-strong);
      border-radius: 26px;
      background: #0b1120;
      box-shadow: 0 30px 80px rgba(0,0,0,0.42);
      padding: 26px;
    }
    .dialog-head {
      display: flex;
      justify-content: space-between;
      align-items: start;
      gap: 16px;
      margin-bottom: 20px;
    }
    .dialog-head h2 {
      font-size: 1.8rem;
    }
    .close-button {
      width: 42px;
      height: 42px;
      border: 1px solid var(--border);
      border-radius: 14px;
      color: var(--text);
      background: rgba(255,255,255,0.04);
      cursor: pointer;
    }
    .form-grid {
      display: grid;
      gap: 12px;
    }
    .field label {
      display: block;
      margin-bottom: 7px;
      color: var(--text-soft);
      font-size: 0.9rem;
    }
    .field input,
    .field textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: rgba(255,255,255,0.045);
      color: var(--text);
      min-height: 46px;
      padding: 12px 14px;
      outline: none;
      transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    }
    .field textarea {
      resize: vertical;
      min-height: 106px;
    }
    .field input:focus,
    .field textarea:focus {
      border-color: rgba(0,188,212,0.48);
      box-shadow: 0 0 0 4px rgba(0,188,212,0.1);
    }
    .field input.erro,
    .field textarea.erro,
    .field select.erro {
      border-color: rgba(248, 113, 113, 0.72);
      box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.10);
    }
    .phone-row {
      display: grid;
      grid-template-columns: 112px minmax(0, 1fr);
      gap: 10px;
    }
    .field select {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: rgba(255,255,255,0.045);
      color: var(--text);
      min-height: 46px;
      padding: 12px 14px;
      outline: none;
      transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    }
    .field select:focus {
      border-color: rgba(0,188,212,0.48);
      box-shadow: 0 0 0 4px rgba(0,188,212,0.1);
    }
    .form-status {
      min-height: 22px;
      font-size: 0.92rem;
    }
    .form-status.success { color: var(--primary); }
    .form-status.error { color: #fca5a5; }
    .btn[disabled] {
      cursor: wait;
      opacity: 0.72;
      transform: none;
    }
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    @media (max-width: 1020px) {
      .nav-links {
        position: absolute;
        inset: 72px 28px auto;
        display: none;
        grid-template-columns: 1fr;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: rgba(5,8,22,0.96);
      }
      .nav-links.open { display: grid; }
      .menu-button { display: block; }
      .nav-actions .btn { display: none; }
      .hero-grid,
      .section-head,
      .positioning,
      .stack-shell,
      .cta-panel {
        grid-template-columns: 1fr;
      }
      .hero-visual {
        min-height: 560px;
      }
      .pillar-grid,
      .diff-grid,
      .segment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .system-grid {
        grid-template-columns: repeat(7, 172px);
        overflow-x: auto;
        scrollbar-color: rgba(0,188,212,0.4) transparent;
      }
      .flow-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
        padding-bottom: 0;
      }
      .flow-card {
        min-width: 0;
        border-bottom: 1px solid var(--border);
      }
      .flow-card:nth-child(3) {
        border-right: 0;
        border-radius: 0 18px 0 0;
      }
      .flow-card:nth-child(4) {
        border-left: 1px solid var(--border);
        border-radius: 0 0 0 18px;
      }
      .flow-card:nth-child(n + 4) {
        border-bottom: 0;
      }
      .flow-card:last-child {
        border-right: 0;
        border-radius: 0 0 18px 0;
      }
      .flow-card strong {
        overflow-wrap: anywhere;
      }
      .cta-panel {
        align-items: start;
      }
      h3 {
        font-size: 1.22rem;
        line-height: 1.18;
      }
      .section-head h2 .line {
        display: inline;
      }
      .section-head h2 .line + .line::before {
        content: " ";
      }
    }
    @media (min-width: 721px) and (max-width: 1020px) {
      :root {
        --section-space: 72px;
        --section-head-gap: 14px;
        --section-content-gap: 26px;
        --panel-pad: 24px;
        --card-pad: 20px;
        --timeline-min-height: 150px;
        --card-min-height: 176px;
      }
      .eyebrow {
        align-items: flex-start;
        line-height: 1.45;
      }
      .tablet-break {
        display: block;
      }
      .section-head {
        gap: var(--section-head-gap);
        margin-bottom: var(--section-content-gap);
      }
      .section-head h2 {
        max-width: 22ch;
      }
      .section-lead {
        max-width: 46ch;
        line-height: 1.55;
      }
      .system-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow: visible;
      }
      .system-card {
        min-height: 154px;
        border-bottom: 1px solid var(--border);
      }
      .system-card:nth-child(4),
      .system-card:last-child {
        border-right: 0;
      }
      .system-card:nth-child(n + 5) {
        border-bottom: 0;
      }
      .system-card:last-child {
        grid-column: span 2;
      }
      .system-card:nth-child(4)::after {
        top: auto;
        right: auto;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%) rotate(135deg);
      }
      .statement p {
        max-width: 62ch;
        margin-top: var(--title-copy-gap);
        line-height: 1.65;
        text-wrap: pretty;
      }
      .statement {
        min-height: auto;
        padding-block: 28px;
      }
      .statement .section-kicker-highlight {
        margin-bottom: 20px;
      }
      #diferenciais .section-head h2 {
        max-width: 24ch;
      }
      #diferenciais .section-head h2 .line {
        display: block;
      }
      #diferenciais .section-head h2 .line + .line::before {
        content: none;
      }
    }
    @media (max-width: 720px) {
      :root {
        --section-space: 56px;
        --section-head-gap: 12px;
        --section-content-gap: 22px;
        --kicker-title-gap: 10px;
        --title-copy-gap: 16px;
        --panel-pad: 20px;
        --card-pad: 18px;
      }
      .container {
        width: min(100% - 56px, var(--container));
      }
      .hero {
        padding-top: 34px;
      }
      h1 {
        max-width: 16ch;
        font-size: clamp(1.78rem, 7.4vw, 2.32rem);
        line-height: 1.13;
      }
      h1 .nowrap {
        white-space: nowrap;
      }
      h2 {
        font-size: clamp(1.42rem, 5.8vw, 1.92rem);
        line-height: 1.16;
      }
      h3 {
        font-size: 1.18rem;
        line-height: 1.2;
      }
      .section-lead {
        max-width: 34ch;
        font-size: 0.98rem;
        line-height: 1.7;
      }
      .section-head {
        gap: var(--section-head-gap);
        margin-bottom: var(--section-content-gap);
      }
      .section-kicker {
        margin-bottom: var(--kicker-title-gap);
      }
      .copy-balance .line,
      .section-head h2 .line {
        display: inline;
      }
      .copy-balance .line + .line::before,
      .section-head h2 .line + .line::before {
        content: " ";
      }
      .copy-balance .wide-copy {
        display: none;
      }
      .copy-balance .mobile-copy {
        display: block;
      }
      .copy-balance .mobile-copy .line {
        display: block;
      }
      .copy-balance .mobile-copy .line + .line::before {
        content: none;
      }
      .hero-copy {
        margin-top: 18px;
        max-width: 31ch;
        font-size: 0.96rem;
        line-height: 1.66;
      }
      .hero-actions {
        margin-top: 24px;
        display: grid;
        justify-content: stretch;
        gap: 10px;
      }
      .hero-actions .btn {
        width: 100%;
        min-height: 40px;
        max-width: 100%;
        padding: 0 15px;
        font-size: 0.88rem;
      }
      .cta-panel {
        width: 100%;
      }
      .cta-copy {
        width: 100%;
      }
      .cta-panel h2 {
        font-size: clamp(1.16rem, 5.05vw, 1.38rem);
        line-height: 1.16;
        white-space: normal;
        text-wrap: balance;
      }
      .cta-panel p .line {
        display: inline;
      }
      .cta-panel p .line + .line::before {
        content: " ";
      }
      .hero-proof,
      .pillar-grid,
      .solution-grid,
      .diff-grid,
      .segment-grid,
      .tool-grid {
        grid-template-columns: 1fr;
      }
      .segment-card,
      .diff-card {
        min-height: auto;
        padding: 18px;
        gap: 10px;
        border-radius: 18px;
        background:
          linear-gradient(145deg, rgba(255,255,255,0.045), rgba(5,8,22,0.3)),
          rgba(16,24,40,0.62);
        box-shadow: none;
        align-content: start;
      }
      .segment-card span,
      .diff-card span {
        color: var(--secondary);
        font: 0.72rem/1 var(--font-mono);
        letter-spacing: 0.13em;
      }
      .segment-card h3,
      .diff-card h3 {
        margin: 2px 0 0;
      }
      .segment-card .card-copy,
      .diff-card .card-copy {
        margin-top: 2px;
      }
      .system-card {
        min-height: 164px;
        padding: 16px 14px;
      }
      .system-grid {
        grid-template-columns: 1fr;
        gap: 0;
        overflow: visible;
        padding: 14px;
        border-radius: 22px;
        background:
          linear-gradient(180deg, rgba(16,24,40,0.74), rgba(5,8,22,0.5)),
          rgba(5,8,22,0.52);
      }
      .system-card {
        min-height: 0;
        grid-template-columns: 34px minmax(0, 1fr);
        align-items: center;
        align-content: center;
        gap: 5px 12px;
        padding: 15px 14px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
        background: rgba(255,255,255,0.018);
      }
      .system-card:first-child {
        border-radius: 14px 14px 0 0;
        background: rgba(46,204,113,0.06);
      }
      .system-card:last-child {
        border-bottom: 0;
        border-radius: 0 0 14px 14px;
      }
      .system-card span {
        grid-row: 1 / span 2;
        align-self: center;
        color: var(--secondary);
        font: 0.72rem/1 var(--font-mono);
        letter-spacing: 0.13em;
        text-shadow: 0 0 14px rgba(0,188,212,0.28);
      }
      .system-card strong {
        font-size: 1rem;
        line-height: 1.15;
        min-height: 0;
      }
      .system-card small {
        font-size: 0.76rem;
        line-height: 1.35;
      }
      .system-card:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -5px;
        left: 28px;
        transform: rotate(135deg);
      }
      .system-card-accent {
        background: rgba(0,188,212,0.05);
      }
      .stack-shell {
        gap: 12px;
      }
      .stack-cue {
        display: block;
        margin: 0 0 6px;
        color: var(--text-muted);
        text-align: center;
        font-size: 0.72rem;
        line-height: 1.35;
      }
      .stack-tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;
        padding: 5px;
        border: 1px solid var(--border);
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
      }
      .tab-button {
        min-height: 38px;
        border-radius: 999px;
        border-color: transparent;
        background: transparent;
        padding: 0 5px;
        text-align: center;
        font-size: clamp(0.62rem, 2.45vw, 0.72rem);
        line-height: 1;
        white-space: nowrap;
        letter-spacing: 0;
      }
      .tab-button[aria-selected="true"] {
        color: var(--text);
        border-color: rgba(46,204,113,0.42);
        background:
          linear-gradient(135deg, rgba(46,204,113,0.16), rgba(0,188,212,0.13)),
          rgba(5,8,22,0.82);
        box-shadow:
          0 0 0 1px rgba(0,188,212,0.08),
          0 8px 22px rgba(0,0,0,0.2),
          var(--shadow-glow-green);
      }
      .tab-button[aria-selected="true"]::after {
        content: none;
      }
      .stack-panel {
        position: relative;
        min-height: auto;
        padding: 18px 16px;
        border-radius: 22px;
      }
      .stack-panel.active::before {
        content: "Stack selecionada";
        display: inline-flex;
        margin-bottom: 12px;
        color: var(--primary);
        font: 0.66rem/1 var(--font-mono);
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }
      .hero-visual {
        min-height: auto;
        border-radius: 24px;
        display: grid;
        gap: 14px;
        padding: 18px;
      }
      .hero-visual::before {
        background-size: 34px 34px;
        opacity: 0.34;
      }
      .logo-orbit,
      .dashboard-card {
        position: relative;
        inset: auto;
        z-index: 1;
      }
      .logo-orbit {
        top: auto;
        left: auto;
        right: auto;
        gap: 10px;
      }
      .dashboard-card {
        height: auto;
        padding: 18px;
        border-radius: 20px;
      }
      .dash-top {
        align-items: start;
      }
      .chart {
        height: 82px;
        gap: 5px;
        margin-top: 22px;
      }
      .flow-layer {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        z-index: 1;
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .pipeline {
        min-height: auto;
        padding: 16px;
        border-radius: 20px;
      }
      .pipeline-title {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
      }
      .pipeline-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }
      .pipeline-step {
        grid-template-columns: 16px 1fr;
        gap: 8px;
        min-height: 0;
        padding: 10px;
        border-radius: 13px;
        font-size: 0.78rem;
      }
      .node {
        width: 16px;
        height: 16px;
      }
      .node::after {
        inset: 5px;
      }
      section {
        padding: var(--section-space) 0;
      }
      .flow-steps {
        grid-template-columns: 1fr;
        gap: 0;
        overflow: visible;
        padding-bottom: 0;
      }
      .flow-board {
        padding: 14px;
        border-radius: 22px;
      }
      .flow-card {
        min-height: 0;
        grid-template-columns: 34px minmax(0, 1fr);
        align-items: center;
        align-content: center;
        gap: 5px 12px;
        padding: 15px 14px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
      }
      .flow-card:nth-child(3),
      .flow-card:nth-child(4) {
        border-left: 0;
        border-radius: 0;
      }
      .flow-card:nth-child(n + 4) {
        border-bottom: 1px solid var(--border);
      }
      .flow-card:first-child {
        border-left: 0;
        border-radius: 14px 14px 0 0;
      }
      .flow-card:last-child {
        border-bottom: 0;
        border-radius: 0 0 14px 14px;
      }
      .flow-card:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 28px;
        width: 9px;
        height: 9px;
        border-right: 1px solid var(--secondary);
        border-bottom: 1px solid var(--secondary);
        background: #071020;
        transform: rotate(45deg);
        z-index: 1;
      }
      .flow-number {
        grid-row: 1 / span 2;
        align-self: center;
        color: var(--secondary);
        font: 0.72rem/1 var(--font-mono);
        letter-spacing: 0.13em;
        text-shadow: 0 0 14px rgba(0,188,212,0.28);
      }
      .flow-card strong {
        font-size: 1rem;
        line-height: 1.15;
        min-height: 0;
      }
      .flow-card span:not(.flow-number) {
        font-size: 0.76rem;
        line-height: 1.4;
      }
      .ops-card {
        padding: var(--panel-pad);
        gap: 14px;
        min-height: auto;
        border-radius: 24px;
      }
      .ops-card::before {
        inset: 12px;
        opacity: 0.48;
      }
      .ops-card > strong {
        font-size: 1rem;
        line-height: 1.25;
        max-width: 20ch;
      }
      .ops-list {
        gap: 9px;
      }
      .ops-list li {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: start;
        gap: 5px 10px;
        min-height: 0;
        padding: 12px 13px;
        border-radius: 14px;
        font-size: 0.82rem;
        line-height: 1.25;
      }
      .ops-list li::before {
        grid-row: 1 / span 2;
        margin-top: 5px;
        flex: 0 0 auto;
        width: 7px;
        height: 7px;
        box-shadow: 0 0 14px rgba(46,204,113,0.22);
      }
      .ops-list li strong {
        font-size: 0.84rem;
      }
      .ops-list li span {
        font-size: 0.74rem;
        line-height: 1.4;
      }
      .statement {
        min-height: auto;
        padding: 26px 20px;
        align-content: start;
      }
      .statement .section-kicker-highlight {
        margin-bottom: 16px;
      }
      .statement p {
        margin-top: 18px;
        line-height: 1.65;
      }
      /* Canonical mobile component families.
         Keep equivalent content visually identical across sections. */
      .system-grid,
      .flow-board {
        padding: 14px;
        border: 1px solid var(--border-strong);
        border-radius: 22px;
        background:
          linear-gradient(180deg, rgba(16,24,40,0.74), rgba(5,8,22,0.5)),
          rgba(5,8,22,0.52);
        overflow: visible;
      }
      .flow-board {
        display: block;
      }
      .system-card,
      .flow-card {
        min-height: 88px;
        grid-template-columns: 34px minmax(0, 1fr);
        align-items: center;
        align-content: center;
        gap: 5px 12px;
        padding: 15px 14px;
        border: 0;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        background: rgba(255,255,255,0.018);
      }
      .system-card:first-child,
      .flow-card:first-child {
        border: 0;
        border-bottom: 1px solid var(--border);
        border-radius: 14px 14px 0 0;
        background: rgba(46,204,113,0.06);
      }
      .system-card:last-child,
      .flow-card:last-child {
        border: 0;
        border-radius: 0 0 14px 14px;
        background: rgba(0,188,212,0.05);
      }
      .system-card span,
      .flow-card .flow-number {
        grid-row: 1 / span 2;
        align-self: center;
        color: var(--secondary);
        font: 0.72rem/1 var(--font-mono);
        letter-spacing: 0.13em;
        text-shadow: 0 0 14px rgba(0,188,212,0.28);
      }
      .system-card strong,
      .flow-card strong {
        min-height: 0;
        color: var(--text);
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 620;
        line-height: 1.15;
      }
      .system-card small,
      .flow-card span:not(.flow-number) {
        color: var(--text-muted);
        font-family: var(--font-body);
        font-size: 0.76rem;
        line-height: 1.4;
      }
      .system-card:not(:last-child)::after,
      .flow-card:not(:last-child)::after {
        content: "";
        position: absolute;
        top: auto;
        right: auto;
        bottom: -5px;
        left: 28px;
        width: 9px;
        height: 9px;
        border: 0;
        border-right: 1px solid var(--secondary);
        border-bottom: 1px solid var(--secondary);
        background: #071020;
        transform: rotate(45deg);
        z-index: 1;
      }
      .segment-card,
      .diff-card {
        min-height: auto;
        padding: 18px;
        display: grid;
        align-content: start;
        gap: 10px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background:
          linear-gradient(145deg, rgba(255,255,255,0.045), rgba(5,8,22,0.3)),
          rgba(16,24,40,0.62);
        box-shadow: none;
      }
      .segment-card span,
      .diff-card span {
        color: var(--secondary);
        font: 0.72rem/1 var(--font-mono);
        letter-spacing: 0.13em;
      }
      .segment-card h3,
      .diff-card h3 {
        margin: 2px 0 0;
      }
      .segment-card .card-copy,
      .diff-card .card-copy {
        margin: 2px 0 0;
      }
      .segment-card:hover,
      .diff-card:hover {
        transform: none;
        border-color: var(--border);
      }
      .statement {
        display: grid;
        align-content: start;
        gap: 0;
        padding: 26px 20px;
      }
      .statement .section-kicker-highlight {
        margin: 0 0 16px;
      }
      .statement h2 {
        margin: 0;
      }
      .statement p {
        margin: 18px 0 0;
      }
      .contact-dialog {
        padding: 14px;
      }
      .dialog-panel {
        padding: 20px;
        border-radius: 22px;
      }
      .dialog-head {
        margin-bottom: 14px;
      }
      .dialog-head h2 {
        font-size: 1.38rem;
      }
      .form-grid {
        gap: 10px;
      }
      .field label {
        margin-bottom: 5px;
      }
      .field input,
      .field textarea,
      .field select {
        min-height: 42px;
        padding: 10px 12px;
        border-radius: 12px;
      }
      .field textarea {
        min-height: 76px;
      }
      .footer-row {
        flex-direction: column;
        align-items: flex-start;
      }
    }
    @media (max-width: 460px) {
      .container {
        width: min(100% - 56px, var(--container));
      }
      .nav {
        min-height: 66px;
      }
      .hero {
        padding-top: 34px;
      }
      h1 {
        max-width: 16ch;
        font-size: clamp(1.64rem, 7.1vw, 2.02rem);
        line-height: 1.14;
      }
      h2 {
        font-size: clamp(1.3rem, 5.7vw, 1.62rem);
        line-height: 1.14;
      }
      .cta-panel h2 {
        font-size: clamp(1.08rem, 4.7vw, 1.24rem);
        letter-spacing: -0.01em;
        white-space: normal;
      }
      .cta-panel p {
        font-size: 0.94rem;
        line-height: 1.58;
      }
      .eyebrow {
        font-size: 0.66rem;
        letter-spacing: 0.1em;
      }
      .brand-sub { display: none; }
      .hero-actions .btn {
        width: auto;
        max-width: calc(100vw - 72px);
        padding-inline: 14px;
      }
      .pipeline-steps {
        grid-template-columns: 1fr;
      }
      .ops-list {
        grid-template-columns: 1fr;
      }
      .ops-card {
        padding: var(--panel-pad);
        gap: 12px;
      }
      .ops-card > strong {
        font-size: 0.96rem;
      }
      .ops-list li {
        padding: 11px 12px;
        font-size: 0.8rem;
      }
      .proof-item {
        padding: 12px;
      }
      .logo-orbit {
        align-items: flex-start;
        flex-direction: column;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }
