/* =========================================================================
   QWeb Spam Shield AI Store — store.css
   Aesthetic: premium dark "security console" — Linear/Stripe/Vercel polish tier
   Display: Clash Display · Body: Switzer · Mono: JetBrains Mono
   ========================================================================= */

/* ── Reset + base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* surfaces */
    --bg:        #070A11;
    --bg-2:      #0C111C;
    --bg-3:      #121A29;
    --bg-card:   rgba(18,26,41,.66);
    /* lines */
    --line:      rgba(255,255,255,.08);
    --line-2:    rgba(255,255,255,.14);
    /* text */
    --text:      #EAF0FB;
    --muted:     #93A1BD;
    --faint:     #5E6B85;
    /* brand + signal */
    --brand:     #1C96F3;
    --brand-2:   #5BC8FF;
    --brand-grad:linear-gradient(135deg,#1C96F3,#5BC8FF);
    --safe:      #2DE3B0;
    --threat:    #FF5D6C;
    --warn:      #FFB020;
    /* radii */
    --r-sm:      9px;
    --r:         14px;
    --r-lg:      20px;
    --r-xl:      26px;
    /* shadow */
    --shadow:    0 24px 60px -24px rgba(0,0,0,.7);
    --shadow-sm: 0 8px 24px -12px rgba(0,0,0,.6);
    --glow-blue: 0 0 0 1px rgba(28,150,243,.4), 0 20px 60px -20px rgba(28,150,243,.5);
    /* fonts */
    --font:      'Switzer', ui-sans-serif, system-ui, sans-serif;
    --display:   'Clash Display', 'Switzer', sans-serif;
    --mono:      'JetBrains Mono', ui-monospace, Menlo, monospace;

    /* ── Legacy aliases (so untouched inline styles in pages don't break) ── */
    --blue:        #1C96F3;
    --blue-dark:   #5BC8FF;
    --blue-light:  rgba(91,200,255,.4);
    --blue-pale:   rgba(28,150,243,.10);
    --blue-xpale:  rgba(28,150,243,.06);
    --text-muted:  #93A1BD;
    --text-light:  #5E6B85;
    --surface:     var(--bg-3);
    --border:      var(--line);
    --border-light:var(--line);
    --radius:      14px;
    --radius-sm:   9px;
    --radius-lg:   20px;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    letter-spacing: -.003em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ── Atmosphere: gradient mesh + grain ────────────────────────────────────── */
.bg-mesh {
    position: fixed; inset: 0; z-index: -2; pointer-events: none;
    background:
        radial-gradient(60rem 48rem at 8% -6%, rgba(28,150,243,.20), transparent 62%),
        radial-gradient(52rem 40rem at 96% 2%, rgba(91,200,255,.16), transparent 60%),
        radial-gradient(70rem 52rem at 50% 116%, rgba(28,150,243,.10), transparent 64%);
}
.bg-grain {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    opacity: .04; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--brand-2); text-decoration: none; transition: color .2s; }
a:hover { color: #9adcff; }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
::selection { background: rgba(28,150,243,.32); color: #fff; }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 130px 0; }
.text-center { text-align: center; }
.mt-sm { margin-top: 18px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }

/* Old background-tint section classes → all transparent on the dark canvas */
.bg-white, .bg-light { background: transparent; }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.04; letter-spacing: -.02em; color: var(--text); }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.2rem; letter-spacing: -.01em; }
p { color: var(--muted); }
strong { color: var(--text); font-weight: 600; }
code, .code-inline { font-family: var(--mono); font-size: .86em; }
.code-inline {
    background: rgba(91,200,255,.10);
    border: 1px solid var(--line);
    color: var(--brand-2);
    padding: .12em .42em; border-radius: 6px;
}

.section-label {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--mono); font-size: .72rem; font-weight: 500;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--brand-2);
    padding: 6px 13px; margin-bottom: 18px;
    border: 1px solid var(--line-2); border-radius: 99px;
    background: rgba(28,150,243,.07);
}
.section-label::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--brand-2); box-shadow: 0 0 8px var(--brand-2);
}
.section-title { margin: 6px 0 14px; }
.section-sub { color: var(--muted); font-size: 1.0625rem; max-width: 620px; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-muted { color: var(--muted); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn-primary, .btn-ghost, .btn-outline-white, .plan-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--font); font-weight: 600; font-size: .95rem;
    letter-spacing: -.01em; line-height: 1; cursor: pointer;
    padding: 13px 22px; border-radius: var(--r-sm); border: 1px solid transparent;
    transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s, background .22s, border-color .22s, color .22s;
    white-space: nowrap; text-align: center;
}
.btn-primary {
    position: relative; overflow: hidden;
    color: #fff; background: var(--brand-grad);
    box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 14px 34px -14px rgba(28,150,243,.7);
}
.btn-primary::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.45) 50%, transparent 80%);
    transform: translateX(-120%); transition: transform .7s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 22px 46px -16px rgba(28,150,243,.85); color: #fff; }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-ghost {
    color: var(--text); background: rgba(255,255,255,.04);
    border-color: var(--line-2); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--brand); color: var(--text); transform: translateY(-2px); }
.btn-outline-white {
    color: var(--text); background: transparent; border-color: var(--line-2);
}
.btn-outline-white:hover { background: rgba(255,255,255,.05); border-color: var(--brand-2); color: var(--text); transform: translateY(-2px); }
.btn-sm { padding: 9px 15px; font-size: .85rem; }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; border-radius: var(--r); }

/* ── Header / nav ─────────────────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(7,10,17,.72); backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s, background .3s;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.site-logo { display: inline-flex; align-items: center; gap: 11px; }
.site-logo svg { border-radius: 9px; box-shadow: 0 0 0 1px var(--line-2), 0 8px 20px -8px rgba(28,150,243,.7); }
.site-logo-img { width: 36px; height: 36px; object-fit: contain; display: block; }
.footer-logo img { width: 28px; height: 28px; object-fit: contain; display: block; }
.logo-text { font-family: var(--display); font-weight: 600; font-size: 1.12rem; color: var(--text); letter-spacing: -.01em; }
.logo-ai {
    background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.site-nav { display: flex; gap: 4px; }
.nav-link {
    color: var(--muted); font-size: .9rem; font-weight: 500; padding: 8px 13px; border-radius: 8px;
    transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-active { color: var(--text); background: rgba(28,150,243,.10); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Generic glass card ───────────────────────────────────────────────────── */
