@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/poppins-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/poppins-800-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --navy: #073d73;
  --navy-900: #06233f;
  --red: #d80621;
  --cyan: #05a8c7;
  --green: #38a873;
  --ink: #112033;
  --muted: #5a697a;
  --line: #dce4ec;
  --surface: #f7f9fb;
  --white: #ffffff;
  --page: #ffffff;
  --card: #ffffff;
  --soft: #f7f9fb;
  --text: #112033;
  --heading: #06233f;
  --header-bg: rgba(255, 255, 255, 0.86);
  --control-bg: rgba(255, 255, 255, 0.72);
  --control-hover: #eef6f8;
  --input-bg: #f7f9fb;
  --shadow: 0 24px 70px rgba(8, 31, 54, 0.16);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --muted: #a9bacb;
  --line: #24445f;
  --page: #071525;
  --card: #0d2238;
  --soft: #0a1d31;
  --text: #e5edf5;
  --heading: #f4f8fc;
  --header-bg: rgba(7, 21, 37, 0.88);
  --control-bg: rgba(255, 255, 255, 0.07);
  --control-hover: rgba(255, 255, 255, 0.13);
  --input-bg: #07182a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family:
    "Poppins", "Avenir Next", Avenir, "Century Gothic", "Segoe UI", sans-serif;
  background: var(--page);
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  height: 78px;
  padding: 0 clamp(20px, 4vw, 56px);
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--heading);
  background: var(--header-bg);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: auto;
}

.brand-logo-dark {
  display: none;
}

html[data-theme="dark"] .brand-logo-light {
  display: none;
}

html[data-theme="dark"] .brand-logo-dark {
  display: block;
}

.home-page .site-header:not(.is-scrolled):not(.is-open) .brand-logo-light {
  display: none;
}

.home-page .site-header:not(.is-scrolled):not(.is-open) .brand-logo-dark {
  display: block;
}

.brand .brand-logo {
  width: clamp(164px, 18vw, 235px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  margin-left: auto;
  margin-right: clamp(36px, 5vw, 72px);
  color: currentColor;
  font-size: 1rem;
  font-weight: 400;
}

.main-nav > a {
  position: relative;
  white-space: nowrap;
}

.main-nav > a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-login-mobile {
  display: none;
}

.main-nav-utility {
  display: none;
}

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

.header-utility {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.24);
}

.site-header.is-scrolled .header-divider,
.site-header.is-open .header-divider,
.content-page .site-header .header-divider {
  background: var(--line);
}

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

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 6px;
  font-size: 1rem;
  font-weight: 400;
}

.language-toggle button,
.language-toggle a {
  padding: 4px 5px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
}

.language-toggle button.is-active,
.language-toggle a.is-active {
  color: var(--white);
}

.site-header.is-scrolled .language-toggle button,
.site-header.is-scrolled .language-toggle a,
.site-header.is-open .language-toggle button,
.site-header.is-open .language-toggle a,
.content-page .site-header .language-toggle button,
.content-page .site-header .language-toggle a {
  color: var(--muted);
}

.site-header.is-scrolled .language-toggle button.is-active,
.site-header.is-scrolled .language-toggle a.is-active,
.site-header.is-open .language-toggle button.is-active,
.site-header.is-open .language-toggle a.is-active,
.content-page .site-header .language-toggle button.is-active,
.content-page .site-header .language-toggle a.is-active {
  color: var(--heading);
}

.nav-login {
  padding: 8px 4px;
  color: currentColor;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-login:hover,
.nav-login:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 10px 20px;
  color: var(--white);
  background: var(--red);
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(216, 6, 33, 0.28);
  transition: background 140ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #b8051c;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 6px;
}

