﻿.versus { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(1rem, 4vw, 3rem); align-items: stretch; margin-top: 3.5rem; }
        @media (max-width: 820px) { .versus { grid-template-columns: 1fr; } .vs-divider { display: none !important; } }
        .vs-card { border: 1px solid var(--line); border-radius: 22px; padding: 2rem; display: flex; flex-direction: column; background: #fff; }
        .vs-card.win { border-color: var(--verified); border-width: 2px; background: color-mix(in srgb, var(--glow) 8%, var(--paper)); box-shadow: 0 30px 60px -40px rgba(30,94,58,0.3); }
        .vs-card .name { display: flex; align-items: center; justify-content: space-between; font-size: 1.3rem; font-family: var(--font-display); }
        .badge { font-family: var(--font-mono); font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; padding: 0.3rem 0.6rem; border-radius: 100px; }
        .badge-win { background: var(--verified); color: var(--paper); }
        .badge-lose { background: var(--paper-2); color: var(--ink-soft); }
        .bignum { font-family: var(--font-display); font-size: clamp(3.5rem, 9vw, 6rem); line-height: 1; margin: 1.4rem 0 0.3rem; letter-spacing: -0.04em; }
        .vs-card.win .bignum { color: var(--verified); }
        .bignum-label { color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; }
        .vs-list { list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.95rem; }
        .vs-list li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--ink-soft); }
        .vs-list .ic { flex: none; width: 16px; height: 16px; margin-top: 0.25rem; }
        .vs-list .ok { color: var(--verified); }
        .vs-list .no { color: var(--signal); }
        .vs-divider { display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--ink-soft); }
        
        .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
        @media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }
        .feat {
            border: 1px solid var(--line); border-radius: 18px; padding: 1.8rem;
            display: flex; flex-direction: column; gap: 0.9rem; background: #fff;
        }
        .feat .ficon { width: 40px; height: 40px; color: var(--verified); }
        .feat h3 { font-size: 1.18rem; font-family: var(--font-display); font-weight: 400; }
        .feat p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }

        .price-tabs { display: inline-flex; gap: 0.3rem; padding: 0.4rem; border: 1px solid var(--line); border-radius: 100px; margin-bottom: 3rem; background: #fff; }
        .price-tab { padding: 0.7rem 1.5rem; border-radius: 100px; font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); transition: all 0.4s var(--ease); border: none; background: none; cursor: pointer; font-family: inherit; position: relative; }
        .price-tab.active { background: var(--ink); color: var(--paper); box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
        .price-panel { display: none; }
        .price-panel.active { display: block; animation: fadeIn 0.5s var(--ease); }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
        
        .price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
        @media (max-width: 1024px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 640px) { .price-grid { grid-template-columns: 1fr; } }
        .price-grid.three { grid-template-columns: repeat(3, 1fr); }
        @media (max-width: 820px) { .price-grid.three { grid-template-columns: 1fr; } }
        .plan {
            border: 1px solid var(--line); border-radius: 20px; padding: 2.2rem 1.8rem;
            display: flex; flex-direction: column; gap: 1rem; background: #fff;
            transition: transform 0.6s var(--ease), border-color 0.4s, box-shadow 0.6s;
            position: relative;
        }
        .plan:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(14,14,12,0.25); border-color: var(--ink-soft); }
        .plan.featured { border-color: var(--verified); border-width: 2px; background: color-mix(in srgb, var(--glow) 5%, #fff); transform: scale(1.02); }
        .plan.featured:hover { transform: scale(1.02) translateY(-6px); box-shadow: 0 30px 60px -30px rgba(30,94,58,0.3); }
        .plan .pname { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-soft); display: flex; justify-content: space-between; align-items: center; }
        .plan .pname .star { color: var(--verified); background: color-mix(in srgb, var(--glow) 30%, transparent); padding: 0.2rem 0.6rem; border-radius: 100px; font-size: 0.7rem; }
        .plan .pprice { font-family: var(--font-display); font-size: 2.8rem; letter-spacing: -0.03em; margin-block: 0.5rem; }
        .plan .pprice span { font-family: var(--font-body); font-size: 1rem; color: var(--ink-soft); font-weight: 400; }
        .plan .pfor { color: var(--ink-soft); font-size: 0.95rem; min-height: 2.6em; line-height: 1.5; }
        .plan ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.92rem; margin-top: 1rem; margin-bottom: 2rem; }
        .plan ul li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--ink); }
        .plan ul .ic { flex: none; width: 16px; height: 16px; margin-top: 0.25rem; color: var(--verified); }
        .plan .btn-claude { margin-top: auto; justify-content: center; display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 1.4rem; border-radius: 100px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: background 0.3s, border-color 0.3s, transform 0.2s; }
        .plan .btn-claude:active { transform: scale(0.98); }
        .btn-claude-primary { background: var(--ink); color: var(--paper); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
        .btn-claude-primary:hover { background: var(--verified); }
        .btn-claude-ghost { border: 1px solid var(--line); color: var(--ink); background: var(--paper); }
        .btn-claude-ghost:hover { border-color: var(--ink); background: #fff; }
        .price-note { margin-top: 2rem; color: var(--ink-soft); font-size: 0.9rem; max-width: 60ch; text-align: center; margin-inline: auto; }

        /* Pricing tabs — full-width segmented control on mobile (matches /plan) */
        @media (max-width: 640px) {
            .plan-tabs-wrap { display: flex; justify-content: center; padding-inline: 0.25rem; }
            .price-tabs {
                display: flex;
                width: 100%;
                max-width: 100%;
                padding: 0.3rem;
                gap: 0.25rem;
                margin-bottom: 2rem;
            }
            .price-tab {
                flex: 1;
                min-width: 0;
                padding: 0.55rem 0.75rem;
                font-size: 0.9rem;
                line-height: 1.25;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                white-space: normal;
            }
            .price-tab .tab-badge {
                font-size: 0.55rem !important;
                padding: 0.1rem 0.35rem !important;
                margin-left: 0.25rem !important;
            }
        }

        /* FAQ Accordion */
        .faq-item { border-bottom: 1px solid var(--line); }
        .faq-item:first-child { border-top: 1px solid var(--line); }
        .faq-btn { width: 100%; text-align: left; padding: 1.8rem 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; cursor: pointer; color: var(--ink); background: transparent; border: none; transition: color 0.3s; }
        .faq-btn:hover { color: var(--verified); }
        .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); color: var(--ink-soft); font-size: 1.05rem; line-height: 1.6; }
        .faq-content p { padding-bottom: 1.8rem; padding-right: 2rem; max-width: 65ch; }
        .faq-icon { transition: transform 0.4s var(--ease); flex-shrink: 0; margin-left: 1rem; width: 20px; height: 20px; }
        .faq-item.active .faq-icon { transform: rotate(180deg); color: var(--verified); }

        #final { background: var(--ink); color: var(--paper); text-align: center; overflow: hidden; position: relative; }
        #final-canvas { position: absolute; inset: 0; z-index: 0; opacity: 0.9; width: 100%; height: 100%; display: block; }
        #final .wrap { position: relative; z-index: 2; padding-block: 6rem; }
        #final h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 6rem); max-width: 16ch; margin-inline: auto; font-weight: 400; line-height: 1.02; letter-spacing: -0.03em; }
        #final h2 em { font-style: italic; color: var(--glow); }
        #final .lead { color: #b9b5a8; margin: 1.6rem auto 2.4rem; font-size: 1.2rem; }
        #final .eyebrow { color: var(--glow); justify-content: center; }
        #final .eyebrow::before { background: var(--glow); }
        #final .final-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; align-items: center; margin-bottom: 1rem;}
        #final .btn-final-primary { background: var(--glow); color: var(--ink); display: inline-flex; align-items: center; gap: 0.6rem; padding: 1.1rem 2.2rem; border-radius: 100px; font-weight: 600; font-size: 1.1rem; text-decoration: none; transition: background 0.3s, transform 0.3s; box-shadow: 0 8px 20px rgba(159, 227, 184, 0.2); }
        #final .btn-final-primary:hover { background: #fff; transform: translateY(-3px); }
        #final .btn-final-ghost { border: 1px solid #3a382f; color: var(--paper); display: inline-flex; align-items: center; gap: 0.6rem; padding: 1.1rem 2.2rem; border-radius: 100px; font-weight: 600; font-size: 1.1rem; text-decoration: none; transition: border-color 0.3s, background 0.3s; }
        #final .btn-final-ghost:hover { border-color: var(--glow); background: rgba(159,227,184,0.05); }

        footer.site-footer { background: var(--ink); color: #8a8678; padding-block: 4rem 2rem; border-top: 1px solid #26241f; position: relative; z-index: 10; }
        .foot-grid { display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap; align-items: flex-start; }
        .foot-def { max-width: 42ch; color: #b9b5a8; font-size: 0.95rem; line-height: 1.6; margin-top: 1.2rem; }
        .foot-links { display: flex; gap: 4rem; flex-wrap: wrap; }
        .foot-col { display: flex; flex-direction: column; gap: 0.8rem; font-size: 0.95rem; }
        .foot-col b { color: var(--paper); font-weight: 600; font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.5rem; }
        .foot-col a { color: inherit; text-decoration: none; transition: color 0.2s; }
        .foot-col a:hover { color: var(--glow); }
        .foot-bottom { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid #26241f; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; }
        .foot-bottom .mono { font-family: var(--font-mono); font-size: 0.8rem; color: var(--glow); opacity: 0.8; }

        /* Grain handled by body.landing::before in shelftap-theme.css (static tile).
           Live SVG feTurbulence overlays were a scroll-jank source. */
        svg.grain { display: none !important; }
        @media (prefers-reduced-motion: reduce) {
            .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
            .btn-pulse { animation: none; }
        }

