:root {
  --navy-950: #061426;
  --navy-900: #08203b;
  --navy-800: #0d3157;
  --blue-700: #0a5b9f;
  --blue-500: #1683c4;
  --green-600: #4f7600;
  --green-500: #86b817;
  --green-200: #ddecad;
  --ink: #12253a;
  --muted: #5b6b7c;
  --line: #d8e2ea;
  --mist: #eef4f7;
  --paper: #ffffff;
  --cream: #f9fbfa;
  --orange: #ef8b39;
  --shadow-sm: 0 10px 30px rgba(6, 32, 59, 0.08);
  --shadow-lg: 0 28px 70px rgba(2, 18, 35, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy-950);
  padding: 10px 16px;
  font-weight: 800;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.eyebrow.on-dark {
  color: #b9de58;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6vw, 5.45rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.7;
}

.lead.on-dark,
.on-dark-copy {
  color: #bdcad7;
}

.top-note {
  background: var(--navy-950);
  color: #e9f0f5;
  font-size: 0.84rem;
}

.top-note .container {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}

.top-note p {
  margin: 0;
}

.top-note a {
  color: #c6e871;
  font-weight: 750;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(10, 42, 73, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(220px, 22vw, 290px);
  max-width: 100%;
  height: auto;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--navy-950);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  margin-inline: auto;
  border-radius: 9px;
  background: currentColor;
  content: "";
  transition: 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before {
  position: absolute;
  top: -6px;
}

.menu-lines::after {
  position: absolute;
  top: 6px;
}

.menu-button[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-nav a {
  border-radius: 999px;
  color: #31455a;
  padding: 9px 13px;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--mist);
  color: var(--navy-950);
}

.site-nav .nav-cta {
  margin-left: 5px;
  background: var(--navy-900);
  color: var(--paper);
  padding-inline: 18px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  background: var(--green-600);
  color: var(--paper);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(33, 136, 191, 0.17), transparent 32%),
    linear-gradient(135deg, var(--navy-950), #09294a 58%, #0d3d63);
  color: var(--paper);
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border: 80px solid rgba(134, 184, 23, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 710px;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: clamp(42px, 7vw, 96px);
  padding-block: 86px;
}

.hero h1,
.page-hero h1 {
  color: var(--paper);
}

.hero-copy .lead {
  max-width: 690px;
  margin-bottom: 30px;
}

.accent-line {
  color: #b8dc5e;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--green-500);
  color: var(--navy-950);
  box-shadow: 0 14px 32px rgba(109, 157, 9, 0.25);
}

.button-primary:hover {
  background: #a1ca39;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  background: var(--navy-900);
  color: var(--paper);
}

.button-dark:hover {
  background: var(--navy-800);
}

.button-outline {
  border-color: var(--navy-800);
  color: var(--navy-900);
}

.button-outline:hover {
  background: var(--mist);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link.on-dark {
  color: #dce9f1;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 28px 0 0;
  padding: 0;
  color: #c4d0db;
  font-size: 0.9rem;
  list-style: none;
}

.hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-notes li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  content: "";
}

.signal-visual {
  position: relative;
  margin: 0;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  min-height: 535px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 12%, rgba(134, 184, 23, 0.22), transparent 25%),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(145deg, #0b2a4b, #061728);
  background-size: auto, 38px 38px, 38px 38px, auto;
  padding: 25px;
  box-shadow: var(--shadow-lg);
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  color: #b9c9d6;
  padding-bottom: 18px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.console-location {
  border: 1px solid rgba(198, 232, 113, 0.36);
  border-radius: 999px;
  color: #c6e871;
  padding: 4px 9px;
}

.console-summary {
  margin-top: 43px;
}

.console-summary > span {
  display: block;
  margin-bottom: 11px;
  color: #8fa6b9;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-summary strong {
  display: block;
  max-width: 390px;
  color: var(--paper);
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.console-summary p {
  max-width: 370px;
  margin-top: 15px;
  color: #9fb2c2;
  font-size: 0.9rem;
}

.console-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.console-categories span {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: #d8e3ea;
  padding: 6px 10px;
  font-size: 0.74rem;
  font-weight: 700;
}

.signal-card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(4, 22, 41, 0.9);
  color: var(--paper);
  padding: 21px;
  backdrop-filter: blur(12px);
}

.signal-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.signal-card strong {
  font-size: 1.03rem;
}

.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: rgba(134, 184, 23, 0.16);
  color: #cef17c;
  padding: 5px 10px;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-tag::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a5d82d;
  box-shadow: 0 0 0 5px rgba(165, 216, 45, 0.14);
  content: "";
}

.signal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: grid;
  align-items: center;
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  color: #dce5ed;
  font-size: 0.87rem;
}

.signal-list li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  content: "";
}

.signal-list span:last-child {
  color: #9eb1c2;
  font-size: 0.76rem;
}

.section {
  padding-block: clamp(76px, 10vw, 126px);
}

.section-tight {
  padding-block: 48px;
}

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

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

.section-dark {
  background: var(--navy-950);
  color: var(--paper);
}

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

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 46px;
  margin-bottom: 50px;
}

