/* SecretWolf marketing site.
   Brand tokens below are the canonical ThermaWolf/SecretWolf values — keep in sync with the app's
   wwwroot/css/site.css :root block. Pricing/tier DATA is shared via SecretWolf.Shared (not CSS). */

@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url('/fonts/Inter-Regular.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:500; font-display:swap; src:url('/fonts/Inter-Medium.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url('/fonts/Inter-SemiBold.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:700; font-display:swap; src:url('/fonts/Inter-Bold.woff2') format('woff2'); }

:root {
    --sw-accent: #0E7C7B;
    --sw-accent-hover: #0A6260;
    --sw-accent-dark: #0A4A49;
    --sw-accent-tint: #E1F5EE;
    --sw-on-accent-tint: #04342C;
    --sw-state-success: #1D9E75;
    --sw-navy: #000734;
    --sw-text: #141a33;
    --sw-muted: #5b6178;
    --sw-soft: #8990a8;
    --sw-bg: #ffffff;
    --sw-bg-alt: #f4f6fb;
    --sw-bg-cool: #e9edf7;
    --sw-border: #e5e8f2;
    --sw-border-strong: #d3d8e8;
    --radius: 10px;
    --radius-sm: 6px;
    --max-w: 1120px;
    --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --font-mono: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, monospace;
    --shadow-card: 0 1px 2px rgba(0,7,52,.05), 0 10px 26px rgba(0,7,52,.05);
    --shadow-lift: 0 12px 34px rgba(0,7,52,.11);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    color: var(--sw-text);
    background: var(--sw-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--sw-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.mkt-container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.mkt-center { text-align: center; }
.mkt-narrow { max-width: 760px; }
.mkt-mt { margin-top: 40px; }
.text-accent { color: var(--sw-accent); }

/* ── Header ─────────────────────────────────────────────────────────── */
.mkt-header { border-bottom: 1px solid var(--sw-border); background: rgba(255,255,255,.85); backdrop-filter: saturate(1.4) blur(10px); position: sticky; top: 0; z-index: 20; }
.mkt-header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.mkt-brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; color: var(--sw-navy); }
.mkt-brand .mkt-brand-mark { width: 34px; height: 34px; display: block; }
.mkt-brand:hover { text-decoration: none; }
.mkt-nav { display: flex; align-items: center; gap: 26px; }
.mkt-nav a { color: var(--sw-navy); font-weight: 500; font-size: 15px; }
.mkt-nav a:hover { color: var(--sw-accent); text-decoration: none; }
.mkt-nav-login { color: var(--sw-muted) !important; }
.mkt-nav-login:hover { color: var(--sw-navy) !important; }

/* ── Header disclosure menus ────────────────────────────────────────── */
/* <details>/<summary>, so they work with JS blocked. site-nav.js only adds Escape, click-outside,
   arrow keys and "opening one closes the others". */
.mkt-menu { position: relative; }
.mkt-menu > summary { display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
    color: var(--sw-navy); font-weight: 500; font-size: 15px; list-style: none; user-select: none; }
.mkt-menu > summary::-webkit-details-marker { display: none; }  /* Safari's default triangle */
.mkt-menu > summary::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-2px, -2px);
    transition: transform .15s; }
.mkt-menu[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.mkt-menu > summary:hover { color: var(--sw-accent); }

.mkt-menu-panel { position: absolute; top: calc(100% + 14px); left: -18px; z-index: 30;
    min-width: 268px; padding: 10px; background: var(--sw-bg); border: 1px solid var(--sw-border);
    border-radius: var(--radius); box-shadow: var(--shadow-lift); }
.mkt-menu-list { list-style: none; margin: 0; padding: 0; }
.mkt-menu-list a { display: block; padding: 8px 12px; border-radius: var(--radius-sm);
    color: var(--sw-navy); font-size: 14.5px; font-weight: 500; }
.mkt-menu-list a:hover { background: var(--sw-accent-tint); color: var(--sw-on-accent-tint); text-decoration: none; }
.mkt-menu-div { border: 0; border-top: 1px solid var(--sw-border); margin: 8px 12px; }
/* The hub links close the panel — the parents of the two lists above, so weighted apart from them. */
.mkt-menu-hubs { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--sw-border); }
.mkt-menu-hubs a { font-weight: 600; color: var(--sw-accent); }

/* Keyboard focus must be obvious: this is the whole navigation. */
.mkt-nav a:focus-visible, .mkt-menu > summary:focus-visible, .mkt-nav-burger:focus-visible {
    outline: 2px solid var(--sw-accent); outline-offset: 3px; border-radius: var(--radius-sm); }

/* ── Mobile nav burger ──────────────────────────────────────────────── */
/* Revealed by site-nav.js (hidden in markup), so a no-JS visitor never sees a dead control — the
   nav itself stays visible at every width in that case. */
.mkt-nav-burger { display: none; align-items: center; justify-content: center; width: 42px; height: 42px;
    padding: 0; background: none; border: 1px solid var(--sw-border-strong); border-radius: var(--radius-sm);
    cursor: pointer; color: var(--sw-navy); }
.mkt-burger-bars, .mkt-burger-bars::before, .mkt-burger-bars::after { display: block; width: 18px;
    height: 2px; background: currentColor; border-radius: 2px; }
.mkt-burger-bars { position: relative; }
.mkt-burger-bars::before, .mkt-burger-bars::after { content: ""; position: absolute; left: 0; }
.mkt-burger-bars::before { top: -6px; }
.mkt-burger-bars::after { top: 6px; }

/* ── Buttons ────────────────────────────────────────────────────────── */
.mkt-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 20px;
    border-radius: var(--radius); font-weight: 600; font-size: 15px; cursor: pointer; border: 1px solid transparent;
    transition: background-color .15s, border-color .15s, transform .08s, box-shadow .15s; }
