 :root {
   --bg: #0f1115;
   --bg-alt: #151924;
   --surface: #1b2130;
   --accent: #ff5c8a;
   --accent-soft: #ff9bb6;
   --text: #f4f6fb;
   --muted: #b7c0d6;
   --border: #2a3144;
   --shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 header {
   position: sticky;
   top: 0;
   z-index: 10;
   background: rgba(15, 17, 21, 0.9);
   backdrop-filter: blur(6px);
   border-bottom: 1px solid var(--border);
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   font-weight: 600;
   letter-spacing: 0.02em;
 }
 
 .brand svg {
   width: 32px;
   height: 32px;
 }
 
 .site-nav {
   display: none;
   flex-direction: column;
   gap: 0.75rem;
   background: var(--surface);
   padding: 1rem;
   border-radius: 12px;
   box-shadow: var(--shadow);
 }
 
 .site-nav a {
   padding: 0.4rem 0.6rem;
   border-radius: 999px;
 }
 
 .site-nav a:hover,
 .site-nav a:focus {
   background: var(--border);
 }
 
 .menu-toggle {
   border: 1px solid var(--border);
   background: transparent;
   color: var(--text);
   padding: 0.5rem 0.9rem;
   border-radius: 999px;
   font-weight: 600;
 }
 
 .menu-toggle:focus {
   outline: 2px solid var(--accent);
   outline-offset: 2px;
 }
 
 .site-nav.open {
   display: flex;
   position: absolute;
   top: 72px;
   right: 4%;
   width: min(260px, 90%);
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 4rem;
   padding: 2.5rem 0 4rem;
 }
 
 section {
   background: var(--bg-alt);
   border-radius: 18px;
   padding: 2rem;
   border: 1px solid var(--border);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
   padding: 2.5rem;
   background: linear-gradient(140deg, #1f2434, #121520);
 }
 
 .hero h1 {
   font-size: clamp(2rem, 4vw, 3.1rem);
   line-height: 1.2;
 }
 
 .hero p {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   padding: 0.7rem 1.4rem;
   border-radius: 999px;
   border: none;
   background: var(--accent);
   color: #0f1115;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent-soft);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 1.5rem;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .card h3 {
   font-size: 1.2rem;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .pill {
   background: #252c3d;
   padding: 0.4rem 0.8rem;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   background: #1d2232;
   border-radius: 12px;
   padding: 1rem;
   display: flex;
   justify-content: space-between;
   align-items: baseline;
 }
 
 .stat span {
   font-size: 1.6rem;
   font-weight: 700;
   color: var(--accent-soft);
 }
 
 .quote {
   font-size: 1.2rem;
   font-style: italic;
 }
 
 .faq-item {
   border-top: 1px solid var(--border);
   padding: 1rem 0;
 }
 
 .faq-item:first-child {
   border-top: none;
 }
 
 .faq-question {
   width: 100%;
   background: transparent;
   border: none;
   color: var(--text);
   font-size: 1rem;
   text-align: left;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0.4rem 0;
 }
 
 .faq-answer {
   color: var(--muted);
   margin-top: 0.5rem;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-row {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 12px;
   padding: 1rem;
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
 }
 
 .comparison-row strong {
   color: var(--accent-soft);
 }
 
 footer {
   border-top: 1px solid var(--border);
   padding: 2rem 0 3rem;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   margin-top: 1rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1rem;
   left: 50%;
   transform: translateX(-50%);
   width: min(860px, 92%);
   background: #1b2030;
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 1.2rem;
   display: none;
   flex-direction: column;
   gap: 1rem;
   box-shadow: var(--shadow);
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(8, 10, 14, 0.7);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   z-index: 30;
 }
 
 .cookie-modal-content {
   background: var(--surface);
   border-radius: 18px;
   padding: 2rem;
   width: min(560px, 92%);
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: #23293a;
   padding: 0.8rem 1rem;
   border-radius: 12px;
 }
 
 .toggle-row button {
   border: 1px solid var(--border);
   background: transparent;
   color: var(--text);
   padding: 0.4rem 0.8rem;
   border-radius: 999px;
 }
 
 .toggle-row button.active {
   background: var(--accent);
   color: #0f1115;
 }
 
 @media (min-width: 768px) {
   .site-nav {
     display: flex;
     position: static;
     flex-direction: row;
     background: transparent;
     padding: 0;
     box-shadow: none;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split > * {
     flex: 1;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 calc(33% - 1rem);
     min-width: 240px;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
