/* ===========================================================
   Systech — Design System v2
   Pattern: Enterprise Gateway   Style: Trust & Authority
   Palette + type from ui-ux-pro-max (--design-system)
   Light + Dark full support · WCAG AA/AAA targets
   =========================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Core palette (skill-specified) */
  --color-primary: #1e3a8a;
  --color-primary-700: #1b3477;
  --color-primary-900: #10214f;
  --color-on-primary: #ffffff;
  --color-secondary: #1e40af;
  --color-accent: #b45309;      /* trust gold — CTA only */
  --color-accent-600: #9a4707;
  --color-accent-400: #d97b16;
  --color-background: #f8fafc;
  --color-foreground: #0f172a;
  --color-muted: #e9eef5;
  --color-border: #cbd5e1;
  --color-destructive: #dc2626;
  --color-ring: #1e3a8a;

  /* Trust & Authority extras */
  --trust-color: #1e40af;
  --security-green: #059669;
  --metric-highlight: #f59e0b;
  --star-color: #fbbf24;
  --badge-height: 48px;
  --avatar-size: 64px;
  --logo-height: 40px;

  /* Surfaces */
  --bg: var(--color-background);
  --bg-alt: #eef3f9;
  --surface: #ffffff;
  --surface-2: #f2f6fb;
  --border: var(--color-border);
  --border-soft: #dfe7f0;
  --text: var(--color-foreground);
  --text-2: #475569;
  --text-3: #64748b;
  --on-dark: #e8eefb;
  --on-dark-2: #b6c6e4;
  --on-dark-3: #8aa0c8;

  /* Depth */
  --card-shadow: 0 4px 6px rgba(0, 0, 0, .1);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .07);
  --shadow-md: 0 6px 14px rgba(15, 23, 42, .09), 0 2px 5px rgba(15, 23, 42, .06);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, .16), 0 6px 14px rgba(15, 23, 42, .08);
  --shadow-xl: 0 34px 70px rgba(16, 33, 79, .28);

  /* Type */
  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', system-ui, sans-serif;
  --f-display: clamp(2.35rem, 1.25rem + 3.9vw, 3.95rem);
  --f-h1: clamp(1.95rem, 1.3rem + 2.5vw, 2.9rem);
  --f-h2: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem);
  --f-h3: clamp(1.16rem, 1.06rem + .5vw, 1.35rem);
  --f-lead: clamp(1.03rem, .99rem + .3vw, 1.16rem);
  --f-body: 1rem;
  --f-sm: .905rem;
  --f-xs: .795rem;
  --metric-font-size: clamp(2.1rem, 1.5rem + 2.2vw, 3rem);

  /* Rhythm */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 22px; --r-2xl: 30px; --r-pill: 999px;

  --container: 1400px;       /* standard sections */
  --container-wide: 1660px;  /* full-width bands: hero, trust bar, metrics */
  --container-read: 900px;   /* long-form legal / prose pages */
  --gutter: clamp(20px, 3.2vw, 56px);
  --nav-h: 74px;
  --t-fast: 160ms; --t-mid: 260ms; --t-slow: 420ms;
  --ease: cubic-bezier(.22, .7, .28, 1);

  --z-base: 0; --z-raised: 10; --z-sticky: 40; --z-nav: 100; --z-overlay: 900; --z-modal: 1000;
  color-scheme: light;
}

html[data-theme="dark"] {
  --color-primary: #93b4ff;
  --color-on-primary: #0a142c;
  --color-accent: #e08a2b;
  --color-accent-600: #c9761d;
  --color-accent-400: #f0a44b;
  --trust-color: #7ea6ff;
  --security-green: #34d399;
  --metric-highlight: #fbbf24;

  --bg: #070d1c;
  --bg-alt: #0b1428;
  --surface: #0f1b33;
  --surface-2: #14233f;
  --border: #22355a;
  --border-soft: #1b2c4c;
  --text: #eaf0fb;
  --text-2: #b3c4e0;
  --text-3: #90a3c4;

  --card-shadow: 0 4px 10px rgba(0, 0, 0, .45);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .5);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, .5);
  --shadow-lg: 0 24px 54px rgba(0, 0, 0, .6);
  --shadow-xl: 0 34px 70px rgba(0, 0, 0, .68);
  color-scheme: dark;
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--s-5));
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--f-body);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.16;
  letter-spacing: -.021em;
  color: var(--text);
  margin: 0 0 var(--s-3);
  font-weight: 700;
}
h1 { font-size: var(--f-h1); }
h2 { font-size: var(--f-h2); }
h3 { font-size: var(--f-h3); font-weight: 600; letter-spacing: -.012em; }
p  { margin: 0 0 var(--s-4); color: var(--text-2); }
a  { color: var(--trust-color); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { max-width: 100%; height: auto; display: block; }
ul { margin: 0 0 var(--s-4); padding-left: 1.15rem; color: var(--text-2); }
li { margin-bottom: var(--s-2); }
strong { color: var(--text); font-weight: 700; }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--s-6) 0; }
button, a { cursor: pointer; }

:focus-visible { outline: 3px solid var(--color-ring); outline-offset: 2px; border-radius: 4px; }
html[data-theme="dark"] :focus-visible { outline-color: #93b4ff; }
::selection { background: var(--color-primary); color: #fff; }

.skip-link {
  position: absolute; left: var(--s-4); top: -100px;
  background: var(--color-primary); color: #fff;
  padding: var(--s-3) var(--s-4); border-radius: var(--r-sm);
  z-index: var(--z-modal); transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: var(--s-3); text-decoration: none; }

/* ---------- 3. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
/* Bands that should breathe wider than body content */
.container--wide { max-width: var(--container-wide); }
/* Long-form reading measure, centred rather than pinned left */
.container--read { max-width: var(--container-read); }

.section { padding-block: var(--s-8); }
@media (min-width: 768px) { .section { padding-block: var(--s-9); } }
@media (min-width: 1600px) { .section { padding-block: var(--s-10); } }
.section--tight { padding-block: var(--s-7); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--color-primary-900); color: var(--on-dark); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--on-dark-2); }

.grid { display: grid; gap: var(--s-5); }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.stack > * + * { margin-top: var(--s-4); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-center { max-width: 62ch; margin-inline: auto; }

.sec-head { max-width: 68ch; margin-bottom: var(--s-6); }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { margin-bottom: var(--s-3); }
.sec-head p { font-size: var(--f-lead); margin-bottom: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-head);
  font-size: var(--f-xs); font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--trust-color);
  background: color-mix(in srgb, var(--trust-color) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--trust-color) 26%, transparent);
  padding: 6px var(--s-3); border-radius: var(--r-sm);
  margin-bottom: var(--s-4);
}
.eyebrow svg { color: var(--color-accent); }

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: var(--color-primary);
  --btn-fg: var(--color-on-primary);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: 50px; padding: 0 var(--s-5);
  font-family: var(--font-head); font-size: var(--f-sm); font-weight: 600; line-height: 1;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: var(--r-sm);
  text-decoration: none; white-space: nowrap; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  touch-action: manipulation;
}
.btn:hover { text-decoration: none; box-shadow: var(--shadow-md); transform: translateY(-2px) scale(1.012); }
.btn:active { transform: translateY(0) scale(1); box-shadow: var(--shadow-sm); }

