    :root {
      --bg: #061520;
      --ink: #E6F0F7;
      --muted: #A6B6C6;
      --card: #0B2433;
      --accent1: #F43F9A;
      --accent2: #7C3AED;
      --accent3: #24A0ED;
      --radius: 1.25rem;
      --shadow: 0 10px 30px rgba(0,0,0,.35);
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html {
      scroll-behavior: smooth;
    }
    
    body {
      min-height: 100vh;
      background: 
        radial-gradient(1200px 600px at 80% -10%, rgba(124,58,237,.25), transparent 60%),
        radial-gradient(800px 400px at -10% 10%, rgba(244,63,154,.18), transparent 55%),
        var(--bg);
      color: var(--ink);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-10px) rotate(2deg); }
    }
    
    @keyframes shimmer {
      0% { background-position: -1000px 0; }
      100% { background-position: 1000px 0; }
    }
    
    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      line-height: 1.2;
    }
    
    a {
      color: inherit;
      text-decoration: none;
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
      outline: 2px solid rgba(36, 160, 237, 0.95);
      outline-offset: 3px;
    }
    
    img {
      max-width: 100%;
      display: block;
      height: auto;
    }
    
    .container {
      width: min(1100px, 92vw);
      margin-inline: auto;
    }
    
    .grid {
      display: grid;
      gap: 1.25rem;
    }
    
    .two {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .three {
      grid-template-columns: repeat(3, 1fr);
    }
    
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(6, 21, 32, .8);
      backdrop-filter: blur(12px) saturate(180%);
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      animation: slideDown .5s ease-out;
    }
    
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: .8rem 0;
    }
    
    .brand {
      display: flex;
      gap: .75rem;
      align-items: center;
      transition: transform .3s ease;
    }
    
    .brand:hover {
      transform: scale(1.02);
    }
    
    .brand img {
      animation: float 6s ease-in-out infinite;
    }
    
    .brand strong {
      font-weight: 800;
      font-size: 1.1rem;
      letter-spacing: -.5px;
      background: linear-gradient(135deg, var(--ink), var(--muted));
      -webkit-background-clip: text;
      background-clip: text;
    }
    
    .navlinks {
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    
    .navlinks a:not(.btn) {
      padding: .5rem .75rem;
      position: relative;
      font-weight: 500;
      transition: color .3s ease;
    }
    
    .navlinks a:not(.btn)::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent1), var(--accent2));
      transition: all .3s ease;
      transform: translateX(-50%);
    }
    
    .navlinks a:not(.btn):hover::after {
      width: 80%;
    }

    .navlinks a.is-active:not(.btn),
    .mobile-menu a.is-active,
    .footer-links a.is-active {
      color: var(--ink);
    }

    .navlinks a.is-active:not(.btn)::after {
      width: 80%;
    }
    
    .mobile-toggle {
      display: none;
      background: transparent;
      border: 1px solid rgba(255,255,255,.1);
      color: var(--ink);
      font-size: 1.2rem;
      cursor: pointer;
      transition: all .3s ease;
      width: 44px;
      height: 44px;
      border-radius: .7rem;
      align-items: center;
      justify-content: center;
    }
    
    .mobile-toggle:hover {
      background: rgba(255,255,255,.05);
      transform: rotate(90deg);
    }

    .mobile-toggle[aria-expanded="true"] {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.24);
      transform: rotate(90deg);
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .75rem 1.25rem;
      border-radius: .8rem;
      font-weight: 600;
      letter-spacing: -.2px;
      white-space: nowrap;
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border: none;
      font-size: .95rem;
    }
    
    .btn.primary {
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      box-shadow: 0 8px 24px rgba(124,58,237,.35);
      color: white;
    }
    
    .btn.primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
      transition: left .5s ease;
    }
    
    .btn.primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(124,58,237,.45);
    }
    
    .btn.primary:hover::before {
      left: 100%;
    }
    
    .btn.ghost {
      border: 1px solid rgba(230, 240, 247, .18);
      backdrop-filter: blur(8px);
      background: rgba(255, 255, 255, .02);
      color: var(--ink);
    }
    
    .btn.ghost:hover {
      background: rgba(255, 255, 255, .08);
      border-color: rgba(230, 240, 247, .3);
      transform: translateY(-1px);
    }
    
    .hero {
      padding: 5rem 0 3rem;
      position: relative;
    }
    
    .hero-grid {
      grid-template-columns: 1.25fr .75fr;
      align-items: center;
      gap: 3rem;
    }
    
    .hero h1 {
      font-size: clamp(2.5rem, 4vw, 4.5rem);
      line-height: 1.1;
      margin: 0 0 1.2rem;
      font-weight: 900;
      animation: fadeInUp .8s ease-out;
    }
    
    .gradient-text {
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
      animation: shimmer 8s linear infinite;
      background-size: 1000px 100%;
    }
    
    .lead {
      color: var(--muted);
      font-size: 1.15rem;
      line-height: 1.7;
      animation: fadeInUp .8s ease-out .2s both;
    }
    
    .pill {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .4rem .8rem;
      border-radius: 999px;
      background: rgba(124, 58, 237, .1);
      border: 1px solid rgba(124, 58, 237, .3);
      font-size: .85rem;
      color: #E9D8FF;
      font-weight: 500;
      animation: fadeInUp .8s ease-out;
      backdrop-filter: blur(4px);
    }
    
    .logo-wrap {
      place-self: center;
      width: min(650px, 95%);
      position: relative;
      animation: float 6s ease-in-out infinite .5s;
    }
    
    .logo-wrap img {
      filter: drop-shadow(0 0 40px rgba(124,58,237,.3));
      transition: transform .3s ease;
    }
    
    .logo-wrap:hover img {
      transform: scale(1.05) rotate(5deg);
    }
    
    .card {
      background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }
    
    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
      animation: shimmer 3s linear infinite;
    }
    
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0,0,0,.4);
      border-color: rgba(255,255,255,.12);
    }
    
    .icon {
      width: 48px;
      height: 48px;
      border-radius: .8rem;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      display: grid;
      place-items: center;
      box-shadow: 0 8px 20px rgba(124,58,237,.35);
      margin-bottom: 1rem;
      font-size: 1.5rem;
      transition: all .3s ease;
    }
    
    section {
      padding: 4rem 0;
    }
    
    h2 {
      font-size: clamp(2rem, 3vw, 3rem);
      margin: 0 0 1rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--ink), var(--muted));
      -webkit-background-clip: text;
      background-clip: text;
    }
    
    .muted {
      color: var(--muted);
    }
    
    .badges {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
      margin-top: 1rem;
    }
    
    .badge {
      padding: .45rem .8rem;
      border-radius: .6rem;
      border: 1px solid rgba(255,255,255,.1);
      color: var(--muted);
      font-size: .85rem;
      background: rgba(255,255,255,.02);
      backdrop-filter: blur(4px);
      transition: all .3s ease;
    }
    
    .badge:hover {
      background: rgba(255,255,255,.05);
      border-color: rgba(255,255,255,.2);
      transform: translateY(-2px);
    }

    .logo-cloud {
      display: flex;
      gap: clamp(1.25rem, 3vw, 2.5rem);
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      max-width: 960px;
      margin: 0 auto;
      padding: 1.5rem clamp(1rem, 3vw, 2rem);
      border-radius: 1.2rem;
      border: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
      box-shadow: var(--shadow);
    }

    .partner-logo {
      height: 50px;
      filter: grayscale(100%) brightness(0.85);
      opacity: 0.78;
      transition: transform .3s ease, filter .3s ease, opacity .3s ease;
    }

    .partner-logo:hover {
      transform: translateY(-4px);
      filter: grayscale(0%) brightness(1);
      opacity: 1;
    }
    
    .footer {
      padding: 3rem 0 2rem;
      color: var(--muted);
      border-top: 1px solid rgba(255,255,255,.08);
      background: rgba(11,36,51,.3);
      backdrop-filter: blur(10px);
    }
    
    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
    }
    
    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
    }
    
    .footer-links a {
      padding: .5rem .75rem;
      transition: color .3s ease;
    }
    
    .footer-links a:hover {
      color: var(--ink);
    }
    
    .mobile-menu {
      display: none;
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      background: rgba(6, 21, 32, .98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,.08);
      padding: 1rem;
      z-index: 99;
      animation: slideDown .3s ease-out;
    }
    
    .mobile-menu.active {
      display: block;
    }

    body.menu-open {
      overflow: hidden;
    }
    
    .mobile-menu a {
      display: block;
      padding: .75rem 1rem;
      border-radius: .5rem;
      transition: background .3s ease;
    }
    
    .mobile-menu a:hover {
      background: rgba(255,255,255,.05);
    }
    
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all .8s ease;
    }
    
    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }
    
    @media (max-width: 900px) {
      .hero {
        padding: 3rem 0 2rem;
      }
      
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }
      
      .hero h1 {
        font-size: clamp(2rem, 6vw, 3rem);
      }
      
      .three {
        grid-template-columns: 1fr;
      }
      
      .two {
        grid-template-columns: 1fr;
      }
      
      .navlinks {
        display: none;
      }
      
      .mobile-toggle {
        display: flex;
      }
      
      .logo-wrap {
        max-width: 300px;
        margin: 2rem auto 0;
      }
      
      .footer-content {
        flex-direction: column;
        text-align: center;
      }
      
      .footer-links {
        justify-content: center;
      }
      
      section {
        padding: 3rem 0;
      }
    }
    
    .back-to-top {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 150;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(16px);
      padding: .9rem 1.1rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      color: white;
      box-shadow: 0 12px 32px rgba(124,58,237,.45);
      border: none;
      font-weight: 700;
      font-size: 1.5rem;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, visibility .2s ease;
    }
    
    .back-to-top.is-visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .back-to-top:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 36px rgba(124,58,237,.55);
      animation: rocketBlast 0.6s ease-in-out;
    }
    
    @keyframes rocketBlast {
      0%, 100% { transform: translateY(-2px); }
      25% { transform: translateY(-8px) rotate(-5deg); }
      50% { transform: translateY(-12px) rotate(5deg); }
      75% { transform: translateY(-8px) rotate(-3deg); }
    }

    /* Cookie Banner Styles */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(135deg, rgba(11, 36, 51, 0.98), rgba(6, 21, 32, 0.98));
      backdrop-filter: blur(12px);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 1.5rem;
      z-index: 10000;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    }

    .cookie-banner.show {
      transform: translateY(0);
    }

    .cookie-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .cookie-text {
      flex: 1;
      min-width: 280px;
    }

    .cookie-text p {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .cookie-text p:first-child {
      color: var(--ink);
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    .cookie-buttons {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .cookie-btn {
      padding: 0.75rem 1.5rem;
      border-radius: 0.7rem;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      white-space: nowrap;
    }

    .cookie-btn.accept {
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      color: white;
      box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
    }

    .cookie-btn.accept:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    }

    .cookie-btn.essential {
      background: rgba(255, 255, 255, 0.05);
      color: var(--ink);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cookie-btn.essential:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.2);
    }

    @media (max-width: 768px) {
      .cookie-content {
        flex-direction: column;
        text-align: center;
      }
      
      .cookie-buttons {
        width: 100%;
        justify-content: center;
      }
      
      .cookie-btn {
        flex: 1;
        min-width: 140px;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
