:root {
  --navy-950: #06122d;
  --navy-900: #0b1e3d;
  --navy-800: #10294f;
  --orange-500: #ff8a1f;
  --orange-600: #f2760d;
  --paper: #f8f8f5;
  --surface: #eef1f5;
  --ink: #111827;
  --muted: #667085;
  --line: #d8dee8;
  --blue-line: #3d91ff;
  --green: #25d366;
  --success: #72d88f;
  --shadow-soft: 0 24px 70px rgba(6, 18, 45, 0.18);
  --shadow-panel: 0 28px 80px rgba(1, 9, 25, 0.42);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;
  --font-display: "Sora", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--orange-500);
  color: var(--navy-950);
  padding: 12px 16px;
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-8);
  width: min(100% - 48px, 1400px);
  padding: 6px 0;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  color: var(--paper);
  transition: padding 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  padding: 10px 18px;
  border-color: rgba(248, 248, 245, 0.16);
  background: rgba(6, 18, 45, 0.86);
  box-shadow: 0 22px 70px rgba(1, 9, 25, 0.34);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
}

.brand-logo img {
  display: block;
  width: auto;
  height: 54px;
  max-width: min(270px, 42vw);
  object-fit: contain;
  transition: height 180ms ease;
}

.site-header.is-scrolled .brand-logo img {
  height: 42px;
}

.footer-logo img {
  height: 58px;
  max-width: min(300px, 70vw);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3.4vw, 52px);
  font-size: 0.98rem;
  font-weight: 600;
}

.site-nav a,
.site-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-nav a,
.header-cta,
.btn,
.insight-card a,
.site-footer a,
.menu-toggle,
.faq-list summary {
  outline-offset: 4px;
}

.site-nav a:focus-visible,
.header-cta:focus-visible,
.btn:focus-visible,
.insight-card a:focus-visible,
.site-footer a:focus-visible,
.menu-toggle:focus-visible,
.faq-list summary:focus-visible {
  outline: 2px solid var(--orange-500);
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--orange-500);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  border: 1px solid rgba(248, 248, 245, 0.52);
  border-radius: var(--radius-sm);
  padding: 12px 18px 12px 20px;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta svg,
.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta:hover {
  border-color: var(--orange-500);
  background: rgba(255, 138, 31, 0.1);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 810px;
  padding: 150px 0 76px;
  background:
    radial-gradient(circle at 72% 20%, rgba(32, 96, 180, 0.28), transparent 31%),
    linear-gradient(135deg, #06122d 0%, #031029 48%, #071a38 100%);
  color: var(--paper);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background-image:
    linear-gradient(125deg, transparent 0 58%, rgba(61, 145, 255, 0.11) 58.1%, transparent 58.5%),
    linear-gradient(140deg, transparent 0 78%, rgba(255, 138, 31, 0.28) 78.1%, transparent 78.3%);
}

.hero::after {
  right: -90px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 138, 31, 0.48);
  border-radius: 50%;
  opacity: 0.56;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(61, 145, 255, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  left: 28%;
  bottom: -360px;
  width: 760px;
  height: 760px;
}

.orbit-two {
  left: 31%;
  bottom: -290px;
  width: 620px;
  height: 620px;
  opacity: 0.58;
}

.hero-grid,
.section-shell {
  width: min(100% - 48px, 1400px);
  margin: 0 auto;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(650px, 1.14fr);
  align-items: center;
  gap: clamp(48px, 5vw, 86px);
}

.hero-copy {
  max-width: 600px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  color: rgba(248, 248, 245, 0.94);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange-500);
}

.eyebrow.dark {
  color: var(--ink);
}

.hero h1,
.compact-head h2,
.split-heading h2,
.cases-grid h2,
.diagnostic-card h2,
.about-grid h2,
.faq-grid h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(3rem, 5.25vw, 5.45rem);
  line-height: 1.08;
}

.hero-lead {
  max-width: 585px;
  margin: 22px 0 0;
  color: rgba(248, 248, 245, 0.82);
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
  border: 1px solid var(--orange-500);
  background: linear-gradient(180deg, var(--orange-500), var(--orange-600));
  color: var(--paper);
  padding: 15px 28px;
  box-shadow: 0 18px 40px rgba(255, 138, 31, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 138, 31, 0.3);
}