/* Gold CTA — single conversion colour, used sparingly */
.btn--cta { --btn-bg: var(--color-accent); --btn-fg: #fff; }
.btn--cta:hover { --btn-bg: var(--color-accent-600); }
html[data-theme="dark"] .btn--cta { --btn-fg: #17100a; }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--text); border-color: var(--border); box-shadow: none; }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--surface-2); }

.btn--light { --btn-bg: rgba(255,255,255,.08); --btn-fg: #fff; border-color: rgba(255,255,255,.36); }
.btn--light:hover { --btn-bg: rgba(255,255,255,.16); }

.btn--sm { min-height: 42px; padding: 0 var(--s-4); font-size: var(--f-xs); }
.btn--block { width: 100%; }
.btn[aria-disabled="true"], .btn:disabled { opacity: .45; pointer-events: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.btn-row.center { justify-content: center; }

/* ---------- 5. Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: saturate(170%) blur(14px);
  -webkit-backdrop-filter: saturate(170%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.topbar { display: none; background: var(--color-primary-900); color: #c8d6f2; font-size: var(--f-xs); }
@media (min-width: 900px) {
  .topbar { display: block; }
  .topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: var(--s-4); }
}
.topbar a { color: #eaf1ff; }
.topbar-items { display: flex; gap: var(--s-5); align-items: center; }
.topbar-items span, .topbar-items a { display: inline-flex; align-items: center; gap: 7px; }
.topbar-items svg { color: var(--color-accent-400); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); min-height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: var(--s-3); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.08; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; letter-spacing: -.025em; color: var(--text); }
.brand-tag { font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-3); font-weight: 600; }

.nav-links { display: none; }
@media (min-width: 1060px) { .nav-links { display: flex; align-items: center; gap: 2px; } }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 44px; padding: 0 var(--s-3);
  font-family: var(--font-head); font-weight: 500; font-size: var(--f-sm);
  color: var(--text-2); border-radius: var(--r-sm); text-decoration: none;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav-link:hover { color: var(--text); background: var(--surface-2); text-decoration: none; }
.nav-link[aria-current="page"] { color: var(--color-primary); font-weight: 600; background: color-mix(in srgb, var(--color-primary) 9%, transparent); }
html[data-theme="dark"] .nav-link[aria-current="page"] { color: #a9c4ff; }

.nav-actions { display: flex; align-items: center; gap: var(--s-2); }
.nav-cta { display: none; }
@media (min-width: 1060px) { .nav-cta { display: inline-flex; } }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex: none;
  background: transparent; color: var(--text-2);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  cursor: pointer; transition: all var(--t-fast) var(--ease);
}
.icon-btn:hover { color: var(--color-primary); border-color: var(--color-primary); background: var(--surface-2); }
.nav-toggle { display: inline-flex; }
@media (min-width: 1060px) { .nav-toggle { display: none; } }

/* Mega menu */
.has-menu { position: relative; }
.menu-panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, -8px);
  width: min(680px, 78vw); padding: var(--s-4);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast);
  z-index: var(--z-nav);
}
.has-menu:hover .menu-panel, .has-menu:focus-within .menu-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.menu-panel a {
  display: flex; gap: var(--s-3); align-items: flex-start;
  padding: var(--s-3); border-radius: var(--r-sm);
  color: var(--text); font-size: var(--f-sm); font-weight: 600; text-decoration: none;
  transition: background var(--t-fast) var(--ease);
}
.menu-panel a:hover { background: var(--surface-2); text-decoration: none; }
.menu-panel a small { display: block; color: var(--text-3); font-weight: 400; font-size: var(--f-xs); margin-top: 2px; line-height: 1.5; }
.menu-panel .mi {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--color-primary) 10%, transparent); color: var(--color-primary);
}
.menu-panel .mi svg { width: 19px; height: 19px; }
.menu-panel .full { grid-column: 1 / -1; border-top: 1px solid var(--border-soft); margin-top: var(--s-2); padding-top: var(--s-4); }

/* Mobile drawer */
.mobile-nav { display: block; position: fixed; inset: 0; z-index: var(--z-modal); visibility: hidden; pointer-events: none; }
.mobile-nav[data-open="true"] { visibility: visible; pointer-events: auto; }
.mobile-scrim { position: absolute; inset: 0; background: rgba(8, 15, 33, .58); opacity: 0; transition: opacity var(--t-mid) var(--ease); }
.mobile-nav[data-open="true"] .mobile-scrim { opacity: 1; }
.mobile-panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(88vw, 390px); padding: var(--s-4);
  background: var(--surface); border-left: 1px solid var(--border);
  overflow-y: auto; transform: translateX(100%);
  transition: transform var(--t-mid) var(--ease);
  padding-bottom: calc(var(--s-9) + env(safe-area-inset-bottom));
}
.mobile-nav[data-open="true"] .mobile-panel { transform: translateX(0); }
.mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s-4); }
.mobile-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: var(--s-5); }
.mobile-links a {
  display: flex; align-items: center; min-height: 50px; padding: 0 var(--s-3);
  font-family: var(--font-head); font-weight: 500;
  color: var(--text); border-radius: var(--r-sm); text-decoration: none;
}
.mobile-links a:hover { background: var(--surface-2); text-decoration: none; }
.mobile-links a[aria-current="page"] { color: var(--color-primary); background: color-mix(in srgb, var(--color-primary) 10%, transparent); }
.mobile-links .sub { padding-left: var(--s-6); font-size: var(--f-sm); color: var(--text-2); min-height: 46px; }
.mobile-group-label { font-size: var(--f-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); font-weight: 700; padding: var(--s-4) var(--s-3) var(--s-1); }

