/* ==========================================================================
   Geared Up Tuning — site styles
   ========================================================================== */

:root {
  --bg: #09090a;
  --bg-2: #0f0f11;
  --surface: #151518;
  --surface-2: #1c1c20;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #f5f5f4;
  --muted: #a3a3a8;
  --dim: #6b6b72;
  --red: #f10400;
  --red-hot: #ff3a1a;
  --orange: #ff7a00;
  --red-glow: rgba(241, 4, 0, 0.45);
  --red-soft: rgba(241, 4, 0, 0.12);

  --font-display: "Saira", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 32px);
  --top-h: 40px;
  --bar-h: 80px;
  --nav-h: calc(var(--top-h) + var(--bar-h));
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--bar-h) + 24px);
}

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

/* film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -5%); }
  60% { transform: translate(-2%, 6%); }
  80% { transform: translate(5%, -2%); }
}

/* stop off-screen reveal offsets from widening the page (clip keeps position: sticky working) */
main, .footer { overflow-x: clip; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red-hot);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 10000;
  background: var(--red); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

.display,
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-stretch: 75%;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(48px, 8.4vw, 118px); font-style: italic; }
h2 { font-size: clamp(38px, 5.6vw, 76px); font-style: italic; }
h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.05; }
h4 { font-size: 19px; line-height: 1.15; }

p { margin: 0 0 1em; color: var(--muted); }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }

.text-red { color: var(--red); }
.text-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.55);
}
.text-flame {
  background: linear-gradient(100deg, var(--red) 0%, var(--orange) 45%, var(--red) 70%, var(--red-hot) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: flame-shift 5s linear infinite;
  padding-right: 0.06em;
}
@keyframes flame-shift { to { background-position: -220% 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-stretch: 100%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  transform-origin: left;
}
.reveal .eyebrow::before,
.eyebrow.reveal::before { transform: scaleX(0); transition: transform 0.8s var(--ease) 0.2s; }
.reveal.is-in .eyebrow::before,
.eyebrow.reveal.is-in::before { transform: scaleX(1); }

.lead { font-size: clamp(18px, 1.5vw, 21px); color: #c9c9ce; max-width: 60ch; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  --bx: 0px; --by: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-stretch: 100%;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transform: translate(var(--bx), var(--by));
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.25s;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 30px -10px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn--primary:hover { box-shadow: 0 16px 44px -10px rgba(241, 4, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease);
}
.btn--primary:hover::before { transform: translateX(120%); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line-2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.09); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3); }

.btn--sm { min-height: 42px; padding: 0 18px; font-size: 13px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --------------------------------------------------------------------------
   Page load bar — only shows when a page genuinely takes a moment
   -------------------------------------------------------------------------- */

.page-load {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  height: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.page-load.is-on { opacity: 1; }
.page-load span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 0 12px var(--red-glow);
  transition: width 0.4s var(--ease);
}

/* --------------------------------------------------------------------------
   Scroll progress ("rev bar")
   -------------------------------------------------------------------------- */

.rev-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: 3px;
  pointer-events: none;
}
.rev-bar span {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--orange), var(--red) 60%, var(--red-hot));
  box-shadow: 0 0 12px var(--red-glow);
}

/* --------------------------------------------------------------------------
   Navigation — info bar + main bar, mega menu
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: transform 0.5s var(--ease);
}
/* the info bar slides away once you scroll, leaving the main bar */
.nav.is-scrolled { transform: translateY(calc(-1 * var(--top-h))); }
.nav.is-hidden { transform: translateY(-100%); }

.topbar {
  height: var(--top-h);
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  overflow: hidden;
}
.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar__info {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.topbar__info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b8b8be;
  white-space: nowrap;
  transition: color 0.2s;
}
.topbar__info a:hover { color: #fff; }
.topbar__info svg { width: 15px; height: 15px; color: var(--red); flex: none; }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.topbar__promo i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: live 1.6s infinite;
}
.topbar__promo:hover { color: var(--red-hot); }
.topbar__social { display: flex; gap: 2px; padding-left: 18px; border-left: 1px solid var(--line); }
.topbar__social a {
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #b8b8be;
  transition: background-color 0.2s, color 0.2s;
}
.topbar__social a:hover { background: var(--red); color: #fff; }
.topbar__social svg { width: 16px; height: 16px; }

.nav__bar {
  position: relative;
  height: var(--bar-h);
  background: linear-gradient(180deg, rgba(9, 9, 10, 0.55), rgba(9, 9, 10, 0));
  transition: background-color 0.4s, box-shadow 0.4s;
}
.nav.is-scrolled .nav__bar {
  background: rgba(9, 9, 10, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 var(--line), 0 20px 40px -30px rgba(0, 0, 0, 0.9);
}

.nav__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav__logo { display: block; }
.nav__logo img { height: 52px; width: auto; transition: transform 0.4s var(--ease); }
.nav__logo:hover img { transform: scale(1.04); }

.nav__menu { justify-self: center; height: 100%; }
.nav__links {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
/* each item spans the full bar height so the pointer never leaves it on the way to a dropdown */
.nav__item { position: relative; display: flex; align-items: center; }

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #d4d4d8;
  transition: color 0.2s, background-color 0.25s;
}
.nav__link:hover,
[data-open] > .nav__link { color: #fff; background: rgba(255, 255, 255, 0.07); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 18px;
  height: 3px;
  margin-left: -9px;
  border-radius: 3px;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.nav__link[aria-current="page"],
[data-active] > .nav__link { color: #fff; }
.nav__link[aria-current="page"]::after,
[data-active] > .nav__link::after { transform: scaleX(1); }
.nav__chev { width: 14px; height: 14px; transition: transform 0.35s var(--ease); }
[data-open] > .nav__link .nav__chev { transform: rotate(180deg); color: var(--red-hot); }

/* dropdowns */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 5;
  padding-top: 6px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
}
[data-open] > .dropdown { opacity: 1; visibility: visible; pointer-events: auto; }
.dropdown__panel {
  position: relative;
  padding: 10px;
  border-radius: 20px;
  background: rgba(18, 18, 21, 0.97);
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(12px) scale(0.98);
  transform-origin: top center;
  transition: transform 0.45s var(--ease);
}
[data-open] > .dropdown .dropdown__panel { transform: none; }
.dropdown__panel::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  background: rgb(18, 18, 21);
  border-left: 1px solid var(--line-2);
  border-top: 1px solid var(--line-2);
  transform: rotate(45deg);
}
.dropdown--mega .dropdown__panel {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 10px;
  width: 680px;
}
.dropdown--compact .dropdown__panel { width: 360px; }

.mega { margin: 0; padding: 0; list-style: none; display: grid; gap: 2px; }
[data-open] .mega > li { animation: mega-in 0.5s var(--ease) both; }
[data-open] .mega > li:nth-child(2) { animation-delay: 0.04s; }
[data-open] .mega > li:nth-child(3) { animation-delay: 0.08s; }
[data-open] .mega > li:nth-child(4) { animation-delay: 0.12s; }
[data-open] .mega > li:nth-child(5) { animation-delay: 0.16s; }
@keyframes mega-in { from { opacity: 0; transform: translateX(-10px); } }

.mega__item {
  display: grid;
  grid-template-columns: 44px 1fr 16px;
  align-items: center;
  gap: 14px;
  padding: 11px 12px;
  border-radius: 12px;
  transition: background-color 0.2s;
}
.mega__item:hover,
.mega__item:focus-visible { background: rgba(241, 4, 0, 0.1); }
.mega__icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--red-hot);
  transition: background-color 0.3s, color 0.3s, transform 0.45s var(--ease);
}
.mega__icon svg { width: 22px; height: 22px; }
.mega__item:hover .mega__icon { background: var(--red); color: #fff; transform: rotate(-8deg) scale(1.05); }
.mega__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
}
.mega__text small { display: block; margin-top: 2px; font-size: 13.5px; line-height: 1.35; color: var(--muted); }
.mega__item[aria-current="page"] strong { color: var(--red-hot); }
.mega__arrow { width: 16px; height: 16px; color: var(--red); opacity: 0; transform: translateX(-6px); transition: opacity 0.25s, transform 0.35s var(--ease); }
.mega__item:hover .mega__arrow { opacity: 1; transform: none; }

.mega__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(241, 4, 0, 0.5), transparent 60%),
    linear-gradient(160deg, #1f1f24, #121215);
  border: 1px solid rgba(241, 4, 0, 0.25);
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.mega__aside:hover { transform: translateY(-2px); border-color: rgba(241, 4, 0, 0.6); }
.mega__aside-kicker { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red-hot); }
.mega__aside strong {
  font-family: var(--font-display);
  font-stretch: 75%;
  font-style: italic;
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
.mega__aside-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #fff; }
.mega__aside-link svg { width: 14px; height: 14px; color: var(--red-hot); transition: transform 0.3s var(--ease); }
.mega__aside:hover .mega__aside-link svg { transform: translateX(4px); }
.mega__gauge {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 92px;
  height: 46px;
  border: 7px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
  border-radius: 92px 92px 0 0;
}
.mega__gauge::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 7px solid var(--red);
  border-bottom: 0;
  border-left-color: transparent;
  border-radius: 92px 92px 0 0;
  opacity: 0.8;
}
.mega__gauge i {
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 3px;
  height: 36px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: #fff;
  transform-origin: 50% 100%;
  animation: gauge-sweep 2.6s var(--ease-in-out) infinite alternate;
}
@keyframes gauge-sweep { from { transform: rotate(-75deg); } to { transform: rotate(68deg); } }