.card {
    background: var(--bg-card); border: 1px solid var(--line);
    border-radius: var(--r); padding: 26px; backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm); color: var(--muted);
}
.card h3 { color: var(--text); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { padding: 86px 0 96px; position: relative; }
.hero-inner {
    display: grid; grid-template-columns: 1.02fr 1.08fr; gap: 56px; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: .72rem; font-weight: 500;
    letter-spacing: .16em; text-transform: uppercase; color: var(--brand-2);
    padding: 7px 14px; border: 1px solid var(--line-2); border-radius: 99px;
    background: rgba(28,150,243,.08);
}
.hero h1 { margin: 22px 0 0; max-width: 16ch; }
.hero h1 .grad { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.12rem; line-height: 1.6; color: var(--muted); margin: 22px 0 0; max-width: 52ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-note {
    margin-top: 24px; font-size: .82rem; color: var(--faint); font-family: var(--mono);
    letter-spacing: .01em; display: flex; align-items: center; gap: 8px;
}
.hero-note::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--safe); box-shadow: 0 0 8px var(--safe); flex: none; }
.hero-image { position: relative; }

/* ── The faux product console (hero + reusable mockups) ───────────────────── */
.console {
    background: linear-gradient(180deg, rgba(18,26,41,.92), rgba(12,17,28,.92));
    border: 1px solid var(--line-2); border-radius: var(--r-lg);
    box-shadow: var(--shadow), 0 0 80px -30px rgba(28,150,243,.55);
    backdrop-filter: blur(18px); overflow: hidden;
}
.console-bar {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 16px; border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.02);
}
.console-dots { display: flex; gap: 7px; }
.console-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.console-dots i:nth-child(1) { background: #ff5f57; }
.console-dots i:nth-child(2) { background: #febc2e; }
.console-dots i:nth-child(3) { background: #28c840; }
.console-title { font-family: var(--mono); font-size: .76rem; color: var(--muted); letter-spacing: .02em; }
.console-title b { color: var(--text); font-weight: 500; }
.console-pill {
    margin-left: auto; font-family: var(--mono); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase;
    color: var(--safe); padding: 4px 10px; border-radius: 99px; border: 1px solid rgba(45,227,176,.3);
    background: rgba(45,227,176,.08); display: inline-flex; align-items: center; gap: 6px;
}
.dot-live { width: 6px; height: 6px; border-radius: 50%; background: var(--safe); box-shadow: 0 0 8px var(--safe); animation: pulse 1.8s ease-in-out infinite; flex: none; }
.console-body { padding: 18px; }

/* stat tiles */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.stat-tile {
    background: rgba(255,255,255,.025); border: 1px solid var(--line);
    border-radius: var(--r-sm); padding: 14px 14px 12px;
}
.stat-tile .lbl { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); font-family: var(--mono); }
.stat-tile .num { font-family: var(--mono); font-weight: 700; font-size: 1.6rem; color: var(--text); margin-top: 5px; line-height: 1; }
.stat-tile .num.safe { color: var(--safe); }
.stat-tile .num.brand { color: var(--brand-2); }

/* threat log */
.log-head {
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--faint); padding: 0 2px 8px;
}
.log-head .live { color: var(--safe); display: inline-flex; align-items: center; gap: 6px; }
.log-list { display: flex; flex-direction: column; gap: 6px; }
.log-row {
    display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 10px;
    padding: 9px 11px; border-radius: 9px;
    background: rgba(255,255,255,.02); border: 1px solid var(--line);
    font-family: var(--mono); font-size: .76rem;
}
.log-row .tag-blocked {
    font-size: .6rem; font-weight: 700; letter-spacing: .08em; color: var(--threat);
    padding: 3px 7px; border-radius: 5px; background: rgba(255,93,108,.12); border: 1px solid rgba(255,93,108,.3);
}
.log-row .reason { color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.log-row .src { color: var(--faint); font-size: .68rem; }
.log-row .cc { color: var(--muted); font-size: .66rem; padding: 2px 6px; border: 1px solid var(--line); border-radius: 5px; }
.log-row .ts { color: var(--faint); font-size: .66rem; }
.log-row.is-new { animation: rowIn .6s ease both; }

/* floating accent chips */
.float-chip {
    position: absolute; z-index: 3;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .8rem; font-weight: 600; color: var(--text);
    padding: 10px 14px; border-radius: 12px;
    background: rgba(18,26,41,.88); border: 1px solid var(--line-2);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px -16px rgba(0,0,0,.8);
}
.float-chip .ic { width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.float-chip .ic.safe { background: rgba(45,227,176,.16); color: var(--safe); }
.float-chip .ic.threat { background: rgba(255,93,108,.16); color: var(--threat); }
.float-chip.chip-tl { top: -18px; left: -22px; animation: floaty 6s ease-in-out infinite; }
.float-chip.chip-br { bottom: 28px; right: -26px; animation: floaty 7s ease-in-out infinite .8s; }

/* =========================================================================
   Reusable mockup chrome (settings/queue/logs/mailguard) — admin shell
   ========================================================================= */
.mock { position: relative; }
.mock-app {
    display: grid; grid-template-columns: 140px 1fr;
    background: linear-gradient(180deg, rgba(18,26,41,.92), rgba(12,17,28,.94));
    border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden;
    box-shadow: var(--shadow-sm), 0 0 60px -34px rgba(28,150,243,.5);
    min-height: 230px;
}
.mock-rail { border-right: 1px solid var(--line); padding: 14px 10px; background: rgba(255,255,255,.015); }
.mock-rail .brand { display: flex; align-items: center; gap: 7px; padding: 0 6px 12px; font-family: var(--display); font-weight: 600; font-size: .8rem; color: var(--text); }
.mock-rail .brand .badge { width: 18px; height: 18px; border-radius: 5px; background: var(--brand-grad); flex: none; }
.mock-rail a { display: block; font-size: .76rem; color: var(--muted); padding: 7px 8px; border-radius: 7px; margin-bottom: 2px; font-weight: 500; }
.mock-rail a.on { color: var(--text); background: rgba(28,150,243,.14); }
.mock-main { padding: 16px; }
.mock-h { font-family: var(--display); font-weight: 600; font-size: .98rem; color: var(--text); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.mock-h .pill { margin-left: auto; font-family: var(--mono); font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; color: var(--safe); padding: 3px 8px; border-radius: 99px; border: 1px solid rgba(45,227,176,.3); background: rgba(45,227,176,.08); }

/* mock table */
.mock-table { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: .72rem; }
.mock-table th { text-align: left; color: var(--faint); font-weight: 500; font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; padding: 6px 8px; border-bottom: 1px solid var(--line); }
.mock-table td { padding: 8px; border-bottom: 1px solid var(--line); color: var(--muted); }
.mock-table tr:last-child td { border-bottom: 0; }
.mock-table .t-blocked { color: var(--threat); }
.mock-table .t-held { color: #FFB020; }
.mock-table .t-safe { color: var(--safe); }
.mock-table .cc { color: var(--muted); border: 1px solid var(--line); border-radius: 4px; padding: 1px 5px; font-size: .62rem; }
.mock-table .reason { color: var(--faint); }

/* Dashboard Incoming/Outgoing panels (mockup) */
.io-block { background: rgba(255,255,255,.02); border: 1px solid var(--line); border-radius: 12px; padding: 12px 13px; }
.io-head { display: flex; align-items: center; gap: 9px; font-size: .72rem; color: var(--muted); margin-bottom: 10px; }
.io-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.io-tile { display: flex; align-items: center; gap: 9px; padding: 10px 11px; }
.io-tile .io-bar { width: 4px; height: 28px; border-radius: 4px; flex: none; }
.io-tile .num { font-size: 1.15rem; }
.io-tag { font-family: var(--mono); font-size: .58rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 2px 8px; border-radius: 999px; white-space: nowrap; }
.io-tag.in  { background: rgba(28,150,243,.16); color: #7cc4ff; }
.io-tag.out { background: rgba(124,92,255,.16); color: #b3a4ff; }
.io-tag.sm  { font-size: .56rem; padding: 2px 6px; text-transform: none; letter-spacing: 0; }

/* mock toggles + sliders (settings) */
.mock-setting { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px; margin-bottom: 8px; background: rgba(255,255,255,.02); }
.mock-setting .s-lbl { font-size: .82rem; color: var(--text); font-weight: 500; }
.mock-setting .s-sub { font-size: .7rem; color: var(--faint); font-family: var(--mono); }
.toggle { width: 38px; height: 21px; border-radius: 99px; background: rgba(255,255,255,.1); border: 1px solid var(--line-2); position: relative; flex: none; }
.toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 15px; height: 15px; border-radius: 50%; background: var(--faint); transition: .25s; }
.toggle.on { background: rgba(28,150,243,.4); border-color: var(--brand); }
.toggle.on::after { left: 19px; background: #fff; }
.mock-slider { padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255,255,255,.02); margin-bottom: 8px; }
.mock-slider .s-top { display: flex; justify-content: space-between; font-size: .78rem; color: var(--text); margin-bottom: 9px; }
.mock-slider .s-top b { font-family: var(--mono); color: var(--brand-2); }
.mock-slider .track { height: 6px; border-radius: 99px; background: rgba(255,255,255,.08); position: relative; }
.mock-slider .track .fill { position: absolute; left: 0; top: 0; bottom: 0; width: 70%; border-radius: 99px; background: var(--brand-grad); }
.mock-slider .track .knob { position: absolute; left: 70%; top: 50%; width: 14px; height: 14px; border-radius: 50%; background: #fff; transform: translate(-50%,-50%); box-shadow: 0 2px 8px rgba(0,0,0,.5); }

/* mock donut / sparkline (dashboard breakdown) */
.mock-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mock-panel { border: 1px solid var(--line); border-radius: 10px; padding: 12px; background: rgba(255,255,255,.02); }
.mock-panel .p-lbl { font-family: var(--mono); font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); margin-bottom: 10px; }
.donut { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto;
    background: conic-gradient(var(--brand) 0 52%, var(--brand-2) 52% 74%, var(--safe) 74% 90%, var(--warn) 90% 100%);
    -webkit-mask: radial-gradient(circle 27px at center, transparent 98%, #000 100%); mask: radial-gradient(circle 27px at center, transparent 98%, #000 100%); }
.spark { display: flex; align-items: flex-end; gap: 4px; height: 64px; }
.spark i { flex: 1; background: var(--brand-grad); border-radius: 3px 3px 0 0; opacity: .85; }
.legend { display: flex; flex-direction: column; gap: 7px; margin-top: 10px; }
.legend span { display: flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: .66rem; color: var(--muted); }
.legend span i { width: 9px; height: 9px; border-radius: 3px; flex: none; }

/* shot caption used under feature mockups */
.shot-caption { text-align: center; font-size: .82rem; margin-top: 12px; color: var(--faint); font-family: var(--mono); letter-spacing: .01em; }

/* =========================================================================
   Trust strip
   ========================================================================= */
.trust-strip { padding: 44px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip .eyebrow { text-align: center; font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-bottom: 22px; }
.trust-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.trust-note { text-align: center; max-width: 680px; margin: 18px auto 0; font-size: .9rem; line-height: 1.6; color: var(--muted); }
.trust-pill {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: .86rem; font-weight: 500; color: var(--muted);
    padding: 9px 16px; border-radius: 99px; border: 1px solid var(--line);
    background: rgba(255,255,255,.02); transition: border-color .2s, color .2s, transform .2s;
}
.trust-pill:hover { border-color: var(--line-2); color: var(--text); transform: translateY(-2px); }
.trust-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--safe); box-shadow: 0 0 7px var(--safe); flex: none; }

/* =========================================================================
   Problems
   ========================================================================= */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.problem-card {
    position: relative; overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r);
    padding: 30px 28px; backdrop-filter: blur(14px); box-shadow: var(--shadow-sm);
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.problem-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--threat), transparent 70%); opacity: .8; }
.problem-card:hover { transform: translateY(-4px); border-color: rgba(255,93,108,.3); box-shadow: 0 30px 60px -28px rgba(255,93,108,.32); }
.problem-card h3 { margin-bottom: 12px; }
.problem-card p { font-size: .94rem; line-height: 1.62; }
.problem-icon {
    width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.35rem; margin-bottom: 18px; border: 1px solid var(--line-2);
}
.problem-icon-red { background: rgba(255,93,108,.12); }
.problem-icon-amber { background: rgba(255,176,32,.12); }
.problem-icon-violet { background: rgba(28,150,243,.12); }

/* =========================================================================
   Features — bento grid
   ========================================================================= */
.features-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 56px; }
.feature-card {
    position: relative; overflow: hidden;
    grid-column: span 2;
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r);
    padding: 26px; backdrop-filter: blur(14px); box-shadow: var(--shadow-sm);
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 30px 60px -28px rgba(28,150,243,.32); }
.feature-card::after { content: ""; position: absolute; width: 200px; height: 200px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(28,150,243,.16), transparent 70%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.feature-card:hover::after { opacity: 1; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: .92rem; line-height: 1.6; }
.feature-card p code { font-size: .82em; }
/* bento emphasis: wide cells span 3 columns */
.feature-card.wide { grid-column: span 3; }
.feature-icon {
    width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 16px;
    background: rgba(28,150,243,.1); border: 1px solid var(--line-2);
    color: var(--brand);
}
/* SVG icons inside the tinted icon boxes (stroke = currentColor of the box) */
.feature-icon svg, .problem-icon svg { width: 23px; height: 23px; }
.problem-icon-red { color: #ff5d6c; }
.problem-icon-amber { color: #ffb020; }
.problem-icon-violet { color: var(--brand); }
.feature-mini { margin-top: 18px; }

/* product showcase strip */
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.showcase-grid.single { grid-template-columns: 1fr; max-width: 900px; margin-left: auto; margin-right: auto; }

/* =========================================================================
   Comparison table
   ========================================================================= */
.comparison-wrap { margin-top: 52px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 2px; }
.comparison-table {
    width: 100%; border-collapse: separate; border-spacing: 0; min-width: 720px;
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r);
    overflow: hidden; backdrop-filter: blur(14px);
}
.comparison-table th, .comparison-table td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--line); font-size: .92rem; }
.comparison-table thead th { font-family: var(--display); font-weight: 600; font-size: .98rem; color: var(--muted); background: rgba(255,255,255,.02); }
.comparison-table tbody td:first-child, .comparison-table thead th:first-child { text-align: left; color: var(--text); font-weight: 500; }
.comparison-table tbody td:first-child { color: var(--muted); }
.comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table .highlight-col {
    position: relative; background: rgba(28,150,243,.07);
    box-shadow: inset 1px 0 0 rgba(28,150,243,.4), inset -1px 0 0 rgba(28,150,243,.4);
}
.comparison-table thead .highlight-col {
    color: var(--text);
    background: linear-gradient(180deg, rgba(28,150,243,.22), rgba(28,150,243,.08));
    box-shadow: inset 1px 0 0 rgba(91,200,255,.5), inset -1px 0 0 rgba(91,200,255,.5), inset 0 1px 0 rgba(91,200,255,.5);
}
.comparison-table tbody tr:last-child .highlight-col { box-shadow: inset 1px 0 0 rgba(28,150,243,.4), inset -1px 0 0 rgba(28,150,243,.4), inset 0 -1px 0 rgba(91,200,255,.5); }
.comparison-table .check { color: var(--safe); font-weight: 700; }
.comparison-table .cross { color: var(--faint); }
.comparison-table .partial { color: var(--warn); font-size: .82rem; font-family: var(--mono); }

/* =========================================================================
   Reviews
   ========================================================================= */
.reviews-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.review-mini, .review-card {
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r);
    padding: 26px; backdrop-filter: blur(14px); box-shadow: var(--shadow-sm);
    transition: transform .25s, border-color .25s;
}
.review-mini:hover, .review-card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.review-mini p { color: var(--text); font-size: .95rem; line-height: 1.6; margin-bottom: 16px; }
.stars { color: var(--warn); letter-spacing: 2px; font-size: 1rem; margin-bottom: 14px; }
.reviewer { font-size: .82rem; color: var(--muted); font-weight: 500; }

/* reviews page grid + avatars */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card blockquote { color: var(--text); font-size: .95rem; line-height: 1.62; margin-bottom: 18px; }
.review-card .reviewer-name { font-weight: 600; color: var(--text); font-size: .92rem; display: flex; align-items: center; gap: 10px; }
.review-card .reviewer-name::before {
    content: attr(data-initial); width: 34px; height: 34px; border-radius: 50%; flex: none;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--display); font-size: .82rem; color: #fff; background: var(--brand-grad);
    box-shadow: 0 6px 16px -8px rgba(28,150,243,.7);
}
.review-card .reviewer-type { font-size: .8rem; color: var(--faint); margin-top: 5px; margin-left: 44px; }