/* Sticky mobile call bar */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2);
  padding: var(--s-3) var(--s-4) calc(var(--s-3) + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(15, 23, 42, .10);
}
@media (min-width: 1060px) { .mobile-cta { display: none; } }
body { padding-bottom: 82px; }
@media (min-width: 1060px) { body { padding-bottom: 0; } }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(168deg, #0d1b3f 0%, var(--color-primary-900) 46%, #0a1636 100%);
  color: var(--on-dark);
  padding-block: var(--s-8) var(--s-9);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(46% 58% at 14% 6%, rgba(30, 64, 175, .55), transparent 62%),
    radial-gradient(38% 48% at 92% 4%, rgba(180, 83, 9, .26), transparent 60%),
    radial-gradient(60% 55% at 62% 104%, rgba(30, 58, 138, .5), transparent 66%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(72% 62% at 50% 24%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(72% 62% at 50% 24%, #000, transparent 78%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: var(--f-display); margin-bottom: var(--s-4); }
.hero p { color: var(--on-dark-2); font-size: var(--f-lead); }
.hero .eyebrow { color: #cfe0ff; background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.24); }
.hero-grid { display: grid; gap: var(--s-7); align-items: center; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.06fr .94fr; gap: var(--s-8); } }

.hero-points { list-style: none; padding: 0; margin: var(--s-5) 0 var(--s-6); display: grid; gap: var(--s-3); }
.hero-points li { display: flex; gap: var(--s-3); align-items: flex-start; color: var(--on-dark-2); margin: 0; font-size: var(--f-sm); }
.hero-points svg { flex: none; margin-top: 2px; color: var(--security-green); }

/* Hero proof panel */
.proof-panel {
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-2xl); padding: var(--s-5);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-xl);
}
.proof-panel h3 { color: #fff; font-size: 1.06rem; }
.proof-head { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); margin-bottom: var(--s-4); }
.live-dot { display: inline-flex; align-items: center; gap: 7px; font-size: var(--f-xs); color: #b8f0d5; }
/* Static status dot — infinite animation is reserved for loading indicators
   (ux-guidelines: "Continuous Animation", decorative infinite motion distracts). */
.live-dot i { width: 8px; height: 8px; border-radius: 50%; background: var(--security-green); box-shadow: 0 0 0 3px rgba(5, 150, 105, .22); }

/* Button loading spinner — the one place infinite motion is correct */
.btn .spinner {
  width: 17px; height: 17px; flex: none;
  border: 2px solid currentColor; border-right-color: transparent;
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .btn .spinner { animation-duration: 1.6s; } }

.proof-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-3); }
.proof-steps li {
  display: flex; gap: var(--s-3); align-items: flex-start; margin: 0;
  padding: var(--s-3); border-radius: var(--r-md);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
}
.proof-steps b { display: block; color: #fff; font-family: var(--font-head); font-size: var(--f-sm); font-weight: 600; }
.proof-steps span { color: var(--on-dark-3); font-size: var(--f-xs); line-height: 1.55; }
.proof-steps .n {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); color: #fff;
  font-family: var(--font-head); font-size: .74rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.proof-foot { margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid rgba(255,255,255,.13); display: flex; align-items: center; gap: var(--s-3); }
.proof-foot .amt { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.proof-foot small { color: var(--on-dark-3); font-size: var(--f-xs); }

/* Page banner (inner pages) */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #0d1b3f, var(--color-primary-900));
  color: var(--on-dark); padding-block: var(--s-7) var(--s-8);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(48% 130% at 12% 0%, rgba(30,64,175,.55), transparent 62%),
              radial-gradient(42% 130% at 92% 8%, rgba(180,83,9,.2), transparent 62%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: var(--s-3); }
.page-hero p { color: var(--on-dark-2); font-size: var(--f-lead); margin-bottom: 0; max-width: 64ch; }

.crumbs { display: flex; flex-wrap: wrap; gap: var(--s-2); align-items: center; font-size: var(--f-xs); color: var(--on-dark-3); margin-bottom: var(--s-3); }
.crumbs a { color: #cfe0ff; }
.crumbs span[aria-hidden] { opacity: .55; }

/* ---------- 7. Trust bar ---------- */
.trustbar {
  background: var(--surface); border-block: 1px solid var(--border-soft);
  padding-block: var(--s-5);
}
.trustbar-grid { display: grid; gap: var(--s-4); grid-template-columns: repeat(2, 1fr); align-items: center; }
@media (min-width: 900px) { .trustbar-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-5); } }
.trust-item { display: flex; gap: var(--s-3); align-items: center; }
.trust-item svg { flex: none; width: 26px; height: 26px; color: var(--security-green); }
.trust-item b { display: block; font-family: var(--font-head); font-size: var(--f-sm); font-weight: 600; color: var(--text); line-height: 1.3; }
.trust-item span { font-size: var(--f-xs); color: var(--text-3); }

/* Platform logo strip */
.logo-strip { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; }
.plogo {
  display: inline-flex; align-items: center; gap: var(--s-2);
  height: var(--logo-height); padding: 0 var(--s-4);
  border: 1px solid var(--border); border-radius: var(--r-pill);
  background: var(--surface);
  font-family: var(--font-head); font-size: var(--f-sm); font-weight: 600; color: var(--text-2);
  filter: grayscale(1); opacity: .82;
  transition: filter var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.plogo:hover { filter: none; opacity: 1; border-color: var(--color-primary); transform: translateY(-2px); }
.plogo svg { width: 18px; height: 18px; color: var(--color-primary); }

/* ---------- 8. Path selector ("I am a…") ---------- */
.paths { display: grid; gap: var(--s-5); grid-template-columns: 1fr; }
@media (min-width: 860px) { .paths { grid-template-columns: repeat(2, 1fr); } }
.path {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: var(--s-6); border-radius: var(--r-2xl);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--card-shadow); text-decoration: none;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease);
}
.path::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary) 55%, var(--color-accent));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-mid) var(--ease);
}
.path:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--color-primary) 42%, var(--border)); text-decoration: none; }
.path:hover::before { transform: scaleX(1); }
.path h3 { font-size: 1.28rem; }
.path .path-tag { font-size: var(--f-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--color-accent); margin-bottom: var(--s-2); font-family: var(--font-head); }
.path ul { list-style: none; padding: 0; margin: var(--s-4) 0 var(--s-5); display: grid; gap: var(--s-2); }
.path ul li { display: flex; gap: var(--s-2); align-items: flex-start; margin: 0; font-size: var(--f-sm); color: var(--text-2); }
.path ul svg { flex: none; margin-top: 3px; color: var(--color-primary); }
.path .go { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: var(--f-sm); color: var(--color-primary); }
.path:hover .go svg { transform: translateX(4px); }
.path .go svg { transition: transform var(--t-fast) var(--ease); }

