/* ============================================================
   Verlock — Custom Chromium browsers
   Modern / tech / stable.  Brand: #3B9EFF sky-blue accent, light UI
   ============================================================ */

:root {
  /* Brand */
  --accent: #3B9EFF;                       /* sky blue — fills, icons, glows */
  --accent-2: #1E7BE0;                      /* deeper blue — gradient end */
  --accent-ink: #1668CE;                    /* readable blue for text on white */
  --accent-soft: rgba(59, 158, 255, 0.12);
  --accent-line: rgba(59, 158, 255, 0.26);

  /* Neutrals */
  --light: #0E1B26;            /* strongest text — headings, brand */
  --bg: #FFFFFF;               /* page */
  --bg-2: #F4F7FA;             /* section alt */
  --bg-3: #FFFFFF;             /* raised */
  --panel: rgba(255, 255, 255, 0.7);
  --panel-solid: #FFFFFF;
  --border: rgba(15, 40, 65, 0.10);
  --border-strong: rgba(15, 40, 65, 0.16);

  /* Text */
  --text: #1F2D38;
  --muted: #5A6B76;
  --muted-2: #76858F;

  /* Type */
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Layout */
  --maxw: 1200px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px -24px rgba(15, 40, 65, 0.20);
  --shadow-glow: 0 0 0 1px var(--accent-line), 0 24px 60px -28px rgba(59, 158, 255, 0.30);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
code { font-family: var(--font-mono); font-size: 0.88em; color: var(--accent-ink); background: var(--accent-soft); padding: 0.1em 0.4em; border-radius: 6px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

/* ---------- Typography helpers ---------- */
.grad-text {
  background: linear-gradient(120deg, var(--accent-2) 0%, var(--accent) 50%, var(--accent-ink) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.eyebrow--accent { color: var(--accent-ink); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 12px; --pad-x: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .2s;
  white-space: nowrap;
}
.btn .ico { transition: transform .25s var(--ease); }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #FFFFFF; box-shadow: 0 10px 30px -10px rgba(59, 158, 255, 0.5);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(59, 158, 255, 0.62); }
.btn--primary:hover .ico { transform: translateX(3px); }
.btn--ghost {
  background: rgba(15, 40, 65, 0.03); color: var(--text);
  border-color: var(--border-strong); backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }
.btn--lg { --pad-y: 16px; --pad-x: 30px; font-size: 1.05rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px -20px rgba(15, 40, 65, 0.25);
}
.nav { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em; }
.brand img { filter: drop-shadow(0 0 10px rgba(59, 158, 255, 0.35)); }
.brand__name { color: var(--light); }

.nav__links { display: flex; gap: 6px; margin-left: 12px; margin-right: auto; }
.nav__links a {
  font-size: 0.92rem; font-weight: 500; color: var(--muted);
  padding: 8px 14px; border-radius: 10px; transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--text); background: rgba(15, 40, 65, 0.05); }
.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent;
  border: 1px solid var(--border-strong); border-radius: 12px; cursor: pointer;
}
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: clamp(56px, 9vw, 110px); padding-bottom: clamp(28px, 5vw, 52px); overflow: hidden; border-bottom: 1px solid var(--border); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 0.14; }
.hero__bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1500px 920px at 50% -4%, rgba(59, 158, 255, 0.18) 0%, rgba(59, 158, 255, 0.07) 40%, transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.82) 60%, var(--bg) 100%);
}
.hero__grid {
  position: absolute; inset: 0; opacity: 0.5;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(900px 500px at 60% 20%, #000 0%, transparent 75%);
  mask-image: radial-gradient(900px 500px at 60% 20%, #000 0%, transparent 75%);
}

/* Stacked hero: copy on top (centred), browser window flush at the bottom */
.hero__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(40px, 6vw, 68px);
  padding-bottom: 0;
}
.hero__copy { max-width: 820px; }
.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.07; letter-spacing: -0.03em;
  color: var(--light); margin-bottom: 22px;
}
.hero__lead { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--muted); max-width: 40em; margin: 0 auto 17px; }
.hero__lead strong { color: var(--text); font-weight: 600; }

