  :root {
    --void: #131128;
    --deep: #1a1733;
    --surface: #211d3f;
    --card: #282349;
    --card-hover: #322c58;
    --border: rgba(160, 140, 235, 0.3);
    --border-bright: rgba(180, 150, 255, 0.6);
    --purple-core: #7b3fdb;
    --purple-bright: #a060ff;
    --cyan: #1eeaff;
    --cyan-dim: rgba(30, 234, 255, 0.7);
    --magenta: #e35bff;
    --text-primary: #ffffff;
    --text-secondary: rgba(228, 223, 255, 0.88);
    --text-muted: rgba(200, 193, 240, 0.68);
    --glow-purple: 0 0 40px rgba(123, 63, 219, 0.35);
    --glow-cyan: 0 0 30px rgba(0, 229, 255, 0.25);
  }

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

  html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

  body {
    background: var(--void);
    color: var(--text-primary);
    font-family: 'Instrument Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  h1, h2, h3, p, span, a, li {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  img { max-width: 100%; }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    box-shadow: 0 0 15px var(--cyan), 0 0 30px rgba(0,229,255,0.4);
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(0, 229, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.12s ease;
  }
  body:has(a:hover) .cursor { width: 16px; height: 16px; background: var(--magenta); }
  body:has(a:hover) .cursor-ring { width: 50px; height: 50px; border-color: var(--magenta); }

  /* Disable the custom cursor entirely on touch devices, it has nothing to track
     there and was getting stuck on-screen instead of following a real pointer */
  @media (hover: none), (pointer: coarse) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
  }

  /* HEX GRID BACKGROUND */
  .hex-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .hex-bg svg {
    width: 100%; height: 100%;
    opacity: 0.045;
  }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
  }

  /* AMBIENT ORBS */
  .orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    animation: orb-drift 20s ease-in-out infinite alternate;
  }
  .orb-1 { width: 600px; height: 600px; background: rgba(123, 63, 219, 0.12); top: -200px; left: -100px; animation-delay: 0s; }
  .orb-2 { width: 500px; height: 500px; background: rgba(0, 229, 255, 0.07); top: 40%; right: -150px; animation-delay: -7s; }
  .orb-3 { width: 400px; height: 400px; background: rgba(208, 64, 251, 0.08); bottom: -100px; left: 30%; animation-delay: -14s; }

  @keyframes orb-drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(40px, -60px) scale(1.15); }
  }

  /* LAYOUT */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

  /* ======= NAV ======= */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    background: rgba(19, 17, 40, 0.82);
  }
  nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .nav-logo img {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
  }
  .nav-logo-text {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--text-primary);
  }
  .nav-logo-text span { color: var(--cyan); }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--cyan);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--cyan); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    padding: 10px 22px;
    background: transparent;
    border: 1px solid var(--border-bright);
    color: var(--text-primary);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--purple-core);
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: -1;
  }
  .nav-cta:hover { border-color: var(--purple-bright); color: white; box-shadow: var(--glow-purple); }
  .nav-cta:hover::before { transform: translateX(0); }

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

  /* NAV TOGGLE (mobile hamburger) */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px; height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 9, 22, 0.65);
    backdrop-filter: blur(2px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-overlay.open { opacity: 1; pointer-events: auto; }

  /* ======= HERO ======= */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    position: relative;
    overflow: hidden;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .hero-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fade-up 0.8s ease forwards 0.2s;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px; height: 1px;
    background: var(--cyan);
  }
  .hero-title {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: clamp(42px, 5.2vw, 68px);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fade-up 0.8s ease forwards 0.35s;
  }
  .hero-title .line-1 { display: block; color: var(--text-primary); }
  .hero-title .line-2 {
    display: block;
    overflow-wrap: normal;
    word-break: normal;
    background: linear-gradient(90deg, var(--purple-bright), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-title .line-3 { display: block; color: var(--text-primary); }
  .hero-lead {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-primary);
    max-width: 480px;
    margin-bottom: 14px;
    padding-left: 16px;
    border-left: 2px solid var(--cyan);
    opacity: 0;
    animation: fade-up 0.8s ease forwards 0.48s;
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fade-up 0.8s ease forwards 0.6s;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up 0.8s ease forwards 0.65s;
  }
  .btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--purple-core), var(--purple-bright));
    color: white;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: none;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(123, 63, 219, 0.4);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .btn-primary:hover {
    box-shadow: 0 0 50px rgba(123, 63, 219, 0.7), 0 0 80px rgba(0, 229, 255, 0.2);
    transform: translateY(-2px);
  }
  .btn-ghost {
    padding: 14px 32px;
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--border);
    cursor: none;
    transition: all 0.3s;
  }
  .btn-ghost:hover { border-color: var(--border-bright); color: var(--text-primary); }

  /* HERO VISUAL */
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    animation: fade-in 1.2s ease forwards 0.5s;
  }
  .hero-logo-wrap {
    position: relative;
    width: 340px;
    height: 340px;
  }
  .hero-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.4)) drop-shadow(0 0 60px rgba(123, 63, 219, 0.5));
    animation: logo-float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
  }
  .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: ring-spin linear infinite;
  }
  .ring-1 { width: 380px; height: 380px; border-color: rgba(123, 63, 219, 0.2); animation-duration: 25s; }
  .ring-2 { width: 440px; height: 440px; border-color: rgba(0, 229, 255, 0.1); animation-duration: 40s; animation-direction: reverse; border-style: dashed; }
  .ring-3 { width: 500px; height: 500px; border-color: rgba(208, 64, 251, 0.07); animation-duration: 60s; }

  .ring-dot {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
    top: 50%; left: 50%;
  }
  .ring-1 .ring-dot { transform: translate(-50%, calc(-190px + 3px)); }

  @keyframes ring-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }
  @keyframes logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
  }

  /* ======= SECTION SHARED ======= */
  section { position: relative; z-index: 2; }

  .section-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--cyan);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-eyebrow::before {
    content: '';
    display: block;
    width: 20px; height: 1px;
    background: var(--cyan);
    flex-shrink: 0;
  }
  .section-title {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 3.6vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  .section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
  }

  /* ======= STATS STRIP ======= */
  .stats-strip {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .stat-item {
    padding: 20px 32px;
    border-right: 1px solid var(--border);
    text-align: center;
  }
  .stat-item:last-child { border-right: none; }
  .stat-number {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: 46px;
    color: var(--text-primary);
    line-height: 1;
    background: linear-gradient(135deg, var(--text-primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
  }

  /* ======= PRODUCTS ======= */
  #products { padding: 120px 0; }
  .products-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .products-header .section-eyebrow { justify-content: center; }
  .products-header .section-eyebrow::before { display: none; }
  .products-header .section-subtitle { margin: 0 auto; text-align: center; }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .product-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 44px 36px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s, border-color 0.4s, transform 0.4s;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .product-card:hover { transform: translateY(-4px); border-color: var(--border-bright); }
  .product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .product-card:hover { background: var(--card-hover); }
  .product-card:hover::before { opacity: 1; }
  .card-tokenhive::before { background: linear-gradient(180deg, var(--purple-bright), var(--cyan)); }
  .card-vasp::before { background: linear-gradient(180deg, var(--cyan), var(--magenta)); }
  .card-wallet::before { background: linear-gradient(180deg, var(--magenta), var(--purple-bright)); }

  .card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 26px;
  }
  .card-status {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-top: 8px;
    white-space: nowrap;
  }
  .status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: dot-pulse 2.4s ease-in-out infinite;
  }
  .status-dot.live { background: #00ff88; box-shadow: 0 0 8px #00ff88; }
  .status-dot.beta { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
  @keyframes dot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
  }

  .card-icon {
    width: 64px; height: 64px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    flex-shrink: 0;
  }
  .product-card:hover .card-icon {
    border-color: var(--border-bright);
    box-shadow: var(--glow-purple);
  }
  .card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.4));
  }
  .card-chain-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--purple-bright);
    margin-bottom: 12px;
  }
  .card-name {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    line-height: 1.1;
  }
  .card-tagline {
    font-size: 12px;
    color: var(--cyan);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    flex: 1;
  }
  .card-features {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .card-features li {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
  }
  .card-features li::before {
    content: '⬡';
    color: var(--cyan);
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(123, 63, 219, 0.08);
    border: 1px solid var(--border);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-top: auto;
  }
  .card-link:hover {
    background: rgba(123, 63, 219, 0.2);
    border-color: var(--border-bright);
    color: var(--cyan);
    box-shadow: var(--glow-purple);
  }
  .card-link-arrow { font-size: 16px; transition: transform 0.2s; }
  .card-link:hover .card-link-arrow { transform: translateX(4px); }
  .card-link.coming-soon {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
  }
  .card-link.coming-soon:hover { opacity: 0.5; }

  /* ======= ECOSYSTEM ======= */
  #ecosystem {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(123, 63, 219, 0.04), transparent);
  }
  .ecosystem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .ecosystem-text .section-title { margin-bottom: 20px; }
  .ecosystem-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .ecosystem-text .highlight {
    color: var(--cyan);
    font-weight: 600;
  }
  .chain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 40px;
  }
  .chain-chip {
    padding: 10px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  }
  .chain-chip.active { background: rgba(0, 229, 255, 0.07); border-color: rgba(0, 229, 255, 0.3); color: var(--cyan); }
  .chain-chip:hover { border-color: var(--border-bright); color: var(--text-primary); }

  /* ECOSYSTEM VISUAL */
  .ecosystem-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hex-cluster {
    position: relative;
    width: 360px;
    height: 360px;
  }
  .hex-node {
    position: absolute;
    width: 80px; height: 80px;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.4s;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  }
  .hex-node:hover { border-color: var(--border-bright); color: var(--cyan); }
  .hex-node.core {
    width: 110px; height: 110px;
    background: rgba(123, 63, 219, 0.15);
    border-color: var(--border-bright);
    color: var(--cyan);
    font-size: 9px;
    box-shadow: var(--glow-purple);
  }
  .hex-node.core img {
    width: 54px; height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
  }
  /* hex layout positions */
  .hex-n0 { top: 50%; left: 50%; transform: translate(-50%, -50%); }
  .hex-n1 { top: 10%; left: 50%; transform: translateX(-50%); }
  .hex-n2 { top: 28%; right: 5%; }
  .hex-n3 { top: 62%; right: 5%; }
  .hex-n4 { bottom: 5%; left: 50%; transform: translateX(-50%); }
  .hex-n5 { top: 62%; left: 5%; }
  .hex-n6 { top: 28%; left: 5%; }

  .hex-connector {
    position: absolute;
    top: 50%; left: 50%;
    background: linear-gradient(90deg, rgba(0,229,255,0.3), transparent);
    height: 1px;
    transform-origin: left center;
  }

  /* ======= ABOUT ======= */
  #about {
    padding: 120px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .about-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(123, 63, 219, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-text .section-title { margin-bottom: 20px; }
  .about-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .capability-item {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 24px 20px;
    transition: border-color 0.3s, background 0.3s;
  }
  .capability-item:hover {
    border-color: var(--border-bright);
    background: var(--card-hover);
  }
  .capability-icon {
    font-size: 22px;
    display: block;
    margin-bottom: 14px;
  }
  .capability-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 8px;
  }
  .capability-item p {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  /* ======= VISION ======= */
  #vision { padding: 120px 0; }
  .vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 60px;
  }
  .vision-item {
    background: var(--card);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .vision-item:hover { background: var(--card-hover); }
  .vision-item-num {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: 68px;
    color: rgba(123, 63, 219, 0.1);
    line-height: 1;
    position: absolute;
    top: 20px; right: 24px;
    transition: color 0.3s;
  }
  .vision-item:hover .vision-item-num { color: rgba(123, 63, 219, 0.2); }
  .vision-item-title {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 21px;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
    color: var(--text-primary);
  }
  .vision-item-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
  }
  .vision-item-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
  }

  /* ======= CTA ======= */
  #join {
    padding: 120px 0;
    text-align: center;
    position: relative;
  }
  .cta-glow {
    position: absolute;
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(123, 63, 219, 0.15) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  #join .section-eyebrow { justify-content: center; }
  #join .section-eyebrow::before { display: none; }
  #join .section-title { font-size: clamp(36px, 5vw, 64px); margin-bottom: 20px; }
  #join p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }
  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-discord {
    padding: 16px 36px;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.4);
    color: #99aaff;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: none;
    transition: all 0.3s;
  }
  .btn-discord:hover {
    background: rgba(88, 101, 242, 0.3);
    border-color: rgba(88, 101, 242, 0.7);
    color: white;
  }
  .btn-x {
    padding: 16px 36px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: none;
    transition: all 0.3s;
  }
  .btn-x:hover { border-color: var(--border-bright); color: var(--text-primary); }

  /* ======= FOOTER ======= */
  footer {
    border-top: 1px solid var(--border);
    padding: 48px 0;
    position: relative;
    z-index: 2;
  }
  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .footer-brand img { width: 28px; height: 28px; opacity: 0.7; }
  .footer-brand-name {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--text-muted);
  }
  .footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
  }
  .footer-links a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s;
    font-family: 'JetBrains Mono', monospace;
  }
  .footer-links a:hover { color: var(--text-secondary); }
  .footer-copy {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
  }

  /* ANIMATIONS */
  @keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* MOBILE */
  @media (max-width: 900px) {
    .container { padding: 0 20px; }

    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }

    /* Logo becomes an ambient background on the hero instead of disappearing */
    .hero {
      position: relative;
      isolation: isolate;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('app_logo.png');
      background-repeat: no-repeat;
      background-position: center 62%;
      background-size: min(78vw, 420px);
      opacity: 0.14;
      z-index: -1;
      pointer-events: none;
    }
    .hero-title { font-size: clamp(30px, 10vw, 84px); }
    .hero-lead, .hero-desc { max-width: 100%; }

    .section-title { font-size: clamp(30px, 8vw, 52px); }

    .products-grid { grid-template-columns: 1fr; }
    .product-card { padding: 32px 24px 28px; }
    .card-top { flex-wrap: wrap; row-gap: 12px; }
    .card-status { white-space: normal; padding-top: 2px; }

    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .stat-item { padding: 12px 8px; }
    .stat-number { font-size: 34px; }
    .stat-label { font-size: 9px; letter-spacing: 1px; }

    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .capability-grid { grid-template-columns: repeat(2, 1fr); }

    .ecosystem-inner { grid-template-columns: 1fr; }
    .ecosystem-visual { display: none; }
    .vision-grid { grid-template-columns: 1fr; }
    .vision-item { padding: 32px 24px; }
    .vision-item-num { font-size: 52px; top: 16px; right: 20px; }

    .chain-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-actions { width: 100%; }
    .cta-actions a { flex: 1 1 auto; text-align: center; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-links { flex-wrap: wrap; gap: 16px 24px; }

    /* Real slide-in nav instead of vanishing links */
    .nav-toggle { display: flex; }
    .nav-links {
      position: fixed;
      top: 0;
      right: 0;
      width: min(78vw, 320px);
      height: 100vh;
      margin: 0;
      padding: 100px 32px 40px;
      background: rgba(21, 19, 43, 0.98);
      backdrop-filter: blur(20px);
      border-left: 1px solid var(--border);
      flex-direction: column;
      align-items: flex-start;
      gap: 28px;
      z-index: 100;
      transform: translateX(100%);
      transition: transform 0.35s ease;
      overflow-y: auto;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 15px; }
  }

  @media (max-width: 480px) {
    .nav-logo-text { display: none; }
    .nav-cta { padding: 9px 16px; font-size: 11px; }
    .capability-grid { grid-template-columns: 1fr; }
    .chain-grid { grid-template-columns: repeat(2, 1fr); }
    .card-name { font-size: 23px; }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 8px; letter-spacing: 0.5px; }
    .marquee-item { padding: 0 24px; font-size: 10px; }
  }


  /* MARQUEE */
  .marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    background: rgba(123, 63, 219, 0.03);
  }
  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 25s linear infinite;
    width: max-content;
  }
  .marquee-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    border-right: 1px solid var(--border);
  }
  .marquee-item span { color: var(--cyan); }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