.section-heading > * {
  margin-bottom: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.metric {
  background: var(--paper);
  padding: 34px clamp(22px, 4vw, 46px);
  text-align: center;
}

.metric strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-900);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.quote-panel {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 78px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  padding: clamp(32px, 6vw, 64px);
  box-shadow: var(--shadow-sm);
}

.quote-panel-copy h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.quote-panel-copy h3 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.quote-panel-copy .button-row {
  margin-top: 28px;
}

.quote-factor-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.quote-factor {
  min-height: 170px;
  background: #f8fbfc;
  padding: 26px;
}

.quote-factor::before {
  display: block;
  width: 30px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 99px;
  background: var(--green-500);
  content: "";
}

.quote-factor strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 0.9rem;
}

.quote-factor p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.compact-quote-panel {
  align-items: stretch;
}

.faq-block {
  margin-top: clamp(70px, 9vw, 110px);
}

.faq-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  padding: 0 22px;
}

.faq-item summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy-900);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.faq-item summary::after {
  color: var(--green-600);
  content: "+";
  font-size: 1.45rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: -2px 0 22px;
  color: var(--muted);
}

.faq-item a {
  color: var(--blue-700);
  font-weight: 750;
}

.faq-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.buyer-grid,
.source-grid,
.feature-grid {
  display: grid;
  gap: 20px;
}

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

.buyer-card,
.source-card,
.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 28px;
}

.buyer-card {
  min-height: 260px;
}

.buyer-card::before {
  display: block;
  width: 34px;
  height: 5px;
  margin-bottom: 40px;
  border-radius: 99px;
  background: var(--green-500);
  content: "";
}

.buyer-card p,
.source-card p,
.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.buyer-card .card-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-700);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.source-card {
  min-height: 210px;
  background: #0a213d;
  border-color: #1f4568;
}

.source-card h3 {
  color: var(--paper);
}

.source-card p {
  color: #aebdcc;
}

.source-number {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid #2d5d87;
  border-radius: 50%;
  color: #cbea75;
  font-size: 0.78rem;
  font-weight: 850;
}

.detail-layout,
.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 8vw, 110px);
}

.sticky-copy {
  position: sticky;
  top: 130px;
}

.check-list,
.plain-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  align-items: start;
  grid-template-columns: 27px 1fr;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 17px;
}

.check-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-200);
  color: #4b7100;
  content: "✓";
  font-size: 0.78rem;
  font-weight: 950;
}

.note {
  margin-top: 22px;
  border-left: 4px solid var(--green-500);
  background: #f3f8e9;
  color: #405161;
  padding: 16px 18px;
  font-size: 0.9rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  position: relative;
  min-height: 220px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 28px 20px 0 0;
}

.process-step::after {
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  content: "";
}

.process-step span {
  display: block;
  margin-bottom: 38px;
  color: #b9d970;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.process-step p {
  color: #afbfce;
}

.cta-band {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--navy-950), var(--navy-800));
  color: var(--paper);
  padding: clamp(40px, 7vw, 74px);
}

.cta-band-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
}

.cta-band h2 {
  max-width: 770px;
  margin-bottom: 16px;
  color: var(--paper);
}

.cta-band p {
  max-width: 660px;
  margin-bottom: 0;
  color: #bdcad7;
}

.cta-actions {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  background-size: 44px 44px, 44px 44px, auto;
  color: var(--paper);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding-block: clamp(80px, 12vw, 140px);
}

.page-hero h1 {
  max-width: 950px;
  font-size: clamp(2.6rem, 6vw, 5.1rem);
}

.page-hero .lead {
  margin-bottom: 0;
}

.product-stack {
  display: grid;
  gap: 22px;
}

.product-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-sm);
}

.product-card .product-label {
  display: inline-block;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #edf5dc;
  color: #507700;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.chip-list li {
  border: 1px solid #cbd9e4;
  border-radius: 999px;
  background: #f7fafb;
  color: #3d5266;
  padding: 5px 10px;
  font-size: 0.79rem;
  font-weight: 700;
}

.product-meta {
  display: grid;
  gap: 18px;
  align-content: start;
}

.meta-block {
  border-left: 2px solid var(--green-500);
  padding-left: 18px;
}

.meta-block strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-900);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.meta-block p {
  margin-bottom: 0;
}

.data-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
  vertical-align: top;
}

.data-table th {
  background: #edf3f6;
  color: var(--navy-900);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-table td {
  color: #43566a;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.availability {
  color: #4b7100;
  font-weight: 800;
}

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

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

.feature-card .feature-index {
  display: block;
  margin-bottom: 35px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.contact-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-sm);
}

