/* QRINTEX bundled stylesheet */

/* QRINTEX Design Tokens — Deep Navy / Electric Blue */
:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* QRINTEX Brand Palette — extracted from pitch deck */
  --color-bg: #05080f;
  --color-bg-2: #070c16;
  --color-surface: #0a0f1e;
  --color-surface-2: #0d1428;
  --color-surface-card: #0f1630;
  --color-surface-elevated: #131b38;
  --color-border: #1a2444;
  --color-border-subtle: #111830;
  --color-divider: #162038;

  /* Text */
  --color-text: #e8ecf4;
  --color-text-muted: #8a96b0;
  --color-text-faint: #6f7f9d;
  --color-text-inverse: #05080f;

  /* Primary accent — electric blue from deck */
  --color-primary: #1d64e8;
  --color-primary-bright: #7fb0ff;
  --color-primary-hover: #185bd6;
  --color-primary-active: #1248b0;
  --color-primary-glow: rgba(36, 120, 255, 0.15);
  --color-primary-glow-strong: rgba(36, 120, 255, 0.3);
  --color-link: #9fc4ff;
  --color-link-hover: #c7dcff;

  /* Secondary — deep cyan */
  --color-secondary: #00c8e8;
  --color-secondary-hover: #00a8c4;

  /* Accent — grid line / geometric blue */
  --color-accent: #1e3a6e;
  --color-accent-light: #2a4d8f;

  /* Status */
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-interactive: 220ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows — blue-tinted for dark navy */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(36, 120, 255, 0.2);
  --shadow-glow-sm: 0 0 20px rgba(36, 120, 255, 0.15);

  /* Content widths */
  --page-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1280px;
  --content-full: 100%;
  --measure-tight: 46ch;
  --measure-readable: 58ch;
  --measure-wide: 72ch;

  /* Fonts */
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Cascadia Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
}


/* BASE RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img { height: auto; }

ul[role='list'], ol[role='list'] { list-style: none; }

input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.1;
  font-family: var(--font-display);
}

p, li, figcaption {
  text-wrap: pretty;
  max-width: 72ch;
}

::selection {
  background: rgba(36, 120, 255, 0.25);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============================================================
   QRINTEX COMPONENTS
   ============================================================ */

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-3) var(--space-6);
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  justify-content: space-between;
  background: rgba(5, 8, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: background var(--transition-interactive), box-shadow var(--transition-interactive);
}

.nav--scrolled {
  background: rgba(5, 8, 15, 0.97);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  flex-shrink: 0;
  white-space: nowrap;
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(36, 120, 255, 0.18);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  flex-shrink: 0;
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  letter-spacing: 0.01em;
}

.nav__links a:hover {
  color: var(--color-text);
}

.nav__links .active {
  color: var(--color-primary-bright);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Language selector */
.lang-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 86px;
}

.lang-select__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lang-select__control {
  width: 100%;
  min-height: 42px;
  appearance: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background:
    linear-gradient(135deg, rgba(36, 120, 255, 0.16), rgba(36, 120, 255, 0.03)),
    var(--color-surface-2);
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0 34px 0 16px;
  text-transform: uppercase;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.lang-select::after {
  content: "";
  position: absolute;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: rotate(45deg) translateY(-2px);
  pointer-events: none;
}

.lang-select__control:hover,
.lang-select__control:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(36, 120, 255, 0.16);
  outline: none;
}

.lang-select__control option {
  background: var(--color-bg-2);
  color: var(--color-text);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
  touch-action: manipulation;
}

.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  display: block;
}

.mobile-menu {
  display: none;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--transition-interactive), box-shadow var(--transition-interactive), transform var(--transition-fast);
  cursor: pointer;
  border: none;
  text-decoration: none;
  justify-content: center;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.nav .btn {
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(36, 120, 255, 0.25);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 0 30px rgba(36, 120, 255, 0.4);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-bright);
  background: rgba(36, 120, 255, 0.05);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 120, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 120, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero__glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(36, 120, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--content-wide), calc(100% - (var(--page-gutter) * 2)));
  max-width: var(--content-wide);
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  max-width: 100%;
  padding: var(--space-2) var(--space-4);
  background: rgba(36, 120, 255, 0.08);
  border: 1px solid rgba(36, 120, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-bright);
  margin-bottom: var(--space-8);
  text-align: center;
  justify-content: center;
  white-space: normal;
}

.hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary-bright);
  box-shadow: 0 0 8px var(--color-primary-bright);
}

.hero__title {
  font-size: clamp(3rem, 1.55rem + 5.2vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: var(--space-6);
  color: var(--color-text);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.hero__title .accent {
  color: var(--color-primary-bright);
  position: relative;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 0.92rem + 0.45vw, 1.32rem);
  color: var(--color-text-muted);
  max-width: min(var(--measure-readable), 100%);
  margin: 0 auto var(--space-10);
  line-height: 1.65;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ---- SECTION ---- */
.section {
  padding: clamp(var(--space-12), 6vw, var(--space-24)) 0;
  position: relative;
  scroll-margin-top: 96px;
}

.section:not(.hero),
.outcomes-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

#technology {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.section__header {
  max-width: var(--content-default);
  margin: 0 auto var(--space-12);
  padding: 0 var(--space-6);
  text-align: center;
}

.section__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-bright);
  margin-bottom: var(--space-4);
}

.section__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.section__body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: min(600px, 100%);
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- WHY / BUSINESS VALUE ---- */
.why-layout {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.26fr);
  column-gap: clamp(var(--space-10), 6vw, var(--space-16));
  row-gap: clamp(var(--space-8), 4vw, var(--space-12));
  align-items: start;
}

.why-copy {
  align-self: end;
  min-width: 0;
}

.why-copy .section__title {
  font-size: clamp(2.15rem, 3.75vw, 3.65rem);
  line-height: 1.08;
  max-width: 13.25ch;
  margin-bottom: var(--space-6);
}

.why-copy .section__body {
  margin: 0;
  max-width: min(44ch, 100%);
}

.why-value {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  align-self: end;
  min-width: 0;
}

.why-value .pillar-item {
  min-height: 100%;
}

.pillar-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  padding: var(--space-5);
  background: rgba(13, 20, 40, 0.72);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
}

.pillar-item__dot {
  width: 10px;
  height: 10px;
  margin-top: 0.45em;
  border-radius: var(--radius-full);
  background: #7fb0ff;
  box-shadow: 0 0 12px rgba(127, 176, 255, 0.5);
}

.pillar-item__dot--cyan {
  background: #00c8e8;
  box-shadow: 0 0 12px rgba(0, 200, 232, 0.5);
}

.pillar-item__dot--purple {
  background: #a857ff;
  box-shadow: 0 0 12px rgba(168, 87, 255, 0.5);
}

.pillar-item__dot--green {
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
}

.pillar-item__title {
  color: var(--color-text);
  font-size: var(--text-base);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: var(--space-2);
}

.pillar-item__body {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.why-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: stretch;
  min-width: 0;
}

.why-proof__strategy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: var(--space-6) var(--space-6) var(--space-6) 0;
}

.compare-card {
  min-height: 100%;
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
}

.why-proof__kicker,
.compare-card__title {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-bright);
  margin-bottom: var(--space-3);
}

.why-proof__title {
  font-size: clamp(1.65rem, 2.25vw, 2.35rem);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.12;
  margin-bottom: var(--space-4);
  max-width: 20ch;
}

.why-proof__body {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin: 0;
}

.compare-strip {
  display: flex;
  gap: var(--space-4);
  align-items: stretch;
  max-width: 720px;
  width: 100%;
  justify-self: end;
}

.compare-strip .compare-card {
  flex: 1 1 0;
  min-width: 0;
}

.compare-card--new {
  background: linear-gradient(135deg, rgba(36, 120, 255, 0.08), rgba(10, 15, 30, 1));
  border-color: rgba(36, 120, 255, 0.25);
}

.compare-card--old .compare-card__title {
  color: var(--color-text-faint);
}

.compare-card__list {
  display: grid;
  gap: var(--space-3);
}

.compare-card__item {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: var(--space-3);
  align-items: start;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.compare-card__item svg {
  margin-top: 0.22em;
}

.compare-card--old .compare-card__item svg {
  color: var(--color-error);
}

.compare-card--new .compare-card__item {
  color: var(--color-text);
}

.compare-card--new .compare-card__item svg {
  color: var(--color-success);
}

/* ---- READING TEXT ---- */
p,
.hero__subtitle,
.product-hero__subtitle,
.section__body,
.product-card__desc,
.feature-item__body,
.step-item__body,
.pillar-item__body,
.outcome-card p,
.footer__tagline,
.legal-doc p,
.legal-doc li,
.readiness-row span,
.proofops-metric__body {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  overflow-wrap: break-word;
}

.hero__subtitle,
.product-hero__subtitle,
.section__header .section__body,
.demo-section .section__body {
  text-align-last: center;
}

@supports (text-wrap: pretty) {
  p,
  .hero__subtitle,
  .product-hero__subtitle,
  .section__body,
  .product-card__desc,
  .feature-item__body,
  .step-item__body,
  .pillar-item__body,
  .outcome-card p,
  .footer__tagline,
  .legal-doc p,
  .legal-doc li,
  .readiness-row span,
  .proofops-metric__body {
    text-wrap: pretty;
  }
}

/* ---- PRODUCT CARDS ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--space-6);
  width: min(var(--content-wide), calc(100% - (var(--page-gutter) * 2)));
  max-width: var(--content-wide);
  margin: 0 auto;
  align-items: stretch;
}

.product-card {
  position: relative;
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  overflow: hidden;
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive), transform var(--transition-interactive);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--product-color, var(--color-primary)), transparent);
  opacity: 0.6;
}

.product-card:hover,
.product-card:focus-within {
  border-color: var(--product-color, var(--color-primary));
  box-shadow: 0 0 40px rgba(36, 120, 255, 0.12);
  transform: translateY(-3px);
}

.product-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  background: rgba(36, 120, 255, 0.08);
  border: 1px solid rgba(36, 120, 255, 0.15);
}

.product-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--product-color, var(--color-primary-bright));
  margin-bottom: var(--space-3);
  white-space: normal;
  overflow-wrap: normal;
  line-height: 1.35;
}

.product-card__title {
  font-size: clamp(1.55rem, 1.28rem + 0.55vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: 1.2;
  overflow-wrap: break-word;
  hyphens: auto;
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 100%;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: auto;
  padding-top: var(--space-7);
}

.product-card__tag {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-weight: 500;
  min-width: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.product-card__arrow {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.product-card:hover .product-card__arrow,
.product-card:focus-within .product-card__arrow {
  background: var(--product-color, var(--color-primary));
  color: #fff;
  border-color: transparent;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: inherit;
  text-decoration: none;
}

.product-card__link:focus-visible {
  outline: 2px solid var(--product-color, var(--color-primary));
  outline-offset: 4px;
  border-radius: var(--radius-full);
}

.product-card__link-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- FEATURE GRID ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.feature-item {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-5);
  color: var(--color-primary-bright);
}

.feature-item__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.feature-item__body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 100%;
}

.feature-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

/* ---- STAT ROW ---- */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
  padding: var(--space-12) var(--space-8);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary-bright);
  letter-spacing: -0.03em;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-item__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ---- DEMO FORM ---- */
.demo-section {
  background: linear-gradient(135deg, var(--color-surface-2) 0%, var(--color-surface-card) 100%);
  border-top: 1px solid var(--color-border);
}

.demo-section .section__title {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 1.5rem + 1.45vw, 3rem);
  line-height: 1.08;
}

.demo-section .section__body {
  max-width: 680px;
}

.demo-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(36, 120, 255, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-faint);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a96b0' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border-subtle);
  padding: var(--space-16) var(--space-8) var(--space-10);
}

