/* ================================================================
       CYTIDE HOSTING
       Edit tokens in :root to retheme the site.
       ================================================================ */
    :root {
        --bg:           #1a1d27;
        --surface:      #20242e;
        --surface-2:    #272b38;
        --border:       rgba(75, 184, 192, 0.14);
        --teal:         #4bb8c0;
        --teal-light:   #7dd4d8;
        --teal-glow:    rgba(75, 184, 192, 0.10);
        --text:         #e3e6ee;
        --text-muted:   #7a8092;
        --text-dim:     #464d60;
        --warn:         #d4a04a;
        --warn-bg:      rgba(212, 160, 74, 0.07);
        --warn-border:  rgba(212, 160, 74, 0.22);
        --purple:       #a374e0;
        --purple-light: #c4a3ee;
        --font-display: 'Syne', system-ui, sans-serif;
        --font-body:    'Inter', system-ui, -apple-system, sans-serif;
        --nav-h:        62px;
        --radius:       10px;
        --radius-lg:    16px;
        --max-w:        1080px;
        --ease:         cubic-bezier(0.4, 0, 0.2, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
    a { color: var(--teal); text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { font-family: inherit; border: none; background: none; cursor: pointer; }
    ul { list-style: none; }
    .hidden { display: none !important; }
    .wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    .tag {
        display: inline-flex; align-items: center; gap: 6px;
        font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
        color: var(--teal); background: var(--teal-glow);
        border: 1px solid rgba(75,184,192,0.22);
        padding: 4px 11px; border-radius: 20px; margin-bottom: 16px;
    }

    /* ---- NAV ---- */
    nav {
        position: fixed; top: 0; left: 0; right: 0;
        height: var(--nav-h); z-index: 100;
        background: rgba(26, 29, 39, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
    }
    .nav-inner {
        max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
        height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .nav-logo {
        display: flex; align-items: center; gap: 9px;
        font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
        color: var(--text); letter-spacing: -0.01em; flex-shrink: 0;
    }
    .nav-logo img { height: 34px; width: auto; }
    .nav-logo .sub { font-family: var(--font-body); font-weight: 400; font-size: 0.83rem; color: var(--text-muted); }
    .nav-links { display: flex; align-items: center; gap: 2px; }
    .nav-links a {
        color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
        padding: 6px 12px; border-radius: var(--radius);
        transition: color 0.18s, background 0.18s;
        white-space: nowrap;
    }
    .nav-links a:hover { color: var(--text); background: var(--surface-2); }
    .nav-links a.active { color: var(--teal); background: var(--teal-glow); }
    .nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .btn-nav-ghost {
        font-size: 0.86rem; font-weight: 600; padding: 7px 14px;
        border-radius: var(--radius); color: var(--text-muted);
        border: 1px solid var(--border);
        transition: color 0.18s, border-color 0.18s, background 0.18s;
        white-space: nowrap;
    }
    .btn-nav-ghost:hover { color: var(--teal); border-color: rgba(75,184,192,0.4); background: var(--teal-glow); }
    .btn-nav-primary {
        font-size: 0.86rem; font-weight: 600; padding: 7px 16px;
        border-radius: var(--radius); background: var(--teal); color: #0d1320;
        transition: background 0.18s, transform 0.15s;
        white-space: nowrap;
    }
    .btn-nav-primary:hover { background: var(--teal-light); transform: translateY(-1px); }
    .hamburger { display: none; flex-direction: column; gap: 5px; padding: 7px; border-radius: var(--radius); transition: background 0.18s; }
    .hamburger:hover { background: var(--surface-2); }
    .hamburger span { display: block; width: 21px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.24s var(--ease); }
    .mobile-drawer {
        display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
        background: var(--surface); border-bottom: 1px solid var(--border);
        padding: 12px 20px 16px; flex-direction: column; gap: 2px;
        z-index: 99; box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    }
    .mobile-drawer.open { display: flex; }
    .mobile-drawer a { color: var(--text-muted); font-size: 0.92rem; font-weight: 500; padding: 10px 14px; border-radius: var(--radius); transition: color 0.18s, background 0.18s; }
    .mobile-drawer a:hover, .mobile-drawer a.mob-active { color: var(--teal); background: var(--teal-glow); }

    /* ---- PAGE SYSTEM ---- */
    .page { padding-top: var(--nav-h); min-height: 100vh; }
    @keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
    .page.animating { animation: pageIn 0.25s var(--ease) both; }

    /* ---- BUTTONS ---- */
    .btn { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 0.88rem; padding: 10px 22px; border-radius: var(--radius); transition: all 0.18s var(--ease); cursor: pointer; border: none; white-space: nowrap; }
    .btn-primary { background: var(--teal); color: #0d1320; }
    .btn-primary:hover { background: var(--teal-light); color: #0d1320; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(75,184,192,0.24); }
    .btn-purple { background: var(--purple); color: #0d1320; }
    .btn-purple:hover { background: var(--purple-light); color: #0d1320; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(163,116,224,0.24); }
    .btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
    .btn-ghost:hover { border-color: rgba(75,184,192,0.38); color: var(--teal); background: var(--teal-glow); }
    .btn-full { width: 100%; justify-content: center; padding: 11px 22px; }

    /* ---- HERO ---- */
    .hero {
        position: relative; padding: 90px 24px 80px;
        text-align: center; overflow: hidden;
    }
    .hero-bg-glow {
        position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
        width: 700px; height: 420px;
        background: radial-gradient(ellipse at center, rgba(75,184,192,0.08) 0%, transparent 65%);
        pointer-events: none;
    }
    .hero-bg-wave {
        position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
        overflow: hidden; pointer-events: none; opacity: 0.06;
    }
    .hero-bg-wave svg { width: 200%; height: 100%; animation: waveScroll 18s linear infinite; }
    @keyframes waveScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .hero-inner { position: relative; max-width: 680px; margin: 0 auto; }
    .hero-inner h1 {
        font-family: var(--font-display);
        font-size: clamp(2.1rem, 5vw, 3.4rem);
        font-weight: 800; letter-spacing: -0.035em; line-height: 1.08;
        color: var(--text); margin-bottom: 18px;
    }
    .hero-inner h1 em { font-style: normal; color: var(--teal); }
    .hero-inner p { font-size: 1.05rem; color: var(--text-muted); max-width: 480px; margin: 0 auto 32px; line-height: 1.72; }
    .hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    /* ---- DISCLOSURE ---- */
    .disclosure-wrap { padding: 0 24px; max-width: 780px; margin: 0 auto 16px; }
    .disclosure-box {
        background: var(--warn-bg); border: 1px solid var(--warn-border);
        border-radius: var(--radius-lg); padding: 20px 22px;
        display: flex; gap: 14px; align-items: flex-start;
    }
    .d-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
    .d-body h4 { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; color: var(--warn); margin-bottom: 6px; }
    .d-body p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.62; }
    .d-body p + p { margin-top: 5px; }

    /* ---- SECTION HEADER ---- */
    .sec-head { text-align: center; margin-bottom: 44px; }
    .sec-head h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -0.025em; color: var(--text); margin-bottom: 10px; }
    .sec-head p { font-size: 0.96rem; color: var(--text-muted); max-width: 480px; margin: 0 auto; }

    /* ---- WHY CARDS ---- */
    .why-section { padding: 64px 24px; }
    .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; max-width: var(--max-w); margin: 0 auto; }
    .why-card {
        background: var(--surface); border: 1px solid var(--border);
        border-radius: var(--radius-lg); padding: 22px;
        transition: border-color 0.18s, transform 0.18s;
    }
    .why-card:hover { border-color: rgba(75,184,192,0.3); transform: translateY(-2px); }
    .why-ic { width: 40px; height: 40px; border-radius: 9px; background: var(--teal-glow); border: 1px solid rgba(75,184,192,0.18); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; margin-bottom: 14px; }
    .why-card h3 { font-family: var(--font-display); font-size: 0.97rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
    .why-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }
    .why-card .caveat { margin-top: 9px; font-size: 0.81rem; color: var(--warn); line-height: 1.55; }

    /* ---- FROM JACK ---- */
    .from-jack { padding: 64px 24px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .from-jack-inner { max-width: 620px; margin: 0 auto; text-align: center; }
    .jack-av { width: 58px; height: 58px; border-radius: 50%; background: var(--teal-glow); border: 2px solid rgba(75,184,192,0.35); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 26px; }
    .from-jack blockquote { position: relative; font-size: 0.98rem; color: var(--text); line-height: 1.82; font-style: italic; margin-bottom: 26px; padding: 0 6px; }
    .from-jack blockquote::before { content: '\201C'; position: absolute; top: -16px; left: -4px; font-size: 4rem; color: var(--teal); opacity: 0.22; font-family: var(--font-display); line-height: 1; pointer-events: none; }
    .jack-sig { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--teal); }
    .jack-sig span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.83rem; color: var(--text-muted); margin-top: 3px; }

    /* ---- PAGE HERO ---- */
    .page-hero { padding: 52px 24px 44px; text-align: center; border-bottom: 1px solid var(--border); background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%); }
    .page-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin-bottom: 11px; }
    .page-hero p { color: var(--text-muted); font-size: 0.96rem; max-width: 460px; margin: 0 auto; }

    /* ---- TABS ---- */
    .tabs-wrap { padding: 40px 24px 80px; max-width: var(--max-w); margin: 0 auto; }
    .tab-nav { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 36px; }
    .tab-btn {
        padding: 9px 18px; font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
        border-radius: var(--radius) var(--radius) 0 0;
        border: 1px solid transparent; border-bottom: none;
        transition: all 0.18s var(--ease);
        position: relative; bottom: -1px;
        cursor: pointer;
    }
    .tab-btn:hover { color: var(--text); background: var(--surface); }
    .tab-btn.active { color: var(--teal); background: var(--bg); border-color: var(--border); border-bottom-color: var(--bg); }
    .tab-panel { display: none; }
    .tab-panel.active { display: block; animation: pageIn 0.22s var(--ease); }

    /* ---- PRICING ---- */
    .pricing-section { margin-bottom: 44px; }
    .pricing-section h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 18px; }
    .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
    .price-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; position: relative; transition: border-color 0.18s, transform 0.18s; }
    .price-card:hover { border-color: rgba(75,184,192,0.3); transform: translateY(-3px); }
    .price-card.popular { border-color: var(--teal); }
    .pop-badge { position: absolute; top: -1px; right: 14px; background: var(--teal); color: #0d1320; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 0 0 var(--radius) var(--radius); }
    .price-card.best-value { border-color: var(--purple); }
    .best-value-badge { position: absolute; top: -1px; right: 14px; background: var(--purple); color: #0d1320; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 0 0 var(--radius) var(--radius); }
    /* SALE BADGE: add <div class="sale-badge">Sale</div> inside a .price-card to enable */
    .sale-badge { position: absolute; top: -1px; left: 14px; background: #c0392b; color: #fff; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 0 0 var(--radius) var(--radius); }
    .price-card.on-sale { border-color: #c0392b; }
    .pc-head { background: rgba(0,0,0,0.2); padding: 22px 22px 18px; border-bottom: 1px solid var(--border); }
    .pc-head h3 { font-family: var(--font-display); font-size: 0.97rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
    /* PLAN SUBTITLE: edit the .pc-subtitle text per plan */
    .pc-subtitle { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
    .pc-price { display: flex; align-items: baseline; gap: 4px; }
    .pc-price .num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--text); }
    .pc-price .period { font-size: 0.84rem; color: var(--text-muted); }
    .pc-body { padding: 18px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 18px; }
    .pc-feats { display: flex; flex-direction: column; gap: 8px; flex: 1; }
    .pc-feats li { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 8px; }
    .pc-feats li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

    /* ---- NODE SPECS ---- */
    .specs-section { margin-bottom: 40px; }
    .specs-section h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 18px; }
    .specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
    .spec-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; }
    .spec-ic { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
    .spec-card h4 { font-family: var(--font-display); font-size: 0.84rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
    .spec-card p { font-size: 0.9rem; color: var(--text); font-weight: 500; line-height: 1.45; }
    .spec-card small { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

    /* ---- SERVICE CARDS ---- */
    .scard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-bottom: 36px; }
    .scard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; transition: border-color 0.18s, transform 0.18s; }
    .scard:hover { border-color: rgba(75,184,192,0.28); transform: translateY(-2px); }
    .scard-icon { font-size: 1.7rem; margin-bottom: 13px; }
    .scard h3 { font-family: var(--font-display); font-size: 0.97rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
    .scard p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }
    .feat-list { margin-top: 13px; display: flex; flex-direction: column; gap: 6px; }
    .feat-list li { font-size: 0.83rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
    .feat-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .feat-list li.warn::before { content: '⚠'; color: var(--warn); }

    /* ---- INFO BOX ---- */
    .info-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 26px; margin-top: 18px; }
    .info-box h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
    .info-box p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.68; }
    .info-box p + p { margin-top: 8px; }

    /* ---- DIVIDER ---- */
    .divider { border: none; border-top: 1px solid var(--border); margin: 36px 0; }

    /* ---- CUSTOM SOLUTION ---- */
    .custom-section { margin-top: 48px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px 24px; text-align: center; }
    .custom-section h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
    .custom-section p { font-size: 0.94rem; color: var(--text-muted); max-width: 460px; margin: 0 auto 24px; line-height: 1.7; }

    /* ---- BOT FEATURES ---- */
    .bot-wrap { padding: 40px 24px 80px; max-width: var(--max-w); margin: 0 auto; }
    .bot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 13px; margin-bottom: 44px; }
    .bot-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; transition: border-color 0.18s; }
    .bot-card:hover { border-color: rgba(75,184,192,0.28); }
    .bot-card .ic { font-size: 1.4rem; margin-bottom: 12px; }
    .bot-card h3 { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
    .bot-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.62; }

    /* ---- FAQ ---- */
    .faq-wrap { padding: 44px 24px 80px; max-width: 720px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-q { width: 100%; text-align: left; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 0.93rem; font-weight: 600; color: var(--text); transition: color 0.18s; }
    .faq-q:hover { color: var(--teal); }
    .faq-q svg { flex-shrink: 0; transition: transform 0.24s var(--ease); color: var(--text-dim); }
    .faq-item.open .faq-q { color: var(--teal); }
    .faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--teal); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s var(--ease); }
    .faq-item.open .faq-a { max-height: 500px; }
    .faq-a-inner { padding-bottom: 18px; font-size: 0.89rem; color: var(--text-muted); line-height: 1.72; }
    .faq-a-inner p + p { margin-top: 9px; }
    .faq-warn { display: flex; gap: 7px; align-items: flex-start; margin-top: 10px; font-size: 0.84rem; color: var(--warn); }

    /* ---- LEGAL PAGES ---- */
    .doc-wrap { max-width: 740px; margin: 0 auto; padding: 52px 24px 80px; }
    .doc-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
    .doc-meta-item { font-size: 0.84rem; color: var(--text-muted); }
    .doc-meta-item strong { color: var(--text); font-weight: 600; display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
    .doc-section { margin-bottom: 40px; }
    .doc-section h2 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--teal); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
    .doc-section p { font-size: 0.91rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
    .doc-section p:last-child { margin-bottom: 0; }
    .doc-section ul { margin: 10px 0 12px; display: flex; flex-direction: column; gap: 7px; }
    .doc-section ul li { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; padding-left: 18px; position: relative; }
    .doc-section ul li::before { content: '-'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
    .notice-box { background: var(--warn-bg); border: 1px solid var(--warn-border); border-radius: var(--radius-lg); padding: 16px 20px; margin: 14px 0; }
    .notice-box p { font-size: 0.86rem; color: var(--warn); line-height: 1.65; margin: 0; }
    .acl-box { background: var(--teal-glow); border: 1px solid rgba(75,184,192,0.22); border-radius: var(--radius-lg); padding: 16px 20px; margin: 14px 0; }
    .acl-box p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
    .acl-box strong { color: var(--teal); }
    .doc-table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 0.87rem; }
    .doc-table th { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border); }
    .doc-table td { color: var(--text-muted); padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.04); line-height: 1.55; vertical-align: top; }
    .doc-table tr:last-child td { border-bottom: none; }
    .doc-table td:first-child { color: var(--text); font-weight: 500; white-space: nowrap; }
    @media (max-width: 720px) { .doc-meta { flex-direction: column; gap: 12px; } .doc-table { display: block; overflow-x: auto; } }

    /* ---- MOUSE TOOLTIP ---- */
    #cytide-tooltip {
        position: fixed; z-index: 9999; pointer-events: none;
        background: rgba(26, 20, 10, 0.96); border: 1px solid var(--warn-border);
        color: var(--warn); font-size: 0.8rem; line-height: 1.5;
        padding: 8px 12px; border-radius: var(--radius);
        max-width: 220px; opacity: 0;
        transition: opacity 0.15s var(--ease);
        box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    }
    #cytide-tooltip.show { opacity: 1; }
    .warn-hint {
        display: inline-block; margin-top: 10px;
        font-size: 0.75rem; color: var(--warn);
        opacity: 0.7; cursor: default;
        user-select: none;
        transition: opacity 0.15s;
    }
    .why-card:hover .warn-hint { opacity: 1; }

    /* ---- NODE BOX ---- */
    .node-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 26px; margin-bottom: 20px; }
    .node-box h2 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
    .node-row { display: flex; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.88rem; align-items: flex-start; }
    .node-row:last-child { border-bottom: none; padding-bottom: 0; }
    .node-row strong { color: var(--text-muted); font-weight: 600; min-width: 72px; flex-shrink: 0; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 1px; }
    .node-row span { color: var(--text); line-height: 1.55; }

    /* ---- PRICING NOTE ---- */
    /* 4-col grid for 8-plan Minecraft section */
    .pricing-grid-lg { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .pricing-note { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 16px; }
    .pricing-note strong { color: var(--teal); }

    /* ---- STATUS LINK ---- */
    .status-link { font-size: 0.82rem; color: var(--text-muted); transition: color 0.18s; }
    .status-link:hover { color: var(--teal); }

    /* ---- FOOTER ---- */
    footer { background: var(--surface); border-top: 1px solid var(--border); padding: 36px 24px; }
    .footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
    .footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 0.96rem; font-weight: 700; color: var(--text); }
    .footer-logo img { height: 22px; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px 18px; }
    .footer-links a { font-size: 0.83rem; color: var(--text-muted); transition: color 0.18s; }
    .footer-links a:hover { color: var(--teal); }
    .footer-copy { font-size: 0.77rem; color: var(--text-dim); }

    /* ---- SCROLL REVEAL ---- */
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.46s var(--ease), transform 0.46s var(--ease); }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ---- RESPONSIVE ---- */
    @media (max-width: 720px) {
        .nav-links { display: none; }
        .nav-actions .btn-nav-ghost { display: none; }
        .hamburger { display: flex; }
        .hero { padding: 60px 20px 56px; }
        .why-grid, .pricing-grid, .specs-grid, .scard-grid, .bot-grid { grid-template-columns: 1fr; }
        .tab-btn { padding: 8px 11px; font-size: 0.83rem; }
    }
    @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }