/* AZUtils — custom theme layer on top of Bootstrap 5.
   Mobile-first. Keep this lean; it ships on every page. */

:root {
  --az-primary: #2563EB;          /* blue-600 */
  --az-primary-rgb: 37, 99, 235;
  --az-primary-dark: #1D4ED8;     /* blue-700 */
  --az-primary-darker: #1E40AF;   /* blue-800 */
  --az-secondary: #0F172A;        /* slate-900 */
  --az-secondary-rgb: 15, 23, 42;
  --az-bg: #F8FAFC;               /* slate-50  */
  --az-surface: #FFFFFF;
  --az-text: #1E293B;             /* slate-800 */
  --az-muted: #64748B;            /* slate-500 */
  --az-border: #E2E8F0;           /* slate-200 */
  --az-radius: .85rem;
  --az-radius-lg: 1.25rem;

  /* Elevation scale — soft, layered, "SaaS" shadows */
  --az-shadow-sm: 0 1px 2px rgba(var(--az-secondary-rgb), .06), 0 1px 3px rgba(var(--az-secondary-rgb), .08);
  --az-shadow:    0 4px 6px -1px rgba(var(--az-secondary-rgb), .07), 0 2px 4px -2px rgba(var(--az-secondary-rgb), .06);
  --az-shadow-md: 0 10px 20px -8px rgba(var(--az-secondary-rgb), .12), 0 4px 8px -4px rgba(var(--az-secondary-rgb), .06);
  --az-shadow-lg: 0 24px 48px -12px rgba(var(--az-secondary-rgb), .18);

  --bs-primary: var(--az-primary);
  --bs-primary-rgb: var(--az-primary-rgb);
  --bs-border-color: var(--az-border);
  --bs-body-color: var(--az-text);
  --bs-link-color-rgb: var(--az-primary-rgb);
  --bs-link-hover-color-rgb: 29, 78, 216;
}

/* Bootstrap uses CSS vars for theme colors in v5.3 */
.btn-primary {
  --bs-btn-bg: var(--az-primary);
  --bs-btn-border-color: var(--az-primary);
  --bs-btn-hover-bg: var(--az-primary-dark);
  --bs-btn-hover-border-color: var(--az-primary-dark);
  --bs-btn-active-bg: var(--az-primary-darker);
  --bs-btn-active-border-color: var(--az-primary-darker);
  --bs-btn-box-shadow: 0 6px 14px -4px rgba(var(--az-primary-rgb), .5);
}
.btn-outline-primary {
  --bs-btn-color: var(--az-primary);
  --bs-btn-border-color: var(--az-primary);
  --bs-btn-hover-bg: var(--az-primary);
  --bs-btn-hover-border-color: var(--az-primary);
  --bs-btn-active-bg: var(--az-primary-darker);
}
.btn { --bs-btn-font-weight: 600; border-radius: .65rem; transition: transform .12s ease, box-shadow .15s ease, background-color .15s ease; }
.btn-lg { border-radius: .8rem; }
.btn-primary:hover { box-shadow: var(--az-btn-shadow, 0 8px 18px -6px rgba(var(--az-primary-rgb), .55)); transform: translateY(-1px); }
.text-primary { color: var(--az-primary) !important; }
a { color: var(--az-primary); }