.btn-link {
  position: relative;
  min-height: 44px;
  color: var(--paper);
  padding: 8px 2px;
}

.btn-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 28px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange-500);
}

.btn-link:hover {
  color: var(--orange-500);
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px 0 0;
  color: rgba(248, 248, 245, 0.88);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.trust-line svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--orange-500);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-line strong {
  color: var(--paper);
}

.executive-panel {
  position: relative;
  border: 1px solid rgba(248, 248, 245, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(8, 25, 53, 0.96), rgba(6, 18, 45, 0.88));
  box-shadow: var(--shadow-panel);
  padding: 18px;
}

.executive-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(61, 145, 255, 0.5), transparent 33%, rgba(255, 138, 31, 0.35));
  opacity: 0.5;
}

.panel-top,
.panel-bottom,
.metric-strip,
.flow-steps,
.chart-card > div {
  display: flex;
}

.panel-top {
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 16px;
}

.panel-top p,
.automation-flow > p,
.chart-card p {
  margin: 0;
  color: rgba(248, 248, 245, 0.92);
  font-size: 0.84rem;
  font-weight: 800;
}

.panel-top p {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.period-select,
.chart-period {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(248, 248, 245, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(11, 30, 61, 0.74);
  color: rgba(248, 248, 245, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 12px;
}

.metric-strip {
  gap: var(--space-4);
}

.metric-card {
  position: relative;
  min-height: 124px;
  flex: 1;
  overflow: hidden;
  border: 1px solid rgba(248, 248, 245, 0.16);
  border-radius: var(--radius-md);
  background: rgba(12, 34, 69, 0.58);
  padding: 18px;
}

.metric-card span,
.metric-card small {
  display: block;
  color: rgba(248, 248, 245, 0.82);
  font-size: 0.75rem;
  font-weight: 700;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
}

.metric-card small {
  margin-top: 12px;
  max-width: 112px;
  color: var(--success);
  font-size: 0.68rem;
}

.metric-card svg {
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 72px;
  height: 30px;
  opacity: 0.96;
}

.metric-card path,
.chart-line,
.chart-grid path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spark-orange {
  stroke: var(--orange-500);
  stroke-width: 3;
}

.spark-blue {
  stroke: var(--blue-line);
  stroke-width: 3;
}

.automation-flow {
  margin-top: var(--space-4);
  border: 1px solid rgba(248, 248, 245, 0.16);
  border-radius: var(--radius-md);
  background: rgba(5, 16, 36, 0.42);
  padding: 18px;
}

.flow-steps {
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.flow-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  min-width: 0;
  flex: 1;
  align-items: center;
  border: 1px solid rgba(248, 248, 245, 0.14);
  border-radius: var(--radius-md);
  background: rgba(17, 42, 78, 0.76);
  padding: 14px 12px;
  transition: transform 220ms cubic-bezier(0.25, 1, 0.5, 1), border-color 220ms cubic-bezier(0.25, 1, 0.5, 1);
}

.flow-step strong,
.flow-step small {
  display: block;
}

.flow-step strong {
  color: var(--paper);
  font-size: 0.82rem;
}

.flow-step small {
  color: rgba(248, 248, 245, 0.68);
  font-size: 0.72rem;
}

.flow-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #b8cfff;
}

.flow-icon i {
  font-size: 1.48rem;
  line-height: 1;
}

.flow-icon.whatsapp {
  color: var(--green);
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--blue-line);
  font-size: 1rem;
}

.panel-bottom {
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.chart-card,
.insight-card {
  border-radius: var(--radius-md);
  background: rgba(10, 27, 56, 0.66);
}

.chart-card {
  flex: 1.25;
  border: 1px solid rgba(248, 248, 245, 0.16);
  padding: 18px;
}

.chart-card > div {
  align-items: center;
  justify-content: space-between;
}

.chart-card svg {
  width: 100%;
  height: 150px;
  margin-top: 8px;
  overflow: visible;
}

.chart-card text {
  fill: rgba(248, 248, 245, 0.62);
  font-size: 13px;
}

.chart-grid path {
  stroke: rgba(248, 248, 245, 0.09);
  stroke-width: 1;
}

.chart-line {
  stroke: var(--blue-line);
  stroke-width: 4;
}

.insight-card {
  position: relative;
  flex: 0.85;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 31, 0.54);
  padding: 22px 120px 20px 22px;
}

.insight-card span {
  display: block;
  color: var(--orange-500);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card strong {
  display: block;
  max-width: 11ch;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1.12;
}

.insight-card p {
  max-width: 18ch;
  margin: 8px 0 0;
  color: rgba(248, 248, 245, 0.72);
  font-size: 0.84rem;
}

.insight-card a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  margin-top: 18px;
  color: var(--orange-500);
  font-size: 0.84rem;
  font-weight: 800;
}

.target {
  position: absolute;
  right: 24px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  transform: translateY(-50%);
  color: rgba(255, 138, 31, 0.88);
  font-size: 4.2rem;
}

.manual-section,
.how-section,
.cases-section,
.about-section,
.faq-section {
  padding: var(--space-24) 0;
}

.manual-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 35%, rgba(255, 138, 31, 0.12), transparent 28%),
    radial-gradient(circle at 76% 25%, rgba(11, 30, 61, 0.08) 1px, transparent 1.2px),
    var(--paper);
  background-size: auto, 18px 18px, auto;
}