.theme-toggle button {
  display: inline-grid;
  padding: 5px;
  place-items: center;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.theme-toggle button:hover,
.theme-toggle button:focus-visible {
  color: var(--white);
}

html[data-theme="light"] .theme-toggle [data-theme-option="light"],
html[data-theme="dark"] .theme-toggle [data-theme-option="dark"] {
  color: var(--white);
}

.site-header.is-scrolled .theme-toggle button,
.site-header.is-open .theme-toggle button,
.content-page .site-header .theme-toggle button {
  color: var(--muted);
}

.site-header.is-scrolled .theme-toggle button:hover,
.site-header.is-scrolled .theme-toggle button:focus-visible,
.site-header.is-open .theme-toggle button:hover,
.site-header.is-open .theme-toggle button:focus-visible,
.content-page .site-header .theme-toggle button:hover,
.content-page .site-header .theme-toggle button:focus-visible {
  color: var(--heading);
}

html[data-theme="light"] .site-header.is-scrolled .theme-toggle [data-theme-option="light"],
html[data-theme="light"] .site-header.is-open .theme-toggle [data-theme-option="light"],
html[data-theme="light"] .content-page .site-header .theme-toggle [data-theme-option="light"],
html[data-theme="dark"] .site-header.is-scrolled .theme-toggle [data-theme-option="dark"],
html[data-theme="dark"] .site-header.is-open .theme-toggle [data-theme-option="dark"],
html[data-theme="dark"] .content-page .site-header .theme-toggle [data-theme-option="dark"] {
  color: var(--heading);
}

.nav-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: currentColor;
  background: rgba(7, 21, 37, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(7, 21, 37, 0.58);
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  background: var(--control-bg);
  border-color: var(--line);
}

.site-header.is-scrolled .nav-toggle:hover,
.site-header.is-scrolled .nav-toggle:focus-visible,
.site-header.is-open .nav-toggle:hover,
.site-header.is-open .nav-toggle:focus-visible {
  background: var(--control-hover);
}

.theme-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 126px clamp(20px, 6vw, 82px) 54px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #081b2e;
}

.hero-picture,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  z-index: 0;
  display: block;
  overflow: hidden;
}