.nav__cta { display: flex; align-items: center; gap: 12px; justify-self: end; }

.nav__toggle {
  display: none;
  width: 48px; height: 48px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 13px; right: 13px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.45s var(--ease), opacity 0.3s, top 0.45s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 17px; }
.nav__toggle span:nth-child(2) { top: 23px; right: 19px; }
.nav__toggle span:nth-child(3) { top: 29px; }
.menu-open .nav__toggle span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu-open .nav__toggle span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.menu-open .nav__toggle span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 20px) var(--gutter) 32px;
  background: radial-gradient(120% 80% at 100% 0%, rgba(241, 4, 0, 0.22), transparent 55%), var(--bg);
  overflow-y: auto;
  clip-path: circle(0 at calc(100% - 44px) 38px);
  transition: clip-path 0.7s var(--ease-in-out);
  visibility: hidden;
}
.menu-open .mobile-menu { clip-path: circle(150% at calc(100% - 44px) 38px); visibility: visible; }
.menu-open { overflow: hidden; }
.mobile-menu__list { list-style: none; margin: 0; padding: 0; }
.mobile-menu__list li {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s, transform 0.6s var(--ease);
}
.menu-open .mobile-menu__list li { opacity: 1; transform: none; }
.mobile-menu__list a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 8px 0;
  font-family: var(--font-display);
  font-stretch: 75%;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(30px, 8vw, 44px);
  text-transform: uppercase;
  line-height: 1.05;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__list a small {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.1em;
}
.mobile-menu__sub a { font-size: clamp(20px, 5vw, 26px); color: var(--muted); padding-left: 32px; }
.mobile-menu__foot { margin-top: auto; padding-top: 28px; display: grid; gap: 12px; }

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 1.1s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

.reveal--left { transform: translateX(-50px); }
.reveal--right { transform: translateX(50px); }
.reveal--scale { transform: scale(0.92); }
.reveal--clip {
  opacity: 1;
  transform: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease-in-out);
  transition-delay: var(--d, 0s);
}
.reveal--clip.is-in { clip-path: inset(0 0 0 0); }

/* split-text: each word rises from a mask */
.split .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: 0.04em 0.08em 0.06em 0.02em;
  margin: -0.04em -0.08em -0.06em -0.02em;
}
.split .w > span {
  display: inline-block;
  transform: translateY(110%) skewY(8deg);
  transition: transform 1s var(--ease);
  transition-delay: calc(var(--i) * 0.06s + var(--d, 0s));
}
.split.is-in .w > span { transform: none; }
/* gradient text has to live on each word once the heading is split */
.split .text-flame { background: none; animation: none; color: inherit; padding: 0; }
.split .text-flame .w > span {
  background: linear-gradient(100deg, var(--red) 0%, var(--orange) 45%, var(--red) 70%, var(--red-hot) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: flame-shift 5s linear infinite;
  padding-right: 0.06em;
}

.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 1s var(--ease);
}
.stagger.is-in > * { opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-in > *:nth-child(2) { transition-delay: 0.13s; }
.stagger.is-in > *:nth-child(3) { transition-delay: 0.21s; }
.stagger.is-in > *:nth-child(4) { transition-delay: 0.29s; }
.stagger.is-in > *:nth-child(5) { transition-delay: 0.37s; }
.stagger.is-in > *:nth-child(6) { transition-delay: 0.45s; }
.stagger.is-in > *:nth-child(7) { transition-delay: 0.53s; }
.stagger.is-in > *:nth-child(8) { transition-delay: 0.61s; }
.stagger.is-in > *:nth-child(n+9) { transition-delay: 0.69s; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section { position: relative; padding: clamp(80px, 11vw, 150px) 0; }
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }
.section--alt { background: var(--bg-2); }
.section-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 + p { margin-top: 22px; }
.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}

.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 55% at 78% 45%, rgba(241, 4, 0, 0.26), transparent 70%),
    radial-gradient(40% 40% at 10% 90%, rgba(255, 122, 0, 0.1), transparent 70%),
    linear-gradient(180deg, transparent 60%, var(--bg) 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.hero__title { margin-bottom: 28px; }
.hero__title .line { display: block; }
.hero__lead { margin-bottom: 36px; }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 40px;
  padding: 0;
  list-style: none;
  font-size: 15px;
  color: #c9c9ce;
}
.hero__badges li { display: inline-flex; align-items: center; gap: 8px; }
.hero__badges svg { width: 18px; height: 18px; color: var(--red); flex: none; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
}
.hero__scroll i {
  width: 22px; height: 36px;
  border: 2px solid var(--line-2);
  border-radius: 12px;
  position: relative;
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  left: 50%; top: 6px;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--red);
  animation: scroll-dot 1.8s var(--ease) infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