/* =========================================================================
   Pricing
   ========================================================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; align-items: start; }
.pricing-card {
    position: relative;
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 34px 30px; backdrop-filter: blur(14px); box-shadow: var(--shadow-sm);
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.pricing-card.popular {
    border: 1px solid transparent;
    background:
        linear-gradient(var(--bg-3), var(--bg-3)) padding-box,
        var(--brand-grad) border-box;
    box-shadow: var(--glow-blue);
    transform: scale(1.035);
}
.pricing-card.popular:hover { transform: scale(1.035) translateY(-4px); }
.popular-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    font-family: var(--mono); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: #fff; background: var(--brand-grad); padding: 6px 16px; border-radius: 99px;
    box-shadow: 0 10px 24px -10px rgba(28,150,243,.8); white-space: nowrap;
}
.plan-name { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--text); }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin: 16px 0 4px; }
.plan-price-amount { font-family: var(--mono); font-weight: 700; font-size: 3rem; color: var(--text); line-height: 1; letter-spacing: -.02em; }
.plan-price-period { font-family: var(--mono); color: var(--muted); font-size: 1rem; }
.plan-sites { color: var(--brand-2); font-size: .9rem; font-weight: 500; margin-bottom: 22px; }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.plan-features li { position: relative; padding-left: 28px; font-size: .9rem; color: var(--muted); line-height: 1.45; }
.plan-features li::before {
    content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%;
    background: rgba(45,227,176,.14); border: 1px solid rgba(45,227,176,.4);
}
.plan-features li::after {
    content: ""; position: absolute; left: 6px; top: 7px; width: 5px; height: 8px;
    border: solid var(--safe); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.plan-cta { width: 100%; }
.plan-trial-note { text-align: center; font-size: .76rem; color: var(--faint); margin-top: 12px; font-family: var(--mono); }

/* =========================================================================
   FAQ accordion
   ========================================================================= */
