 :root {
   --bg: #0b0f1a;
   --surface: #141a2b;
   --surface-alt: #1b233a;
   --text: #e7ecf6;
   --muted: #b5c0d6;
   --accent: #6dd0ff;
   --accent-strong: #3fb2ff;
   --warm: #ffd47a;
   --success: #83e1b6;
   --border: #27304a;
   --shadow: rgba(5, 8, 18, 0.4);
 }
 
 * {
   box-sizing: border-box;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, 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(1120px, 92vw);
   margin: 0 auto;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section.compact {
   padding: 40px 0;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.16em;
   font-size: 0.75rem;
   color: var(--accent);
   margin-bottom: 12px;
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.2;
   margin: 0 0 16px;
 }
 
 h1 {
   font-size: clamp(2rem, 5vw, 3.2rem);
 }
 
 h2 {
   font-size: clamp(1.6rem, 3vw, 2.4rem);
 }
 
 h3 {
   font-size: 1.2rem;
 }
 
 p {
   margin: 0 0 16px;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--accent-strong);
   color: var(--bg);
   font-weight: 600;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn.secondary {
   background: transparent;
   border-color: var(--accent);
   color: var(--text);
 }
 
 .btn.ghost {
   background: transparent;
   border-color: var(--border);
   color: var(--text);
 }
 
 .btn:hover,
 .btn:focus-visible {
   transform: translateY(-1px);
 }
 
 header {
   background: rgba(11, 15, 26, 0.9);
   position: sticky;
   top: 0;
   z-index: 50;
   border-bottom: 1px solid var(--border);
   backdrop-filter: blur(6px);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .brand svg {
   width: 28px;
   height: 28px;
 }
 
 .menu-toggle {
   background: transparent;
   border: 1px solid var(--border);
   color: var(--text);
   padding: 8px 12px;
   border-radius: 8px;
   font-weight: 600;
 }
 
 .nav-menu {
   position: absolute;
   top: 68px;
   right: 4%;
   left: 4%;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 20px 40px var(--shadow);
 }
 
 .nav-menu.open {
   display: flex;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .nav-links a {
   font-weight: 600;
 }
 
 .nav-cta {
   margin-top: 8px;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .hero-card .pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(111, 208, 255, 0.16);
   color: var(--accent);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.8rem;
   width: fit-content;
 }
 
 .flex-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card.highlight {
   background: linear-gradient(145deg, rgba(109, 208, 255, 0.18), rgba(20, 26, 43, 1));
 }
 
 .stats {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .stat {
   flex: 1 1 180px;
   background: var(--surface-alt);
   border-radius: 14px;
   padding: 18px;
 }
 
 .stat strong {
   font-size: 1.5rem;
   color: var(--warm);
 }
 
 .quote-block {
   background: var(--surface-alt);
   padding: 28px;
   border-radius: 18px;
   border: 1px solid var(--border);
 }
 
 .quote-block p {
   color: var(--text);
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .process-step {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .process-step span {
   background: var(--accent);
   color: var(--bg);
   width: 32px;
   height: 32px;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 12px;
   overflow: hidden;
   background: var(--surface);
 }
 
 .faq-item button {
   width: 100%;
   background: transparent;
   border: none;
   color: var(--text);
   padding: 16px 18px;
   text-align: left;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 16px;
 }
 
 .faq-item button span {
   color: var(--accent);
   font-size: 1.2rem;
 }
 
 .faq-content {
   display: none;
   padding: 0 18px 16px;
 }
 
 .faq-item.open .faq-content {
   display: block;
 }
 
 .badge-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .badge {
   background: rgba(131, 225, 182, 0.12);
   border: 1px solid rgba(131, 225, 182, 0.4);
   color: var(--success);
   padding: 8px 14px;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison .card strong {
   color: var(--accent);
 }
 
 .info-split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .panel {
   background: var(--surface-alt);
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--border);
 }
 
 footer {
   border-top: 1px solid var(--border);
   padding: 32px 0 48px;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 16px;
   width: min(960px, 92vw);
   display: none;
   flex-direction: column;
   gap: 16px;
   z-index: 100;
   box-shadow: 0 25px 50px var(--shadow);
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(6, 10, 18, 0.8);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 120;
 }
 
 .cookie-modal.show {
   display: flex;
 }
 
 .cookie-modal .modal-content {
   background: var(--surface);
   border-radius: 18px;
   border: 1px solid var(--border);
   padding: 24px;
   width: min(680px, 92vw);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cookie-toggle {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: var(--surface-alt);
   border-radius: 12px;
   padding: 12px 14px;
 }
 
 .cookie-toggle button {
   border: 1px solid var(--border);
   background: transparent;
   color: var(--text);
   padding: 8px 14px;
   border-radius: 999px;
 }
 
 .cookie-toggle button.active {
   background: var(--accent);
   color: var(--bg);
 }
 
 @media (min-width: 768px) {
   .nav-menu {
     position: static;
     display: flex;
     flex-direction: row;
     align-items: center;
     gap: 24px;
     background: transparent;
     border: none;
     box-shadow: none;
     padding: 0;
   }
 
   .nav-links {
     flex-direction: row;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .info-split {
     flex-direction: row;
   }
 
   .info-split > * {
     flex: 1;
   }
 
   .process {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .process-step {
     flex: 1 1 240px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 }