/* Tachometer */
.tacho {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  aspect-ratio: 1;
}
.tacho svg { width: 100%; height: 100%; overflow: visible; }
.tacho__ring { fill: none; stroke: var(--line); }
.tacho__tick { stroke: rgba(255, 255, 255, 0.35); stroke-width: 2; }
.tacho__tick--major { stroke: rgba(255, 255, 255, 0.85); stroke-width: 3; }
.tacho__tick--red { stroke: var(--red); }
.tacho__num {
  fill: #d4d4d8;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  font-style: italic;
  text-anchor: middle;
  dominant-baseline: middle;
}
.tacho__num--red { fill: var(--red); }
.tacho__arc-bg { fill: none; stroke: rgba(255, 255, 255, 0.06); stroke-width: 14; stroke-linecap: round; }
.tacho__arc {
  fill: none;
  stroke: url(#tachoGrad);
  stroke-width: 14;
  stroke-linecap: round;
  filter: url(#glow);
}
/* rotation (and its pivot) is set by JS via the SVG transform attribute */
.tacho__needle { will-change: transform; }
.tacho__needle line { stroke: var(--red-hot); stroke-width: 5; stroke-linecap: round; filter: url(#glowNeedle); }
.tacho__hub { fill: #111; stroke: var(--red); stroke-width: 3; }
.tacho__readout {
  position: absolute;
  left: 50%;
  top: 73%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.tacho__value {
  display: block;
  font-family: var(--font-display);
  font-stretch: 75%;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
  color: #fff;
  text-shadow: 0 0 30px rgba(241, 4, 0, 0.5);
}
.tacho__value sup { font-size: 0.45em; vertical-align: 0.9em; color: var(--red); margin-left: 2px; }
.tacho__label {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.tacho__glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 4, 0, 0.35), transparent 65%);
  filter: blur(30px);
  z-index: -1;
  animation: pulse-glow 3.2s ease-in-out infinite;
}
@keyframes pulse-glow { 50% { opacity: 0.55; transform: scale(0.94); } }

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.marquee {
  position: relative;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  font-family: var(--font-display);
  font-stretch: 75%;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: #e4e4e7;
  transition: color 0.3s;
}
.marquee__item:nth-child(even) { color: transparent; -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.4); }
.marquee__item:hover { color: var(--red); -webkit-text-stroke-color: var(--red); }
.marquee__item::after {
  content: "";
  width: 10px; height: 10px;
  background: var(--red);
  transform: rotate(45deg);
  flex: none;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee--reverse .marquee__track { animation-direction: reverse; }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}
.stat {
  position: relative;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line);
  overflow: hidden;
}
.stat:last-child { border-right: 0; }
.stat::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  height: 3px; width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease) 0.3s;
}
.stats.is-in .stat::before { transform: scaleX(1); }
.stat__num {
  font-family: var(--font-display);
  font-stretch: 75%;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
.stat__num em { font-style: inherit; color: var(--red); }
.stat__label { margin-top: 10px; font-size: 15px; color: var(--muted); }

/* --------------------------------------------------------------------------
   Service cards
   -------------------------------------------------------------------------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  --mx: 50%; --my: 50%;
  --rx: 0deg; --ry: 0deg;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(241, 4, 0, 0.18), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(300px circle at var(--mx) var(--my), rgba(255, 58, 26, 0.9), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card:hover::before,
.card:hover::after { opacity: 1; }
.card:hover { border-color: transparent; }

.card__icon {
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 16px;
  background: var(--red-soft);
  color: var(--red-hot);
  transition: transform 0.5s var(--ease), background-color 0.3s, color 0.3s;
}
.card__icon svg { width: 30px; height: 30px; }
.card:hover .card__icon { transform: rotate(-8deg) scale(1.08); background: var(--red); color: #fff; }
.card__num {
  position: absolute;
  top: 22px; right: 28px;
  font-family: var(--font-display);
  font-stretch: 75%;
  font-style: italic;
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  transition: -webkit-text-stroke-color 0.4s, transform 0.5s var(--ease);
}
.card:hover .card__num { -webkit-text-stroke-color: rgba(241, 4, 0, 0.5); transform: translateY(-4px); }
.card h3 { margin-bottom: 14px; }
.card p { font-size: 16px; }
.card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.card__more svg { width: 16px; height: 16px; color: var(--red); transition: transform 0.4s var(--ease); }
.card:hover .card__more svg { transform: translateX(6px); }
.card--feature {
  grid-column: span 2;
  background:
    radial-gradient(80% 120% at 100% 100%, rgba(241, 4, 0, 0.18), transparent 60%),
    var(--surface);
}
.card--feature h3 { font-size: clamp(28px, 3vw, 40px); font-style: italic; }
.card-link { position: absolute; inset: 0; z-index: 2; border-radius: inherit; }

/* --------------------------------------------------------------------------
   Stages + dyno chart
   -------------------------------------------------------------------------- */

.stages {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.stage-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  width: fit-content;
}
.stage-tabs__pill {
  position: absolute;
  top: 6px; bottom: 6px;
  left: 0;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 6px 20px -6px var(--red-glow);
  transition: transform 0.5s var(--ease), width 0.5s var(--ease);
  z-index: 0;
}
.stage-tab {
  position: relative;
  z-index: 1;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  background: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.stage-tab[aria-selected="true"] { color: #fff; }

.stage-panel { display: none; }
.stage-panel.is-active { display: block; animation: panel-in 0.7s var(--ease); }
@keyframes panel-in { from { opacity: 0; transform: translateY(16px); } }
.stage-panel h3 { font-size: clamp(30px, 3.4vw, 46px); font-style: italic; margin-bottom: 18px; }

.meter { margin-top: 26px; }
.meter__row { margin-bottom: 16px; }
.meter__head {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.meter__bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.meter__fill {
  height: 100%;
  width: var(--w, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 0 16px var(--red-glow);
  transform-origin: left;
  animation: meter-fill 1.2s var(--ease) both;
  position: relative;
  overflow: hidden;
}
.meter__fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.18) 0 6px, transparent 6px 14px);
  animation: stripes 1s linear infinite;
}
@keyframes meter-fill { from { transform: scaleX(0); } }
@keyframes stripes { to { background-position: 28px 0; } }

.dyno {
  position: relative;
  padding: clamp(20px, 3vw, 32px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.dyno__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.dyno__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dyno__title::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: live 1.6s infinite;
}
@keyframes live {
  0% { box-shadow: 0 0 0 0 rgba(241, 4, 0, 0.6); }
  100% { box-shadow: 0 0 0 12px rgba(241, 4, 0, 0); }
}
.dyno__legend { display: flex; gap: 18px; font-size: 13px; color: var(--muted); }
.dyno__legend span { display: inline-flex; align-items: center; gap: 8px; }
.dyno__legend i { width: 18px; height: 3px; border-radius: 2px; background: var(--dim); }
.dyno__legend .is-tuned i { background: var(--red); box-shadow: 0 0 8px var(--red); }
.dyno svg { width: 100%; height: auto; overflow: visible; }
.dyno__gridline { stroke: rgba(255, 255, 255, 0.06); stroke-width: 1; }
.dyno__axis { fill: var(--dim); font-family: var(--font-body); font-size: 11px; }
.dyno__stock { fill: none; stroke: #71717a; stroke-width: 2.5; stroke-dasharray: 6 6; }
.dyno__tuned {
  fill: none;
  stroke: var(--red);
  stroke-width: 3.5;
  stroke-linecap: round;
  filter: url(#dynoGlow);
  transition: d 0.9s var(--ease);
}
.dyno__area { fill: url(#dynoFill); transition: d 0.9s var(--ease); }
.dyno__dot { fill: #fff; stroke: var(--red); stroke-width: 3; }
.dyno__tag rect { fill: var(--red); }
.dyno__tag text {
  fill: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-anchor: middle;
  dominant-baseline: middle;
}
.dyno__note { margin-top: 10px; font-size: 13px; color: var(--dim); }

/* --------------------------------------------------------------------------
   Process timeline
   -------------------------------------------------------------------------- */

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process__line {
  position: absolute;
  left: 0; right: 0;
  top: 34px;
  height: 2px;
  background: var(--line);
}
.process__line span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  box-shadow: 0 0 12px var(--red-glow);
  transform-origin: left;
  transform: scaleX(var(--p, 0));
}
.step { position: relative; padding-top: 0; }
.step__dot {
  position: relative;
  z-index: 1;
  width: 68px; height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line-2);
  font-family: var(--font-display);
  font-stretch: 75%;
  font-style: italic;
  font-weight: 900;
  font-size: 28px;
  color: var(--dim);
  transition: border-color 0.5s, color 0.5s, box-shadow 0.5s, background-color 0.5s;
}
.step.is-lit .step__dot {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(241, 4, 0, 0.12), 0 0 30px var(--red-glow);
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 16px; }

/* --------------------------------------------------------------------------
   Feature list / why us
   -------------------------------------------------------------------------- */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.split-layout--top { align-items: start; }

.feature-list { display: grid; gap: 14px; }
.feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  transition: background-color 0.4s, border-color 0.4s, transform 0.5s var(--ease);
}
.feature:hover { background: rgba(241, 4, 0, 0.06); border-color: rgba(241, 4, 0, 0.35); transform: translateX(6px); }
.feature__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--red-hot);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 20px; margin-bottom: 6px; font-style: normal; }
.feature p { font-size: 16px; }

/* big visual block */
.visual-block {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(70% 60% at 50% 40%, rgba(241, 4, 0, 0.35), transparent 70%),
    linear-gradient(160deg, #1a1a1e, #0c0c0d);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.visual-block .big-number {
  font-family: var(--font-display);
  font-stretch: 75%;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(120px, 20vw, 260px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.85);
  text-align: center;
}
.visual-block .big-number small {
  display: block;
  max-width: 14em;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.11em;
  line-height: 1.2;
  letter-spacing: 0.14em;
  -webkit-text-stroke: 0;
  color: var(--red);
  margin-top: 18px;
}
.visual-block__rings {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  place-items: center;
}
.visual-block__rings span {
  position: absolute;
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(241, 4, 0, 0.4);
  animation: ring 4s var(--ease) infinite;
}
.visual-block__rings span:nth-child(2) { animation-delay: 1.33s; }
.visual-block__rings span:nth-child(3) { animation-delay: 2.66s; }
@keyframes ring {
  0% { transform: scale(0.6); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.visual-block__tag {
  position: absolute;
  left: 20px; bottom: 20px; right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(9, 9, 10, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.visual-block__tag strong { font-family: var(--font-display); letter-spacing: 0.06em; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   Finance
   -------------------------------------------------------------------------- */

.finance {
  position: relative;
  padding: clamp(32px, 5vw, 64px);
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(60% 90% at 100% 0%, rgba(255, 122, 0, 0.35), transparent 60%),
    linear-gradient(120deg, #b10300, var(--red) 55%, #ff2a10);
}
.finance::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(-60deg, rgba(0, 0, 0, 0.08) 0 2px, transparent 2px 22px);
  animation: finance-lines 20s linear infinite;
}
@keyframes finance-lines { to { background-position: 400px 0; } }
.finance__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.finance h2 { color: #fff; }
.finance p { color: rgba(255, 255, 255, 0.88); }
.finance .eyebrow { color: #fff; }
.finance__no {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}
.finance__no span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
}
.finance__no b { color: #ffd3c9; margin-right: 4px; }
.finance .btn--primary { background: #fff; color: var(--red); box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.5); }
.finance .btn--primary::before { background: linear-gradient(105deg, transparent 30%, rgba(241, 4, 0, 0.15) 50%, transparent 70%); }
.finance .btn--ghost { background: rgba(0, 0, 0, 0.18); color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4); }

.plan {
  padding: 28px;
  border-radius: 20px;
  background: rgba(9, 9, 10, 0.88);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}
.plan__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.plan__bar { display: flex; gap: 6px; height: 64px; margin-bottom: 14px; }
.plan__seg {
  flex: 1;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  color: var(--muted);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.7s var(--ease), background-color 0.5s, color 0.5s;
}
.plan__seg--now { background: var(--red); color: #fff; box-shadow: 0 0 24px var(--red-glow); }
.plan.is-in .plan__seg { transform: none; }
.plan.is-in .plan__seg:nth-child(2) { transition-delay: 0.15s; }
.plan.is-in .plan__seg:nth-child(3) { transition-delay: 0.3s; }
.plan.is-in .plan__seg:nth-child(4) { transition-delay: 0.45s; }
.plan__labels { display: flex; gap: 6px; font-size: 12px; color: var(--dim); text-align: center; }
.plan__labels span { flex: 1; }
.plan__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.plan__foot img { height: 30px; width: auto; flex: none; }
.pa-logo { background: #fff; padding: 6px 10px; border-radius: 8px; }

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */

.reviews-rail {
  display: grid;
  gap: 20px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews-rail__row { overflow: hidden; }
.reviews-rail__track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-right: 20px; /* trailing gap so -50% lands exactly on the duplicate */
  animation: marquee 70s linear infinite;
}
.reviews-rail__row--rev .reviews-rail__track { animation-direction: reverse; animation-duration: 80s; }
.reviews-rail:hover .reviews-rail__track { animation-play-state: paused; }

.review {
  flex: none;
  width: min(420px, 82vw);
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.review:hover { border-color: rgba(241, 4, 0, 0.4); transform: translateY(-4px); }
.review__stars { display: flex; gap: 3px; color: #ffb400; margin-bottom: 16px; }
.review__stars svg { width: 18px; height: 18px; }
.review blockquote { margin: 0 0 20px; color: #d4d4d8; font-size: 16px; line-height: 1.6; }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
}
.review__name { font-weight: 600; color: #fff; line-height: 1.2; }
.review__src { font-size: 13px; color: var(--dim); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reviews-grid .review { width: auto; }

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */

.cta {
  position: relative;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta__title { font-size: clamp(56px, 11vw, 170px); line-height: 0.86; margin-bottom: 32px; }
.cta .lead { margin: 0 auto 36px; }
.cta .btn-row { justify-content: center; }
.cta__glow {
  position: absolute;
  left: 50%; top: 55%;
  width: 900px; height: 500px;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: radial-gradient(closest-side, rgba(241, 4, 0, 0.35), transparent);
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(56px, 8vw, 110px)) 0 clamp(56px, 7vw, 100px);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(55% 70% at 85% 30%, rgba(241, 4, 0, 0.22), transparent 70%),
    linear-gradient(180deg, transparent 60%, var(--bg) 100%);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.page-hero h1 { font-size: clamp(44px, 7vw, 100px); margin-bottom: 24px; }
.page-hero .lead { margin-bottom: 32px; }
.page-hero__art { width: 100%; max-width: 420px; margin-left: auto; aspect-ratio: 1; }
.page-hero__art svg { width: 100%; height: 100%; overflow: visible; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--dim);
}
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--line-2); }
.crumbs a { color: var(--muted); transition: color 0.2s; }
.crumbs a:hover { color: var(--red-hot); }

/* --------------------------------------------------------------------------
   Content blocks (inner pages)
   -------------------------------------------------------------------------- */

.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 22px; }
.prose h3 { margin: 36px 0 12px; font-style: normal; }
.prose ul { margin: 0 0 1em; padding: 0; list-style: none; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 28px; color: var(--muted); }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 14px; height: 2px;
  background: var(--red);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.info-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.4s, transform 0.5s var(--ease);
}
.info-card:hover { border-color: rgba(241, 4, 0, 0.35); transform: translateY(-4px); }
.info-card h3 { margin-bottom: 14px; }
.info-card p { font-size: 16px; }
.info-card__kicker {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 12px;
}

.stage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stage-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.stage-card:hover { transform: translateY(-6px); border-color: rgba(241, 4, 0, 0.45); }
.stage-card__level {
  display: flex;
  gap: 5px;
  margin-bottom: 22px;
}
.stage-card__level i {
  width: 30px; height: 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  transform: skewX(-20deg);
}
.stage-card__level i.on { background: var(--red); box-shadow: 0 0 10px var(--red-glow); }
.stage-card h3 { font-size: clamp(28px, 3vw, 38px); font-style: italic; margin-bottom: 14px; }
.stage-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.stage-card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.45;
}
.stage-card li svg { width: 18px; height: 18px; color: var(--red); margin-top: 2px; }
.stage-card--hot {
  background: radial-gradient(90% 60% at 100% 0%, rgba(241, 4, 0, 0.22), transparent 70%), var(--surface);
  border-color: rgba(241, 4, 0, 0.4);
}
.stage-card__badge {
  position: absolute;
  top: 22px; right: 22px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--red);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.3s, background-color 0.3s;
}
.faq details[open] { border-color: rgba(241, 4, 0, 0.4); background: #18181b; }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 21px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  position: relative;
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red-soft);
  transition: transform 0.4s var(--ease), background-color 0.3s;
}
.faq summary i::before,
.faq summary i::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 2px;
  margin: -1px 0 0 -6px;
  background: var(--red-hot);
  transition: transform 0.4s var(--ease), background-color 0.3s;
}
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i { background: var(--red); transform: rotate(180deg); }
.faq details[open] summary i::before,
.faq details[open] summary i::after { background: #fff; }
.faq details[open] summary i::after { transform: rotate(0deg); }
.faq__body { padding: 0 24px 24px; overflow: hidden; }
.faq__body p { font-size: 16px; }

/* Quote form */
.form-card {
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { position: relative; display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(241, 4, 0, 0.18);
}
.field--reg input {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  background: #ffd400;
  color: #111;
  border-color: #ffd400;
}
.field--reg input::placeholder { color: rgba(0, 0, 0, 0.35); }
.form-note { margin-top: 14px; font-size: 13px; color: var(--dim); }
.form-status { margin-top: 14px; font-size: 15px; color: var(--red-hot); min-height: 1.4em; }

.contact-list { display: grid; gap: 14px; }
.contact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.3s, background-color 0.3s, transform 0.4s var(--ease);
}
a.contact-item:hover { border-color: rgba(241, 4, 0, 0.4); background: rgba(241, 4, 0, 0.06); transform: translateX(6px); }
.contact-item__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--red-hot);
}
.contact-item__icon svg { width: 24px; height: 24px; }
.contact-item small { display: block; font-size: 13px; color: var(--dim); }
.contact-item span { font-weight: 600; color: #fff; overflow-wrap: anywhere; }

.map-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-lg);
  filter: grayscale(1) invert(0.92) contrast(0.9);
}

.embed-card {
  min-height: 420px;
  padding: clamp(16px, 3vw, 32px);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

/* Store */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.4s, transform 0.5s var(--ease);
}
.product:hover { border-color: rgba(241, 4, 0, 0.4); transform: translateY(-6px); }
.product__tag {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-hot);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.product h3 { font-size: 24px; margin-bottom: 8px; }
.product__sku { font-size: 13px; color: var(--dim); margin-bottom: 20px; }
.product__price {
  margin-top: auto;
  font-family: var(--font-display);
  font-stretch: 75%;
  font-style: italic;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 20px;
}
.notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  margin-bottom: 32px;
  border-radius: var(--radius);
  background: var(--red-soft);
  border: 1px solid rgba(241, 4, 0, 0.35);
  color: #f0d0cc;
  font-size: 15px;
}
.notice svg { width: 22px; height: 22px; flex: none; color: var(--red-hot); margin-top: 1px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  position: relative;
  padding: clamp(64px, 8vw, 110px) 0 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer__logo img { height: 56px; width: auto; margin-bottom: 20px; }
.footer p { font-size: 15px; }
.footer h4 {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 20px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a {
  color: var(--muted);
  font-size: 15px;
  transition: color 0.2s, padding-left 0.3s var(--ease);
}
.footer ul a:hover { color: #fff; padding-left: 6px; }
.footer__contact a { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--red); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  transition: background-color 0.3s, transform 0.4s var(--ease), border-color 0.3s;
}
.socials a:hover { background: var(--red); border-color: var(--red); transform: translateY(-4px); }
.socials svg { width: 20px; height: 20px; }
.footer__giant {
  margin: clamp(48px, 7vw, 90px) 0 24px;
  font-family: var(--font-display);
  font-stretch: 75%;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(64px, 16vw, 250px);
  line-height: 0.8;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  user-select: none;
  background: linear-gradient(90deg, transparent, rgba(241, 4, 0, 0.55), transparent) no-repeat;
  background-size: 30% 100%;
  background-position: -60% 0;
  -webkit-background-clip: text;
  background-clip: text;
  animation: sweep 6s var(--ease-in-out) infinite;
}
@keyframes sweep { 0% { background-position: -60% 0; } 60%, 100% { background-position: 160% 0; } }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--dim);
}
.footer__bottom a:hover { color: #fff; }

/* Floating WhatsApp */
.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transform: scale(0);
  transition: transform 0.5s var(--ease);
}
.fab.is-visible { transform: scale(1); }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; }
.fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: fab-ping 2.4s var(--ease) infinite;
}
@keyframes fab-ping { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.7); opacity: 0; } }

/* --------------------------------------------------------------------------
   Service art animations
   -------------------------------------------------------------------------- */

.art-stroke { fill: none; stroke: var(--red); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.art-stroke--dim { stroke: rgba(255, 255, 255, 0.18); stroke-width: 2; }
.art-fill-red { fill: var(--red); }
.art-draw { stroke-dasharray: var(--len, 1000); stroke-dashoffset: var(--len, 1000); animation: draw 2.4s var(--ease-in-out) 0.3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.spin { transform-box: fill-box; transform-origin: center; animation: spin 10s linear infinite; }
.spin--rev { animation-direction: reverse; }
.spin--fast { animation-duration: 6s; }
@keyframes spin { to { transform: rotate(360deg); } }

.pulse-path { stroke-dasharray: 16 520; animation: pulse-run 2.4s linear infinite; }
@keyframes pulse-run { to { stroke-dashoffset: -536; } }

.bubble { animation: bubble 3.2s ease-in infinite; transform-box: fill-box; transform-origin: center; }
@keyframes bubble {
  0% { transform: translateY(0) scale(0.4); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateY(-190px) scale(1.1); opacity: 0; }
}

.blink { animation: blink 1.4s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0.2; } }

.scanline { animation: scan 2.6s var(--ease-in-out) infinite alternate; }
@keyframes scan { from { transform: translateY(0); } to { transform: translateY(220px); } }

.float { animation: float 5s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-12px); } }

/* --------------------------------------------------------------------------
   Home — keyword hero, highlights strip
   -------------------------------------------------------------------------- */

.hero__title { font-size: clamp(46px, 6.3vw, 100px); }
.hero__by {
  display: block;
  margin-top: 0.45em;
  font-size: 0.28em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #c9c9ce;
}
.hero__scroll { bottom: 92px; }
.hero:has(+ .highlights) { padding-bottom: 150px; }

.highlights {
  position: relative;
  z-index: 2;
  margin-top: -72px;
  padding-bottom: clamp(40px, 6vw, 80px);
}
.highlights__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hl {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(30, 30, 34, 0.92), rgba(17, 17, 20, 0.94));
  border: 1px solid var(--line-2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9);
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.hl:hover { transform: translateY(-6px); border-color: rgba(241, 4, 0, 0.5); }
.hl::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease) 0.4s;
}
.is-in > .hl::before { transform: scaleX(1); }
.hl__bg {
  position: absolute;
  right: -4px;
  bottom: -22px;
  font-family: var(--font-display);
  font-stretch: 75%;
  font-style: italic;
  font-weight: 900;
  font-size: 118px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.4s, transform 0.6s var(--ease);
}
.hl:hover .hl__bg { -webkit-text-stroke-color: rgba(241, 4, 0, 0.45); transform: translateX(-8px); }
.hl__icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px -10px var(--red-glow);
}
.hl__icon svg { width: 26px; height: 26px; }
.hl h3 { font-size: 25px; font-style: italic; margin: 20px 0 10px; }
.hl p { position: relative; font-size: 16px; }

