/* ═══════════════════════════════════════════
   Schengen.IO — In / Out — Vanilla JS Styles
   Design System: Schengen Horizon
   ═══════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  /* Surfaces */
  --surface: #fcf9f8;
  --surface-dim: #dcd9d9;
  --surface-bright: #fcf9f8;
  --surface-lowest: #ffffff;
  --surface-low: #f6f3f2;
  --surface-container: #f0eded;
  --surface-high: #eae7e7;

  /* Text */
  --on-surface: #1c1b1b;
  --on-surface-variant: #424751;
  --text-secondary: #6b7280;
  --text-tertiary: #727783;
  --text-muted: #9ca3af;

  /* Primary (blue / safe) */
  --primary: #0055a4;
  --on-primary: #ffffff;
  --primary-fixed: #d5e3ff;
  --on-primary-fixed: #001b3c;
  --primary-fixed-dim: #a8c8ff;

  /* Secondary (red / warning) */
  --secondary: #e63946;
  --on-secondary: #ffffff;
  --secondary-fixed: #ffdad8;
  --on-secondary-fixed: #93000a;

  /* Yellow / caution */
  --yellow: #f59e0b;
  --yellow-bg: #fef3c7;

  /* Outlines */
  --outline: #727783;
  --outline-variant: #c2c6d3;

  /* Error */
  --error: #ba1a1a;

  /* Inverse (dark surfaces) */
  --inverse-surface: #313030;
  --inverse-on-surface: #f3f0ef;

  /* Shadows */
  --shadow-card: 0px 4px 20px rgba(26, 26, 26, 0.10);
  --shadow-card-hover: 0px 8px 32px rgba(26, 26, 26, 0.14);

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 12px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 64px;

  /* Layout */
  --container: 1100px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Accent (safe / success metrics) */
  --accent-safe: #10b981;
  --accent-safe-bg: #d1fae5;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--on-surface);
  background-color: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── Typography ─── */
.type-display {
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -0.02em;
}

.type-headline-lg {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.type-headline-md {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.type-body-lg {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.type-label-md {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.type-label-sm {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary);
  color: var(--on-primary);
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #004a8f;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--surface-container);
  color: var(--on-surface);
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--outline-variant);
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background-color: var(--surface-high);
  box-shadow: var(--shadow-card);
  transform: translateY(-1px);
}

.btn-small {
  padding: 10px 22px;
  font-size: 13px;
}

/* ─── Cards ─── */
.card-surface {
  background-color: var(--surface-lowest);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--surface-container);
}

.card-flat {
  background-color: var(--surface-low);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid #f0eded;
}

/* ─── Chips ─── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.chip-safe {
  background-color: var(--primary-fixed);
  color: var(--on-primary-fixed);
}

.chip-warning {
  background-color: var(--secondary-fixed);
  color: var(--on-secondary-fixed);
}

.chip-yellow {
  background-color: var(--yellow-bg);
  color: #92400e;
}

/* ─── Icon Circle ─── */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--primary-fixed);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.icon-circle i {
  font-size: 20px;
  color: var(--primary);
}

/* ─── Progress Bar ─── */
.progress-track {
  width: 100%;
  height: 8px;
  background-color: var(--surface-container);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background-color: var(--primary);
  transition: width 0.1s linear, background-color 0.4s ease;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.progress-used {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.4s ease;
}

.progress-remaining {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
}

/* ─── Layout ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.center {
  text-align: center;
}

.center-text {
  text-align: center;
}

.section-white {
  padding: var(--space-xl) 0;
  background-color: var(--surface);
}

.section-alt {
  padding: var(--space-xl) 0;
  background-color: var(--surface-low);
}

.section-subtitle {
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 24px;
}

.split {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.split-text {
  flex: 1;
}

.split-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-lg);
}

/* ─── Navigation ─── */
.nav-float {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-float.nav-hidden-wrap {
  transform: translateY(-120%);
}

#navbar {
  pointer-events: auto;
  position: relative;
  width: 100%;
  max-width: 1152px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 85, 164, 0.08);
  box-shadow: 0 8px 32px rgba(0, 85, 164, 0.08);
}

#navbar.scrolled,
#navbar.menu-open {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 40px rgba(0, 85, 164, 0.12);
  border-color: rgba(0, 85, 164, 0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--on-surface);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  text-transform: none;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.nav-logo:hover {
  transform: scale(1.02);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-fixed-dim) 100%);
  color: var(--on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 85, 164, 0.25);
}

.nav-logo-text .logo-io {
  color: var(--primary);
}