/* Browser-window screenshot shown in full — a framed card with a soft shadow. */
.hero__art {
  position: relative; width: 100%; max-width: 1000px; margin: 0 auto;
  border-radius: 15px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px -12px rgba(70, 80, 95, 0.28), 0 4px 14px -6px rgba(70, 80, 95, 0.16);
}
.hero__art img { display: block; width: 100%; height: auto; max-width: none; }

/* Supplementary stats band — sits below the hero, lifted with a subtle raised tone */
.hero-band { padding: clamp(22px, 3.6vw, 38px) 0; background: var(--bg); border-bottom: 1px solid var(--border); }
.hero__stats {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.hero__stats li {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 6px 20px; text-align: left;
}
.hero__stats li + li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 42px; background: var(--border);
}
.hero__stats li:first-child { justify-content: flex-start; padding-left: 0; }
.hero__stats li:last-child { justify-content: flex-end; padding-right: 0; }
.hero__stats strong {
  font-family: var(--font-display); font-weight: 700; line-height: 1;
  font-size: clamp(2rem, 3.2vw, 2.6rem); color: var(--accent-ink); flex-shrink: 0;
}
.hero__stats .stat__label { font-size: 0.92rem; color: var(--muted); line-height: 1.4; }

/* ============================================================
   Generic section
   ============================================================ */
.section { position: relative; padding: clamp(72px, 11vw, 130px) 0; }
.section--alt { background: var(--bg-2); }

/* Anchor-jump offset for the sticky 72px header.
   Feature blocks have no top padding, so offset = header + ~18px breathing room.
   Section boxes carry their own top padding, so we subtract it back out — this
   lands every heading at the same spot below the header across all viewports. */
.feature[id] { scroll-margin-top: 90px; }
.feature-card[id] { scroll-margin-top: 90px; }
.compare-block[id] { scroll-margin-top: 90px; }
.section[id] { scroll-margin-top: calc(90px - clamp(72px, 11vw, 130px)); }
.section__head { max-width: 720px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.section__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3.6vw, 2.9rem); line-height: 1.12; letter-spacing: -0.025em; color: var(--light); }
.section__sub { margin-top: 18px; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.12rem); }
.section__sub strong { color: var(--text); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Cards ---------- */
.card {
  position: relative; padding: 30px 28px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #FFFFFF, #F7FAFC);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px 200px at var(--mx, 80%) -10%, rgba(59,158,255,0.13), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: 14px; color: var(--accent-ink); margin-bottom: 20px;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
}
.card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; color: var(--light); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card .tag {
  font-family: var(--font-body); font-style: normal; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-ink);
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  padding: 3px 8px; border-radius: 999px;
}
.case__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px;
  color: var(--accent-ink); background: var(--accent-soft); border: 1px solid var(--accent-line);
}

/* Use-case cards: horizontal — a tall rounded icon tile on the left, copy on the right.
   The tile stretches to the full card height (minus padding) so it reads as an industry
   "service" block; the copy is vertically centred against it. */
.card--row { display: flex; align-items: center; gap: 20px; }
.card--row .case__icon { flex-shrink: 0; width: 100px; height: 100px; margin-bottom: 0; border-radius: 20px; }
.card--row .case__icon svg { width: 40px; height: 40px; }
.card--row .case__body { min-width: 0; }
.card--row .case__body h3 { margin-bottom: 6px; }

/* tick lists */
.ticks { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.ticks li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--muted); }
.ticks li svg { color: var(--accent); flex-shrink: 0; }
.ticks--inline { flex-direction: row; flex-wrap: wrap; gap: 10px 20px; margin-top: 22px; }