.mkt-btn:hover { text-decoration: none; }
.mkt-btn-primary { background: var(--sw-accent); color: #fff; box-shadow: 0 6px 16px rgba(14,124,123,.24); }
.mkt-btn-primary:hover { background: var(--sw-accent-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 22px rgba(14,124,123,.30); }
.mkt-btn-ghost { background: #fff; color: var(--sw-navy); border-color: var(--sw-border-strong); }
.mkt-btn-ghost:hover { border-color: var(--sw-navy); transform: translateY(-1px); }
.mkt-btn-lg { padding: 15px 30px; font-size: 16px; }

/* ── Hero ───────────────────────────────────────────────────────────── */
.mkt-hero { position: relative; overflow: hidden;
    background: radial-gradient(62% 88% at 72% -8%, #ffffff 0%, var(--sw-bg-alt) 52%, var(--sw-bg-cool) 100%);
    border-bottom: 1px solid var(--sw-border); padding: 76px 0 84px; }
.mkt-hero-grid { display: grid; grid-template-columns: 1.03fr 0.97fr; gap: 56px; align-items: center; }
/* Let grid children shrink below their content's min-content (the panel's nowrap
   URL would otherwise widen the column past a narrow viewport). */
.mkt-hero-grid > *, .mkt-features > *, .mkt-steps > * { min-width: 0; }
.mkt-eyebrow { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--sw-accent); margin-bottom: 16px; }
.mkt-hero h1 { font-size: clamp(34px, 4.7vw, 54px); line-height: 1.04; color: var(--sw-navy); margin: 0 0 18px;
    letter-spacing: -0.03em; font-weight: 700; }
.mkt-hero .lede { font-size: clamp(17px, 1.35vw, 19px); color: var(--sw-muted); max-width: 520px; margin: 0 0 30px; }
.mkt-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.mkt-trust { display: flex; gap: 14px 22px; flex-wrap: wrap; margin-top: 30px; }
.mkt-trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; color: var(--sw-muted); }
.mkt-trust-item svg { width: 15px; height: 15px; color: var(--sw-accent); flex-shrink: 0; }

/* ── Hero product panel (mockup) ────────────────────────────────────── */
.mkt-panel { background: #fff; border: 1px solid var(--sw-border); border-radius: 16px; box-shadow: var(--shadow-lift);
    padding: 18px 18px 16px; }
.mkt-panel-bar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--sw-border); }
.mkt-panel-brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--sw-navy); }
.mkt-panel-brand img { width: 22px; height: 22px; display: block; }
.mkt-panel-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 600;
    color: #1e7a3d; background: #e6f6ea; border-radius: 999px; padding: 4px 10px; }