.nav-links-desktop {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-surface-variant);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.15s ease;
  background: none;
  border: none;
  padding: 6px 2px;
  z-index: 1;
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition:
    left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s ease;
  pointer-events: none;
}

.nav-indicator.visible {
  opacity: 1;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 85, 164, 0.25);
}

.nav-cta:active {
  transform: translateY(0);
}

.nav-hamburger {
  display: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
}

.nav-hamburger:hover {
  background-color: var(--surface-container);
}

.hamburger-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 18px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--on-surface);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: rgba(28, 27, 27, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-mobile-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-menu {
  max-height: 0;
  margin-top: 0;
  padding: 0 4px;
  overflow: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: var(--surface-lowest);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transform: translateY(-8px);
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    transform 0.3s ease,
    margin-top 0.3s ease,
    padding 0.3s ease;
}

.nav-mobile-menu.open {
  max-height: 320px;
  margin-top: 12px;
  padding: 12px 4px;
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-menu .nav-link {
  font-size: 15px;
  color: var(--on-surface);
  text-align: left;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  transform: none;
}

.nav-mobile-menu .nav-link:hover {
  background-color: var(--surface-low);
  transform: none;
}

.nav-mobile-menu .nav-link.active {
  background-color: var(--primary-fixed);
  color: var(--primary);
}

.nav-mobile-menu .nav-cta {
  margin: 8px 12px 4px;
  width: calc(100% - 24px);
  justify-content: center;
}

/* ─── Logo Branding ─── */
.logo-dot {
  color: var(--text-tertiary);
  font-weight: 400;
}

.logo-io {
  color: var(--primary);
  font-weight: 700;
}

/* ─── In / Out Branding ─── */
.brand-io {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background-color: var(--primary-fixed);
}

.io-in {
  color: var(--primary);
}

.io-slash {
  color: var(--text-tertiary);
  font-weight: 400;
  padding: 0 2px;
}

.io-out {
  color: var(--secondary);
}

/* ─── Hero ─── */
#hero.hero-split {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 112px 0 72px;
  background-color: var(--surface);
  overflow: hidden;
}

/* Europe connectivity map (Aceternity-style arcs + dots) */
.hero-map-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  min-height: 100%;
  /* Fade map at bottom edge only — keep center visible for arcs + land dots */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
}

.hero-map-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#hero.hero-split::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Soft vignette behind the map (does not cover the canvas) */
  background:
    radial-gradient(
      ellipse 100% 90% at 50% 40%,
      transparent 0%,
      transparent 50%,
      rgba(252, 249, 248, 0.35) 80%,
      rgba(252, 249, 248, 0.65) 100%
    );
}

.hero-bg-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-blob--blue {
  top: 80px;
  left: 5%;
  width: 280px;
  height: 280px;
  background: var(--primary-fixed);
}

.hero-blob--soft {
  top: 160px;
  right: 5%;
  width: 360px;
  height: 360px;
  background: #e8f0fa;
}

.hero-split-inner {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-left {
  text-align: center;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--on-surface);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 55%, var(--primary-fixed-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-days-display {
  margin-bottom: 12px;
}

#days-counter {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--primary);
  transition: color 0.4s ease;
}

.counter-total {
  font-size: 48px;
  font-weight: 400;
  color: var(--on-surface-variant);
}

.hero-days-label {
  display: block;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 28px;
  max-width: 560px;
  margin: 20px auto 0;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
}

.hero-bar-wrap {
  margin-top: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.hero-status {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

/* ─── Device Showcase ─── */
.device-showcase {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.device-img {
  filter: drop-shadow(0px 4px 20px rgba(26, 26, 26, 0.12));
}

.device-iphone {
  max-width: 220px;
}

.device-ipad {
  max-width: 360px;
}

/* ─── Overview Cards ─── */
#overview-cards h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--on-surface);
  margin-top: 8px;
}

#overview-cards p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 22px;
  margin-top: 8px;
}

/* ─── Problem Section ─── */
.problem-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 24px;
  color: var(--on-surface);
}

.problem-x {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background-color: var(--secondary-fixed);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.problem-x i {
  font-size: 10px;
  color: var(--secondary);
}

.img-card {
  background-color: var(--surface-lowest);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.img-card img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-sm);
}

/* ─── How It Works ─── */
.step-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.step-badge i {
  font-size: 16px;
}

.step-label {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

#steps-cards {
  text-align: center;
}

#steps-cards h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--on-surface);
  margin-top: 8px;
}

#steps-cards p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 22px;
  margin-top: 8px;
}