/* ---------- Team panel (image left, copy right) ---------- */
.team {
  display: grid;
  grid-template-columns: 2fr 3fr;
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.team__media { position: relative; min-height: 100%; overflow: hidden; }
.team__media img { width: 100%; height: 100%; object-fit: cover; filter: blur(2px) saturate(0.85); transform: scale(1.1); }
/* Blue veil so the photo reads as a decorative tint, not a focal image. */
.team__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(59,158,255,0.52), rgba(12,68,138,0.58));
}
.team__content { padding: 56px 56px 56px 60px; }
.team__content .eyebrow { margin-bottom: 16px; }
.team__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.14;
  letter-spacing: -0.02em; color: var(--light);
}
.team__sub { margin-top: 14px; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.08rem); }
.team__list {
  display: flex; flex-direction: column;
  gap: 22px; margin-top: 38px;
}
.team__item { display: flex; align-items: flex-start; gap: 16px; }
.team__icon {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 11px; margin-top: 2px;
  color: var(--accent-ink); background: var(--accent-soft); border: 1px solid var(--accent-line);
}
.team__body { min-width: 0; }
.team__item h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--light); margin: 0 0 5px; }
.team__item p { color: var(--muted); font-size: 0.92rem; line-height: 1.55; }

/* ---------- Problem cards (image + title) ---------- */
.problem-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF, #F7FAFC);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.problem-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.problem-card__img {
  display: block; width: 100%; height: clamp(150px, 19vw, 200px);
  object-fit: cover; background: #EAF1FB; border-bottom: 1px solid var(--border);
}
.problem-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
  color: var(--light); margin: 0; padding: 20px 24px 24px; text-align: center;
}

