@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Latin-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --blue: #00afef;
  --blue-dark: #006f96;
  --green: #00a859;
  --coal: #201e1e;
  --ink: #201e1e;
  --gray-700: #4d4e50;
  --gray-500: #727376;
  --gray-300: #bdbfc1;
  --gray-200: #e2e4e5;
  --gray-100: #f4f6f7;
  --paper: #fff;
  --white: #fff;
  --line: rgba(32, 30, 30, 0.15);
  --line-dark: rgba(255, 255, 255, 0.2);
  --soft-blue: #e5f7fd;
  --soft-green: #e4f5ed;
  --radius: 0.7rem;
  --radius-lg: 1.15rem;
  --container: 92.5rem;
  --section: clamp(4.75rem, 8vw, 8.25rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--coal);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  background: var(--coal);
  color: var(--white);
  font-weight: 650;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 5rem), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 5rem), 56rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 5.1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  min-height: 5.1rem;
  grid-template-columns: 15rem 1fr auto;
  align-items: center;
  gap: 2.4rem;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand img {
  width: 13.75rem;
}

.site-nav {
  display: contents;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.35rem, 2.8vw, 3rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  padding: 0.45rem 0;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 520;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  content: "";
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.button,
.nav-cta {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  padding: 0.78rem 1.25rem;
  background: var(--blue);
  color: var(--coal);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.nav-cta {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.86rem;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  background: var(--green);
  color: var(--coal);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--coal);
}

.button-secondary:hover {
  border-color: var(--coal);
  background: var(--coal);
  color: var(--white);
}

.button-dark {
  border-color: var(--coal);
  background: var(--coal);
  color: var(--white);
}

.button-dark:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--coal);
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--coal);
  font-weight: 600;
  text-decoration: none;
}

.button-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.button-link:hover {
  color: var(--blue-dark);
}

.button-link:hover::after {
  transform: translateX(0.3rem);
}

.menu-button {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--coal);
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button span {
  position: relative;
}

.menu-button span::before {
  position: absolute;
  top: -0.38rem;
}

.menu-button span::after {
  position: absolute;
  top: 0.38rem;
}

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

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

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

.eyebrow,
.section-tag {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.25rem;
  color: var(--gray-500);
  font-size: 0.75rem;
  font-weight: 560;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  background: var(--green);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--coal);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.75rem;
  font-size: clamp(3rem, 4.7vw, 5.25rem);
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.15rem, 3.25vw, 3.75rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.3rem, 1.7vw, 1.7rem);
  font-weight: 600;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 48rem;
  color: var(--gray-700);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7.5vw, 7.4rem) 0 0;
  background-color: var(--coal);
  background-image: url("../images/topographic-lines-blue.png");
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 11%;
  width: 1px;
  height: 45%;
  background: var(--green);
  content: "";
  opacity: 0.75;
}

.hero::after {
  position: absolute;
  top: 18%;
  right: 0;
  width: 18%;
  height: 1px;
  background: var(--blue);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(19rem, 0.55fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 7.2rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.9rem);
}

.hero-copy {
  padding: 0;
}

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

.hero h1 {
  max-width: 58rem;
  margin-bottom: 0;
}

.hero .eyebrow {
  color: var(--gray-300);
}

.hero-summary {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0 0 0.65rem 1.7rem;
}

.hero-summary .lead {
  margin-bottom: 1.8rem;
  color: var(--gray-200);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.75rem;
}

.hero-summary .hero-actions {
  margin-top: 0;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.hero .button-secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--coal);
}

.hero-dashboard-stage {
  position: relative;
  z-index: 1;
  width: min(94rem, calc(100% - 2rem));
  margin-left: auto;
  padding: 1rem 0 0 1rem;
  background: var(--blue);
}

.product-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 0;
  border-radius: var(--radius) 0 0 0;
  background: #dfe6e7;
}

.product-frame img {
  width: 100%;
}

.visual-caption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  padding: 0.62rem 0.8rem;
  background: rgba(32, 30, 30, 0.93);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 540;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.visual-caption::before {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.55rem;
  background: var(--green);
  content: "";
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-inner {
  display: grid;
  min-height: 6rem;
  grid-template-columns: 3.2rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.trust-inner img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.trust-strip p {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 520;
}

.trust-code {
  color: var(--gray-500);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: var(--section) 0;
  border-bottom: 1px solid var(--line);
}

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

.section-dark {
  position: relative;
  overflow: hidden;
  background-color: var(--coal);
  background-image: url("../images/topographic-lines-blue.png");
  color: var(--white);
}

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

.section-dark .lead,
.section-dark p {
  color: var(--gray-300);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.55fr);
  align-items: end;
  gap: clamp(2.5rem, 7vw, 7rem);
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

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

.problem-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.55fr);
  gap: clamp(4rem, 9vw, 10rem);
}

.problem-intro p:last-child {
  max-width: 27rem;
  color: var(--gray-700);
}

.problem-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: issues;
}

.problem-list li {
  display: grid;
  min-height: 7.2rem;
  grid-template-columns: 4rem 1fr 1.5rem;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  counter-increment: issues;
  font-size: clamp(1.35rem, 2.15vw, 2.35rem);
  font-weight: 520;
  letter-spacing: -0.025em;
}

.problem-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.problem-list li::before {
  color: var(--blue-dark);
  content: "0" counter(issues);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.problem-list li::after {
  width: 0.7rem;
  height: 0.7rem;
  justify-self: end;
  border-top: 1px solid var(--coal);
  border-right: 1px solid var(--coal);
  content: "";
  transform: rotate(45deg);
}

.cards-3,
.cards-2 {
  display: grid;
  gap: 1rem;
}

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

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

.card,
.segment-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 3.5rem);
  background: var(--white);
}

.card p,
.segment-card p {
  margin-bottom: 0;
  color: var(--gray-700);
}

.card-index {
  display: block;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 560;
  letter-spacing: 0.13em;
}

.home .card-index {
  margin-bottom: clamp(2.5rem, 4vw, 3.75rem);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.card-accent {
  position: relative;
  overflow: hidden;
}

.card-accent::before {
  position: absolute;
  top: 0;
  left: var(--radius-lg);
  width: 30%;
  height: 3px;
  background: var(--blue);
  border-radius: 0 0 999px 999px;
  content: "";
}

.icon-mark {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  margin-bottom: 3.5rem;
  border: 1px solid rgba(0, 175, 239, 0.3);
  border-radius: 0.5rem;
  background: var(--soft-blue);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 650;
}

.flow-section {
  background-color: var(--coal);
}

.flow {
  --flow-number: clamp(4rem, 6vw, 5.25rem);
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 4rem;
}

.flow::before {
  position: absolute;
  top: calc(var(--flow-number) / 2);
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  content: "";
}

.flow-step {
  position: relative;
  padding-right: clamp(1rem, 2vw, 2rem);
}

.flow-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--flow-number);
  height: var(--flow-number);
  place-items: center;
  margin-bottom: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background: var(--coal);
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1;
}

.flow-step:nth-child(3) .flow-number,
.flow-step:nth-child(5) .flow-number {
  border-color: var(--green);
}

.flow-step:first-child .flow-number {
  border-color: var(--blue);
}