/* ─── Features ─── */
.feature-card {
  padding: 28px;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--on-surface);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 22px;
  margin-top: 6px;
}

.highlight-card {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  background-color: #313030;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.highlight-text {
  flex: 1;
}

.highlight-text .chip {
  margin-bottom: 12px;
}

.highlight-text h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #fff;
  margin-top: 8px;
}

.highlight-text p {
  color: #c5c7c8;
  font-size: 16px;
  line-height: 26px;
  margin-top: 10px;
}

.highlight-img {
  display: flex;
  justify-content: center;
}

.highlight-img img {
  width: 220px;
  height: 220px;
  border-radius: var(--radius-sm);
}

/* ─── Pricing ─── */
.pricing-card {
  background-color: var(--surface-lowest);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-top: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--surface-container);
}

.pricing-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.pricing-price {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--on-surface);
  margin-top: 12px;
}

.pricing-period {
  color: var(--text-secondary);
  font-size: 16px;
  margin-top: 8px;
}

.pricing-divider {
  width: 60px;
  height: 1px;
  background-color: var(--outline-variant);
  margin: 24px auto 0;
}

.pricing-features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--on-surface);
}

.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-fixed);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check i {
  font-size: 9px;
  color: var(--primary);
}

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--outline-variant);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 0;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: var(--surface-container);
}

.faq-question span {
  font-size: 15px;
  font-weight: 500;
  color: var(--on-surface);
  padding-right: 16px;
}

.faq-question i {
  color: var(--outline);
  font-size: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 16px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 16px 18px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 26px;
}

.faq-answer a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--on-primary-fixed);
}

.footer-apps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 24px;
}

.footer-apps a {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--primary-fixed);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-apps a:hover {
  background: var(--primary);
  color: var(--on-primary);
}

.footer-share {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-share a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--outline);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-share a:hover {
  color: var(--inverse-on-surface);
}

.footer-more {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(114, 119, 131, 0.25);
}

.footer-more-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
}

.footer-more-title strong {
  color: var(--inverse-on-surface);
  font-weight: 700;
}

.footer-more-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
}

.footer-more-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--outline);
  transition: color 0.2s ease;
}

.footer-more-links a:hover {
  color: var(--inverse-on-surface);
}

/* ─── Footer ─── */
.site-footer {
  width: 100%;
  padding: 64px 24px 32px;
  background-color: var(--inverse-surface);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--inverse-on-surface);
}

.footer-tagline {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-tertiary);
}

.footer-divider {
  width: 40px;
  height: 1px;
  background-color: var(--outline);
  margin: 28px auto;
}

.footer-rly {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.rly-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--inverse-on-surface);
}

.rly-name strong {
  color: #fff;
  font-weight: 700;
}

.rly-desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-tertiary);
}

.footer-links {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--outline);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--inverse-on-surface);
}

.footer-dot {
  color: var(--outline);
  font-size: 13px;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(114, 119, 131, 0.25);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--outline);
}

.footer-bottom strong {
  color: var(--inverse-on-surface);
  font-weight: 700;
}

.footer-bottom a {
  color: var(--outline);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: var(--on-surface);
}

/* ─── Social proof ─── */
.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  margin: 24px 0 56px;
  opacity: 0.45;
  filter: grayscale(1);
}

.press-logos span {
  font-size: 18px;
  font-weight: 700;
  color: var(--on-surface-variant);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.testimonial-card {
  background: var(--surface-low);
  border: 1px solid var(--surface-container);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.testimonial-stars {
  color: var(--primary);
  font-size: 12px;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.testimonial-card > p {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-fixed);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── Bento features ─── */
.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.glass-card {
  background: var(--surface-lowest);
  border: 1px solid var(--surface-container);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 85, 164, 0.18);
}

.neon-border-primary {
  border-bottom: 3px solid rgba(0, 85, 164, 0.2);
}

.neon-border-green {
  border-bottom: 3px solid rgba(16, 185, 129, 0.2);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.bento-card {
  grid-column: span 4;
  border-radius: 2.5rem;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-card--wide {
  grid-column: span 8;
}

.bento-card--group {
  min-height: 280px;
}

.bento-card-body {
  position: relative;
  z-index: 2;
}

.bento-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  margin: 24px 0 12px;
  color: var(--on-surface);
}

.bento-card--wide:first-child h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}

.bento-card > p,
.bento-card-body > p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
  max-width: 20rem;
}

.bento-card--wide .bento-split > div > p {
  font-size: 17px;
  max-width: none;
}

.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-fixed);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.bento-icon--green {
  background: var(--accent-safe-bg);
  color: var(--accent-safe);
}

