/* ==========================================================================
   LotBlast.com — site styles
   Tokens follow the LotBlast Master Design Specification v1.0 (Sept 2026).
   ========================================================================== */

/* ---- Self-hosted Inter (SIL OFL) — no third-party font requests -------- */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/inter-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/inter-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/inter-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/inter-latin-800-normal.woff2") format("woff2"); }

/* ---- Design tokens ------------------------------------------------------ */
:root {
  --lb-orange: #FF6A00;
  --lb-orange-dark: #E85F00;
  --lb-orange-tint: #FFF0E6;
  --lb-midnight: #0B172B;
  --lb-text: #182133;
  --lb-muted: #667085;
  --lb-canvas: #F6F8FB;
  --lb-border: #E7ECF2;
  --lb-success: #16A34A;
  --lb-info: #2F6FED;
  --lb-warning: #F59E0B;
  --lb-danger: #DC4C4C;
  --lb-purple: #7C4DE8;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --control-h: 46px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Layout: the reference mockup is 2048px wide with ~4.15% side margins. */
  --gutter: 4.15vw;
  --site-max: 1600px;
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--lb-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
:focus { outline: none; }
:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid rgba(255, 106, 0, 0.45); outline-offset: 2px; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--lb-midnight); color: #fff; padding: 10px 14px; border-radius: 8px; font-weight: 600; }
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  padding-left: max(20px, var(--gutter));
  padding-right: max(20px, var(--gutter));
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease, border-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn-primary { background: var(--lb-orange); color: #fff; box-shadow: 0 8px 18px rgba(255, 106, 0, 0.28); }
.btn-primary:hover { background: var(--lb-orange-dark); box-shadow: 0 10px 22px rgba(255, 106, 0, 0.34); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary { background: #fff; color: var(--lb-text); border-color: #E1E6EE; box-shadow: 0 4px 14px rgba(11, 23, 43, 0.06); font-weight: 600; }
.btn-secondary:hover { border-color: #CBD3DE; box-shadow: 0 8px 18px rgba(11, 23, 43, 0.10); transform: translateY(-1px); }
.btn-sm { height: 46px; padding: 0 22px; font-size: 16px; }
.btn .arrow { width: 18px; height: 18px; }

/* ---- Header ------------------------------------------------------------- */
.site-header { position: relative; z-index: 5; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; margin: 0 auto; }
.nav-links a {
  font-weight: 500;
  font-size: 16px;
  color: var(--lb-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--lb-orange); }
.nav-links a svg { width: 14px; height: 14px; }
.nav-actions { display: flex; align-items: center; gap: 24px; flex: 0 0 auto; }
.nav-login { font-weight: 600; font-size: 16px; padding: 8px 0; }
.nav-login:hover { color: var(--lb-orange); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--lb-border);
  border-radius: 10px;
  background: #fff;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.mobile-menu { display: none; }

/* ---- Hero --------------------------------------------------------------- */
.hero-wrap { position: relative; overflow: hidden; }

/* Soft orange glow in the top-right corner (two skewed bands + corner glow), as in the mockup. */
.hero-glow { position: absolute; top: 0; right: 0; bottom: 0; left: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255, 106, 0, 0.10) 0, rgba(255, 106, 0, 0) 440px); }
.hero-glow::before, .hero-glow::after {
  content: "";
  position: absolute;
  top: -120px;
  height: 860px;
  transform-origin: top right;
  filter: blur(14px);
  -webkit-filter: blur(14px);
}
.hero-glow::before {
  right: -600px;
  width: 1060px;
  transform: skewX(-27deg);
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.08) 0, rgba(255, 106, 0, 0.08) 200px, rgba(255, 106, 0, 0) 660px);
}
.hero-glow::after {
  right: -800px;
  width: 1105px;
  transform: skewX(-41deg);
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.21) 0, rgba(255, 106, 0, 0.21) 190px, rgba(255, 106, 0, 0) 640px);
}