body {
  background-color: var(--az-bg);
  color: var(--az-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Accessibility: visible focus + skip link */
.skip-link {
  position: absolute; top: .5rem; left: .5rem; z-index: 1080;
  background: #fff; padding: .5rem .9rem; border-radius: .5rem;
  box-shadow: var(--az-shadow-md);
}
:focus-visible { outline: 3px solid rgba(var(--az-primary-rgb), .5); outline-offset: 2px; }

/* Section rhythm helper + an extra spacing step (Bootstrap stops at 5) */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.py-6 { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 992px) { .py-lg-6 { padding-top: 5rem; padding-bottom: 5rem; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--az-primary);
}

/* ===================================================================
   NAVBAR
   =================================================================== */
.az-navbar {
  background-color: var(--az-surface);
  border-bottom: 1px solid var(--az-border);
  transition: box-shadow .2s ease, border-color .2s ease;
  z-index: 1030;
}
.az-navbar.is-scrolled {
  box-shadow: var(--az-shadow-md);
  border-bottom-color: transparent;
}
.az-navbar .navbar-brand { font-weight: 800; letter-spacing: -.02em; color: var(--az-secondary); }
/* CSS brand mark — blue "AZ" badge + wordmark (works on light & dark) */
.az-logo-badge {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 2.1rem; height: 2.1rem; border-radius: .55rem;
  background: var(--az-primary); color: #fff;
  font-weight: 800; font-size: .9rem; letter-spacing: .03em;
}
.az-brand-name { font-size: 1.15rem; line-height: 1; color: var(--az-secondary); }
.az-brand-name .text-primary { color: var(--az-primary) !important; }
.az-brand-tagline { font-size: .68rem; letter-spacing: .01em; }

.az-navbar .navbar-nav .nav-link {
  font-weight: 600;
  color: var(--az-text);
  border-radius: .55rem;
  padding-inline: .75rem;
  position: relative;
  transition: color .15s ease, background-color .15s ease;
}
.az-navbar .navbar-nav .nav-link:hover { color: var(--az-primary); }
.az-navbar .navbar-nav .nav-link.active { color: var(--az-primary); }
@media (min-width: 992px) {
  .az-navbar .navbar-nav .nav-link.active::after {
    content: ""; position: absolute; left: .75rem; right: .75rem; bottom: -.1rem; height: 2px;
    border-radius: 2px; background: var(--az-primary);
  }
}
@media (max-width: 991.98px) {
  .az-navbar .navbar-nav .nav-link.active { background: rgba(var(--az-primary-rgb), .08); }
  .az-navbar .navbar-collapse { padding-top: .75rem; }
  .az-navbar__actions { margin-top: .75rem; }
}
.az-navbar .navbar-toggler { border: 0; padding: .25rem .4rem; }
.az-navbar .navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(var(--az-primary-rgb), .25); }

/* ===================================================================
   GLOBAL SEARCH (combobox)
   =================================================================== */
.az-search { position: relative; }
.az-search__group {
  display: flex; align-items: center; gap: .5rem;
  background: var(--az-surface);
  border: 1px solid var(--az-border);
  border-radius: .7rem;
  padding: .35rem .35rem .35rem .75rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.az-search__group:focus-within {
  border-color: var(--az-primary);
  box-shadow: 0 0 0 .2rem rgba(var(--az-primary-rgb), .15);
}
.az-search__icon { color: var(--az-muted); font-size: 1rem; flex: 0 0 auto; }
.az-search__input {
  border: 0; outline: 0; background: transparent;
  flex: 1 1 auto; min-width: 0; padding: .25rem 0; font-size: .95rem;
  color: var(--az-text);
}
.az-search__input::placeholder { color: var(--az-muted); }
.az-search__kbd {
  flex: 0 0 auto; font-size: .7rem; color: var(--az-muted);
  border: 1px solid var(--az-border); border-radius: .4rem;
  padding: .1rem .4rem; background: var(--az-bg);
}
.az-search--lg .az-search__group { padding: .55rem .55rem .55rem 1rem; border-radius: .85rem; box-shadow: var(--az-shadow); }
.az-search--lg .az-search__input { font-size: 1.05rem; }
.az-search--lg .az-search__icon { font-size: 1.2rem; }

/* Results dropdown panel */
.az-search__panel {
  position: absolute; top: calc(100% + .5rem); left: 0; right: 0; z-index: 1050;
  background: var(--az-surface);
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius);
  box-shadow: var(--az-shadow-lg);
  padding: .4rem;
  max-height: min(70vh, 26rem);
  overflow-y: auto;
  display: none;
}
.az-search__panel.is-open { display: block; }
.az-search__group-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--az-muted); padding: .5rem .65rem .25rem;
}
.az-search__item {
  display: flex; align-items: center; gap: .75rem;
  padding: .55rem .65rem; border-radius: .6rem;
  text-decoration: none; color: var(--az-text);
  cursor: pointer;
}
.az-search__item:hover,
.az-search__item.is-active { background: rgba(var(--az-primary-rgb), .08); }
.az-search__item-icon {
  flex: 0 0 auto; width: 2.1rem; height: 2.1rem; border-radius: .5rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(var(--az-primary-rgb), .1); color: var(--az-primary); font-size: 1rem;
}
.az-search__item-body { min-width: 0; }
.az-search__item-title { font-weight: 600; font-size: .92rem; line-height: 1.2; }
.az-search__item-title mark { background: rgba(var(--az-primary-rgb), .18); color: inherit; padding: 0 .1em; border-radius: .2rem; }
.az-search__item-meta { font-size: .78rem; color: var(--az-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.az-search__item-cat { flex: 0 0 auto; font-size: .72rem; color: var(--az-muted); }
.az-search__state { padding: 1.25rem .75rem; text-align: center; color: var(--az-muted); font-size: .9rem; }
.az-search__state i { font-size: 1.5rem; display: block; margin-bottom: .35rem; opacity: .6; }
.az-search__footer {
  border-top: 1px solid var(--az-border); margin-top: .35rem; padding: .55rem .65rem .25rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .76rem; color: var(--az-muted);
}
.az-search__footer kbd { font-size: .7rem; background: var(--az-bg); border: 1px solid var(--az-border); border-radius: .3rem; padding: 0 .35rem; color: var(--az-muted); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(48rem 26rem at 85% -10%, rgba(var(--az-primary-rgb), .14), transparent 70%),
    radial-gradient(40rem 24rem at 0% 110%, rgba(99, 102, 241, .10), transparent 70%),
    linear-gradient(180deg, #fbfdff, var(--az-bg));
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--az-surface); border: 1px solid var(--az-border);
  border-radius: 2rem; padding: .35rem .85rem; font-size: .82rem; font-weight: 600;
  color: var(--az-text); box-shadow: var(--az-shadow-sm);
}
.hero__title { font-weight: 800; letter-spacing: -.025em; line-height: 1.08; }
.hero__lead { font-size: 1.15rem; color: var(--az-muted); }
.hero__trust { display: flex; flex-wrap: wrap; gap: .35rem 1.25rem; }
.hero__trust li { display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; font-weight: 500; color: var(--az-text); }
.hero__trust i { color: #16A34A; }

/* Hero visual: icon grid + floating cards */
.hero-visual { position: relative; min-height: 22rem; }
.hero-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  position: relative; z-index: 1;
}
.hero-tile {
  display: block; text-decoration: none; color: inherit;
  background: var(--az-surface); border: 1px solid var(--az-border); border-radius: var(--az-radius);
  padding: 1.4rem 1.25rem; box-shadow: var(--az-shadow); text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.hero-tile:nth-child(2) { transform: translateY(1.5rem); }
.hero-tile:nth-child(3) { transform: translateY(-1.5rem); }
/* Hover lift that preserves each tile's staggered offset */
.hero-tile:hover { box-shadow: var(--az-shadow-lg); border-color: rgba(var(--az-primary-rgb), .35); }
.hero-tile:nth-child(1):hover,
.hero-tile:nth-child(4):hover { transform: translateY(-5px); }
.hero-tile:nth-child(2):hover { transform: translateY(calc(1.5rem - 5px)); }
.hero-tile:nth-child(3):hover { transform: translateY(calc(-1.5rem - 5px)); }
.hero-tile__icon {
  width: 3rem; height: 3rem; border-radius: .8rem; display: inline-flex;
  align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: .85rem;
}
.hero-tile__title { font-weight: 700; font-size: .98rem; margin-bottom: .15rem; color: var(--az-secondary); }
.hero-tile__meta { font-size: .78rem; color: var(--az-muted); }

/* Tinted icon variants reused across hero/category/why sections */
.tint-img    { background: rgba(236, 72, 153, .12); color: #DB2777; }
.tint-text   { background: rgba(234, 88, 12, .12);  color: #EA580C; }
.tint-dev    { background: rgba(37, 99, 235, .12);  color: #2563EB; }
.tint-calc   { background: rgba(22, 163, 74, .12);  color: #16A34A; }
.tint-violet { background: rgba(124, 58, 237, .12); color: #7C3AED; }
.tint-cyan   { background: rgba(8, 145, 178, .12);  color: #0891B2; }

/* Floating cards */
.hero-float {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: .6rem;
  background: var(--az-surface); border: 1px solid var(--az-border);
  border-radius: .8rem; padding: .6rem .8rem; box-shadow: var(--az-shadow-lg);
  font-size: .82rem; font-weight: 600; color: var(--az-secondary);
  animation: az-float 5s ease-in-out infinite;
}
.hero-float i { font-size: 1.1rem; }
.hero-float--a { top: -1rem; right: -.5rem; animation-delay: 0s; }
.hero-float--b { bottom: 1rem; left: -1.5rem; animation-delay: 1.5s; }
.hero-float__check { color: #16A34A; }
@keyframes az-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ===================================================================
   STATS
   =================================================================== */
.stat-card {
  background: var(--az-surface); border: 1px solid var(--az-border); border-radius: var(--az-radius);
  padding: 1.5rem 1rem; text-align: center; height: 100%;
  transition: transform .15s ease, box-shadow .15s ease;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--az-shadow-md); }
.stat-card__num { font-size: clamp(1.9rem, 4vw, 2.5rem); font-weight: 800; line-height: 1; color: var(--az-secondary); letter-spacing: -.02em; }
.stat-card__num .text-primary { color: var(--az-primary) !important; }
.stat-card__label { font-size: .9rem; color: var(--az-muted); margin-top: .4rem; }

/* ===================================================================
   SHARED CARD HOVER
   =================================================================== */
.card { border-radius: var(--az-radius); }
.tool-chip, .category-card, .feature-card, .tool-card, .blog-card, .why-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tool-chip:hover, .blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--az-shadow-md) !important;
}

/* Icon tiles (legacy + shared) */
.tool-chip__icon, .category-card__icon, .feature-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(var(--az-primary-rgb), .1);
  color: var(--az-primary);
  border-radius: .75rem;
}
.tool-chip__icon { width: 2.5rem; height: 2.5rem; font-size: 1.15rem; }
.category-card__icon, .feature-card__icon { width: 3.25rem; height: 3.25rem; font-size: 1.5rem; }

/* ===================================================================
   CATEGORY CARDS (homepage)
   =================================================================== */
.category-card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  background: var(--az-surface); border: 1px solid var(--az-border); border-radius: var(--az-radius-lg);
  padding: 1.5rem; overflow: hidden;
}
.category-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--az-primary), #6366F1); opacity: 0; transition: opacity .2s ease;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--az-shadow-lg); border-color: transparent; }
.category-card:hover::before { opacity: 1; }
.category-card__head {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem; display: inline-flex;
  align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1rem;
}
.category-card__count {
  display: inline-flex; align-items: center; gap: .35rem; align-self: flex-start;
  font-size: .76rem; font-weight: 600; color: var(--az-primary);
  background: rgba(var(--az-primary-rgb), .1); border-radius: 2rem; padding: .2rem .6rem; margin-bottom: .75rem;
}
.category-card__cta {
  margin-top: auto; font-weight: 600; font-size: .9rem; color: var(--az-primary);
  display: inline-flex; align-items: center; gap: .3rem;
}
.category-card__cta i { transition: transform .18s ease; }
.category-card:hover .category-card__cta i { transform: translateX(.25rem); }

/* ===================================================================
   POPULAR / TOOL CARDS (SaaS)
   =================================================================== */
.tool-card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  background: var(--az-surface); border: 1px solid var(--az-border); border-radius: var(--az-radius);
  padding: 1.4rem;
}
.tool-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, var(--az-primary), #6366F1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--az-shadow-lg); }
.tool-card:hover::after { opacity: 1; }
.tool-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; margin-bottom: 1rem; }
.tool-card__icon {
  width: 3rem; height: 3rem; border-radius: .8rem; display: inline-flex;
  align-items: center; justify-content: center; font-size: 1.4rem; flex: 0 0 auto;
}
.tool-card__badge { font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.tool-card__cat {
  font-size: .72rem; font-weight: 600; color: var(--az-muted);
  background: var(--az-bg); border: 1px solid var(--az-border); border-radius: 2rem; padding: .15rem .6rem;
}
.tool-card__title { font-weight: 700; font-size: 1.05rem; margin-bottom: .35rem; color: var(--az-secondary); }
.tool-card__desc { font-size: .88rem; color: var(--az-muted); margin-bottom: 1.1rem; }
.tool-card__btn { margin-top: auto; }
.tool-card .stretched-link::after { z-index: 2; }

/* ===================================================================
   WHY CHOOSE
   =================================================================== */
.why-card {
  height: 100%; background: var(--az-surface); border: 1px solid var(--az-border);
  border-radius: var(--az-radius); padding: 1.5rem;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--az-shadow-md); }
.why-card__icon {
  width: 3rem; height: 3rem; border-radius: .8rem; display: inline-flex;
  align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem;
}
.why-card__title { font-weight: 700; font-size: 1.02rem; margin-bottom: .35rem; color: var(--az-secondary); }
.why-card__text { font-size: .88rem; color: var(--az-muted); margin-bottom: 0; }

/* ---------------- Featured (legacy section) ---------------- */
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--az-shadow-lg) !important; }

