  :root {
    --bg: #0c0a24;
    --bg2: #110e2e;
    --card: #1a1740;
    --card2: #201c4d;
    --purple: #7c5cfc;
    --purple-lt: #a48bff;
    --pink: #ff6ba6;
    --mint: #2fe6b7;
    --yellow: #ffcb52;
    --text: #ffffff;
    --muted: #a49fd0;
    --line: rgba(164,139,255,0.16);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden;
    /* page-level breathing room around the whole site */
    --page-gutter: 40px;
    padding: var(--page-gutter) var(--page-gutter) 0;
  }
  @media (max-width: 768px) { body { --page-gutter: 20px; } }
  @media (max-width: 480px) { body { --page-gutter: 12px; } }
  .mono { font-family: 'JetBrains Mono', monospace; }
  a { color: inherit; text-decoration: none; }
  .grad-text { background: linear-gradient(100deg, var(--purple-lt), var(--mint)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

  /* ambient background blobs */
  .bg-fx { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
  .blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
  .blob.b1 { width: 480px; height: 480px; background: radial-gradient(circle, var(--purple), transparent 70%); top: -140px; left: -120px; }
  .blob.b2 { width: 420px; height: 420px; background: radial-gradient(circle, var(--pink), transparent 70%); top: 40%; right: -160px; opacity: 0.35; }
  .blob.b3 { width: 380px; height: 380px; background: radial-gradient(circle, var(--mint), transparent 70%); bottom: -120px; left: 30%; opacity: 0.28; }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
  @media (max-width: 600px) { .wrap { padding: 0 20px; } }

  /* floating coins */
  .coin { position: absolute; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5), inset 0 -6px 14px rgba(0,0,0,0.25), inset 0 6px 12px rgba(255,255,255,0.35); z-index: 3; }
  .coin.c-eth { background: linear-gradient(150deg, #8a7dff, #5b46d6); }
  .coin.c-mint { background: linear-gradient(150deg, #4ff0c6, #17b58c); }
  .coin.c-pink { background: linear-gradient(150deg, #ff8fbd, #ff4f8f); }
  .coin.c-yellow { background: linear-gradient(150deg, #ffd977, #ffb01f); }
  .ring-dash { position: absolute; border: 2px dashed rgba(164,139,255,0.4); border-radius: 50%; z-index: 1; }

  /* section heading */
  .eyebrow { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mint); background: rgba(47,230,183,0.1); border: 1px solid rgba(47,230,183,0.25); padding: 7px 16px; border-radius: 30px; margin-bottom: 20px; }
  .sec-title { font-size: clamp(30px, 4.4vw, 52px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.06; }
  .sec-sub { color: var(--muted); font-size: 16.5px; line-height: 1.6; margin-top: 16px; max-width: 560px; }
  .center { text-align: center; }
  .center .sec-sub { margin-left: auto; margin-right: auto; }

  /* buttons */
  .btn { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; padding: 15px 30px; border-radius: 40px; cursor: pointer; transition: transform 0.18s, box-shadow 0.25s; }
  .btn-fill { background: linear-gradient(100deg, var(--purple), var(--pink)); color: #fff; box-shadow: 0 12px 34px -8px rgba(124,92,252,0.7); }
  .btn-fill:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -8px rgba(124,92,252,0.9); }
  .btn-ghost { border: 1.5px solid var(--line); color: var(--text); background: rgba(255,255,255,0.02); }
  .btn-ghost:hover { border-color: var(--purple-lt); transform: translateY(-3px); }

  /* NAV */
  nav { position: fixed; top: var(--page-gutter); left: var(--page-gutter); right: var(--page-gutter); z-index: 40; display: flex; align-items: center; justify-content: space-between; padding: 16px 26px; border-radius: 18px; transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s; border: 1px solid transparent; }
  nav.scrolled { background: rgba(12,10,36,0.82); backdrop-filter: blur(14px); border-color: var(--line); }
  .logo { font-size: 24px; font-weight: 900; letter-spacing: 0.01em; display: flex; align-items: center; gap: 9px; }
  .logo .mark { width: 30px; height: 30px; border-radius: 10px; background: linear-gradient(140deg, var(--purple), var(--mint)); display: inline-block; box-shadow: 0 6px 16px -4px rgba(124,92,252,0.7); }
  .nav-links { display: flex; gap: 30px; align-items: center; }
  .nav-links a:not(.btn) { color: var(--muted); font-size: 15px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:not(.btn):hover { color: var(--text); }
  .nav-links .btn { padding: 11px 22px; font-size: 14px; }
  @media (max-width: 820px) { .nav-links a:not(.btn) { display: none; } }

  /* HERO */
  .hero { position: relative; z-index: 2; min-height: 100vh; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 40px; max-width: 1180px; margin: 0 auto; padding: 130px 32px 60px; }
  @media (max-width: 940px) { .hero { grid-template-columns: 1fr; text-align: center; padding-top: 120px; } }
  .hero h1 { font-size: clamp(46px, 7vw, 84px); font-weight: 900; line-height: 1.02; letter-spacing: -0.03em; }
  .hero p.lede { color: var(--muted); font-size: 18px; line-height: 1.65; max-width: 480px; margin: 26px 0 36px; }
  @media (max-width: 940px) { .hero p.lede { margin-left: auto; margin-right: auto; } }
  .hero-actions { display: flex; gap: 14px; }
  @media (max-width: 940px) { .hero-actions { justify-content: center; } }
  .hero-badges { display: flex; gap: 26px; margin-top: 40px; }
  @media (max-width: 940px) { .hero-badges { justify-content: center; } }
  .hbadge .n { font-size: 26px; font-weight: 800; }
  .hbadge .l { font-size: 13px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }

  /* hero visual card */
  .hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 440px; }
  .showcase { position: relative; width: 330px; height: 400px; border-radius: 28px; padding: 3px; background: linear-gradient(150deg, var(--purple), var(--mint)); box-shadow: 0 40px 90px -30px rgba(124,92,252,0.8); z-index: 3; }
  .showcase-inner { width: 100%; height: 100%; border-radius: 25px; background: var(--card); overflow: hidden; display: flex; flex-direction: column; }
  .sc-art { flex: 1; background: linear-gradient(135deg, #2a2260, #3a2c7a); position: relative; overflow: hidden; }
  .sc-art .term { position: absolute; inset: 18px; font-family: 'JetBrains Mono', monospace; font-size: 12px; line-height: 1.9; }
  .sc-art .prompt { color: var(--mint); }
  .sc-art .comment { color: var(--muted); }
  .sc-art .amber { color: var(--yellow); }
  .sc-cursor { display: inline-block; width: 7px; height: 13px; background: var(--yellow); vertical-align: middle; animation: blink 1s step-end infinite; }
  @keyframes blink { 50% { opacity: 0; } }
  .sc-foot { padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
  .sc-foot .name { font-weight: 700; font-size: 15px; }
  .sc-foot .by { font-size: 12px; color: var(--muted); }
  .sc-foot .price { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--mint); }

  /* MARQUEE */
  .marquee-wrap { position: relative; z-index: 2; padding: 26px 0; margin: 40px 0; background: linear-gradient(100deg, var(--purple), var(--pink)); transform: rotate(-2deg); overflow: hidden; }
  .marquee { display: flex; gap: 40px; width: max-content; animation: scroll 22s linear infinite; }
  .marquee span { font-size: 26px; font-weight: 800; white-space: nowrap; display: flex; align-items: center; gap: 40px; }
  .marquee .star { color: var(--yellow); }
  @keyframes scroll { to { transform: translateX(-50%); } }

  /* SECTION */
  .sec { position: relative; z-index: 2; padding: 90px 0; }
  .sec-head { max-width: 640px; margin-bottom: 56px; }
  .sec-head.center { margin-left: auto; margin-right: auto; }

  /* STEP CARDS */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  @media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
  .step-card { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 32px 26px; text-align: center; transition: transform 0.25s, box-shadow 0.25s; }
  .step-card:hover { transform: translateY(-8px); box-shadow: 0 26px 60px -20px rgba(124,92,252,0.6); }
  .step-icon { width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 22px; display: flex; align-items: center; justify-content: center; }
  .step-card:nth-child(1) .step-icon { background: linear-gradient(150deg, #8a7dff, #5b46d6); }
  .step-card:nth-child(2) .step-icon { background: linear-gradient(150deg, #4ff0c6, #17b58c); }
  .step-card:nth-child(3) .step-icon { background: linear-gradient(150deg, #ff8fbd, #ff4f8f); }
  .step-card:nth-child(4) .step-icon { background: linear-gradient(150deg, #ffd977, #ffb01f); }
  .step-card .sn { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
  .step-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
  .step-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }

  /* STATS */
  .stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  @media (max-width: 760px) { .stat-row { grid-template-columns: 1fr; } }
  .stat-box { background: linear-gradient(160deg, var(--card2), var(--card)); border: 1px solid var(--line); border-radius: 26px; padding: 44px 34px; text-align: center; position: relative; overflow: hidden; }
  .stat-box .num { font-size: clamp(40px, 5vw, 60px); font-weight: 900; letter-spacing: -0.02em; }
  .stat-box .lbl { color: var(--muted); font-size: 15px; margin-top: 10px; }

  /* FEATURE SPLIT */
  .feature { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; }
  .feature.rev .ftext { order: 2; }
  @media (max-width: 860px) { .feature, .feature.rev { grid-template-columns: 1fr; gap: 34px; } .feature.rev .ftext { order: 0; } }
  .fvisual { border-radius: 28px; min-height: 320px; position: relative; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(150deg, var(--card2), var(--card)); display: flex; align-items: center; justify-content: center; }
  .fmini { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--mint); }
  .feature .eyebrow { margin-bottom: 16px; }
  .feature h3 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
  .feature p { color: var(--muted); font-size: 16px; line-height: 1.65; margin-bottom: 26px; }
  .fstats { display: flex; gap: 40px; }
  .fstats .n { font-size: 30px; font-weight: 800; }
  .fstats .l { font-size: 13px; color: var(--muted); }

  /* WORK GRID */
  .work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  @media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 520px) { .work-grid { grid-template-columns: 1fr; } }
  .work-card { display: block; background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 14px; transition: transform 0.25s, box-shadow 0.25s; }
  .work-card:hover { transform: translateY(-8px); box-shadow: 0 26px 60px -20px rgba(124,92,252,0.55); }
  .work-art { height: 190px; border-radius: 16px; margin-bottom: 16px; position: relative; overflow: hidden; }
  .work-art::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.28), transparent 55%); }
  .wa1 { background: linear-gradient(140deg, #7c5cfc, #ff6ba6); }
  .wa2 { background: linear-gradient(140deg, #2fe6b7, #3a7bfc); }
  .wa3 { background: linear-gradient(140deg, #ffcb52, #ff6ba6); }
  .wa4 { background: linear-gradient(140deg, #a48bff, #2fe6b7); }
  .wa5 { background: linear-gradient(140deg, #ff6ba6, #7c5cfc); }
  .wa6 { background: linear-gradient(140deg, #3a7bfc, #2fe6b7); }
  .wa7 { background: linear-gradient(140deg, #ffb01f, #ff4f8f); }
  .wa8 { background: linear-gradient(140deg, #5b46d6, #a48bff); }
  .work-card h4 { font-size: 17px; font-weight: 700; padding: 0 6px; }
  .work-card .by { font-size: 13px; color: var(--muted); padding: 4px 6px 8px; }

  /* ROADMAP */
  .roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  @media (max-width: 860px) { .roadmap { grid-template-columns: 1fr; } }
  .phase { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 30px 28px; position: relative; overflow: hidden; }
  .phase .pct { font-size: 15px; font-weight: 700; font-family: 'JetBrains Mono', monospace; color: var(--mint); margin-bottom: 8px; }
  .phase .track { height: 6px; background: rgba(164,139,255,0.15); border-radius: 6px; overflow: hidden; margin-bottom: 22px; }
  .phase .track i { display: block; height: 100%; width: 0; border-radius: 6px; background: linear-gradient(90deg, var(--purple), var(--mint)); }
  .phase .ph { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
  .phase h4 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
  .phase ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .phase li { color: var(--muted); font-size: 14px; padding-left: 24px; position: relative; }
  .phase li::before { content: ''; position: absolute; left: 0; top: 6px; width: 12px; height: 12px; border-radius: 4px; background: linear-gradient(140deg, var(--purple), var(--mint)); }

  /* WHY US */
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  @media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }
  .why-card { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 32px 26px; transition: transform 0.25s, box-shadow 0.25s; }
  .why-card:hover { transform: translateY(-8px); box-shadow: 0 26px 60px -20px rgba(124,92,252,0.5); }
  .why-icon { width: 62px; height: 62px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
  .why-card:nth-child(1) .why-icon { background: linear-gradient(150deg, #8a7dff, #5b46d6); }
  .why-card:nth-child(2) .why-icon { background: linear-gradient(150deg, #4ff0c6, #17b58c); }
  .why-card:nth-child(3) .why-icon { background: linear-gradient(150deg, #ff8fbd, #ff4f8f); }
  .why-card:nth-child(4) .why-icon { background: linear-gradient(150deg, #ffd977, #ffb01f); }
  .why-card h4 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
  .why-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

  /* FAQ */
  .faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
  .qa { background: var(--card); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: border-color 0.25s; }
  .qa.open { border-color: var(--purple); }
  .qa .q { padding: 22px 26px; font-size: 17px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .qa .q .plus { width: 26px; height: 26px; flex-shrink: 0; position: relative; transition: transform 0.3s; }
  .qa .q .plus::before, .qa .q .plus::after { content: ''; position: absolute; background: var(--purple-lt); border-radius: 2px; }
  .qa .q .plus::before { top: 12px; left: 3px; right: 3px; height: 2px; }
  .qa .q .plus::after { left: 12px; top: 3px; bottom: 3px; width: 2px; transition: opacity 0.3s; }
  .qa.open .q .plus::after { opacity: 0; }
  .qa .a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .qa .a p { padding: 0 26px 24px; color: var(--muted); font-size: 15px; line-height: 1.65; }

  /* CTA */
  .cta-band { position: relative; z-index: 2; margin: 40px auto; }
  .cta-inner { background: linear-gradient(120deg, var(--purple), var(--pink)); border-radius: 34px; padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
  .cta-inner h2 { font-size: clamp(34px, 6vw, 64px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 30px; }
  .cta-inner .btn-fill { background: #fff; color: var(--purple); box-shadow: 0 14px 40px -8px rgba(0,0,0,0.4); }
  .cta-inner .coin { z-index: 1; }
  .cta-lede { color: rgba(255,255,255,0.85); font-size: 16.5px; margin: -14px auto 34px; max-width: 460px; }

  /* contact form */
  .contact-form { max-width: 560px; margin: 0 auto; text-align: left; position: relative; z-index: 2; }
  .contact-form .hp { position: absolute; left: -9999px; opacity: 0; }
  .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media (max-width: 560px) { .cf-row { grid-template-columns: 1fr; } }
  .cf-field { margin-bottom: 16px; display: flex; flex-direction: column; }
  .cf-field label { font-size: 13.5px; font-weight: 600; color: #fff; margin-bottom: 8px; }
  .cf-field label .opt { color: rgba(255,255,255,0.6); font-weight: 400; }
  .cf-field input, .cf-field textarea {
    width: 100%; font-family: inherit; font-size: 15px; color: #fff;
    background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 14px; padding: 14px 16px; transition: border-color 0.2s, background 0.2s;
  }
  .cf-field textarea { resize: vertical; min-height: 110px; }
  .cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(255,255,255,0.55); }
  .cf-field input:focus, .cf-field textarea:focus { outline: none; border-color: #fff; background: rgba(255,255,255,0.18); }
  .cf-submit { width: 100%; justify-content: center; margin-top: 6px; border: none; cursor: pointer; font-size: 16px; }
  .cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
  .cf-result { text-align: center; font-size: 14.5px; font-weight: 500; margin-top: 16px; min-height: 20px; }
  .cf-result.ok { color: #eafff8; }
  .cf-result.err { color: #ffe1ec; }
  .cta-alt { margin-top: 26px; font-size: 14.5px; color: rgba(255,255,255,0.8); }
  .cta-alt a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

  footer { position: relative; z-index: 2; border-top: 1px solid var(--line); margin-top: 40px; }
  .foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 60px 0; }
  @media (max-width: 760px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 30px; } }
  .foot-top h5 { font-size: 14px; font-weight: 700; margin-bottom: 18px; color: var(--text); }
  .foot-col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 12px; transition: color 0.2s; }
  .foot-col a:hover { color: var(--text); }
  .foot-brand p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-top: 14px; max-width: 260px; }
  .foot-bottom { border-top: 1px solid var(--line); padding: 24px 0; display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }
  @media (max-width: 600px) { .foot-bottom { flex-direction: column; gap: 10px; text-align: center; } }

  .float { will-change: transform; }
  @media (prefers-reduced-motion: reduce) { .marquee { animation: none !important; } .sc-cursor { animation: none !important; } }
