*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0f1012;
  --surface: #181a1f;
  --surface-alt: #22252c;
  --accent: #b38a5a;
  --accent-dark: #8f6b41;
  --text: #f6f1e9;
  --muted: #c9c0b4;
  --line: #2f333d;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--surface);
}

.section.soft {
  background: var(--surface-alt);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #141414;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.top-bar {
  background: #0b0c0f;
  border-bottom: 1px solid var(--line);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand svg {
  width: 28px;
  height: 28px;
}

.nav-toggle {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav {
  position: relative;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  right: 0;
  top: 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  min-width: 220px;
  z-index: 10;
}

.nav-links a {
  color: var(--muted);
}

.nav-links.is-open {
  display: flex;
}

.nav-links a.active {
  color: var(--text);
  font-weight: 600;
}

.hero {
  padding: 72px 0 84px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: linear-gradient(130deg, #1f2229, #14161b);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(179, 138, 90, 0.15);
  color: var(--accent);
  font-size: 0.8rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #14161b;
}

.card h3 {
  margin-bottom: 10px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  background: #14161b;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #121418;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
}

.stat h3 {
  color: var(--accent);
  margin-bottom: 6px;
}

.testimonial {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  font-style: italic;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #121418;
}

.comparison-row span {
  color: var(--muted);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: #121418;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  gap: 12px;
}

.faq-answer {
  margin-top: 12px;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #111318;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: #0b0c0f;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #14161b;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: none;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.modal.is-open {
  display: flex;
}

.modal-content {
  background: #14161b;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 24px;
  width: min(520px, 92vw);
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 0;
}

.toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #111318;
}

.toggle button {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #140f0a;
  font-weight: 600;
}

@media (min-width: 780px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    display: flex;
    background: transparent;
    border: none;
    padding: 0;
    min-width: auto;
  }

  .hero .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-grid,
  .cards,
  .stats,
  .feature-list,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-card,
  .card,
  .stat,
  .comparison-row,
  .feature {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
