/* ============================================================
   MADM — mralexdm.com rebuild
   Dark-first, navy + gold, futuristic glass
   ============================================================ */

/* ===== Tokens ===== */
:root {
  /* Dark theme (default) */
  --bg: #070711;
  --bg-2: #0a0f1e;
  --surface: rgba(20, 28, 52, 0.5);
  --surface-strong: #0d1526;
  --glass-border: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.07);
  --text: #eef1f8;
  --muted: #9aa4bb;
  --faint: #8b93a8;

  --navy: #1a2f5e;
  --navy-2: #24407c;
  --blue: #6b8fd4;
  --gold: #c9a06a;
  --gold-bright: #e2be87;
  --gold-deep: #9e7b4a;
  --gold-soft: rgba(201, 160, 106, 0.12);
  --danger: #e05252;
  --ok: #4fc38a;

  --grad-gold: linear-gradient(115deg, #c9a06a 0%, #eed9ab 48%, #c9a06a 100%);
  --grad-hero: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(26, 47, 94, 0.55), transparent 65%),
               radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201, 160, 106, 0.1), transparent 70%);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);
  --glow-gold: 0 8px 32px rgba(201, 160, 106, 0.28);
  --glow-gold-lg: 0 12px 48px rgba(201, 160, 106, 0.38);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --font-display: "Outfit", "Helvetica Neue", sans-serif;
  --font-body: "Inter", -apple-system, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1180px;
  --nav-h: 72px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f5f5f7;
  --bg-2: #eef0f5;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --glass-border: rgba(13, 26, 51, 0.1);
  --line: rgba(13, 26, 51, 0.1);
  --text: #0a0e1c;
  --muted: #4c566e;
  --faint: #5f6880;

  --navy: #1a2f5e;
  --navy-2: #24407c;
  --blue: #1a2f5e;
  --gold: #9e7b4a;
  --gold-bright: #b08c55;
  --gold-deep: #876640;
  --gold-soft: rgba(158, 123, 74, 0.12);

  --grad-gold: linear-gradient(115deg, #9e7b4a 0%, #c8a468 48%, #9e7b4a 100%);
  --grad-hero: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(26, 47, 94, 0.12), transparent 65%),
               radial-gradient(ellipse 50% 40% at 20% 80%, rgba(158, 123, 74, 0.08), transparent 70%);

  --shadow-sm: 0 1px 3px rgba(13, 26, 51, 0.08);
  --shadow-md: 0 8px 28px rgba(13, 26, 51, 0.1);
  --shadow-lg: 0 20px 60px rgba(13, 26, 51, 0.16);
  --glow-gold: 0 8px 28px rgba(158, 123, 74, 0.3);
  --glow-gold-lg: 0 12px 40px rgba(158, 123, 74, 0.4);
  color-scheme: light;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); background: var(--bg); }
