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

  :root {
    --bg: #001933;
    --surface: #002244;
    --card: #002952;
    --card-alt: #001528;
    --border: rgba(43,127,255,0.12);
    --border-hover: rgba(43,127,255,0.28);
    --accent: #2B7FFF;
    --accent2: #1A6AE8;
    --accent-glow: rgba(43,127,255,0.15);
    --text: #FFFFFF;
    --text2: #a8c4e8;
    --text3: #5a82b0;
    --success: #10B981;
    --font-head: 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg) !important;
    color: var(--text) !important;
    font-family: var(--font-body);
    font-size: 16px !important;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* SECTIONS */
  section { position: relative; }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
  }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 50px 0;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(43,127,255,0.12);
    border: 1px solid rgba(43,127,255,0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    color: #6AABFF;
    margin-bottom: 20px;
  }

  .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 6px var(--success);
  }

  .hero-headline {
    font-family: var(--font-head);
    font-size: clamp(30px, 4.2vw, 50px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }

  .hero-headline .gradient {
    background: linear-gradient(135deg, #2B7FFF 0%, #6AABFF 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 40px;
    font-weight: 400;
  }

  .hero-buttons {
    display: flex;
    gap: 14px;
  }

  .btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  .btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

  .btn-secondary {
    background: transparent  !important;
    color: var(--text);
    border: 1px solid var(--border-hover);
    padding: 12px 20px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .btn-secondary:hover { background: rgba(255,255,255,0.05); transform: translateY(-2px); }

  /* HERO RIGHT — PRODUCT SHOWCASE */
  .hero-visual {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-bg-grid {
    position: absolute;
    inset: -40px;
    background-image:
      linear-gradient(rgba(43,127,255,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(43,127,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: 24px;
  }

  .hero-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(43,127,255,0.10) 0%, transparent 70%);
    border-radius: 24px;
  }

  .product-stack {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .pcard {
    position: absolute;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
  }

  .pcard-main {
    width: 320px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
  }

  .pcard-sm1 {
    width: 200px;
    top: 40px;
    right: 20px;
    z-index: 2;
    transform: rotate(3deg);
    animation: float1 6s ease-in-out infinite;
  }

  .pcard-sm2 {
    width: 200px;
    bottom: 60px;
    left: 10px;
    z-index: 2;
    transform: rotate(-2deg);
    animation: float2 7s ease-in-out infinite;
  }

  .pcard-sm3 {
    width: 180px;
    bottom: 80px;
    right: 30px;
    z-index: 2;
    transform: rotate(1.5deg);
    animation: float1 5s ease-in-out infinite 1s;
  }

  @keyframes float1 {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-10px); }
  }

  @keyframes float2 {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-8px); }
  }

  .pcard-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .pcard-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .pcard-title {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .pcard-sub { font-size: 11px; color: var(--text3); }

  .wallet-balance {
    margin-bottom: 12px;
  }

  .wallet-balance .label { font-size: 11px; color: var(--text3); margin-bottom: 2px; }

  .wallet-balance .amount {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
  }

  .wallet-balance .change {
    font-size: 12px;
    color: var(--success);
    margin-top: 2px;
  }

  .token-list { display: flex; flex-direction: column; gap: 8px; }

  .token-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .token-info { display: flex; align-items: center; gap: 8px; }

  .token-dot { width: 8px; height: 8px; border-radius: 50%; }

  .token-name { font-size: 12px; font-weight: 500; }
  .token-sym { font-size: 11px; color: var(--text3); }
  .token-val { font-size: 12px; font-weight: 600; font-family: var(--font-mono); }

  .mini-chart {
    width: 100%;
    height: 40px;
    margin-top: 12px;
  }

  .nft-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }

  .nft-thumb {
    border-radius: 8px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
  }

  .tx-list { display: flex; flex-direction: column; gap: 8px; }

  .tx-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
  }

  .tx-addr { font-family: var(--font-mono); font-size: 11px; color: var(--text3); }
  .tx-amount { font-size: 12px; font-weight: 600; font-family: var(--font-mono); }
  .tx-status { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }

  /* HERO background particles */
  .hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .particle {
    position: absolute;
    width: 2px; height: 2px;
    border-radius: 50%;
    background: rgba(43,127,255,0.6);
    animation: drift linear infinite;
  }

  @keyframes drift {
    from { transform: translateY(100vh); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.5; }
    to { transform: translateY(-100px); opacity: 0; }
  }

  /* TRUST SECTION */
  #trust {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .trust-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 40px;
  }

  .logo-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: hidden;
  }

  .logos-inner {
    display: flex;
    align-items: center;
    gap: 0;
    animation: scroll-logos 30s linear infinite;
  }

  @keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-right: 1px solid var(--border);
    min-width: 180px;
    opacity: 0.5;
    transition: opacity 0.3s;
    filter: grayscale(1);
  }

  .client-logo:hover { opacity: 0.9; filter: none; }

  .client-logo-text {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text);
  }

  /* PRODUCTS */
  #products { padding: 70px 0; }

  .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .eyebrow-line {
    width: 32px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
  }

  .eyebrow-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .section-title {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .section-sub {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 30px;
  }

  .product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
    transition: border-color 0.3s;
  }

  .product-card:hover { border-color: var(--border-hover); }

  .product-card.reverse { direction: rtl; }
  .product-card.reverse > * { direction: ltr; }

  .product-content {
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .product-number {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text3);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }

  .product-name {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
    line-height: 1.1;
  }

  .product-desc {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .capability-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
  }

  .capability-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text2);
  }

  .check-icon {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .check-icon svg { width: 10px; height: 10px; }

  .btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    letter-spacing: 0.01em;
    transition: gap 0.2s;
  }

  .btn-learn:hover { gap: 12px; }

  .btn-learn svg { transition: transform 0.2s; }
  .btn-learn:hover svg { transform: translateX(3px); }

  .product-visual {
    background: var(--card-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    position: relative;
    overflow: hidden;
    min-height: 420px;
  }

  .product-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 30%, rgba(43,127,255,0.08) 0%, transparent 70%);
  }

  /* PRODUCT MOCKUPS */
  .wallet-mockup {
    width: 100%;
    max-width: 320px;
    background: #002040;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    z-index: 1;
  }

  .wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .w-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; }
  .w-badge { font-size: 11px; color: var(--success); background: rgba(16,185,129,0.1); padding: 3px 10px; border-radius: 100px; }

  .wallet-amount { font-family: var(--font-head); font-size: 36px; font-weight: 800; letter-spacing: -2px; margin-bottom: 4px; }
  .wallet-usd { font-size: 13px; color: var(--text3); margin-bottom: 20px; }

  .wallet-actions { display: flex; gap: 10px; margin-bottom: 20px; }

  .w-action {
    flex: 1;
    padding: 10px;
    background: rgba(43,127,255,0.1);
    border: 1px solid rgba(43,127,255,0.25);
    border-radius: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #6AABFF;
    cursor: pointer;
  }

  .wallet-tokens { display: flex; flex-direction: column; gap: 10px; }

  .wt-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
  }

  .wt-left { display: flex; align-items: center; gap: 10px; }

  .wt-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
  }

  .wt-name { font-size: 13px; font-weight: 600; }
  .wt-bal { font-size: 11px; color: var(--text3); }
  .wt-val { font-size: 13px; font-weight: 600; font-family: var(--font-mono); }

  /* Token minter mockup */
  .minter-mockup {
    width: 100%;
    max-width: 320px;
    background: #002040;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .minter-top {
    background: linear-gradient(135deg, rgba(43,127,255,0.2), rgba(0,100,200,0.1));
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
  }

  .minter-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
  .minter-sub { font-size: 12px; color: var(--text3); }

  .minter-body { padding: 20px; }

  .m-field {
    margin-bottom: 14px;
  }

  .m-label { font-size: 11px; color: var(--text3); margin-bottom: 6px; }

  .m-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 13px;
  }

  .m-deploy {
    width: 100%;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    padding: 12px;
    color: #fff;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .contract-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 10px;
    margin-top: 12px;
  }

  .cb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
  .cb-text { font-size: 12px; color: var(--success); font-family: var(--font-mono); }

  /* NFT mockup */
  .nft-mockup {
    width: 100%;
    max-width: 320px;
    background: #002040;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    z-index: 1;
  }

  .nft-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
  .nft-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; }
  .nft-count { font-size: 12px; color: var(--text3); }

  .nft-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }

  .nft-item {
    border-radius: 10px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .nft-item-num {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(0,0,0,0.5);
    padding: 2px 6px;
    border-radius: 4px;
  }

  .nft-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
  }

  .nft-stat { text-align: center; }
  .nft-stat-val { font-family: var(--font-head); font-size: 16px; font-weight: 700; }
  .nft-stat-label { font-size: 10px; color: var(--text3); margin-top: 2px; }

  /* DISCOVERY CTA */
  #discovery {
    padding: 70px 0;
  }

  .discovery-inner {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
  }

  .discovery-inner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(43,127,255,0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .discovery-headline {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .discovery-sub {
    font-size: 16px;
    color: var(--text2);
    max-width: 480px;
    line-height: 1.7;
  }

  /* PROCESS */
  #process { padding: 70px 0; }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    margin-top: 50px;
  }

  .process-step {
    background: var(--card);
    padding: 30px 26px;
    position: relative;
    transition: background 0.3s;
  }

  .process-step:hover { background: #192038; }

  .step-number {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: block;
  }

  .step-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(43,127,255,0.1);
    border: 1px solid rgba(43,127,255,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }

  .step-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

  .step-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }

  .step-desc { font-size: 14px; color: var(--text2); line-height: 1.6;margin-bottom: 0; }

  .step-connector {
    position: absolute;
    top: 60px; right: -16px;
    width: 32px; height: 32px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .step-connector svg { width: 14px; height: 14px; stroke: var(--text3); fill: none; stroke-width: 2; }

  /* WHY QUEST */
  #why { padding: 70px 0; background: linear-gradient(180deg, transparent, rgba(109,93,251,0.02) 50%, transparent); }

  .bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 52px;
  }

  .bento-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
  }

  .bento-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }

  .bento-large { grid-column: span 4; }
  .bento-medium { grid-column: span 4; }
  .bento-small { grid-column: span 4; }
  .bento-wide { grid-column: span 4; }
  .bento-full-row-l { grid-column: span 4; }
  .bento-full-row-r { grid-column: span 4; }

  .bento-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }

  .bento-icon svg { width: 22px; height: 22px; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

  .bento-num {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .bento-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
  }

  .bento-desc { font-size: 14px; color: var(--text2); line-height: 1.65; }

  .bento-accent-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 0 0 0 0;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .bento-card:hover .bento-accent-line { opacity: 1; }

  /* TEAM */
  #team { padding: 70px 0; }

  .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 72px;
  }

  .team-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: border-color 0.3s;
  }

  .team-card:hover { border-color: var(--border-hover); }

  .team-card-header {
    padding: 20px 28px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .team-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .team-icon svg { width: 26px; height: 26px; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }

  .team-role {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
  }

  .team-desc { font-size: 14px; color: var(--text2); line-height: 1.6; }

  .team-card-body { padding:  20px 28px 20px; }

  .code-block {
    background: #0A0E1A;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.8;
  }

  .code-kw { color: #7C6FF4; }
  .code-fn { color: #60A5FA; }
  .code-str { color: #34D399; }
  .code-cm { color: #4A5568; }
  .code-num { color: #F59E0B; }
  .code-var { color: #E2E8F0; }

  .workflow-list { display: flex; flex-direction: column; gap: 12px; }

  .wf-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
  }

  .wf-num {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    width: 24px;
    flex-shrink: 0;
    padding-top: 1px;
  }

  .wf-title { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
  .wf-detail { font-size: 13px; color: var(--text3); }

  /* QA */
  #qa { padding: 70px 0; }

  .qa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 72px;
  }

  .qa-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px ;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
  }

  .qa-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }

  .qa-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 600;
    color: var(--success);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .qa-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 10px; }
  .qa-desc { font-size: 14px; color: var(--text2); line-height: 1.65;margin-bottom: 0; }

  .qa-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(16,185,129,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .qa-icon svg { width: 24px; height: 24px; stroke: var(--success); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

  /* FINAL CTA */
  #final-cta { padding: 70px 0 100px; }

  .cta-inner {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 20% 50%, rgba(109,93,251,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 70% 60% at 80% 50%, rgba(59,130,246,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-headline {
    font-family: var(--font-head);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .cta-sub {
    font-size: 16px;
    color: var(--text2);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }

  .cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  /* Animations */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: none;
  }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: #2A3550; border-radius: 3px; }

  /* =============================================
     RESPONSIVE — HAMBURGER NAV
  ============================================= */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(0,25,51,0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 24px 24px 32px;
    z-index: 99;
    flex-direction: column;
    gap: 0;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu li { list-style: none; border-bottom: 1px solid var(--border); }
  .mobile-menu li:last-child { border-bottom: none; }
  .mobile-menu a {
    display: block;
    padding: 16px 0;
    color: var(--text2);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--text); }
  .mobile-menu .nav-cta {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    text-align: center;
  }

  /* =============================================
     TABLET — 1024px
  ============================================= */
  @media (max-width: 1024px) {
    nav { padding: 0 32px; }
    .container { padding: 0 32px; }

    .nav-links { gap: 24px; }

    .hero-grid { gap: 48px; padding: 80px 0; }
    .hero-visual { height: 460px; }

    .pcard-main { width: 280px; }
    .pcard-sm1, .pcard-sm2, .pcard-sm3 { width: 170px; }

    .product-card {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .bento-large { grid-column: span 6; }
    .bento-medium { grid-column: span 6; }
    .bento-small { grid-column: span 6; }
    .bento-wide { grid-column: span 6; }
    .bento-full-row-l { grid-column: span 6; }
    .bento-full-row-r { grid-column: span 6; }

    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .step-connector { display: none; }

    .team-grid { grid-template-columns: 1fr; }

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

    .discovery-inner { padding: 48px; }

    .cta-inner { padding: 72px 48px; }
  }

  /* =============================================
     MOBILE — 768px
  ============================================= */
  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .container { padding: 0 20px; }

    /* HERO */
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 60px 0 40px;
      text-align: center;
    }
    .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto;font-size: 14px; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .hero-badge { display: inline-flex; }

    .hero-visual {
      height: 340px;
      order: -1;
    }
    .pcard-main { width: 240px; }
    .pcard-sm1, .pcard-sm2, .pcard-sm3 { display: none; }

    /* SECTION TITLES */
    .section-title { font-size: clamp(26px, 7vw, 36px); }
    .section-sub { font-size: 15px; }

    /* PRODUCTS */
    .product-card {
      grid-template-columns: 1fr !important;
      gap: 32px;
      padding: 32px 24px !important;
    }
  .cta-sub {
    font-size: 14px;
    margin: 0 auto 20px;
  }
    .product-card.reverse .product-content { order: 0; }
    .product-card.reverse .product-visual { order: 1; }
    .product-visual { display: flex; justify-content: center; }
    .product-name { font-size: clamp(28px, 8vw, 42px); }
.product-content, .product-visual{
    padding: 16px 10px;
}
.product-desc{
    font-size: 14px;
}
    .wallet-mockup,
    .minter-mockup,
    .nft-mockup { max-width: 100%; width: 100%; }

    /* BENTO / WHY */
    .bento-large,
    .bento-medium,
    .bento-small,
    .bento-wide,
    .bento-full-row-l,
    .bento-full-row-r { grid-column: span 12; }
    .bento-grid { gap: 14px; margin-top: 48px; }
    .bento-card { padding: 20px 16px; }
    .bento-num { font-size: 44px; }
#products {
    padding: 60px 0;
}
    /* PROCESS */
    .process-grid { grid-template-columns: 1fr; margin-top: 48px; }
    .process-step { padding: 36px 28px; }
    #process { padding: 60px 0; }

    /* TEAM */
    #team { padding: 60px 0; }
    .team-grid { grid-template-columns: 1fr; margin-top: 48px; gap: 16px; }
    .team-card-header { padding: 24px 24px 20px; }
    .team-card-body { padding: 20px 24px 28px; }

    /* QA */
    #qa { padding: 60px 0; }
    .qa-grid { grid-template-columns: 1fr; margin-top: 48px; gap: 14px; }

    /* DISCOVERY */
    #discovery { padding: 48px 0; }
    .discovery-inner {
      flex-direction: column;
      text-align: center;
      padding: 40px 28px;
      gap: 28px;
    }
    .discovery-headline { font-size: 24px; }
    .discovery-sub { font-size: 14px; }

    /* WHY */
    #why { padding: 60px 0; }

    /* CTA */
    #final-cta { padding: 60px 0 60px; }
    .cta-inner { padding: 52px 28px; border-radius: 20px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary { width: 100%; justify-content: center; }

    /* FOOTER */
    .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { gap: 20px; flex-wrap: wrap; justify-content: center; }

    /* HERO BUTTONS full-width on very small */
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary { justify-content: center; }
  }

  /* =============================================
     SMALL MOBILE — 480px
  ============================================= */
  @media (max-width: 480px) {
    .hero-visual { height: 260px; }
    .pcard-main { width: 260px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary { width: 100%; justify-content: center; }

    .bento-num { font-size: 38px; letter-spacing: -2px; }
    .bento-title { font-size: 17px; }

    .discovery-inner { padding: 32px 20px; }

    .cta-inner { padding: 40px 20px; }

    nav { padding: 0 16px; }
    .container { padding: 0 16px; }

    .product-card { padding: 20px 10px !important; }
    .process-step { padding: 28px 20px; }
  }