.mkt-panel-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #22a352; box-shadow: 0 0 0 3px rgba(34,163,82,.16); }
.mkt-panel-label { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sw-soft); margin: 16px 0 8px; }
.mkt-panel-link { display: flex; align-items: center; gap: 8px; background: var(--sw-bg-alt); border: 1px solid var(--sw-border); border-radius: 8px; padding: 9px 10px 9px 12px; }
.mkt-panel-url { flex: 1; min-width: 0; font-family: var(--font-mono); font-size: 12.5px; color: var(--sw-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mkt-panel-copy { font-size: 12px; font-weight: 600; color: var(--sw-accent); background: #fff; border: 1px solid rgba(14,124,123,.28); border-radius: 6px; padding: 5px 10px; flex-shrink: 0; }
.mkt-panel-rows { margin-top: 16px; display: flex; flex-direction: column; gap: 2px; }
.mkt-panel-row { display: flex; align-items: center; gap: 10px; padding: 9px 4px; border-bottom: 1px solid var(--sw-border); font-size: 13.5px; color: var(--sw-text); }
.mkt-panel-row:last-child { border-bottom: none; }
/* Each audit state is its own indicator — distinct by hue AND fill, so the three read apart at 9px
   and don't rely on colour alone (green and teal sit close in hue). */
.mkt-panel-row .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; box-sizing: border-box; }
.mkt-panel-row .dot.g { background: var(--sw-state-success); }                            /* Sent — delivered (filled green) */
.mkt-panel-row .dot.b { background: var(--sw-navy); }                                     /* Verified — identity confirmed (filled navy) */
.mkt-panel-row .dot.o { background: transparent; border: 2.5px solid var(--sw-accent); }  /* Destroyed — the secret is gone (hollow teal ring) */
.mkt-panel-row .t { margin-left: auto; font-family: var(--font-mono); font-size: 12px; color: var(--sw-soft); }
.mkt-panel-foot { margin-top: 14px; font-size: 12px; color: var(--sw-soft); text-align: center; }

/* ── Sections ───────────────────────────────────────────────────────── */
.mkt-section { padding: 72px 0; }
.mkt-section--alt { background: var(--sw-bg-alt); border-top: 1px solid var(--sw-border); border-bottom: 1px solid var(--sw-border); }
.mkt-section :is(h1, h2) { font-size: clamp(26px, 3.4vw, 36px); color: var(--sw-navy); margin: 0 0 12px; text-align: center; letter-spacing: -0.02em; font-weight: 700; }
.mkt-section .mkt-sub { color: var(--sw-muted); text-align: center; max-width: 640px; margin: 0 auto 48px; font-size: 17px; }

/* ── Feature grid ───────────────────────────────────────────────────── */
.mkt-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mkt-feature { background: var(--sw-bg); border: 1px solid var(--sw-border); border-radius: 12px; padding: 24px 22px;
    transition: border-color .15s, box-shadow .15s, transform .1s; }
.mkt-feature:hover { border-color: var(--sw-border-strong); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.mkt-feature-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.mkt-feature h3 { margin: 0; font-size: 17px; color: var(--sw-navy); font-weight: 600; }
.mkt-feature p { margin: 0; color: var(--sw-muted); font-size: 15px; }
.mkt-pill { flex-shrink: 0; font-size: 11px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
    color: var(--sw-accent); background: rgba(14,124,123,.09); border-radius: 999px; padding: 4px 10px; white-space: nowrap; }

/* ── How it works ───────────────────────────────────────────────────── */
.mkt-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mkt-step { position: relative; padding: 6px 6px 6px 0; }
.mkt-step-num { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
    border-radius: 10px; background: linear-gradient(180deg, var(--sw-accent) 0%, var(--sw-accent-dark) 100%); color: #fff;
    font-weight: 700; font-size: 16px; margin-bottom: 14px; box-shadow: 0 6px 14px rgba(14,124,123,.22); }
.mkt-step h3 { margin: 0 0 6px; font-size: 17px; color: var(--sw-navy); font-weight: 600; }
.mkt-step p { margin: 0; color: var(--sw-muted); font-size: 15px; }

/* ── CTA band ───────────────────────────────────────────────────────── */
.mkt-cta-band { text-align: center; }
.mkt-cta-band h2 { margin-bottom: 12px; }
.mkt-cta-band .mkt-sub { margin-bottom: 28px; }

/* ── Use-case FAQ ───────────────────────────────────────────────────── */
.mkt-faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.mkt-faq > div { background: var(--sw-bg); border: 1px solid var(--sw-border); border-radius: 12px; padding: 22px 24px; }
.mkt-faq-q { margin: 0 0 8px; font-size: 16px; color: var(--sw-navy); font-weight: 600; }
.mkt-faq-a { margin: 0; color: var(--sw-muted); font-size: 15px; }
@media (max-width: 820px) { .mkt-faq { grid-template-columns: 1fr; } }

/* ── Pricing (Pricing page) ─────────────────────────────────────────── */
.mkt-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.mkt-plan { border: 1px solid var(--sw-border); border-radius: var(--radius); padding: 28px; background: var(--sw-bg); display: flex; flex-direction: column; }
.mkt-plan--featured { border-color: var(--sw-accent); box-shadow: 0 8px 30px rgba(14, 124, 123, 0.10); }
.mkt-plan-name { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--sw-accent); }
.mkt-plan-price { font-size: 40px; font-weight: 700; color: var(--sw-navy); margin: 8px 0 2px; }
.mkt-plan-price span { font-size: 15px; font-weight: 500; color: var(--sw-muted); }
.mkt-plan-tagline { color: var(--sw-muted); font-size: 14px; margin: 0 0 16px; min-height: 40px; }
.mkt-plan-seats { font-size: 14px; color: var(--sw-text); margin-bottom: 16px; }
.mkt-plan ul { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.mkt-plan li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: 14px; color: var(--sw-text); }
.mkt-plan li::before { content: "✓"; position: absolute; left: 0; color: var(--sw-accent); font-weight: 700; }
.mkt-plan .mkt-btn { width: 100%; }

/* ── Prose (Security / Terms / Privacy) ─────────────────────────────── */
.mkt-prose { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.mkt-prose h1 { color: var(--sw-navy); font-size: 34px; letter-spacing: -0.01em; }
.mkt-prose h2 { color: var(--sw-navy); font-size: 22px; margin-top: 36px; }
.mkt-prose p, .mkt-prose li { color: var(--sw-text); }
.mkt-prose .mkt-muted { color: var(--sw-muted); }

/* ── Forms (Contact) ────────────────────────────────────────────────── */
.mkt-form { max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.mkt-form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 500; color: var(--sw-navy); }
.mkt-form input, .mkt-form textarea { padding: 11px 13px; font: inherit; font-size: 15px; color: var(--sw-text);
    background: var(--sw-bg); border: 1px solid var(--sw-border); border-radius: var(--radius); }
.mkt-form input:focus, .mkt-form textarea:focus { outline: none; border-color: var(--sw-accent); box-shadow: 0 0 0 3px rgba(14,124,123,0.12); }
.mkt-form textarea { min-height: 130px; resize: vertical; }
.mkt-callout { padding: 14px 16px; border-radius: var(--radius); background: #e6f6ea; color: #1e7a3d; border: 1px solid #bfe6cb; }
.mkt-callout--error { background: #fde8e8; color: #b42318; border-color: #f5c2c0; }
/* Honeypot: reachable to bots, invisible to people. */
.mkt-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── Homepage walkthrough (site-demo.js) ────────────────────────────── */
/* Upgrades the static hero panel into a four-step simulation. Styling stays inside the existing
   panel so the upgrade doesn't reflow the hero. */
.mkt-panel--demo { display: flex; flex-direction: column; gap: 12px; }
.mkt-panel-pill--demo { background: var(--sw-accent-tint); color: var(--sw-on-accent-tint); }
.mkt-demo-input { width: 100%; resize: vertical; font-family: var(--font-mono); font-size: 14px;
    color: var(--sw-navy); background: var(--sw-bg-alt); border: 1px solid var(--sw-border-strong);
    border-radius: var(--radius-sm); padding: 11px 13px; }
.mkt-demo-input:focus-visible { outline: 2px solid var(--sw-accent); outline-offset: 2px; }
.mkt-demo-reveal { font-family: var(--font-mono); font-size: 16px; word-break: break-all;
    color: var(--sw-navy); background: var(--sw-accent-tint); border: 1px dashed var(--sw-accent);
    border-radius: var(--radius-sm); padding: 14px; }
.mkt-demo-note { margin: 0; font-size: 12.5px; line-height: 1.5; color: var(--sw-muted); }
.mkt-demo-action { align-self: flex-start; }
.mkt-demo-copy { cursor: pointer; background: none; border: 0; font: inherit; }
.mkt-demo-caption { max-width: 460px; margin: 12px auto 0; font-size: 12.5px; line-height: 1.5;
    color: var(--sw-soft); text-align: center; }

/* ── Trust band (above the footer) ──────────────────────────────────── */
/* No logos, testimonials or counts exist, so this carries only checkable facts. Sits directly above
   the footer as the last thing read before the page ends. */
.mkt-trustband { border-top: 1px solid var(--sw-border); background: var(--sw-bg-alt); padding: 34px 0 30px; }
.mkt-trustband-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mkt-trustband-list li { display: flex; flex-direction: column; gap: 3px; }
.mkt-trustband-list strong { color: var(--sw-navy); font-size: 15px; font-weight: 600; }
.mkt-trustband-list span { color: var(--sw-muted); font-size: 14px; line-height: 1.5; }
.mkt-trustband-links { margin: 22px 0 0; font-size: 14px; color: var(--sw-soft); }

/* A smaller H2 for teaser sections that shouldn't compete with the page's main headings. */
.mkt-h2-sm { font-size: 22px; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.mkt-footer { border-top: 1px solid var(--sw-border); background: var(--sw-bg-alt); color: var(--sw-muted); padding: 52px 0 44px; }
.mkt-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; }
.mkt-footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--sw-navy); }
.mkt-footer-brand:hover { text-decoration: none; }
.mkt-footer-brand img { width: 28px; height: 28px; display: block; }
.mkt-footer-tag { margin: 14px 0 10px; max-width: 36ch; font-size: 14px; color: var(--sw-muted); line-height: 1.55; }
.mkt-footer-copy { font-size: 13px; color: var(--sw-soft); }
.mkt-footer-col { display: flex; flex-direction: column; gap: 11px; }
.mkt-footer-h { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sw-navy); margin-bottom: 3px; }
.mkt-footer-col a { color: var(--sw-muted); font-size: 14px; }
.mkt-footer-col a:hover { color: var(--sw-accent); text-decoration: none; }
/* The hub link closing a column — same size, weighted so it reads as the parent of the list above. */
.mkt-footer-more { font-weight: 600; color: var(--sw-navy) !important; }

/* ── Breadcrumb ─────────────────────────────────────────────────────── */
.mkt-breadcrumb { padding: 18px 0 0; font-size: 13px; color: var(--sw-soft); }
.mkt-breadcrumb a { color: var(--sw-muted); }
.mkt-breadcrumb a:hover { color: var(--sw-accent); text-decoration: none; }
.mkt-breadcrumb-sep { margin: 0 4px; color: var(--sw-border-strong); }
.mkt-breadcrumb [aria-current="page"] { color: var(--sw-navy); font-weight: 600; }

/* ── Hub pages (/for, /use-cases) ───────────────────────────────────── */
/* Navigational parents, not landing pages: prose column, no hero mock, no trust strip. */
.mkt-hub h1 { font-size: 38px; line-height: 1.18; letter-spacing: -0.02em; color: var(--sw-navy); margin: 10px 0 16px; }
.mkt-hub .lede { font-size: 19px; color: var(--sw-muted); margin: 0 0 18px; }
.mkt-hub p { color: var(--sw-text); margin: 0 0 16px; }

/* ── Related pages (cross-links) ────────────────────────────────────── */
.mkt-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
/* Two columns for hub card grids: four children, and the blurbs are a line longer than the
   three-up cross-links, so three columns would leave a ragged orphan. */
.mkt-related-grid--2 { grid-template-columns: repeat(2, 1fr); }
.mkt-related-grid a { display: block; padding: 15px 18px; border: 1px solid var(--sw-border); border-radius: var(--radius); color: var(--sw-navy); font-weight: 600; font-size: 15px; background: var(--sw-bg); }
.mkt-related-grid a:hover { border-color: var(--sw-accent); color: var(--sw-accent); text-decoration: none; box-shadow: var(--shadow-card); }
.mkt-related-grid a span { display: block; margin-top: 3px; font-weight: 400; font-size: 13px; color: var(--sw-muted); }

/* ── Eyebrow segment examples (job-led hero) ────────────────────────── */
.mkt-eyebrow-segments { display: block; margin-top: 7px; font-size: 14px; font-weight: 500; color: var(--sw-muted); letter-spacing: 0; text-transform: none; }
.mkt-eyebrow-segments a { color: var(--sw-muted); }
.mkt-eyebrow-segments a:hover { color: var(--sw-accent); text-decoration: none; }

/* ── Docs / code ────────────────────────────────────────────────────── */
.mkt-code { background: var(--sw-navy); color: #e6ebf7; border-radius: var(--radius-sm); padding: 16px 18px; overflow-x: auto; font-family: var(--font-mono); font-size: 13px; line-height: 1.55; margin: 8px 0 22px; }
.mkt-code code { font-family: inherit; white-space: pre; }
.mkt-endpoint { font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--sw-navy); background: var(--sw-bg-alt); border: 1px solid var(--sw-border); border-radius: var(--radius-sm); padding: 6px 11px; display: inline-block; margin: 4px 0 10px; }
.mkt-faq--stack { grid-template-columns: 1fr; }

/* ── Password generator ─────────────────────────────────────────────── */
.mkt-gen { max-width: 680px; margin: 0 auto; border: 1px solid var(--sw-border); border-radius: var(--radius); background: var(--sw-bg); box-shadow: var(--shadow-card); padding: 24px; }
.mkt-gen-output-row { display: flex; gap: 10px; }
.mkt-gen-output { flex: 1; font-family: var(--font-mono); font-size: 17px; letter-spacing: 0.02em; color: var(--sw-navy); background: var(--sw-bg-alt); border: 1px solid var(--sw-border-strong); border-radius: var(--radius-sm); padding: 12px 14px; overflow-x: auto; }
.mkt-gen-controls { margin-top: 20px; display: grid; gap: 16px; }
.mkt-gen-len { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--sw-muted); }
.mkt-gen-len input[type=range] { flex: 1; accent-color: var(--sw-accent); }
.mkt-gen-len b { color: var(--sw-navy); font-variant-numeric: tabular-nums; min-width: 2ch; text-align: right; }
.mkt-gen-sets { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.mkt-gen-set { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: var(--sw-text); }
.mkt-gen-set input { accent-color: var(--sw-accent); width: 16px; height: 16px; }
.mkt-gen-status { margin-top: 14px; font-size: 13px; color: var(--sw-muted); min-height: 1.2em; }
.mkt-gen-actions { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 10px; }

/* ── Comparison table ───────────────────────────────────────────────── */
.mkt-table-wrap { overflow-x: auto; margin: 8px 0 26px; }
.mkt-compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.mkt-compare-table th, .mkt-compare-table td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--sw-border); vertical-align: top; }
.mkt-compare-table thead th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sw-navy); border-bottom: 2px solid var(--sw-border-strong); }
.mkt-compare-table tbody th { font-weight: 600; color: var(--sw-navy); }
.mkt-compare-table .cap { font-weight: 600; white-space: nowrap; }
.cap--yes { color: var(--sw-state-success); }
.cap--no { color: var(--sw-soft); }
.cap--partial { color: var(--sw-accent); }
.cap--unverified { color: var(--sw-soft); font-weight: 400; font-style: italic; }
.mkt-cite { display: inline-block; margin-left: 8px; font-size: 12px; font-weight: 400; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .mkt-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .mkt-hero-copy { text-align: center; }
    .mkt-hero .lede { margin-left: auto; margin-right: auto; }
    .mkt-hero-cta, .mkt-trust { justify-content: center; }
    .mkt-panel { max-width: 460px; margin: 0 auto; }
}

/* Navigation collapses to the burger before the dropdown panels get wider than the viewport. Until
   this change the small-screen rule was `display: none` on every nav link, so a phone visitor had no
   navigation at all beyond Log in and Start free. */
@media (max-width: 900px) {
    .mkt-nav-burger:not([hidden]) { display: inline-flex; }

    /* .nav-js is set by site-nav.js. Scoping the collapse to it means that with JS blocked the burger
       stays hidden AND the nav keeps its default display, wrapping onto two rows — usable, rather
       than a menu button that does nothing. */
    .nav-js .mkt-nav { display: none; }
    .nav-js .mkt-nav.is-open {
        display: flex; flex-direction: column; align-items: stretch; gap: 2px;
        position: absolute; top: 100%; left: 0; right: 0; z-index: 25;
        padding: 12px 24px 20px; background: var(--sw-bg);
        border-bottom: 1px solid var(--sw-border); box-shadow: var(--shadow-lift);
        max-height: calc(100vh - 74px); overflow-y: auto;
    }
    .nav-js .mkt-nav.is-open > a { padding: 11px 12px; border-radius: var(--radius-sm); font-size: 16px; }
    .nav-js .mkt-nav.is-open > a.mkt-btn { margin-top: 10px; justify-content: center; font-size: 15px; }
    .nav-js .mkt-nav.is-open .mkt-menu > summary { padding: 11px 12px; font-size: 16px; justify-content: space-between; }

    /* Dropdown becomes an inline accordion: an indented list under its own summary, not a floating
       panel that would overflow a 375px viewport. */
    .nav-js .mkt-nav.is-open .mkt-menu-panel {
        position: static; min-width: 0; margin: 0 0 6px 12px; padding: 2px 0 6px;
        border: 0; border-left: 2px solid var(--sw-border); border-radius: 0; box-shadow: none;
    }
    .nav-js .mkt-nav.is-open .mkt-menu-list a { padding: 9px 14px; font-size: 15px; }
}

