/* evolution.css — extracted from inline <style> blocks. Generated by scripts/h1-extract.mjs */
html { scrollbar-width: none !important; }
      html::-webkit-scrollbar { display: none !important; }
      body { overflow-x: hidden; }

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

      section { padding: 100px 0; }

      /* ── Buttons ── */
      .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);
      }

      /* ── 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;
      }

      /* ── Glitch ── */
      @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; }
      }

      /* ── Hero (purple themed) ── */
      .hero {
        padding: 180px 0 80px;
        text-align: center;
      }
      .hero-prefix {
        font-size: 11px;
        color: #664499;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 24px;
      }
      .hero h1 {
        font-size: clamp(40px, 6vw, 72px);
        font-weight: 800;
        line-height: 1;
        letter-spacing: -0.02em;
        color: #b44dff;
        text-shadow: 0 0 40px rgba(180, 77, 255, 0.4), 0 0 80px rgba(180, 77, 255, 0.2);
        margin-bottom: 16px;
        animation: evo-headline-glitch 6s step-end infinite;
      }
      .hero h1:hover { animation: glitch 0.3s ease; }
      .hero-tagline {
        font-size: 18px;
        color: #9966cc;
        font-weight: 300;
        margin-bottom: 32px;
        animation: evo-tagline-flicker 5s step-end infinite;
      }
      .hero-intro {
        max-width: 600px;
        margin: 0 auto 48px;
        font-size: 15px;
        color: #8866aa;
        line-height: 1.8;
        font-weight: 300;
      }
      .hero-cta-row {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .hero .btn-main {
        background: #b44dff;
        color: #000;
        animation: none;
        font-weight: 800;
      }
      .hero .btn-main:hover {
        background: #cc77ff;
        box-shadow: 0 0 40px rgba(180, 77, 255, 0.4);
      }

      /* ── Evolution section ── */
      .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::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; }
      }

      /* ── Evolution headline ── */
      .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; }
      }

      .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;
      }

      /* ── Terminal (evo-loop) ── */
      .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;
      }

      /* ── Feature cards ── */
      .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;
      }

      /* ── How It Works flow ── */
      .how-it-works {
        text-align: center;
        padding: 100px 0;
      }
      .how-it-works h2 {
        color: #b44dff;
        text-shadow: 0 0 20px rgba(180, 77, 255, 0.3);
        margin-bottom: 48px;
      }
      .flow-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 2px;
        max-width: 900px;
        margin: 0 auto;
      }
      .flow-step {
        background: rgba(10, 0, 16, 0.6);
        border: 1px solid rgba(180, 77, 255, 0.15);
        padding: 24px 12px;
        text-align: center;
        position: relative;
        transition: all 0.2s;
      }
      .flow-step:hover {
        border-color: #b44dff;
        box-shadow: inset 0 0 20px rgba(180, 77, 255, 0.1);
      }
      .flow-step .step-icon {
        font-size: 24px;
        margin-bottom: 8px;
        display: block;
      }
      .flow-step .step-num {
        display: inline-block;
        background: #b44dff;
        color: #000;
        font-weight: 700;
        font-size: 10px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        margin-bottom: 8px;
      }
      .flow-step p {
        color: #d9a0ff;
        font-size: 11px;
        line-height: 1.4;
        font-weight: 600;
      }
      .flow-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #664499;
        font-size: 18px;
        min-width: 30px;
        padding: 0;
        border: none;
        background: none;
      }

      /* ── Evo Pro callout (cyan) ── */
      .evo-pro-callout {
        text-align: center;
        padding: 100px 0;
        border-top: 1px solid var(--border);
      }

      /* ── 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; }

      /* Tier colors */
      .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, mutate-jitter 8s step-end infinite;
      }
      .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; }
      }
      @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); }
      }
      .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-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; }
      }

      /* Cyan (Evo Pro) */
      .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); }

      /* Gold (Ultimate Bundle) */
      .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; }
      }

      /* Shared pricing */
      .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: #b44dff; 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: #b44dff; }
      .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);
      }

      /* ── 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); }

      /* ── Final CTA ── */
      .final-cta { text-align: center; padding: 120px 0; }
      .final-cta h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 16px; color: #b44dff; text-shadow: 0 0 20px rgba(180, 77, 255, 0.3); }
      .final-cta p { color: var(--text-dim); font-size: 14px; margin-bottom: 40px; }

      /* ── Key-point callout (blog-post-GM style) ── */
      .key-point {
        border-left: 3px solid #b44dff;
        background: rgba(180, 77, 255, 0.04);
        padding: 16px 20px;
        margin: 32px auto;
        max-width: 600px;
        text-align: left;
        font-size: 14px;
        color: #d9a0ff;
        line-height: 1.7;
      }

      /* ── Responsive ── */
      @media (max-width: 768px) {
        .price-grid { grid-template-columns: 1fr; max-width: 400px; }
        .flow-grid { grid-template-columns: repeat(4, 1fr); }
        .flow-arrow { display: none; }
      }
      @media (max-width: 480px) {
        .flow-grid { grid-template-columns: 1fr 1fr; }
        .hero { padding: 120px 0 60px; }
        .evo-features { grid-template-columns: 1fr; }
      }
