:root {
  --navy-950: #061224;
  --navy-900: #0b1f3b;
  --navy-800: #10294d;
  --blue-600: #235f94;
  --cyan-400: #00d4ff;
  --green-500: #28d17c;
  --green-600: #12b76a;
  --amber-400: #f7c948;
  --ink-900: #172231;
  --ink-700: #465164;
  --ink-600: #5e6878;
  --slate-300: #b8c3d6;
  --line: rgba(11, 31, 59, 0.12);
  --soft: #f4f6f8;
  --soft-blue: #eaf4fb;
  --white: #fff;
  --danger: #b42318;
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 12px 34px rgba(7, 22, 43, 0.08);
  --shadow: 0 24px 70px rgba(7, 22, 43, 0.16);
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  padding-bottom: calc(78px + env(safe-area-inset-bottom));
  color: var(--ink-900);
  background: var(--soft);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(0, 212, 255, 0.62);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 24px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-900);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: var(--white);
  background: rgba(6, 18, 36, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  font-weight: 900;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 11px;
}

.brand-copy {
  display: none;
  line-height: 1.05;
}

.brand-copy small {
  display: block;
  margin-top: 5px;
  color: var(--slate-300);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
}

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

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle::before {
  content: "☰";
  font-size: 20px;
}

.menu-toggle[aria-expanded="true"]::before {
  content: "×";
  font-size: 28px;
}

.mobile-menu {
  position: fixed;
  inset: 64px 0 auto;
  z-index: 79;
  display: none;
  padding: 12px 12px 20px;
  color: var(--white);
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: grid;
  gap: 4px;
}

.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  color: #eaf2ff;
  font-weight: 800;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  box-shadow: 0 16px 38px rgba(40, 209, 124, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(40, 209, 124, 0.34);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.17);
}

.btn-light {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  color: var(--navy-900);
  background: transparent;
  border-color: rgba(11, 31, 59, 0.2);
}

.btn-small {
  min-height: 42px;
  padding: 9px 13px;
  font-size: 13px;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 38px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 212, 255, 0.2), transparent 31%),
    radial-gradient(circle at 8% 15%, rgba(111, 134, 166, 0.26), transparent 29%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 54%, var(--navy-800));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 26px;
  align-items: center;
}

.eyebrow,
.kicker {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #cbeaff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10.5px;
  line-height: 1.35;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--green-500);
  box-shadow: 0 0 0 6px rgba(40, 209, 124, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 16px;
  font-size: clamp(33px, 10.3vw, 48px);
  line-height: 1.02;
  letter-spacing: -1.3px;
}

h2 {
  margin-bottom: 13px;
  color: var(--navy-900);
  font-size: clamp(28px, 8.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.8px;
}

h3 {
  margin-bottom: 9px;
  color: var(--navy-900);
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: -0.35px;
}

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 15px;
  color: #eaf2ff;
  font-size: 17px;
  line-height: 1.5;
}

.hero-support {
  max-width: 720px;
  margin-bottom: 22px;
  color: #c9d6e9;
  font-size: 14px;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin: 22px 0 13px;
}

.microcopy {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--slate-300);
  font-size: 12.5px;
  line-height: 1.45;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #eaf2ff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 800;
}

.hero-card,
.form-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-card h2,
.hero-card h3,
.form-card h2,
.form-card h3 {
  color: var(--white);
}

.hero-card h2,
.form-card h2 {
  font-size: 25px;
}

.hero-card > p,
.form-card > p {
  margin-bottom: 15px;
  color: #d7e2f5;
}

.operator-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 18px;
}

.operator-pill {
  min-height: 47px;
  display: grid;
  place-items: center;
  padding: 8px 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.operator-note {
  margin: 9px 0 0;
  color: var(--slate-300);
  font-size: 11px;
  line-height: 1.4;
}

.proof-strip {
  padding: 20px 0;
  color: var(--white);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-grid {
  display: grid;
  gap: 13px;
}

.proof-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: center;
}

.proof-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--green-500);
  background: rgba(40, 209, 124, 0.13);
  font-weight: 950;
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.proof-item span {
  display: block;
  color: var(--slate-300);
  font-size: 12px;
  line-height: 1.35;
}