/* Cookie consent banner. position: fixed on purpose — it is outside the document flow, so revealing
   it after load cannot shift the page and cannot cost anything in CLS. Ships hidden in markup; the
   [hidden] rule is explicit because display:flex on the same element would otherwise beat it. */
.mkt-consent[hidden] { display: none; }
.mkt-consent {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    background: var(--sw-bg); border-top: 1px solid var(--sw-border-strong);
    box-shadow: var(--shadow-lift); padding: 16px 24px;
}
.mkt-consent-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.mkt-consent-copy { flex: 1 1 420px; }
.mkt-consent-copy p { margin: 0; font-size: 14px; color: var(--sw-muted); line-height: 1.5; }
.mkt-consent-h { font-weight: 700; color: var(--sw-navy); font-size: 15px; margin-bottom: 2px !important; }
.mkt-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
/* Both choices get the SAME treatment. The ICO treats a visually louder "accept" as consent that
   was not freely given, so this is a compliance rule wearing a stylesheet — do not promote one of
   these to .mkt-btn-primary. */
.mkt-consent-btn {
    background: var(--sw-bg); color: var(--sw-navy); border-color: var(--sw-border-strong);
    min-width: 104px;
}
.mkt-consent-btn:hover { border-color: var(--sw-navy); transform: translateY(-1px); }

@media (max-width: 820px) {
    .mkt-features, .mkt-pricing, .mkt-steps, .mkt-footer-grid, .mkt-related-grid,
    .mkt-trustband-list { grid-template-columns: 1fr; }
    .mkt-footer-grid { gap: 28px; }
    .mkt-consent-inner { flex-direction: column; align-items: stretch; gap: 14px; }
    .mkt-consent-actions .mkt-consent-btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
}
