    :root {
      --bg: #07161b;
      --panel: rgba(14, 40, 48, 0.74);
      --panel-2: rgba(8, 28, 34, 0.84);
      --text: #eefcfa;
      --muted: #9ec5c1;
      --accent: #41f2e2;
      --accent-2: #63b8ff;
      --line: rgba(122, 255, 245, 0.12);
      --glow: 0 0 0 1px rgba(65, 242, 226, 0.08), 0 16px 50px rgba(0, 0, 0, 0.35), 0 0 35px rgba(65, 242, 226, 0.08);
      --radius: 28px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 14% 12%, rgba(65, 242, 226, 0.12), transparent 22%),
        radial-gradient(circle at 85% 20%, rgba(99, 184, 255, 0.10), transparent 24%),
        linear-gradient(180deg, #041015 0%, #07161b 40%, #061217 100%);
      overflow-x: hidden;
      letter-spacing: -0.01em;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: .2;
      z-index: 0;
    }

    .navbar {
      background: rgba(5, 18, 22, 0.72);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(122, 255, 245, 0.08);
    }

    .navbar-brand .logo-img {
      height: 54px;
      width: auto;
      display: block;
      filter: drop-shadow(0 10px 24px rgba(0,0,0,.22));
    }

    .nav-link {
      color: rgba(238,252,250,.78) !important;
      font-weight: 500;
    }

    .nav-link:hover,
    .nav-link:focus,
    .dropdown-item:hover {
      color: #fff !important;
    }

    .dropdown-menu {
      background: rgba(8, 28, 34, 0.96);
      border: 1px solid rgba(122,255,245,.12);
      border-radius: 18px;
      box-shadow: var(--glow);
      padding: .7rem;
    }

    .dropdown-item {
      color: #dffefb;
      border-radius: 12px;
      padding: .7rem .9rem;
    }

    .dropdown-item:hover {
      background: rgba(65,242,226,.08);
    }

    .hero {
      position: relative;
      z-index: 1;
      padding: 9rem 0 3rem;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      padding: .65rem 1rem;
      border-radius: 999px;
      background: rgba(65,242,226,.08);
      border: 1px solid rgba(65,242,226,.14);
      color: #bdfaf4;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: .76rem;
    }

    .hero-card,
    .section-card,
    .info-card,
    .footer-card {
      background: linear-gradient(180deg, rgba(14,40,48,.74), rgba(7,25,31,.82));
      border: 1px solid rgba(122,255,245,.10);
      border-radius: var(--radius);
      box-shadow: var(--glow);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before,
    .section-card::before,
    .info-card::before,
    .footer-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    }

    .hero-card {
      padding: 2rem;
    }

    .project-logo-wrap {
      width: 240px;
      height: 240px;
      display: grid;
      place-items: center;
      border-radius: 24px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(122,255,245,.12);
      margin-bottom: 1.5rem;
    }

    .project-logo {
      max-width: 80%;
      max-height: 80%;
      object-fit: contain;
    }

    .hero-title {
      font-size: clamp(2.6rem, 6vw, 5.2rem);
      line-height: .95;
      font-weight: 800;
      margin: 0 0 1rem;
      max-width: 12ch;
    }

    .gradient {
      background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 45%, #d8fff4 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-copy,
    .section-card p,
    .info-card p,
    .info-card li {
      color: var(--muted);
      line-height: 1.9;
    }

    .record-badge {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      padding: .7rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(122,255,245,.14);
      background: rgba(65,242,226,.08);
      color: #d7fffb;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .78rem;
    }

    .section {
      position: relative;
      z-index: 1;
      padding: 1.2rem 0 2rem;
    }

    .section-card,
    .info-card,
    .footer-card {
      padding: 2rem;
      height: 100%;
    }

    .section-label {
      display: inline-block;
      color: #9cfaf2;
      text-transform: uppercase;
      letter-spacing: .20em;
      font-size: .76rem;
      margin-bottom: .8rem;
    }

    .section-title {
      font-size: clamp(1.7rem, 3vw, 2.6rem);
      line-height: 1.05;
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .objective-list {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0;
    }

    .objective-list li {
      display: flex;
      gap: .8rem;
      margin-bottom: .9rem;
    }

    .objective-list i {
      color: var(--accent);
      margin-top: .15rem;
    }

    .info-item {
      padding: 1rem 1.1rem;
      border-radius: 18px;
      border: 1px solid rgba(122,255,245,.10);
      background: rgba(255,255,255,.03);
      height: 100%;
    }

    .info-item small {
      display: block;
      color: rgba(190,245,239,.58);
      text-transform: uppercase;
      letter-spacing: .14em;
      margin-bottom: .35rem;
    }

    .info-item strong,
    .info-item span {
      display: block;
      color: #fff;
    }

    .partners-list {
      display: flex;
      flex-wrap: wrap;
      gap: .7rem;
      margin-top: .7rem;
    }

    .partner-pill {
      padding: .55rem .85rem;
      border-radius: 999px;
      border: 1px solid rgba(122,255,245,.12);
      background: rgba(255,255,255,.03);
      color: #dffefb;
      font-size: .9rem;
    }

    .cofunded-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .cofunded-logo-box {
      min-height: 120px;
      min-width: 240px;
      display: grid;
      place-items: center;
      border-radius: 22px;
      border: 1px solid rgba(122,255,245,.10);
      background: rgba(255,255,255,.03);
      padding: 1rem 1.5rem;
    }

    .cofunded-logo {
      max-width: 100%;
      max-height: 80px;
      object-fit: contain;
    }

    .footer {
      padding: 2rem 0 3rem;
      border-top: 1px solid rgba(122,255,245,.08);
      color: rgba(190,245,239,.6);
      position: relative;
      z-index: 1;
      margin-top: 2rem;
    }

    @media (max-width: 991.98px) {
      .hero {
        padding-top: 8rem;
      }
    }

    @media (max-width: 767.98px) {
      .navbar-brand .logo-img {
        height: 44px;
      }

      .hero-card,
      .section-card,
      .info-card,
      .footer-card {
        padding: 1.5rem;
      }

      .project-logo-wrap {
        width: 96px;
        height: 96px;
      }
    }
    .btn-tech,
    .btn-outline-tech {
      border-radius: 999px;
      padding: .95rem 1.4rem;
      font-weight: 700;
      letter-spacing: .01em;
      text-decoration: none;
    }

    .btn-tech {
      color: #02262a;
      border: none;
      background: linear-gradient(90deg, #41f2e2, #abfff3);
      box-shadow: 0 10px 30px rgba(65,242,226,.22);
    }

    .btn-tech:hover {
      color: #02262a;
      transform: translateY(-1px);
    }