:root {
  --color-primary: #0a1628;
  --color-primary-mid: #0f2a52;
  --color-accent: #2563eb;
  --color-accent-light: #3b82f6;
  --color-accent-glow: rgb(37 99 235 / 12%);
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-background: #ffffff;
  --color-surface: #f8fafc;
  --color-surface-alt: #f1f5f9;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;
  --spacing-3xl: 5rem;
  --spacing-4xl: 7rem;

  --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgb(0 0 0 / 6%), 0 1px 2px rgb(0 0 0 / 4%);
  --shadow-md: 0 4px 16px rgb(0 0 0 / 8%), 0 2px 6px rgb(0 0 0 / 4%);
  --shadow-lg: 0 12px 40px rgb(0 0 0 / 10%), 0 4px 12px rgb(0 0 0 / 6%);
  --shadow-card: 0 2px 12px rgb(0 0 0 / 6%);

  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
}

/* ============================================================
   BASE RESET
============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ============================================================
   SKIP NAV
============================================================ */
.skip-nav {
  position: absolute;
  top: -100%;
  left: var(--spacing-md);
  background: var(--color-accent);
  color: #fff;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1000;
  transition: top 0.2s;
}

.skip-nav:focus {
  top: var(--spacing-md);
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--spacing-xl);
}

.section {
  padding-block: var(--spacing-4xl);
}

.section--alt {
  background-color: var(--color-surface);
}

.section__label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background-color: var(--color-accent-glow);
  border: 1px solid rgb(37 99 235 / 20%);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  margin-bottom: var(--spacing-lg);
}

.section__title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.section__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.section__header .section__subtitle {
  margin-inline: auto;
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgb(255 255 255 / 92%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  text-decoration: none;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-accent), #7c3aed);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--font-size-lg);
}

.nav__links {
  display: none;
  list-style: none;
  gap: var(--spacing-xl);
}

.nav__links a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--color-text);
  text-decoration: none;
}

.nav__cta {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 1px 3px rgb(37 99 235 / 30%);
}

.btn--primary:hover {
  background-color: var(--color-accent-light);
  box-shadow: 0 4px 12px rgb(37 99 235 / 40%);
  text-decoration: none;
  color: #ffffff;
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  background-color: var(--color-surface);
  color: var(--color-text);
  text-decoration: none;
}

.btn--lg {
  padding: 14px 28px;
  font-size: var(--font-size-base);
  border-radius: var(--radius-md);
}

.btn--outline-white {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgb(255 255 255 / 30%);
}

.btn--outline-white:hover {
  background-color: rgb(255 255 255 / 10%);
  color: #ffffff;
  text-decoration: none;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-mid) 60%, #1e3a6e 100%);
  padding-block: var(--spacing-4xl);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgb(37 99 235 / 18%) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgb(124 58 237 / 10%) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  gap: var(--spacing-xxl);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 70%);
  background-color: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  margin-bottom: var(--spacing-lg);
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--spacing-lg);
}

.hero__title span {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: var(--font-size-lg);
  color: rgb(255 255 255 / 72%);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: var(--spacing-xl);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xxl);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
}

.hero__stat-value {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.hero__stat-label {
  font-size: var(--font-size-sm);
  color: rgb(255 255 255 / 55%);
  margin-top: 2px;
}

.hero__visual {
  display: none;
}

.hero__card {
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  backdrop-filter: blur(8px);
}

.hero__card-title {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: rgb(255 255 255 / 80%);
  margin-bottom: var(--spacing-md);
}

.hero__pipeline {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.hero__pipeline-step {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-sm);
  color: rgb(255 255 255 / 70%);
}

.hero__pipeline-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__pipeline-step-dot--active {
  background-color: var(--color-success);
  box-shadow: 0 0 8px var(--color-success);
}

.hero__pipeline-step-dot--pending {
  background-color: var(--color-warning);
}

.hero__pipeline-step-dot--done {
  background-color: rgb(255 255 255 / 30%);
}

.hero__pipeline-bar {
  height: 4px;
  border-radius: var(--radius-full);
  background: rgb(255 255 255 / 10%);
  margin-block: var(--spacing-sm);
  overflow: hidden;
}

.hero__pipeline-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--color-accent), #7c3aed);
  width: 68%;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 420px;
  }

  .hero__visual {
    display: block;
  }
}

/* ============================================================
   TRUSTED BY LOGOS
============================================================ */
.trusted {
  padding-block: var(--spacing-xxl);
  border-bottom: 1px solid var(--color-border);
}

.trusted__label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.trusted__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xxl);
}

.trusted__logo {
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text-light);
  opacity: 0.6;
}