.stats--2x2 { grid-template-columns: 1fr 1fr; }
.stats--2x2 .stat:nth-child(2n) { border-right: 0; }
.stats--2x2 .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

.h2--md { font-size: clamp(34px, 4.2vw, 60px); }
.h2--sm { font-size: clamp(24px, 2.4vw, 32px); font-style: normal; }
.cta__title--long { font-size: clamp(40px, 6vw, 92px); max-width: 17ch; margin-left: auto; margin-right: auto; }

@media (min-width: 961px) {
  .sticky-col { position: sticky; top: calc(var(--bar-h) + 28px); }
}

.visual-block--wide { aspect-ratio: 16 / 10; }
.visual-block--wide .big-number { font-size: clamp(110px, 14vw, 190px); }

.guarantee {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(241, 4, 0, 0.35);
  background: radial-gradient(90% 120% at 0% 0%, rgba(241, 4, 0, 0.16), transparent 60%), var(--surface);
}
.guarantee__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
}
.guarantee__icon svg { width: 26px; height: 26px; }
.guarantee h3 { font-size: 22px; font-style: italic; margin-bottom: 8px; }
.guarantee p { font-size: 16px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4d4d8;
  transition: border-color 0.3s, color 0.3s, background-color 0.3s;
}
.chip:hover { border-color: var(--red); background: var(--red-soft); color: #fff; }

.info-grid--3 { grid-template-columns: repeat(3, 1fr); }
.info-card .card__icon { margin-bottom: 20px; }

.stage-card p { font-size: 15.5px; }
.stage-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.stage-card__tags span {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4d4d8;
}
.subhead { max-width: 72ch; margin-bottom: 28px; }
.subhead h3 { font-size: clamp(22px, 2.2vw, 28px); margin-bottom: 10px; }
.popular-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.popular-note svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: 3px; }