/* ---------- 9. Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--s-5);
  box-shadow: var(--card-shadow); height: 100%;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.card--hover:hover { border-color: color-mix(in srgb, var(--color-primary) 45%, var(--border)); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card h3 { margin-bottom: var(--s-2); }
.card p:last-child { margin-bottom: 0; }
.card-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: var(--f-sm); min-height: 44px; }

.ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; flex: none; margin-bottom: var(--s-4);
  border-radius: var(--r-md);
  background: linear-gradient(145deg, color-mix(in srgb, var(--color-primary) 14%, transparent), color-mix(in srgb, var(--color-secondary) 7%, transparent));
  color: var(--color-primary);
  border: 1px solid color-mix(in srgb, var(--color-primary) 22%, transparent);
}
.ico svg { width: 25px; height: 25px; }
.ico--gold { background: linear-gradient(145deg, color-mix(in srgb, var(--color-accent) 16%, transparent), transparent); color: var(--color-accent); border-color: color-mix(in srgb, var(--color-accent) 28%, transparent); }
.ico--green { background: linear-gradient(145deg, color-mix(in srgb, var(--security-green) 16%, transparent), transparent); color: var(--security-green); border-color: color-mix(in srgb, var(--security-green) 28%, transparent); }

.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: var(--s-4);
  border-radius: var(--r-md);
  font-family: var(--font-head); font-weight: 700; font-size: 1.06rem;
  background: var(--color-primary); color: #fff;
  font-variant-numeric: tabular-nums;
}

/* Timeline process */
.timeline { position: relative; display: grid; gap: var(--s-5); }
@media (min-width: 1000px) {
  .timeline { grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
  .timeline::before {
    content: ""; position: absolute; top: 23px; left: 8%; right: 8%; height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    opacity: .3;
  }
}
.timeline .card { position: relative; }

/* ---------- 10. Metrics ---------- */
.metrics { display: grid; gap: var(--s-4); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .metrics { grid-template-columns: repeat(4, 1fr); } }
.metric {
  text-align: center; padding: var(--s-5) var(--s-4);
  border-radius: var(--r-lg); background: var(--surface);
  border: 1px solid var(--border); box-shadow: var(--card-shadow);
}
.section--dark .metric { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.14); box-shadow: none; }
.metric b {
  display: block; font-family: var(--font-head);
  font-size: var(--metric-font-size); font-weight: 700; line-height: 1.06;
  color: var(--color-primary); font-variant-numeric: tabular-nums;
}
.section--dark .metric b { color: #fff; }
.metric b .suf { color: var(--color-accent); }
.section--dark .metric b .suf { color: var(--metric-highlight); }
.metric span { display: block; margin-top: var(--s-2); font-size: var(--f-sm); color: var(--text-2); }
.section--dark .metric span { color: var(--on-dark-2); }

/* Badge grid (guarantees) */
.badges { display: grid; gap: var(--s-3); grid-template-columns: 1fr; }
@media (min-width: 640px) { .badges { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .badges { grid-template-columns: repeat(3, 1fr); } }
.badge {
  display: flex; gap: var(--s-3); align-items: center;
  min-height: calc(var(--badge-height) + var(--s-5));
  padding: var(--s-4); border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--security-green) 45%, var(--border)); }