.footer__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-border-subtle);
}

.footer__brand {}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  max-width: 280px;
  line-height: 1.6;
}

.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-text);
}

.company-link {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

.company-link:hover {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.email-link {
  color: var(--color-link);
  font: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.email-link:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__bottom {
  max-width: var(--content-wide);
  margin: var(--space-8) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.product-footer {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) minmax(420px, 2fr) minmax(240px, 0.9fr);
  align-items: center;
  gap: var(--space-8);
  padding: 0 var(--space-8);
}

.product-footer__brand {
  justify-self: start;
  font-size: var(--text-base);
}

.product-footer-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.product-footer-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: var(--space-2) var(--space-3);
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.2;
  background: rgba(36, 120, 255, 0.04);
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.product-footer-nav a:hover {
  color: var(--color-text);
  background: rgba(36, 120, 255, 0.08);
  border-color: var(--color-border-subtle);
}

.product-footer__copy {
  display: block;
  justify-self: end;
  max-width: 300px;
  color: var(--color-text-faint);
  font-size: var(--text-xs);
  line-height: 1.55;
  text-align: right;
}

.product-footer__meta {
  justify-self: end;
  display: grid;
  gap: var(--space-2);
  max-width: 320px;
  text-align: right;
}

.product-footer__meta .email-link {
  font-size: var(--text-xs);
}

/* ---- PRODUCT PAGE ---- */
.product-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.product-hero__content {
  width: min(var(--content-wide), calc(100% - (var(--page-gutter) * 2)));
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.product-hero__content > * {
  min-width: 0;
  max-width: 100%;
}

.product-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  border: 1px solid;
}

.product-hero__title {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1.0;
}

.product-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* ---- VISUAL DIAGRAM ---- */
.diagram-box {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.diagram-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 120, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 120, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ---- STEP LIST ---- */
.steps {
  counter-reset: step;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.step-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-6);
  align-items: start;
  min-width: 0;
  padding: var(--space-8);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.step-item__num {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(36, 120, 255, 0.08);
  border: 1px solid rgba(36, 120, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-primary-bright);
  font-family: var(--font-display);
  flex-shrink: 0;
}

.step-item__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.step-item__body {
  grid-column: 2;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: none;
}

/* ---- BUYER OUTCOMES ---- */
.outcomes-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: var(--space-5);
  max-width: var(--content-wide);
  margin: var(--space-10) auto 0;
  padding: 0 var(--space-8);
}

.outcome-card {
  background: linear-gradient(180deg, rgba(15,22,48,.92), rgba(10,15,30,.92));
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  min-height: 190px;
  box-shadow: var(--shadow-sm);
}

.outcome-card--featured {
  border-color: rgba(36,120,255,.45);
  box-shadow: var(--shadow-glow-sm);
  transform: translateY(-10px);
}

.outcome-card__kicker {
  display: inline-flex;
  margin-bottom: var(--space-4);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-primary-bright);
}

.outcome-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.15;
  margin-bottom: var(--space-3);
}

.outcome-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.outcome-card__link {
  display: inline-flex;
  margin-top: var(--space-5);
  font-weight: 800;
  color: var(--color-primary-bright);
}

@media (max-width: 900px) {
  .outcomes-section { grid-template-columns: 1fr; }
  .outcome-card--featured { transform: none; }
}

@media (max-width: 1100px) {
  .nav__links {
    gap: var(--space-5);
  }
  .nav__links a {
    font-size: 13px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .product-hero__content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .feature-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }
  .why-layout {
    grid-template-columns: 1fr;
    padding: 0 var(--space-5);
    gap: var(--space-8);
  }
  .why-copy {
    align-self: auto;
  }
  .why-value {
    align-self: auto;
  }
  .why-proof {
    grid-column: auto;
    grid-template-columns: 1fr;
    margin-bottom: var(--space-10);
  }
  .why-proof__strategy {
    padding: 0;
  }
  .compare-strip {
    flex-direction: column;
    max-width: none;
  }
  #sectors {
    padding-top: var(--space-12);
  }
  .product-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .product-footer__brand,
  .product-footer__copy,
  .product-footer__meta {
    justify-self: center;
    text-align: center;
  }
}

