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

    :root {
      --bg:       #000000;
      --cyan:     #00d4ff;
      --cyan-dim: #00a8cc;
      --white:    #ffffff;
      --muted:    #8a9bb5;
      --border:   rgba(0,212,255,0.18);
    }

    /* ── FULLSCREEN LAYOUT ── */
    html, body {
      background: var(--bg);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      height: 100vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    /* ── NAVBAR ── */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 64px;
      flex-shrink: 0;
      background: rgba(0,0,0,0.9);
      border-bottom: 1px solid var(--border);
      z-index: 10;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .nav-logo img {
      width: 34px; height: 34px;
      object-fit: contain;
    }
    .nav-logo-text {
      font-family: 'Orbitron', monospace;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.06em;
      color: var(--white);
    }
    .nav-logo-text span { color: var(--cyan); }

    .nav-actions { display: flex; align-items: center; gap: 12px; }

    .btn-ghost {
      background: transparent;
      border: 1.5px solid #3a4455;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 22px;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

    .btn-cyan {
      background: var(--cyan);
      border: none;
      color: #000;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 700;
      padding: 9px 24px;
      border-radius: 6px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      text-decoration: none;
      transition: background 0.2s, box-shadow 0.2s;
    }
    .btn-cyan:hover { background: var(--cyan-dim); box-shadow: 0 0 20px rgba(0,212,255,0.4); }

    /* ── HERO (fills remaining height) ── */
    .hero {
      flex: 1;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      min-height: 0;
    }

    .hero-main {
      flex: 1;
      display: flex;
      align-items: center;
      padding: 0 48px;
      position: relative;
      overflow: hidden;
      min-height: 0;
    }

    /* grid bg */
    .hero-main::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    /* radial glow */
    .hero-main::after {
      content: '';
      position: absolute;
      right: 8%;
      top: 50%;
      transform: translateY(-50%);
      width: 55vh;
      height: 55vh;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,212,255,0.09) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-content {
      flex: 0 0 50%;
      max-width: 600px;
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 5px 14px 5px 9px;
      font-size: 12px;
      color: var(--cyan);
      font-weight: 500;
      margin-bottom: 22px;
      background: rgba(0,212,255,0.04);
    }
    .hero-badge svg { width: 13px; height: 13px; }

    .hero-title {
      font-family: 'Inter', sans-serif;
      font-size: clamp(36px, 4.5vw, 62px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
      color: var(--white);
    }
    .hero-title .accent { color: var(--cyan); }

    .hero-desc {
      font-size: 15px;
      line-height: 1.65;
      color: var(--muted);
      max-width: 460px;
      margin-bottom: 28px;
      font-weight: 400;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--cyan);
      color: #000;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 700;
      padding: 13px 30px;
      border-radius: 7px;
      text-decoration: none;
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    }
    .hero-cta:hover {
      background: var(--cyan-dim);
      box-shadow: 0 0 28px rgba(0,212,255,0.5);
      transform: translateY(-2px);
    }

    /* bee wrapper — right half, flex-centers everything */
    .bee-wrapper {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      pointer-events: none;
    }

    /* all three layers share the same flex centre — stacked via z-index */
    .bee-glow {
      position: absolute;
      width: min(50vh, 460px);
      height: min(50vh, 460px);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,212,255,0.11) 0%, transparent 68%);
      z-index: 1;
    }

    .bee-ring {
      position: absolute;
      width: min(44vh, 400px);
      height: min(44vh, 400px);
      border-radius: 50%;
      border: 1px solid rgba(0,212,255,0.22);
      z-index: 2;
    }
    .bee-ring::before {
      content: '';
      position: absolute;
      inset: 16px;
      border-radius: 50%;
      border: 1px solid rgba(0,212,255,0.10);
    }
    .bee-ring::after {
      content: '';
      position: absolute;
      inset: 32px;
      border-radius: 50%;
      border: 1px solid rgba(0,212,255,0.05);
    }

    /* bee = 78% of ring diameter → always inside the circle */
    .hero-bee {
      position: absolute;
      width: min(66.3vh, 609px);
      height: min(66.3vh, 609px);
      object-fit: contain;
      z-index: 3;
      pointer-events: none;
    }

    /* ── STATS BAR ── */
    .stats-bar {
      display: flex;
      align-items: center;
      padding: 0 48px;
      height: 88px;
      flex-shrink: 0;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .stat-item {
      display: flex;
      align-items: center;
      gap: 16px;
      flex: 1;
    }
    .stat-item + .stat-item {
      border-left: 1px solid rgba(255,255,255,0.07);
      padding-left: 40px;
    }

    .stat-icon {
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 1.5px solid rgba(0,212,255,0.28);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--cyan);
    }
    .stat-icon svg { width: 17px; height: 17px; }

    .stat-num {
      font-family: 'Inter', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      letter-spacing: -0.02em;
    }
    .stat-label {
      font-size: 12px;
      color: var(--muted);
      margin-top: 3px;
      font-weight: 400;
    }

    /* ── FOOTER ── */
    footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 50px;
      flex-shrink: 0;
      border-top: 1px solid rgba(255,255,255,0.05);
      font-size: 12px;
      color: var(--muted);
    }

    footer .footer-links { display: flex; align-items: center; gap: 4px; }
    footer a { color: var(--muted); text-decoration: none; padding: 0 8px; transition: color 0.2s; }
    footer a:hover { color: var(--cyan); }
    footer .sep { opacity: 0.25; }

    .footer-socials { display: flex; gap: 18px; align-items: center; }
    .footer-socials a { color: var(--muted); transition: color 0.2s; }
    .footer-socials a:hover { color: var(--cyan); }