.faq-list { max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r);
    margin-bottom: 12px; backdrop-filter: blur(10px); overflow: hidden;
    transition: border-color .25s;
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item.open { border-color: rgba(28,150,243,.4); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    background: none; border: 0; cursor: pointer; padding: 20px 24px; text-align: left;
    font-family: var(--font); font-weight: 600; font-size: 1rem; color: var(--text);
}
.faq-chevron { color: var(--brand-2); transition: transform .3s; flex: none; font-size: .9rem; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 24px; color: var(--muted); font-size: .94rem; line-height: 1.65; }
.faq-item.open .faq-answer { max-height: 480px; padding: 0 24px 22px; }

/* =========================================================================
   CTA band
   ========================================================================= */
.cta-section { text-align: center; }
.cta-section .container { position: relative; }
.cta-section h2 { font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-section p { font-size: 1.08rem; color: var(--muted); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-section::before {
    content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: min(960px, 92%); height: 320px; z-index: -1; border-radius: 40px; pointer-events: none;
    background: radial-gradient(60% 80% at 50% 50%, rgba(28,150,243,.18), transparent 70%);
    filter: blur(8px);
}

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { position: relative; border-top: 1px solid var(--line); padding: 64px 0 36px; background: rgba(7,10,17,.5); }
.site-footer::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(28,150,243,.6), rgba(91,200,255,.6), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 34px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--text); margin-bottom: 14px; }
.footer-logo svg { border-radius: 8px; }
.footer-tagline { color: var(--muted); font-size: .9rem; line-height: 1.6; }
.footer-col h4 { font-family: var(--font); font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--muted); font-size: .9rem; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.footer-bottom p { font-size: .82rem; color: var(--faint); }
.footer-legal { max-width: 540px; text-align: right; }

/* =========================================================================
   Inner page hero (pricing/changelog/reviews/blog/help)
   ========================================================================= */
.page-hero { padding: 92px 0 40px; text-align: center; position: relative; }
.page-hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); margin: 8px auto 16px; max-width: 18ch; }
.page-hero p { font-size: 1.08rem; color: var(--muted); max-width: 620px; margin: 0 auto; }

/* =========================================================================
   Changelog timeline
   ========================================================================= */