/* Mobile — hide nav links, show hamburger */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .nav {
    z-index: 1000;
  }
  .nav__hamburger {
    display: flex;
    position: relative;
    z-index: 1002;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }
  .nav__right .btn {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    top: 68px;
    left: var(--space-5);
    right: var(--space-5);
    z-index: 1001;
    display: none;
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-4);
    background: rgba(7, 12, 22, 0.98);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity var(--transition-interactive),
      transform var(--transition-interactive);
  }

  .mobile-menu.open,
  .mobile-menu.is-open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: var(--space-3) var(--space-4);
    color: var(--color-text);
    font-size: var(--text-base);
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none;
  }

  .mobile-menu a:hover,
  .mobile-menu a:active,
  .mobile-menu a:focus-visible {
    color: var(--color-primary-bright);
    background: rgba(36, 120, 255, 0.08);
    outline: none;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(1.9rem, 9vw, 3.2rem);
  }
  .hero__subtitle {
    font-size: var(--text-base);
    padding: 0 var(--space-3);
    max-width: 100%;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: var(--space-3);
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__eyebrow {
    font-size: 10px;
    padding: var(--space-2) var(--space-3);
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: calc(100vw - (var(--space-5) * 2));
  }

  /* Stats */
  .stats-row {
    gap: var(--space-6);
    padding: var(--space-8) var(--space-5);
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  .stat-item__number {
    font-size: var(--text-xl);
  }

  /* Compliance badges */
  .compliance-row {
    gap: var(--space-2);
    padding-inline: var(--space-5);
  }

  /* Section spacing */
  .section {
    padding: clamp(var(--space-10), 5vw, var(--space-16)) 0;
  }
  .section__title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .section__header {
    margin-bottom: var(--space-8);
    padding: 0 var(--space-5);
  }

  /* Product cards */
  .products-grid {
    grid-template-columns: 1fr;
    padding: 0 var(--space-5);
    gap: var(--space-4);
  }
  .product-card {
    padding: var(--space-6);
  }
  .product-card__title {
    font-size: var(--text-lg);
  }

  .step-item {
    grid-template-columns: 40px 1fr;
    gap: var(--space-4);
    padding: var(--space-6);
  }
  .step-item__num {
    width: 40px;
    height: 40px;
    font-size: var(--text-base);
  }

  /* Features grid */
  .features-grid,
  .feature-grid,
  .step-grid {
    grid-template-columns: 1fr;
    padding: 0 var(--space-5);
    gap: var(--space-4);
  }

  /* Sectors */
  .sectors-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 var(--space-5);
    gap: var(--space-4);
  }

  /* Compare strip */
  .compare-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .why-layout {
    grid-template-columns: 1fr;
    padding: 0 var(--space-5);
    gap: var(--space-10);
    align-items: stretch;
  }

  .why-copy {
    position: static;
    align-self: auto;
  }

  .why-copy .section__title {
    max-width: 13ch;
  }

  .why-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    min-width: 0;
    margin-bottom: var(--space-12);
  }

  .why-proof__strategy {
    padding: 0;
  }

  .compare-strip .compare-card,
  .compare-card {
    min-height: auto;
    width: 100%;
    padding: var(--space-5);
  }

  .compare-card__list {
    gap: var(--space-3);
  }

  .compare-card__item {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .why-proof__title {
    max-width: 16ch;
  }

  /* Demo form */
  .demo-form-wrapper {
    padding: 0 var(--space-5);
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
  .footer {
    padding: var(--space-12) var(--space-5) var(--space-8);
  }
  .product-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: var(--space-6);
    padding: 0 var(--space-5);
    text-align: center;
  }
  .product-footer__brand,
  .product-footer__copy,
  .product-footer__meta {
    justify-self: center;
    text-align: center;
  }
  .product-footer-nav {
    gap: var(--space-2);
  }

  /* Product hero */
  .product-hero__content {
    width: calc(100% - (var(--space-5) * 2));
    padding: 0;
    gap: var(--space-10);
  }
  .product-hero__title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }
  .product-hero__subtitle {
    font-size: var(--text-base);
    max-width: 100%;
  }

  /* Steps */
  .steps {
    padding: 0 var(--space-5);
  }

  .why-value {
    grid-template-columns: 1fr;
  }

  .compare-card {
    padding: var(--space-5);
  }

}