.hero-poster,
.hero-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 16, 30, 0.92) 0%, rgba(5, 16, 30, 0.72) 44%, rgba(5, 16, 30, 0.36) 100%),
    linear-gradient(0deg, rgba(4, 11, 20, 0.82), rgba(4, 11, 20, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5.8vw, 5.35rem);
  font-weight: 800;
  line-height: 1.01;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--heading);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--heading);
  font-size: 1.24rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.58;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(216, 6, 33, 0.28);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.button.secondary.dark {
  color: var(--heading);
  background: var(--card);
  border-color: var(--line);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(720px, 100%);
  margin: 48px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-metrics div {
  padding: 22px 22px 0 0;
}

.hero-metrics dt {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.section,
.process-section,
.contact-section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 64px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 38px;
}

.section-heading.narrow {
  width: min(700px, 100%);
}

.section-heading p:not(.eyebrow),
.package-card p,
.contact-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

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

.benefits-heading {
  width: min(820px, 100%);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(34px, 6vw, 80px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.benefit-number {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.6;
}

.benefit-list h3 {
  margin-bottom: 8px;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.solution-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-card,
.package-card {
  min-height: 100%;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.solution-card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 168, 199, 0.42);
  box-shadow: var(--shadow);
}

.solution-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.card-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--navy);
  font-weight: 800;
}

html[data-theme="dark"] .card-link {
  color: #6fd2e4;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--navy);
  background: #eef6f8;
  border-radius: 8px;
}

html[data-theme="dark"] .icon-box {
  color: #7de2f4;
  background: rgba(125, 226, 244, 0.12);
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.process-section {
  background: var(--navy-900);
}

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

.process-section .section-heading {
  width: min(860px, 100%);
}

.process-intro {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 1.04rem;
  line-height: 1.68 !important;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.process-list li {
  min-height: 238px;
  padding: 28px;
  background: #092c4f;
}

.process-list span {
  display: block;
  margin-bottom: 34px;
  color: #75d3e5;
  font-weight: 800;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.process-assurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.process-demo,
.process-security {
  padding: clamp(28px, 4vw, 46px) 0;
}

.process-demo {
  padding-right: clamp(28px, 5vw, 64px);
}

.process-security {
  padding-left: clamp(28px, 5vw, 64px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.process-kicker {
  margin-bottom: 12px;
  color: #75d3e5;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.process-assurance h3 {
  max-width: 520px;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.18;
}

.process-assurance p:not(.process-kicker) {
  max-width: 560px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.security-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  list-style: none;
}

.security-list li {
  position: relative;
  padding-left: 24px;
}

.security-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #75d3e5;
  border-radius: 50%;
  content: "";
}

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

.capture-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
  margin-bottom: clamp(44px, 6vw, 68px);
}

.capture-intro .section-heading {
  margin-bottom: 0;
}

.capture-intro .section-heading h2 {
  max-width: 560px;
  font-size: clamp(2.55rem, 4.3vw, 4.25rem);
}

.capture-copy {
  display: grid;
  gap: 20px;
}

.capture-copy > p:first-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.capture-facts {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capture-fact {
  padding: 18px 0;
}

.capture-fact span,
.capture-fact strong {
  display: block;
}

.capture-fact span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.capture-fact strong {
  color: var(--heading);
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.capture-copy .capture-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.capture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.capture-option {
  --capture-accent: #087d94;
  display: flex;
  min-height: 250px;
  padding: 26px;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--capture-accent);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.capture-option:nth-child(2) {
  --capture-accent: #388b73;
}

.capture-option:nth-child(3) {
  --capture-accent: #073d73;
}

.capture-option:nth-child(4) {
  --capture-accent: #d80621;
}

.capture-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.capture-option h3 {
  margin: 0 0 9px;
  color: var(--heading);
  font-size: 1.15rem;
  line-height: 1.35;
}

.capture-option p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.capture-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  flex: 0 0 54px;
  place-items: center;
  color: var(--capture-accent);
  background: #eaf7f9;
  border-radius: 8px;
}

html[data-theme="dark"] .capture-icon {
  color: #7de2f4;
  background: rgba(125, 226, 244, 0.11);
}

.capture-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.package-section {
  background: var(--page);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.faq-grid > * {
  min-width: 0;
}

.faq-grid .section-heading h2 {
  font-size: clamp(2.25rem, 3.2vw, 2.8rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

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

.faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(8, 31, 54, 0.06);
}

html[data-theme="dark"] .faq-list details {
  box-shadow: none;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--heading);
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.faq-list summary::marker {
  color: var(--red);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.62;
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-grid .section-heading {
    max-width: 760px;
  }
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-card h3 {
  font-size: 1.52rem;
}

.package-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.package-card.emphasized {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.package-card.emphasized h3,
.package-card.emphasized p {
  color: var(--white);
}

.package-label {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card.emphasized .package-label {
  color: #7de2f4;
}

.contact-section {
  color: var(--white);
  background: #071525;
}

.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 0.98fr);
  gap: clamp(34px, 8vw, 98px);
  align-items: center;
}

.contact-panel {
  min-width: 0;
  padding: clamp(24px, 3.5vw, 38px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.contact-section .contact-panel .contact-kicker {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form-intro {
  max-width: 48ch;
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.5;
}

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

.contact-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--white);
  background: rgba(2, 14, 27, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

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

.contact-phone-group {
  display: flex;
  min-width: 0;
  gap: 8px;
}

.contact-phone-group .contact-phone-code {
  flex: 0 0 104px;
  width: 104px;
  padding-left: 10px;
  padding-right: 4px;
}

.contact-phone-group input {
  flex: 1 1 0%;
  width: auto;
  min-width: 0;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #75d3e5;
  box-shadow: 0 0 0 3px rgba(117, 211, 229, 0.17);
}

.contact-field select option {
  color: #112033;
  background: #ffffff;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-privacy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.5;
}

.contact-privacy input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--red);
}

.contact-privacy input:focus-visible {
  outline: 3px solid rgba(117, 211, 229, 0.35);
  outline-offset: 3px;
}

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

.contact-submit-row {
  display: grid;
  gap: 10px;
}

.contact-submit-row .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-submit-row .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.contact-status {
  min-height: 0;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

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

.contact-turnstile {
  min-height: 0;
}

.contact-status.is-success {
  color: #8ce6c5;
}

.contact-status.is-error {
  color: #ff9aa6;
}

.contact-fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
}

.contact-email {
  display: inline-block;
  max-width: 100%;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
  transition: color 180ms ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: #75d3e5;
}

.site-footer {
  padding: 54px clamp(20px, 5vw, 64px) 30px;
  background: var(--page);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 2.2fr);
  gap: 42px clamp(36px, 6vw, 84px);
  align-items: start;
}

.footer-brand .brand-logo {
  width: 180px;
}

.footer-identity {
  display: grid;
  gap: 18px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(125px, 1fr));
  gap: 28px;
}

.footer-nav > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav strong {
  color: var(--heading);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-nav button {
  width: fit-content;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.88rem;
  text-align: left;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-nav button:hover,
.footer-nav button:focus-visible {
  color: var(--red);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
}

.consent-wall {
  position: fixed;
  z-index: 40;
  display: grid;
  inset: 0;
  place-items: center;
  padding: 20px;
  background: rgba(2, 12, 24, 0.78);
  backdrop-filter: blur(10px);
}

body.consent-wall-open {
  overflow: hidden;
}

.consent-banner {
  position: relative;
  display: grid;
  gap: 32px;
  width: min(950px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: clamp(34px, 5vw, 60px);
  color: #59647c;
  background: #ffffff;
  border: 1px solid #d9e0ea;
  border-top: 6px solid #35afc5;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(1, 12, 28, 0.34);
  outline: none;
}

.consent-favicon {
  position: absolute;
  top: clamp(20px, 3vw, 28px);
  right: clamp(20px, 3vw, 28px);
  width: 32px;
  height: 32px;
}

.consent-banner-copy {
  max-width: 760px;
}

.consent-kicker {
  margin: 0 0 14px;
  color: #087d94;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

html[data-theme="dark"] .consent-dialog .consent-kicker {
  color: var(--cyan);
}

.consent-banner h2,
.consent-dialog h2 {
  margin: 0 0 18px;
  line-height: 1.15;
}

.consent-banner h2 {
  color: #101f3a;
  font-size: clamp(2rem, 4vw, 3rem);
}

.consent-dialog h2 {
  font-size: 1.7rem;
}

.consent-banner-copy > p:last-child,
.consent-dialog-intro {
  margin: 0;
  line-height: 1.65;
}

.consent-banner-copy > p:last-child {
  max-width: 780px;
  color: #66708a;
  font-size: clamp(1rem, 1.8vw, 1.14rem);
}

.consent-dialog-intro {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.consent-action {
  min-height: 58px;
  padding: 13px 18px;
  color: #101f3a;
  background: #ffffff;
  border: 1px solid #cfd7e4;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.consent-action:hover,
.consent-action:focus-visible {
  background: #f1f5f9;
  border-color: #75839a;
}

.consent-action.is-primary {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.consent-action.is-primary:hover,
.consent-action.is-primary:focus-visible {
  background: #b8001a;
  border-color: #b8001a;
}

.consent-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
}

.consent-legal-links a,
.consent-legal-links button {
  padding: 0;
  color: #657089;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-legal-links a:hover,
.consent-legal-links a:focus-visible,
.consent-legal-links button:hover,
.consent-legal-links button:focus-visible {
  color: var(--red);
}

.consent-dialog-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.consent-dialog-actions .button {
  min-width: 190px;
}

.consent-backdrop {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 12, 24, 0.72);
  backdrop-filter: blur(8px);
}

body.consent-dialog-open {
  overflow: hidden;
}

.consent-dialog {
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
  padding: clamp(22px, 4vw, 34px);
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  outline: none;
}

.consent-dialog-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.consent-close {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  color: var(--heading);
  background: var(--control-bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
}

.consent-close:hover,
.consent-close:focus-visible {
  background: var(--control-hover);
}

.consent-dialog-intro {
  margin-top: 16px;
}

.consent-categories {
  margin: 26px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.consent-categories li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.consent-categories strong,
.consent-categories span {
  display: block;
}

.consent-categories strong {
  margin-bottom: 5px;
  color: var(--heading);
}

.consent-categories li > div > span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.consent-status {
  max-width: 160px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
}

.consent-status.is-active {
  color: var(--green);
}

.consent-switch {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 28px;
  flex: 0 0 auto;
  cursor: pointer;
}

.consent-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-switch-track {
  position: relative;
  width: 48px;
  height: 28px;
  background: #cbd3df;
  border-radius: 999px;
  transition: background 180ms ease;
}

.consent-switch-track::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(4, 17, 34, 0.24);
  content: "";
  transition: transform 180ms ease;
}

.consent-switch input:checked + .consent-switch-track {
  background: var(--red);
}

.consent-switch input:checked + .consent-switch-track::after {
  transform: translateX(20px);
}

.consent-switch input:focus-visible + .consent-switch-track {
  outline: 3px solid rgba(5, 168, 199, 0.28);
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .site-header {
    height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-utility {
    display: none;
  }

  .header-divider {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }

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

  .main-nav > a {
    padding: 14px;
  }

  .main-nav > a::after {
    display: none;
  }

  .main-nav-utility {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
    padding-top: 16px;
    padding-left: 3px;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 760px;
    padding-top: 124px;
    background: #081b2e;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 16, 30, 0.94), rgba(5, 16, 30, 0.68)),
      linear-gradient(0deg, rgba(4, 11, 20, 0.82), rgba(4, 11, 20, 0.08));
  }

  .hero-metrics,
  .solution-grid,
  .process-list,
  .process-assurance,
  .package-grid,
  .capture-intro,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    gap: 16px;
  }

  .hero-metrics div {
    padding-top: 18px;
  }

  .faq-grid,
  .contact-grid,
  .capture-intro {
    gap: 42px;
  }

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

  .process-demo {
    padding-right: 0;
  }

  .process-security {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

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

}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-actions {
    gap: 8px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-login {
    display: none;
  }

  .nav-login-mobile {
    display: block;
  }

  .nav-cta {
    min-width: 140px;
    padding: 8px 14px;
    font-size: 0.86rem;
  }

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

  .hero {
    min-height: 740px;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 3rem;
  }

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

  .button {
    width: 100%;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-field-wide {
    grid-column: auto;
  }

  .contact-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-metrics {
    margin-top: 34px;
  }

  .section,
  .process-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .solution-card,
  .package-card,
  .capture-option {
    padding: 22px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .benefit-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

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

  .capture-option {
    min-height: 220px;
  }

  .consent-banner {
    width: 100%;
    padding: 20px;
  }

  .consent-wall {
    padding: 12px;
  }

  .consent-actions {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

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

  .consent-dialog-actions .button {
    width: 100%;
  }

  .consent-backdrop {
    align-items: end;
    padding: 12px;
  }

  .consent-dialog {
    max-height: calc(100vh - 24px);
  }

  .consent-categories li {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .consent-status {
    max-width: none;
    text-align: left;
  }
}

@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;
  }
}

/* Statically generated knowledge and landing pages */
.content-page .site-header {
  color: var(--heading);
  background: var(--header-bg);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.content-page .site-header .brand-logo-light {
  display: block;
}

.content-page .site-header .brand-logo-dark {
  display: none;
}

html[data-theme="dark"] .content-page .site-header .brand-logo-light {
  display: none;
}

html[data-theme="dark"] .content-page .site-header .brand-logo-dark {
  display: block;
}

.content-hero {
  padding: clamp(136px, 14vw, 190px) 24px clamp(64px, 8vw, 104px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5, 24, 43, 0.98), rgba(7, 61, 115, 0.88)),
    url("/assets/siteviewer-hero-poster.webp") center / cover;
}

.content-hero-inner,
.content-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.content-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.content-hero .eyebrow {
  color: var(--cyan);
}

.content-summary {
  max-width: 850px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.breadcrumbs {
  margin-bottom: 34px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.content-shell {
  padding: clamp(64px, 9vw, 112px) 24px;
}

.article-body {
  max-width: 820px;
}

.article-body > p:first-child {
  color: var(--heading);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.article-body h2,
.content-faq h2,
.related-section h2,
.content-cta h2 {
  margin: clamp(52px, 7vw, 82px) 0 18px;
  color: var(--heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.14;
}

.article-body h3 {
  margin: 38px 0 12px;
  color: var(--heading);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
}

.article-body p,
.article-body li {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.8;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
}

.article-body a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

html[data-theme="dark"] .article-body a {
  color: #6fd2e4;
}

.article-body blockquote {
  margin: 36px 0;
  padding: 24px 28px;
  background: var(--soft);
  border-left: 4px solid var(--cyan);
  border-radius: 0 8px 8px 0;
}

.article-body blockquote p {
  margin: 0;
}

.article-figure {
  margin: 40px 0;
}

.article-figure img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.article-figure figcaption {
  max-width: 480px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.table-wrap {
  max-width: 100%;
  margin: 34px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

@media (min-width: 1120px) {
  .article-body .table-wrap {
    width: 1072px;
    max-width: 1072px;
  }
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.table-wrap th,
.table-wrap td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.table-wrap th {
  color: var(--heading);
  background: var(--soft);
}

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

.content-faq,
.related-section {
  max-width: 1072px;
  margin-top: clamp(72px, 10vw, 120px);
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.content-faq h2,
.related-section h2 {
  margin-top: 0;
}

.faq-group + .faq-group {
  margin-top: 42px;
}

.faq-group h3 {
  margin: 0 0 16px;
  color: var(--heading);
  font-size: 1.15rem;
}

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

.related-card {
  display: flex;
  min-height: 180px;
  padding: 24px;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(5, 168, 199, 0.52);
  box-shadow: var(--shadow);
}

.related-card strong {
  color: var(--heading);
  font-size: 1.08rem;
}

.related-card span {
  color: var(--muted);
  line-height: 1.6;
}

.content-cta {
  display: flex;
  max-width: 1072px;
  margin-top: clamp(72px, 10vw, 120px);
  padding: clamp(32px, 5vw, 54px);
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 10px;
}

.content-cta h2 {
  max-width: 670px;
  margin: 0 0 14px;
  color: var(--white);
}

.content-cta p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.content-cta .button {
  flex: 0 0 auto;
}

.content-contact {
  max-width: 1120px;
  margin: clamp(72px, 10vw, 120px) auto 0;
}

.content-contact .contact-panel {
  margin: 0;
  background: var(--card);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.content-contact .contact-form-intro {
  color: var(--muted);
}

.content-contact .contact-field {
  color: var(--heading);
}

.content-contact .contact-field input,
.content-contact .contact-field select,
.content-contact .contact-field textarea {
  color: var(--text);
  background: var(--input-bg);
  border-color: var(--line);
}

.content-contact .contact-field input:focus,
.content-contact .contact-field select:focus,
.content-contact .contact-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(5, 168, 199, 0.15);
}

.content-contact .contact-field select option {
  color: var(--text);
  background: var(--card);
}

.content-contact .contact-field input::placeholder,
.content-contact .contact-field textarea::placeholder {
  color: var(--muted);
}

.content-contact .contact-privacy {
  color: var(--text);
}

.content-contact .contact-fallback {
  color: var(--text);
  border-top-color: var(--line);
}

.content-contact .contact-email {
  color: var(--navy);
}

.content-contact .contact-email:hover,
.content-contact .contact-email:focus-visible {
  color: var(--cyan);
}

.content-contact .contact-status.is-success {
  color: var(--green);
}

.content-contact .contact-status.is-error {
  color: var(--red);
}

.content-contact .contact-panel .contact-kicker {
  color: var(--red);
}

html[data-theme="dark"] .content-contact .contact-email {
  color: var(--cyan);
}

html[data-theme="dark"] .content-contact .contact-email:hover,
html[data-theme="dark"] .content-contact .contact-email:focus-visible {
  color: var(--heading);
}

html[data-theme="dark"] .content-contact .contact-panel .contact-kicker {
  color: var(--red);
}

.content-page .consent-links,
.content-page .consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.content-page .consent-links {
  margin-top: 18px;
}

.content-page .consent-links button,
.content-page .consent-links a,
.content-page .consent-text-button {
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-page .consent-options {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.content-page .consent-option {
  display: flex;
  padding: 16px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-page .consent-option span {
  display: grid;
  gap: 4px;
}

.content-page .consent-option small {
  color: var(--muted);
  line-height: 1.45;
}

.content-page .consent-option em {
  color: var(--cyan);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 920px) {
  .content-page .main-nav {
    color: var(--heading);
  }

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

  .related-card {
    min-height: 0;
  }

  .content-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .content-hero,
  .content-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .content-hero h1 {
    font-size: 2.55rem;
  }

  .article-body p,
  .article-body li {
    font-size: 0.98rem;
  }
}