body {
  font-family: var(--font-body);
  background: transparent;
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
svg { display: block; flex-shrink: 0; }

::selection { background: var(--gold); color: #10131f; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 1.2rem + 4.6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 1.1rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem); }

.accent {
  background: var(--grad-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.lede { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); color: var(--muted); max-width: 56ch; }

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--grad-gold);
  z-index: 60;
  pointer-events: none;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.98rem;
  padding: 15px 30px;
  min-height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease-out), translate 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn svg { transition: transform 0.25s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(115deg, var(--gold-deep), var(--gold) 55%, var(--gold-bright));
  color: #14100a;
  box-shadow: var(--glow-gold);
}
.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.6s var(--ease-out);
}
.btn-primary:hover { box-shadow: var(--glow-gold-lg); transform: translateY(-2px); }
.btn-primary:hover::after { transform: translateX(110%); }
[data-theme="light"] .btn-primary { color: #ffffff; }

.btn-ghost {
  background: var(--surface);
  border-color: var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; min-height: 44px; font-size: 0.9rem; }
.btn-lg { padding: 18px 38px; font-size: 1.08rem; }
.btn-block { width: 100%; }

:is(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 7, 17, 0.82);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 36px;
  aspect-ratio: 816 / 661;
  background: linear-gradient(115deg, var(--gold-deep), var(--gold) 50%, var(--gold-bright));
  -webkit-mask: url("../images/mark.png") center / contain no-repeat;
  mask: url("../images/mark.png") center / contain no-repeat;
  filter: drop-shadow(0 0 9px rgba(201, 160, 106, 0.45));
  transition: filter 0.3s var(--ease-out);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: 0.1em;
  background: var(--grad-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
a.brand:hover .brand-mark { filter: drop-shadow(0 0 16px rgba(201, 160, 106, 0.75)); }
a.brand:hover .brand-name { animation: shimmer 2.5s linear infinite; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links > a:not(.btn) {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links > a:not(.btn):hover,
.nav-links > a.active { color: var(--text); }
.nav-links > a:not(.btn):hover::after,
.nav-links > a.active::after { transform: scaleX(1); }

.theme-toggle {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: var(--surface);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, transform 0.3s var(--ease-out);
}
.theme-toggle:hover { color: var(--gold); border-color: var(--gold); transform: rotate(18deg); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(56px, 10vh, 110px)) 0 clamp(56px, 9vh, 100px);
  background: var(--grad-hero);
  overflow: hidden;
}
.bg-constellation {
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lede { margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }

/* Sub-page hero */
.hero-sub { text-align: left; }
.hero-sub .hero-inner { max-width: 780px; }
.hero-sub h1 { margin-bottom: 20px; }

/* SERP glass panel */
.hero-panel { position: relative; }
.serp-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 12px;
}
.serp-search {
  display: flex; align-items: center; gap: 10px;
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 11px 18px;
  font-size: 0.9rem;
  color: var(--muted);
}
.serp-search svg { color: var(--gold); }
.serp-query { overflow: hidden; white-space: nowrap; }
.serp-caret {
  display: inline-block; width: 1px; height: 1em;
  background: var(--gold);
  vertical-align: text-bottom;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.serp-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.serp-row.serp-you {
  background: var(--gold-soft);
  border-color: color-mix(in srgb, var(--gold) 35%, transparent);
}
.serp-row.dim { opacity: 0.5; }
.serp-title { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; line-height: 1.35; }
.serp-url { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); margin-top: 3px; }
.serp-tag {
  font-family: var(--font-mono); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--gold);
  color: #14100a;
  margin-top: 2px;
}
[data-theme="light"] .serp-tag { color: #ffffff; }
.serp-rank {
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  margin-top: 2px;
}
.serp-you .serp-rank { background: var(--gold); border-color: var(--gold); color: #14100a; }
[data-theme="light"] .serp-you .serp-rank { color: #ffffff; }

.float-pill {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  background: var(--surface-strong);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  animation: floaty 5s ease-in-out infinite;
}
.float-pill svg { color: var(--gold); }
.pill-call { top: -18px; right: 8px; }
.pill-rank { bottom: -16px; left: -8px; animation-delay: -2.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ===== Brand sigil (MA monogram watermark) ===== */
.sigil {
  position: absolute;
  aspect-ratio: 816 / 661;
  background: linear-gradient(115deg, var(--gold-deep) 0%, var(--gold) 35%, #eed9ab 50%, var(--gold) 65%, var(--gold-deep) 100%);
  background-size: 250% auto;
  -webkit-mask: url("../images/mark.png") center / contain no-repeat;
  mask: url("../images/mark.png") center / contain no-repeat;
  filter: drop-shadow(0 0 30px rgba(201, 160, 106, 0.4));
  opacity: var(--sigil-o, 0.12);
  animation: sigil-shimmer 9s linear infinite, sigil-breathe 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sigil-shimmer { to { background-position: 250% center; } }
@keyframes sigil-breathe {
  0%, 100% { opacity: var(--sigil-o, 0.12); }
  50% { opacity: calc(var(--sigil-o, 0.12) * 1.9); }
}
.hero .sigil {
  --sigil-o: 0.05;
  width: min(44vw, 620px);
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
}
.hero-sub .sigil {
  --sigil-o: 0.12;
  width: min(36vw, 480px);
  right: 3%;
}
.cta-inner .sigil {
  --sigil-o: 0.85;
  position: relative;
  width: 84px;
  margin: 0 auto 26px;
  filter: drop-shadow(0 0 18px rgba(201, 160, 106, 0.55));
}
@media (max-width: 860px) {
  .hero .sigil, .hero-sub .sigil { display: none; }
}

/* ===== Stat bar ===== */
.stats { padding: clamp(40px, 6vh, 64px) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  text-align: center;
  padding: 26px 14px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
.stat:hover { border-color: color-mix(in srgb, var(--gold) 45%, transparent); transform: translateY(-4px); }
.stat-value {
  font-family: var(--font-mono);
  font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 8px; }

/* ===== Marquee ===== */
.marquee {
  border-block: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 56px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 56px;
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-item .dot { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Sections ===== */
.section { padding: clamp(64px, 11vh, 120px) 0; position: relative; }
.section-alt {
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--navy) 12%, transparent) 18%, color-mix(in srgb, var(--navy) 12%, transparent) 82%, transparent);
}
.section-head { max-width: 720px; margin-bottom: clamp(36px, 6vh, 60px); }
.section-head h2 { margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 1.05rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ===== Glass cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), var(--gold-soft), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.card:hover { border-color: color-mix(in srgb, var(--gold) 40%, transparent); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }
.card h3 { margin: 18px 0 12px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card-icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--gold-soft);
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  color: var(--gold);
}
.card-featured { border-color: color-mix(in srgb, var(--gold) 55%, transparent); box-shadow: var(--glow-gold); }
.card-badge {
  position: absolute; top: -13px; left: 28px;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--grad-gold);
  color: #14100a;
  padding: 5px 13px;
  border-radius: var(--radius-full);
}
[data-theme="light"] .card-badge { color: #ffffff; }

.ticks { margin-top: 20px; display: grid; gap: 11px; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.93rem; color: var(--muted); }
.ticks svg { color: var(--gold); margin-top: 3px; }

/* ===== Process steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
  position: relative;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.step:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--gold) 40%, transparent); }
.step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem; font-weight: 700;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.step-num::after { content: ""; width: 34px; height: 1px; background: color-mix(in srgb, var(--gold) 50%, transparent); }
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ===== Reasons (bento) ===== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento .card h3 { font-size: 1.1rem; margin-top: 16px; }

/* ===== Case study / before-after ===== */
.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.case-copy h2 { margin-bottom: 18px; }
.case-copy p { color: var(--muted); margin-bottom: 16px; }
.case-metrics { display: flex; gap: 16px; margin: 26px 0 30px; flex-wrap: wrap; }
.case-metric {
  flex: 1; min-width: 150px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--surface);
}
.case-metric .n { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; }
.case-metric.bad .n { color: var(--danger); }
.case-metric.good .n { color: var(--gold); }
.case-metric .l { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  user-select: none;
  touch-action: none;
}
.ba-slider img { width: 100%; height: auto; pointer-events: none; }
.ba-after {
  position: absolute; inset: 0;
  clip-path: inset(0 0 0 var(--split, 50%));
}
.ba-after img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--split, 50%);
  width: 2px;
  background: var(--gold);
  pointer-events: none;
}
.ba-handle::after {
  content: "⟷";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #14100a;
  font-size: 1.1rem;
  box-shadow: var(--glow-gold);
}
.ba-label {
  position: absolute; top: 14px;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(7, 7, 17, 0.72);
  color: #eef1f8;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}
.ba-label.before { left: 14px; }
.ba-label.after { right: 14px; color: var(--gold-bright); }
.ba-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}
.ba-slider:focus-within .ba-handle::after {
  box-shadow: var(--glow-gold), 0 0 0 3px var(--bg), 0 0 0 5px var(--gold);
}
.ba-hint { text-align: center; font-size: 0.82rem; color: var(--faint); margin-top: 12px; font-family: var(--font-mono); }

/* ===== Featured video testimonial ===== */
.video-testimonial {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  margin-bottom: clamp(48px, 7vh, 72px);
  padding: 40px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-soft), transparent 45%), var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.video-testimonial-media {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #000;
  border: 1px solid color-mix(in srgb, var(--gold) 38%, transparent);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}
.video-testimonial-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-testimonial-media video:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}
.video-testimonial-copy h3 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 2.25rem;
}
.video-testimonial-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}
.video-testimonial-credit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--glass-border);
}
.video-testimonial-credit strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
}
.video-testimonial-credit span {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

/* ===== Google reviews wall ===== */
.greviews { margin-top: 0; }
.greviews-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  margin-bottom: 26px;
}
.greviews-head p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.gbadge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.g-stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  line-height: 1;
}
.g-marquee {
  overflow: hidden;
  margin-bottom: 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.g-track {
  display: flex;
  width: max-content;
  animation: g-scroll 52s linear infinite;
}
.g-track-rev { animation-direction: reverse; }
.g-marquee:hover .g-track { animation-play-state: paused; }
.g-set { display: flex; gap: 18px; padding-right: 18px; }
@keyframes g-scroll { to { transform: translateX(-50%); } }
.g-card {
  width: 340px;
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 12px;
  margin: 0;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--surface-strong);
  transition: border-color 0.25s;
}
.g-card:hover { border-color: color-mix(in srgb, var(--gold) 40%, transparent); }
.g-card blockquote { margin: 0; font-size: 0.9rem; color: var(--text); flex: 1; }
.g-card figcaption { font-size: 0.82rem; color: var(--muted); }
.g-card figcaption strong { display: block; font-family: var(--font-display); font-weight: 600; color: var(--text); }