/* ---------- The problem: real-incident band ---------- */
.incidents { margin-top: clamp(40px, 6vw, 64px); }
.incidents__label {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #C2402F; margin-bottom: 22px;
}
.incidents__label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #E2574C; }
.incidents__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 980px; margin-inline: auto; }
.incident {
  background: linear-gradient(180deg, #FFFFFF, #F7FAFC);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 26px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.incident:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.incident__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.vbump { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.82rem; font-weight: 600; }
.vbump span { padding: 2px 9px; border-radius: 7px; }
.vbump .v-old { background: #EEF1F4; color: #98A4AF; }
.vbump .v-arrow { background: none; padding: 0; color: #B7C1CB; }
.vbump .v-new { background: var(--accent-soft); color: var(--accent-ink); }
.incident__date { font-size: 0.78rem; color: var(--muted-2); white-space: nowrap; }
.incident h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--light); margin-bottom: 8px; }
.incident p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.incident p strong { color: var(--text); font-weight: 600; }
@media (max-width: 768px) { .incidents__grid { grid-template-columns: 1fr; } }

/* The problem: incidents as subtle, supplementary quotes (gray double-quote wrap) */
.incidents__quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 48px; }
.incident-quote { display: grid; grid-template-columns: auto 1fr; column-gap: 15px; align-items: start; margin: 0; }
.incident-quote__mark {
  font-family: Georgia, "Times New Roman", serif; font-weight: 700;
  font-size: 3.2rem; line-height: 0.9; color: #B2BDC7;
}
.incident-quote__body { min-width: 0; }
.incident-quote__title {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  line-height: 1.45; color: var(--text); margin: 0 0 5px;
}
.incident-quote__desc { font-size: 0.92rem; line-height: 1.6; color: var(--muted); margin: 0; }
.incident-quote__desc::after {
  content: "\201D"; margin-left: 7px;
  font-family: Georgia, "Times New Roman", serif; font-size: 1.9rem;
  line-height: 0; vertical-align: -0.55em; color: #B2BDC7;
}
.incident-quote__desc strong { color: var(--text); font-weight: 600; }
@media (max-width: 768px) { .incidents__quotes { grid-template-columns: 1fr; gap: 20px; } }

/* Locked-version visual (coded, replaces locked-version.svg) */
.lockviz { display: flex; flex-direction: column; gap: 50px; min-width: 0; max-width: 100%; }
.lockviz__card { display: flex; align-items: center; gap: 16px; min-width: 0; max-width: 100%; padding: 18px 20px; background: var(--panel-solid); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.lockviz__card--locked { border-color: var(--accent-line); box-shadow: var(--shadow-glow); }
.lockviz__icon { flex-shrink: 0; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; }
.lockviz__card--update .lockviz__icon { color: #B26B00; background: rgba(240, 160, 30, 0.14); }
.lockviz__card--locked .lockviz__icon { color: var(--accent-ink); background: var(--accent-soft); }
.lockviz__icon-end { flex-shrink: 0; display: grid; place-items: center; }
.lockviz__card--update .lockviz__icon-end { color: #B26B00; }
.lockviz__card--locked .lockviz__icon-end { color: var(--accent-ink); }
.lockviz__body { flex: 1; min-width: 0; }
.lockviz__row1 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.lockviz__name { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; color: var(--light); }
.lockviz__tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.lockviz__tag--update { color: #B26B00; background: rgba(240, 160, 30, 0.14); }
.lockviz__tag--locked { color: var(--accent-ink); background: var(--accent-soft); }
.lockviz__marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.lockviz__track { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; width: max-content; animation: lockviz-scroll 22s linear infinite; }
.lockviz__ver { flex: none; font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted-2); padding: 3px 9px; border-radius: 7px; background: #EEF1F4; }
.lockviz__arr { flex: none; font-style: normal; font-size: 0.85rem; line-height: 1; color: #B26B00; opacity: 0.55; }
.lockviz__gap { flex: none; width: 72px; }
@keyframes lockviz-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.lockviz__locked { display: flex; align-items: center; gap: 12px; }
.lockviz__version { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600; color: var(--accent-ink); padding: 4px 11px; border-radius: 8px; background: var(--accent-soft); }
.lockviz__locked-label { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; color: var(--accent-ink); display: inline-flex; align-items: center; gap: 7px; }
.lockviz__locked-label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
@media (prefers-reduced-motion: reduce) { .lockviz__track { animation: none; } }

/* ============================================================
   Case scenarios
   ============================================================ */
.case__story { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }
.cases__note { max-width: 660px; margin: 28px auto 0; text-align: center; font-size: 0.8rem; color: var(--muted-2); }

/* ============================================================
   "Also included" strip — secondary add-ons, deliberately light
   ============================================================ */
.addon-strip { list-style: none; margin: 0 auto; padding: 0; max-width: 1000px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 32px; }
.addon-strip li { display: flex; gap: 12px; align-items: flex-start; }
.addon-strip svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.addon-strip strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 3px; }
.addon-strip span { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
@media (max-width: 768px) { .addon-strip { grid-template-columns: 1fr; gap: 18px; } }

/* ============================================================
   Feature card — "Out of the box" (copy + full screenshot, balanced two columns)
   ============================================================ */
.feature-card {
  --fcpad: clamp(30px, 4.5vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(28px, 4.5vw, 64px);
  margin-top: clamp(64px, 10vw, 120px);
  padding: var(--fcpad);
  background: linear-gradient(180deg, #FFFFFF, #F7FAFC);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.feature-card__copy { align-self: center; }
.feature-card__copy h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.18; letter-spacing: -0.02em;
  color: var(--light); margin-bottom: 16px;
}
.feature-card__copy > p { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.1rem); margin-bottom: 24px; max-width: 34em; }
/* Media centred in its column (coded unbox version). */
.feature-card__media { align-self: center; }
.feature-card__media img {
  width: 100%; max-width: 600px; height: auto; margin: 0;
}

/* Out-of-the-box "unboxing" scene — an open box with content bubbles floating out (current) */
.unbox {
  position: relative; width: 100%; max-width: 480px; margin-inline: auto;
  min-height: clamp(480px, 56vw, 560px);
}
.unbox .unbox__box {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 280px; max-width: 84%; height: auto; z-index: 1;
  filter: drop-shadow(0 18px 20px rgba(15,40,65,0.16));
}
.unbox__bubble {
  position: absolute; z-index: 2; transform: translateX(-50%);
  width: 90px; height: 90px; border-radius: 50%;
  display: grid; place-items: center; text-align: center; padding: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.8rem; line-height: 1.2;
  color: var(--accent-ink);
  background: radial-gradient(circle at 33% 27%, #ffffff 0%, #ecf4fc 46%, #d6e7f8 100%);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 16px 30px -14px rgba(15,40,65,0.30), inset 0 -10px 18px rgba(59,158,255,0.10), inset 0 3px 7px #ffffff;
}
.unbox__bubble::before {
  content: ""; position: absolute; top: 11%; left: 19%;
  width: 36%; height: 26%; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.95), rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.unbox__bubble > span { position: relative; z-index: 1; }
.unbox__bubble--featured {
  z-index: 3; width: 112px; height: 112px;
  font-size: 0.9rem; color: #fff;
  background: radial-gradient(circle at 33% 27%, #7cbcff 0%, var(--accent) 46%, var(--accent-2) 100%);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 22px 40px -14px rgba(59,158,255,0.6), inset 0 -14px 24px rgba(12,68,138,0.35), inset 0 3px 8px rgba(255,255,255,0.6);
}
.unbox__bubble--sites      { left: 49%; top: 2%; }
.unbox__bubble--policies   { left: 25%; top: 11%; }
.unbox__bubble--homepage   { left: 73%; top: 16%; }
.unbox__bubble--extensions { left: 40%; top: 27%; }
.unbox__bubble--featured   { left: 58%; top: 35%; }

@media (max-width: 880px) {
  .feature-card { grid-template-columns: 1fr; gap: 30px; }
  .feature-card__media img { max-width: 560px; margin-inline: auto; }
}

/* ------------------------------------------------------------
   ALTERNATIVE (disabled): fixed image asset, flush to the card's
   top/right/bottom edges (no radius/shadow). To switch back:
   comment out the .unbox block above, change the rule above to
   ".feature-card__media { align-self: center; }" -> "stretch",
   swap the HTML to the .unbox-static image, and uncomment below.
   ------------------------------------------------------------
.feature-card__media {
  align-self: stretch;
  margin: calc(-1 * var(--fcpad)) calc(-1 * var(--fcpad)) calc(-1 * var(--fcpad)) 0;
}
.feature-card__media .unbox-static {
  width: 100%; height: 100%; max-width: none; margin: 0; display: block;
  object-fit: cover; object-position: center;
}
@media (max-width: 880px) {
  .feature-card__media { margin: 0 calc(-1 * var(--fcpad)) calc(-1 * var(--fcpad)); }
  .feature-card__media .unbox-static { height: auto; }
}
   ------------------------------------------------------------ */

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(180deg, #FFFFFF, #F7FAFC);
  overflow: hidden; transition: border-color .3s var(--ease);
}
.faq__item[open] { border-color: var(--border-strong); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.12rem); color: var(--light);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex-shrink: 0; width: 9px; height: 9px; margin-right: 3px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__answer { padding: 0 24px 22px; color: var(--muted); font-size: 0.98rem; line-height: 1.65; }
.faq__answer strong { color: var(--text); }

/* ============================================================
   Multi-kernel section
   ============================================================ */
.section--kernels { background: var(--bg-2); overflow: hidden; }
.kernels__bg { position: absolute; inset: 0; z-index: 0; }
.kernels__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.08; object-position: center; }
.section--kernels::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, rgba(244,247,250,0.6) 40%, var(--bg-2) 100%);
}
.kernels__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 0.92fr; gap: 56px; align-items: center; }
.kernels__copy .section__title { text-align: left; }
.kernels__points { margin: 28px 0 34px; display: flex; flex-direction: column; gap: 18px; }
.kernels__points li { display: flex; gap: 14px; align-items: flex-start; }
.kernels__points strong { color: var(--text); font-weight: 600; }
.kernels__points div { color: var(--muted); font-size: 0.98rem; }
.ico--accent { color: var(--accent); flex-shrink: 0; margin-top: 3px; }

/* matrix */
.kernels__matrix { position: relative; }
.matrix {
  background: linear-gradient(180deg, #FFFFFF, #F4F7FA);
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  padding: 10px; box-shadow: var(--shadow); backdrop-filter: blur(6px);
}
.matrix__head, .matrix__row {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; align-items: center;
  gap: 12px; padding: 14px 18px;
}
.matrix__head { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.matrix__row { border-radius: 14px; transition: background .3s; }
.matrix__row + .matrix__row { margin-top: 2px; }
.matrix__row--active { background: var(--accent-soft); border: 1px solid var(--accent-line); }
.matrix__ver { font-family: var(--font-mono); font-size: 1rem; color: var(--light); display: flex; flex-direction: column; gap: 2px; }
.matrix__ver em { font-family: var(--font-body); font-style: normal; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); }
.matrix__row--active .matrix__ver em { color: var(--accent-ink); }
.matrix span:nth-child(2) { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--live { background: var(--accent); box-shadow: 0 0 0 0 rgba(59,158,255,0.6); animation: pulse 2.4s var(--ease) infinite; }
.dot--warn { background: #E7C94F; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(59,158,255,0.5); } 70% { box-shadow: 0 0 0 7px rgba(59,158,255,0); } 100% { box-shadow: 0 0 0 0 rgba(59,158,255,0); } }
.matrix__bar { position: relative; height: 6px; border-radius: 999px; background: rgba(15,40,65,0.08); overflow: hidden; }
.matrix__bar i { position: absolute; inset: 0; width: var(--w); background: linear-gradient(90deg, var(--accent-2), var(--accent)); border-radius: inherit; }
.matrix__note { margin-top: 14px; font-size: 0.78rem; color: var(--muted-2); text-align: center; }

/* ============================================================
   Pipeline steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; list-style: none; margin: 0; padding: 0; }
.step {
  position: relative; padding: 28px 24px; border-radius: var(--radius);
  background: var(--bg-2); border: 1px solid var(--border);
  transition: transform .3s var(--ease), border-color .3s;
}
.step:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.step__num { font-family: var(--font-mono); font-size: 0.95rem; color: var(--accent-ink); letter-spacing: 0.1em; }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--light); margin: 14px 0 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }
.step::before {
  content: ""; position: absolute; top: 50%; right: -10px; width: 18px; height: 1px; background: var(--border-strong);
}
.step:last-child::before { display: none; }

/* code showcase */
.codeshot {
  margin-top: clamp(40px, 6vw, 70px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF, #F7FAFC);
}
.codeshot__media { position: relative; min-height: 320px; }
.codeshot__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.codeshot__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 40%, rgba(255,255,255,0.5) 100%), linear-gradient(0deg, rgba(59,158,255,0.06), transparent 50%); }
.codeshot__body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.codeshot__body h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--light); margin-bottom: 14px; letter-spacing: -0.02em; }
.codeshot__body p { color: var(--muted); }

/* ============================================================
   Platforms
   ============================================================ */
.platform {
  position: relative; padding: 34px 30px; border-radius: var(--radius-lg);
  background: var(--bg-2); border: 1px solid var(--border); text-align: left;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.platform:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.platform--primary { background: linear-gradient(180deg, var(--accent-soft), #FFFFFF); border-color: var(--accent-line); box-shadow: var(--shadow-glow); }
.platform__ico { color: var(--accent); margin-bottom: 18px; }
.platform h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--light); }
.platform__share { font-family: var(--font-mono); font-size: 0.82rem; color: var(--accent-ink); margin: 4px 0 14px; }
.platform p { color: var(--muted); font-size: 0.94rem; }
.badge {
  display: inline-block; margin-top: 20px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 5px 12px; border-radius: 999px; color: var(--muted);
  background: rgba(15,40,65,0.04); border: 1px solid var(--border-strong);
}
.badge--accent { color: #FFFFFF; background: var(--accent-2); border-color: transparent; }

/* ============================================================
   Compare
   ============================================================ */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 980px; margin-inline: auto; }
.compare__col { position: relative; padding: 34px 30px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.compare__col h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; margin-bottom: 22px; }
.compare__col ul { display: flex; flex-direction: column; gap: 14px; }
.compare__col li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; }
.compare__col--them { background: rgba(15,40,65,0.02); }
.compare__col--them h3 { color: var(--muted); }
.compare__col--them li { color: var(--muted-2); }
.compare__col--them .x { color: var(--muted-2); font-weight: 700; flex-shrink: 0; }
.compare__col--us { background: linear-gradient(180deg, var(--accent-soft), #FFFFFF); border-color: var(--accent-line); box-shadow: var(--shadow-glow); }
.compare__col--us h3 { color: var(--light); }
.compare__col--us li { color: var(--text); }
.compare__col--us li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.compare__tag {
  position: absolute; top: -12px; right: 24px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #FFFFFF; background: var(--accent-2); padding: 5px 14px; border-radius: 999px;
}

/* ============================================================
   Why-Verlock comparison table
   ============================================================ */
.compare-block { margin-top: clamp(52px, 8vw, 92px); }
.compare-block:first-child { margin-top: 0; }
.compare-block__head { max-width: 680px; margin: 0 auto clamp(28px, 4vw, 42px); text-align: center; }
.compare-block__head h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.16; letter-spacing: -0.02em; color: var(--light); margin-top: 4px; }
.compare-block__head p { margin-top: 14px; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.08rem); }

.ctable-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-inline: auto; max-width: 940px; }
.ctable { width: 100%; min-width: 660px; border-collapse: separate; border-spacing: 0; }
.ctable th, .ctable td { padding: 15px 16px; text-align: center; vertical-align: middle; border-bottom: 1px solid var(--border); }
.ctable thead th { font-family: var(--font-display); font-weight: 600; font-size: 0.96rem; color: var(--text); white-space: nowrap; border-bottom: 1px solid var(--border-strong); }
.ctable__corner { border-bottom: 1px solid var(--border-strong); }
.ctable tbody th { text-align: left; font-weight: 700; font-size: 0.95rem; color: var(--text); white-space: normal; min-width: 220px; }
.ctable tbody tr:last-child th, .ctable tbody tr:last-child td { border-bottom: none; }

/* highlighted Verlock column */
.ctable .ctable__us { background: var(--accent-soft); }
.ctable thead th.ctable__us { color: var(--accent-ink); font-weight: 700; border-bottom-color: var(--accent-line); border-top-left-radius: 14px; border-top-right-radius: 14px; }
.ctable tbody tr:last-child td.ctable__us { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; }

/* marks */
.mark { display: inline-block; vertical-align: middle; }
.mark--yes { color: var(--accent); }
.mark--no { color: var(--muted-2); opacity: 0.5; }

@media (max-width: 560px) {
  .ctable th, .ctable td { padding: 13px 11px; }
  .ctable tbody th { min-width: 180px; }
}

/* ============================================================
   Contact
   ============================================================ */
.section--contact { overflow: hidden; }
.contact__bg { position: absolute; inset: 0; z-index: 0; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.08; }
.section--contact::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(900px 500px at 50% 120%, rgba(59,158,255,0.16), transparent 60%), linear-gradient(180deg, var(--bg) 0%, rgba(244,247,250,0.85) 100%);
}
.contact__card {
  position: relative; z-index: 1; max-width: 720px; margin-inline: auto; text-align: center;
  padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 56px);
  background: linear-gradient(180deg, #FFFFFF, #F7FAFC);
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); backdrop-filter: blur(10px);
}
.contact__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 3rem); color: var(--light); letter-spacing: -0.025em; }
.contact__sub { margin: 16px auto 32px; color: var(--muted); max-width: 40em; }
.contact__hint { margin-top: 18px; font-size: 0.84rem; color: var(--muted-2); }
.contact__hint a { color: var(--accent-ink); border-bottom: 1px solid var(--accent-line); transition: border-color .2s; }
.contact__hint a:hover { border-color: var(--accent); }
/* widen the card a touch so the two-column form has room */
.section--contact .contact__card { max-width: 760px; }