.badge .bico {
  flex: none; width: var(--badge-height); height: var(--badge-height);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--security-green) 12%, transparent);
  color: var(--security-green);
  border: 1px solid color-mix(in srgb, var(--security-green) 26%, transparent);
}
.badge b { display: block; font-family: var(--font-head); font-size: var(--f-sm); font-weight: 600; color: var(--text); }
.badge span { font-size: var(--f-xs); color: var(--text-3); line-height: 1.5; }

/* ---------- 11. Case study ---------- */
.case {
  display: grid; gap: var(--s-5);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: var(--s-5); box-shadow: var(--card-shadow);
  height: 100%;
}
.case-tag {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-secondary); background: color-mix(in srgb, var(--color-secondary) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-secondary) 24%, transparent);
  padding: 5px var(--s-3); border-radius: var(--r-sm);
}
.case h3 { margin: 0; }
.case p { margin: 0; font-size: var(--f-sm); }
.case-result {
  display: flex; gap: var(--s-5); flex-wrap: wrap;
  padding-top: var(--s-4); border-top: 1px solid var(--border-soft);
}
.case-result div b { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--color-accent); font-variant-numeric: tabular-nums; line-height: 1.1; }
.case-result div span { font-size: var(--f-xs); color: var(--text-3); }

/* ---------- 12. Testimonials ---------- */
.quotes { display: grid; gap: var(--s-5); grid-template-columns: 1fr; }
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  display: flex; flex-direction: column; gap: var(--s-4);
  background: var(--surface); border: 1px solid var(--border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--r-lg); padding: var(--s-5);
  box-shadow: var(--card-shadow); height: 100%;
}
.stars { display: flex; gap: 3px; color: var(--star-color); }
.stars svg { width: 17px; height: 17px; }
.quote blockquote { margin: 0; font-size: var(--f-sm); color: var(--text-2); line-height: 1.72; }
.quote blockquote::before { content: "\201C"; }
.quote blockquote::after { content: "\201D"; }
.quote figcaption { margin-top: auto; display: flex; gap: var(--s-3); align-items: center; }
.avatar {
  flex: none; width: var(--avatar-size); height: var(--avatar-size);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--color-primary), var(--color-secondary));
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.16rem;
}
.quote figcaption b { display: block; font-family: var(--font-head); font-size: var(--f-sm); color: var(--text); }
.quote figcaption span { font-size: var(--f-xs); color: var(--text-3); }
.verified { display: inline-flex; align-items: center; gap: 5px; margin-top: 3px; font-size: var(--f-xs); color: var(--security-green); font-weight: 600; }
.verified svg { width: 14px; height: 14px; }

/* ---------- 13. Pricing ---------- */
.price-grid { display: grid; gap: var(--s-5); align-items: stretch; grid-template-columns: 1fr; }
@media (min-width: 900px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }

.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: var(--s-5);
  box-shadow: var(--card-shadow);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.plan:hover { box-shadow: var(--shadow-md); }
