/* ═══════════════════════════════════════════════════════════════════
   SYNFLUX v2 — conversion-first design system
   Colour discipline: volt (#AAFF00) is reserved for actions and one
   accent word per view, so the primary CTA is always the loudest
   element on screen (isolation effect). Everything decorative runs
   on neutrals + the pale "light" tint.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Fonts (served from the /fonts folder) ── */
@font-face { font-family: 'Bebas Neue Pro'; src: url('fonts/Bebas Neue Pro Thin.woff2')         format('woff2'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Bebas Neue Pro'; src: url('fonts/Bebas Neue Pro Light.woff2')        format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Bebas Neue Pro'; src: url('fonts/Bebas Neue Pro Book.woff2')         format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Bebas Neue Pro'; src: url('fonts/Bebas Neue Pro Regular.woff2')      format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Bebas Neue Pro'; src: url('fonts/Bebas Neue Pro Bold.woff2')         format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Bebas Neue Pro'; src: url('fonts/Bebas Neue Pro Italic.woff2')       format('woff2'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Bebas Neue Pro'; src: url('fonts/Bebas Neue Pro Bold Italic.woff2')  format('woff2'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/SpaceGrotesk-VariableFont_wght.woff2') format('woff2');
  font-weight: 300 700; font-style: normal; font-display: swap;
}

/* ── Tokens ── */
:root {
  --ink:      #0C0C0C;   /* deepest — hero + nav */
  --black:    #111111;   /* page base */
  --surface:  #191919;   /* cards */
  --surface2: #212121;   /* elevated hover */
  --volt:     #AAFF00;   /* ACTION ONLY */
  --mid:      #6EE000;   /* action hover */
  --light:    #E8FBBA;   /* passive brand tint */
  --white:    #FAFAFA;
  --body:     #B0B0B0;
  --dim:      #7C7C7C;
  --line:     rgba(255,255,255,0.09);
  --line-strong: rgba(255,255,255,0.18);
  --nav-h:    76px;
  --radius:   16px;
  --shadow-cta: 0 10px 34px rgba(170,255,0,0.28);
  --shadow-card: 0 24px 48px rgba(0,0,0,0.38);
}

/* ── Reset / base ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.94;
}

a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--volt); outline-offset: 3px; border-radius: 4px; }

::selection { background: var(--volt); color: var(--ink); }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }

/* Eyebrow: pale tint + volt tick — a directional thread that ties
   section labels to the action colour without competing with CTAs */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--light); font-weight: 500; margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--volt); flex-shrink: 0; }

.accent { color: var(--volt); font-style: italic; }

/* ── Buttons — Fitts-friendly targets, one loud primary ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.01em;
  min-height: 52px; padding: 14px 30px; border-radius: 12px; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, color .2s ease,
              border-color .2s ease, box-shadow .25s ease;
}
.btn svg { width: 18px; height: 18px; transition: transform .22s ease; flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--volt); color: var(--ink); box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--mid); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(170,255,0,0.34); }

.btn-ghost { background: transparent; color: var(--white); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }

/* ── Navbar ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(12,12,12,0.7);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(12,12,12,0.92); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; }
.brand-mark {
  position: relative; width: 36px; height: 36px; display: block;
  perspective: 320px; transition: transform .25s ease;
}
.brand:hover .brand-mark { transform: scale(1.08); }
.brand-mark svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.brand-mark .l-light, .brand-mark .l-mid, .brand-mark .l-volt { opacity: 1; }
.brand-mark.play .l-mid   { opacity: 0; transform-origin: 50% 50%; animation: markPop  .26s cubic-bezier(.2,.7,.2,1)  .04s forwards; }
.brand-mark.play .l-light { opacity: 0; transform-origin: 50% 60%; animation: foldDown .32s cubic-bezier(.32,1.12,.4,1) .26s forwards; }
.brand-mark.play .l-volt  { opacity: 0; transform-origin: 50% 38%; animation: foldBack .32s cubic-bezier(.32,1.12,.4,1) .5s  forwards; }

.brand-name {
  font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif; font-weight: 500;
  font-size: 1.6rem; letter-spacing: 0.07em; text-transform: uppercase; padding-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.94rem; color: var(--body); font-weight: 500;
  letter-spacing: 0.02em; transition: color .2s ease; position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--volt); transition: width .22s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { min-height: 46px; padding: 10px 24px; }

.burger {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px;
  flex-direction: column; gap: 5px;
}
.burger span { width: 24px; height: 2px; background: var(--white); transition: .25s ease; border-radius: 2px; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Ambient background: crisp dot grid ── */
.bg { position: fixed; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1.4px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 25%, #000 0%, transparent 80%);
          mask-image: radial-gradient(ellipse 85% 70% at 50% 25%, #000 0%, transparent 80%);
}

section, .page-head { position: relative; z-index: 1; }

/* ═══ HERO — the statement ═══ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--nav-h) + 40px);
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(170,255,0,0.09) 0%, rgba(170,255,0,0) 60%),
    var(--ink);
}
.hero-inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }

/* Giant outlined mark — depth without stealing focus */
.hero-ghost {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -56%);
  width: min(78vmin, 720px); z-index: 0; pointer-events: none; opacity: 0.05;
}
.hero-ghost svg { width: 100%; height: auto; display: block; }