/* ===== CTA banner ===== */
.cta-banner { padding: clamp(56px, 9vh, 96px) 0; }
.cta-inner {
  position: relative;
  text-align: center;
  padding: clamp(48px, 8vh, 80px) clamp(24px, 5vw, 72px);
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  background:
    radial-gradient(ellipse 70% 90% at 50% -10%, color-mix(in srgb, var(--navy-2) 55%, transparent), transparent 70%),
    var(--surface-strong);
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute; inset: -60%;
  background: conic-gradient(from 0deg, transparent 70%, color-mix(in srgb, var(--gold) 20%, transparent) 85%, transparent);
  animation: spin 14s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-inner > * { position: relative; }
.cta-inner h2 { margin-bottom: 14px; }
.cta-inner p { color: var(--muted); max-width: 56ch; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Services page ===== */
.service-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(40px, 7vh, 72px) 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-of-type { border-bottom: none; }
.service-block.flip .service-visual { order: -1; }
.service-num {
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.18em;
  margin-bottom: 14px; display: block;
}
.service-block h2 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem); margin-bottom: 16px; }
.service-block > div > p { color: var(--muted); }
.service-block .btn { margin-top: 28px; }
.service-visual {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 28px;
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.service-visual svg.deco { width: 100%; height: auto; max-height: 300px; }

/* ===== Pricing ===== */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--gold) 45%, transparent); }
.price-card.featured {
  border-color: color-mix(in srgb, var(--gold) 60%, transparent);
  box-shadow: var(--glow-gold);
  background: linear-gradient(180deg, var(--gold-soft), transparent 40%), var(--surface);
}
.price-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.price-amount {
  font-family: var(--font-mono);
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
  margin: 14px 0 4px;
}
.price-note { font-size: 0.82rem; color: var(--faint); margin-bottom: 22px; }
.price-card .ticks { flex: 1; margin-bottom: 28px; }