.review--clamp blockquote {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* inner page H1s carry the full keyword phrase, so they run smaller */
.page-hero h1 { font-size: clamp(36px, 4.6vw, 68px); }

/* --------------------------------------------------------------------------
   Store & product pages
   -------------------------------------------------------------------------- */

.product { position: relative; padding: 0; overflow: hidden; }
.product__media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #fff;
  overflow: hidden;
}
.product__media img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.7s var(--ease); }
.product:hover .product__media img { transform: scale(1.07); }
.product__body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
.product h3 { font-size: 21px; line-height: 1.15; }
.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}
.product .product__price { margin: 0; font-size: 36px; }
.product__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product__cta svg { width: 16px; height: 16px; color: var(--red); transition: transform 0.35s var(--ease); }
.product:hover .product__cta svg { transform: translateX(5px); }

.product-hero {
  position: relative;
  padding: calc(var(--nav-h) + 36px) 0 clamp(48px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(50% 60% at 20% 45%, rgba(241, 4, 0, 0.22), transparent 70%);
}
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.gallery__main {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 36px);
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 50px 90px -40px rgba(241, 4, 0, 0.55);
}
.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  transition: opacity 0.3s, transform 0.5s var(--ease);
}
.gallery__main.is-swapping img { opacity: 0; }
.gallery__glow { display: none; }
.gallery__thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.gallery__thumb {
  width: 84px; height: 64px;
  padding: 6px;
  border-radius: 12px;
  border: 2px solid transparent;
  background: #fff;
  opacity: 0.55;
  transition: opacity 0.25s, border-color 0.25s, transform 0.35s var(--ease);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }
.gallery__thumb:hover { opacity: 0.9; transform: translateY(-3px); }
.gallery__thumb.is-active { opacity: 1; border-color: var(--red); }