.bento-deco--devices {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 50%;
  display: none;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  opacity: 0.1;
  transition: opacity 0.5s ease;
  z-index: 1;
}

@media (min-width: 1024px) {
  .bento-deco--devices {
    display: flex;
  }
}

.bento-card--group:hover .bento-deco--devices {
  opacity: 1;
}

.bento-device--phone {
  width: 128px;
  height: 192px;
  background: var(--surface-low);
  border: 2px solid var(--surface-container);
  border-radius: 2rem;
  padding: 12px;
  box-shadow: var(--shadow-card-hover);
}

.bento-device-bar {
  width: 100%;
  height: 8px;
  background: var(--surface-container);
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.bento-device-line {
  height: 32px;
  background: var(--surface-container);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.bento-device-line--primary {
  background: var(--primary-fixed);
}

.bento-device-line:last-child {
  width: 66%;
}

.bento-device--tablet {
  width: 160px;
  height: 112px;
  background: var(--surface-low);
  border: 2px solid var(--surface-container);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
  box-shadow: var(--shadow-card-hover);
}

.bento-log-list {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bento-log-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--surface-low);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-container);
  font-size: 13px;
  font-weight: 600;
}

.bento-log-list i {
  color: var(--accent-safe);
  margin-right: 8px;
}

.bento-log-list span {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.bento-calendar {
  margin-top: auto;
  padding: 16px;
  background: var(--surface-low);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-container);
}

.bento-cal-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.bento-cal-bars span {
  height: 4px;
  background: var(--surface-container);
  border-radius: var(--radius-pill);
}

.bento-cal-bars span.active {
  background: var(--primary);
}

.bento-calendar > p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bento-cal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease infinite;
}

.bento-split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.bento-ipad-mock {
  flex: 1;
  min-width: 200px;
}

.bento-ipad-inner {
  aspect-ratio: 4/3;
  background: var(--surface-lowest);
  border: 4px solid var(--surface-container);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  gap: 12px;
}

.bento-ipad-sidebar {
  width: 30%;
  background: var(--surface-low);
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-container);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bento-ipad-line {
  width: 100%;
  height: 12px;
  background: var(--surface-container);
  border-radius: 4px;
}

.bento-ipad-line--short {
  width: 50%;
}

.bento-ipad-line--accent {
  height: 40px;
  background: var(--primary-fixed);
  border-radius: var(--radius-sm);
  margin-top: 4px;
}

.bento-ipad-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bento-ipad-bar {
  height: 40px;
  background: var(--accent-safe-bg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
}

.bento-ipad-panel {
  flex: 1;
  background: var(--surface-low);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-container);
}

/* ─── Widgets ─── */
.widgets-split h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.widgets-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.widgets-list li {
  display: flex;
  gap: 16px;
}

.widgets-list-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--primary-fixed);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.widgets-list h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.widgets-list p {
  color: var(--text-secondary);
  font-size: 14px;
}

.widgets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
  max-width: 420px;
}

.widget-card {
  background: var(--surface-lowest);
  border: 1px solid var(--surface-container);
  border-radius: 2rem;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.widget-card--lg {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 24px;
}

.widget-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: auto;
}

.widget-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  margin: 12px 0 4px;
}

.widget-num--safe {
  color: var(--accent-safe);
}

.widget-caption {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.widget-progress {
  height: 8px;
  background: var(--surface-container);
  border-radius: var(--radius-pill);
  margin: 16px 0 8px;
  overflow: hidden;
}

.widget-progress-fill {
  width: 66%;
  height: 100%;
  background: var(--primary);
  border-radius: var(--radius-pill);
}

.widget-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.widget-ring-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
}

.widget-ring-wrap svg {
  width: 100%;
  height: 100%;
}

.widget-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
}

.widget-card--lg h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.widget-card--lg p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.widget-tags {
  display: flex;
  gap: 8px;
}

.widget-tags span {
  padding: 4px 10px;
  background: var(--surface-low);
  border-radius: var(--radius-sm);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Philosophy ─── */
.philosophy-copy {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
}

.philosophy-emphasis {
  font-weight: 600;
  color: var(--on-surface) !important;
}

.philosophy-chart {
  background: var(--surface-lowest);
  border: 1px solid var(--surface-container);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
}

.philosophy-chart h3 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.compare-block {
  margin-bottom: 28px;
}

.compare-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.compare-head span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.compare-brand {
  color: var(--primary) !important;
}

.compare-head strong {
  font-size: 1.5rem;
  font-weight: 900;
}

.compare-muted {
  color: var(--text-muted) !important;
  text-decoration: line-through;
}

.compare-bar {
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  padding: 0 16px;
  overflow: hidden;
  position: relative;
}

.compare-bar span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
}

