:root {
  --ink: #06130f;
  --panel: #0d211a;
  --panel-2: #123026;
  --line: rgba(234, 247, 241, 0.16);
  --text: #f2fbf6;
  --muted: #9bb8ad;
  --acid: #26c68a;
  --mint: #6ee7b7;
  --cyan: #38d6c2;
  --coral: #ff7a4f;
  --warning: #f2b84b;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --font: "Inter Tight", "Aptos Display", "Segoe UI", system-ui, -apple-system, sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #04110d 0%, #071b16 42%, #0c241d 100%);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, rgba(38,198,138,0.10), transparent 18%, transparent 82%, rgba(56,214,194,0.08));
  mix-blend-mode: screen;
  opacity: 0.45;
}

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

button,
input {
  font: inherit;
}

#signal-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 74px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(234, 247, 241, 0.14);
  background: rgba(5, 22, 17, 0.88);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(5, 22, 17, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(110, 231, 183, 0.38);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(38,198,138,0.24), rgba(110,231,183,0.08));
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--acid);
  stroke-width: 2;
}

.brand strong {
  display: block;
  font-size: 16px;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav-links a,
.ghost-link {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 13px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.ghost-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.button-acid {
  color: #04110d;
  background: linear-gradient(135deg, #26c68a, #6ee7b7 58%, #b7f7df);
  box-shadow: 0 0 0 1px rgba(110,231,183,0.16), 0 16px 46px rgba(38,198,138,0.20);
}

.button-dark {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.button-dark:hover {
  border-color: rgba(110,231,183,0.45);
  box-shadow: 0 16px 44px rgba(0,0,0,0.28);
}

.button.full {
  width: 100%;
}

main,
footer {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 128px 24px 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(4,17,13,0.74));
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.scan-grid {
  position: absolute;
  inset: -120px;
  opacity: 0.42;
  background:
    linear-gradient(rgba(38,198,138,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,214,194,0.10) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(800px) rotateX(58deg) translateY(120px);
  transform-origin: 50% 0%;
  animation: driftGrid 14s linear infinite;
}

.pulse-rail {
  position: absolute;
  left: 50%;
  width: 140vw;
  height: 1px;
  transform: translateX(-50%) rotate(-8deg);
  background: linear-gradient(90deg, transparent, rgba(110,231,183,0.9), transparent);
  opacity: 0.36;
}

.rail-one {
  top: 42%;
  animation: sweep 4.8s ease-in-out infinite;
}

.rail-two {
  top: 66%;
  transform: translateX(-50%) rotate(8deg);
  animation: sweep 5.8s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 8px 12px;
  border: 1px solid rgba(110,231,183,0.24);
  border-radius: 8px;
  color: var(--acid);
  background: rgba(38,198,138,0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #082119;
  border-color: rgba(8, 33, 25, 0.14);
  background: rgba(8, 33, 25, 0.06);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(41,247,194,0.12);
}

.hero h1 {
  max-width: 1060px;
  margin: 0 auto;
  color: #f7fffb;
  font-size: 84px;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 16px 60px rgba(0,0,0,0.72), 0 0 26px rgba(38,198,138,0.10);
}

.hero h1 span {
  display: block;
  color: transparent;
  font-size: 0.8em;
  line-height: 1;
  -webkit-text-stroke: 1.2px rgba(246,248,239,0.88);
  text-shadow: 0 0 28px rgba(110,231,183,0.18);
}

.mobile-break {
  display: none;
}

.hero-copy {
  width: min(760px, 100%);
  margin: 20px auto 0;
  color: #e7f5ee;
  font-size: 20px;
  line-height: 1.55;
  text-shadow: 0 8px 34px rgba(0,0,0,0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 30px auto 0;
}

.trust-strip span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 800;
}

.cockpit {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 24px));
  margin: 34px auto 0;
  border: 1px solid rgba(110,231,183,0.20);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(6,19,15,0.94), rgba(13,33,26,0.82));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.cockpit-top {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.cockpit-top strong {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cockpit-top small {
  color: var(--muted);
  font-size: 12px;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-dots span:nth-child(1) { background: var(--coral); }
.window-dots span:nth-child(2) { background: var(--warning); }
.window-dots span:nth-child(3) { background: var(--mint); }

.cockpit-body {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 380px;
}

.cockpit-sidebar {
  padding: 22px 14px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.cockpit-sidebar img {
  width: 126px;
  height: auto;
  margin: 0 0 26px 4px;
  filter: drop-shadow(0 0 18px rgba(110,231,183,0.16));
}

.cockpit-sidebar button {
  display: block;
  width: 100%;
  height: 38px;
  margin-bottom: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  font-weight: 800;
}

.cockpit-sidebar button.active {
  color: #04110d;
  background: var(--acid);
}

.pipeline {
  padding: 22px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.kpi-grid article,
.flow-node,
.queue-table,
.pilot-console,
.pain-card,
.feature-card,
.plan-card,
.final-panel,
.timeline article,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.kpi-grid article {
  padding: 18px;
}

.kpi-grid small,
.kpi-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.kpi-grid strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--acid);
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
}

.flow-map {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.2fr 1.1fr 1fr;
  align-items: center;
  margin: 22px 0;
}

.flow-node {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  background: rgba(0, 0, 0, 0.18);
}

.flow-node b {
  font-size: 18px;
  letter-spacing: 0.04em;
}

.flow-node small {
  color: var(--muted);
  font-size: 12px;
}

.center-node {
  border-color: rgba(110,231,183,0.45);
  box-shadow: 0 0 40px rgba(38,198,138,0.14);
}

.dominio-node img {
  width: 112px;
  height: auto;
}

.flow-line {
  position: relative;
  height: 2px;
  background: rgba(38,198,138,0.20);
  overflow: hidden;
}

.flow-line i {
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  animation: dataFlow 1.8s linear infinite;
}

.queue-table {
  overflow: hidden;
}

.queue-table > div {
  display: grid;
  grid-template-columns: 1fr 110px 120px;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.queue-table > div:last-child {
  border-bottom: 0;
}

.queue-head {
  color: var(--muted);
  background: rgba(38,198,138,0.08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.queue-table b {
  color: var(--acid);
}

.queue-table em {
  color: var(--mint);
  font-style: normal;
  font-weight: 800;
}

section {
  padding: 84px 24px;
}

.pain-section,
.pilot,
.faq {
  color: #082119;
  background:
    linear-gradient(135deg, rgba(234,247,241,0.98), rgba(201,244,225,0.96) 48%, rgba(151,232,204,0.92));
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.pilot-copy h2,
.final-panel h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.pilot-copy p,
.final-panel p {
  color: currentColor;
  opacity: 0.72;
  font-size: 17px;
  line-height: 1.55;
}

.pain-grid,
.feature-rail,
.plan-grid,
.timeline {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 16px;
}

.pain-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pain-card {
  min-height: 210px;
  padding: 24px;
  color: #082119;
  border-color: rgba(8,33,25,0.14);
  background: rgba(255,255,255,0.34);
}

.pain-card span {
  display: inline-flex;
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.2em;
}

.pain-card h3,
.feature-card h3,
.plan-card h3,
.timeline h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0;
}

.pain-card p,
.feature-card p,
.timeline p,
.plan-card li,
.faq p {
  color: inherit;
  opacity: 0.74;
  line-height: 1.55;
}

.differentials,
.plans,
.final-cta {
  background:
    linear-gradient(180deg, rgba(4,17,13,0.88), rgba(8,30,23,0.96)),
    repeating-linear-gradient(90deg, rgba(38,198,138,0.055) 0 1px, transparent 1px 120px);
}

.comparison {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  width: min(1080px, 100%);
  margin: 0 auto 18px;
}

.compare-col {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}

.compare-col.highlight {
  color: #04110d;
  border-color: transparent;
  background: linear-gradient(135deg, #6ee7b7, #eaf7f1 58%, #26c68a);
}

.compare-col > span {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.compare-col ul,
.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-col li,
.plan-card li {
  position: relative;
  padding-left: 22px;
}

.compare-col li::before,
.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}

.feature-rail {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.feature-card {
  min-height: 230px;
  padding: 22px;
}

.feature-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 38px;
  fill: none;
  stroke: var(--acid);
  stroke-width: 1.8;
}

.feature-card p {
  color: var(--muted);
}

.pilot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 36px;
  align-items: center;
}

.pilot-copy {
  justify-self: end;
  width: min(620px, 100%);
}

.pilot-console {
  padding: 24px;
  color: var(--text);
  border-color: rgba(8,33,25,0.22);
  background: #06130f;
  box-shadow: 0 24px 70px rgba(5,22,17,0.28);
}

.console-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.console-header span,
.pilot-console label,
.calc-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pilot-console input[type="range"] {
  width: 100%;
  margin: 18px 0 20px;
  accent-color: var(--acid);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.calc-grid div {
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}

.calc-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.calc-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--acid);
  font-size: 18px;
}

.calc-note {
  margin: 18px 0;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

.launch-plan {
  background: #f4fbf7;
  color: #082119;
}

.timeline {
  grid-template-columns: repeat(4, 1fr);
}

.timeline article {
  min-height: 200px;
  padding: 22px;
  border-color: rgba(8,33,25,0.13);
  background: #ffffff;
}

.timeline span {
  display: block;
  margin-bottom: 34px;
  color: #4c7565;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plans .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.plan-grid {
  grid-template-columns: repeat(3, 1fr);
}

.plan-card {
  position: relative;
  min-height: 390px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
}

.plan-card.featured {
  color: #04110d;
  border-color: rgba(110,231,183,0.88);
  background: linear-gradient(135deg, #74e9bb, #eaf7f1 54%, #2fd093);
  box-shadow: 0 22px 70px rgba(38,198,138,0.22), inset 0 0 0 1px rgba(255,255,255,0.42);
  transform: translateY(-6px);
}

.plan-badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 9px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin: 0 0 24px;
  font-size: 42px;
  font-weight: 950;
  letter-spacing: 0;
}

.price small {
  font-size: 15px;
  letter-spacing: 0;
}

.faq {
  background: #eaf7f1;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.faq details {
  border-color: rgba(8,33,25,0.15);
  background: rgba(255,255,255,0.48);
}

.faq summary {
  padding: 18px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  padding-top: 96px;
  padding-bottom: 96px;
}

.final-panel {
  width: min(840px, 100%);
  margin: 0 auto;
  padding: 38px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(38,198,138,0.11)),
    #071b16;
}

.final-panel p:not(.eyebrow) {
  color: var(--muted);
}

.final-panel .button {
  margin-top: 14px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 28px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #04110d;
  font-size: 13px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes driftGrid {
  to { background-position: 0 72px, 72px 0; }
}

@keyframes sweep {
  0%, 100% { opacity: 0.12; filter: blur(0); }
  50% { opacity: 0.5; filter: blur(1px); }
}

@keyframes dataFlow {
  from { transform: translateX(-110%); }
  to { transform: translateX(260%); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .hero h1 {
    font-size: 60px;
  }

  .section-heading h2,
  .pilot-copy h2,
  .final-panel h2 {
    font-size: 42px;
  }

  .nav-links {
    display: none;
  }

  .cockpit-body,
  .pilot,
  .comparison {
    grid-template-columns: 1fr;
  }

  .cockpit-sidebar {
    display: none;
  }

  .pain-grid,
  .feature-rail,
  .plan-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .pilot-copy {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 0;
    width: 100%;
    height: auto;
    min-height: 70px;
    gap: 10px;
    padding: 8px 12px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 10px;
  }

  .ghost-link {
    display: none;
  }

  .button-primary {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    width: 100vw;
    padding: 106px 14px 34px;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .hero h1 {
    max-width: 340px;
    margin-left: 0;
    margin-right: 0;
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0;
    overflow-wrap: normal;
    text-wrap: balance;
    text-align: left;
  }

  .hero h1 span {
    font-size: 0.88em;
    -webkit-text-stroke-width: 1px;
  }

  .mobile-break {
    display: block;
  }

  .hero-copy {
    width: min(320px, calc(100vw - 28px));
    margin-left: 0;
    margin-right: 0;
    font-size: 14px;
    line-height: 1.48;
    overflow-wrap: break-word;
    text-align: left;
  }

  .section-heading h2,
  .pilot-copy h2,
  .final-panel h2 {
    font-size: 30px;
    line-height: 1.02;
  }

  .kpi-grid strong {
    font-size: 32px;
  }

  .eyebrow {
    max-width: 340px;
    padding: 7px 9px;
    font-size: 10px;
    line-height: 1.25;
    text-align: left;
  }

  .trust-strip {
    justify-content: flex-start;
    max-width: 340px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .cockpit {
    width: 100%;
    max-width: calc(100vw - 28px);
    margin-top: 34px;
  }

  .cockpit-top {
    grid-template-columns: 80px 1fr;
  }

  .cockpit-top small {
    display: none;
  }

  .pipeline {
    padding: 14px;
  }

  .kpi-grid,
  .flow-map,
  .pain-grid,
  .feature-rail,
  .plan-grid,
  .timeline,
  .calc-grid {
    grid-template-columns: 1fr;
  }

  .flow-map {
    gap: 10px;
  }

  .flow-line {
    height: 38px;
    width: 2px;
    margin: 0 auto;
  }

  .flow-line i {
    width: 100%;
    height: 42%;
    animation-name: dataFlowVertical;
  }

  .queue-table > div {
    grid-template-columns: 1fr 74px 92px;
    font-size: 12px;
  }

  section {
    padding: 64px 16px;
  }

  .final-panel {
    padding: 28px 18px;
  }

  .plan-card.featured {
    transform: none;
  }
}

@keyframes dataFlowVertical {
  from { transform: translateY(-120%); }
  to { transform: translateY(260%); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