/* Animated badge mark above the statement — brand moment, then calm */
.hero-badge {
  position: relative; width: 62px; height: 62px; margin: 0 auto 30px;
  perspective: 360px;
}
.hero-badge::after {
  content: ''; position: absolute; inset: -46%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(170,255,0,0.14) 0%, rgba(170,255,0,0) 68%);
}
.hero-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hero-badge .l-mid   { opacity: 0; transform-origin: 50% 50%; animation: markPop  .5s cubic-bezier(.2,.7,.2,1)  .2s  forwards; }
.hero-badge .l-light { opacity: 0; transform-origin: 50% 60%; animation: foldDown .7s cubic-bezier(.32,1.12,.4,1) .65s forwards; }
.hero-badge .l-volt  { opacity: 0; transform-origin: 50% 38%; animation: foldBack .7s cubic-bezier(.32,1.12,.4,1) 1.2s forwards; }

@keyframes markPop  { 0% { opacity: 0; transform: scale(.6); } 100% { opacity: 1; transform: scale(1); } }
@keyframes foldDown { 0% { opacity: 0; transform: rotateX(90deg);  } 20% { opacity: 1; } 100% { opacity: 1; transform: rotateX(0); } }
@keyframes foldBack { 0% { opacity: 0; transform: rotateX(-90deg); } 20% { opacity: 1; } 100% { opacity: 1; transform: rotateX(0); } }

.statement {
  font-size: clamp(3.3rem, 8.2vw, 6.8rem);
  margin-bottom: 26px;
  letter-spacing: 0.015em;
}
.statement .w-light { font-weight: 300; }
.statement .w-bold  { font-weight: 700; }

.hero .lead {
  font-size: clamp(1.02rem, 1.9vw, 1.2rem);
  color: var(--body);
  max-width: 660px; margin: 0 auto 42px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Trust strip — social proof above the fold */
.hero-stats {
  position: relative; z-index: 2;
  margin-top: clamp(56px, 9vh, 96px);
  border-top: 1px solid var(--line);
  background: rgba(12,12,12,0.55);
}
.hero-stats .wrap {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; padding-top: 26px; padding-bottom: 26px;
}
.stat { display: flex; align-items: baseline; justify-content: center; gap: 12px; }
.stat .num {
  font-family: 'Bebas Neue Pro', sans-serif; font-weight: 300;
  font-size: 2.7rem; line-height: 1; color: var(--white);
}
.stat .label {
  font-size: 0.78rem; color: var(--dim);
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ═══ Section scaffolding ═══ */
.section-pad { padding: clamp(76px, 10vw, 128px) 0; }
.section-head { max-width: 660px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head h2 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); margin-bottom: 16px; }
.section-head p { color: var(--body); font-size: 1.05rem; }

/* ═══ Services cards — value visible, no hover-hiding ═══ */
.services { border-top: 1px solid var(--line); }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: stretch; }
.card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: var(--surface2);
  box-shadow: var(--shadow-card);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,251,186,0.08); margin-bottom: 22px;
}
.card-icon svg { width: 25px; height: 25px; stroke: var(--light); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-weight: 400; font-size: 1.75rem; letter-spacing: 0.04em; margin-bottom: 12px; }
.card-body p { color: var(--body); font-size: 0.97rem; }