.product-title { font-size: clamp(34px, 4vw, 58px); margin: 16px 0 10px; }
.product-price {
  margin: 18px 0 26px;
  font-family: var(--font-display);
  font-stretch: 75%;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(52px, 5.5vw, 80px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #fff;
  text-shadow: 0 0 40px rgba(241, 4, 0, 0.45);
}
.product-perks {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.product-perks li { display: flex; gap: 12px; align-items: center; font-size: 15px; color: var(--muted); }
.product-perks svg { width: 18px; height: 18px; color: var(--red); flex: none; }
.product-perks a { color: #fff; text-decoration: underline; text-decoration-color: rgba(241, 4, 0, 0.6); text-underline-offset: 3px; }
.btn svg:not([class]) { flex: none; }

.product-desc h3 { font-size: 22px; font-style: normal; margin: 30px 0 10px; }
.product-desc > h3:first-child { margin-top: 0; }
.desc-hl {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--red-soft);
  border: 1px solid rgba(241, 4, 0, 0.35);
  font-weight: 600;
  color: #fff !important;
}
.desc-hl svg { width: 20px; height: 20px; color: var(--red-hot); flex: none; }

/* legal text */
.prose--legal { max-width: 80ch; margin: 0 auto; }
.prose--legal h2 { font-size: clamp(24px, 2.4vw, 32px); font-style: normal; margin: 44px 0 14px; }
.prose--legal h2:first-child { margin-top: 0; }
.prose--legal a,
.prose a { color: var(--red-hot); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 960px) {
  .highlights__grid, .info-grid--3 { grid-template-columns: 1fr; }
  .highlights { margin-top: -48px; }
  .hero:has(+ .highlights) { padding-bottom: 110px; }
  .product-layout { grid-template-columns: 1fr; }
  .visual-block--wide { aspect-ratio: 16 / 11; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1320px) {
  .topbar__addr { display: none; }
  .nav__link { padding: 0 12px; }
}

@media (max-width: 1180px) {
  :root { --top-h: 0px; --bar-h: 74px; }
  .topbar, .nav__menu { display: none; }
  .nav__toggle { display: block; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero__grid,
  .page-hero__grid,
  .stages,
  .split-layout,
  .finance__grid,
  .section-head--split { grid-template-columns: 1fr; }
  .hero__grid { gap: 8px; }
  .tacho { max-width: 380px; margin: 0 auto; order: -1; }
  .page-hero__art { max-width: 260px; margin: 0; order: -1; }
  .services-grid,
  .reviews-grid,
  .products,
  .stage-cards { grid-template-columns: 1fr 1fr; }
  .card--feature { grid-column: 1 / -1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .process__line { display: none; }
  .visual-block { aspect-ratio: 16 / 11; }
  .reveal--left, .reveal--right { transform: translateY(40px); }
}

@media (max-width: 640px) {
  :root { --bar-h: 66px; }
  body { font-size: 16px; }
  .nav__logo img { height: 40px; }
  .nav__cta .btn { display: none; }
  .hero { padding-bottom: 80px; }
  .hero__scroll { display: none; }
  .tacho { max-width: 250px; }
  .hero { padding-top: calc(var(--nav-h) + 12px); }
  .eyebrow { font-size: 12px; letter-spacing: 0.16em; }
  .services-grid,
  .reviews-grid,
  .products,
  .stage-cards,
  .info-grid,
  .form-grid,
  .process { grid-template-columns: 1fr; }
  .card { padding: 26px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .stage-tab { padding: 10px 14px; font-size: 13px; }
  .btn-row .btn { flex: 1 1 100%; }
  .plan__seg { font-size: 16px; }
  .fab { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track, .reviews-rail__track { animation: none !important; }
  .reviews-rail__row { overflow-x: auto; }
  .reveal, .stagger > *, .split .w > span { opacity: 1 !important; transform: none !important; }
  .reveal--clip { clip-path: none !important; }
  .preloader { display: none; }
  body::after { animation: none; }
}

/* testimonial strip on service pages */
.big-quote {
  position: relative;
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 28px;
  background: radial-gradient(70% 100% at 0% 0%, rgba(241, 4, 0, 0.18), transparent 60%), var(--surface);
  border: 1px solid var(--line-2);
  overflow: hidden;
}
.big-quote__mark {
  position: absolute;
  top: -40px;
  right: 30px;
  font-family: var(--font-display);
  font-size: 260px;
  line-height: 1;
  color: var(--red);
  opacity: 0.18;
  animation: float 6s ease-in-out infinite;
}
.big-quote blockquote {
  position: relative;
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-stretch: 85%;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.3;
  color: #fff;
}
.big-quote figcaption { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.big-quote figcaption strong { display: block; color: #fff; }
.big-quote figcaption small { display: block; font-size: 13px; color: var(--dim); }
.big-quote figcaption .btn { margin-left: auto; }

/* --------------------------------------------------------------------------
   File service — header button + homepage section
   -------------------------------------------------------------------------- */

.nav__files {
  --bx: 0px; --by: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(241, 4, 0, 0.55);
  background: rgba(241, 4, 0, 0.08);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  transform: translate(var(--bx), var(--by));
  transition: background-color 0.25s, border-color 0.25s, box-shadow 0.3s, transform 0.35s var(--ease);
}
.nav__files svg { width: 16px; height: 16px; color: var(--red-hot); transition: transform 0.35s var(--ease); }
.nav__files:hover { background: rgba(241, 4, 0, 0.2); border-color: var(--red); box-shadow: 0 0 26px -6px var(--red-glow); }
.nav__files:hover svg { transform: translateY(-2px); }
.nav__files i {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid var(--bg);
  animation: live-green 1.8s infinite;
}
@keyframes live-green {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  100% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
}

/* make room for the file service button on smaller desktops */
@media (max-width: 1440px) {
  .nav__item--home { display: none; }
}
@media (max-width: 1360px) {
  .nav__link { padding: 0 11px; letter-spacing: 0.08em; }
}

.file-service { overflow: hidden; }
.file-service::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(50% 60% at 85% 40%, rgba(241, 4, 0, 0.16), transparent 70%);
}
.fs-points { display: grid; gap: 12px; margin: 28px 0 30px; padding: 0; list-style: none; }
.fs-points li { display: flex; align-items: center; gap: 14px; font-size: 16.5px; color: #d4d4d8; }
.fs-points svg { width: 38px; height: 38px; padding: 9px; border-radius: 11px; background: var(--red-soft); color: var(--red-hot); flex: none; }
.fs-note { margin-top: 20px; font-size: 14px; }
.fs-note a { color: #fff; text-decoration: underline; text-decoration-color: rgba(241, 4, 0, 0.6); text-underline-offset: 3px; }
.fs-note span { display: block; margin-top: 6px; font-size: 12.5px; color: var(--dim); }

.fs-visual { position: relative; padding: 10px 26px 40px 0; }
.fs-visual__glow {
  position: absolute;
  inset: 8% 4%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(241, 4, 0, 0.42), transparent);
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite;
}
.fs-mock {
  position: relative;
  border-radius: 20px;
  background: #111114;
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.9);
  transform: perspective(1400px) rotateY(-9deg) rotateX(4deg);
  transition: transform 0.9s var(--ease);
}
.fs-visual:hover .fs-mock { transform: perspective(1400px) rotateY(0deg) rotateX(0deg); }
.fs-mock__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.03);
}
.fs-mock__chrome span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); }
.fs-mock__chrome span:first-child { background: var(--red); }
.fs-mock__chrome em {
  flex: 1;
  margin-left: 12px;
  padding: 4px 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  font-style: normal;
  font-size: 12px;
  color: var(--dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fs-mock__body { display: grid; gap: 18px; padding: 22px; }
.fs-mock__head { display: flex; align-items: center; justify-content: space-between; }
.fs-mock__head strong {
  font-family: var(--font-display);
  font-stretch: 75%;
  font-style: italic;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
}
.fs-live { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: #86efac; }
.fs-live i { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: live-green 1.8s infinite; }

.fs-file {
  display: grid;
  grid-template-columns: 52px 1fr 40px;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  transition: border-color 0.4s;
}
.fs-file__icon {
  position: relative;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #d4d4d8;
}
.fs-file__icon svg { width: 30px; height: 30px; }
.fs-file__icon b { position: absolute; bottom: 12px; font-size: 8px; letter-spacing: 0.06em; color: var(--red-hot); }
.fs-file__meta { min-width: 0; }
.fs-file__name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}
.fs-file__status { display: block; margin: 2px 0 10px; font-size: 13px; color: var(--muted); }
.fs-progress { height: 6px; border-radius: 6px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.fs-progress i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--red));
  transform: scaleX(0);
  transform-origin: left;
}
.fs-file__badge {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--red-hot);
  transition: background-color 0.4s, color 0.4s;
}
.fs-file__badge svg { width: 20px; height: 20px; }
.fs-spin svg { animation: spin 1.6s linear infinite; }

/* demo states: upload → tuning → ready (driven by main.js) */
.fs-when-upload, .fs-when-tuning, .fs-when-ready { display: none; }
[data-state="upload"] .fs-when-upload,
[data-state="tuning"] .fs-when-tuning,
[data-state="ready"] .fs-when-ready { display: inline-flex; }
[data-state="upload"] .fs-progress i { animation: fs-fill 2.3s var(--ease-in-out) forwards; }
@keyframes fs-fill { to { transform: scaleX(1); } }
[data-state="tuning"] .fs-progress i {
  transform: none;
  background: repeating-linear-gradient(-45deg, var(--red) 0 10px, #ff5a3a 10px 20px);
  background-size: 28px 100%;
  animation: fs-stripes 0.6s linear infinite;
}
@keyframes fs-stripes { to { background-position: 28px 0; } }
[data-state="ready"] .fs-progress i { transform: none; background: #22c55e; }
[data-state="ready"] .fs-file { border-color: rgba(34, 197, 94, 0.45); }
[data-state="ready"] .fs-file__badge { background: #22c55e; color: #fff; }

.fs-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 0; padding: 0; list-style: none; }
.fs-track__step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.4s, border-color 0.4s, background-color 0.4s;
}
.fs-track__step i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex: none; }
[data-state="upload"] [data-at="upload"],
[data-state="tuning"] [data-at="tuning"] { color: #fff; border-color: rgba(241, 4, 0, 0.6); background: var(--red-soft); }
[data-state="upload"] [data-at="upload"] i,
[data-state="tuning"] [data-at="tuning"] i { background: var(--red); animation: live 1.4s infinite; }
[data-state="tuning"] [data-at="upload"],
[data-state="ready"] .fs-track__step { color: #86efac; border-color: rgba(34, 197, 94, 0.35); }

.fs-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  border-radius: 999px;
  border: 1px dashed var(--line-2);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  transition: background-color 0.4s, color 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.fs-download svg { width: 18px; height: 18px; }
[data-state="ready"] .fs-download {
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px -10px var(--red-glow);
  animation: fs-pulse 1.6s ease-in-out infinite;
}
@keyframes fs-pulse { 50% { transform: scale(1.02); box-shadow: 0 14px 40px -6px rgba(241, 4, 0, 0.8); } }

.fs-toast {
  position: absolute;
  right: -26px;
  bottom: -30px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(28, 28, 32, 0.97);
  border: 1px solid var(--line-2);
  box-shadow: 0 24px 50px -16px rgba(0, 0, 0, 0.95);
  opacity: 0;
  transform: translateY(18px) scale(0.95);
  transition: opacity 0.4s, transform 0.6s var(--ease);
  pointer-events: none;
}
[data-state="ready"] .fs-toast { opacity: 1; transform: none; transition-delay: 0.45s; }
.fs-toast svg { width: 38px; height: 38px; padding: 9px; border-radius: 11px; background: var(--red); color: #fff; flex: none; }
.fs-toast span { font-size: 13px; line-height: 1.35; color: var(--muted); }
.fs-toast strong { display: block; font-size: 13px; color: #fff; }

.fs-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: clamp(56px, 7vw, 96px); }
.fs-step {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.fs-step:hover { transform: translateY(-6px); border-color: rgba(241, 4, 0, 0.45); }
.fs-step::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease);
}
.fs-steps.is-in .fs-step::before { transform: scaleX(1); }
.fs-steps.is-in .fs-step:nth-child(1)::before { transition-delay: 0.4s; }
.fs-steps.is-in .fs-step:nth-child(2)::before { transition-delay: 0.75s; }
.fs-steps.is-in .fs-step:nth-child(3)::before { transition-delay: 1.1s; }
.fs-steps.is-in .fs-step:nth-child(4)::before { transition-delay: 1.45s; }
.fs-step__num {
  position: absolute;
  top: 12px;
  right: 18px;
  font-family: var(--font-display);
  font-stretch: 75%;
  font-style: italic;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}
.fs-step__icon {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--red-hot);
  transition: background-color 0.3s, color 0.3s, transform 0.45s var(--ease);
}
.fs-step__icon svg { width: 24px; height: 24px; }
.fs-step:hover .fs-step__icon { background: var(--red); color: #fff; transform: rotate(-8deg); }
.fs-step h3 { font-size: 20px; margin-bottom: 8px; }
.fs-step p { font-size: 15px; }

@media (max-width: 960px) {
  .fs-steps { grid-template-columns: 1fr 1fr; }
  .fs-visual { padding: 10px 0 40px; }
  .fs-mock { transform: none; }
  .fs-toast { right: 12px; }
}
@media (max-width: 640px) {
  .nav__files { display: none; }
  .fs-steps { grid-template-columns: 1fr; }
  .fs-mock__body { padding: 16px; }
  .fs-track__step { padding: 9px 8px; font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .fs-mock { transform: none; }
}

/* never let the grid squash the logo; scale the bar down a touch on small laptops instead */
.nav__logo img { max-width: none; }
@media (min-width: 1181px) and (max-width: 1300px) {
  .nav__inner { gap: 16px; }
  .nav__logo img { height: 44px; }
  .nav__link { padding: 0 9px; letter-spacing: 0.07em; font-size: 13.5px; }
  .nav__files { padding: 0 13px 0 12px; }
  .nav__cta { gap: 10px; }
}

/* icons must never be squeezed to make room (a % max-width lets flex/grid collapse them to 0) */
.nav svg, .btn svg, .mega svg { max-width: none; flex: none; }

/* the header gets a wider track than page content so everything fits on one line */
.nav__inner, .topbar__inner { max-width: 1440px; }
@media (max-width: 1340px) {
  .nav__item--stats { display: none; }
}

/* footer credit bar */
.footer__credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  text-align: center;
}
.footer__credit a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: #d4d4d8;
  transition: color 0.25s;
}
.footer__credit a:hover { color: #fff; }
.footer__credit-mark {
  width: 15px;
  height: 15px;
  color: var(--red);
  transition: transform 0.4s var(--ease);
}
.footer__credit a:hover .footer__credit-mark { transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   Photography
   -------------------------------------------------------------------------- */

.photo {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  isolation: isolate;
}
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.photo:hover img { transform: scale(1.04); }
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 10, 0) 45%, rgba(9, 9, 10, 0.82));
  pointer-events: none;
}
.photo__cap {
  position: absolute;
  left: 18px;
  bottom: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}
.photo__cap::before { content: ""; width: 20px; height: 2px; background: var(--red); }
.photo--hero { aspect-ratio: 1; }

/* workshop shot with an inset photo and a badge */
.shot-stack { position: relative; padding: 0 22px 34px 0; }
.shot-stack__main { aspect-ratio: 4 / 3; box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.95); }
.shot-stack__inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 4 / 3;
  border: 6px solid var(--bg);
  border-radius: 18px;
  box-shadow: 0 30px 60px -22px rgba(0, 0, 0, 0.95);
}
.shot-stack__inset .photo__cap { left: 12px; bottom: 10px; font-size: 10px; letter-spacing: 0.12em; }
.shot-stack__inset .photo__cap::before { width: 12px; }
.shot-stack__badge {
  position: absolute;
  left: -10px;
  top: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px -10px var(--red-glow);
}
.shot-stack__badge svg { width: 15px; height: 15px; }
.stats--band { margin-top: clamp(32px, 4vw, 56px); }

/* highlight card carrying a photo instead of a watermark word */
.hl--photo { display: flex; flex-direction: column; }
.hl__photo { position: absolute; inset: 0; z-index: -1; }
.hl__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.62), rgba(12, 12, 14, 0.93));
}
.hl__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.hl--photo:hover .hl__photo img { transform: scale(1.06); }

