* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #172036;
  --muted: #54617b;
  --accent: #6c4cff;
  --accent-dark: #5236d6;
  --warm: #f6f2ff;
  --mist: #f3f6fb;
  --sand: #fff4e6;
  --line: #d9dfec;
  --success: #2e7d6b;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #ffffff;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--mist);
}

.section.warm {
  background: var(--warm);
}

.section.sand {
  background: var(--sand);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin: 12px 0 18px;
  line-height: 1.2;
}

.subtitle {
  color: var(--muted);
  max-width: 680px;
}

.mt-20 {
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  color: #fff;
  background: var(--accent);
}

header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent-dark);
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  background: #fff;
  width: min(320px, 80vw);
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-panel a {
  font-size: 1rem;
  color: var(--muted);
}

.hero {
  padding: 84px 0 64px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--warm);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.grid > * {
  flex: 1 1 240px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.card.highlight {
  background: var(--sand);
}

.icon {
  width: 40px;
  height: 40px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding: 12px 0;
}

.stat span {
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 12px;
  background: #fff;
}

.comparison-row strong {
  color: var(--accent-dark);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: #fff;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.15);
  z-index: 30;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 40;
}

.cookie-modal.open {
  display: flex;
}

.cookie-panel {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  width: min(520px, 94vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.cookie-option input {
  margin-top: 4px;
}

.pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mist);
  font-size: 0.8rem;
  color: var(--muted);
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .hero .container {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1;
  }

  .hero-highlights {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .split {
    flex-direction: row;
  }

  .cookie-actions {
    flex-direction: row;
  }
}

@media (min-width: 900px) {
  .hero .container {
    gap: 48px;
  }

  .hero-card {
    padding: 32px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }
}