.card-hint {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto; padding-top: 20px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.02em; color: var(--white);
  transition: color .22s ease;
}
.card-hint svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .22s ease; }
.card:hover .card-hint { color: var(--volt); }
.card:hover .card-hint svg { transform: translateX(4px); }

.card.soon { border-style: dashed; }
.card.soon .card-icon { background: rgba(232,251,186,0.05); }
.badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink); background: var(--light);
  padding: 5px 11px; border-radius: 6px; margin-bottom: 14px;
}

/* ═══ About ═══ */
.about { border-top: 1px solid var(--line); }
.about .wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.about h2 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); position: sticky; top: calc(var(--nav-h) + 32px); }
.about p { color: var(--body); font-size: 1.06rem; margin-bottom: 20px; }
.about p strong { color: var(--white); font-weight: 600; }
.about p a { color: var(--light); font-weight: 600; border-bottom: 1px solid rgba(232,251,186,0.4); transition: color .2s ease, border-color .2s ease; }
.about p a:hover { color: var(--volt); border-color: var(--volt); }

/* ═══ Contact — the conversion point ═══ */
.contact { border-top: 1px solid var(--line); }
.contact .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
/* Contact page: the form is first in the DOM and takes the wider column */
.contact.form-lead .wrap { grid-template-columns: 1.1fr 0.9fr; }
.contact h2 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); margin-bottom: 18px; }
.contact .intro { color: var(--body); font-size: 1.05rem; margin-bottom: 36px; max-width: 440px; }

.info-list { display: flex; flex-direction: column; gap: 14px; }
.info-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px;
  transition: border-color .22s ease, transform .22s ease;
}
.info-item:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.info-item .ic {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 11px;
  background: rgba(232,251,186,0.08);
  display: flex; align-items: center; justify-content: center;
}
.info-item .ic svg { width: 21px; height: 21px; stroke: var(--light); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.info-item .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--dim); margin-bottom: 2px; }
.info-item a, .info-item span { color: var(--white); font-size: 0.97rem; }
.info-item a:hover { color: var(--volt); }

/* The form is the money object — volt-tinted edge gives it the
   highest passive salience on the page after the CTA itself */