/* ---------- Lead form ---------- */
.lead-form { text-align: left; margin-top: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.lead-form label,
.field__label { font-size: 0.85rem; font-weight: 600; color: var(--text); font-family: var(--font-display); letter-spacing: 0.01em; }
.lead-form .req { color: var(--accent-ink); }
.lead-form .opt { color: var(--muted-2); font-weight: 500; font-family: var(--font-body); }

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form select,
.lead-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.96rem; color: var(--text);
  background: #FFFFFF; border: 1px solid var(--border-strong);
  border-radius: 12px; padding: 12px 14px; line-height: 1.5;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  -webkit-appearance: none; appearance: none;
}
.lead-form textarea { resize: vertical; min-height: 96px; }
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: var(--muted-2); }
.lead-form select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A6B76' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.lead-form select:invalid,
.lead-form option[value=""] { color: var(--muted-2); }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft); background: #FFFFFF;
}
.lead-form .field--error input,
.lead-form .field--error select,
.lead-form .field--error textarea { border-color: #e36b6b; box-shadow: 0 0 0 3px rgba(227, 107, 107, 0.14); }

/* checkbox row */
.checks { display: flex; flex-wrap: wrap; gap: 10px 22px; padding-top: 4px; }
.check { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; color: var(--muted); cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }
.check:hover { color: var(--text); }

/* honeypot — hidden from humans */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.lead-form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; margin-top: 24px; }
.lead-form__foot .btn { flex-shrink: 0; }
#lfSubmit[disabled] { opacity: 0.6; cursor: progress; transform: none; }