.changelog-list { max-width: 820px; margin: 12px auto 0; position: relative; padding-left: 40px; }
.changelog-list::before { content: ""; position: absolute; left: 11px; top: 14px; bottom: 14px; width: 2px; background: linear-gradient(180deg, var(--brand), rgba(28,150,243,.15)); }
.version-block { position: relative; margin-bottom: 48px; }
.version-block::before {
    content: ""; position: absolute; left: -34px; top: 6px; width: 14px; height: 14px; border-radius: 50%;
    background: var(--bg); border: 2px solid var(--brand); box-shadow: 0 0 0 4px rgba(28,150,243,.12);
}
.version-block:first-child::before { background: var(--brand); box-shadow: 0 0 0 4px rgba(28,150,243,.2), 0 0 16px var(--brand); }
.version-header { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.version-tag { font-family: var(--mono); font-weight: 700; font-size: 1.05rem; color: var(--text); }
.version-date { font-family: var(--mono); font-size: .8rem; color: var(--faint); padding: 4px 11px; border: 1px solid var(--line); border-radius: 99px; }
.version-current { font-family: var(--mono); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--safe); padding: 4px 11px; border-radius: 99px; background: rgba(45,227,176,.1); border: 1px solid rgba(45,227,176,.3); }
.changelog-group { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px; margin-bottom: 12px; backdrop-filter: blur(10px); }
.changelog-group-title { display: inline-block; font-family: var(--mono); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 7px; margin-bottom: 14px; }
.changelog-group.added .changelog-group-title { color: var(--safe); background: rgba(45,227,176,.1); border: 1px solid rgba(45,227,176,.28); }
.changelog-group.fixed .changelog-group-title { color: var(--brand-2); background: rgba(28,150,243,.1); border: 1px solid rgba(28,150,243,.28); }
.changelog-group.changed .changelog-group-title { color: var(--warn); background: rgba(255,176,32,.1); border: 1px solid rgba(255,176,32,.28); }
.changelog-group ul { display: flex; flex-direction: column; gap: 10px; }
.changelog-group li { position: relative; padding-left: 20px; font-size: .92rem; color: var(--muted); line-height: 1.58; }
.changelog-group li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--faint); }
.changelog-group li strong { color: var(--text); }

/* =========================================================================
   Blog
   ========================================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
    backdrop-filter: blur(14px); box-shadow: var(--shadow-sm);
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 30px 60px -30px rgba(28,150,243,.3); }
.blog-card-thumb { display: block; width: 100%; aspect-ratio: 16 / 9; background-size: cover; background-position: center; background-color: #0a1018; border-bottom: 1px solid var(--line); }
.article-feature-img { display: block; width: 100%; max-width: 760px; margin: 0 auto 8px; border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 30px 70px -34px rgba(28,150,243,.35); }
.blog-tag { display: inline-block; font-family: var(--mono); font-size: .66rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-2); padding: 4px 10px; border: 1px solid var(--line-2); border-radius: 99px; margin-bottom: 16px; }
.blog-card-title { font-size: 1.18rem; line-height: 1.2; margin-bottom: 12px; }
.blog-card-title a { color: var(--text); }
.blog-card-title a:hover { color: var(--brand-2); }
.blog-card-body p { font-size: .92rem; line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 8px; font-family: var(--mono); font-size: .76rem; color: var(--faint); }
.blog-read-more { font-size: .88rem; font-weight: 600; color: var(--brand-2); }

/* blog article */
.article-hero { padding: 80px 0 32px; text-align: center; }
.article-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.2rem); max-width: 20ch; margin: 10px auto 18px; }
.article-meta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; font-family: var(--mono); font-size: .82rem; color: var(--muted); }
.article-meta a { color: var(--muted); }
.article-body { max-width: 720px; margin: 0 auto; padding: 24px 24px 80px; }
.article-body p { font-size: 1.06rem; line-height: 1.78; color: #c4cfe2; margin-bottom: 22px; max-width: 68ch; }
.article-body h2 { font-size: 1.6rem; margin: 44px 0 16px; color: var(--text); }
.article-body ul { display: flex; flex-direction: column; gap: 10px; margin: 0 0 24px; }
.article-body li { position: relative; padding-left: 24px; font-size: 1.04rem; line-height: 1.7; color: #c4cfe2; }
.article-body li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 2px; background: var(--brand); }
.article-body code { background: rgba(91,200,255,.1); border: 1px solid var(--line); color: var(--brand-2); padding: .12em .42em; border-radius: 6px; font-size: .9em; }
.article-cta {
    margin: 48px 0; padding: 34px; text-align: center;
    background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--r-lg);
    backdrop-filter: blur(14px); box-shadow: var(--glow-blue);
}
.article-cta h3 { font-size: 1.5rem; margin-bottom: 12px; }
.article-cta p { margin-bottom: 22px; }

/* =========================================================================
   Help / docs layout
   ========================================================================= */