.split-heading,
.compact-head,
.cases-grid,
.about-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.split-heading h2,
.compact-head h2,
.cases-grid h2,
.about-grid h2,
.faq-grid h2,
.diagnostic-card h2 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.06;
}

.split-heading > p,
.compact-head p,
.about-grid > p,
.diagnostic-copy p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.manual-list {
  display: grid;
  gap: 0;
  max-width: 1020px;
  margin-top: var(--space-8);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(248, 248, 245, 0.84);
  box-shadow: var(--shadow-soft);
}

.manual-row {
  display: grid;
  grid-template-columns: 180px minmax(240px, 0.42fr) minmax(280px, 1fr) 44px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
}

.manual-row:last-child {
  border-bottom: 0;
}

.row-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 180px;
  height: 94px;
  overflow: hidden;
  background: var(--navy-950);
}

.row-icon::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--orange-500);
}

.row-icon::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 0;
  width: 74px;
  height: 100%;
  background: var(--paper);
  transform: skewX(-15deg);
}

.row-icon.blue::before {
  background: var(--blue-line);
}

.row-icon svg {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--paper);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manual-row strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.manual-row p {
  margin: 0;
  color: var(--muted);
}

.manual-row > span {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--ink);
  font-size: 1.6rem;
}

.how-section {
  background: var(--surface);
}

.compact-head {
  align-items: end;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.process-line article {
  border-top: 2px solid var(--navy-950);
  padding-top: var(--space-6);
}

.process-line span {
  color: var(--orange-600);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
}

.process-line strong,
.case-list strong {
  display: block;
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.process-line p,
.case-list p,
.site-footer p,
.faq-list p {
  margin: var(--space-3) 0 0;
  color: var(--muted);
}

.cases-section,
.faq-section {
  background: var(--paper);
}

.case-list {
  display: grid;
  gap: var(--space-3);
}

.case-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(248, 248, 245, 0.78);
  padding: var(--space-6);
}

.diagnostic-section {
  padding: var(--space-16) 0;
  background: var(--surface);
}

.diagnostic-card {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  gap: var(--space-12);
  align-items: center;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.14), transparent 36%),
    var(--navy-950);
  color: var(--paper);
  padding: clamp(32px, 5vw, 64px);
  box-shadow: var(--shadow-panel);
}

.diagnostic-copy {
  display: grid;
  justify-items: start;
  gap: var(--space-8);
}

.diagnostic-copy p {
  color: rgba(248, 248, 245, 0.78);
}

.about-section {
  background: var(--paper);
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: var(--space-3);
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(248, 248, 245, 0.76);
  overflow: hidden;
  padding: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "";
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-block: 5px solid transparent;
  border-left: 8px solid var(--orange-600);
  transition: transform 180ms cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-list details[open] summary::before {
  transform: rotate(90deg);
}

.faq-list details p {
  max-width: 68ch;
  margin: 0;
  padding: 0 22px 20px 42px;
}

.site-footer {
  padding: var(--space-12) 0;
  background: var(--navy-950);
  color: var(--paper);
}

.footer-grid {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-8);
}