section {
  padding: 50px 0;
  scroll-margin-top: 80px;
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: var(--soft);
}

.section-blue {
  background: var(--soft-blue);
}

.section-dark {
  color: var(--white);
  background: var(--navy-900);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-header {
  max-width: 810px;
  margin-bottom: 24px;
}

.section-header p {
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 16px;
}

.section-dark .section-header p,
.section-dark .card p {
  color: #d7e2f5;
}

.kicker {
  margin-bottom: 9px;
  color: var(--blue-600);
  font-size: 11px;
}

.section-dark .kicker {
  color: var(--cyan-400);
}

.grid-2,
.grid-3,
.grid-4,
.steps,
.paths,
.split,
.lead-layout {
  display: grid;
  gap: 16px;
}

.card,
.step,
.path-card,
.panel,
.faq details {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.card p,
.step p,
.path-card p,
.panel p,
.faq details p {
  margin-bottom: 0;
  color: var(--ink-600);
}

.card-icon,
.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 14px;
  color: var(--white);
  background: var(--navy-900);
  font-weight: 950;
}

.step-number {
  border-radius: 999px;
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section-dark .card-icon {
  color: var(--navy-950);
  background: var(--green-500);
}

.path-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 290px;
}

.path-card::before {
  content: "";
  position: absolute;
  right: -48px;
  top: -52px;
  width: 145px;
  height: 145px;
  border: 28px solid rgba(35, 95, 148, 0.07);
  border-radius: 999px;
}

.path-label {
  position: relative;
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy-900);
  background: var(--soft-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.path-card .btn {
  width: fit-content;
  margin-top: auto;
}

.comparison-list,
.checklist,
.cross-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-list {
  display: grid;
  gap: 10px;
}

.comparison-list li {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.comparison-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-900);
}

.comparison-list span {
  color: var(--ink-600);
  font-size: 14px;
}

.checklist {
  display: grid;
  gap: 10px;
}

.checklist li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 9px;
  align-items: start;
}

.checklist li::before {
  content: "✓";
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--green-500);
  font-size: 13px;
  font-weight: 950;
}

.cross-list {
  display: grid;
  gap: 10px;
}

.cross-list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 9px;
  color: var(--ink-600);
}

.cross-list li::before {
  content: "×";
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--danger);
  background: #fff1f0;
  font-weight: 950;
}

.metric-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  box-shadow: var(--shadow);
}

.metric-number {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(58px, 17vw, 90px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -4px;
}

.metric-panel p {
  margin-bottom: 0;
  color: #d7e2f5;
  font-size: 15px;
  font-weight: 750;
}

.quote-panel {
  padding: 21px;
  border-left: 5px solid var(--green-500);
  border-radius: var(--radius);
  color: var(--navy-900);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

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

.operator-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.operator-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-900);
  font-size: 20px;
}

.operator-card p {
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 14px;
}

.lead-layout {
  align-items: start;
}

.lead-copy {
  padding: 4px 0;
}

.lead-copy > p {
  color: var(--ink-600);
}

.lead-benefits {
  margin-top: 20px;
}

.notice {
  margin-top: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(247, 201, 72, 0.5);
  border-radius: var(--radius-sm);
  color: #6a4c00;
  background: #fff8e6;
  font-size: 12px;
  line-height: 1.5;
}

.lead-form {
  display: grid;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form h3 {
  margin-bottom: 0;
}

.form-intro {
  margin: -4px 0 2px;
  color: var(--ink-600);
  font-size: 13px;
}

.field-grid {
  display: grid;
  gap: 13px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 900;
}

.optional {
  color: var(--ink-600);
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid rgba(11, 31, 59, 0.18);
  border-radius: 12px;
  color: var(--ink-900);
  background: var(--white);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 86px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.14);
}