/* ---------------- Blog ---------------- */
.blog-card .card-img-top { width: 100%; height: auto; object-fit: cover; aspect-ratio: 1200 / 630; background: #eef0f6; }

/* ---------------- FAQ ---------------- */
.accordion-button:not(.collapsed) {
  color: var(--az-primary);
  background-color: rgba(var(--az-primary-rgb), .06);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(var(--az-primary-rgb), .25); }

/* ---------------- Newsletter ---------------- */
.newsletter-card { background: linear-gradient(180deg, #ffffff, #eff4ff); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background-color: var(--az-secondary) !important; }
.footer-brand .az-brand-name { color: #fff; }
.footer-heading { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; color: #94a3b8; }
.footer-links a { color: #cbd5e1; text-decoration: none; transition: color .15s ease, padding-left .15s ease; display: inline-block; }
.footer-links a:hover { color: #fff; padding-left: .15rem; }
.footer-social {
  display: inline-flex; width: 2.25rem; height: 2.25rem;
  align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; transition: background-color .15s ease, transform .15s ease;
}
.footer-social:hover { background: var(--az-primary); color: #fff; transform: translateY(-2px); }
.footer-badge {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; color: #cbd5e1;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 2rem; padding: .3rem .75rem;
}
.footer-badge i { color: #4ade80; }

/* ---------------- HTML sitemap ---------------- */
.sitemap-link { transition: background-color .15s ease; }
.sitemap-link:hover { background-color: rgba(var(--az-primary-rgb), .07); }
.sitemap-tool-list a { color: var(--az-text); }
.sitemap-tool-list a:hover { color: var(--az-primary); }

/* ---------------- Changelog timeline ---------------- */
.changelog-timeline { position: relative; }
.changelog-item {
  position: relative;
  padding-left: 1.75rem;
  padding-bottom: 1.75rem;
  margin-left: .5rem;
  border-left: 2px solid var(--az-border);
}
.changelog-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.changelog-item::before {
  content: "";
  position: absolute;
  left: -.55rem; top: .15rem;
  width: .95rem; height: .95rem;
  border-radius: 50%;
  background: var(--az-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--az-border);
}
.changelog-changes li { display: flex; gap: .6rem; align-items: flex-start; }
.changelog-changes .badge { flex: 0 0 auto; min-width: 6rem; text-align: center; }
@media (max-width: 575.98px) {
  .changelog-changes li { flex-direction: column; gap: .2rem; }
  .changelog-changes .badge { align-self: flex-start; }
}

/* ---------------- JSON tools (syntax highlighting + dark mode) ---------------- */
.jf-output { background:#fbfbfe; white-space:pre; }
.jf-output code { white-space:pre; display:block; }
.j-key  { color:#1d4ed8; }   /* keys */
.j-str  { color:#15803d; }   /* strings */
.j-num  { color:#b45309; }   /* numbers */
.j-bool { color:#9333ea; }   /* booleans */
.j-null { color:#6b7280; font-style:italic; } /* null */

[data-bs-theme="dark"] .jf-output { background:#11151c; color:#e5e7eb; }
[data-bs-theme="dark"] .j-key  { color:#7dd3fc; }
[data-bs-theme="dark"] .j-str  { color:#86efac; }
[data-bs-theme="dark"] .j-num  { color:#fbbf24; }
[data-bs-theme="dark"] .j-bool { color:#d8b4fe; }
[data-bs-theme="dark"] .j-null { color:#9ca3af; }

/* ---------------- Print (EMI report etc.) ---------------- */
@media print {
  .navbar, .footer, .breadcrumb, .tool-howto, .tool-content, .tool-faq,
  aside, .form-range, [data-action], .btn-group { display: none !important; }
  .tool-widget { box-shadow: none !important; border: 0 !important; }
  body { background: #fff; }
  a[href]::after { content: ""; } /* don't print URLs */
}

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