    @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Crimson+Pro:ital,wght@0,300;0,400;1,300&display=swap');

    :root {
      --space: #03050f;
      --deep: #070c1f;
      --nebula: #0d1535;
      --blue: #1a6fff;
      --cyan: #00d4ff;
      --gold: #f5c842;
      --white: #e8eeff;
      --muted: #5a6a8a;
      --display: 'Orbitron', sans-serif;
      --body: 'Crimson Pro', serif;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--space);
      color: var(--white);
      font-family: var(--body);
      overflow-x: hidden;
      cursor: none;
    }

    /* CUSTOM CURSOR */
    .cursor {
      width: 12px; height: 12px;
      border: 1px solid var(--cyan);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s, width 0.2s, height 0.2s, opacity 0.2s;
      mix-blend-mode: screen;
    }
    .cursor-trail {
      width: 4px; height: 4px;
      background: var(--cyan);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      opacity: 0.5;
      transition: left 0.12s ease, top 0.12s ease;
    }

    /* STARS */
    .stars-layer {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }
    .star {
      position: absolute;
      border-radius: 50%;
      background: white;
      animation: twinkle var(--d, 3s) ease-in-out infinite alternate;
    }
    @keyframes twinkle {
      from { opacity: var(--min, 0.1); }
      to { opacity: var(--max, 0.9); }
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 3rem;
      background: linear-gradient(to bottom, rgba(3,5,15,0.95), transparent);
    }
    .nav-logo {
      font-family: var(--display);
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      color: var(--cyan);
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      gap: 2.5rem;
    }
    .nav-links a {
      font-family: var(--display);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      color: var(--muted);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--white); }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      z-index: 1;
      padding: 2rem;
      overflow: hidden;
    }

    /* Earth glow behind */
    .earth-glow {
      position: absolute;
      bottom: -30vh;
      left: 50%;
      transform: translateX(-50%);
      width: 120vw;
      height: 60vh;
      background: radial-gradient(ellipse at 50% 100%,
        rgba(26,111,255,0.25) 0%,
        rgba(0,212,255,0.1) 30%,
        transparent 70%
      );
      border-radius: 50%;
      pointer-events: none;
    }

    /* Orbital ring */
    .orbital-ring {
      position: absolute;
      width: 600px; height: 600px;
      border: 1px solid rgba(0,212,255,0.08);
      border-radius: 50%;
      animation: spin 40s linear infinite;
      pointer-events: none;
    }
    .orbital-ring::after {
      content: '';
      position: absolute;
      top: -3px; left: 50%;
      width: 6px; height: 6px;
      background: var(--cyan);
      border-radius: 50%;
      box-shadow: 0 0 12px var(--cyan);
      transform: translateX(-50%);
    }
    .orbital-ring-2 {
      width: 800px; height: 800px;
      animation-duration: 60s;
      animation-direction: reverse;
      border-color: rgba(245,200,66,0.05);
    }
    @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

    .hero-content {
      position: relative;
      z-index: 2;
      animation: fadeUp 1.4s ease both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-eyebrow {
      font-family: var(--display);
      font-size: 0.6rem;
      letter-spacing: 0.4em;
      color: var(--cyan);
      text-transform: uppercase;
      margin-bottom: 2rem;
      animation: fadeUp 1.4s 0.2s ease both;
    }
    .hero-name {
      font-family: var(--display);
      font-size: clamp(3rem, 10vw, 8rem);
      font-weight: 900;
      line-height: 0.95;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
      background: linear-gradient(135deg, var(--white) 30%, var(--cyan) 70%, var(--blue) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: fadeUp 1.4s 0.3s ease both;
    }
    .hero-subtitle {
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      font-style: italic;
      font-weight: 300;
      color: rgba(232,238,255,0.5);
      margin-bottom: 3rem;
      animation: fadeUp 1.4s 0.5s ease both;
    }

    .hero-stats {
      display: flex;
      gap: 3rem;
      justify-content: center;
      animation: fadeUp 1.4s 0.7s ease both;
    }
    .stat {
      text-align: center;
    }
    .stat-num {
      font-family: var(--display);
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.25rem;
      letter-spacing: 0.05em;
    }

    .scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      animation: fadeUp 1.4s 1s ease both;
      z-index: 2;
    }
    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--cyan), transparent);
      animation: scrollAnim 2s ease-in-out infinite;
    }
    @keyframes scrollAnim {
      0%, 100% { opacity: 0.3; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.2); }
    }
    .scroll-txt {
      font-family: var(--display);
      font-size: 0.5rem;
      letter-spacing: 0.3em;
      color: var(--muted);
      text-transform: uppercase;
    }

    /* SECTIONS */
    section {
      position: relative;
      z-index: 1;
      padding: 7rem 2rem;
    }
    .container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .section-tag {
      font-family: var(--display);
      font-size: 0.55rem;
      letter-spacing: 0.35em;
      color: var(--cyan);
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .section-tag::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, rgba(0,212,255,0.3), transparent);
    }

    .section-title {
      font-family: var(--display);
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 2rem;
    }

    /* BIO SECTION */
    .bio-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    @media (max-width: 700px) {
      .bio-grid { grid-template-columns: 1fr; gap: 2rem; }
      .hero-stats { gap: 1.5rem; }
      nav { padding: 1rem 1.5rem; }
      .nav-links { gap: 1.5rem; }
    }

    .bio-text {
      font-size: 1.2rem;
      line-height: 1.8;
      color: rgba(232,238,255,0.75);
      font-weight: 300;
    }
    .bio-text strong {
      color: var(--white);
      font-weight: 400;
    }

    .bio-facts {
      display: flex;
      flex-direction: column;
      gap: 1px;
      border: 1px solid rgba(26,111,255,0.2);
      border-radius: 8px;
      overflow: hidden;
    }
    .fact-row {
      display: flex;
      padding: 1rem 1.25rem;
      background: rgba(7,12,31,0.8);
      border-bottom: 1px solid rgba(26,111,255,0.1);
      gap: 1rem;
      align-items: baseline;
    }
    .fact-row:last-child { border-bottom: none; }
    .fact-key {
      font-family: var(--display);
      font-size: 0.55rem;
      letter-spacing: 0.15em;
      color: var(--muted);
      text-transform: uppercase;
      min-width: 90px;
    }
    .fact-val {
      font-size: 0.95rem;
      color: var(--white);
    }

    /* TIMELINE */
    .timeline {
      position: relative;
      padding-left: 2rem;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, var(--cyan), var(--blue), transparent);
    }
    .timeline-item {
      position: relative;
      padding: 0 0 3rem 2rem;
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .timeline-item.visible {
      opacity: 1;
      transform: translateX(0);
    }
    .timeline-dot {
      position: absolute;
      left: -2rem;
      top: 0.4rem;
      width: 9px; height: 9px;
      background: var(--deep);
      border: 2px solid var(--cyan);
      border-radius: 50%;
      transform: translateX(-4px);
    }
    .timeline-year {
      font-family: var(--display);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      color: var(--gold);
      margin-bottom: 0.4rem;
    }
    .timeline-title {
      font-family: var(--display);
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
      letter-spacing: 0.05em;
    }
    .timeline-desc {
      font-size: 1rem;
      color: rgba(232,238,255,0.6);
      line-height: 1.6;
      font-weight: 300;
    }

    /* MISSIONS */
    .missions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .mission-card {
      background: linear-gradient(135deg, rgba(13,21,53,0.9), rgba(7,12,31,0.95));
      border: 1px solid rgba(26,111,255,0.2);
      border-radius: 10px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
    }
    .mission-card:hover {
      border-color: var(--cyan);
      transform: translateY(-4px);
    }
    .mission-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--blue), var(--cyan));
      opacity: 0;
      transition: opacity 0.3s;
    }
    .mission-card:hover::before { opacity: 1; }
    .mission-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    .mission-name {
      font-family: var(--display);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--cyan);
      margin-bottom: 0.5rem;
    }
    .mission-date {
      font-family: var(--display);
      font-size: 0.55rem;
      color: var(--muted);
      letter-spacing: 0.15em;
      margin-bottom: 1rem;
    }
    .mission-desc {
      font-size: 0.95rem;
      line-height: 1.65;
      color: rgba(232,238,255,0.65);
      font-weight: 300;
    }

    /* QUOTE */
    .quote-section {
      background: linear-gradient(180deg, transparent, rgba(26,111,255,0.04), transparent);
      text-align: center;
    }
    blockquote {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-style: italic;
      font-weight: 300;
      line-height: 1.6;
      color: rgba(232,238,255,0.8);
      max-width: 700px;
      margin: 0 auto 2rem;
      position: relative;
    }
    blockquote::before {
      content: '"';
      font-family: var(--display);
      font-size: 6rem;
      color: rgba(0,212,255,0.1);
      position: absolute;
      top: -2rem;
      left: -2rem;
      line-height: 1;
      font-style: normal;
    }
    .quote-attr {
      font-family: var(--display);
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      color: var(--gold);
    }

    /* FOOTER */
    footer {
      position: relative;
      z-index: 1;
      border-top: 1px solid rgba(26,111,255,0.15);
      padding: 2.5rem;
      text-align: center;
    }
    .footer-logo {
      font-family: var(--display);
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .footer-sub {
      font-size: 0.85rem;
      color: rgba(90,106,138,0.6);
    }