input[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  display: none;
  color: var(--danger);
  font-size: 11px;
  font-weight: 700;
}

.field-error.is-visible {
  display: block;
}

.privacy {
  margin-bottom: 0;
  color: #667085;
  font-size: 11px;
  line-height: 1.5;
}

.lead-form .btn {
  width: 100%;
}

.form-status {
  min-height: 18px;
  margin: -3px 0 0;
  color: var(--ink-600);
  font-size: 12px;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 15px;
  box-shadow: none;
}

.faq summary {
  position: relative;
  padding-right: 28px;
  color: var(--navy-900);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -4px;
  color: var(--blue-600);
  font-size: 23px;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin-top: 11px;
}

.final-cta {
  text-align: left;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 212, 255, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.final-cta h2 {
  max-width: 850px;
  color: var(--white);
}

.final-cta p {
  max-width: 730px;
  color: #d7e2f5;
}

.site-footer {
  padding: 32px 0;
  color: #d7e2f5;
  background: var(--navy-950);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 950;
}

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 11px;
}

.site-footer p {
  max-width: 720px;
  margin: 11px 0 0;
  color: #aab8cd;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 14px;
}

.footer-links a {
  min-height: 42px;
  display: flex;
  align-items: center;
  color: #eaf2ff;
  font-weight: 800;
}

.footer-legal {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8393ab;
  font-size: 11px;
}

.mobile-bottom-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: rgba(6, 18, 36, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -12px 34px rgba(7, 22, 43, 0.22);
  backdrop-filter: blur(12px);
}

.mobile-bottom-cta .btn {
  width: 100%;
  min-height: 50px;
  box-shadow: none;
}

.mobile-bottom-cta small {
  display: block;
  margin-top: 4px;
  color: #d7e2f5;
  text-align: center;
  font-size: 10px;
}

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

@supports (content-visibility: auto) {
  main > section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: 620px;
  }
}

@media (min-width: 560px) {
  .container {
    width: min(calc(100% - 40px), var(--max));
  }

  .brand-copy {
    display: block;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
  }

  .field-grid,
  .grid-2,
  .operator-section-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-logo {
    width: 68px;
    height: 68px;
    border-radius: 13px;
  }

  .mobile-menu {
    top: 76px;
  }

  .hero {
    padding: 72px 0 58px;
  }

  h1 {
    font-size: clamp(48px, 6.3vw, 72px);
    letter-spacing: -2.3px;
  }

  h2 {
    font-size: clamp(34px, 4vw, 49px);
    letter-spacing: -1.2px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-support {
    font-size: 16px;
  }

  .hero-card,
  .form-card,
  .lead-form {
    padding: 26px;
  }

  section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-header.center {
    margin-inline: auto;
    text-align: center;
  }

  .section-header p {
    font-size: 18px;
  }

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

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

  .paths,
  .split,
  .lead-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .lead-layout {
    gap: 32px;
    align-items: center;
  }

  .lead-layout {
    align-items: start;
  }

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

  .faq {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
  }

  .mobile-bottom-cta {
    display: none;
  }

  .final-cta {
    text-align: center;
  }

  .final-cta h2,
  .final-cta p {
    margin-inline: auto;
  }

  .final-cta .hero-actions {
    justify-content: center;
  }
}

@media (min-width: 980px) {
  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 17px;
    color: var(--slate-300);
    font-size: 13px;
    font-weight: 800;
  }

  .nav-links a:hover {
    color: var(--white);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
    gap: 48px;
  }

  .landing .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(390px, 1.02fr);
  }

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

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

  .path-card {
    min-height: 330px;
    padding: 28px;
  }

  .metric-panel {
    padding: 34px;
  }
}

@media (max-width: 390px) {
  .header-actions .btn {
    padding-inline: 11px;
    font-size: 12px;
  }

  h1 {
    font-size: 31px;
  }

  .operator-pill {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