/* service card with a photo behind the copy */
.card--photo { min-height: 340px; }
.card--photo .card__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; border-radius: inherit; }
.card--photo .card__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; transition: transform 1.2s var(--ease), opacity 0.6s; }
.card--photo .card__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12, 12, 14, 0.96) 30%, rgba(12, 12, 14, 0.55));
}
.card--photo:hover .card__bg img { transform: scale(1.05); opacity: 0.55; }

/* a whole section on a photographic backdrop */
.section--photo { position: relative; isolation: isolate; }
.section--photo .section-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.section--photo .section-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; filter: grayscale(0.35); }
.section--photo .section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(9, 9, 10, 0.72) 45%, var(--bg) 100%);
}

/* opening hours */
.topbar__hours span { display: inline-flex; align-items: center; gap: 8px; color: #b8b8be; white-space: nowrap; }
.topbar__hours svg { width: 15px; height: 15px; color: var(--red); }
.footer__hours { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 15px; }
.footer__hours svg { width: 18px; height: 18px; color: var(--red); flex: none; margin-top: 3px; }
.footer__hours small { display: block; font-size: 13px; color: var(--dim); }
.contact-item__note { font-style: normal; font-size: 13px; color: var(--red-hot); }

@media (max-width: 1440px) { .topbar__hours { display: none; } }
@media (max-width: 960px) {
  .shot-stack { padding: 0 16px 26px 0; }
  .photo--hero { aspect-ratio: 4 / 3; }
}

/* photo variants used on the service pages */
.photo--wide { aspect-ratio: 3 / 2; }
.photo--tall { aspect-ratio: 3 / 4; }
.shot-stack--solo { padding: 0 0 26px; }
.shot-stack--solo .photo { aspect-ratio: 16 / 10; box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.95); }
.shot-stack--solo .photo--tall { aspect-ratio: 3 / 4; }
.shot-stack--solo .shot-stack__badge { left: 50%; transform: translateX(-50%); top: auto; bottom: 0; white-space: nowrap; }
@media (max-width: 640px) {
  .photo--wide { aspect-ratio: 4 / 3; }
  .shot-stack--solo .shot-stack__badge { font-size: 11px; padding: 9px 12px; }
}

/* --------------------------------------------------------------------------
   Hero with video background
   -------------------------------------------------------------------------- */

.hero--video { padding: calc(var(--nav-h) + 70px) 0 150px; }
.hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background-color: #000;
  background-size: cover;
  background-position: center;
}
.hero__video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
/* keep the headline readable over the footage */
.hero--video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(95deg, rgba(9, 9, 10, 0.95) 0%, rgba(9, 9, 10, 0.86) 34%, rgba(9, 9, 10, 0.45) 62%, rgba(9, 9, 10, 0.55) 100%),
    linear-gradient(180deg, rgba(9, 9, 10, 0.8) 0%, rgba(9, 9, 10, 0.1) 35%, rgba(9, 9, 10, 0.95) 100%);
}
/* keep the hero copy on the site's normal left edge, just capped in width */
.hero__inner { position: relative; }
.hero__inner > * { max-width: 760px; }
.hero__inner > .hero__lead { max-width: 640px; }
.hero--video .hero__badges { margin-top: 36px; }