.form-card {
  background: var(--surface);
  border: 1px solid rgba(170,255,0,0.22);
  border-radius: 18px; padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 0 70px rgba(170,255,0,0.05);
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--white); margin-bottom: 8px; letter-spacing: 0.02em;
}
.field input, .field textarea {
  width: 100%; background: var(--ink);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 15px 16px; min-height: 52px;
  color: var(--white); font-family: 'Space Grotesk', sans-serif; font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #6a6a6a; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--volt);
  box-shadow: 0 0 0 3px rgba(170,255,0,0.14);
}
.field textarea { resize: vertical; min-height: 140px; }
.form-card .btn { width: 100%; margin-top: 4px; }
.form-note {
  display: none; margin-top: 18px; padding: 14px 16px; border-radius: 10px;
  background: rgba(170,255,0,0.1); border: 1px solid rgba(170,255,0,0.3);
  color: var(--light); font-size: 0.92rem;
}
.form-note.show { display: block; }
.form-note.error { background: rgba(255,90,90,0.1); border-color: rgba(255,90,90,0.35); color: #ffb4b4; }
.form-card .btn[disabled] { opacity: 0.6; cursor: progress; }

/* ═══ Standalone page header (Services / Contact pages) ═══ */
.page-head {
  padding: calc(var(--nav-h) + clamp(56px, 9vw, 96px)) 0 clamp(20px, 4vw, 36px);
  background: radial-gradient(ellipse 65% 60% at 50% 0%, rgba(170,255,0,0.07) 0%, rgba(170,255,0,0) 62%);
}
.page-head h1 { font-size: clamp(3rem, 7.5vw, 5.6rem); margin-bottom: 18px; }
.page-head p { color: var(--body); font-size: clamp(1rem, 2vw, 1.15rem); max-width: 580px; }

/* ═══ Services page — numbered rows ═══ */
.svc-list { display: flex; flex-direction: column; gap: 18px; }
.svc-row {
  display: grid; grid-template-columns: 76px 1fr auto; gap: clamp(20px, 4vw, 40px);
  align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.svc-row:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.svc-icon {
  width: 76px; height: 76px; border-radius: 18px; flex-shrink: 0;
  background: rgba(232,251,186,0.08);
  display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 34px; height: 34px; stroke: var(--light); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.svc-text h3 { font-weight: 400; font-size: 2.1rem; letter-spacing: 0.03em; margin-bottom: 10px; }
.svc-text p { color: var(--body); font-size: 1rem; max-width: 720px; }
.svc-text p a { color: var(--light); font-weight: 600; border-bottom: 1px solid rgba(232,251,186,0.4); }
.svc-text p a:hover { color: var(--volt); border-color: var(--volt); }
.svc-num {
  font-family: 'Bebas Neue Pro', sans-serif; font-weight: 100;
  font-size: 4.4rem; line-height: 1; color: rgba(255,255,255,0.10);
}
.svc-row.soon { border-style: dashed; }

/* ═══ CTA band — last-chance conversion ═══ */
.cta-band {
  border-top: 1px solid var(--line); text-align: center;
  padding: clamp(80px, 11vw, 130px) 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(170,255,0,0.08) 0%, rgba(170,255,0,0) 62%);
}
.cta-band h2 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: 16px; }
.cta-band p { color: var(--body); max-width: 520px; margin: 0 auto 34px; }

/* ═══ Footer ═══ */
footer.site { border-top: 1px solid var(--line); padding: 52px 0 42px; position: relative; z-index: 1; }
footer.site .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
footer.site .brand { gap: 12px; }
footer.site .brand svg { width: 26px; height: 26px; overflow: visible; }
footer.site .brand-name { font-size: 1.35rem; }
.foot-links { display: flex; gap: 26px; }
.foot-links a { color: var(--body); font-size: 0.9rem; transition: color .2s ease; }
.foot-links a:hover { color: var(--volt); }
.foot-legal { width: 100%; text-align: center; color: #5A5A5A; font-size: 0.8rem; letter-spacing: 0.08em; margin-top: 12px; }

/* ═══ Scroll-reveal (JS adds .in; no-JS users see everything) ═══ */
html.js .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0s);
}
html.js .reveal.in { opacity: 1; transform: none; }

/* ═══ Responsive ═══ */
@media (max-width: 900px) {
  .about .wrap, .contact .wrap { grid-template-columns: 1fr; }
  .about h2 { position: static; margin-bottom: 8px; }
  .svc-row { grid-template-columns: 62px 1fr; }
  .svc-icon { width: 62px; height: 62px; }
  .svc-num { display: none; }
}

@media (max-width: 760px) {
  .cards { grid-template-columns: 1fr; }
  /* Contact page: form is the money object — it leads on mobile */
  .contact .wrap > .contact-info { order: 2; }
  .contact .wrap > .form-card { order: 1; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(12,12,12,0.98); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 340px; }
  .nav-links a { padding: 18px 24px; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .burger { display: flex; }
  .nav-cta .btn { min-height: 42px; padding: 8px 18px; font-size: 0.9rem; }

  .hero-cta .btn { width: 100%; }           /* full-width thumb targets */
  .hero-stats .wrap { grid-template-columns: 1fr; gap: 14px; padding-top: 20px; padding-bottom: 20px; }
  .stat { justify-content: flex-start; }
  .stat .num { font-size: 2.1rem; }
  .form-card .btn { min-height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html.js .reveal { opacity: 1 !important; transform: none !important; }
  .hero-badge .l-light, .hero-badge .l-mid, .hero-badge .l-volt,
  .brand-mark .l-light, .brand-mark .l-mid, .brand-mark .l-volt { opacity: 1 !important; }
  html { scroll-behavior: auto; }
}
