/*
Theme Name: DeXpose
Theme URI: https://dexpose.io
Author: DeXpose
Description: Hand-built, dependency-free theme for dexpose.io. One stylesheet, one small script, no page builder.
Version: 1.0.0
Requires PHP: 8.1
Text Domain: dexpose
*/

/* ---------------------------------------------------------------------------
   0. Fonts (self-hosted, swap)
   --------------------------------------------------------------------------- */
@font-face { font-family: "Articulat CF"; src: url("assets/fonts/ArticulatCF-Light.woff2") format("woff2"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Articulat CF"; src: url("assets/fonts/ArticulatCF-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Articulat CF"; src: url("assets/fonts/ArticulatCF-Medium.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Articulat CF"; src: url("assets/fonts/ArticulatCF-DemiBold.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Articulat CF"; src: url("assets/fonts/ArticulatCF-Bold.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Articulat CF"; src: url("assets/fonts/ArticulatCF-ExtraBold.woff2") format("woff2"); font-weight: 800; font-style: normal; font-display: swap; }

/* ---------------------------------------------------------------------------
   1. Tokens
   --------------------------------------------------------------------------- */
:root {
  --bg: #01072a;
  --bg-deep: #010622;
  --bg-ink: #00001b;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: rgba(227, 229, 232, 0.78);
  --text-strong: #ffffff;
  --muted: #9ca3af;
  --blue: #2871e4;
  --blue-hover: #1f5fc4;
  --sky: #279bf3;
  --pink: #e40d75;
  --violet: #8b3dff;
  --green: #22c55e;
  --amber: #f59e0b;
  --font: "Articulat CF", Arial, Helvetica, sans-serif;
  --font-display: "Articulat CF", Arial, Helvetica, sans-serif;
  --container: 1200px;
  --gutter: 24px;
  --radius: 16px;
  --radius-sm: 8px;
  --header-h: 84px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------------------------------------------------------------------------
   2. Reset + base
   --------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 15.5px/1.75 var(--font);
  animation: pageIn 0.6s ease-out both;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--text-strong); text-decoration: none; }
a:hover { color: var(--sky); }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }
strong { color: var(--text-strong); font-weight: 700; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(40, 113, 228, 0.55); color: #fff; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--blue); color: #fff; padding: 10px 14px; border-radius: 6px; }
.skip-link:focus { top: 12px; }

/* Type scale (Elements of Typographic Style, modular 1.25 on 15px) */
h1, h2, h3, h4, h5 { color: var(--text-strong); font-family: var(--font-display); font-weight: 700; line-height: 1.12; margin: 0 0 0.5em; letter-spacing: -0.015em; }
h3, h4, h5 { font-weight: 600; letter-spacing: -0.01em; }
strong, b { font-weight: 700; }
.btn, .nav__link, .mega__link strong, .stat__value, .tile__value, .plan__price, summary, .field label { font-weight: 600; }
h1 { font-size: clamp(2.3rem, 4.6vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.3rem); letter-spacing: -0.015em; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
.display { font-size: clamp(2.6rem, 6vw, 4.2rem); letter-spacing: -0.03em; line-height: 1.05; }
.lead { font-size: 1.15rem; line-height: 1.7; }
.small { font-size: 0.9rem; }
.muted { color: var(--muted); }
.center { text-align: center; }
.center > * { margin-left: auto; margin-right: auto; }
.measure { max-width: 68ch; }
.h-muted { color: rgba(227, 229, 232, 0.45); font-weight: inherit; display: block; }
.eyebrow { color: var(--sky); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 0.9rem; display: block; }
.gradient-text {
  background: linear-gradient(90deg, var(--pink) 0%, var(--violet) 45%, var(--sky) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block;
}
.prose { max-width: 78ch; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul li, .prose ol li { margin-bottom: 0.35em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------------------------------------------------------------------------
   3. Layout primitives
   --------------------------------------------------------------------------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { max-width: 880px; }
.container--wide { max-width: 1320px; }
.section { padding: clamp(64px, 8vw, 110px) 0; position: relative; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--flush-top { padding-top: 0; }
.section--band { background: var(--bg-deep); }
.section--ink { background: var(--bg-ink); }
.section__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head p { font-size: 1.05rem; }
.grid { display: grid; gap: 24px; }
.grid-2 { display: grid; gap: 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { display: grid; gap: 24px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; gap: clamp(32px, 6vw, 80px); grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.split--top { align-items: start; }
.split--wide-text { grid-template-columns: 1.2fr 1fr; }
.split--reverse > :first-child { order: 2; }
.stack > * + * { margin-top: 1rem; }
.cluster { display: flex; flex-wrap: wrap; gap: 12px 16px; align-items: center; }
.frame { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.frame img { width: 100%; transition: transform 0.7s var(--ease); }
.frame:hover img { transform: scale(1.05); }
.glow { position: relative; }
.glow::before {
  content: ""; position: absolute; inset: -20%; z-index: -1; pointer-events: none;
  background: radial-gradient(closest-side, rgba(40, 113, 228, 0.28), transparent 70%);
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .grid-2, .grid-3, .grid-4, .split, .split--wide-text { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .split { gap: 32px; }
}

/* ---------------------------------------------------------------------------
   4. Buttons, links, icons
   --------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.95rem; line-height: 1; white-space: nowrap;
  border: 1px solid transparent; transition: background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-hover); color: #fff; }
.btn--ghost { border-color: var(--line-strong); color: var(--text-strong); background: transparent; }
.btn--ghost:hover { border-color: #fff; color: #fff; background: var(--surface-2); }
.btn--white { background: #fff; color: #05102f; }
.btn--white:hover { background: #e9edf5; color: #05102f; }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: 0.875rem; }
.btn--lg { min-height: 56px; padding: 0 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-busy="true"] { opacity: 0.6; cursor: progress; transform: none; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--text-strong); font-weight: 700; }
.link-arrow .ico { transition: transform 0.18s var(--ease); }
.link-arrow:hover { color: var(--sky); }
.link-arrow:hover .ico { transform: translateX(4px); }
.link-arrow--blue { color: var(--sky); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.04em; }
.ico { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; display: inline-block; vertical-align: -0.15em; }
.ico--fill { fill: currentColor; stroke: none; }
.icon-badge {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; flex: none;
  background: rgba(40, 113, 228, 0.16); color: var(--sky); font-size: 1.35rem;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.card:hover .icon-badge, .feature:hover .icon-badge { transform: translateY(-3px) scale(1.06); background: rgba(40, 113, 228, 0.3); }
.icon-badge--round { border-radius: 50%; background: #fff; color: #05102f; }
.icon-badge--lg { width: 64px; height: 64px; font-size: 1.6rem; }

/* ---------------------------------------------------------------------------
   5. Header + navigation
   --------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  background: rgba(1, 6, 34, 0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header { transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease); }
.site-header.is-scrolled { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35); }
.site-header .container { display: flex; align-items: center; height: 100%; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 1.35rem; letter-spacing: -0.01em; }
.brand img { height: 40px; width: auto; }
@media (max-width: 480px) { .brand img { height: 32px; } }
.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: 8px;
  color: rgba(255, 255, 255, 0.88); font-weight: 700; font-size: 0.95rem; background: none; border: 0;
}
.nav__link:hover, .nav__item.is-open > .nav__link { color: #fff; background: var(--surface-2); }
.nav__link .ico { width: 0.8em; height: 0.8em; opacity: 0.7; transition: transform 0.18s var(--ease); }
.nav__item.is-open > .nav__link .ico { transform: rotate(180deg); }
.nav__cta { margin-left: 12px; }
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 640px; padding: 20px; border-radius: 14px; border: 1px solid var(--line);
  background: #040c33; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  display: grid; grid-template-columns: 1fr 260px; gap: 20px;
  opacity: 0; visibility: hidden; transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0s 0.18s;
}
.mega--single { grid-template-columns: 1fr; min-width: 360px; }
.nav__item.is-open > .mega, .nav__item:focus-within > .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); transition-delay: 0s; }
.mega__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.mega__link { display: block; padding: 12px 14px; border-radius: 10px; }
.mega__link:hover { background: var(--surface-2); color: #fff; }
.mega__link strong { display: block; font-size: 0.98rem; color: #fff; }
.mega__link span { display: block; color: var(--muted); font-size: 0.85rem; line-height: 1.45; margin-top: 2px; }
.mega__promo {
  border-radius: 12px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; gap: 14px;
  background: linear-gradient(160deg, rgba(40, 113, 228, 0.35), rgba(228, 13, 117, 0.18)); border: 1px solid var(--line);
}
.mega__promo strong { color: #fff; font-size: 1.05rem; display: block; margin-bottom: 6px; }
.mega__promo p { font-size: 0.88rem; margin: 0; }
.nav-toggle { display: none; width: 44px; height: 44px; margin-left: auto; color: #fff; place-items: center; border-radius: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: currentColor; position: relative; transition: transform 0.2s var(--ease), background 0.2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 26px; height: 2px; background: currentColor; transition: transform 0.2s var(--ease), top 0.2s; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }
@media (max-width: 1024px) {
  /* No backdrop-filter here: it would turn the header into the containing block of the fixed drawer. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(1, 6, 34, 0.97); }
  .nav-toggle { display: grid; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; background: var(--bg-deep); margin: 0; padding: 12px var(--gutter) 40px;
    flex-direction: column; align-items: stretch; overflow-y: auto; gap: 0;
    transform: translateX(100%); transition: transform 0.25s var(--ease); visibility: hidden;
  }
  .nav-open .nav { transform: none; visibility: visible; }
  .nav-open { overflow: hidden; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { border-bottom: 1px solid var(--line); }
  .nav__link { width: 100%; justify-content: space-between; padding: 16px 4px; font-size: 1.05rem; border-radius: 0; }
  .nav__link:hover, .nav__item.is-open > .nav__link { background: none; }
  .mega {
    position: static; transform: none; min-width: 0; padding: 0 0 12px; border: 0; background: none; box-shadow: none;
    grid-template-columns: 1fr; gap: 12px; display: none; opacity: 1; visibility: visible;
  }
  .nav__item.is-open > .mega, .nav__item:focus-within > .mega { display: grid; transform: none; left: auto; }
  .nav__cta { margin: 20px 0 0; width: 100%; }
}

/* ---------------------------------------------------------------------------
   6. Hero
   --------------------------------------------------------------------------- */
main { padding-top: var(--header-h); }
.hero { position: relative; padding: clamp(80px, 12vw, 150px) 0 clamp(60px, 8vw, 110px); text-align: center; overflow: hidden; }
.hero--rings::before, .hero--rings::after {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 0;
  width: 1500px; height: 1500px; border-radius: 50%;
}
.hero--rings::before {
  background:
    radial-gradient(circle, transparent 0 149px, rgba(94, 120, 255, 0.28) 150px 151px, transparent 152px 279px,
      rgba(94, 120, 255, 0.22) 280px 281px, transparent 282px 419px, rgba(94, 120, 255, 0.16) 420px 421px,
      transparent 422px 569px, rgba(94, 120, 255, 0.12) 570px 571px, transparent 572px 729px, rgba(94, 120, 255, 0.08) 730px 731px, transparent 732px);
}
.hero--rings::after {
  background:
    conic-gradient(from 0deg, transparent 0 4deg, rgba(56, 71, 255, 0.35) 4.6deg, transparent 5.2deg 34deg, rgba(56, 71, 255, 0.3) 34.6deg, transparent 35.2deg 64deg,
      rgba(56, 71, 255, 0.35) 64.6deg, transparent 65.2deg 94deg, rgba(56, 71, 255, 0.3) 94.6deg, transparent 95.2deg 124deg, rgba(56, 71, 255, 0.35) 124.6deg,
      transparent 125.2deg 154deg, rgba(56, 71, 255, 0.3) 154.6deg, transparent 155.2deg 184deg, rgba(56, 71, 255, 0.35) 184.6deg, transparent 185.2deg 214deg,
      rgba(56, 71, 255, 0.3) 214.6deg, transparent 215.2deg 244deg, rgba(56, 71, 255, 0.35) 244.6deg, transparent 245.2deg 274deg, rgba(56, 71, 255, 0.3) 274.6deg,
      transparent 275.2deg 304deg, rgba(56, 71, 255, 0.35) 304.6deg, transparent 305.2deg 334deg, rgba(56, 71, 255, 0.3) 334.6deg, transparent 335.2deg);
  -webkit-mask: radial-gradient(circle, transparent 0 140px, #000 150px 560px, transparent 760px);
  mask: radial-gradient(circle, transparent 0 140px, #000 150px 560px, transparent 760px);
  opacity: 0.7;
}
.hero > .container { position: relative; z-index: 1; }
.hero__title { margin-bottom: 0.4em; }
.hero__rotator { font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-weight: 700; color: rgba(227, 229, 232, 0.7); min-height: 1.6em; margin-bottom: 1.2rem; }
.hero__rotator span { display: inline; }
.hero__rotator::after { content: ""; display: inline-block; width: 2px; height: 1em; background: currentColor; margin-left: 4px; vertical-align: -0.15em; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero__lead { max-width: 820px; margin: 0 auto 2rem; font-size: 1.15rem; }
.hero__media { margin: clamp(48px, 7vw, 90px) auto 0; max-width: 1040px; }
.hero__media img { width: 100%; border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5); transition: transform 0.9s var(--ease); }
.hero__media--tilt { perspective: 1400px; }
.hero__media--tilt img { transform: rotateX(22deg) scale(0.97); transform-origin: 50% 100%; }
.hero__media--tilt.is-in img { transform: rotateX(14deg) scale(0.98); }
.hero__media--tilt:hover img { transform: rotateX(0) scale(1); }
/* Pinned hero: stays put while the next content slides over it (wrap the rest in .pin-after) */
.hero--pin { position: sticky; top: 0; z-index: 0; }
.pin-after { position: relative; z-index: 1; background: var(--bg); }
@media (prefers-reduced-motion: reduce), (max-width: 760px) { .hero--pin { position: relative; } }
.hero--left { text-align: left; }
.hero--left .hero__lead { margin-left: 0; }
.hero--compact { padding-top: clamp(56px, 8vw, 90px); }

/* Domain / email inline forms */
.inline-form { display: flex; max-width: 520px; margin-inline: auto; border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.inline-form input {
  flex: 1; min-width: 0; height: 56px; padding: 0 18px; border: 0; background: #fff; color: #111; font-size: 1rem; outline: none;
}
.inline-form input::placeholder { color: #8b8f99; }
.inline-form .btn { border-radius: 0; height: 56px; }
.inline-form--dark { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-strong); padding: 4px; gap: 4px; }
.inline-form--dark input { background: transparent; color: #fff; height: 48px; }
.inline-form--dark input::placeholder { color: rgba(255, 255, 255, 0.55); }
.inline-form--dark .btn { border-radius: 6px; height: 48px; }
.inline-form--left { margin-left: 0; }
.form-error { color: #ff6b9a; font-size: 0.9rem; margin-top: 8px; min-height: 1.2em; }
.form-error.is-hint { color: rgba(227, 229, 232, 0.65); }

/* ---------------------------------------------------------------------------
   7. Cards, features, lists
   --------------------------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px);
  position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(40, 113, 228, 0.55); box-shadow: 0 26px 50px rgba(0, 0, 0, 0.35); }
.card--art-bg { background-image: var(--art); background-repeat: no-repeat; background-position: right -10% bottom -10%; background-size: 46% auto; }
.card--art-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg-deep) 40%, transparent); pointer-events: none; opacity: 0.6; }
.card--art-bg > * { position: relative; z-index: 1; }
.card > :last-child { margin-bottom: 0; }
.card h3, .card h4 { margin-bottom: 0.2em; }
.card p { margin: 0; }
.card--center { text-align: center; align-items: center; }
.card--accent { border-color: rgba(40, 113, 228, 0.45); background: linear-gradient(180deg, rgba(40, 113, 228, 0.12), var(--surface)); }
.card--art { min-height: 380px; justify-content: flex-end; }
.card--art .card__art { position: absolute; inset: 0; z-index: 0; pointer-events: none; display: flex; align-items: center; justify-content: center; padding: 60px 30px 120px; }
.card--art .card__art img { max-height: 100%; width: auto; opacity: 0.9; }
.card--art > :not(.card__art) { position: relative; z-index: 1; }
.card--art h3 { position: absolute; top: 28px; left: 32px; right: 32px; z-index: 1; margin: 0; }
.card__num { color: var(--sky); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em; }
.card__foot { margin-top: auto; padding-top: 6px; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature h3, .feature h4 { font-size: 1.15rem; margin-bottom: 0.25em; }
.feature p { margin: 0; }
.feature--stack { flex-direction: column; gap: 14px; }
.feature__body > :last-child { margin-bottom: 0; }
.checks { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 10px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks li::before {
  content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: 2px;
  background: rgba(34, 197, 94, 0.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center/12px no-repeat;
}
.checks--white li::before { background-color: rgba(255, 255, 255, 0.1); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E"); }
.arrows { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.arrows li { padding-left: 22px; position: relative; }
.arrows li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 12px; height: 12px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23279bf3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 0.82rem; color: var(--text-strong); background: var(--surface); }
.pill--blue { border-color: rgba(40, 113, 228, 0.5); color: var(--sky); }
.tag { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }

/* Logo strip (marquee) */
.logos { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logos__track { display: flex; gap: 72px; width: max-content; animation: marquee 34s linear infinite; padding: 8px 0; }
.logos__track img { height: 44px; width: auto; opacity: 0.75; filter: brightness(0) invert(1); }
.logos:hover .logos__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logos--static { -webkit-mask: none; mask: none; }
.logos--static .logos__track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
.brand-row { display: flex; flex-wrap: wrap; gap: 20px 48px; justify-content: center; align-items: center; }
.brand-row span { font-weight: 700; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.55); font-size: 0.95rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.stat { border-left: 2px solid rgba(40, 113, 228, 0.6); padding-left: 20px; }
.stat__value { display: block; color: var(--text-strong); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
.stat__label { display: block; color: var(--muted); margin-top: 6px; font-size: 0.95rem; }
.stat--card { border: 1px solid var(--line); border-left-width: 1px; border-radius: 12px; padding: 24px; background: var(--surface); text-align: center; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Steps (true sequences only) */
.steps { counter-reset: step; display: grid; gap: 24px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step { counter-increment: step; border-top: 1px solid var(--line); padding-top: 22px; }
.step::before { content: counter(step, decimal-leading-zero); display: block; color: var(--sky); font-weight: 700; margin-bottom: 10px; letter-spacing: 0.06em; }
.step h3 { font-size: 1.2rem; }
.steps--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step__meta { display: inline-block; margin-top: 10px; font-size: 0.78rem; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; }
@media (max-width: 900px) { .steps, .steps--4 { grid-template-columns: 1fr; } }

/* FAQ (native disclosure) */
.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 56px 18px 22px; color: var(--text-strong); font-weight: 700; font-size: 1.02rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 14px; height: 14px; transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details > div { padding: 0 22px 20px; }
.faq details[open] > div { animation: faqIn 0.4s var(--ease) both; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } }
.faq details { transition: border-color 0.3s; }
.faq details[open], .faq details:hover { border-color: rgba(40, 113, 228, 0.5); }
.faq details > div > :last-child { margin-bottom: 0; }

/* Tabs */
.tabs__nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tabs__nav button { padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line); color: var(--text); font-weight: 700; font-size: 0.9rem; background: var(--surface); }
.tabs__nav button[aria-selected="true"] { background: var(--blue); border-color: var(--blue); color: #fff; }
.tabs__panel[hidden] { display: none; }
.tabs__panel.is-shown { animation: faqIn 0.45s var(--ease) both; }

/* Notification mock (dark web monitoring) */
.notif { display: grid; gap: 12px; }
.notif__item { border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; background: var(--surface); display: grid; gap: 6px; }
.notif__time { color: var(--muted); font-size: 0.8rem; }
.notif__title { color: var(--text-strong); font-weight: 700; }
.notif__title a { color: var(--sky); }
.sev { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; margin-right: 14px; }
.sev::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--muted); }
.sev--high::before { background: var(--pink); }
.sev--medium::before { background: var(--amber); }
.sev--low::before { background: var(--green); }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
.table { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 560px; }
.table th, .table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { color: var(--text-strong); font-weight: 700; background: var(--surface); }
.table tbody tr:last-child td { border-bottom: 0; }
.table td:first-child { color: var(--text-strong); }
.table .yes { color: var(--green); }
.table .part { color: var(--amber); }
.table .no { color: var(--muted); }

/* Quote */
.quote { border-left: 3px solid var(--blue); padding: 6px 0 6px 24px; margin: 0; font-size: 1.15rem; color: var(--text-strong); line-height: 1.6; }
.quote cite { display: block; margin-top: 12px; font-size: 0.9rem; color: var(--muted); font-style: normal; }

/* Pricing */
.plan { display: flex; flex-direction: column; gap: 16px; }
.plan__price { font-size: 2.4rem; color: var(--text-strong); font-weight: 700; letter-spacing: -0.03em; }
.plan__price small { font-size: 0.95rem; color: var(--muted); font-weight: 400; letter-spacing: 0; }

/* CTA band */
.cta-band {
  border-radius: 24px; padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(120% 140% at 50% 0%, rgba(40, 113, 228, 0.35), rgba(1, 6, 34, 0) 60%), var(--bg-deep);
  border: 1px solid var(--line);
}
.cta-band h2 { margin-bottom: 0.2em; }
.cta-band .h-muted { margin-bottom: 1.2rem; }
.cta-band p { max-width: 640px; margin-inline: auto; }
.cta-band .cluster { justify-content: center; margin-top: 1.6rem; }

/* Breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: #fff; }

/* Images used as section art */
.art { display: flex; justify-content: center; }
.art img { max-height: 420px; width: auto; }
.art--bg img { max-height: 260px; opacity: 0.7; transition: transform 0.9s ease, opacity 0.6s; }
.art--bg:hover img { transform: scale(1.4) rotate(180deg); opacity: 1; }
.art--sm img { max-height: 200px; }
.art--icon img { height: 64px; width: auto; }

/* ---------------------------------------------------------------------------
   8. Forms
   --------------------------------------------------------------------------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: grid; gap: 6px; }
.field label { color: var(--text-strong); font-weight: 700; font-size: 0.92rem; }
.field label .req { color: var(--pink); }
.input, .field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 10px 14px; border-radius: var(--radius-sm); border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04); color: #fff; outline: none; transition: border-color 0.15s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.field select option { color: #111; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sky); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.form__note { font-size: 0.85rem; color: var(--muted); }
.form__status { min-height: 1.4em; font-size: 0.95rem; }
.form__status.is-ok { color: var(--green); }
.form__status.is-err { color: #ff6b9a; }
.contact-card .icon-row { display: flex; align-items: center; gap: 16px; }
.contact-card .icon-row + .icon-row { margin-top: 16px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: #fff; }
.socials a:hover { background: var(--surface-2); border-color: #fff; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------------
   9. Free tools (report / email scan)
   --------------------------------------------------------------------------- */
.tool-hero { position: relative; padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 70px); overflow: hidden; }
.tool-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.55;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 1.2px, transparent 1.6px);
  background-size: 14px 14px;
  -webkit-mask: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  mask: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}
.tool-hero > .container { position: relative; z-index: 1; }
.tool-hero h1 { margin-bottom: 0.15em; }
.tool-hero .h-muted { font-size: inherit; }
.live-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 32px; }
.live-stats .stat--card .stat__value { font-size: clamp(1.6rem, 3vw, 2.4rem); font-variant-numeric: tabular-nums; }
@media (max-width: 760px) { .live-stats { grid-template-columns: 1fr; } }
.result { margin-top: 40px; display: grid; gap: 24px; }
.result[hidden] { display: none; }
.result__head { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.severity { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; font-weight: 700; border: 1px solid var(--line-strong); }
.severity::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--muted); }
.severity--critical::before, .severity--high::before { background: var(--pink); }
.severity--medium::before { background: var(--amber); }
.severity--low::before { background: var(--green); }
.tiles { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.tile { border: 1px solid var(--line); border-radius: 12px; padding: 18px; background: var(--surface); }
.tile__label { color: var(--muted); font-size: 0.85rem; display: block; }
.tile__value { color: var(--text-strong); font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
@media (max-width: 1024px) { .tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 640px) { .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.bars { display: grid; gap: 10px; }
.bar { display: grid; grid-template-columns: 140px 1fr 70px; gap: 12px; align-items: center; font-size: 0.9rem; }
.bar__label { color: var(--text-strong); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bar__track { display: block; height: 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.bar__fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--sky)); width: 0; transition: width 0.6s var(--ease); }
.bar--pink .bar__fill { background: linear-gradient(90deg, var(--pink), #ff6b9a); }
.bar__value { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }
.timeline { display: flex; gap: 6px; align-items: flex-end; justify-content: center; height: 160px; padding-top: 10px; }
.timeline__col { flex: 1; max-width: 56px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; min-width: 0; }
.timeline__bar { display: block; width: 100%; border-radius: 4px 4px 0 0; background: var(--blue); min-height: 2px; }
.timeline__bar--pink { background: var(--pink); }
.timeline__lbl { font-size: 0.7rem; color: var(--muted); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.result .table { min-width: 0; }
.spinner { width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.3); border-top-color: #fff; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.email-result { display: grid; gap: 14px; }
.email-result__badge { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); font-weight: 700; color: #fff; }
.email-result__badge.is-bad { border-color: rgba(228, 13, 117, 0.6); }
.email-result__badge.is-ok { border-color: rgba(34, 197, 94, 0.6); }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; background: rgba(0, 0, 27, 0.75); backdrop-filter: blur(6px); }
.modal[hidden] { display: none; }
.modal__box { width: min(100%, 520px); background: #040c33; border: 1px solid var(--line); border-radius: 16px; padding: 28px; position: relative; }
.modal__close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 8px; color: #fff; display: grid; place-items: center; }
.modal__close:hover { background: var(--surface-2); }

/* ---------------------------------------------------------------------------
   10. Blog / archives
   --------------------------------------------------------------------------- */
.post-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.post-card { display: flex; flex-direction: column; gap: 12px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.post-card__img { aspect-ratio: 16/9; background: var(--bg-deep); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.post-card:hover img { transform: scale(1.06); }
.post-card__body { padding: 0 22px 22px; display: grid; gap: 8px; }
.post-card h3 { font-size: 1.1rem; margin: 0; }
.post-card time { color: var(--muted); font-size: 0.85rem; }
.empty { border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: clamp(40px, 6vw, 80px); text-align: center; }
.empty h2 { font-size: 1.5rem; }
.entry { max-width: 780px; margin-inline: auto; }
.entry img { border-radius: 12px; }
.entry__meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.entry p, .entry li { font-size: 1.05rem; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination .page-numbers { padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px; }
.pagination .current { background: var(--blue); border-color: var(--blue); color: #fff; }
@media (max-width: 1024px) { .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }
.page-title { padding: clamp(48px, 7vw, 80px) 0 clamp(24px, 4vw, 40px); }

/* ---------------------------------------------------------------------------
   11. Footer
   --------------------------------------------------------------------------- */
.site-footer { background: var(--bg-ink); border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 88px) 0 32px; margin-top: clamp(40px, 6vw, 80px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { font-size: 1.15rem; margin-bottom: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer li a { color: var(--text); }
.site-footer li a:hover { color: #fff; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; color: var(--muted); font-size: 0.9rem; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom__powered a { color: #fff; }
.footer-bottom__powered a:hover { color: var(--sky); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------------
   12. Page-specific helpers
   --------------------------------------------------------------------------- */
.services-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px; }
.services-nav a { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); font-size: 0.88rem; color: var(--text); }
.services-nav a:hover { border-color: var(--sky); color: #fff; }
.band-image { position: relative; border-radius: 24px; overflow: hidden; min-height: 420px; display: flex; align-items: center; border: 1px solid var(--line); }
.band-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; transition: transform 1.2s var(--ease), opacity 0.6s; }
.band-image:hover img { transform: scale(1.06); opacity: 0.45; }
.band-image > .band-image__content { position: relative; z-index: 1; padding: clamp(32px, 5vw, 64px); max-width: 640px; }
.big-quote { text-align: center; padding: clamp(48px, 8vw, 96px) 0; }
.big-quote h3 { font-size: clamp(1.6rem, 3.4vw, 2.6rem); max-width: 900px; margin-inline: auto; }
.big-quote p { color: var(--muted); }
.layer-tag { display: inline-block; font-size: 0.78rem; letter-spacing: 0.12em; color: var(--sky); font-weight: 700; margin-bottom: 12px; }
.alt-rows > .split + .split { margin-top: clamp(48px, 7vw, 96px); }

/* ---------------------------------------------------------------------------
   12b. Motion: reveals (afl/afr/afb/afc), slider
   --------------------------------------------------------------------------- */
.rv { opacity: 0; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: calc(0.15s + var(--i, 0) * 0.09s); will-change: opacity, transform; }
.rv--l { transform: translateX(-5rem); }
.rv--r { transform: translateX(5rem); }
.rv--u { transform: translateY(3rem); }
.rv--s { transform: scale(0.85); }
.rv.is-in { opacity: 1; transform: none; }
.hero .rv { transition-delay: calc(0.1s + var(--i, 0) * 0.14s); }
@keyframes pageIn { from { opacity: 0; } }

.slider { position: relative; }
.slider__nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.slider__nav button { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); color: var(--text); font-size: 0.88rem; background: var(--surface); transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s; }
.slider__nav button b { color: var(--sky); margin-right: 8px; font-weight: 400; }
.slider__nav button:hover { border-color: var(--line-strong); color: #fff; transform: translateY(-1px); }
.slider__nav button[aria-selected="true"] { background: var(--blue); border-color: var(--blue); color: #fff; }
.slider__nav button[aria-selected="true"] b { color: #fff; opacity: 0.8; }
.slider__viewport { overflow: hidden; padding: 8px 0 12px; margin: -8px 0 -12px; }
.slider__track { display: flex; gap: 24px; transition: transform 0.7s var(--ease); }
.slider__track > * { flex: 0 0 calc((100% - 48px) / 3); }
.slider__arrows { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.slider__arrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); color: #fff; display: grid; place-items: center; transition: background 0.3s, transform 0.3s; }
.slider__arrow:hover { background: var(--surface-2); transform: scale(1.06); }
.slider__arrow .ico { width: 1.1em; height: 1.1em; }
@media (max-width: 1024px) { .slider__track > * { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 700px) { .slider__track > * { flex-basis: 100%; } }

/* ---------------------------------------------------------------------------
   13. Motion + print
   --------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
  .hero__rotator::after { display: none; }
  .rv { opacity: 1; transform: none; }
  .hero__media--tilt img { transform: none; }
  .logos__track { animation: none; }
}
@media print {
  .site-header, .site-footer, .nav-toggle, .cta-band { display: none; }
  body { background: #fff; color: #111; }
  main { padding-top: 0; }
}

/* Home additions */
.card__rule { width: 180px; height: auto; margin: 2px 0 8px; }
.trio { display: flex; justify-content: center; gap: 24px; margin: 0 auto 32px; }
.trio img { width: clamp(90px, 14vw, 160px); height: auto; border-radius: 10px; }
.hero__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.section--what::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.35;
  background: repeating-linear-gradient(-4deg, transparent 0 60px, rgba(56, 71, 255, 0.18) 60px 61px);
  -webkit-mask: linear-gradient(90deg, #000, transparent 70%); mask: linear-gradient(90deg, #000, transparent 70%);
}