.flow-step h3 {
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.flow-step p {
  max-width: 13rem;
  margin: 0;
  color: var(--gray-300);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(22rem, 0.7fr);
  align-items: start;
  gap: clamp(3.5rem, 8vw, 7.5rem);
}

.split-media {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--gray-200);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 35rem;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.split-media::after {
  position: absolute;
  inset: 1.1rem;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 0.75rem;
  background: transparent;
  content: "";
  pointer-events: none;
}

.feature-list,
.check-list,
.capability-list {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li,
.capability-list li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 1.35rem 0 1.35rem 2.5rem;
}

.feature-list li:last-child,
.check-list li:last-child,
.capability-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list li::before,
.check-list li::before,
.capability-list li::before {
  position: absolute;
  top: 1.6rem;
  left: 0;
  width: 0.62rem;
  height: 0.62rem;
  border: 0;
  border-radius: 2px;
  background: var(--green);
  content: "";
}

.segment-card {
  position: relative;
  display: flex;
  min-height: 24rem;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  color: var(--coal);
}

.section-dark .segment-card h3 {
  color: var(--coal);
}

.segment-card:first-child {
  background: var(--paper);
}

.segment-card::after {
  position: absolute;
  right: 0;
  width: 0.35rem;
  height: 33%;
  background: var(--blue);
  border-radius: 999px 0 0 999px;
  content: "";
}

.segment-card:first-child::after {
  top: var(--radius-lg);
  background: var(--green);
}

.segment-card:last-child::after {
  bottom: var(--radius-lg);
}

.segment-label {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 560;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  align-items: end;
  gap: 3.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  background-color: var(--coal);
  background-image: url("../images/topographic-lines-blue.png");
  color: var(--white);
}

.cta-panel::after {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 25%;
  height: 1px;
  background: var(--green);
  content: "";
}

.cta-panel h2 {
  max-width: 60rem;
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.cta-panel p {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--gray-300);
}

.cta-panel .button-dark {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--coal);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(4rem, 7vw, 6.75rem);
  border-bottom: 1px solid var(--line);
  background-color: var(--gray-100);
  background-image: url("../images/topographic-lines-green.png");
}

.hero,
.section-dark,
.cta-panel,
.page-hero {
  background-position: center top;
  background-repeat: repeat;
  background-size: 24.6875rem auto;
}

.page-hero::after {
  position: absolute;
  top: 0;
  right: 10%;
  width: 1px;
  height: 42%;
  background: var(--green);
  content: "";
}

.page-hero h1 {
  max-width: 70rem;
}

.page-hero .lead {
  max-width: 53rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 2rem;
  color: var(--gray-500);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--blue-dark);
  text-decoration: none;
}

.breadcrumb span::before {
  margin-right: 0.45rem;
  content: "/";
}

.product-showcase {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.7rem 0 0 0.7rem;
  background: var(--blue);
}

.product-showcase img {
  width: 100%;
  border: 1px solid var(--line);
}

.note {
  border: 0;
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.4rem;
  background: var(--gray-100);
  color: var(--gray-700);
}

.contact-options {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 4.5vw, 4rem);
  background: var(--white);
}

.contact-card-primary {
  background: var(--blue);
}

.contact-card-primary .eyebrow {
  color: var(--coal);
}