.help-layout { display: grid; grid-template-columns: 232px 1fr; gap: 48px; padding: 40px 0 80px; align-items: start; }
.help-sidebar { position: sticky; top: 92px; }
.help-sidebar-title { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.help-sidebar a { display: block; color: var(--muted); font-size: .9rem; padding: 8px 12px; border-radius: 8px; border-left: 2px solid transparent; transition: .2s; }
.help-sidebar a:hover { color: var(--text); background: rgba(255,255,255,.03); }
.help-sidebar a.active { color: var(--brand-2); border-left-color: var(--brand); background: rgba(28,150,243,.08); }
.help-content { max-width: 760px; }
.help-content section { margin-bottom: 56px; scroll-margin-top: 90px; }
.help-content h2 { font-size: 1.8rem; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.help-content h3 { font-size: 1.12rem; margin: 28px 0 12px; color: var(--text); }
.help-content p { font-size: 1rem; line-height: 1.72; margin-bottom: 16px; }
.help-content > section > ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.help-content ul li { position: relative; padding-left: 24px; font-size: .98rem; line-height: 1.7; color: var(--muted); }
.help-content ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 2px; background: var(--brand); }
.help-content ul li strong { color: var(--text); }
.step-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; counter-reset: step; }
.step-list li { display: flex; gap: 16px; align-items: flex-start; padding-left: 0; }
.step-list li::before { display: none; }
.step-num { counter-increment: step; flex: none; width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: var(--mono); font-weight: 700; font-size: .85rem; color: #fff; background: var(--brand-grad); box-shadow: 0 6px 16px -8px rgba(28,150,243,.8); }
.step-num::before { content: counter(step); }
.step-list li div { font-size: .98rem; line-height: 1.65; color: var(--muted); padding-top: 3px; }
.step-list li strong { color: var(--text); }
.info-box {
    background: rgba(28,150,243,.07); border: 1px solid rgba(28,150,243,.28); border-left: 3px solid var(--brand);
    border-radius: var(--r-sm); padding: 16px 20px; font-size: .94rem; color: var(--muted); margin: 20px 0;
}

/* =========================================================================
   Misc page bits (stub / 404)
   ========================================================================= */
.stub-icon { font-size: 3.2rem; margin-bottom: 18px; filter: drop-shadow(0 8px 20px rgba(28,150,243,.4)); }
.page-404 { text-align: center; padding: 110px 20px; }
.page-404 h1 { font-family: var(--mono); font-size: clamp(5rem, 16vw, 9rem); background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.page-404 h2 { margin: 8px 0 16px; }
.page-404 p { max-width: 460px; margin: 0 auto; }

/* =========================================================================
   Portal / auth forms (override portal-styles.php for dark theme)
   ========================================================================= */
.auth-wrap { max-width: 460px; margin: 60px auto; }
.auth-card {
    background: var(--bg-card) !important; border: 1px solid var(--line-2) !important;
    border-radius: var(--r-lg) !important; box-shadow: var(--shadow), 0 0 60px -30px rgba(28,150,243,.5) !important;
    padding: 40px 36px !important; backdrop-filter: blur(16px);
}
.auth-card h1 { font-size: 1.7rem !important; margin-bottom: 8px !important; }
.auth-card .auth-sub { color: var(--muted) !important; margin-bottom: 26px !important; }
.form-field { margin-bottom: 18px !important; }
.form-field label { display: block !important; font-weight: 500 !important; font-size: .82rem !important; color: var(--text) !important; margin-bottom: 7px !important; }
.form-field input {
    width: 100% !important; padding: 13px 15px !important; border: 1px solid var(--line-2) !important;
    border-radius: var(--r-sm) !important; font-family: var(--font) !important; font-size: .94rem !important;
    color: var(--text) !important; background: rgba(255,255,255,.03) !important; transition: border-color .2s, box-shadow .2s;
}
.form-field input::placeholder { color: var(--faint); }
.form-field input:focus { outline: none !important; border-color: var(--brand) !important; box-shadow: 0 0 0 3px rgba(28,150,243,.18) !important; }
.form-actions { margin-top: 24px !important; }
.form-actions .btn-primary { width: 100%; }
.auth-alt { text-align: center !important; margin-top: 20px !important; font-size: .88rem !important; color: var(--muted) !important; }
.alert { border-radius: var(--r-sm) !important; padding: 13px 16px !important; margin-bottom: 20px !important; font-size: .9rem !important; font-weight: 500 !important; }
.alert-error { background: rgba(255,93,108,.1) !important; border: 1px solid rgba(255,93,108,.35) !important; color: #ffb0b8 !important; }
.alert-ok { background: rgba(45,227,176,.1) !important; border: 1px solid rgba(45,227,176,.35) !important; color: #93f3d6 !important; }
.alert-info { background: rgba(28,150,243,.1) !important; border: 1px solid rgba(28,150,243,.35) !important; color: var(--brand-2) !important; }

/* account dashboard */
.acct-head { display: flex !important; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; padding-top: 20px; }
.acct-head h1 { font-size: 1.9rem !important; margin: 0 !important; }
.acct-email { color: var(--muted) !important; font-size: .92rem; font-family: var(--mono); }
.license-card {
    background: var(--bg-card) !important; border: 1px solid var(--line-2) !important;
    border-radius: var(--r-lg) !important; box-shadow: var(--shadow-sm) !important; backdrop-filter: blur(14px);
    padding: 28px !important; margin-bottom: 22px !important;
}
.license-top { display: flex !important; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.tier-name { font-family: var(--display) !important; font-size: 1.2rem !important; font-weight: 600 !important; color: var(--text) !important; }
.status-badge { display: inline-block; padding: 5px 13px !important; border-radius: 99px !important; font-weight: 700 !important; font-size: .66rem !important; text-transform: uppercase; letter-spacing: .06em; font-family: var(--mono); }
.status-active { background: rgba(45,227,176,.12) !important; color: var(--safe) !important; border: 1px solid rgba(45,227,176,.35); }
.status-expired { background: rgba(255,176,32,.12) !important; color: var(--warn) !important; border: 1px solid rgba(255,176,32,.35); }
.status-revoked { background: rgba(255,93,108,.12) !important; color: var(--threat) !important; border: 1px solid rgba(255,93,108,.35); }
.key-row { display: flex !important; gap: 10px; align-items: stretch; flex-wrap: wrap; margin: 8px 0 18px; }
.key-box {
    flex: 1; min-width: 240px; background: rgba(7,10,17,.6) !important; color: var(--brand-2) !important;
    padding: 14px 18px !important; border-radius: var(--r-sm) !important; border: 1px solid var(--line-2);
    font: 500 1.0rem/1 var(--mono) !important; letter-spacing: 1.5px; display: flex; align-items: center;
}
.license-meta { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; border-top: 1px solid var(--line) !important; padding-top: 18px; }
.meta-item .meta-label { font-family: var(--mono); font-size: .64rem !important; text-transform: uppercase; letter-spacing: .08em; color: var(--faint) !important; font-weight: 500 !important; margin-bottom: 4px; }
.meta-item .meta-val { font-weight: 600 !important; color: var(--text) !important; font-size: .94rem; }
.acct-actions { display: flex !important; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.copy-btn { cursor: pointer; }

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================================
   Keyframes + page-load stagger
   ========================================================================= */
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.82); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes rowIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.hero [data-stagger] { opacity: 0; animation: fadeUp .8s cubic-bezier(.2,.7,.3,1) forwards; }
.hero [data-stagger="1"] { animation-delay: .05s; }
.hero [data-stagger="2"] { animation-delay: .15s; }
.hero [data-stagger="3"] { animation-delay: .27s; }
.hero [data-stagger="4"] { animation-delay: .4s; }
.hero [data-stagger="5"] { animation-delay: .52s; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 44px; }
    .hero h1 { max-width: 100%; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card, .feature-card.wide { grid-column: span 1; }
    .problems-grid, .reviews-row, .reviews-grid, .blog-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
    .pricing-card.popular, .pricing-card.popular:hover { transform: none; }
    .showcase-grid { grid-template-columns: 1fr; }
    .help-layout { grid-template-columns: 1fr; gap: 24px; }
    .help-sidebar { position: static; display: flex; flex-wrap: wrap; gap: 6px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
    .help-sidebar-title { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-legal { text-align: left; }
}

@media (max-width: 720px) {
    .section { padding: 72px 0; }
    .hero { padding: 56px 0 64px; }
    .nav-toggle { display: flex; }
    .site-nav {
        position: absolute; top: 70px; left: 0; right: 0;
        flex-direction: column; gap: 4px; padding: 16px 24px;
        background: rgba(7,10,17,.97); backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--line); transform: translateY(-12px); opacity: 0;
        pointer-events: none; transition: opacity .25s, transform .25s;
    }
    .site-nav.open { transform: none; opacity: 1; pointer-events: auto; }
    .nav-link { padding: 11px 14px; }
    .nav-actions .btn-ghost { display: none; }
    .problems-grid, .features-grid, .reviews-row, .reviews-grid, .blog-grid, .pricing-grid, .showcase-grid, .mock-grid2 { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: 1fr; }
    .float-chip { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-legal { text-align: left; }
    .mock-app { grid-template-columns: 1fr; }
    .mock-rail { display: none; }
    .article-body p, .article-body li { font-size: 1rem; }
}

/* =========================================================================
   Reduced motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
    .hero [data-stagger] { opacity: 1; animation: none; }
}

/* =========================================================================
   Real plugin screenshots (replace the former CSS mockups)
   ========================================================================= */
.app-shot {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line-2);
    background: var(--bg-2);
    box-shadow: var(--shadow, 0 30px 80px -20px rgba(0,0,0,.6)), 0 0 80px -30px rgba(28,150,243,.45);
    max-width: 100%;
}
.app-shot img { display: block; width: 100%; height: auto; }

/* How-to video frame */
.howto-video {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line-2);
    background: #000;
    box-shadow: var(--shadow, 0 30px 80px -20px rgba(0,0,0,.6)), 0 0 80px -30px rgba(28,150,243,.45);
    display: block;
}

/* Reviews-page authority block */
.authority { max-width: 860px; margin: 0 auto; text-align: center; }
.authority h2 { margin: 8px 0 20px; }
.authority p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin: 0 auto 16px; max-width: 780px; text-align: left; }
.authority-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.authority-stats div { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 14px; display: flex; flex-direction: column; gap: 6px; }
.authority-stats b { color: var(--text); font-size: 1.15rem; }
.authority-stats span { color: var(--muted); font-size: .82rem; line-height: 1.4; }
@media (max-width: 760px) { .authority-stats { grid-template-columns: repeat(2, 1fr); } .authority p { font-size: 1rem; } }

/* ════════════════════════════════════════════════════════════════════════
   store2 — TERMINAL / SECURITY dark theme
   ui-ux-pro-max: "Dark Mode (OLED)" + "Trust & Authority + Conversion"
     navy/slate base · trust-blue links · GREEN for CTA only · JetBrains Mono accents
   intent refinements: readable sans body, AA/AAA contrast, mono for accents not paragraphs
   ════════════════════════════════════════════════════════════════════════ */

/* 1) Token remap — recolors the whole token-driven site at once */
:root {
    --bg:        #0A0F1C;
    --bg-2:      #0F172A;
    --bg-3:      #16203A;
    --bg-card:   rgba(20, 28, 46, .72);

    --line:      rgba(125, 168, 228, .10);
    --line-2:    rgba(125, 168, 228, .20);

    --text:      #F4F8FF;
    --muted:     #94A6C6;
    --text-muted:#94A6C6;
    --text-light:#5F7197;

    /* trust blue (cyan) for links, labels, highlights */
    --blue:       #38BDF8;
    --blue-dark:  #7DD3FC;
    --blue-light: rgba(125, 211, 252, .40);
    --blue-pale:  rgba(56, 189, 248, .10);
    --blue-xpale: rgba(56, 189, 248, .06);
    --brand:      #38BDF8;

    /* GREEN = CTA / safe / active, used sparingly */
    --accent:     #22C55E;
    --accent-2:   #4ADE80;
    --safe:       #22C55E;
    --brand-2:    #22C55E;
}

/* 2) OLED base + faint security grid + cyan/green ambient glow */
body {
    background:
        radial-gradient(900px 520px at 84% -10%, rgba(34, 197, 94, .10), transparent 60%),
        radial-gradient(820px 540px at 6% 6%, rgba(56, 189, 248, .09), transparent 60%),
        var(--bg);
}
body::before {
    content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .55;
    background-image:
        linear-gradient(rgba(125, 168, 228, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 168, 228, .045) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(circle at 50% -5%, #000 0%, transparent 72%);
    mask-image: radial-gradient(circle at 50% -5%, #000 0%, transparent 72%);
}

/* 3) Eyebrows / section labels -> terminal mono with prompt glyph + green tick */
.section-label {
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .70rem;
    color: var(--blue-dark);
    border: 1px solid var(--line-2);
    background: var(--blue-xpale);
    padding: 6px 12px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.section-label::before { content: "\203A_"; color: var(--accent); font-weight: 700; }

/* 4) Logo + nav -> mono wordmark */
.site-logo, .site-logo b, .site-logo span { font-family: var(--mono) !important; letter-spacing: -.02em; }
.nav-links a, .site-nav a, header nav a { font-family: var(--mono); font-size: .82rem; letter-spacing: .01em; }

/* 5) Primary CTA -> green with glow (accent reserved for CTA) */
.btn-primary {
    background: linear-gradient(180deg, #2BD46B 0%, #16A34A 100%);
    color: #04150A;
    font-family: var(--mono);
    font-weight: 700;
    letter-spacing: .005em;
    box-shadow: 0 1px 0 rgba(255,255,255,.28) inset, 0 14px 34px -14px rgba(34,197,94,.8), 0 0 0 1px rgba(34,197,94,.35);
}
.btn-primary:hover {
    color: #04150A;
    box-shadow: 0 1px 0 rgba(255,255,255,.34) inset, 0 22px 52px -16px rgba(34,197,94,.95), 0 0 0 1px rgba(34,197,94,.5);
}
.btn-outline-white { border-color: var(--line-2); color: var(--text); font-family: var(--mono); }

/* 6) Headings: section H2 -> mono (terminal); giant hero H1 keeps Clash for impact */
.section h2, .page-hero h2, .cta-section h2 { font-family: var(--mono); letter-spacing: -.015em; }
.section-label + h2, .authority h2 { font-family: var(--mono); }

/* 7) Live/safe status dots -> green */
.dot-live, .hero-note::before { background: var(--accent) !important; box-shadow: 0 0 8px var(--accent) !important; }

/* 8) Numbers -> tabular mono */
.num, .stat-tile .num, .authority-stats b, .version-tag { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* 9) Screenshot / video frames -> green+cyan glow on the new base */
.app-shot, .howto-video {
    border-color: var(--line-2);
    box-shadow: var(--shadow, 0 30px 80px -20px rgba(0,0,0,.7)), 0 0 70px -28px rgba(34,197,94,.40);
}

/* 10) Cards read as security panels */
.card, .review-card, .version-block { border-color: var(--line); background: var(--bg-card); }
.review-card .stars { color: var(--accent); }

/* ════════════════════════════════════════════════════════════════════════
   Phase 2 — modernized "problem" cards (depth, number, impact tag, motion)
   ════════════════════════════════════════════════════════════════════════ */
.problems-grid { gap: 24px; margin-top: 56px; }
.problem-card {
    position: relative;
    overflow: hidden;
    padding: 30px 26px 24px;
    border-radius: 18px;
    background:
        radial-gradient(120% 100% at 0% 0%, rgba(56,189,248,.06), transparent 55%),
        linear-gradient(180deg, rgba(20,28,46,.9), rgba(12,17,28,.72));
    border: 1px solid var(--line);
    transition: transform .45s cubic-bezier(.2,.7,.3,1), border-color .45s, box-shadow .45s;
}
.problem-card::before { height: 3px; opacity: .9; }
.problem-card:nth-child(1)::before { background: linear-gradient(90deg, var(--threat), transparent 72%); }
.problem-card:nth-child(2)::before { background: linear-gradient(90deg, var(--warn), transparent 72%); }
.problem-card:nth-child(3)::before { background: linear-gradient(90deg, #9b86ff, transparent 72%); }
.problem-card:hover {
    transform: translateY(-7px);
    border-color: var(--line-2);
    box-shadow: 0 34px 70px -34px rgba(0,0,0,.8), 0 0 60px -34px var(--brand-2);
}
.problem-num {
    position: absolute; top: 16px; right: 22px;
    font-family: var(--mono); font-weight: 700; font-size: 2.6rem; line-height: 1;
    color: transparent; -webkit-text-stroke: 1px var(--line-2); opacity: .55;
    transition: opacity .45s, -webkit-text-stroke-color .45s;
    pointer-events: none;
}
.problem-card:hover .problem-num { opacity: .9; }
.problem-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
    transition: transform .45s cubic-bezier(.2,.7,.3,1);
}
.problem-card:hover .problem-icon { transform: scale(1.08) rotate(-4deg); }
.problem-icon svg { width: 24px; height: 24px; }
.problem-icon-red    { background: rgba(255,93,108,.14); color: var(--threat); }
.problem-icon-amber  { background: rgba(255,176,32,.14); color: var(--warn); }
.problem-icon-violet { background: rgba(155,134,255,.16); color: #b3a4ff; }
.problem-card h3 { margin-bottom: 11px; }
.problem-card p { font-size: .94rem; line-height: 1.64; }
.problem-impact {
    margin-top: 20px; padding-top: 15px; border-top: 1px dashed var(--line-2);
    display: flex; align-items: center; gap: 10px;
    font-family: var(--mono); font-size: .73rem; letter-spacing: .01em; color: var(--muted);
}
.problem-impact .dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.problem-card:nth-child(1) .problem-impact .dot { background: var(--threat); box-shadow: 0 0 9px var(--threat); }
.problem-card:nth-child(2) .problem-impact .dot { background: var(--warn);   box-shadow: 0 0 9px var(--warn); }
.problem-card:nth-child(3) .problem-impact .dot { background: #b3a4ff;        box-shadow: 0 0 9px #b3a4ff; }

/* feature cards: a touch more lift + icon motion so the bento doesn't read flat */
.feature-card { transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .4s, box-shadow .4s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -32px rgba(0,0,0,.8), 0 0 50px -34px var(--brand-2); }
.feature-icon { transition: transform .4s cubic-bezier(.2,.7,.3,1); }
.feature-card:hover .feature-icon { transform: translateY(-2px) scale(1.06); }

@media (max-width: 900px) { .problems-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ════════════════════════════════════════════════════════════════════════
   Phase 4 — SEO landing pages
   ════════════════════════════════════════════════════════════════════════ */
.crumbs { font-family: var(--mono); font-size: .74rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--blue-dark); }
.crumbs span { opacity: .5; margin: 0 5px; }
.article-narrow { max-width: 768px; }
.article-narrow h2 { margin: 40px 0 14px; font-size: clamp(1.5rem, 2.4vw, 1.95rem); }
.article-narrow > div > p, .article-narrow p { margin-bottom: 14px; font-size: 1.02rem; line-height: 1.76; color: var(--muted); }
.check-list { margin: 4px 0 8px; display: flex; flex-direction: column; gap: 13px; }
.check-list li { position: relative; padding-left: 32px; color: var(--muted); line-height: 1.6; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 6px; background: rgba(34,197,94,.15); box-shadow: inset 0 0 0 1px rgba(34,197,94,.45); }
.check-list li::after { content: ""; position: absolute; left: 7px; top: 7px; width: 5px; height: 9px; border: solid var(--accent); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.check-list strong { color: var(--text); }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.related-card { display: flex; flex-direction: column; gap: 11px; padding: 26px 24px; border-radius: 16px; background: var(--bg-card); border: 1px solid var(--line); transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .4s, box-shadow .4s; }
.related-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 30px 60px -34px rgba(0,0,0,.8), 0 0 50px -34px var(--brand-2); }
.related-tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-dark); }
.related-card h3 { font-size: 1.06rem; line-height: 1.3; }
.related-go { font-family: var(--mono); font-size: .8rem; color: var(--accent); margin-top: auto; }

/* FAQ chevron base (open-state rotate already defined above) */
.faq-chevron { display: inline-block; width: 9px; height: 9px; border: solid var(--muted); border-width: 0 2px 2px 0; transform: rotate(45deg); transition: transform .25s; }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

@media (max-width: 820px) { .related-grid { grid-template-columns: 1fr; } .article-narrow h2 { margin-top: 30px; } }

/* ════════════════════════════════════════════════════════════════════════
   Phase 5 — logo concept gallery (/logos)
   ════════════════════════════════════════════════════════════════════════ */
.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.logo-card { position: relative; display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 32px 22px 22px; border-radius: 18px; background: var(--bg-card); border: 1px solid var(--line); transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .4s, box-shadow .4s; }
.logo-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 30px 60px -34px rgba(0,0,0,.8), 0 0 60px -34px var(--brand); }
.logo-num { position: absolute; top: 14px; left: 17px; font-family: var(--mono); font-size: .8rem; font-weight: 700; color: var(--brand-2); }
.logo-art { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.logo-lockup { display: flex; align-items: center; gap: 9px; }
.logo-word { font-family: var(--mono); font-size: .95rem; color: var(--text); letter-spacing: -.01em; }
.logo-word b { color: var(--brand-2); font-weight: 700; }
.logo-card figcaption { font-size: .82rem; color: var(--muted); text-align: center; }
@media (max-width: 820px) { .logo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .logo-grid { grid-template-columns: 1fr; } }

/* SEO landing hero graphic (on-brand, no external image) */
.landing-hero-art { margin: 38px auto 0; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lha-badge { width: 104px; height: 104px; border-radius: 26px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, rgba(28,150,243,.18), rgba(28,150,243,.04));
    border: 1px solid var(--line-2);
    box-shadow: 0 0 70px -20px var(--brand), inset 0 0 0 1px rgba(91,200,255,.14); }
.lha-badge svg { width: 46px; height: 46px; color: var(--brand-2); }
.lha-chips { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.lha-chip { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: .76rem; padding: 9px 14px; border-radius: 11px; border: 1px solid var(--line); background: var(--bg-card); color: var(--muted); }
.lha-chip .ic { display: inline-flex; width: 17px; height: 17px; align-items: center; justify-content: center; border-radius: 5px; font-size: .68rem; }
.lha-chip .ic.threat { background: rgba(255,93,108,.16); color: var(--threat); }
.lha-chip .ic.safe { background: rgba(34,197,94,.16); color: var(--accent); }