.hero {
  position: relative;
  z-index: 1;
  padding-top: 52px;
  padding-bottom: 40px;
  min-height: min(556px, 38.6vw);
}
.hero-copy { position: relative; z-index: 2; max-width: 620px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lb-orange-tint);
  color: var(--lb-orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 16px;
  height: 30px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow svg { width: 14px; height: 14px; }
.hero-title {
  font-weight: 800;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--lb-midnight);
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--lb-orange); }
.hero-sub {
  font-size: clamp(17px, 1.32vw, 19px);
  line-height: 1.45;
  color: #6B7A90;
  max-width: 500px;
  margin-bottom: 28px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 26px; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 12px 14px; }
.hero-checks li { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 14px; color: #2E3A4B; white-space: nowrap; }
.check { width: 21px; height: 21px; border-radius: 50%; background: var(--lb-orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.check svg { width: 13px; height: 13px; }

/* The laptop + Chrome-extension composite (image with transparent edges). It bleeds into the
   feature strip below, exactly as in the mockup, so it is absolutely positioned. */
.hero-visual {
  position: absolute;
  top: 0;
  right: -0.9%;
  width: 69.7%;
  z-index: 1;
  pointer-events: none;
}
.hero-visual img { width: 100%; height: auto; }

/* ---- Feature strip ------------------------------------------------------ */
.features { position: relative; z-index: 0; padding-top: 26px; padding-bottom: 36px; }
.features-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.feature { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon { width: 64px; height: 64px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.feature-icon svg { width: 30px; height: 30px; }
.feature-icon.green { background: #E9F8EE; color: #22B14C; }
.feature-icon.orange { background: var(--lb-orange-tint); color: var(--lb-orange); }
.feature-icon.blue { background: #E8F1FE; color: var(--lb-info); }
.feature-icon.purple { background: #F1ECFB; color: var(--lb-purple); }
.feature h3 { font-size: 18px; font-weight: 700; color: var(--lb-midnight); margin-bottom: 4px; letter-spacing: -0.01em; }
.feature p { font-size: 15px; line-height: 1.45; color: var(--lb-muted); }

/* ---- Marketplace / proof bar ------------------------------------------- */
.proof { background: var(--lb-canvas); border-top: 1px solid var(--lb-border); border-bottom: 1px solid var(--lb-border); padding: 26px 0 28px; }
.proof-inner { display: flex; align-items: center; gap: 32px; }
.marketplaces { flex: 1 1 auto; min-width: 0; }
.proof-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lb-muted); margin-bottom: 14px; }
.marketplace-list { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; }
.marketplace-list li { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--lb-midnight); letter-spacing: -0.01em; white-space: nowrap; }
.marketplace-list li small { display: block; font-size: 11px; font-weight: 600; color: var(--lb-muted); letter-spacing: 0; line-height: 1.1; margin-top: 1px; }
.marketplace-list li .more { font-weight: 500; color: var(--lb-muted); }
.mp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lb-orange); flex: 0 0 auto; }
.proof-divider { width: 1px; align-self: stretch; background: var(--lb-border); flex: 0 0 auto; }
.stats { display: flex; align-items: center; gap: 0; flex: 0 0 auto; }
.stat { display: flex; align-items: center; gap: 12px; padding: 0 20px; border-left: 1px solid var(--lb-border); white-space: nowrap; }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat svg { width: 38px; height: 38px; color: var(--lb-orange); flex: 0 0 auto; }
.stat strong { display: block; font-size: 25px; font-weight: 800; color: var(--lb-midnight); line-height: 1.1; letter-spacing: -0.02em; }
.stat span { display: block; font-size: 14px; color: var(--lb-muted); line-height: 1.2; margin-top: 2px; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { padding: 26px 0 34px; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; font-size: 14px; color: var(--lb-muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-links a:hover { color: var(--lb-orange); }

/* ==========================================================================
   Coming-soon page
   ========================================================================== */
.cs-header .nav { height: 64px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--lb-muted); }
.back-link:hover { color: var(--lb-orange); }
.back-link svg { width: 18px; height: 18px; }

.cs-main { position: relative; z-index: 1; padding: 44px 0 70px; }
.cs-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.cs-copy { padding-top: 18px; }
.cs-title { font-weight: 800; font-size: clamp(34px, 3.6vw, 54px); line-height: 1.08; letter-spacing: -0.025em; color: var(--lb-midnight); margin-bottom: 20px; }
.cs-title .accent { color: var(--lb-orange); }
.cs-lead { font-size: clamp(16px, 1.3vw, 19px); color: #6B7A90; line-height: 1.5; margin-bottom: 26px; max-width: 540px; }
.cs-checks { display: grid; gap: 14px; margin-bottom: 30px; }
.cs-checks li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: #2E3A4B; line-height: 1.45; }
.cs-checks .check { margin-top: 1px; }
.cs-note { font-size: 14px; color: var(--lb-muted); }
.cs-preview { margin-top: 34px; border-radius: 14px; overflow: hidden; border: 1px solid var(--lb-border); box-shadow: 0 18px 40px rgba(11, 23, 43, 0.10); background: #fff; }
.cs-preview img { width: 100%; height: auto; }

/* Form card */
.card {
  background: #fff;
  border: 1px solid var(--lb-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(11, 23, 43, 0.10);
  padding: clamp(20px, 2.4vw, 34px);
}
.card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--lb-orange-tint); color: var(--lb-orange); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.card-icon svg { width: 22px; height: 22px; }
.card h2 { font-size: 22px; font-weight: 700; color: var(--lb-midnight); letter-spacing: -0.01em; line-height: 1.2; }
.card-head p { font-size: 14px; color: var(--lb-muted); margin-top: 2px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--lb-text); }
.field label .req { color: var(--lb-orange); }
.input, .select {
  width: 100%;
  height: var(--control-h);
  padding: 0 14px;
  border: 1px solid #D9E0EA;
  border-radius: 10px;
  background: #fff;
  font-size: 16px; /* 16px prevents iOS zoom-on-focus */
  color: var(--lb-text);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input::placeholder { color: #98A2B3; }
.input:focus, .select:focus { border-color: var(--lb-orange); box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.18); }
.select-wrap { position: relative; }
.select-wrap svg { position: absolute; right: 12px; top: 50%; width: 16px; height: 16px; transform: translateY(-50%); pointer-events: none; color: var(--lb-muted); }
.select { padding-right: 38px; }
.select:invalid, .select option[value=""] { color: #98A2B3; }
.field .hint { font-size: 12px; color: var(--lb-muted); }
.field.invalid .input, .field.invalid .select { border-color: var(--lb-danger); box-shadow: 0 0 0 3px rgba(220, 76, 76, 0.15); }
.field-error { display: none; font-size: 12px; color: var(--lb-danger); font-weight: 600; }
.field.invalid .field-error { display: block; }

.consent { grid-column: 1 / -1; display: grid; gap: 12px; margin-top: 4px; padding: 16px; border: 1px solid var(--lb-border); border-radius: 12px; background: var(--lb-canvas); }
.checkbox { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 14px; line-height: 1.45; color: #2E3A4B; }
.checkbox input {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  width: 22px; height: 22px; min-width: 22px; margin: 1px 0 0;
  border: 2px solid #C5CEDA; border-radius: 6px; background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background-color .15s ease, border-color .15s ease;
  position: relative;
}
.checkbox input:checked { background: var(--lb-orange); border-color: var(--lb-orange); }
.checkbox input:checked::after {
  content: "";
  position: absolute;
  left: 6px; top: 2px;
  width: 6px; height: 11px;
  border: solid #fff; border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.checkbox input:focus-visible { outline: 3px solid rgba(255, 106, 0, 0.35); outline-offset: 2px; }
.checkbox.invalid span { color: var(--lb-danger); }
.checkbox.invalid input { border-color: var(--lb-danger); }
.checkbox .tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 2px 7px; border-radius: 999px; margin-right: 6px; vertical-align: 1px; }
.checkbox .tag.req { background: var(--lb-orange-tint); color: var(--lb-orange); }
.checkbox .tag.opt { background: #E8F1FE; color: var(--lb-info); }

.form-actions { grid-column: 1 / -1; display: grid; gap: 12px; margin-top: 4px; }
.form-actions .btn { width: 100%; height: 52px; }
.form-actions .btn[disabled] { opacity: .65; cursor: progress; transform: none; }
.form-fine { font-size: 12px; color: var(--lb-muted); text-align: center; line-height: 1.5; }
.form-status { display: none; grid-column: 1 / -1; padding: 12px 14px; border-radius: 10px; font-size: 14px; font-weight: 600; line-height: 1.45; }
.form-status.error { display: block; background: #FDECEC; color: #A93A3A; border: 1px solid #F5C6C6; }
.form-status ul { list-style: disc; padding-left: 18px; margin-top: 6px; font-weight: 500; }

.hp-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.success { text-align: center; padding: 18px 8px 8px; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: #E9F8EE; color: var(--lb-success); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.success-icon svg { width: 36px; height: 36px; }
.success h2 { font-size: 26px; font-weight: 800; color: var(--lb-midnight); letter-spacing: -0.02em; margin-bottom: 10px; }
.success p { font-size: 16px; color: var(--lb-muted); line-height: 1.5; max-width: 420px; margin: 0 auto 22px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1280px) {
  .hero { padding-top: 46px; }
  .hero-checks li { font-size: 15px; }
  .stat { padding: 0 20px; }
  .stat strong { font-size: 24px; }
  .marketplace-list { gap: 12px 22px; }
}

@media (max-width: 1100px) {
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 15px; }
  .nav-actions { gap: 16px; }
  .proof-inner { flex-wrap: wrap; }
  .proof-divider { display: none; }
  .stats { width: 100%; justify-content: flex-start; padding-top: 18px; border-top: 1px solid var(--lb-border); }
}

/* Tablet & below: stack the hero (copy on top, laptop composite underneath). */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-login { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn { height: 42px; padding: 0 16px; font-size: 15px; }
  .mobile-menu {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    border-top: 1px solid var(--lb-border);
    border-bottom: 1px solid var(--lb-border);
    box-shadow: 0 16px 32px rgba(11, 23, 43, 0.10);
    z-index: 50;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu ul { padding: 8px max(20px, var(--gutter)) 12px; }
  .mobile-menu a { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; font-weight: 600; font-size: 17px; border-bottom: 1px solid var(--lb-border); }
  .mobile-menu li:last-child a { border-bottom: 0; }
  .mobile-menu a svg { width: 16px; height: 16px; color: var(--lb-muted); }

  .hero-glow::before, .hero-glow::after { display: none; }
  .hero-glow { background: radial-gradient(circle at 100% 0%, rgba(255, 106, 0, 0.18) 0, rgba(255, 106, 0, 0) 380px); }
  .hero { min-height: 0; padding-top: 34px; padding-bottom: 0; }
  .hero-copy { max-width: 640px; }
  .hero-title { font-size: clamp(36px, 5.6vw, 46px); }
  .hero-visual { position: relative; top: auto; right: auto; width: 100%; max-width: 760px; margin: 8px auto 0; }
  .features { padding-top: 22px; }
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 20px; }
  .stats { flex-wrap: wrap; gap: 14px 0; }
  .stat { padding: 0 20px; }

  .cs-grid { grid-template-columns: 1fr; }
  .cs-copy { padding-top: 0; }
  .cs-preview { display: none; }
}

@media (max-width: 640px) {
  .nav { height: 60px; gap: 12px; }
  .brand img { height: 30px; }
  .nav-actions { gap: 10px; }
  .nav-actions .btn { height: 40px; padding: 0 12px; font-size: 14px; }
  .nav-toggle { width: 40px; height: 40px; }
  .hero-title { font-size: clamp(34px, 9.6vw, 44px); }
  .hero-sub { font-size: 17px; margin-bottom: 26px; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .hero-checks { gap: 10px 20px; }
  .hero-visual { margin-top: 4px; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-icon { width: 56px; height: 56px; }
  .proof { padding: 22px 0 24px; }
  .stats { flex-direction: column; align-items: stretch; gap: 12px; }
  .stat { border-left: 0; padding: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field.half { grid-column: auto; }
  .cs-main { padding: 28px 0 48px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .nav-actions .btn { display: none; }
  .hero-title { font-size: 32px; }
}

/* Very wide screens: keep the composition anchored inside the max-width container. */
@media (min-width: 1601px) {
  .hero-wrap { max-width: var(--site-max); margin: 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

@media print {
  .hero-glow, .nav-toggle, .mobile-menu { display: none !important; }
}