.contact-detail {
  display: block;
  margin: 1rem 0 1.8rem;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 520;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.legal h2 {
  margin-top: 3.5rem;
  font-size: 2rem;
}

.legal h3 {
  margin-top: 2rem;
  font-size: 1.3rem;
}

.legal p,
.legal li {
  color: var(--gray-700);
}

.legal-status {
  margin-bottom: 2.5rem;
  border: 1px solid #c99e44;
  border-radius: 0;
  padding: 1rem 1.2rem;
  background: #fff7e4;
  color: #5c451b;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  padding: 4rem 0 1.8rem;
  background-color: var(--coal);
  color: var(--gray-300);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(2, 0.65fr);
  gap: 4rem;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 1.4rem;
}

.footer-logo img {
  width: 8.75rem;
}

.footer-brand p {
  max-width: 28rem;
  color: #9b9896;
}

.footer-title {
  margin-bottom: 1.1rem;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 560;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a,
.privacy-trigger {
  border: 0;
  padding: 0;
  background: transparent;
  color: #c5c2c0;
  cursor: pointer;
  text-decoration: none;
}

.footer-links a:hover,
.privacy-trigger:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  padding-top: 1.5rem;
  color: #8f8b89;
  font-size: 0.78rem;
}

.consent-banner {
  position: fixed;
  z-index: 500;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: none;
  width: min(calc(100% - 2rem), 56rem);
  margin-inline: auto;
  border: 1px solid #5d5957;
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(32, 30, 30, 0.97);
  color: var(--white);
}

.consent-banner.is-visible {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.consent-banner p {
  margin: 0;
  color: var(--gray-200);
  font-size: 0.88rem;
}

.consent-banner a {
  color: var(--white);
}

.consent-actions {
  display: flex;
  gap: 0.55rem;
}

.consent-actions button {
  min-height: 2.6rem;
  border: 1px solid #77716e;
  border-radius: var(--radius);
  padding: 0.55rem 0.85rem;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
}

.consent-actions .accept {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--coal);
}

.homolog-badge {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid #c99e44;
  border-radius: var(--radius);
  padding: 0.38rem 0.65rem;
  background: #fff7e4;
  color: #6a4b0b;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consent-banner.is-visible + .homolog-badge {
  display: none;
}

@media (max-width: 68rem) {
  .container,
  .narrow {
    width: min(calc(100% - 3rem), var(--container));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 5.1rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    background: var(--paper);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-links a {
    display: block;
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
    font-size: 1.05rem;
  }

  .nav-links a::after {
    display: none;
  }

  .hero-grid,
  .section-heading,
  .problem-layout,
  .split,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .hero-summary {
    max-width: 42rem;
  }

  .flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 0;
  }

  .flow::before {
    display: none;
  }

  .flow-step {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    padding-top: 1.5rem;
  }

  .flow-number {
    margin-top: -4rem;
  }

  .split-media,
  .split-media img {
    min-height: 30rem;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }

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

@media (max-width: 46rem) {
  :root {
    --section: 4.5rem;
  }

  body {
    font-size: 0.94rem;
  }

  .container,
  .narrow {
    width: min(calc(100% - 1.875rem), var(--container));
  }

  .site-header,
  .header-inner {
    min-height: 4.25rem;
  }

  .site-nav {
    top: 4.25rem;
  }

  .brand img {
    width: 13.75rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 3.55rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero {
    padding-top: 3.75rem;
  }

  .hero-grid {
    padding-bottom: 3.4rem;
  }

  .hero-summary {
    padding-left: 1.05rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-dashboard-stage {
    width: calc(100% - 0.55rem);
    padding: 0.5rem 0 0 0.5rem;
  }

  .product-frame img {
    width: auto;
    max-width: none;
    height: 15.5rem;
    object-fit: cover;
    object-position: left top;
  }

  .visual-caption {
    right: 0.55rem;
    bottom: 0.55rem;
    max-width: 15rem;
    font-size: 0.62rem;
  }

  .trust-inner {
    grid-template-columns: 3rem 1fr;
    gap: 0.9rem;
    padding: 1.2rem 0;
  }

  .trust-inner img {
    width: 3rem;
    height: 3rem;
  }

  .trust-code {
    display: none;
  }

  .problem-layout {
    gap: 2.25rem;
  }

  .problem-list li {
    min-height: 5.8rem;
    grid-template-columns: 2.25rem 1fr 0.8rem;
    gap: 0.75rem;
    font-size: 1.35rem;
  }

  .flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.5rem 0.75rem;
  }

  .flow-number {
    margin-top: -3.7rem;
  }

  .cards-3,
  .cards-2 {
    grid-template-columns: 1fr;
  }

  .card,
  .segment-card {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .card-index,
  .segment-label,
  .icon-mark {
    margin-bottom: 3rem;
  }

  .split-media,
  .split-media img {
    min-height: 25rem;
  }

  .split-media {
    order: -1;
  }

  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  .cta-panel .button {
    width: 100%;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .consent-banner.is-visible {
    grid-template-columns: 1fr;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

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

@media print {
  .site-header,
  .site-footer,
  .consent-banner,
  .homolog-badge {
    display: none !important;
  }
}