/* ===== About page ===== */
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag-chip {
  font-family: var(--font-mono); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  background: var(--gold-soft);
  color: var(--gold-bright);
}
[data-theme="light"] .tag-chip { color: var(--gold-deep); }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.principle {
  padding: 30px 28px;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, var(--gold-soft), transparent 60%);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.principle h3 { font-size: 1.1rem; margin-bottom: 10px; }
.principle p { color: var(--muted); font-size: 0.94rem; }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-info { display: grid; gap: 14px; margin-top: 30px; }
.contact-line {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--surface);
  font-size: 0.94rem;
}
.contact-line svg { color: var(--gold); }
.contact-line a:hover { color: var(--gold); }
.contact-line .k { color: var(--faint); font-size: 0.78rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; display: block; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}
.contact-form h2 { font-size: 1.4rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-family: var(--font-display); font-size: 0.88rem; font-weight: 500; }
.field input, .field select, .field textarea {
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  min-height: 48px;
  padding: 13px 16px;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.form-note { margin-top: 14px; font-size: 0.85rem; color: var(--muted); text-align: center; min-height: 1.4em; }
.form-note.ok { color: var(--ok); }
.form-note.err { color: var(--danger); }

.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.audit-quote {
  margin-top: clamp(40px, 6vh, 56px);
  padding: 30px 34px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  background: var(--gold-soft);
  font-size: 1.02rem;
}
.audit-quote footer { margin-top: 12px; font-size: 0.85rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[data-open="true"] { border-color: color-mix(in srgb, var(--gold) 45%, transparent); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-q svg { color: var(--gold); transition: transform 0.3s var(--ease-out); }
.faq-item[data-open="true"] .faq-q svg { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}
.faq-item[data-open="true"] .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 0.95rem; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 7vh, 72px) 0 36px;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--navy) 14%, transparent));
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 44px;
}
.footer-lockup { margin-bottom: 16px; }
.footer-lockup .brand-mark { width: 32px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 40ch; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.footer-social a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--surface);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, transform 0.25s var(--ease-out);
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: flex-end; }
.footer-nav a {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--faint);
}
.footer-legal a:hover { color: var(--gold); }
.footer-legal-links { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }

/* ===== Legal pages ===== */
.legal { max-width: 760px; margin: 0 auto; }
.legal .updated { font-family: var(--font-mono); font-size: 0.8rem; color: var(--faint); margin-bottom: 34px; }
.legal h2 { font-size: 1.35rem; margin: 40px 0 14px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.05rem; margin: 24px 0 10px; }
.legal p { color: var(--muted); margin-bottom: 15px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 18px; display: grid; gap: 9px; }
.legal li { color: var(--muted); }
.legal a { color: var(--gold); }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--text); }
.legal .lead { color: var(--text); font-size: 1.05rem; }

/* ===== Synchronized gold gleam — periodic sweep mirroring the crest ===== */
@keyframes gleam {
  0%, 85% { background-position: 0% center; }
  97%, 100% { background-position: 200% center; }
}
@keyframes btn-glint {
  0%, 86% { transform: translateX(-110%); }
  96%, 100% { transform: translateX(110%); }
}
.stat-value, .step-num, .price-amount, .case-metric.good .n {
  background: var(--grad-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gleam 9s linear infinite;
}
.brand-mark {
  background: var(--grad-gold);
  background-size: 200% auto;
  animation: gleam 9s linear infinite;
}
.brand-name { animation: gleam 9s linear infinite; }
a.brand:hover .brand-name { animation: shimmer 2.5s linear infinite; }
.btn-primary::after { animation: btn-glint 9s linear infinite; }
.btn-primary:hover::after { animation: none; transform: translateX(110%); }

/* ===== Reveal animations (gated on .js so no-JS visitors see everything) ===== */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ===== Checkmarks draw themselves ===== */
.js .ticks svg path { stroke-dasharray: 22; stroke-dashoffset: 22; }
.js .reveal.in .ticks svg path { transition: stroke-dashoffset 0.45s var(--ease-out); stroke-dashoffset: 0; }
.js .reveal.in .ticks li:nth-child(1) svg path { transition-delay: 0.15s; }
.js .reveal.in .ticks li:nth-child(2) svg path { transition-delay: 0.24s; }
.js .reveal.in .ticks li:nth-child(3) svg path { transition-delay: 0.33s; }
.js .reveal.in .ticks li:nth-child(4) svg path { transition-delay: 0.42s; }
.js .reveal.in .ticks li:nth-child(5) svg path { transition-delay: 0.51s; }
.js .reveal.in .ticks li:nth-child(6) svg path { transition-delay: 0.6s; }

/* ===== Hero headline word entrance ===== */
.hw { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.js .hwi { display: inline-block; transform: translateY(112%); }
.js .h1-in .hwi { animation: hword 0.7s var(--ease-out) forwards; }
@keyframes hword { to { transform: none; } }

/* ===== Cursor follower ring ===== */
.cursor-ring {
  position: fixed; top: 0; left: 0;
  z-index: 80;
  pointer-events: none;
  will-change: transform;
}
.cursor-ring-i {
  display: block;
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}
.cursor-ring.on .cursor-ring-i { opacity: 0.6; }
.cursor-ring.hot .cursor-ring-i {
  transform: scale(1.5);
  border-color: var(--gold-bright);
  box-shadow: 0 0 18px rgba(201, 160, 106, 0.35);
  opacity: 0.9;
}
.cursor-ring.tap .cursor-ring-i { transform: scale(0.7); }

/* ===== SERP takeover pulse ===== */
.serp-row { will-change: transform; }
.float-pill.pulse {
  animation: pill-pulse 1.1s var(--ease-out), floaty 5s ease-in-out infinite;
}
@keyframes pill-pulse {
  0% { transform: scale(1); box-shadow: var(--shadow-md); }
  35% { transform: scale(1.14); box-shadow: var(--glow-gold-lg); }
  100% { transform: scale(1); box-shadow: var(--shadow-md); }
}

/* ===== Sticky mobile CTA ===== */
.mobile-cta {
  position: fixed;
  left: 12px; right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 45;
  display: none;
  transform: translateY(150%);
  visibility: hidden;
  transition: transform 0.35s var(--ease-out), visibility 0.35s;
}
.mobile-cta .btn { box-shadow: var(--glow-gold-lg); }
.mobile-cta.show { transform: none; visibility: visible; }
@media (max-width: 700px) { .mobile-cta { display: block; } }

/* ===== Cross-page transitions ===== */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: 0.28s; }
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .cards, .bento, .pricing, .principles, .next-steps { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-grid, .case-grid, .contact-grid, .service-block { grid-template-columns: 1fr; }
  .service-block.flip .service-visual { order: 0; }
  .hero-panel { max-width: 520px; }
  .video-testimonial { grid-template-columns: 1fr; gap: 32px; padding: 28px; text-align: center; }
  .video-testimonial-media { max-width: 320px; }
  .video-testimonial-copy h3, .video-testimonial-copy > p:not(.eyebrow) { margin-inline: auto; }
  .video-testimonial-copy .eyebrow { justify-content: center; }
  .video-testimonial-copy .eyebrow::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }

  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    z-index: 55;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(7, 7, 17, 0.94);
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 26px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease-out), opacity 0.3s, visibility 0.3s;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links > a:not(.btn) { padding: 13px 4px; font-size: 1.05rem; }
  .nav-links .btn { margin-top: 12px; }
}

@media (max-width: 560px) {
  .cards, .bento, .pricing, .principles, .steps, .stats-grid, .next-steps, .form-row { grid-template-columns: 1fr; }
  .video-testimonial { padding: 20px; }
  .video-testimonial-media { max-width: 290px; }
  .video-testimonial-copy h3 { font-size: 1.8rem; }
  .hero-cta .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .float-pill { display: none; }
  .service-visual { min-height: 180px; padding: 18px; }
  .service-visual svg.deco { max-height: 210px; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .g-track { animation: none; flex-wrap: wrap; width: auto; }
  .g-set { flex-wrap: wrap; padding-right: 0; }
  .g-set[aria-hidden="true"] { display: none; }
  .g-marquee { -webkit-mask-image: none; mask-image: none; }
}