.form-status { font-size: 0.9rem; color: var(--muted); margin: 0; }
.form-status--ok { color: var(--accent-ink); }
.form-status--err { color: #d4524f; }

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .lead-form__foot { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); }
.footer__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px; padding-bottom: 44px; }
.footer__brand p { color: var(--muted); font-size: 0.92rem; margin-top: 16px; max-width: 30em; }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer__nav h4 { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light); margin-bottom: 16px; }
.footer__nav a { display: block; color: var(--muted); font-size: 0.92rem; padding: 5px 0; transition: color .2s; }
.footer__nav a:hover { color: var(--accent-ink); }
.footer__base {
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; align-items: center;
  padding: 26px 24px; margin-top: 0;
  font-size: 0.8rem; color: var(--muted-2);
}
.footer__made { max-width: 48em; }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { gap: clamp(32px, 5vw, 48px); }
  .kernels__inner { grid-template-columns: 1fr; gap: 40px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::before { display: none; }
  .codeshot { grid-template-columns: 1fr; }
  .codeshot__media { min-height: 220px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }

  .team { grid-template-columns: 1fr; }
  .team__media { min-height: 280px; }
  .team__content { padding: clamp(32px, 5vw, 48px); }
}

@media (max-width: 768px) {
  .nav { gap: 10px; }
  .brand { flex-shrink: 0; }
  .nav__links { display: none; }
  .nav__actions { display: flex; margin-left: auto; }
  .nav__actions .btn { width: auto; height: 44px; --pad-y: 0; --pad-x: 14px; font-size: 0.82rem; }
  .nav__toggle { display: flex; flex-shrink: 0; }

  /* mobile dropdown nav */
  .nav__links.open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 72px; left: 0; right: 0; margin: 0;
    padding: 16px 24px 24px;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
  }
  .nav__links.open a { padding: 12px 14px; font-size: 1rem; }

  .grid--3 { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare__col--us { order: -1; }
  .hero__stats { grid-template-columns: 1fr; max-width: 360px; }
  .hero__stats li,
  .hero__stats li:first-child,
  .hero__stats li:last-child { justify-content: flex-start; padding: 13px 0; }
  .hero__stats li + li::before { left: 0; right: 0; top: 0; transform: none; width: auto; height: 1px; }
  .footer__base { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .grid--4 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; }
  .contact__card .btn { width: 100%; }
  .matrix__head, .matrix__row { grid-template-columns: 1.2fr 1fr 0.8fr; padding: 12px 12px; gap: 8px; }
  .matrix__ver { font-size: 0.9rem; }
}

@media (max-width: 340px) {
  .brand { gap: 0; }
  .brand__name { display: none; }
}

/* Larger screens — let it breathe */
@media (min-width: 1440px) { :root { --maxw: 1280px; } }
