
      :root {
        --bg: #080a08;
        --bg2: #0d110d;
        --green: #00ff6a;
        --green-dim: #00c952;
        --green-muted: #1a3d26;
        --amber: #ffb800;
        --red: #ff3c3c;
        --white: #f0ede6;
        --grey: #8a8f88;
        --border: #1e2b1e;
        --card: #0f160f;
      }

      *,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
      ::selection { background: var(--green); color: #000; }
      html { scroll-behavior: smooth; }
      body { background: var(--bg); color: var(--white); font-family: 'Syne', sans-serif; overflow-x: hidden; cursor: default; }

      body::before {
        content: "";
        position: fixed; inset: 0;
        background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,255,106,0.015) 2px, rgba(0,255,106,0.015) 4px);
        pointer-events: none; z-index: 9999;
      }
      body::after {
        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: 9998; opacity: 0.4;
      }

      nav {
        position: fixed; top: 0; left: 0; right: 0; z-index: 100;
        display: flex; align-items: center; justify-content: space-between;
        padding: 1.2rem 3rem;
        background: rgba(8,10,8,0.85); backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
      }
      .nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.08em; color: var(--green); text-decoration: none; }
      .nav-logo span { color: var(--white); }
      .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
      .nav-links a { font-family: 'Space Mono', monospace; font-size: 0.72rem; color: var(--grey); text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
      .nav-links a:hover { color: var(--green); }

      .nav-cotd {
        font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em;
        text-transform: uppercase; text-decoration: none;
        background: var(--green); color: #000;
        padding: 0.45rem 1.1rem;
        display: flex; align-items: center; gap: 0.6rem;
        transition: all 0.2s; border: none; cursor: pointer; font-weight: 700;
      }
      .nav-cotd:hover { background: var(--white); transform: translate(-2px,-2px); box-shadow: 3px 3px 0 var(--green); }
      .nav-cotd .blink-dot { width: 7px; height: 7px; background: #000; border-radius: 50%; animation: blink 1s step-end infinite; flex-shrink: 0; }
      .nav-tag { font-family: 'Space Mono', monospace; font-size: 0.68rem; color: var(--green); border: 1px solid var(--green); padding: 0.3rem 0.8rem; letter-spacing: 0.12em; animation: pulse-border 2s ease-in-out infinite; }

      @keyframes pulse-border { 0%,100% { opacity:1; } 50% { opacity:0.5; } }

      #hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 8rem 3rem 4rem; position: relative; overflow: hidden; }
      .hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,255,106,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,255,106,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%); }
      .hero-eyebrow { font-family: 'Space Mono', monospace; font-size: 0.72rem; letter-spacing: 0.3em; color: var(--green); text-transform: uppercase; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
      .hero-eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--green); }
      .hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(5rem,15vw,14rem); line-height: 0.88; letter-spacing: -0.01em; color: var(--white); position: relative; }
      .hero-title .green { color: var(--green); }
      .hero-title .outline { -webkit-text-stroke: 1px var(--green); color: transparent; font-family: fantasy; text-transform: uppercase;}
      .hero-subtitle { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(1.1rem,2.5vw,1.8rem); color: var(--grey); margin-top: 2rem; max-width: 560px; line-height: 1.5; }
      .hero-meta { display: flex; gap: 3rem; margin-top: 4rem; flex-wrap: wrap; }
      .hero-stat { display: flex; flex-direction: column; gap: 0.3rem; }
      .hero-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--green); line-height: 1; }
      .hero-stat-label { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--grey); letter-spacing: 0.15em; text-transform: uppercase; }
      .hero-cta { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; align-items: center; }

      .btn-cotd {
        font-family: 'Space Mono', monospace; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
        text-decoration: none; color: #000; background: var(--amber);
        padding: 0.9rem 2rem; transition: all 0.2s; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.7rem;
        position: relative; overflow: hidden;
      }
      .btn-cotd::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,0.15); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
      .btn-cotd:hover::before { transform: scaleX(1); }
      .btn-cotd:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 rgba(255,184,0,0.4); }
      .btn-cotd .pulse-ring { width: 10px; height: 10px; border: 2px solid #000; border-radius: 50%; animation: pulse-ring 1.5s ease-in-out infinite; flex-shrink: 0; }
      @keyframes pulse-ring { 0%,100% { transform: scale(1); opacity:1; } 50% { transform: scale(1.4); opacity:0.5; } }

      .btn-primary { font-family: 'Space Mono', monospace; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: #000; background: var(--green); padding: 0.9rem 2rem; transition: all 0.2s; border: none; cursor: pointer; display: inline-block; }
      .btn-primary:hover { background: var(--white); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--green); }
      .btn-outline { font-family: 'Space Mono', monospace; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: var(--green); border: 1px solid var(--green); padding: 0.9rem 2rem; transition: all 0.2s; display: inline-block; cursor: pointer; background: transparent; }
      .btn-outline:hover { background: var(--green-muted); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--green); }

      section { padding: 6rem 3rem; position: relative; }

      .section-label { font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
      .section-label::after { content: ""; flex: 1; max-width: 80px; height: 1px; background: var(--green); }
      .section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem,6vw,5rem); line-height: 0.95; color: var(--white); margin-bottom: 1.5rem; }
      .section-title .accent { color: var(--green); }

      .marquee-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1rem 0; background: var(--bg2); }
      .marquee-track { display: flex; gap: 4rem; white-space: nowrap; animation: marquee 25s linear infinite; }
      .marquee-item { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.15em; color: var(--grey); flex-shrink: 0; display: flex; align-items: center; gap: 2rem; }
      .marquee-item .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
      @keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

      #intro { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1300px; margin: 0 auto; padding: 6rem 3rem; }
      .intro-text p { font-family: 'DM Serif Display', serif; font-size: 1.25rem; line-height: 1.7; color: var(--grey); margin-bottom: 1.5rem; }
      .intro-text p strong { color: var(--white); font-weight: 400; }
      .intro-visual { position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
      .intro-hex { width: 280px; height: 280px; background: var(--green-muted); clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%); display: flex; align-items: center; justify-content: center; position: relative; animation: hex-pulse 4s ease-in-out infinite; }
      @keyframes hex-pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
      .intro-hex-inner { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: var(--green); text-align: center; line-height: 1; }
      .intro-hex-inner span { display: block; font-size: 1rem; letter-spacing: 0.3em; color: var(--grey); font-family: 'Space Mono', monospace; }
      .floating-tag { position: absolute; font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em; padding: 0.4rem 0.8rem; border: 1px solid var(--green); color: var(--green); background: var(--bg); animation: float 3s ease-in-out infinite; }
      .floating-tag:nth-child(2){top:10%;right:0;animation-delay:0.5s}
      .floating-tag:nth-child(3){bottom:20%;left:0;animation-delay:1s}
      .floating-tag:nth-child(4){top:50%;right:-5%;animation-delay:1.5s}
      @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

      #trading { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
      .trading-inner { max-width: 1300px; margin: 0 auto; }
      .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; margin-top: 3rem; }
      .step-card { background: var(--card); border: 1px solid var(--border); padding: 2rem; position: relative; transition: all 0.25s; overflow: hidden; }
      .step-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
      .step-card:hover::before { transform: scaleX(1); }
      .step-card:hover { border-color: var(--green-muted); transform: translateY(-4px); }
      .step-num { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: var(--border); line-height: 1; margin-bottom: 0.5rem; transition: color 0.3s; }
      .step-card:hover .step-num { color: var(--green-muted); }
      .step-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--white); margin-bottom: 0.8rem; }
      .step-desc { font-family: 'Space Mono', monospace; font-size: 0.72rem; color: var(--grey); line-height: 1.7; }
      .step-tag { display: inline-block; margin-top: 1rem; font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; color: var(--green); border: 1px solid var(--green-muted); padding: 0.2rem 0.6rem; text-transform: uppercase; }

      #trenching { max-width: 1300px; margin: 0 auto; }
      .trench-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; margin-top: 3rem; align-items: start; }
      .trench-sidebar { position: sticky; top: 120px; }
      .trench-terminal { background: #000; border: 1px solid var(--green-muted); padding: 1.5rem; font-family: 'Space Mono', monospace; font-size: 0.72rem; color: var(--green); line-height: 1.8; border-radius: 2px; }
      .terminal-bar { display: flex; gap: 0.5rem; margin-bottom: 1rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--border); }
      .terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
      .terminal-dot.red{background:var(--red)} .terminal-dot.amber{background:var(--amber)} .terminal-dot.green{background:var(--green)}
      .terminal-line { color: var(--grey); }
      .terminal-line .cmd { color: var(--green); }
      .terminal-line .val { color: var(--amber); }
      .terminal-line .ok { color: #00ff6a; }
      .cursor-blink { display: inline-block; width: 8px; height: 14px; background: var(--green); animation: blink 1s step-end infinite; vertical-align: middle; }
      @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
      .trench-items { display: flex; flex-direction: column; gap: 2rem; }
      .trench-item { border-left: 2px solid var(--border); padding-left: 1.5rem; transition: border-color 0.2s; }
      .trench-item:hover { border-color: var(--green); }
      .trench-item-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: var(--white); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.8rem; }
      .trench-item-title .badge { font-family: 'Space Mono', monospace; font-size: 0.6rem; color: #000; background: var(--green); padding: 0.1rem 0.5rem; letter-spacing: 0.1em; }
      .trench-item-desc { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--grey); line-height: 1.75; }

      #bots { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
      .bots-inner { max-width: 1300px; margin: 0 auto; }
      .bots-intro { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 1.15rem; color: var(--grey); max-width: 600px; line-height: 1.6; margin-bottom: 1rem; }
      .bots-subsection { margin-top: 3rem; }
      .bots-subsection-label { font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey); border: 1px solid var(--border); display: inline-flex; align-items: center; gap: 0.8rem; padding: 0.4rem 1rem; margin-bottom: 1.5rem; }
      .bots-subsection-label .sdot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
      .bots-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }

      .bot-card { background: var(--card); border: 1px solid var(--border); padding: 2rem 1.5rem; position: relative; transition: all 0.25s; display: flex; flex-direction: column; gap: 1rem; text-decoration: none; overflow: hidden; }
      .bot-card::after { content: attr(data-name); position: absolute; right: -20px; bottom: -20px; font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: rgba(0,255,106,0.04); pointer-events: none; line-height: 1; }
      .bot-card:hover { border-color: var(--green); transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--green-muted); }

      .bot-icon { width: 48px; height: 48px; background: var(--green-muted); border: 1px solid var(--green); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
      .bot-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
      .bot-icon .fallback { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--green); }

      .bot-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.05em; color: var(--white); }
      .bot-handle { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--green); letter-spacing: 0.1em; }
      .bot-desc { font-family: 'Space Mono', monospace; font-size: 0.68rem; color: var(--grey); line-height: 1.7; flex: 1; }
      .bot-features { display: flex; flex-wrap: wrap; gap: 0.4rem; }
      .bot-feat { font-family: 'Space Mono', monospace; font-size: 0.58rem; color: var(--green); border: 1px solid var(--green-muted); padding: 0.15rem 0.5rem; letter-spacing: 0.05em; text-transform: uppercase; }
      .bot-cta { font-family: 'Space Mono', monospace; font-size: 0.68rem; color: #000; background: var(--green); padding: 0.5rem 1rem; text-align: center; text-transform: uppercase; letter-spacing: 0.1em; transition: background 0.2s; display: block; text-decoration: none; }
      .bot-cta:hover { background: var(--white); color: #000; }

      .terminal-badge { position: absolute; top: 0.8rem; right: 0.8rem; font-family: 'Space Mono', monospace; font-size: 0.55rem; color: var(--amber); border: 1px solid rgba(255,184,0,0.3); padding: 0.15rem 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; }
      .bot-card.is-terminal { border-color: rgba(255,184,0,0.15); }
      .bot-card.is-terminal:hover { border-color: var(--amber); box-shadow: 6px 6px 0 rgba(255,184,0,0.12); }
      .bot-card.is-terminal .bot-handle { color: var(--amber); }
      .bot-card.is-terminal .bot-cta { background: var(--amber); }
      .bot-card.is-terminal .bot-cta:hover { background: var(--white); }
      .bot-card.is-terminal .bot-feat { color: var(--amber); border-color: rgba(255,184,0,0.3); }

      #tools { max-width: 1300px; margin: 0 auto; }
      .tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 3rem; }
      .tool-item { background: var(--card); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; transition: background 0.2s; text-decoration: none; }
      .tool-item:hover { background: var(--green-muted); }
      .tool-icon-wrap { width: 40px; height: 40px; background: #0a0f0a; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
      .tool-icon-wrap img { width: 26px; height: 26px; object-fit: contain; display: block; }
      .tool-icon-wrap .fallback-icon { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--green); font-weight: 700; letter-spacing: 0; }
      .tool-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--white); }
      .tool-cat { font-family: 'Space Mono', monospace; font-size: 0.6rem; color: var(--green); letter-spacing: 0.12em; text-transform: uppercase; }
      .tool-desc { font-family: 'Space Mono', monospace; font-size: 0.67rem; color: var(--grey); line-height: 1.6; }

      #terms { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
      .terms-inner { max-width: 1300px; margin: 0 auto; }
      .terms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1rem; margin-top: 3rem; }
      .term-card { background: var(--card); border: 1px solid var(--border); padding: 1.5rem; transition: all 0.2s; }
      .term-card:hover { border-color: var(--amber); }
      .term-word { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.05em; color: var(--amber); margin-bottom: 0.3rem; }
      .term-def { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--grey); line-height: 1.7; }
      .term-example { margin-top: 0.8rem; font-family: 'DM Serif Display', serif; font-style: italic; font-size: 0.82rem; color: var(--white); padding-left: 0.8rem; border-left: 2px solid var(--amber); }

      #downloads { max-width: 1300px; margin: 0 auto; }
      .downloads-intro { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 1.1rem; color: var(--grey); max-width: 540px; line-height: 1.6; margin-bottom: 3rem; }
      .downloads-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
      .download-item { background: var(--card); padding: 1.5rem 2rem; display: flex; align-items: center; gap: 2rem; transition: background 0.2s; text-decoration: none; color: inherit; cursor: pointer; }
      .download-item:hover { background: var(--bg2); }
      .download-icon { width: 48px; height: 48px; background: var(--green-muted); border: 1px solid var(--green); display: flex; align-items: center; justify-content: center; font-family: 'Space Mono', monospace; font-size: 0.6rem; color: var(--green); flex-shrink: 0; }
      .download-info { flex: 1; }
      .download-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--white); margin-bottom: 0.3rem; }
      .download-meta { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--grey); letter-spacing: 0.08em; }
      .download-size { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--grey); text-align: right; }
      .download-btn { font-family: 'Space Mono', monospace; font-size: 0.65rem; border: 1px solid; padding: 0.4rem 1rem; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.2s; flex-shrink: 0; }
      .download-btn.ready { color: var(--green); border-color: var(--green); }
      .download-btn.ready:hover { background: var(--green); color: #000; }
      .download-btn.soon { color: var(--grey); border-color: var(--border); cursor: not-allowed; }

      /* TOAST */
      .toast {
        position: fixed; bottom: 2rem; right: 2rem; z-index: 99999;
        padding: 1rem 1.5rem;
        font-family: 'Space Mono', monospace; font-size: 0.72rem;
        max-width: 320px; line-height: 1.5;
        transform: translateY(20px); opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
      }
      .toast.show { transform: translateY(0); opacity: 1; }
      .toast.green { background: var(--green); color: #000; }
      .toast.amber { background: var(--amber); color: #000; }

      footer { border-top: 1px solid var(--border); padding: 4rem 3rem 2rem; background: var(--bg); }
      .footer-inner { max-width: 1300px; margin: 0 auto; }
      .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
      .footer-brand { display: flex; flex-direction: column; gap: 1rem; }
      .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--green); line-height: 1; }
      .footer-tagline { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 0.95rem; color: var(--grey); max-width: 280px; line-height: 1.6; }
      .footer-socials { display: flex; gap: 1rem; margin-top: 1rem; }
      .social-link { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--grey); text-decoration: none; border: 1px solid var(--border); padding: 0.4rem 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.2s; }
      .social-link:hover { color: var(--green); border-color: var(--green); }
      .footer-col h4 { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--green); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem; }
      .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
      .footer-col a { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--grey); text-decoration: none; transition: color 0.2s; }
      .footer-col a:hover { color: var(--white); }
      .footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
      .footer-copy { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--grey); letter-spacing: 0.08em; }
      .footer-copy span { color: var(--green); }
      .risk-warning { font-family: 'Space Mono', monospace; font-size: 0.6rem; color: var(--red); max-width: 400px; line-height: 1.5; letter-spacing: 0.04em; }

      .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
      .fade-up.visible { opacity: 1; transform: translateY(0); }

      .glitch { position: relative; display: inline-block; }
      .glitch::before,.glitch::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; font-family: 'Bebas Neue', sans-serif; }
      .glitch::before { color: var(--red); animation: glitch1 3s infinite; clip-path: polygon(0 0,100% 0,100% 30%,0 30%); }
      .glitch::after { color: #00f0ff; animation: glitch2 3s infinite; clip-path: polygon(0 60%,100% 60%,100% 100%,0 100%); }
      @keyframes glitch1 { 0%,90%,100%{transform:translate(0);opacity:0} 91%{transform:translate(-3px,1px);opacity:0.8} 93%{transform:translate(3px,-1px);opacity:0.8} 95%{transform:translate(-2px,0);opacity:0} }
      @keyframes glitch2 { 0%,90%,100%{transform:translate(0);opacity:0} 92%{transform:translate(3px,1px);opacity:0.8} 94%{transform:translate(-3px,-1px);opacity:0.8} 96%{transform:translate(2px,0);opacity:0} }

      .bot-setup-box { margin-top: 4rem; background: var(--card); border: 1px solid var(--border); padding: 2.5rem; max-width: 800px; }
      .setup-steps { display: flex; flex-direction: column; gap: 1rem; }
      .setup-step { display: flex; gap: 1.5rem; align-items: flex-start; }
      .setup-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--green); line-height: 1; flex-shrink: 0; width: 40px; }
      .setup-text { font-family: 'Space Mono', monospace; font-size: 0.72rem; color: var(--grey); line-height: 1.7; padding-top: 0.4rem; }
      .setup-text strong { color: var(--white); }

    @media (max-width: 900px) {
  nav { 
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }
  
  .nav-links { 
    display: none; /* Keep hidden, add hamburger menu instead */
  }
  
  /* Add a hamburger menu */
  .nav-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 101;
  }
  
  .nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--green);
    transition: all 0.3s;
  }
  
  /* When mobile menu is open */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8,10,8,0.98);
    backdrop-filter: blur(12px);
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1.5rem;
  }
  
  .nav-links.mobile-open a {
    font-size: 0.8rem;
    padding: 0.5rem 0;
  }
  
  .nav-cotd {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }
  
  .nav-tag {
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
  }
  
  #hero { 
    padding: 6rem 1.5rem 3rem; 
    min-height: auto;
  }
  
  .hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
  }
  
  .hero-meta {
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  
  .hero-stat-num {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  
  .btn-cotd, .btn-primary, .btn-outline {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  
  section { 
    padding: 3rem 1.2rem; 
  }
  
  #intro { 
    grid-template-columns: 1fr; 
    gap: 2rem;
    padding: 3rem 1.2rem;
  }
  
  .intro-text p {
    font-size: 1.1rem;
  }
  
  .intro-visual { 
    display: none; 
  }
  
  .trench-layout { 
    grid-template-columns: 1fr; 
    gap: 2rem;
  }
  
  .trench-sidebar { 
    position: static;
  }
  
  .trench-terminal {
    font-size: 0.65rem;
    padding: 1rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .bots-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .terms-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .download-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
  }
  
  .download-size {
    text-align: left;
  }
  
  .footer-top { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
  }
  
  footer { 
    padding: 2.5rem 1.2rem 1.5rem; 
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .risk-warning {
    max-width: 100%;
  }
  
  .floating-tag {
    display: none;
  }
  
  .bot-setup-box {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .setup-step {
    gap: 1rem;
  }
  
  .setup-num {
    font-size: 1.5rem;
    width: 30px;
  }
  
  .setup-text {
    font-size: 0.68rem;
  }
  
  .marquee-item {
    font-size: 1rem;
  }
  
  .toast {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .step-num {
    font-size: 3rem;
  }
  
  .term-word {
    font-size: 1.5rem;
  }
}