.compare-bar--sub {
  background: var(--surface-container);
}

.compare-bar--sub span {
  color: var(--text-secondary);
}

.compare-bar--ours {
  background: var(--primary-fixed);
  border: 1px solid rgba(0, 85, 164, 0.2);
}

.compare-bar--ours::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 8%;
  background: var(--primary);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.compare-bar--ours span {
  margin-left: 10%;
  color: var(--primary);
}

.compare-savings {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--surface-container);
  color: var(--accent-safe);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ─── Pricing panel ─── */
.pricing-panel {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--surface-lowest);
  border: 1px solid var(--surface-container);
  border-radius: 2.5rem;
  padding: 48px 56px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.pricing-panel::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: var(--primary-fixed);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.pricing-panel-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.pricing-panel-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.pricing-panel-text > p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.6;
  max-width: 420px;
}

.pricing-checklist {
  list-style: none;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.pricing-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
}

.pricing-checklist i {
  color: var(--accent-safe);
}

.pricing-card--featured {
  position: relative;
  z-index: 1;
  min-width: 300px;
  text-align: center;
  background: var(--surface-low);
  border: 1px solid var(--surface-container);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
}

/* ─── Scroll Reveal ─── */
.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal {
  transform: translateY(24px);
}

.scroll-reveal-left {
  transform: translateX(-40px);
}

.scroll-reveal-right {
  transform: translateX(40px);
}

.scroll-reveal.visible,
.scroll-reveal-left.visible,
.scroll-reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ═══════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-float {
    top: 12px;
    padding: 0 12px;
  }

  #navbar {
    padding: 10px 14px;
  }

  .nav-logo-text {
    display: none;
  }

  .nav-links-desktop {
    display: none;
  }

  #navbar .btn-primary {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  #days-counter,
  .counter-total {
    font-size: 40px;
  }

  .testimonial-grid,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-card--wide {
    grid-column: 1 / -1;
  }

  .bento-card {
    padding: 28px 24px;
    border-radius: 1.75rem;
  }

  .bento-card > p,
  .bento-card-body > p {
    max-width: none;
  }

  .bento-split {
    flex-direction: column;
  }

  .bento-ipad-mock {
    min-width: 0;
    width: 100%;
  }

  .widgets-grid {
    max-width: 100%;
  }

  .widget-card--lg {
    flex-direction: column;
    text-align: center;
  }

  .pricing-panel {
    flex-direction: column;
    padding: 32px 24px;
  }

  .pricing-checklist {
    grid-template-columns: 1fr;
  }

  .card-grid-3 {
    grid-template-columns: 1fr;
  }

  .split {
    flex-direction: column;
  }

  .highlight-card {
    flex-direction: column;
    padding: 32px;
  }

  .pricing-price {
    font-size: 48px;
  }

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

  .hero-buttons a {
    width: 100%;
  }

  #hero.hero-split {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 92px 0 32px;
  }

  .hero-map-bg {
    inset: 0;
    min-height: 100%;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 22%,
      #000 38%,
      #000 76%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 22%,
      #000 38%,
      #000 76%,
      transparent 100%
    );
  }

  #hero.hero-split::before {
    inset: 0;
  }

  .hero-bg-blobs {
    inset: 0;
    opacity: 0.28;
  }

  .hero-blob--blue {
    top: 24px;
    width: 200px;
    height: 200px;
  }

  .hero-blob--soft {
    top: 48px;
    width: 240px;
    height: 240px;
  }

  .hero-split-inner {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .bento-card--wide {
    grid-column: span 12;
  }

  .bento-card:not(.bento-card--wide) {
    grid-column: span 6;
  }
}

/* ─── Privacy page ─── */
.privacy-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.privacy-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  background: rgba(252, 249, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-container);
}

.privacy-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.privacy-main {
  flex: 1;
  padding-top: 48px;
  padding-bottom: 80px;
}

.privacy-content-wrap {
  max-width: 720px;
}

.privacy-content-wrap h1 {
  margin-top: 16px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.privacy-chip {
  display: inline-flex;
}

.privacy-updated {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.privacy-lead {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.privacy-content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.privacy-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--on-surface);
}

.privacy-content p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.privacy-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content a:hover {
  color: var(--on-primary-fixed);
}

.privacy-list {
  margin-top: 12px;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-list li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.privacy-actions {
  margin-top: 48px;
}