@media (max-width: 960px) {
  .hero--video { padding: calc(var(--nav-h) + 200px) 0 100px; }
  .hero__video-el { object-position: 62% 40%; }
  .hero--video::before {
    background:
      linear-gradient(180deg, rgba(9, 9, 10, 0.45) 0%, rgba(9, 9, 10, 0.35) 22%, rgba(9, 9, 10, 0.88) 52%, var(--bg) 82%),
      linear-gradient(95deg, rgba(9, 9, 10, 0.55), rgba(9, 9, 10, 0.2));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video-el { display: none; }
}

/* the closing call to action carries its photo a little stronger */
.cta.section--photo .section-bg img { opacity: 0.34; filter: grayscale(0.15); }
.cta.section--photo .section-bg::after {
  background: radial-gradient(70% 90% at 50% 50%, rgba(9, 9, 10, 0.92) 25%, rgba(9, 9, 10, 0.7) 60%, var(--bg) 100%);
}

/* --------------------------------------------------------------------------
   Dealer finder
   -------------------------------------------------------------------------- */

.dealer-finder {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 20px;
  align-items: stretch;
}
.dealer-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}
.dealer-search { position: relative; }
.dealer-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  color: var(--dim);
  pointer-events: none;
}
.dealer-search input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.dealer-search input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(241, 4, 0, 0.16); }
.dealer-near { justify-content: center; }

.dealer-list { display: grid; gap: 10px; margin: 4px 0 0; padding: 0; list-style: none; }
.dealer-list > li {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.3s, background-color 0.3s;
}
.dealer-list > li:hover { border-color: rgba(241, 4, 0, 0.4); }
.dealer-card {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 16px 18px 12px;
  border: 0;
  background: none;
  text-align: left;
}
.dealer-card__role {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-hot);
}
.dealer-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
}
.dealer-card__addr,
.dealer-card__meta,
.dealer-card__dist {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}
.dealer-card svg { width: 15px; height: 15px; color: var(--red); flex: none; margin-top: 2px; }
.dealer-card__dist { color: #86efac; font-weight: 600; }
.dealer-list > li:has(.is-active),
.dealer-card.is-active { background: rgba(241, 4, 0, 0.08); }
.dealer-list > li:has(.dealer-card.is-active) { border-color: var(--red); }
.dealer-card__links {
  display: flex;
  gap: 18px;
  padding: 0 18px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dealer-card__links a { display: inline-flex; align-items: center; gap: 7px; color: #d4d4d8; transition: color 0.2s; }
.dealer-card__links a:hover { color: #fff; }
.dealer-card__links svg { width: 14px; height: 14px; color: var(--red); }
.dealer-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--dim);
}
.dealer-note svg { width: 18px; height: 18px; color: var(--red); flex: none; margin-top: 2px; }
.dealer-note a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.dealer-map-wrap {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}
#dealer-map { position: absolute; inset: 0; background: #0d0d10; }

/* map furniture, themed */
#dealer-map.leaflet-container { background: #0d0d10; font-family: var(--font-body); }
#dealer-map .leaflet-control-zoom a {
  background: rgba(21, 21, 24, 0.95) !important;
  color: #fff !important;
  border-color: var(--line) !important;
}
#dealer-map .leaflet-control-zoom a:hover { background: var(--red) !important; }
#dealer-map .leaflet-control-attribution {
  background: rgba(9, 9, 10, 0.72) !important;
  color: var(--dim) !important;
  font-size: 10px !important;
}
#dealer-map .leaflet-control-attribution a { color: #a1a1aa !important; }
#dealer-map .leaflet-popup-content-wrapper {
  background: #17171b;
  color: var(--text);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.9);
}
#dealer-map .leaflet-popup-tip { background: #17171b; border: 1px solid var(--line-2); }
#dealer-map .leaflet-popup-content { margin: 14px 16px; display: grid; gap: 4px; font-size: 14px; }
#dealer-map .leaflet-popup-content strong {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
#dealer-map .leaflet-popup-content span { color: var(--muted); }
#dealer-map .leaflet-popup-content a {
  justify-self: start;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-hot) !important;
}
#dealer-map a.leaflet-popup-close-button { color: var(--dim); }

/* our own pin */
.map-pin { position: relative; }
.map-pin__dot {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}
.map-pin__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: pin-pulse 2s var(--ease) infinite;
}
@keyframes pin-pulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.1); opacity: 0; }
}

@media (max-width: 960px) {
  .dealer-finder { grid-template-columns: 1fr; }
  .dealer-map-wrap { min-height: 380px; order: -1; }
}

/* --------------------------------------------------------------------------
   Enquiry form: sending animation and confirmation
   -------------------------------------------------------------------------- */

.form-card { position: relative; overflow: hidden; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* progress stripe across the top of the card while sending */
.form-progress {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}
.gu-form { position: relative; }
.gu-form.is-sending .form-progress { opacity: 1; }
.form-progress span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--red), transparent);
  animation: form-progress 1.1s linear infinite;
}
@keyframes form-progress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* the send button: label → spinner → tick */
.btn--send { position: relative; min-width: 190px; transition: background-color 0.4s, box-shadow 0.4s, transform 0.35s var(--ease); }
.btn--send .btn__label,
.btn--send .btn__arrow { transition: opacity 0.25s, transform 0.35s var(--ease); }
.btn--send .btn__spinner,
.btn--send .btn__tick {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  pointer-events: none;
}
.btn--send .btn__spinner {
  width: 22px; height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}
.btn--send .btn__tick {
  width: 24px; height: 24px;
  margin: -12px 0 0 -12px;
  stroke-dasharray: 32;
  stroke-dashoffset: 32;
}
.btn--send[data-state="sending"] .btn__label,
.btn--send[data-state="sending"] .btn__arrow,
.btn--send[data-state="sent"] .btn__label,
.btn--send[data-state="sent"] .btn__arrow { opacity: 0; transform: translateY(-6px); }
.btn--send[data-state="sending"] .btn__spinner { opacity: 1; }
.btn--send[data-state="sent"] { background: #16a34a; box-shadow: 0 12px 32px -10px rgba(22, 163, 74, 0.8); }
.btn--send[data-state="sent"] .btn__tick { opacity: 1; animation: tick-draw 0.5s var(--ease) forwards; }
@keyframes tick-draw { to { stroke-dashoffset: 0; } }
.btn--send[data-state="error"] { background: #b91c1c; animation: shake 0.5s var(--ease-in-out); }
@keyframes shake {
  20% { transform: translateX(-7px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(3px); }
}
.gu-form.is-sending .field input,
.gu-form.is-sending .field textarea,
.gu-form.is-sending .field select { opacity: 0.55; }

/* confirmation panel */
.form-sent {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(30px, 5vw, 56px) clamp(20px, 4vw, 44px);
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s, transform 0.7s var(--ease);
}
.form-sent.is-in { opacity: 1; transform: none; }
.form-sent h3 { font-size: clamp(26px, 3vw, 36px); font-style: italic; }
.form-sent p { font-size: 16px; max-width: 42ch; }
.form-sent a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.form-sent__badge { display: block; width: 84px; height: 84px; }
.form-sent__badge--big { width: 110px; height: 110px; margin: 0 auto; }
.form-sent__badge svg { width: 100%; height: 100%; overflow: visible; }
.form-sent__circle {
  fill: none;
  stroke: #16a34a;
  stroke-width: 3;
  stroke-dasharray: 145;
  stroke-dashoffset: 145;
}
.form-sent__tick {
  fill: none;
  stroke: #16a34a;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  filter: drop-shadow(0 0 10px rgba(22, 163, 74, 0.6));
}
.form-sent.is-in .form-sent__circle,
.form-sent__badge--big.is-in .form-sent__circle { animation: badge-circle 0.7s var(--ease) forwards; }
.form-sent.is-in .form-sent__tick,
.form-sent__badge--big.is-in .form-sent__tick { animation: badge-tick 0.45s var(--ease) 0.45s forwards; }
@keyframes badge-circle { to { stroke-dashoffset: 0; } }
@keyframes badge-tick { to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  .form-sent__circle, .form-sent__tick { stroke-dashoffset: 0; }
  .btn--send .btn__tick { stroke-dashoffset: 0; }
}

/* --------------------------------------------------------------------------
   Phones: a photo page header runs edge to edge, like a banner
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .page-hero:has(.page-hero__art--photo) { padding-top: var(--nav-h); }
  .page-hero__art--photo {
    order: -1;
    max-width: none;
    width: calc(100% + var(--gutter) * 2);
    margin: 0 calc(var(--gutter) * -1) 28px;
    aspect-ratio: auto;
  }
  .page-hero__art--photo .photo {
    border-radius: 0;
    aspect-ratio: 16 / 11;
  }
  /* fade the bottom of the photo into the page so the heading sits cleanly under it */
  .page-hero__art--photo .photo::after {
    background: linear-gradient(180deg, rgba(9, 9, 10, 0.15) 25%, rgba(9, 9, 10, 0.9) 88%, var(--bg) 100%);
  }
  .page-hero__art--photo .photo__cap { left: var(--gutter); bottom: 18px; }
}

@media (max-width: 640px) {
  .page-hero__art--photo .photo { aspect-ratio: 5 / 4; }
}

/* footer credit now reads as plain text rather than an outbound link */
.footer__credit strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: #d4d4d8;
}

/* footer credit: name plus the web address */
.footer__credit a em {
  font-style: normal;
  margin-left: 8px;
  padding-left: 9px;
  border-left: 1px solid var(--line-2);
  color: var(--red-hot);
  letter-spacing: 0.16em;
}