.plan--featured { border: 2px solid var(--color-primary); box-shadow: var(--shadow-lg); }
@media (min-width: 900px) { .plan--featured { transform: translateY(-12px); } .plan--featured:hover { transform: translateY(-16px); } }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-accent); color: #fff;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 6px var(--s-4); border-radius: var(--r-sm); white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.plan h3 { margin-bottom: var(--s-1); }
.plan-term { font-family: var(--font-head); font-size: var(--f-xs); text-transform: uppercase; letter-spacing: .12em; color: var(--text-3); font-weight: 600; }
.plan-price {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.85rem, 1.4rem + 1.5vw, 2.35rem); color: var(--text);
  font-variant-numeric: tabular-nums; margin: var(--s-3) 0 var(--s-1); line-height: 1.1;
}
.plan-price small { font-size: var(--f-sm); font-weight: 400; color: var(--text-3); font-family: var(--font-body); }
.plan-desc { font-size: var(--f-sm); margin-bottom: var(--s-4); }
.plan ul.checks { flex: 1; }

ul.checks { list-style: none; padding: 0; margin: 0 0 var(--s-5); display: grid; gap: var(--s-3); }
ul.checks li { display: flex; gap: var(--s-3); align-items: flex-start; margin: 0; font-size: var(--f-sm); color: var(--text-2); }
ul.checks svg { flex: none; margin-top: 3px; color: var(--security-green); }

.price-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--card-shadow); }
table.price-table { width: 100%; border-collapse: collapse; min-width: 560px; }
table.price-table caption { text-align: left; padding: var(--s-4) var(--s-4) 0; color: var(--text-3); font-size: var(--f-sm); }
table.price-table th, table.price-table td { padding: var(--s-4); text-align: left; border-bottom: 1px solid var(--border-soft); font-size: var(--f-sm); }
table.price-table thead th { background: var(--surface-2); color: var(--text); font-family: var(--font-head); font-weight: 600; }
table.price-table tbody th { font-family: var(--font-head); font-weight: 600; color: var(--text); }
table.price-table td:last-child, table.price-table th:last-child { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
table.price-table tbody tr:hover { background: var(--surface-2); }
table.price-table tr:last-child td { border-bottom: 0; }

.note {
  display: flex; gap: var(--s-3); align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--r-md); padding: var(--s-4); font-size: var(--f-sm); color: var(--text-2);
  box-shadow: var(--card-shadow);
}
.note svg { flex: none; color: var(--color-accent); margin-top: 2px; }
.note p:last-child { margin-bottom: 0; }

/* ---------- 14. Accordion ---------- */
.faq { display: grid; gap: var(--s-3); }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--card-shadow);
  transition: border-color var(--t-fast) var(--ease);
}
.faq details[open] { border-color: color-mix(in srgb, var(--color-primary) 42%, var(--border)); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  min-height: 58px; padding: var(--s-4);
  font-family: var(--font-head); font-weight: 600; color: var(--text); cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--color-primary); }
.faq summary .chev { flex: none; color: var(--text-3); transition: transform var(--t-mid) var(--ease); }
.faq details[open] summary .chev { transform: rotate(180deg); color: var(--color-primary); }
.faq .faq-body { padding: 0 var(--s-4) var(--s-4); }
.faq .faq-body p:last-child, .faq .faq-body ul:last-child { margin-bottom: 0; }