.form-card#request-pricing {
  scroll-margin-top: 112px;
}

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

.section-actions {
  margin-top: 34px;
}

.content-page {
  display: grid;
  gap: 20px;
  max-width: 920px;
}

.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-sm);
}

.content-card h2 {
  margin-top: 34px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card li,
.content-card p {
  color: var(--muted);
}

.content-card a {
  color: var(--blue-700);
  font-weight: 750;
}

.contact-card h2,
.form-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.contact-item {
  border-top: 1px solid var(--line);
  padding-block: 20px;
}

.contact-item:first-of-type {
  margin-top: 25px;
}

.contact-item span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  color: var(--navy-900);
  font-size: 1.05rem;
  font-weight: 800;
}

.next-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  counter-reset: next;
  list-style: none;
}

.next-list li {
  display: grid;
  align-items: start;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  color: var(--muted);
  counter-increment: next;
}

.next-list li::before {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--mist);
  color: var(--blue-700);
  content: "0" counter(next);
  font-size: 0.76rem;
  font-weight: 900;
}

.enquiry-form {
  position: relative;
  display: grid;
  gap: 21px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.source-fieldset legend {
  color: #344a5f;
  font-size: 0.81rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.required {
  color: #ad3f2d;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #bdcdd9;
  border-radius: 12px;
  background: #fbfdfd;
  color: var(--ink);
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  min-height: 51px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(22, 131, 196, 0.1);
}

.field small,
.form-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.source-fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.source-fieldset legend {
  margin-bottom: 11px;
}

.check-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fbfdfd;
  padding: 11px 12px;
  color: #41566a;
  cursor: pointer;
}

.check-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--green-600);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.form-actions button {
  cursor: pointer;
}

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-status {
  margin: 0;
  color: #4b7100;
  font-size: 0.88rem;
  font-weight: 750;
}

.form-status:empty {
  display: none;
}

.form-status.is-pending {
  color: var(--navy-700);
}

.form-status.is-success {
  color: #4b7100;
}

.form-status.is-warning {
  color: #7a5100;
}

.form-status.is-error {
  color: #a1261f;
}

.site-footer {
  background: var(--navy-950);
  color: #aebdcc;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 0.8fr 0.8fr;
  gap: 60px;
  padding-block: 70px 52px;
}

.footer-brand .brand {
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--paper);
  padding: 8px 12px;
}

.footer-brand .brand-logo {
  width: min(280px, 100%);
}

.footer-brand p {
  max-width: 410px;
}

.footer-heading {
  margin-bottom: 18px;
  color: #dce6ed;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #b8c5d0;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #233a50;
  padding-block: 26px 38px;
  font-size: 0.78rem;
}

.footer-bottom p {
  max-width: 780px;
  margin: 0;
}

.footer-bottom a {
  color: #c6df87;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 46px;
  }

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

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

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

}

@media (max-width: 840px) {
  .top-note .container {
    justify-content: center;
    text-align: center;
  }

  .js .menu-button {
    display: grid;
    place-items: center;
  }

  .header-inner {
    position: relative;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    padding-bottom: 16px;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: -15px;
    left: -15px;
    width: auto;
    display: none;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 13px 20px 22px;
    box-shadow: 0 18px 30px rgba(6, 32, 59, 0.1);
  }

  .js .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .site-nav .nav-cta {
    margin: 5px 0 0;
    text-align: center;
  }

  .hero-grid,
  .section-heading,
  .detail-layout,
  .contact-layout,
  .cta-band-grid,
  .quote-panel,
  .product-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    padding-block: 72px;
  }

  .signal-visual {
    max-width: 610px;
  }

  .section-heading {
    gap: 14px;
  }

  .sticky-copy {
    position: static;
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .top-note {
    font-size: 0.76rem;
  }

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

  .brand-logo {
    width: 210px;
  }

  .hero-grid {
    padding-block: 58px 64px;
  }

  h1 {
    font-size: clamp(2.48rem, 13vw, 3.65rem);
  }

  .visual-frame {
    min-height: 455px;
    padding: 20px;
  }

  .console-summary {
    margin-top: 32px;
  }

  .console-summary p {
    max-width: 290px;
  }

  .signal-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 17px;
  }

  .metric-grid,
  .buyer-grid,
  .source-grid,
  .process-grid,
  .feature-grid,
  .quote-factor-grid,
  .faq-list,
  .form-row,
  .check-options,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    gap: 0;
  }

  .metric {
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .buyer-card,
  .source-card,
  .feature-card,
  .principle-card {
    min-height: 0;
  }

  .process-step {
    min-height: 0;
    padding-bottom: 24px;
  }

  .process-step span {
    margin-bottom: 20px;
  }

  .cta-band,
  .story-panel,
  .contact-card,
  .form-card {
    border-radius: 22px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

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

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