/* index.css — extracted from inline <style> blocks. Generated by scripts/h1-extract.mjs */
html {
        scrollbar-width: none !important;
      }
      html::-webkit-scrollbar {
        display: none !important;
      }
      .post-card:hover {
        border-color: var(--green) !important;
        box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
      }
      body {
        overflow-x: hidden;
        padding-left: 120px;
        transition: padding-left 0.3s ease;
      }
      body.hud-collapsed {
        padding-left: 28px;
      }

      .container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        z-index: 1;
      }

      section {
        padding: 100px 0;
      }

      /* Glitch text effect */
      @keyframes glitch {
        0%,
        100% {
          text-shadow:
            2px 0 #ff0000,
            -2px 0 #0000ff;
        }
        25% {
          text-shadow:
            -2px 0 #ff0000,
            2px 0 #0000ff;
        }
        50% {
          text-shadow:
            2px 2px #ff0000,
            -2px -2px #0000ff;
        }
        75% {
          text-shadow:
            -2px 2px #ff0000,
            2px -2px #0000ff;
        }
      }

      @keyframes flicker {
        0%,
        100% {
          opacity: 1;
        }
        92% {
          opacity: 1;
        }
        93% {
          opacity: 0.8;
        }
        94% {
          opacity: 1;
        }
        96% {
          opacity: 0.9;
        }
        97% {
          opacity: 1;
        }
      }

      @keyframes typing {
        from {
          width: 0;
        }
        to {
          width: 100%;
        }
      }

      /* Nav */
      /* Nav styles inherited from style.css */

      /* Hero */
      .hero {
        padding: 180px 0 100px;
        text-align: center;
      }

      .hero-prefix {
        font-size: 14px;
        color: var(--text-dim);
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 24px;
      }

      .hero-prefix .blink {
        animation: cursor-blink 1s step-end infinite;
      }

      .hero h1 {
        font-size: clamp(52px, 8vw, 96px);
        font-weight: 800;
        line-height: 1;
        letter-spacing: -0.02em;
        color: var(--green);
        text-shadow:
          0 0 40px var(--green-glow-strong),
          0 0 80px var(--green-glow);
        margin-bottom: 32px;
      }

      .hero h1:hover {
        animation: glitch 0.3s ease;
      }

      .hero-sub {
        font-size: 16px;
        color: var(--text-dim);
        max-width: 600px;
        margin: 0 auto 48px;
        font-weight: 300;
        line-height: 1.8;
      }

      /* Hero TRY FREE form — primary CTA. Email + button as one unit, with
         the button styled like .btn-main (bright green fill) so the eye
         lands on it. Replaces the old .hero-cta-row + .hero-newsletter pair. */
      .hero-try-free {
        max-width: 520px;
        margin: 0 auto 16px;
        font-family: "JetBrains Mono", monospace;
      }
      .hero-try-free .htf-pitch {
        text-align: left;
        margin: 0 auto 18px;
        padding: 14px 18px;
        background: rgba(0, 255, 65, 0.03);
        border: 1px solid var(--green-dark);
        border-radius: 2px;
      }
      .hero-try-free .htf-pitch-title {
        font-size: 11px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--green);
        margin: 0 0 10px;
        font-weight: 600;
      }
      .hero-try-free .htf-pitch-blurb {
        font-size: 13px;
        line-height: 1.65;
        color: var(--white);
        margin: 0 0 12px;
      }
      .hero-try-free .htf-pitch-blurb strong {
        color: var(--green);
        font-weight: 600;
      }
      .hero-try-free .htf-pitch-cmd {
        font-size: 12px;
        background: var(--bg-terminal);
        border: 1px solid var(--border);
        padding: 9px 12px;
        margin: 0;
        border-radius: 2px;
        font-family: "JetBrains Mono", Menlo, Consolas, monospace;
        white-space: nowrap;
        overflow-x: auto;
      }
      .hero-try-free .htf-pitch-cmd .cmd-trigger {
        color: var(--green);
        font-weight: 600;
      }
      .hero-try-free .htf-pitch-cmd .cmd-task {
        color: var(--white);
      }
      .hero-try-free .htf-pitch-cmd .cmd-task::after {
        content: "";
        display: inline-block;
        width: 7px;
        height: 13px;
        margin-left: 3px;
        background: var(--green);
        vertical-align: -2px;
        animation: htf-cursor-blink 1s step-end infinite;
      }
      @keyframes htf-cursor-blink {
        50% { opacity: 0; }
      }
      @media (prefers-reduced-motion: reduce) {
        .hero-try-free .htf-pitch-cmd .cmd-task::after {
          animation: none;
          opacity: 0.6;
        }
      }
      .hero-try-free .htf-row {
        display: flex;
        gap: 0;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
      }
      .hero-try-free input {
        flex: 1 1 240px;
        min-width: 0;
        background: #030803;
        border: 1px solid var(--green);
        border-right: none;
        color: var(--green);
        font-family: "JetBrains Mono", monospace;
        font-size: 14px;
        padding: 14px 18px;
        outline: none;
      }
      .hero-try-free input::placeholder { color: var(--text-muted); }
      .hero-try-free input:focus { box-shadow: 0 0 0 1px var(--green) inset; }
      .hero-try-free .htf-btn {
        padding: 14px 28px;
        font-size: 14px;
        flex: 0 0 auto;
        white-space: nowrap;
      }
      .hero-try-free .htf-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
      }
      .hero-try-free .htf-msg {
        display: block;
        text-align: center;
        font-size: 11px;
        color: var(--text-muted);
        margin-top: 10px;
        min-height: 14px;
      }
      .hero-try-free .htf-msg.ok { color: var(--green); }
      .hero-try-free .htf-msg.err { color: #ff6b6b; }

      .btn-main {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--green);
        color: #000;
        padding: 16px 40px;
        font-family: "JetBrains Mono", monospace;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: all 0.2s;
        animation: pulse-green 3s infinite;
      }

      .btn-main:hover {
        background: #33ff66;
        box-shadow: 0 0 40px var(--green-glow-strong);
        transform: translateY(-2px);
      }

      .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--text-dim);
        padding: 16px 40px;
        font-family: "JetBrains Mono", monospace;
        font-weight: 500;
        font-size: 15px;
        text-decoration: none;
        border: 1px solid var(--border);
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: all 0.2s;
      }

      .btn-ghost:hover {
        border-color: var(--green);
        color: var(--green);
      }

      .price-line {
        font-size: 13px;
        color: var(--text-muted);
        margin-top: 16px;
      }

      .price-line del {
        color: var(--text-muted);
      }
      .price-line .now {
        color: var(--green);
        font-weight: 600;
      }
      .price-line .now a,
      .price-line .now a:visited {
        color: var(--green);
        text-decoration: underline;
        text-underline-offset: 3px;
      }
      .price-line .now a:hover {
        color: #5cffa0;
      }

      /* One-Shot urgency strip — populated by oneshot-counter.js */
      .oneshot-strip {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
        max-width: 580px;
        margin: 24px auto 0;
        padding: 12px 18px;
        border: 1px solid rgba(255, 149, 0, 0.45);
        background: rgba(255, 149, 0, 0.04);
        font-family: "JetBrains Mono", monospace;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.2s ease;
      }
      .oneshot-strip:hover {
        border-color: #ff9500;
        background: rgba(255, 149, 0, 0.08);
        box-shadow: 0 0 30px rgba(255, 149, 0, 0.25);
        transform: translateY(-1px);
      }
      .oneshot-strip .os-pulse {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ff9500;
        box-shadow: 0 0 8px #ff9500;
        animation: os-pulse 1.6s ease-in-out infinite;
      }
      @keyframes os-pulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.4; transform: scale(1.4); }
      }
      .oneshot-strip .os-tag {
        background: #ff9500;
        color: #000;
        font-weight: 800;
        padding: 3px 8px;
        letter-spacing: 3px;
      }
      .oneshot-strip .os-msg {
        color: #ffbb44;
        font-weight: 500;
      }
      .oneshot-strip .os-msg .num {
        color: #ff9500;
        font-weight: 800;
        font-size: 14px;
        letter-spacing: 1px;
      }
      .oneshot-strip .os-cta {
        color: #ff9500;
        font-weight: 700;
      }
      @media (max-width: 600px) {
        .oneshot-strip {
          font-size: 10px;
          padding: 10px 14px;
          letter-spacing: 1px;
          gap: 10px;
        }
        .oneshot-strip .os-tag {
          letter-spacing: 2px;
        }
      }

      /* Terminal */
      .terminal {
        max-width: 680px;
        margin: 56px auto 0;
        background: var(--bg-terminal);
        border: 1px solid var(--border);
        overflow: hidden;
      }

      .term-bar {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px 16px;
        background: #0a120a;
        border-bottom: 1px solid var(--border);
        font-size: 11px;
        color: var(--text-muted);
      }

      .term-bar span {
        opacity: 0.5;
      }

      .term-body {
        padding: 24px;
        font-size: 13px;
        line-height: 2;
        text-align: left;
      }

      .term-body .prompt {
        color: var(--green);
      }
      .term-body .cmd {
        color: var(--white);
      }
      .term-body .dim {
        color: var(--text-muted);
      }
      .term-body .ok {
        color: var(--green);
      }
      .term-body .label {
        color: #ffaa00;
      }
      .term-body .cursor {
        display: inline-block;
        width: 8px;
        height: 16px;
        background: var(--green);
        animation: cursor-blink 1s step-end infinite;
        vertical-align: text-bottom;
      }

      /* Section headings */
      h2 {
        font-size: clamp(28px, 4vw, 40px);
        font-weight: 800;
        color: var(--green);
        text-shadow: 0 0 20px var(--green-glow);
        margin-bottom: 16px;
      }

      .section-sub {
        color: var(--text-dim);
        font-size: 14px;
        font-weight: 300;
        margin-bottom: 56px;
        max-width: 560px;
        line-height: 1.8;
      }

      /* Problem section */
      .problem {
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }

      .problem-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2px;
      }

      .problem-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        padding: 28px;
      }

      .problem-card .err {
        color: var(--red);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 8px;
      }

      .problem-card h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 8px;
      }

      .problem-card p {
        color: var(--text-muted);
        font-size: 13px;
        line-height: 1.7;
      }

      /* Layers */
      .features {
        text-align: center;
      }

      .layers {
        display: grid;
        gap: 2px;
        max-width: 760px;
        margin: 0 auto;
        text-align: left;
      }

      .layer {
        display: grid;
        grid-template-columns: 60px 1fr;
        background: var(--bg-card);
        border: 1px solid var(--border);
        padding: 24px;
        transition: all 0.2s;
      }

      .layer:hover {
        border-color: var(--green);
        box-shadow: inset 0 0 30px var(--green-glow);
      }

      .layer-n {
        font-size: 24px;
        font-weight: 800;
        color: var(--green-dark);
      }

      .layer:hover .layer-n {
        color: var(--green);
      }

      .layer h3 {
        font-size: 14px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .layer p {
        color: var(--text-muted);
        font-size: 13px;
        line-height: 1.7;
      }

      /* Comparison */
      .comparison {
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        text-align: center;
      }

      .comp-table {
        max-width: 1400px;
        margin: 0 auto;
        border: 1px solid var(--border);
        text-align: left;
      }

      .comp-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        border-bottom: 1px solid var(--border);
      }

      .comp-row:last-child {
        border-bottom: none;
      }

      .comp-row.head {
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 11px;
        font-weight: 700;
        background: #0a120a;
      }

      .comp-row.head .comp-cell:nth-child(2) {
        color: var(--green);
      }

      .comp-cell {
        padding: 14px 20px;
        font-size: 13px;
        color: var(--text-muted);
        border-right: 1px solid var(--border);
      }

      .comp-cell:last-child {
        border-right: none;
        color: var(--text-dim);
      }

      .comp-cell:nth-child(2) {
        color: var(--text-dim);
      }

      .comp-cell .ck {
        color: var(--green);
        margin-right: 4px;
      }

      .comp-cell:nth-child(3) {
        color: var(--green);
        background: rgba(0, 255, 65, 0.05);
      }

      .comp-cell:nth-child(3) .ck {
        color: var(--green);
      }

      .comp-row.head .comp-cell:nth-child(3) {
        color: var(--green);
        text-shadow: 0 0 10px var(--green-glow);
        background: rgba(0, 255, 65, 0.08);
      }

      .comp-row.evo-only .comp-cell:last-child .ck {
        color: #ff8c00;
      }

      .comp-row.evo-only .comp-cell:last-child {
        color: #ff8c00;
        font-weight: 600;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
        background: rgba(255, 140, 0, 0.06);
      }

      .comp-row.head .comp-cell:nth-child(4) {
        color: #ff8c00;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
        background: rgba(255, 140, 0, 0.08);
      }

      /* Testimonials */
      .proof {
        text-align: center;
      }

      .test-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        text-align: left;
        perspective: 800px;
      }

      .test-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        padding: 28px;
        transition:
          transform 0.3s,
          box-shadow 0.3s;
      }

      .test-card.hero {
        border-color: var(--green);
        padding: 36px;
        transform: translateZ(20px) scale(1.04);
        box-shadow:
          0 0 40px var(--green-glow),
          0 8px 32px rgba(0, 0, 0, 0.4);
        z-index: 2;
        position: relative;
      }

      .test-card.hero .q {
        font-size: 15px;
      }

      .test-card.hero .stars {
        font-size: 16px;
      }

      .test-card.hero .who {
        font-size: 14px;
      }

      .test-card .q {
        color: var(--text-dim);
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 16px;
        font-style: italic;
      }

      .test-card .q::before {
        content: "> ";
        color: var(--green);
        font-style: normal;
      }

      .gold-shimmer {
        color: #ffd700;
        font-weight: 700;
        font-style: normal;
        background: linear-gradient(
          90deg,
          #ffd700 0%,
          #fff8b0 40%,
          #ffd700 60%,
          #b8860b 100%
        );
        background-size: 200% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: goldShimmer 3s ease-in-out infinite;
      }

      @keyframes goldShimmer {
        0% {
          background-position: 200% 0;
        }
        100% {
          background-position: -200% 0;
        }
      }

      .test-card .stars {
        color: var(--green);
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 12px;
      }

      .test-card .who {
        font-size: 13px;
        font-weight: 600;
        color: var(--white);
      }

      .test-card .title {
        font-size: 11px;
        color: var(--text-muted);
      }

      /* Pricing */
      .pricing {
        text-align: center;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }

      .price-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2px;
        max-width: 1000px;
        margin: 0 auto;
      }

      .price-box {
        background: var(--bg-card);
        padding: 40px 28px;
        position: relative;
        border: 1px solid var(--border);
        display: flex;
        flex-direction: column;
      }

      .price-box .price-list {
        flex: 1;
      }

      /* Color-themed cards */
      .price-box.tier-green {
        border: 2px solid var(--green);
        box-shadow:
          0 0 40px rgba(0, 255, 65, 0.1),
          inset 0 0 40px rgba(0, 255, 65, 0.05);
      }
      .price-box.tier-green .price-big .num,
      .price-box.tier-green .price-big .dollar {
        color: var(--green);
      }
      .price-box.tier-green .price-list .ck {
        color: var(--green);
      }
      .price-box.tier-green .btn-main {
        background: var(--green);
        color: #000;
        animation: none;
      }
      .price-box.tier-green .btn-main:hover {
        background: #33ff66;
        box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
      }

      .price-box.tier-orange {
        border: 2px solid #ff8c00;
        box-shadow:
          0 0 40px rgba(255, 140, 0, 0.1),
          inset 0 0 40px rgba(255, 140, 0, 0.05);
      }
      .price-box.tier-orange .price-big .num,
      .price-box.tier-orange .price-big .dollar {
        color: #ff8c00;
        text-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
      }
      .price-box.tier-orange .price-list .ck {
        color: #ff8c00;
      }
      .price-box.tier-orange .price-tag {
        background: #ff8c00;
      }
      .price-box.tier-orange .btn-main {
        background: #ff8c00;
        color: #000;
        animation: none;
      }
      .price-box.tier-orange .btn-main:hover {
        background: #ffa033;
        box-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
      }

      .price-box.tier-purple {
        border: 2px solid #b44dff;
        box-shadow:
          0 0 60px rgba(180, 77, 255, 0.15),
          inset 0 0 60px rgba(180, 77, 255, 0.08);
        background: linear-gradient(180deg, #0a0a14 0%, #0a0f0a 100%);
        animation: mutate-glow 3s ease-in-out infinite;
      }

      /* Mutation corruption scanline */
      .price-box.tier-purple::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(180, 77, 255, 0.6) 20%,
          rgba(220, 120, 255, 0.9) 50%,
          rgba(180, 77, 255, 0.6) 80%,
          transparent 100%
        );
        animation: mutate-scan 4s ease-in-out infinite;
        z-index: 2;
        pointer-events: none;
      }

      @keyframes mutate-scan {
        0%,
        85% {
          top: -3px;
          opacity: 0;
        }
        88% {
          opacity: 1;
        }
        100% {
          top: 100%;
          opacity: 0;
        }
      }

      /* Glitch jitter on the whole card */
      .price-box.tier-purple {
        animation:
          mutate-glow 3s ease-in-out infinite,
          mutate-jitter 8s step-end infinite;
      }

      @keyframes mutate-jitter {
        0%,
        100% {
          transform: translate(0, 0);
        }
        42% {
          transform: translate(-1px, 0);
        }
        42.5% {
          transform: translate(2px, 1px);
        }
        43% {
          transform: translate(-1px, -1px);
        }
        43.5% {
          transform: translate(0, 0);
        }
        78% {
          transform: translate(1px, 0);
        }
        78.3% {
          transform: translate(-2px, 1px);
        }
        78.6% {
          transform: translate(1px, -1px);
        }
        79% {
          transform: translate(0, 0);
        }
      }

      /* Glitch text on h3 — RGB split */
      .price-box.tier-purple h3 {
        color: #d9a0ff;
        position: relative;
        animation: evo-text-glitch 6s step-end infinite;
      }

      @keyframes evo-text-glitch {
        0%,
        100% {
          text-shadow: 0 0 10px rgba(180, 77, 255, 0.3);
        }
        35% {
          text-shadow:
            2px 0 #ff00ff,
            -2px 0 #00ffff;
        }
        35.5% {
          text-shadow:
            -1px 1px #ff00ff,
            1px -1px #00ffff;
        }
        36% {
          text-shadow: 0 0 10px rgba(180, 77, 255, 0.3);
        }
        72% {
          text-shadow:
            -2px 0 #ff00ff,
            2px 0 #00ffff;
        }
        72.3% {
          text-shadow:
            1px 1px #ff00ff,
            -1px -1px #00ffff;
        }
        72.8% {
          text-shadow: 0 0 10px rgba(180, 77, 255, 0.3);
        }
      }

      /* Price number glitch */
      .price-box.tier-purple .price-big .num {
        animation: evo-num-glitch 10s step-end infinite;
      }

      @keyframes evo-num-glitch {
        0%,
        100% {
          opacity: 1;
          transform: none;
        }
        55% {
          opacity: 1;
          transform: skewX(-2deg);
        }
        55.2% {
          opacity: 0.7;
          transform: skewX(3deg) translateX(2px);
        }
        55.5% {
          opacity: 1;
          transform: skewX(-1deg);
        }
        55.8% {
          opacity: 1;
          transform: none;
        }
      }

      .price-box.tier-purple .price-big .num,
      .price-box.tier-purple .price-big .dollar {
        color: #b44dff;
        text-shadow: 0 0 30px rgba(180, 77, 255, 0.4);
      }
      .price-box.tier-purple .price-list .ck {
        color: #b44dff;
      }
      .price-box.tier-purple .price-tag {
        background: #b44dff;
      }
      .price-box.tier-purple .price-desc {
        color: #8855bb;
      }
      .price-box.tier-purple .btn-main {
        background: #b44dff;
        color: #000;
        animation: none;
        font-weight: 800;
      }
      .price-box.tier-purple .btn-main:hover {
        background: #cc77ff;
        box-shadow: 0 0 40px rgba(180, 77, 255, 0.4);
      }
      .price-box.tier-purple .dna-icon {
        font-size: 22px;
        margin-left: 6px;
        line-height: 0;
        filter: drop-shadow(0 0 8px rgba(180, 77, 255, 0.5));
      }

      @keyframes mutate-glow {
        0%,
        100% {
          box-shadow:
            0 0 40px rgba(180, 77, 255, 0.12),
            inset 0 0 40px rgba(180, 77, 255, 0.06);
          border-color: #b44dff;
        }
        33% {
          box-shadow:
            0 0 60px rgba(180, 77, 255, 0.2),
            inset 0 0 60px rgba(180, 77, 255, 0.1);
          border-color: #cc77ff;
        }
        66% {
          box-shadow:
            0 0 50px rgba(140, 40, 220, 0.18),
            inset 0 0 50px rgba(140, 40, 220, 0.08);
          border-color: #9933dd;
        }
      }

      /* Product teaser grid */
      .product-teasers {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }

      /* Bundle cards */
      .price-grid-bundles {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
        max-width: 700px;
        margin: 16px auto 0;
      }

      .price-box.tier-silver {
        border: 2px solid #a0a8b4;
        box-shadow:
          0 0 30px rgba(160, 168, 180, 0.08),
          inset 0 0 30px rgba(160, 168, 180, 0.04);
      }
      .price-box.tier-silver .price-big .num,
      .price-box.tier-silver .price-big .dollar {
        color: #c0c8d4;
        text-shadow: 0 0 20px rgba(192, 200, 212, 0.2);
      }
      .price-box.tier-silver .price-list .ck {
        color: #a0a8b4;
      }
      .price-box.tier-silver .price-tag {
        background: #a0a8b4;
        color: #000;
      }
      .price-box.tier-silver h3 {
        color: #c0c8d4;
      }
      .price-box.tier-silver .price-desc {
        color: #707880;
      }
      .price-box.tier-silver .btn-main {
        background: #a0a8b4;
        color: #000;
        animation: none;
      }
      .price-box.tier-silver .btn-main:hover {
        background: #bcc4d0;
        box-shadow: 0 0 20px rgba(160, 168, 180, 0.3);
      }
      .price-box.tier-silver .save-line {
        color: #a0a8b4;
      }

      .price-box.tier-gold {
        border: 2px solid #ffd700;
        box-shadow:
          0 0 50px rgba(255, 215, 0, 0.12),
          inset 0 0 40px rgba(255, 215, 0, 0.06);
        animation: gold-glow 4s ease-in-out infinite;
      }
      .price-box.tier-gold .price-big .num,
      .price-box.tier-gold .price-big .dollar {
        color: #ffd700;
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
      }
      .price-box.tier-gold .price-list .ck {
        color: #ffd700;
      }
      .price-box.tier-gold .price-tag {
        background: #ffd700;
        color: #000;
      }
      .price-box.tier-gold h3 {
        color: #ffe44d;
      }
      .price-box.tier-gold .price-desc {
        color: #aa8f00;
      }
      .price-box.tier-gold .btn-main {
        background: #ffd700;
        color: #000;
        animation: none;
        font-weight: 800;
      }
      .price-box.tier-gold .btn-main:hover {
        background: #ffe44d;
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
      }
      .price-box.tier-gold .save-line {
        color: #ffd700;
      }

      @keyframes gold-glow {
        0%,
        100% {
          box-shadow:
            0 0 50px rgba(255, 215, 0, 0.15),
            inset 0 0 40px rgba(255, 215, 0, 0.08);
          border-color: #ffd700;
        }
        50% {
          box-shadow:
            0 0 100px rgba(255, 215, 0, 0.3),
            inset 0 0 70px rgba(255, 215, 0, 0.15);
          border-color: #ffe44d;
        }
      }

      /* Evo Pro — Cyan subscription card */
      .price-box.tier-cyan {
        border: 2px solid #00d4d4;
        box-shadow:
          0 0 40px rgba(0, 212, 212, 0.1),
          inset 0 0 40px rgba(0, 212, 212, 0.05);
      }
      .price-box.tier-cyan .price-big .num,
      .price-box.tier-cyan .price-big .dollar {
        color: #00d4d4;
        text-shadow: 0 0 30px rgba(0, 212, 212, 0.3);
      }
      .price-box.tier-cyan .per-mo {
        font-size: 18px;
        color: #00a8a8;
        font-weight: 500;
      }
      .price-box.tier-cyan .price-list .ck {
        color: #00d4d4;
      }
      .price-box.tier-cyan .price-tag {
        background: #00d4d4;
        color: #000;
      }
      .price-box.tier-cyan h3 {
        color: #66e8e8;
      }
      .price-box.tier-cyan .price-desc {
        color: #1abfbf;
      }
      .price-box.tier-cyan .btn-main {
        background: #00d4d4;
        color: #000;
        animation: none;
      }
      .price-box.tier-cyan .btn-main:hover {
        background: #33e0e0;
        box-shadow: 0 0 30px rgba(0, 212, 212, 0.3);
      }

      .price-tag {
        position: absolute;
        top: -13px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--green);
        color: #000;
        font-weight: 700;
        font-size: 11px;
        padding: 4px 16px;
        text-transform: uppercase;
        letter-spacing: 2px;
        white-space: nowrap;
      }

      .price-box h3 {
        font-size: 18px;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-top: 8px;
        min-height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .price-big {
        margin: 24px 0;
      }

      .price-big .dollar {
        font-size: 24px;
        vertical-align: top;
        line-height: 1.2;
      }
      .price-big .num {
        font-size: 56px;
        font-weight: 800;
        line-height: 1;
        text-shadow: 0 0 30px var(--green-glow-strong);
      }
      .price-big del {
        font-size: 20px;
        color: var(--text-muted);
        margin-left: 8px;
      }

      .price-desc {
        color: var(--text-muted);
        font-size: 13px;
        margin-bottom: 28px;
      }

      .price-list {
        list-style: none;
        text-align: left;
        margin-bottom: 32px;
      }

      .price-list li {
        padding: 8px 0;
        font-size: 13px;
        color: var(--text-dim);
        border-bottom: 1px solid var(--border);
      }

      .price-list li:last-child {
        border-bottom: none;
      }
      .price-list .ck {
        color: var(--green);
        margin-right: 8px;
      }

      .price-box .btn-main {
        width: 100%;
        justify-content: center;
      }

      .price-guarantee {
        margin-top: 16px;
        font-size: 11px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      /* FAQ */
      .faq {
        text-align: center;
      }

      .faq-list {
        max-width: 660px;
        margin: 0 auto;
        text-align: left;
      }

      .faq-item {
        border-bottom: 1px solid var(--border);
        padding: 20px 0;
      }

      .faq-q {
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--white);
      }

      .faq-q::before {
        content: "> ";
        color: var(--green);
        margin-right: 8px;
      }
      .faq-q::after {
        content: "[+]";
        color: var(--text-muted);
        font-size: 12px;
        flex-shrink: 0;
      }

      .faq-item.open .faq-q::after {
        content: "[-]";
        color: var(--green);
      }

      .faq-a {
        color: var(--text-muted);
        font-size: 13px;
        line-height: 1.8;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        padding-left: 18px;
      }

      .faq-item.open .faq-a {
        max-height: 300px;
        margin-top: 12px;
      }

      .faq-a code {
        background: #0a1a0a;
        border: 1px solid var(--border);
        padding: 1px 5px;
        font-size: 12px;
        color: var(--white);
      }

      /* Final CTA */
      .final-cta {
        text-align: center;
        padding: 120px 0;
      }

      .final-cta h2 {
        font-size: clamp(36px, 5vw, 56px);
        margin-bottom: 16px;
      }

      .final-cta p {
        color: var(--text-dim);
        font-size: 14px;
        margin-bottom: 40px;
      }

      /* Footer */
      footer {
        padding: 32px 0;
        border-top: 1px solid var(--border);
        text-align: center;
        font-size: 11px;
        color: var(--text-muted);
      }

      footer a {
        color: var(--text-dim);
        text-decoration: none;
      }
      footer a:hover {
        color: var(--green);
      }

      /* Free trial section */
      .free-trial {
        text-align: center;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }

      .free-card {
        max-width: 500px;
        margin: 0 auto;
        background: var(--bg-card);
        border: 1px solid var(--border);
        padding: 28px;
        text-align: left;
      }

      .free-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
      }

      .free-card-name {
        font-size: 16px;
        font-weight: 700;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 2px;
      }

      .free-card-price {
        font-size: 16px;
        font-weight: 800;
        color: var(--green);
      }

      .free-dl-btn {
        width: 100%;
        justify-content: center;
        animation: none;
      }

      .free-note {
        margin-top: 12px;
        font-size: 11px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
      }

      .free-upsell {
        margin-top: 24px;
        font-size: 12px;
        color: var(--text-muted);
      }

      .free-upsell a {
        color: var(--green);
        text-decoration: none;
      }

      /* Evolution section — purple themed */
      .evolution {
        text-align: center;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 120px 0 100px;
        position: relative;
        background: linear-gradient(
          180deg,
          var(--bg) 0%,
          #05000a 15%,
          #05000a 85%,
          var(--bg) 100%
        );
      }

      .evolution::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
          repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(180, 77, 255, 0.02) 50px,
            rgba(180, 77, 255, 0.02) 51px
          ),
          repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(180, 77, 255, 0.02) 50px,
            rgba(180, 77, 255, 0.02) 51px
          );
        pointer-events: none;
        z-index: 0;
      }

      .evolution .container {
        position: relative;
        z-index: 1;
      }

      /* Evolution headline — heavy glitch */
      .evo-headline {
        font-size: clamp(36px, 5vw, 56px);
        font-weight: 800;
        color: #b44dff;
        text-shadow:
          0 0 40px rgba(180, 77, 255, 0.4),
          0 0 80px rgba(180, 77, 255, 0.2);
        margin-bottom: 8px;
        line-height: 1;
        position: relative;
        animation: evo-headline-glitch 6s step-end infinite;
      }

      @keyframes evo-headline-glitch {
        0%,
        100% {
          text-shadow:
            0 0 40px rgba(180, 77, 255, 0.4),
            0 0 80px rgba(180, 77, 255, 0.2);
          transform: none;
        }
        32% {
          text-shadow:
            3px 0 #ff00ff,
            -3px 0 #00ffff,
            0 0 40px rgba(180, 77, 255, 0.6);
          transform: skewX(-1deg);
        }
        32.5% {
          text-shadow:
            -2px 1px #ff00ff,
            2px -1px #00ffff;
          transform: skewX(2deg) translateX(-2px);
        }
        33% {
          text-shadow:
            0 0 40px rgba(180, 77, 255, 0.4),
            0 0 80px rgba(180, 77, 255, 0.2);
          transform: none;
        }
        67% {
          text-shadow:
            -3px 0 #ff00ff,
            3px 0 #00ffff;
          transform: skewX(1deg) translateX(1px);
        }
        67.3% {
          text-shadow:
            2px 2px #ff00ff,
            -2px -2px #00ffff,
            0 0 60px rgba(180, 77, 255, 0.8);
          transform: skewX(-2deg);
        }
        67.8% {
          text-shadow:
            0 0 40px rgba(180, 77, 255, 0.4),
            0 0 80px rgba(180, 77, 255, 0.2);
          transform: none;
        }
      }

      /* Corruption scanline across whole section */
      .evolution::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(180, 77, 255, 0.4) 15%,
          rgba(220, 120, 255, 0.8) 50%,
          rgba(180, 77, 255, 0.4) 85%,
          transparent 100%
        );
        animation: evo-scanline 8s ease-in-out infinite;
        z-index: 2;
        pointer-events: none;
      }

      @keyframes evo-scanline {
        0%,
        70% {
          top: -2px;
          opacity: 0;
        }
        75% {
          opacity: 1;
        }
        100% {
          top: 100%;
          opacity: 0;
        }
      }

      .evo-tagline {
        font-size: 16px;
        color: #9966cc;
        font-weight: 300;
        margin-bottom: 32px;
        animation: evo-tagline-flicker 5s step-end infinite;
      }

      @keyframes evo-tagline-flicker {
        0%,
        100% {
          opacity: 1;
        }
        45% {
          opacity: 0.6;
        }
        45.3% {
          opacity: 1;
        }
        45.5% {
          opacity: 0.4;
        }
        45.8% {
          opacity: 1;
        }
        82% {
          opacity: 0.7;
          color: #cc77ff;
        }
        82.2% {
          opacity: 1;
          color: #9966cc;
        }
      }

      .evo-intro {
        max-width: 600px;
        margin: 0 auto 56px;
        font-size: 14px;
        color: #8866aa;
        line-height: 1.8;
        font-weight: 300;
      }

      .evo-loop {
        max-width: 680px;
        margin: 0 auto 56px;
        background: #030008;
        border: 1px solid rgba(180, 77, 255, 0.3);
        overflow: hidden;
        animation: evo-loop-jitter 10s step-end infinite;
      }

      @keyframes evo-loop-jitter {
        0%,
        100% {
          transform: translate(0, 0);
          border-color: rgba(180, 77, 255, 0.3);
        }
        38% {
          transform: translate(-1px, 0);
          border-color: rgba(255, 0, 255, 0.4);
        }
        38.3% {
          transform: translate(2px, 1px);
        }
        38.6% {
          transform: translate(-1px, -1px);
          border-color: rgba(0, 255, 255, 0.4);
        }
        39% {
          transform: translate(0, 0);
          border-color: rgba(180, 77, 255, 0.3);
        }
        74% {
          transform: translate(1px, 0);
        }
        74.2% {
          transform: translate(-2px, 1px);
          border-color: rgba(255, 0, 255, 0.5);
        }
        74.5% {
          transform: translate(0, 0);
          border-color: rgba(180, 77, 255, 0.3);
        }
      }

      .evo-loop-bar {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px 16px;
        background: #0a0010;
        border-bottom: 1px solid rgba(180, 77, 255, 0.2);
        font-size: 11px;
        color: #664499;
      }

      .evo-loop-bar span {
        opacity: 0.5;
      }

      .evo-loop-body {
        padding: 24px;
        font-size: 13px;
        line-height: 2;
      }

      .evo-step {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .evo-step .label {
        color: #b44dff;
      }

      .evo-step .dim {
        color: #664499;
      }

      .evo-step .ok {
        color: #cc77ff;
      }

      .evo-step .evo-highlight {
        color: #d9a0ff;
        font-weight: 600;
        text-shadow: 0 0 10px rgba(180, 77, 255, 0.3);
        animation: evo-text-corrupt 8s step-end infinite;
      }

      @keyframes evo-text-corrupt {
        0%,
        100% {
          text-shadow: 0 0 10px rgba(180, 77, 255, 0.3);
          opacity: 1;
        }
        52% {
          text-shadow:
            1px 0 #ff00ff,
            -1px 0 #00ffff;
          opacity: 0.9;
        }
        52.3% {
          text-shadow: 0 0 10px rgba(180, 77, 255, 0.3);
          opacity: 1;
        }
        88% {
          text-shadow:
            -1px 0 #ff00ff,
            1px 0 #00ffff;
          opacity: 0.8;
        }
        88.2% {
          opacity: 1;
        }
        88.4% {
          text-shadow: 0 0 10px rgba(180, 77, 255, 0.3);
          opacity: 1;
        }
      }

      .evo-loop-arrow {
        text-align: center;
        padding: 8px 0 4px;
        color: #b44dff;
        font-size: 14px;
        animation: cursor-blink 2s step-end infinite;
      }

      .evo-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2px;
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
      }

      .evo-feature {
        background: rgba(10, 0, 16, 0.8);
        border: 1px solid rgba(180, 77, 255, 0.15);
        padding: 28px;
        transition: all 0.2s;
      }

      .evo-feature:hover {
        border-color: #b44dff;
        box-shadow: inset 0 0 30px rgba(180, 77, 255, 0.1);
        animation: evo-card-glitch 0.3s step-end;
      }

      @keyframes evo-card-glitch {
        0% {
          transform: translate(0, 0);
        }
        20% {
          transform: translate(-2px, 1px);
          box-shadow:
            inset 0 0 30px rgba(180, 77, 255, 0.15),
            2px 0 #ff00ff,
            -2px 0 #00ffff;
        }
        40% {
          transform: translate(1px, -1px);
        }
        60% {
          transform: translate(-1px, 0);
          box-shadow: inset 0 0 30px rgba(180, 77, 255, 0.1);
        }
        80% {
          transform: translate(2px, 1px);
        }
        100% {
          transform: translate(0, 0);
        }
      }

      .evo-feature h3 {
        font-size: 14px;
        font-weight: 700;
        color: #d9a0ff;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
      }

      .evo-feature p {
        color: #8866aa;
        font-size: 13px;
        line-height: 1.7;
      }

      /* Built-with banner */
      .built-with {
        text-align: center;
        padding: 64px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background: linear-gradient(
          180deg,
          var(--bg) 0%,
          #020a02 50%,
          var(--bg) 100%
        );
      }

      .built-with-inner {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        border: 1px solid var(--green);
        padding: 20px 36px;
        background: var(--bg-card);
        box-shadow:
          0 0 40px var(--green-glow),
          inset 0 0 40px var(--green-glow);
        animation: pulse-green 4s infinite;
      }

      .built-with-icon {
        font-size: 28px;
        color: var(--green);
        text-shadow: 0 0 10px var(--green-glow-strong);
      }

      .built-with-text {
        text-align: left;
      }

      .built-with-text .top {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--text-muted);
      }

      .built-with-text .bottom {
        font-size: 16px;
        font-weight: 700;
        color: var(--green);
        text-shadow: 0 0 10px var(--green-glow-strong);
      }

      .built-with-text .bottom span {
        color: var(--white);
        font-weight: 400;
      }

      /* === ONE-SHOT SECTION === */
      .classified {
        text-align: center;
        padding: 120px 0 100px;
        position: relative;
        background: linear-gradient(
          180deg,
          var(--bg) 0%,
          #0a0500 15%,
          #0a0500 85%,
          var(--bg) 100%
        );
      }

      .classified::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
          repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(255, 149, 0, 0.02) 50px,
            rgba(255, 149, 0, 0.02) 51px
          ),
          repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255, 149, 0, 0.02) 50px,
            rgba(255, 149, 0, 0.02) 51px
          );
        pointer-events: none;
        z-index: 0;
      }

      .classified .container {
        position: relative;
        z-index: 1;
      }

      /* Clearance barrier */
      .clearance-bar {
        border: 1px solid #ff9500;
        border-left: 3px solid #ff9500;
        background: rgba(255, 149, 0, 0.04);
        padding: 20px 28px;
        text-align: left;
        max-width: 700px;
        margin: 0 auto 56px;
        font-size: 13px;
        color: #cc7700;
        line-height: 1.8;
      }

      .clearance-bar .clearance-title {
        color: #ff9500;
        font-weight: 700;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 12px;
      }

      .clearance-bar .clearance-line {
        font-size: 12px;
        color: #996600;
        letter-spacing: 1px;
        margin-bottom: 8px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
      }

      .clearance-bar .warn {
        color: #ff5500;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 12px;
      }

      /* One-Shot pricing card */
      .oneshot-card-wrap {
        max-width: 520px;
        margin: 0 auto 56px;
      }

      .price-box.tier-amber {
        border: 3px solid #ff9500;
        box-shadow:
          0 0 60px rgba(255, 149, 0, 0.15),
          inset 0 0 60px rgba(255, 149, 0, 0.06);
        background: linear-gradient(180deg, #0f0800 0%, #0a0500 100%);
        animation: amber-glow 4s ease-in-out infinite;
      }

      @keyframes amber-glow {
        0%,
        100% {
          box-shadow:
            0 0 60px rgba(255, 149, 0, 0.15),
            inset 0 0 60px rgba(255, 149, 0, 0.06);
          border-color: #ff9500;
        }
        50% {
          box-shadow:
            0 0 100px rgba(255, 149, 0, 0.25),
            inset 0 0 80px rgba(255, 149, 0, 0.1);
          border-color: #ffaa33;
        }
      }

      .price-box.tier-amber .price-tag {
        background: #ff9500;
        color: #000;
        font-weight: 800;
        letter-spacing: 3px;
      }

      .price-box.tier-amber h3 {
        color: #ffbb44;
        font-size: 24px;
        letter-spacing: 4px;
      }

      .price-box.tier-amber .price-big .num,
      .price-box.tier-amber .price-big .dollar {
        color: #ff9500;
        text-shadow: 0 0 40px rgba(255, 149, 0, 0.4);
      }

      .price-box.tier-amber .price-desc {
        color: #996600;
      }

      .price-box.tier-amber .price-list .ck {
        color: #ff9500;
      }

      .price-box.tier-amber .price-list li {
        border-bottom-color: rgba(255, 149, 0, 0.1);
      }

      .price-box.tier-amber .warn-text {
        color: #ff5500;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.7;
        margin-top: 8px;
        padding: 12px;
        border: 1px solid rgba(255, 85, 0, 0.2);
        background: rgba(255, 85, 0, 0.04);
        text-align: left;
      }

      .price-box.tier-amber .btn-main {
        background: #ff9500;
        color: #000;
        font-weight: 800;
        animation: none;
        letter-spacing: 2px;
      }

      .price-box.tier-amber .btn-main:hover {
        background: #ffaa33;
        box-shadow: 0 0 40px rgba(255, 149, 0, 0.4);
      }

      .price-box.tier-amber .price-guarantee {
        color: #996600;
      }

      /* One-Shot protocol terminal */
      .oneshot-terminal {
        max-width: 680px;
        margin: 0 auto 56px;
        background: #050300;
        border: 1px solid rgba(255, 149, 0, 0.3);
        overflow: hidden;
      }

      .oneshot-terminal .term-bar {
        background: #0f0800;
        border-bottom: 1px solid rgba(255, 149, 0, 0.2);
        color: #996600;
      }

      .oneshot-terminal .term-body {
        padding: 24px;
        font-size: 13px;
        line-height: 2;
        min-height: 480px;
      }

      .oneshot-terminal .os-prompt {
        color: #ff9500;
      }

      .oneshot-terminal .os-cmd {
        color: #ffcc66;
      }

      .oneshot-terminal .os-dim {
        color: #664400;
      }

      .oneshot-terminal .os-ok {
        color: #00ff41;
      }

      .oneshot-terminal .os-fail {
        color: #ff3333;
        font-weight: 700;
      }

      .oneshot-terminal .os-label {
        color: #ff9500;
      }

      .oneshot-terminal .os-phase {
        color: #cc7700;
      }

      .oneshot-terminal .os-score-line {
        display: flex;
        gap: 8px;
        align-items: baseline;
      }

      .oneshot-terminal .os-score-dots {
        flex: 1;
        border-bottom: 1px dotted #332200;
        margin-bottom: 4px;
      }

      .oneshot-terminal .os-box {
        border: 1px solid rgba(255, 149, 0, 0.3);
        padding: 16px;
        margin: 8px 0;
      }

      .oneshot-terminal .os-box-header {
        color: #ff9500;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 12px;
        margin-bottom: 12px;
      }

      .oneshot-terminal .os-verdict {
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 149, 0, 0.2);
      }

      .oneshot-terminal .os-reexec {
        color: #ff9500;
        font-style: italic;
      }

      .oneshot-terminal .os-allpass {
        color: #00ff41;
        font-weight: 700;
        text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
      }

      /* One-Shot comparison */
      .oneshot-compare {
        max-width: 680px;
        margin: 0 auto;
      }

      .oneshot-compare h3 {
        font-size: 14px;
        color: #ff9500;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 16px;
      }

      .oneshot-compare-table {
        border: 1px solid rgba(255, 149, 0, 0.2);
        text-align: left;
      }

      .oneshot-compare-table .os-cmp-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-bottom: 1px solid rgba(255, 149, 0, 0.1);
      }

      .oneshot-compare-table .os-cmp-row:last-child {
        border-bottom: none;
      }

      .oneshot-compare-table .os-cmp-row.os-cmp-head {
        background: #0f0800;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
      }

      .oneshot-compare-table .os-cmp-cell {
        padding: 12px 16px;
        font-size: 13px;
        color: #996600;
        border-right: 1px solid rgba(255, 149, 0, 0.1);
      }

      .oneshot-compare-table .os-cmp-cell:last-child {
        border-right: none;
        color: #ff9500;
      }

      .oneshot-compare-table .os-cmp-head .os-cmp-cell:first-child {
        color: #996600;
      }

      .oneshot-compare-table .os-cmp-head .os-cmp-cell:last-child {
        color: #ff9500;
        text-shadow: 0 0 10px rgba(255, 149, 0, 0.2);
      }

      .oneshot-compare-table
        .os-cmp-row.os-cmp-highlight
        .os-cmp-cell:last-child {
        color: #ffaa33;
        font-weight: 700;
      }

      /* Complete Bundle — dark red/amber hybrid */
      .price-box.tier-nuke {
        border: 3px solid #ff2d2d;
        box-shadow:
          0 0 60px rgba(255, 45, 45, 0.12),
          inset 0 0 60px rgba(255, 45, 45, 0.04);
        background: linear-gradient(180deg, #0f0300 0%, #0a0200 100%);
        animation: nuke-glow 5s ease-in-out infinite;
      }

      @keyframes nuke-glow {
        0%,
        100% {
          box-shadow:
            0 0 60px rgba(255, 45, 45, 0.12),
            inset 0 0 60px rgba(255, 45, 45, 0.04);
          border-color: #ff2d2d;
        }
        50% {
          box-shadow:
            0 0 100px rgba(255, 45, 45, 0.2),
            inset 0 0 80px rgba(255, 45, 45, 0.08);
          border-color: #ff5555;
        }
      }

      .price-box.tier-nuke .price-tag {
        background: #ff2d2d;
        color: #000;
        font-weight: 800;
        letter-spacing: 3px;
      }

      .price-box.tier-nuke h3 {
        color: #ff6666;
        font-size: 22px;
        letter-spacing: 3px;
      }

      .price-box.tier-nuke .price-big .num,
      .price-box.tier-nuke .price-big .dollar {
        color: #ff2d2d;
        text-shadow: 0 0 40px rgba(255, 45, 45, 0.4);
      }

      .price-box.tier-nuke .price-desc {
        color: #993333;
      }

      .price-box.tier-nuke .price-list .ck {
        color: #ff2d2d;
      }

      .price-box.tier-nuke .price-list li {
        border-bottom-color: rgba(255, 45, 45, 0.1);
      }

      .price-box.tier-nuke .save-line {
        color: #ff2d2d;
      }

      .price-box.tier-nuke .btn-main {
        background: #ff2d2d;
        color: #000;
        font-weight: 800;
        animation: none;
        letter-spacing: 2px;
      }

      .price-box.tier-nuke .btn-main:hover {
        background: #ff5555;
        box-shadow: 0 0 40px rgba(255, 45, 45, 0.4);
      }

      .price-box.tier-nuke .price-guarantee {
        color: #993333;
      }

      /* === HUD Nav Sidebar === */
      .hud-nav {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 50;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 10vh 0;
        width: 120px;
        opacity: 0;
        transition: opacity 0.5s ease, width 0.3s ease;
      }

      .hud-nav.visible {
        opacity: 1;
      }

      .hud-nav.collapsed {
        width: 28px;
      }

      .hud-nav-track {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        padding-left: 16px;
      }

      .hud-nav.collapsed .hud-nav-track {
        padding-left: 8px;
      }

      .hud-nav-track::before {
        content: "";
        position: absolute;
        top: 6px;
        bottom: 6px;
        left: 21px;
        width: 2px;
        background: var(--border);
        z-index: 0;
        transition: left 0.3s ease;
      }

      .hud-nav.collapsed .hud-nav-track::before {
        left: 13px;
      }

      .hud-nav-fill {
        position: absolute;
        top: 6px;
        left: 21px;
        width: 2px;
        height: 0;
        transition: height 0.4s ease, left 0.3s ease, background 0.3s ease;
        z-index: 1;
      }

      .hud-nav.collapsed .hud-nav-fill {
        left: 13px;
      }

      .hud-node {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        z-index: 2;
        padding: 10px 0;
        transition: all 0.3s ease;
      }

      .hud-dot {
        width: 12px;
        height: 12px;
        border: 1px solid var(--border);
        background: transparent;
        flex-shrink: 0;
        transition: all 0.3s ease;
      }

      .hud-label {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        white-space: nowrap;
        opacity: 0.35;
        transition: all 0.3s ease;
        color: var(--text-muted);
      }

      .hud-nav.collapsed .hud-label {
        opacity: 0;
        width: 0;
        overflow: hidden;
      }

      .hud-node:hover .hud-label {
        opacity: 0.7;
      }

      .hud-node.active .hud-label {
        opacity: 1;
      }

      /* Toggle button */
      .hud-toggle {
        position: absolute;
        top: 50%;
        right: -14px;
        transform: translateY(-50%);
        width: 14px;
        height: 40px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-left: none;
        border-radius: 0 4px 4px 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 10px;
        transition: all 0.3s ease;
        z-index: 51;
      }

      .hud-toggle:hover {
        color: var(--green);
        border-color: var(--green-dark);
      }

      .hud-toggle::after {
        content: "\25C0";
        font-size: 8px;
      }

      .hud-nav.collapsed .hud-toggle::after {
        content: "\25B6";
      }

      /* Remove old progress bar */
      .hud-progress-bar {
        display: none;
      }

      @media (max-width: 768px) {
        .hud-nav {
          width: 100px;
        }
        .hud-nav.collapsed {
          width: 24px;
        }
        .hud-label {
          font-size: 10px;
          letter-spacing: 1px;
        }
        .hud-nav-track {
          padding-left: 10px;
        }
        .hud-nav.collapsed .hud-nav-track {
          padding-left: 6px;
        }
        .hud-nav-track::before {
          left: 15px;
        }
        .hud-nav.collapsed .hud-nav-track::before {
          left: 11px;
        }
        .hud-nav-fill {
          left: 15px;
        }
        .hud-nav.collapsed .hud-nav-fill {
          left: 11px;
        }
      }

      /* Mobile — hide HUD sidebar, remove body padding */
      @media (max-width: 768px) {
        .hud-nav {
          display: none !important;
        }
        body {
          padding-left: 0 !important;
        }
        body.hud-collapsed {
          padding-left: 0 !important;
        }
        .container {
          padding: 0 16px;
        }
        section {
          padding: 56px 0;
        }

        /* Nav styles inherited from style.css */

        /* Hero */
        .hero {
          padding: 120px 0 48px;
        }
        .hero-prefix {
          font-size: 11px;
          letter-spacing: 2px;
          margin-bottom: 16px;
        }
        .hero-sub {
          font-size: 14px;
          margin-bottom: 32px;
        }
        .hero-try-free input,
        .hero-try-free .htf-btn {
          flex-basis: 100%;
          font-size: 13px;
          padding: 12px 16px;
        }
        .hero-try-free input {
          border-right: 1px solid var(--green);
          border-bottom: none;
        }
        .btn-main {
          padding: 14px 28px;
          font-size: 13px;
          justify-content: center;
        }
        .btn-ghost {
          padding: 12px 24px;
          font-size: 13px;
          justify-content: center;
        }

        /* Terminal */
        .terminal {
          margin-top: 32px !important;
        }
        .term-body {
          padding: 16px;
          font-size: 11px;
          line-height: 1.8;
        }

        /* Section sub */
        .section-sub {
          font-size: 13px;
          margin-bottom: 32px;
        }

        /* Problem + testimonial grids */
        .problem-grid,
        .test-grid {
          grid-template-columns: 1fr;
        }
        .problem-card {
          padding: 20px;
        }

        /* Layers */
        .layer {
          grid-template-columns: 44px 1fr;
          padding: 16px;
        }
        .layer-n {
          font-size: 20px;
        }
        .layer h3 {
          font-size: 13px;
        }
        .layer p {
          font-size: 12px;
        }

        /* Comparison table — horizontal scroll */
        .comp-table {
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
        }
        .comp-row {
          min-width: 960px;
        }
        .comp-cell {
          padding: 10px 8px;
          font-size: 11px;
        }

        /* Evolution section */
        .evolution {
          padding: 64px 0;
        }
        .evo-headline {
          font-size: 28px;
        }
        .evo-tagline {
          font-size: 14px;
          margin-bottom: 20px;
        }
        .evo-intro {
          font-size: 13px;
          margin-bottom: 32px;
        }
        .evo-loop {
          margin-bottom: 32px;
        }
        .evo-loop-bar {
          font-size: 10px;
          padding: 8px 12px;
        }
        .evo-loop-body {
          padding: 14px;
          font-size: 11px;
          line-height: 1.7;
        }
        .evo-step {
          flex-wrap: wrap;
          gap: 2px;
        }
        .evo-loop-arrow {
          font-size: 11px;
          padding: 6px 0 2px;
        }
        .evo-features {
          grid-template-columns: 1fr;
        }
        .evo-feature {
          padding: 20px;
        }

        /* Built-with banner */
        .built-with {
          padding: 40px 0;
        }
        .built-with-inner {
          padding: 16px 20px;
          gap: 12px;
        }
        .built-with-icon {
          font-size: 22px;
        }
        .built-with-text .bottom {
          font-size: 14px;
        }
        .built-with-text .bottom span {
          display: block;
          font-size: 12px;
          margin-top: 2px;
        }

        /* Free trial */
        .free-card {
          padding: 20px;
        }
        .free-card-name {
          font-size: 14px;
          letter-spacing: 1px;
        }

        /* Pricing */
        .price-grid {
          grid-template-columns: 1fr;
          max-width: 400px;
        }
        .price-grid-bundles {
          grid-template-columns: 1fr;
          max-width: 400px;
        }
        .product-teasers {
          grid-template-columns: 1fr;
        }
        .price-box {
          padding: 32px 20px;
        }
        .price-box h3 {
          font-size: 16px;
          letter-spacing: 2px;
        }
        .price-big .num {
          font-size: 48px;
        }
        .price-big .dollar {
          font-size: 20px;
        }
        .price-big del {
          font-size: 16px;
        }

        /* FAQ */
        .faq-q {
          font-size: 13px;
          gap: 12px;
        }
        .faq-a {
          font-size: 12px;
          padding-left: 14px;
        }
        .faq-item.open .faq-a {
          max-height: 500px;
        }

        /* Final CTA */
        .final-cta {
          padding: 80px 0;
        }
        .final-cta p {
          font-size: 13px;
          margin-bottom: 28px;
        }

        /* Classified / One-Shot */
        .classified {
          padding: 64px 0;
        }
        .clearance-bar {
          padding: 16px 20px;
          font-size: 12px;
          margin-bottom: 32px;
        }
        .clearance-bar .clearance-line {
          font-size: 10px;
        }
        .oneshot-card-wrap {
          margin-bottom: 32px;
        }
        .price-box.tier-amber h3 {
          font-size: 20px;
          letter-spacing: 3px;
        }
        .oneshot-terminal .term-body {
          padding: 14px;
          font-size: 11px;
          line-height: 1.7;
          min-height: auto;
        }
        .oneshot-terminal .os-score-line {
          flex-wrap: wrap;
        }
        .oneshot-terminal .os-score-dots {
          display: none;
        }
        .oneshot-compare-table .os-cmp-cell {
          padding: 10px 12px;
          font-size: 12px;
        }
      }

      /* Hero review card — mobile */
      @media (max-width: 768px) {
        .test-card.hero {
          transform: none;
          scale: 1;
          padding: 28px;
          border-width: 2px;
          box-shadow: 0 0 30px var(--green-glow);
        }
        .test-card.hero .q {
          font-size: 14px;
        }
        .test-card.hero .stars {
          font-size: 15px;
        }
        .test-card.hero .who {
          font-size: 13px;
        }
      }

      /* Extra small screens */
      @media (max-width: 380px) {
        .container {
          padding: 0 12px;
        }
        .hero h1 {
          font-size: 40px;
        }
        .evo-headline {
          font-size: 24px;
        }
        .price-big .num {
          font-size: 40px;
        }
        .term-body {
          padding: 12px;
          font-size: 10px;
        }
        .nav-logo {
          font-size: 13px;
        }
        .oneshot-terminal .term-body {
          padding: 12px;
          font-size: 10px;
          line-height: 1.5;
        }
        .oneshot-terminal .os-cmd {
          word-break: break-word;
          overflow-wrap: break-word;
        }
        .oneshot-terminal .term-bar {
          font-size: 9px;
          padding: 8px 12px;
        }
        .oneshot-terminal .os-score-line {
          gap: 4px;
          font-size: 10px;
        }
      }
@keyframes roi-pulse { 0% { transform: scale(1); text-shadow: 0 0 12px rgba(255,140,0,0.4); } 30% { transform: scale(1.3); text-shadow: 0 0 30px rgba(255,140,0,0.8), 0 0 60px rgba(255,140,0,0.4); } 100% { transform: scale(1); text-shadow: 0 0 12px rgba(255,140,0,0.4); } }
            .roi-roi.pulse { animation: roi-pulse 0.6s ease-out; display: inline-block; }
            @keyframes sparkle { 0% { opacity: 0; transform: scale(0) translate(0, 0); } 15% { opacity: 1; transform: scale(1.2); } 100% { opacity: 0; transform: scale(0) translate(var(--sx, 15px), var(--sy, -15px)); } }
            .roi-sparkle { position: absolute; width: 5px; height: 5px; background: #00ff41; border-radius: 50%; pointer-events: none; box-shadow: 0 0 8px #00ff41, 0 0 16px rgba(0,255,65,0.6), 0 0 24px rgba(0,255,65,0.2); animation: sparkle var(--dur, 1s) ease-out forwards; z-index: 10; }
            .roi-controls { display: flex; justify-content: center; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; font-family: 'JetBrains Mono', monospace; }
            .roi-controls label { font-size: 11px; color: rgba(0, 255, 65, 0.5); text-transform: uppercase; letter-spacing: 2px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
            .roi-controls select, .roi-controls input { background: rgba(0,0,0,0.85); border: 2px solid rgba(0,255,65,0.6); color: var(--green); font-family: 'JetBrains Mono', monospace; font-size: 16px; font-weight: 700; padding: 10px 16px; text-align: center; outline: none; transition: border-color 0.3s, box-shadow 0.15s ease-out, transform 0.15s ease-out; box-shadow: 1px 1px 0 #00cc3a, 2px 2px 0 #00bf36, 3px 3px 0 #00b332, 4px 4px 0 #00a62e, 5px 5px 0 #00992a, 6px 6px 0 #008c26, 7px 7px 0 #008022, 8px 8px 0 #00731e, 9px 9px 0 #00661a, 10px 10px 0 #005a16, 11px 11px 0 #004d12, 12px 12px 0 #00400e, 13px 13px 0 #00330a, 14px 14px 0 #002606, 15px 15px 0 #001a04, 16px 16px 0 #000d02, 0 0 20px rgba(0,255,65,0.35), 0 0 40px rgba(0,255,65,0.1); }
            .roi-controls select { cursor: pointer; min-width: 200px; }
            .roi-controls input { width: 130px; }
            .hp-roi-grid-wrap { margin-bottom: 8px; }
            .hp-roi-grid { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 28px; padding: 28px 36px; border: 2px solid rgba(0,255,65,0.8); background: rgba(0,0,0,0.85); font-family: 'JetBrains Mono', monospace; transition: box-shadow 0.15s ease-out, transform 0.15s ease-out; box-shadow: 2px 2px 0 #00cc3a, 4px 4px 0 #00bf36, 6px 6px 0 #00b332, 8px 8px 0 #00a62e, 10px 10px 0 #00992a, 12px 12px 0 #008c26, 14px 14px 0 #008022, 16px 16px 0 #00731e, 18px 18px 0 #00661a, 20px 20px 0 #005a16, 22px 22px 0 #004d12, 24px 24px 0 #00400e, 26px 26px 0 #00330a, 28px 28px 0 #002606, 30px 30px 0 #001a04, 0 0 30px rgba(0,255,65,0.4), 0 0 60px rgba(0,255,65,0.15); }
            .hp-roi-cell { display: flex; flex-direction: column-reverse; align-items: center; min-width: 100px; }
            .hp-roi-num { font-size: 28px; color: var(--green); font-weight: 700; letter-spacing: 1px; }
            .hp-roi-label { font-size: 13px; color: rgba(0, 255, 65, 0.55); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
            .hp-roi-op { color: var(--text-dim); font-size: 22px; font-weight: 300; }
            .hp-roi-result .hp-roi-num { font-size: 32px; text-shadow: 0 0 20px var(--green-glow-strong), 0 0 40px rgba(0,255,65,0.2); }
            .hp-roi-annual { margin: 20px auto 0; font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--text-dim); letter-spacing: 1px; }
            .hp-roi-annual strong { color: var(--green); font-weight: 700; }
            .hp-roi-annual .roi-roi { color: #ff8c00; font-weight: 700; text-shadow: 0 0 12px rgba(255,140,0,0.4); }
            @media (max-width: 600px) { .roi-heading { font-size: 26px; margin-bottom: 24px; } .roi-controls { gap: 16px; } .roi-controls select { min-width: 170px; } .hp-roi-grid-wrap { padding: 0 20px; } .hp-roi-grid { flex-direction: column; gap: 4px; padding: 20px 24px; max-width: 100%; box-shadow: 2px 2px 0 #00cc3a, 4px 4px 0 #00bf36, 6px 6px 0 #00b332, 8px 8px 0 #00a62e, 10px 10px 0 #00992a, 12px 12px 0 #008c26, 14px 14px 0 #008022, 16px 16px 0 #00731e, 0 0 20px rgba(0,255,65,0.3), 0 0 40px rgba(0,255,65,0.1); } .hp-roi-op { display: none; } .hp-roi-cell { min-width: auto; flex-direction: column-reverse; } .hp-roi-num { font-size: 26px; } .hp-roi-result .hp-roi-num { font-size: 30px; } .hp-roi-label { margin-top: 0; margin-bottom: 4px; } .roi-controls select, .roi-controls input { box-shadow: 1px 1px 0 #00cc3a, 2px 2px 0 #00bf36, 3px 3px 0 #00b332, 4px 4px 0 #00a62e, 5px 5px 0 #00992a, 6px 6px 0 #008c26, 7px 7px 0 #008022, 8px 8px 0 #00731e, 0 0 15px rgba(0,255,65,0.25); } }
            .roi-heading { font-family: 'JetBrains Mono', monospace; font-size: 32px; font-weight: 700; color: var(--green); letter-spacing: 3px; margin-bottom: 32px; text-align: center; text-shadow: 0 0 30px var(--green-glow), 0 0 60px rgba(0,255,65,0.15); }