/* ---------- 15. Forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-2xl); padding: var(--s-5); box-shadow: var(--shadow-md); }
@media (min-width: 768px) { .form-card { padding: var(--s-6); } }
.field { margin-bottom: var(--s-4); }
.field label { display: block; font-family: var(--font-head); font-size: var(--f-sm); font-weight: 600; color: var(--text); margin-bottom: 7px; }
.field .req { color: var(--color-destructive); }
.field .hint { display: block; font-size: var(--f-xs); color: var(--text-3); margin-top: 6px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: var(--s-3) var(--s-4);
  font: 400 var(--f-body)/1.55 var(--font-body);
  color: var(--text); background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field textarea { min-height: 138px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 26%, transparent);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--color-destructive); }
.field .err { display: none; align-items: center; gap: 6px; font-size: var(--f-xs); color: var(--color-destructive); margin-top: 6px; font-weight: 600; }
.field .err.show { display: flex; }
html[data-theme="dark"] .field .err { color: #ff9092; }
.form-row { display: grid; gap: 0 var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-status { margin-top: var(--s-4); padding: var(--s-4); border-radius: var(--r-md); font-size: var(--f-sm); display: none; }
.form-status.show { display: flex; gap: var(--s-3); align-items: flex-start; }
.form-status.ok { background: color-mix(in srgb, var(--security-green) 12%, transparent); color: var(--security-green); border: 1px solid color-mix(in srgb, var(--security-green) 36%, transparent); }
.form-status.bad { background: color-mix(in srgb, var(--color-destructive) 10%, transparent); color: var(--color-destructive); border: 1px solid color-mix(in srgb, var(--color-destructive) 36%, transparent); }
html[data-theme="dark"] .form-status.bad { color: #ff9092; }

/* ---------- 16. Info tiles ---------- */
.info-tile { display: flex; gap: var(--s-4); align-items: flex-start; padding: var(--s-4); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--card-shadow); }
.info-tile .ico { margin-bottom: 0; width: 46px; height: 46px; }
.info-tile .ico svg { width: 22px; height: 22px; }
.info-tile h3 { font-size: 1.02rem; margin-bottom: 2px; }
.info-tile p { margin: 0; font-size: var(--f-sm); }

/* ---------- 17. CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary-900), var(--color-secondary));
  color: #fff; border-radius: var(--r-2xl); padding: var(--s-6);
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(46% 130% at 88% 0%, rgba(180,83,9,.34), transparent 62%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c9d8f4; }
@media (min-width: 900px) {
  .cta-band { display: flex; align-items: center; justify-content: space-between; gap: var(--s-6); padding: var(--s-7); }
  .cta-band .cta-copy { max-width: 58ch; }
  .cta-band p:last-child { margin-bottom: 0; }
}

/* ---------- 18. Prose / legal ---------- */
/* Centre the reading column so legal pages don't sit pinned to the left
   edge of the wider container. */
.prose { max-width: 74ch; margin-inline: auto; }
.prose h2 { font-size: clamp(1.3rem, 1.12rem + .8vw, 1.62rem); margin-top: var(--s-7); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--s-5); }
.prose ul { padding-left: 1.25rem; }

/* ---------- 19. Footer ---------- */
.site-footer { background: var(--color-primary-900); color: var(--on-dark-2); padding-block: var(--s-8) var(--s-5); margin-top: var(--s-9); }
html[data-theme="dark"] .site-footer { background: #050b18; border-top: 1px solid var(--border); }
.site-footer h4 { color: #fff; font-family: var(--font-head); font-size: var(--f-xs); letter-spacing: .14em; text-transform: uppercase; margin-bottom: var(--s-4); }
.site-footer a { color: var(--on-dark-2); font-size: var(--f-sm); }
.site-footer a:hover { color: var(--color-accent-400); }
.site-footer p { color: var(--on-dark-3); font-size: var(--f-sm); }
.foot-grid { display: grid; gap: var(--s-6); grid-template-columns: 1fr; }
@media (min-width: 640px) { .foot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--s-7); } }
.foot-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-1); }
.foot-list a { display: inline-flex; min-height: 34px; align-items: center; }
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-tag { color: #7f96bf; }
.foot-contact { display: grid; gap: var(--s-3); }
.foot-contact a, .foot-contact span { display: flex; gap: var(--s-3); align-items: flex-start; color: #d5e2f8; font-size: var(--f-sm); }
.foot-contact svg { flex: none; color: var(--color-accent-400); margin-top: 3px; }
.foot-bottom { margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; gap: var(--s-3); font-size: var(--f-xs); color: #8ba1c6; }
@media (min-width: 768px) { .foot-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.foot-bottom nav { display: flex; flex-wrap: wrap; gap: var(--s-4); }
.foot-bottom a { font-size: var(--f-xs); }

/* ---------- 20. Utilities ---------- */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.text-2 { color: var(--text-2); }
.lead { font-size: var(--f-lead); color: var(--text-2); }
.nowrap { white-space: nowrap; }

.reveal { opacity: 0; transform: translateY(16px); }
.reveal.in { opacity: 1; transform: none; transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .plan--featured { transform: none; }
  .live-dot i { animation: none; }
}

@media print {
  .site-header, .mobile-nav, .mobile-cta, .cta-band, .site-footer { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
}