/* ============================================================
   OUTCOMES / KEY METRICS
============================================================ */
.outcomes__grid {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: 1fr;
}

.outcome-card {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.outcome-card:hover {
  box-shadow: var(--shadow-md);
}

.outcome-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.outcome-card__icon--blue {
  background-color: rgb(37 99 235 / 10%);
}

.outcome-card__icon--green {
  background-color: rgb(16 185 129 / 10%);
}

.outcome-card__icon--purple {
  background-color: rgb(124 58 237 / 10%);
}

.outcome-card__value {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.outcome-card__label {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.outcome-card__description {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .outcomes__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .outcome-card {
    flex-direction: column;
  }
}

/* ============================================================
   FEATURES
============================================================ */
.features__grid {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: 1fr;
}

.feature-card {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card--wide {
  grid-column: span 1;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--spacing-lg);
}

.feature-card__icon--blue {
  background-color: rgb(37 99 235 / 10%);
}

.feature-card__icon--green {
  background-color: rgb(16 185 129 / 10%);
}

.feature-card__icon--purple {
  background-color: rgb(124 58 237 / 10%);
}

.feature-card__icon--orange {
  background-color: rgb(245 158 11 / 10%);
}

.feature-card__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.feature-card__description {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--spacing-lg);
}

.feature-card__capabilities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.feature-card__capabilities li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.feature-card__capabilities li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-card__tag {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-accent);
  background-color: var(--color-accent-glow);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card--wide {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-card--wide {
    grid-column: span 1;
  }
}

/* ============================================================
   INTEGRATIONS
============================================================ */
.integrations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.integration-badge {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.integration-badge:hover {
  box-shadow: var(--shadow-md);
}

.integration-badge__name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-top: var(--spacing-sm);
}

.integration-badge__type {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.integration-badge__logo {
  font-size: 1.8rem;
  line-height: 1;
}

.integrations__api {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xxl);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.integrations__api-label {
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 50%);
}

.integrations__api-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  line-height: 1.25;
}

.integrations__api-desc {
  font-size: var(--font-size-sm);
  color: rgb(255 255 255 / 65%);
  line-height: 1.65;
}

.integrations__api-code {
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: var(--radius-sm);
  padding: var(--spacing-md);
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  color: #a5f3fc;
  line-height: 1.8;
}

.integrations__layout {
  display: grid;
  gap: var(--spacing-xl);
}

@media (min-width: 768px) {
  .integrations__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .integrations__layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ============================================================
   SEGMENTS
============================================================ */
.segments__grid {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: 1fr;
}

.segment-card {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.segment-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.segment-card__icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

.segment-card__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.segment-card__description {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .segments__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   TECH STACK
============================================================ */
.stack__grid {
  display: grid;
  gap: var(--spacing-md);
  grid-template-columns: 1fr;
}

.stack-item {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  box-shadow: var(--shadow-sm);
}

.stack-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #0078d4, #50e6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stack-item__name {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text);
}

.stack-item__purpose {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

@media (min-width: 640px) {
  .stack__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stack__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a6e 100%);
  border-radius: var(--radius-xl);
  padding: var(--spacing-4xl) var(--spacing-xxl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgb(37 99 235 / 25%) 0%, transparent 70%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
}

.cta__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: var(--spacing-md);
}

.cta__description {
  font-size: var(--font-size-lg);
  color: rgb(255 255 255 / 65%);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background-color: var(--color-primary);
  color: rgb(255 255 255 / 55%);
  padding-block: var(--spacing-xxl);
  margin-top: 0;
  border-top: none;
}

.footer__inner {
  display: grid;
  gap: var(--spacing-xl);
}

.footer__brand-name {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--spacing-sm);
}

.footer__brand-desc {
  font-size: var(--font-size-sm);
  line-height: 1.65;
  max-width: 280px;
}

.footer__links-title {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: rgb(255 255 255 / 80%);
  margin-bottom: var(--spacing-md);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer__links a {
  font-size: var(--font-size-sm);
  color: rgb(255 255 255 / 50%);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  padding-top: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  border-top: 1px solid rgb(255 255 255 / 8%);
  font-size: var(--font-size-xs);
}

.footer__compliance {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer__badge {
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: rgb(255 255 255 / 60%);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ============================================================
   VERSION BADGE
============================================================ */
.version-badge {
  position: fixed;
  bottom: var(--spacing-sm);
  left: var(--spacing-sm);
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  background-color: rgb(255 255 255 / 90%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  pointer-events: none;
  z-index: 200;
  backdrop-filter: blur(4px);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (min-width: 640px) {
  .container {
    padding-inline: var(--spacing-xxl);
  }
}