/* Very small mobile */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr !important;
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  #sectors {
    padding-top: var(--space-16);
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .spec-grid {
    grid-template-columns: 1fr !important;
  }
  .product-footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .product-footer-nav a {
    width: 100%;
  }
}

/* Sustainable text rhythm. Marketing copy should not be justified or stretch words. */
.hero__subtitle,
.product-hero__subtitle,
.section__header .section__body,
.demo-section .section__body {
  max-inline-size: min(var(--measure-readable), 100%);
  text-align: center !important;
  text-align-last: center !important;
  text-wrap: pretty;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
  word-spacing: normal;
}

.product-card__desc,
.feature-item__body,
.step-item__body,
.pillar-item__body,
.outcome-card p,
.sector-card p,
.footer__tagline,
.readiness-row span,
.proofops-metric__body {
  max-inline-size: var(--measure-readable);
  text-align: left !important;
  text-align-last: auto !important;
  text-wrap: pretty;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.legal-doc p,
.legal-doc li {
  max-inline-size: var(--measure-wide);
  text-align: left !important;
  text-align-last: auto !important;
  hyphens: auto;
  overflow-wrap: break-word;
}

.product-card__label {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.product-card__desc,
.product-card__tag,
.feature-item__body,
.step-item__body {
  text-align: left !important;
  text-align-last: auto !important;
}

.product-hero__subtitle,
.section__header .section__body,
.demo-section .section__body {
  text-align: center !important;
  text-align-last: center !important;
  hyphens: none;
  word-spacing: normal;
}

.hero__subtitle {
  max-inline-size: min(54ch, 100%);
}

.product-hero__subtitle {
  max-inline-size: min(58ch, 100%);
  margin-inline: auto;
}

@media (max-width: 760px) {
  .demo-section .section__title {
    font-size: clamp(1.7rem, 6.2vw, 2.25rem);
    line-height: 1.12;
  }
}

/* Consent controls: non-essential analytics remains opt-in. */
.cookie-consent {
  position: fixed;
  z-index: 2000;
  inset: auto var(--space-5) var(--space-5);
  max-width: 1120px;
  margin-inline: auto;
  padding: var(--space-5);
  color: var(--color-text);
  background: #091225;
  border: 1px solid rgba(61, 143, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.48);
}

.cookie-consent__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-6);
  align-items: end;
}

.cookie-consent__copy h2 {
  margin: 0 0 var(--space-2);
  font-size: var(--text-lg);
  line-height: 1.25;
}

.cookie-consent__copy p {
  max-width: 76ch;
  margin: 0;
  color: #b8c5df;
  font-size: var(--text-sm);
  line-height: 1.6;
  text-align: left !important;
}

.cookie-consent a,
.cookie-settings-link {
  color: #79adff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cookie-consent__actions {
  display: flex;
  gap: var(--space-3);
  align-items: stretch;
}

.cookie-consent__button {
  min-height: 44px;
  padding: 0.7rem 1rem;
  color: #f7f9ff;
  background: #14213d;
  border: 1px solid #3d8fff;
  border-radius: 6px;
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  background: #1b315c;
  outline: 2px solid #8bb8ff;
  outline-offset: 2px;
}

.cookie-settings-link {
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 760px) {
  .cookie-consent {
    inset: auto var(--space-3) var(--space-3);
    max-height: calc(100dvh - var(--space-6));
    overflow-y: auto;
    padding: var(--space-4);
  }

  .cookie-consent__content {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent__button {
    width: 100%;
  }
}