.site-footer p {
  max-width: 42ch;
  color: rgba(248, 248, 245, 0.7);
}

.site-footer nav {
  display: flex;
  gap: var(--space-6);
  color: rgba(248, 248, 245, 0.78);
  font-weight: 700;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .executive-panel {
    animation: rise-in 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .executive-panel {
    animation-delay: 60ms;
  }

  .reveal-target {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1), transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  .spark-orange,
  .spark-blue,
  .chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-line 620ms cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards;
  }

  .flow-step {
    animation: flow-pulse 2200ms cubic-bezier(0.25, 1, 0.5, 1) infinite;
    animation-delay: calc(var(--i, 0) * 120ms);
  }

  .target i {
    animation: target-pulse 1800ms cubic-bezier(0.25, 1, 0.5, 1) infinite;
  }

  .hero-orbit {
    animation: orbit-drift 14s linear infinite;
  }

  @keyframes rise-in {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes draw-line {
    to {
      stroke-dashoffset: 0;
    }
  }

  @keyframes flow-pulse {
    0%,
    100% {
      transform: translateY(0);
      border-color: rgba(248, 248, 245, 0.14);
    }
    45% {
      transform: translateY(-2px);
      border-color: rgba(61, 145, 255, 0.44);
    }
  }

  @keyframes target-pulse {
    0%,
    100% {
      transform: scale(1);
      opacity: 0.78;
    }
    50% {
      transform: scale(1.08);
      opacity: 1;
    }
  }

  @keyframes orbit-drift {
    to {
      transform: rotate(360deg);
    }
  }
}

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

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    gap: 6px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(248, 248, 245, 0.42);
    border-radius: var(--radius-sm);
    background: rgba(6, 18, 45, 0.32);
    padding: 13px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: var(--paper);
  }

  .site-header.nav-active .site-nav,
  .site-header.nav-active .header-cta {
    display: flex;
  }

  .site-header.nav-active {
    grid-template-columns: 1fr auto;
    align-items: start;
    border-radius: var(--radius-lg);
    padding: 16px;
    background: rgba(6, 18, 45, 0.98);
  }

  .site-header.nav-active .site-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    padding-top: var(--space-6);
  }

  .site-header.nav-active .header-cta {
    grid-column: 1 / -1;
    width: max-content;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 860px) {
  .site-header,
  .hero-grid,
  .section-shell {
    width: min(100% - 32px, 1400px);
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .metric-strip,
  .panel-bottom,
  .flow-steps,
  .footer-grid {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .insight-card {
    padding-right: 96px;
  }

  .split-heading,
  .compact-head,
  .cases-grid,
  .about-grid,
  .faq-grid,
  .diagnostic-card {
    grid-template-columns: 1fr;
  }

  .manual-row {
    grid-template-columns: 92px 1fr 44px;
    gap: var(--space-4);
    min-height: auto;
    padding-right: var(--space-4);
  }

  .manual-row p {
    grid-column: 2 / 3;
    padding-bottom: var(--space-4);
  }

  .row-icon {
    grid-row: span 2;
    width: 92px;
    height: 118px;
  }

  .row-icon::after {
    display: none;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    align-items: start;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .brand-logo img {
    height: 38px;
    max-width: 205px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 14vw, 3.4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-line {
    align-items: flex-start;
  }

  .executive-panel {
    padding: 12px;
  }

  .panel-top {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-3);
  }

  .automation-flow,
  .chart-card,
  .insight-card,
  .metric-card {
    padding: 14px;
  }

  .metric-card {
    min-height: 118px;
  }

  .metric-card small {
    max-width: 150px;
  }

  .metric-card svg {
    width: 86px;
  }

  .flow-step {
    width: min(100%, 230px);
    margin-inline: auto;
  }

  .btn-link {
    align-self: center;
    width: max-content;
  }

  .insight-card {
    padding-right: 86px;
  }

  .target {
    right: 16px;
    width: 58px;
    height: 58px;
    opacity: 0.38;
  }

  .manual-section,
  .how-section,
  .cases-section,
  .about-section,
  .faq-section {
    padding: var(--space-16) 0;
  }
}
