/* ============================================================
   Toxic Scripts storefront — design system from the rebrand
   canvas, rebuilt responsive. One stylesheet, no build step.
   ============================================================ */

:root {
    --bg: #0A0B0D;
    --surface: #101317;
    --surface-2: #0F1215;
    --surface-3: #0E1114;
    --surface-4: #0C0E10;
    --input-bg: #0B0D0F;
    --border: #1E2227;
    --border-2: #1A1E22;
    --border-3: #22262B;
    --border-4: #2A2F35;
    --border-5: #2C3137;
    --border-dark: #14171A;
    --red: #C21F3A;
    --red-light: #FF6479;
    --red-lighter: #FF8E9D;
    --red-soft: #FF9AA8;
    --text: #E8EAED;
    --muted-1: #C6CCD3;
    --muted-2: #B4BAC2;
    --muted-3: #A6ADB5;
    --muted-4: #9AA1A9;
    --muted-5: #8A9099;
    --muted-6: #7A8089;
    --muted-7: #6B7178;
    --muted-8: #5E646D;
    --muted-9: #4E545C;
    --mono: 'JetBrains Mono', monospace;
    --pattern: repeating-linear-gradient(120deg, #15181C 0 14px, #1A1E23 14px 28px);
    --pattern-sm: repeating-linear-gradient(120deg, #15181C 0 9px, #1A1E23 9px 18px);
    --bundle-grad: linear-gradient(150deg, #2A0D18, #0F1215 62%);
    --pad-x: 60px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Sora', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--red-light); text-decoration: none; }
a:hover { color: var(--red-lighter); }
::selection { background: var(--red); color: #fff; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-3); border-radius: 8px; }

img { max-width: 100%; }
button { font-family: inherit; background: none; border: none; color: inherit; padding: 0; cursor: pointer; }

.container { max-width: 1320px; width: 100%; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 11px; font-weight: 700; cursor: pointer; border: none; transition: filter .15s, background .15s; line-height: 1.15; }
/* Buttons rendered as <a> would otherwise pick up the pink link hover colour. */
a.btn:hover { color: #fff; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { filter: brightness(1.15); }
.btn-ghost { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: #fff; font-weight: 600; }
.btn-ghost:hover { background: rgba(255,255,255,.11); }
.btn-outline { background: none; border: 1px solid var(--border-5); color: #fff; font-weight: 600; }
.btn-outline:hover { border-color: var(--muted-6); }
.btn-lg { font-size: 15px; padding: 16px 30px; }
.btn-md { font-size: 14px; padding: 14px 26px; border-radius: 10px; }
.btn-sm { font-size: 13px; padding: 11px 20px; border-radius: 9px; }

.mono-label { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--red); }
.kicker { font-size: 12px; font-weight: 700; letter-spacing: .16em; }

/* ===== Nav ===== */
.nav-wrap { position: sticky; top: 0; z-index: 50; padding: 18px 40px 0; }
.nav {
    max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
    background: rgba(16,18,21,.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.07); border-radius: 16px; padding: 13px 20px 13px 22px;
}
.nav-logo { height: 24px; width: auto; cursor: pointer; display: block; }
.nav-links { display: flex; gap: 30px; font-size: 14px; font-weight: 600; color: var(--muted-2); }
.nav-link { position: relative; cursor: pointer; padding: 2px 0; color: inherit; }
.nav-link:hover { color: #fff; }
.nav-link.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; background: var(--red); border-radius: 2px; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cart { display: flex; align-items: center; gap: 9px; cursor: pointer; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 9px 14px; background: none; }
/* Custom dropdown (currency in the nav, sort on Resources) */
.dd { position: relative; }
.dd-btn { display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 9px 14px; font-size: 13px; font-weight: 600; color: var(--muted-1); background: none; cursor: pointer; font-family: inherit; }
.dd-btn:hover { border-color: rgba(255,255,255,.22); color: #fff; }
.dd-chev { color: var(--muted-5); flex: none; transition: transform .15s; }
.dd.open .dd-chev { transform: rotate(180deg); }
.dd-menu {
    position: absolute; top: calc(100% + 8px); right: 0; min-width: 100%;
    background: rgba(16,18,21,.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.09); border-radius: 12px; padding: 6px;
    display: none; flex-direction: column; gap: 2px; z-index: 60;
    box-shadow: 0 14px 40px rgba(0,0,0,.5);
}
.dd.open .dd-menu { display: flex; }
.dd-item { text-align: left; font-size: 13px; font-weight: 600; color: var(--muted-2); padding: 9px 14px; border-radius: 8px; background: none; border: none; cursor: pointer; white-space: nowrap; font-family: inherit; }
.dd-item:hover { background: rgba(255,255,255,.06); color: #fff; }
.dd-item.active { color: #fff; background: rgba(194,31,58,.18); }
.toolbar-right .dd-btn { background: var(--surface); border-color: var(--border); border-radius: 9px; padding: 10px 14px 10px 16px; color: var(--muted-2); }
.nav-cart-label { font-size: 13px; color: var(--muted-1); }
.nav-cart-count {
    background: var(--red); color: #fff; font-family: var(--mono); font-size: 11px; font-weight: 700; line-height: 1;
    min-width: 19px; height: 19px; border-radius: 6px; display: flex; align-items: center; justify-content: center; padding: 1px 4px 0;
}
.nav-burger { display: none; flex-direction: column; gap: 4px; padding: 10px; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--muted-1); border-radius: 2px; }

/* ===== Hero ===== */
/* Pulled up past the full nav height so the striped pattern reaches the very
   top of the page (the nav floats over it); min-height compensates the overlap. */
.hero { position: relative; margin-top: -120px; min-height: 708px; display: flex; align-items: flex-end;
    background: linear-gradient(180deg, rgba(10,11,13,.35) 0%, rgba(10,11,13,.8) 60%, var(--bg) 100%), var(--pattern); }
.hero-inner { padding-top: 160px; padding-bottom: 76px; display: flex; flex-direction: column; }
.hero-pill { display: inline-flex; align-self: flex-start; align-items: center; gap: 9px; background: rgba(194,31,58,.16);
    border: 1px solid rgba(194,31,58,.4); border-radius: 99px; padding: 7px 15px; margin-bottom: 12px; }
.hero-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-light); animation: pill-pulse 2.2s ease-in-out infinite; }
@keyframes pill-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,100,121,.45); }
    50% { opacity: .5; box-shadow: 0 0 0 6px rgba(255,100,121,0); }
}
.hero-pill .pill-text { font-size: 12px; font-weight: 600; letter-spacing: .06em; color: #fff; animation: pill-flash 2.2s ease-in-out infinite; }
/* Pill naming a real product is a link to it */
.hero-pill.link { cursor: pointer; transition: background .15s, border-color .15s; }
.hero-pill.link:hover { background: rgba(194,31,58,.28); }
.hero-pill .pill-arrow { font-size: 12px; color: var(--red-light); transition: transform .15s; }
.hero-pill.link:hover .pill-arrow { transform: translateX(3px); }
@keyframes pill-flash {
    0%, 100% { opacity: 1; }
    50% { opacity: .55; }
}
.hero-title { font-size: clamp(36px, 6vw, 68px); font-weight: 800; line-height: 1.02; letter-spacing: -.035em; margin: 0 0 20px; max-width: 780px; text-wrap: balance; }
.hero-sub { font-size: 17px; color: var(--muted-3); line-height: 1.65; margin: 0 0 30px; max-width: 560px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Stats strip ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-2); border: 1px solid var(--border-2); border-radius: 16px; overflow: hidden; }
.stat { background: var(--surface-3); padding: 26px 28px; display: flex; flex-direction: column; gap: 6px; }
.stat b { font-size: 30px; font-weight: 800; letter-spacing: -.03em; }
.stat span { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--muted-6); }

/* ===== Section headers ===== */
.section-head { padding-top: 70px; padding-bottom: 30px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.section-head h2 { font-size: 34px; font-weight: 800; letter-spacing: -.03em; margin: 0 0 8px; }
.section-head p { font-size: 15px; color: var(--muted-5); margin: 0; }
.section-link { font-size: 14px; font-weight: 700; color: var(--red-light); cursor: pointer; white-space: nowrap; }

/* ===== Product cards ===== */
.card { border-radius: 18px; overflow: hidden; background: var(--surface); border: 1px solid var(--border); display: flex; flex-direction: column; cursor: pointer; transition: border-color .15s, transform .15s; }
.card:hover { border-color: var(--border-4); transform: translateY(-2px); }
.card-media { aspect-ratio: 16/10; background: var(--pattern); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-media .badge-cat { position: absolute; top: 13px; left: 13px; background: rgba(0,0,0,.55); backdrop-filter: blur(6px); border-radius: 7px; padding: 5px 10px; font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--muted-1); text-transform: uppercase; }
.card-media .badge-red { position: absolute; top: 13px; left: 13px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; padding: 5px 11px; border-radius: 7px; }
.card-media .badge-sale { position: absolute; top: 13px; right: 13px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; padding: 5px 11px; border-radius: 7px; }
.card-media .badge-stack { position: absolute; top: 13px; right: 13px; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.badge-red-s { background: var(--red); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .06em; padding: 5px 10px; border-radius: 7px; text-transform: uppercase; }
.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.card-title { font-size: 19px; font-weight: 700; letter-spacing: -.015em; }
.card-blurb { font-size: 13.5px; color: var(--muted-5); line-height: 1.55; }
.card-tags { display: flex; gap: 7px; padding-top: 4px; flex-wrap: wrap; }
.tag { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--muted-4); border: 1px solid var(--border-4); border-radius: 6px; padding: 4px 8px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; margin-top: auto; gap: 10px; }
.price { font-size: 22px; font-weight: 800; letter-spacing: -.02em; white-space: nowrap; }
.price-was { font-size: 14px; color: var(--muted-6); text-decoration: line-through; margin-left: 8px; font-weight: 600; }

/* Featured (home) */
.showcase { padding-bottom: 70px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 20px; }
.showcase .card-media.wide { aspect-ratio: 16/10; }
.showcase .feat-foot { padding: 22px 24px 26px; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.showcase .feat-foot .t { font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 7px; }
.showcase .feat-foot .s { font-size: 14px; color: var(--muted-5); }

/* Home promo duo */
.promo-duo { padding-bottom: 76px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.promo { border-radius: 20px; padding: 44px; display: flex; flex-direction: column; gap: 16px; cursor: pointer; }
.promo.red { background: linear-gradient(150deg, #2A0D18, #101317); border: 1px solid rgba(194,31,58,.35); }
.promo.plain { background: var(--surface-2); border: 1px solid var(--border); }
.promo h3 { font-size: 36px; font-weight: 800; letter-spacing: -.03em; line-height: 1.05; margin: 0; }
.promo p { font-size: 15px; color: var(--muted-3); line-height: 1.6; margin: 0; }
.promo-price-row { display: flex; align-items: center; gap: 16px; margin-top: 10px; flex-wrap: wrap; }
.promo-price-row .big { font-size: 38px; font-weight: 800; letter-spacing: -.03em; }
.promo-price-row .was { font-size: 16px; color: var(--muted-6); text-decoration: line-through; }
.promo-price-row .per { font-size: 15px; color: var(--muted-6); }
.promo-price-row .btn { margin-left: auto; }

/* Community / socials strip */
.community-wrap { padding-bottom: 90px; }
.community {
    border-radius: 20px; border: 1px solid rgba(194,31,58,.35); background: var(--bundle-grad);
    padding: 40px 44px; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap;
}
.community-info { display: flex; flex-direction: column; gap: 10px; max-width: 480px; }
.community-info h3 { font-size: 30px; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin: 0; }
.community-info p { font-size: 15px; color: var(--muted-3); line-height: 1.6; margin: 0; }
.community-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.btn-icon {
    width: 48px; height: 48px; flex: none; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07); color: var(--muted-1);
    transition: background .15s, border-color .15s, color .15s;
}
.btn-icon:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* Testimonials */
.quotes { padding-bottom: 90px; }
.quotes h2 { font-size: 34px; font-weight: 800; letter-spacing: -.03em; margin: 0 0 28px; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: var(--surface-2); border: 1px solid var(--border); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.quote .stars { display: flex; align-items: center; gap: 3.5px; }
.quote .stars svg { width: 15px; height: 15px; fill: var(--red-light); filter: drop-shadow(0 0 7px rgba(255,100,121,.35)); }
.quote .stars-n { font-family: var(--mono); font-size: 11.5px; font-weight: 700; color: var(--muted-6); margin-left: 7px; padding-top: 1px; }
.quote .body { font-size: 15px; line-height: 1.7; color: var(--muted-1); }
.quote .who { font-size: 13px; color: var(--muted-6); margin-top: auto; }

/* ===== Page headers ===== */
.page { padding-top: 60px; padding-bottom: 90px; }
.page-head { display: flex; flex-direction: column; gap: 10px; margin-bottom: 34px; }
.page-head h1 { font-size: clamp(32px, 5vw, 46px); font-weight: 800; letter-spacing: -.035em; margin: 0; }
.page-head p { font-size: 16px; color: var(--muted-5); max-width: 560px; line-height: 1.6; margin: 0; }
.page-head.center { align-items: center; text-align: center; }
.page-head.center p { max-width: 600px; }

/* ===== Resources toolbar ===== */
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--border-2); flex-wrap: wrap; }
.chips { display: flex; gap: 9px; flex-wrap: wrap; }
.chip { background: var(--surface); border: 1px solid var(--border); color: var(--muted-2); font-size: 13px; font-weight: 600; padding: 10px 18px; border-radius: 9px; cursor: pointer; }
.chip.active { background: var(--red); border-color: var(--red); color: #fff; font-weight: 700; }
.toolbar-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.search { background: var(--surface); border: 1px solid var(--border); border-radius: 9px; padding: 10px 16px; font-size: 13px; color: var(--text); min-width: 220px; font-family: inherit; }
.search::placeholder { color: var(--muted-6); }
.search:focus { outline: none; border-color: rgba(255,255,255,.4); }
/* Chrome autofill/suggestion pick paints inputs white - repaint with the theme.
   The inset box-shadow trick overrides the UA's un-overridable background. */
.search:-webkit-autofill, .search:-webkit-autofill:hover, .search:-webkit-autofill:focus,
.coupon-input:-webkit-autofill, .coupon-input:-webkit-autofill:hover, .coupon-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--surface) inset;
    -webkit-text-fill-color: var(--text);
    caret-color: var(--text);
    transition: background-color 99999s ease-out;
}
/* The native clear "X" of type=search, redrawn in brand red (default is blue/grey) */
.search::-webkit-search-cancel-button {
    -webkit-appearance: none; appearance: none;
    width: 13px; height: 13px; cursor: pointer; background: var(--red-light);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 2l8 8M10 2l-8 8' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 2l8 8M10 2l-8 8' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.search::-webkit-search-cancel-button:hover { background: var(--red-lighter); }
.select { background: var(--surface); border: 1px solid var(--border); border-radius: 9px; padding: 10px 16px; font-size: 13px; color: var(--muted-2); font-family: inherit; cursor: pointer; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-empty { border: 1px dashed var(--border-4); border-radius: 18px; padding: 60px; text-align: center; color: var(--muted-6); font-size: 15px; grid-column: 1 / -1; }

/* ===== Bundles ===== */
.bundle-hero { border-radius: 22px; overflow: hidden; border: 1px solid rgba(194,31,58,.35); background: var(--bundle-grad); display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 22px; }
.bundle-hero-info { padding: 52px 48px; display: flex; flex-direction: column; gap: 18px; }
.bundle-hero-info h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -.035em; line-height: 1.05; margin: 0; }
.bundle-hero-info .desc { font-size: 16px; color: var(--muted-3); line-height: 1.65; max-width: 420px; }
.bundle-includes { display: flex; flex-direction: column; gap: 11px; margin-top: 6px; }
.bundle-includes div { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--muted-1); }
.bundle-includes .check { color: var(--red); }
.bundle-includes .p { color: var(--muted-6); font-family: var(--mono); font-size: 12px; }
.bundle-buy { display: flex; align-items: center; gap: 18px; margin-top: 18px; flex-wrap: wrap; }
.bundle-buy .big { font-size: 46px; font-weight: 800; letter-spacing: -.04em; }
.bundle-buy .was { font-size: 17px; color: var(--muted-6); text-decoration: line-through; }
.bundle-buy .btn { margin-left: auto; }
.bundle-hero-media { background: var(--pattern); min-height: 420px; display: flex; align-items: center; justify-content: center; }
.bundle-hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Server plans ===== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 24px; }
.plan { border-radius: 18px; border: 1px solid var(--border); background: var(--surface-2); padding: 36px 34px; display: flex; flex-direction: column; gap: 18px; position: relative; }
.plan.popular { border-color: var(--red); background: linear-gradient(160deg, #2A0D18, #0F1215); }
.plan .pop-tag { position: absolute; top: -11px; left: 34px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .1em; padding: 5px 12px; border-radius: 6px; }
.plan .name { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--muted-6); }
.plan.popular .name { color: var(--red-light); }
.plan .price-row { display: flex; align-items: baseline; gap: 7px; }
.plan .price-row b { font-size: 46px; font-weight: 800; letter-spacing: -.04em; }
.plan .price-row span { font-size: 15px; color: var(--muted-6); }
.plan ul { list-style: none; margin: 0; padding: 6px 0 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: var(--muted-4); }
.plan.popular ul { color: var(--muted-1); }
.plan ul li { display: flex; gap: 10px; }
.plan ul li::before { content: '✓'; color: var(--red); }
.plan.popular ul li::before { color: var(--red-light); }
.plan .btn { margin-top: auto; width: 100%; }

/* ZAP-Hosting partner card */
.partner-card { border-radius: 22px; border: 1px solid rgba(194,31,58,.35); background: var(--bundle-grad); padding: 52px 48px; }
.partner-info { display: flex; flex-direction: column; gap: 18px; max-width: 720px; margin: 0 auto; align-items: center; text-align: center; }
.partner-logo { height: 84px; width: auto; filter: drop-shadow(0 4px 24px rgba(0,0,0,.4)); }
.partner-info h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin: 0; }
.partner-info p { font-size: 16px; color: var(--muted-3); line-height: 1.65; margin: 0; }
.voucher-row { display: flex; align-items: center; gap: 14px; margin-top: 10px; flex-wrap: wrap; justify-content: center; }
/* Dashed border drawn as SVG - CSS "dashed" can't control dash length or gap.
   stroke-width 4 (half clipped at the edge) = 2px visible; dasharray = 11 on, 9 off. */
.voucher-chip {
    display: inline-flex; align-items: center; justify-content: center; line-height: 1.15;
    font-family: var(--mono); font-size: 14px; font-weight: 700; letter-spacing: .1em; color: var(--red-soft);
    background-color: rgba(194,31,58,.14);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' rx='10' stroke='%23C21F3A' stroke-opacity='.7' stroke-width='4' stroke-dasharray='11 9'%3E%3Canimate attributeName='stroke-dashoffset' values='0;-20' dur='1.4s' repeatCount='indefinite'/%3E%3C/rect%3E%3C/svg%3E");
    border: none; border-radius: 10px; padding: 16px 21px; cursor: pointer; user-select: none;
}
.voucher-chip:hover { background-color: rgba(194,31,58,.22); }

.server-banner { border-radius: 18px; border: 1px solid var(--border); background: var(--surface-3); padding: 34px 40px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.server-banner h3 { font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 7px; }
.server-banner p { font-size: 15px; color: var(--muted-5); margin: 0; }

/* ===== Product detail ===== */
.crumbs { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--muted-8); margin-bottom: 26px; cursor: pointer; text-transform: uppercase; }
.crumbs b { color: var(--red); font-weight: 400; }
.product-grid { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.product-media { aspect-ratio: 16/9; border-radius: 18px; overflow: hidden; background: var(--pattern); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; position: relative; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media iframe { width: 100%; height: 100%; border: 0; }
/* Gallery glide: panes stack absolutely and slide across on switch */
.media-pane { position: absolute; inset: 0; transition: transform .38s cubic-bezier(.25,.8,.25,1); will-change: transform; }

.thumb-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 14px; }
.thumb { position: relative; aspect-ratio: 16/10; border-radius: 10px; background: var(--pattern-sm); border: 1px solid var(--border); overflow: hidden; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.thumb.active { border: 3px solid var(--red); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb .play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 30px; height: 30px; border-radius: 50%; background: rgba(194,31,58,.9); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; pointer-events: none; }
.buy-updated { font-size: 12.5px; color: var(--muted-8); line-height: 1.6; padding-top: 2px; }

.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border-2); margin-top: 26px; }
.tab { position: relative; padding: 15px 22px; font-size: 14px; font-weight: 700; color: var(--muted-5); cursor: pointer; white-space: nowrap; }
.tab.active { color: #fff; }
.tab.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--red); }
.tab-body { padding-top: 26px; }
.desc-html { font-size: 16px; line-height: 1.8; color: var(--muted-3); overflow-wrap: break-word; }
.desc-html img { border-radius: 12px; }
.desc-html a { color: var(--red-light); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.feature-card { border: 1px solid var(--border); background: var(--surface-2); border-radius: 14px; padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.feature-card b { font-size: 15.5px; font-weight: 700; }
.feature-card span { font-size: 13.5px; color: var(--muted-6); line-height: 1.6; }
.feature-row { display: flex; gap: 14px; border-bottom: 1px solid var(--border-dark); padding: 16px 4px; }
.feature-row .check { color: var(--red); font-size: 15px; }
.feature-row b { font-size: 15.5px; display: block; margin-bottom: 5px; }
.feature-row span { font-size: 14px; color: var(--muted-6); line-height: 1.6; }
.reqs { font-family: var(--mono); font-size: 13.5px; color: var(--muted-3); line-height: 2; display: flex; flex-direction: column; gap: 6px; }
.changelog-row { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 20px 4px; border-bottom: 1px solid var(--border-dark); }
.changelog-row .v { font-family: var(--mono); font-size: 13px; color: var(--muted-5); }
.changelog-row .note { font-size: 14.5px; color: var(--muted-3); line-height: 1.65; }

.buy-panel { position: sticky; top: 104px; border: 1px solid var(--border); background: var(--surface-2); border-radius: 18px; display: flex; flex-direction: column; overflow: hidden; }
.buy-main { padding: 28px; display: flex; flex-direction: column; gap: 16px; border-bottom: 1px solid var(--border-2); }
.buy-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.buy-badge-red { background: rgba(194,31,58,.15); color: var(--red-light); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; padding: 5px 10px; border-radius: 6px; text-transform: uppercase; }
.buy-badge { border: 1px solid var(--border-4); color: var(--muted-4); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; padding: 5px 10px; border-radius: 6px; }
.buy-name { font-size: 30px; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.buy-price-row { display: flex; align-items: baseline; gap: 11px; padding-top: 2px; flex-wrap: wrap; }
.buy-price { font-size: 44px; font-weight: 800; letter-spacing: -.04em; }
.buy-price-note { font-family: var(--mono); font-size: 13px; color: var(--muted-6); }
.save-chip { background: var(--red); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .04em; padding: 5px 9px; border-radius: 7px; align-self: center; }
.buy-section { padding: 24px 28px; display: flex; flex-direction: column; gap: 14px; border-bottom: 1px solid var(--border-2); }
.buy-section:last-child { border-bottom: none; }
.buy-section-head { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--muted-8); }
.buy-list { display: flex; flex-direction: column; gap: 11px; font-size: 14px; color: var(--muted-2); }
.buy-list div { display: flex; gap: 10px; }
.buy-list .check { color: var(--red); }
.compat-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.compat-tag { border: 1px solid var(--border-4); color: var(--muted-2); font-family: var(--mono); font-size: 11px; padding: 7px 12px; border-radius: 7px; }

.related { border-top: 1px solid var(--border-2); margin-top: 60px; padding-top: 34px; }
.related-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.related-head h3 { font-size: 24px; font-weight: 800; letter-spacing: -.025em; margin: 0; }
.related-card { border: 1px solid var(--border); background: var(--surface-2); border-radius: 14px; display: flex; gap: 18px; padding: 16px; align-items: center; cursor: pointer; }
.related-card:hover { border-color: var(--border-4); }
.related-thumb { width: 110px; height: 74px; flex: none; border-radius: 9px; background: var(--pattern-sm); overflow: hidden; }
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-card .n { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.related-card .f { font-size: 12.5px; color: var(--muted-6); margin-bottom: 6px; }
.related-card .p { font-size: 16px; font-weight: 800; }

/* ===== Cart ===== */
.cart-title { font-size: clamp(32px, 5vw, 44px); font-weight: 800; letter-spacing: -.035em; margin: 0 0 30px; }
.cart-empty { border: 1px dashed var(--border-4); border-radius: 18px; padding: 70px 30px; display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.cart-empty b { font-size: 19px; font-weight: 700; color: var(--muted-2); }
.cart-empty span { font-size: 15px; color: var(--muted-6); }
.cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 26px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item { border: 1px solid var(--border); background: var(--surface-2); border-radius: 16px; padding: 18px; display: flex; gap: 20px; align-items: center; }
.cart-thumb { width: 128px; height: 82px; flex: none; border-radius: 10px; background: var(--pattern-sm); overflow: hidden; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.cart-item-name { font-size: 18px; font-weight: 700; letter-spacing: -.015em; }
.cart-item-sub { font-family: var(--mono); font-size: 12px; color: var(--muted-6); }
.cart-item-price { font-size: 20px; font-weight: 800; letter-spacing: -.02em; white-space: nowrap; text-align: center; }
/* Quantity stepper (min 1 - the minus button disables there) */
/* Right side of a cart line: price vertically centered to the LEFT of a stacked
   qty + Remove block - stepper and Remove share the block's full width. */
.cart-item-right { display: flex; align-items: center; gap: 18px; flex: none; }
.cart-item-controls { display: flex; flex-direction: column; align-items: stretch; gap: 8px; width: 104px; }
.cart-item-controls .qty { width: 100%; justify-content: space-between; }
/* Remove is deliberately quiet - a text link, not a button: quantity is the
   everyday control, removing a line is the rare escape hatch. */
.cart-item-controls .cart-remove { width: 100%; text-align: center; border: none; padding: 4px; font-size: 12px; color: var(--muted-7); }
.cart-item-controls .cart-remove:hover { color: var(--red-light); }
.qty { display: flex; align-items: center; gap: 2px; border: 1px solid var(--border-3); border-radius: 8px; padding: 2px; flex: none; }
.qty-btn { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border-radius: 6px; color: var(--muted-2); cursor: pointer; padding: 0; }
.qty-btn svg { display: block; }
.qty-btn:hover:not(:disabled) { background: rgba(255,255,255,.07); color: #fff; }
.qty-btn:disabled { color: var(--muted-8); cursor: default; }
.qty-n { min-width: 24px; height: 26px; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 13px; font-weight: 700; line-height: 1; padding-top: 1px; }
.cart-remove { color: var(--muted-6); font-size: 13px; font-weight: 600; padding: 10px 14px; border: 1px solid var(--border-3); border-radius: 9px; cursor: pointer; background: none; }
.cart-remove:hover { color: var(--red-light); border-color: var(--red); }

/* "Goes well with your cart" add button - icon-only, fills red on hover */
.rec-add {
    width: 42px; height: 42px; flex: none; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px; background: rgba(194,31,58,.14); border: 1px solid rgba(194,31,58,.45); color: var(--red-light);
    cursor: pointer; transition: background .15s, border-color .15s, color .15s;
}
.rec-add:hover { background: var(--red); border-color: var(--red); color: #fff; }

.summary { border: 1px solid var(--border); background: var(--surface-2); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; gap: 16px; }
.summary-head { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--muted-8); }
.summary-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--muted-2); }
.summary-row .save { color: var(--red-light); }
.summary-div { height: 1px; background: var(--border-2); }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; }
.summary-total b { font-size: 15px; font-weight: 700; }
.summary-total .amount { font-size: 30px; font-weight: 800; letter-spacing: -.03em; }
.coupon-row { display: flex; gap: 9px; margin-top: 4px; }
.coupon-input { flex: 1; border: 1px solid var(--border-3); background: var(--input-bg); border-radius: 9px; padding: 12px 14px; font-size: 13px; color: var(--text); font-family: inherit; min-width: 0; }
.coupon-input::placeholder { color: var(--muted-6); }
.coupon-input:disabled { color: var(--red-light); border-color: rgba(194,31,58,.45); font-weight: 700; }
/* Border matches the coupon input beside it - including while busy/disabled
   (the brighter btn-outline border read as a stray white line mid-apply). */
.coupon-apply, .coupon-apply:disabled { padding: 12px 18px; font-size: 13px; border: 1px solid var(--border-3); border-radius: 9px; flex: none; min-width: 68px; }
/* Three jumping dots - the button's busy state */
.dots { display: inline-flex; gap: 4px; align-items: center; height: 1em; }
.dots i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: dot-jump .9s ease-in-out infinite; }
.dots i:nth-child(2) { animation-delay: .15s; }
.dots i:nth-child(3) { animation-delay: .3s; }
@keyframes dot-jump {
    0%, 60%, 100% { transform: translateY(0); opacity: .45; }
    30% { transform: translateY(-4px); opacity: 1; }
}
.summary-note { font-size: 12px; color: var(--muted-8); text-align: center; line-height: 1.6; }
.summary-error { font-size: 13px; color: var(--red-light); text-align: center; line-height: 1.5; }

/* Order complete */
.order-done { border: 1px solid rgba(194,31,58,.4); background: var(--bundle-grad); border-radius: 20px; padding: 70px 30px; display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.order-done .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; }
.order-done h2 { font-size: clamp(28px, 4vw, 36px); font-weight: 800; letter-spacing: -.03em; margin: 0; }
.order-done p { font-size: 16px; color: var(--muted-3); max-width: 460px; line-height: 1.65; margin: 0; }

/* ===== Documentation ===== */
.docs-layout { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
.docs-side { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 18px; }
.docs-search { min-width: 0; width: 100%; }
.docs-nav { display: flex; flex-direction: column; gap: 22px; }
.docs-group { display: flex; flex-direction: column; gap: 2px; }
.docs-group-head { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .16em; color: var(--muted-4); padding: 0 12px 8px; }
.docs-link { font-size: 14px; font-weight: 600; color: var(--muted-4); padding: 8px 12px; border-radius: 8px; cursor: pointer; border-left: 2px solid transparent; border-top-left-radius: 0; border-bottom-left-radius: 0; }
.docs-link:hover { color: #fff; background: rgba(255,255,255,.04); }
.docs-link.active { color: #fff; background: rgba(194,31,58,.12); border-left-color: var(--red); }
.docs-link small { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .06em; color: var(--muted-6); margin-top: 3px; }
/* Product rows in the SCRIPT DOCS group - categories drop down while open */
.docs-product { display: flex; align-items: center; justify-content: space-between; font-weight: 700; color: var(--muted-2); }
.docs-product .chev { color: var(--muted-6); flex: none; transition: transform .15s; }
.docs-product.open { color: #fff; }
.docs-product.open .chev { transform: rotate(180deg); color: var(--red-light); }
.docs-subgroup { margin: 2px 0 8px 12px; padding-left: 12px; border-left: 1px solid var(--border-3); display: flex; flex-direction: column; gap: 2px; }
.docs-subhead { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .16em; color: var(--muted-5); padding: 6px 12px 4px; }
.docs-empty { font-size: 13.5px; color: var(--muted-6); padding: 4px 12px; }
.docs-main { min-width: 0; }

.doc-body { font-size: 15.5px; line-height: 1.75; color: var(--muted-2); }
.doc-body h2 { font-size: clamp(28px, 3.5vw, 36px); font-weight: 800; letter-spacing: -.03em; color: var(--text); margin: 0 0 18px; line-height: 1.15; }
.doc-body h3 { font-size: 21px; font-weight: 800; letter-spacing: -.02em; color: var(--text); margin: 34px 0 12px; padding-top: 22px; border-top: 1px solid var(--border-2); }
.doc-body h4 { font-size: 16.5px; font-weight: 700; color: var(--text); margin: 26px 0 10px; }
.doc-body p { margin: 0 0 16px; }
.doc-body ul, .doc-body ol { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.doc-body li::marker { color: var(--red); }
.doc-body a { color: var(--red-light); font-weight: 600; }
.doc-body code { font-family: var(--mono); font-size: 13px; background: rgba(255,255,255,.06); border: 1px solid var(--border-2); border-radius: 6px; padding: 2px 7px; color: var(--muted-1); }
.doc-body blockquote { margin: 0 0 16px; padding: 14px 20px; border-left: 3px solid var(--red); background: rgba(194,31,58,.08); border-radius: 0 12px 12px 0; color: var(--muted-1); }
.doc-code { background: var(--surface-4); border: 1px solid var(--border-2); border-radius: 12px; padding: 18px 22px; margin: 0 0 16px; overflow-x: auto; }
.doc-code code { background: none; border: none; padding: 0; font-size: 13px; line-height: 1.7; color: var(--muted-1); display: block; }

.docs-pager { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 38px; }
.docs-pager-card { border: 1px solid var(--border); background: var(--surface-2); border-radius: 14px; padding: 16px 20px; display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.docs-pager-card:hover { border-color: var(--border-4); }
.docs-pager-card small { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--red-light); }
.docs-pager-card b { font-size: 15px; font-weight: 700; }
.docs-pager-card.next { text-align: right; align-items: flex-end; }
.docs-foot { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--border-2); font-size: 13.5px; color: var(--muted-6); }

/* ===== Legal / policy pages ===== */
.legal { max-width: 900px; }
.legal-updated { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--muted-8); margin-top: 4px; }
.legal-body { display: flex; flex-direction: column; }
.legal-section { border-top: 1px solid var(--border-2); padding: 30px 0 26px; }
.legal-section h2 { font-size: 21px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 14px; }
.legal-section p { font-size: 15px; color: var(--muted-3); line-height: 1.75; margin: 0 0 14px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.legal-section ul li { display: flex; gap: 12px; font-size: 14.5px; color: var(--muted-2); line-height: 1.6; }
.legal-section ul .check { color: var(--red); flex: none; }
.legal-banner { margin-top: 34px; }

/* Loading / error states */
.loading { padding: 90px 20px; text-align: center; color: var(--muted-6); font-family: var(--mono); font-size: 12px; letter-spacing: .2em; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.loading .dots i { width: 7px; height: 7px; background: var(--red); }
.load-error { padding: 70px 30px; text-align: center; }
.load-error b { display: block; font-size: 18px; margin-bottom: 10px; }
.load-error span { color: var(--muted-6); font-size: 14px; }

/* ===== Footer ===== */
.footer { margin-top: auto; border-top: 1px solid var(--border-dark); background: var(--surface-4); }
.footer-grid { max-width: 1320px; margin: 0 auto; padding: 52px var(--pad-x); display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { width: 38px; height: auto; align-self: flex-start; }
.footer-brand p { font-size: 13.5px; color: var(--muted-7); line-height: 1.65; max-width: 250px; margin: 0; }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 13.5px; color: var(--muted-5); }
.footer-col span, .footer-col a { cursor: pointer; color: var(--muted-5); }
.footer-col span:hover, .footer-col a:hover { color: #fff; }
.footer-head { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; color: #fff; margin-bottom: 4px; }
.footer-bar { border-top: 1px solid var(--border-dark); padding: 22px var(--pad-x); max-width: 1320px; margin: 0 auto; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--muted-9); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
    :root { --pad-x: 32px; }
    .grid-3, .quote-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase { grid-template-columns: 1fr 1fr; }
    .showcase .card:first-child { grid-column: 1 / -1; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: 1fr; }
    .buy-panel { position: static; }
    .docs-layout { grid-template-columns: 1fr; gap: 30px; }
    .docs-side { position: static; }
    .plans { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
    .bundle-hero { grid-template-columns: 1fr; }
    .bundle-hero-media { min-height: 240px; }
    .cart-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    :root { --pad-x: 18px; }
    .nav-wrap { padding: 12px 12px 0; }
    .nav { padding: 11px 14px; }
    .nav-links {
        display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
        flex-direction: column; gap: 4px; background: rgba(16,18,21,.97); backdrop-filter: blur(16px);
        border: 1px solid rgba(255,255,255,.07); border-radius: 16px; padding: 12px;
    }
    .nav { position: relative; }
    .nav-links.open { display: flex; }
    .nav-links .nav-link { padding: 12px 14px; border-radius: 10px; }
    .nav-links .nav-link:hover, .nav-links .nav-link.active { background: rgba(255,255,255,.06); }
    .nav-link.active::after { display: none; }
    .nav-burger { display: flex; }
    .hero { min-height: 520px; }
    .hero-inner { padding-top: 130px; padding-bottom: 50px; }
    .grid-3, .quote-grid, .showcase, .promo-duo, .stats { grid-template-columns: 1fr; }
    .promo { padding: 30px 26px; }
    .section-head { padding-top: 50px; flex-wrap: wrap; }
    .toolbar { flex-direction: column; align-items: stretch; }
    .toolbar-right { width: 100%; }
    .search { flex: 1; min-width: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; padding-top: 36px; padding-bottom: 36px; }
    .footer-brand { grid-column: 1 / -1; }
    .cart-item { flex-wrap: wrap; }
    .cart-thumb { width: 100%; height: 140px; }
    .cart-remove { margin-left: auto; }
    .bundle-hero-info { padding: 30px 24px; }
    .feature-grid { grid-template-columns: 1fr; }
    .changelog-row { grid-template-columns: 70px 1fr; }
    .tabs { overflow-x: auto; scrollbar-width: none; }
    .tabs::-webkit-scrollbar { display: none; }
    .server-banner { padding: 26px 24px; }
    .community { padding: 28px 24px; }
    .community-actions { width: 100%; }
    .community-actions .btn { flex: 1 1 100%; }
    /* Icon-only buttons drop to their own row at the bottom, sharing the width. */
    .community-actions .btn-icon { flex: 1 1 0; width: auto; }
    .footer-bar { justify-content: center; text-align: center; }
}

/* ===== Price check (home, under the community strip) ===== */
.compare-wrap { padding-bottom: 90px; }
.compare-head { max-width: 660px; margin-bottom: 26px; }
.compare-head h2 { font-size: 34px; font-weight: 800; letter-spacing: -.03em; margin: 10px 0; }
.compare-head p { font-size: 15px; color: var(--muted-3); line-height: 1.6; margin: 0; }
.compare { display: flex; flex-direction: column; gap: 14px; }
.compare-row { display: grid; grid-template-columns: 190px 1fr 44px 1fr; align-items: stretch; gap: 0 22px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 22px 28px; }
.compare-what { font-size: 16px; font-weight: 700; letter-spacing: -.01em; align-self: center; }
.compare-cell { display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.compare-cell.them { opacity: .78; }
/* The red strike through their price IS the sales pitch. */
.compare-cell.them .compare-price { color: var(--muted-3); text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 2.5px; }
.compare-label { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: var(--muted-6); }
.compare-cell.us .compare-label { color: var(--red-light); }
.compare-price { font-size: 26px; font-weight: 800; letter-spacing: -.02em; }
.compare-note { font-size: 13px; color: var(--muted-5); line-height: 1.45; }
.compare-vs { align-self: center; justify-self: center; font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--muted-6); border: 1px solid var(--border-4); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.compare-foot { margin-top: 14px; font-size: 12px; color: var(--muted-7); }

@media (max-width: 720px) {
    .compare-row { grid-template-columns: 1fr; gap: 14px; padding: 20px 22px; }
    .compare-vs { display: none; }
    .compare-what { border-bottom: 1px solid var(--border-2); padding-bottom: 10px; }
}
