:root {
  --bg: #0b0d0e;
  --bg-2: #111416;
  --panel: rgba(210, 216, 216, 0.105);
  --panel-solid: #171b1e;
  --silver: #d8d9d7;
  --steel: #9ea3a6;
  --muted: #a6abad;
  --dim: #72787b;
  --line: rgba(210, 196, 255, 0.28);
  --line-strong: rgba(226, 218, 255, 0.56);
  --accent: #d5963f;
  --accent-2: #ffc46f;
  --gold-bright: #ffe1a6;
  --gold-deep: #9c6425;
  --gold-text-hi: #fff1c7;
  --gold-text-mid: #f1b45d;
  --gold-text-low: #b36b24;
  --warm-haze: rgba(240, 183, 105, 0.12);
  --violet-deep: #503880;
  --violet: #7e5bd6;
  --violet-2: #b7a2ff;
  --violet-3: #d2c4ff;
  --violet-haze: rgba(126, 91, 214, 0.14);
  --violet-haze-strong: rgba(126, 91, 214, 0.24);
  --violet-line: rgba(183, 162, 255, 0.66);
  --violet-line-strong: rgba(226, 218, 255, 0.9);
  --glass: rgba(206, 214, 215, 0.11);
  --glass-strong: rgba(218, 224, 224, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --type-kicker: clamp(0.96rem, 1.04vw, 1.16rem);
  --type-section-title: clamp(2rem, 3.05vw, 3.18rem);
  --type-card-title: clamp(1rem, 0.96vw, 1.12rem);
  --type-body: clamp(0.98rem, 0.98vw, 1.05rem);
  --button-height: 56px;
  --button-padding-x: clamp(26px, 2.7vw, 34px);
  --button-font: clamp(0.82rem, 0.86vw, 0.92rem);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--silver);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link,
.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:focus {
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: #fff;
  color: #000;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 0 clamp(18px, 4vw, 54px);
  color: #f2f2ef;
  border-bottom: 1px solid rgba(210, 196, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 8, 9, 0.82), rgba(7, 8, 9, 0.46) 72%, transparent),
    linear-gradient(90deg, rgba(183, 162, 255, 0.05), transparent 28%, rgba(240, 183, 105, 0.035) 72%, transparent);
  transition: background 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(11, 12, 13, 0.64);
  border-color: rgba(210, 196, 255, 0.24);
  backdrop-filter: blur(18px) saturate(132%);
}

.brand {
  display: flex;
  align-items: center;
  width: 204px;
  height: 80px;
  overflow: visible;
}

.brand picture {
  display: flex;
  align-items: center;
}

.footer-brand {
  width: 166px;
}

.brand img {
  flex: 0 0 auto;
  width: 204px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 12px rgba(183, 162, 255, 0.08));
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  color: #dcdfdd;
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.main-nav a,
.footer-links a {
  position: relative;
}

.main-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-2), var(--violet-3) 44%, var(--violet) 70%, var(--accent-2));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  border: 1px solid rgba(210, 196, 255, 0.82);
  color: #f4f2ed;
  font-size: var(--button-font);
  font-weight: 840;
  text-transform: uppercase;
  background:
    linear-gradient(90deg, rgba(226, 218, 255, 0.72), rgba(126, 91, 214, 0.5)) left top / 34px 1px no-repeat,
    linear-gradient(180deg, rgba(226, 218, 255, 0.7), rgba(126, 91, 214, 0.42)) left top / 1px 20px no-repeat,
    linear-gradient(270deg, rgba(226, 218, 255, 0.72), rgba(126, 91, 214, 0.5)) right top / 34px 1px no-repeat,
    linear-gradient(180deg, rgba(226, 218, 255, 0.7), rgba(126, 91, 214, 0.42)) right top / 1px 20px no-repeat,
    linear-gradient(90deg, rgba(126, 91, 214, 0.32), transparent) left bottom / 24px 1px no-repeat,
    linear-gradient(270deg, rgba(126, 91, 214, 0.32), transparent) right bottom / 24px 1px no-repeat,
    linear-gradient(180deg, rgba(255, 240, 200, 0.1), rgba(255, 255, 255, 0.018) 42%, rgba(0, 0, 0, 0.28)),
    linear-gradient(90deg, rgba(14, 15, 17, 0.98), rgba(42, 34, 42, 0.94) 50%, rgba(14, 15, 17, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 240, 200, 0.18), inset 0 -1px 0 rgba(183, 162, 255, 0.2), 0 0 0 1px rgba(126, 91, 214, 0.34), 0 14px 34px rgba(0, 0, 0, 0.3), 0 0 18px rgba(126, 91, 214, 0.16);
  isolation: isolate;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease, border-color 320ms ease, background 360ms ease, color 220ms ease, box-shadow 420ms ease;
  will-change: transform;
}

.header-cta::before,
.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(104deg, transparent 0 39%, rgba(255, 246, 221, 0.08) 43%, rgba(255, 255, 255, 0.58) 47%, rgba(224, 214, 255, 0.28) 49%, rgba(126, 91, 214, 0.14) 52%, transparent 58%);
  transform: translateX(-128%) skewX(-8deg);
  transition: opacity 220ms ease, transform 980ms cubic-bezier(0.19, 1, 0.22, 1);
}

.header-cta::after,
.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 240, 200, 0.12);
  background:
    linear-gradient(180deg, transparent 0 86%, rgba(183, 162, 255, 0.2) 100%),
    linear-gradient(90deg, transparent 0 12%, rgba(183, 162, 255, 0.34) 50%, transparent 88%) left bottom / 100% 1px no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(183, 162, 255, 0.34), 0 9px 18px -14px rgba(126, 91, 214, 0.74);
}

.header-cta:hover,
.btn:hover,
.header-cta:focus-visible,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(244, 239, 255, 1);
  box-shadow: inset 0 1px 0 rgba(255, 240, 200, 0.3), inset 0 -1px 0 rgba(183, 162, 255, 0.26), 0 0 0 1px rgba(210, 196, 255, 0.52), 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 30px rgba(126, 91, 214, 0.3);
}

.header-cta:hover::before,
.btn:hover::before,
.header-cta:focus-visible::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateX(128%) skewX(-8deg);
}

.btn.primary {
  color: #140f09;
  background:
    linear-gradient(90deg, rgba(239, 234, 255, 0.92), rgba(126, 91, 214, 0.82) 72%, transparent) left top / 42px 1px no-repeat,
    linear-gradient(180deg, rgba(239, 234, 255, 0.9), rgba(126, 91, 214, 0.74) 72%, transparent) left top / 1px 28px no-repeat,
    linear-gradient(270deg, rgba(239, 234, 255, 0.92), rgba(126, 91, 214, 0.82) 72%, transparent) right top / 42px 1px no-repeat,
    linear-gradient(180deg, rgba(239, 234, 255, 0.9), rgba(126, 91, 214, 0.74) 72%, transparent) right top / 1px 28px no-repeat,
    linear-gradient(90deg, rgba(126, 91, 214, 0.72), rgba(210, 196, 255, 0.28) 46%, transparent) left bottom / 44px 1px no-repeat,
    linear-gradient(270deg, rgba(126, 91, 214, 0.72), rgba(210, 196, 255, 0.28) 46%, transparent) right bottom / 44px 1px no-repeat,
    linear-gradient(103deg, transparent 0 36%, rgba(255, 255, 255, 0.22) 43%, rgba(255, 236, 188, 0.16) 48%, transparent 57%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 224, 160, 0.08) 36%, rgba(67, 39, 14, 0.34)),
    linear-gradient(90deg, rgba(246, 205, 128, 1) 0%, rgba(233, 160, 64, 1) 43%, rgba(177, 96, 27, 1) 78%, rgba(102, 57, 20, 0.98) 100%);
  border-color: rgba(226, 218, 255, 0.96);
  text-shadow: 0 1px 0 rgba(255, 246, 224, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 246, 221, 0.46), inset 0 -1px 0 rgba(70, 42, 15, 0.58), inset 0 0 0 1px rgba(255, 232, 176, 0.18), 0 0 0 1px rgba(183, 162, 255, 0.62), 0 16px 36px rgba(0, 0, 0, 0.32), 0 0 24px rgba(126, 91, 214, 0.24), 0 0 16px rgba(240, 183, 105, 0.18);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background:
    linear-gradient(90deg, rgba(255, 252, 255, 0.98), rgba(126, 91, 214, 0.95) 72%, transparent) left top / 50px 1px no-repeat,
    linear-gradient(180deg, rgba(255, 252, 255, 0.98), rgba(126, 91, 214, 0.86) 74%, transparent) left top / 1px 34px no-repeat,
    linear-gradient(270deg, rgba(255, 252, 255, 0.98), rgba(126, 91, 214, 0.95) 72%, transparent) right top / 50px 1px no-repeat,
    linear-gradient(180deg, rgba(255, 252, 255, 0.98), rgba(126, 91, 214, 0.86) 74%, transparent) right top / 1px 34px no-repeat,
    linear-gradient(90deg, rgba(126, 91, 214, 0.9), rgba(226, 218, 255, 0.36) 48%, transparent) left bottom / 54px 1px no-repeat,
    linear-gradient(270deg, rgba(126, 91, 214, 0.9), rgba(226, 218, 255, 0.36) 48%, transparent) right bottom / 54px 1px no-repeat,
    linear-gradient(103deg, transparent 0 35%, rgba(255, 255, 255, 0.28) 43%, rgba(255, 239, 194, 0.2) 48%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 224, 160, 0.1) 36%, rgba(67, 39, 14, 0.3)),
    linear-gradient(90deg, rgba(255, 216, 144, 1) 0%, rgba(242, 174, 74, 1) 42%, rgba(190, 103, 28, 1) 78%, rgba(115, 64, 21, 1) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64), inset 0 -1px 0 rgba(75, 48, 17, 0.42), inset 0 0 0 1px rgba(255, 232, 176, 0.24), 0 0 0 1px rgba(226, 218, 255, 0.72), 0 20px 44px rgba(0, 0, 0, 0.36), 0 0 34px rgba(126, 91, 214, 0.34), 0 0 24px rgba(240, 183, 105, 0.26);
}

.btn.ghost {
  color: #f4f2ed;
  border-color: rgba(226, 218, 255, 0.88);
  background:
    linear-gradient(90deg, rgba(226, 218, 255, 0.78), rgba(126, 91, 214, 0.62) 72%, transparent) left top / 42px 1px no-repeat,
    linear-gradient(180deg, rgba(226, 218, 255, 0.72), rgba(126, 91, 214, 0.52) 74%, transparent) left top / 1px 28px no-repeat,
    linear-gradient(270deg, rgba(226, 218, 255, 0.78), rgba(126, 91, 214, 0.62) 72%, transparent) right top / 42px 1px no-repeat,
    linear-gradient(180deg, rgba(226, 218, 255, 0.72), rgba(126, 91, 214, 0.52) 74%, transparent) right top / 1px 28px no-repeat,
    linear-gradient(90deg, rgba(126, 91, 214, 0.6), rgba(210, 196, 255, 0.24) 46%, transparent) left bottom / 44px 1px no-repeat,
    linear-gradient(270deg, rgba(126, 91, 214, 0.6), rgba(210, 196, 255, 0.24) 46%, transparent) right bottom / 44px 1px no-repeat,
    linear-gradient(180deg, rgba(255, 240, 200, 0.11), rgba(255, 255, 255, 0.018) 42%, rgba(7, 8, 9, 0.28)),
    linear-gradient(90deg, rgba(15, 16, 18, 0.96), rgba(41, 33, 44, 0.9) 50%, rgba(15, 16, 18, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 240, 200, 0.16), inset 0 -1px 0 rgba(183, 162, 255, 0.34), 0 0 0 1px rgba(126, 91, 214, 0.56), 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(126, 91, 214, 0.28);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background:
    linear-gradient(90deg, rgba(250, 247, 255, 0.92), rgba(126, 91, 214, 0.78) 72%, transparent) left top / 50px 1px no-repeat,
    linear-gradient(180deg, rgba(250, 247, 255, 0.88), rgba(126, 91, 214, 0.68) 74%, transparent) left top / 1px 34px no-repeat,
    linear-gradient(270deg, rgba(250, 247, 255, 0.92), rgba(126, 91, 214, 0.78) 72%, transparent) right top / 50px 1px no-repeat,
    linear-gradient(180deg, rgba(250, 247, 255, 0.88), rgba(126, 91, 214, 0.68) 74%, transparent) right top / 1px 34px no-repeat,
    linear-gradient(90deg, rgba(126, 91, 214, 0.78), rgba(226, 218, 255, 0.32) 48%, transparent) left bottom / 54px 1px no-repeat,
    linear-gradient(270deg, rgba(126, 91, 214, 0.78), rgba(226, 218, 255, 0.32) 48%, transparent) right bottom / 54px 1px no-repeat,
    linear-gradient(180deg, rgba(255, 240, 200, 0.15), rgba(255, 255, 255, 0.02) 42%, rgba(7, 8, 9, 0.24)),
    linear-gradient(90deg, rgba(12, 13, 15, 0.98), rgba(48, 38, 56, 0.94) 50%, rgba(12, 13, 15, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 240, 200, 0.2), inset 0 -1px 0 rgba(183, 162, 255, 0.44), 0 0 0 1px rgba(226, 218, 255, 0.66), 0 20px 44px rgba(0, 0, 0, 0.36), 0 0 34px rgba(126, 91, 214, 0.34);
}

.header-cta {
  min-height: 56px;
  min-width: 134px;
  padding: 0 32px;
  font-size: 0.86rem;
  color: #160f08;
  border-color: rgba(226, 218, 255, 0.96);
  background:
    linear-gradient(90deg, rgba(239, 234, 255, 0.92), rgba(126, 91, 214, 0.82) 72%, transparent) left top / 42px 1px no-repeat,
    linear-gradient(180deg, rgba(239, 234, 255, 0.9), rgba(126, 91, 214, 0.74) 72%, transparent) left top / 1px 28px no-repeat,
    linear-gradient(270deg, rgba(239, 234, 255, 0.92), rgba(126, 91, 214, 0.82) 72%, transparent) right top / 42px 1px no-repeat,
    linear-gradient(180deg, rgba(239, 234, 255, 0.9), rgba(126, 91, 214, 0.74) 72%, transparent) right top / 1px 28px no-repeat,
    linear-gradient(90deg, rgba(126, 91, 214, 0.72), rgba(210, 196, 255, 0.28) 46%, transparent) left bottom / 44px 1px no-repeat,
    linear-gradient(270deg, rgba(126, 91, 214, 0.72), rgba(210, 196, 255, 0.28) 46%, transparent) right bottom / 44px 1px no-repeat,
    linear-gradient(103deg, transparent 0 36%, rgba(255, 255, 255, 0.22) 43%, rgba(255, 236, 188, 0.16) 48%, transparent 57%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 224, 160, 0.08) 36%, rgba(67, 39, 14, 0.34)),
    linear-gradient(90deg, rgba(246, 205, 128, 1) 0%, rgba(233, 160, 64, 1) 43%, rgba(177, 96, 27, 1) 78%, rgba(102, 57, 20, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 246, 221, 0.46), inset 0 -1px 0 rgba(70, 42, 15, 0.58), inset 0 0 0 1px rgba(255, 232, 176, 0.18), 0 0 0 1px rgba(183, 162, 255, 0.62), 0 16px 36px rgba(0, 0, 0, 0.32), 0 0 24px rgba(126, 91, 214, 0.24);
  text-shadow: 0 1px 0 rgba(255, 246, 224, 0.44);
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(239, 234, 255, 1);
  background:
    linear-gradient(90deg, rgba(255, 252, 255, 0.98), rgba(126, 91, 214, 0.95) 72%, transparent) left top / 50px 1px no-repeat,
    linear-gradient(180deg, rgba(255, 252, 255, 0.98), rgba(126, 91, 214, 0.86) 74%, transparent) left top / 1px 34px no-repeat,
    linear-gradient(270deg, rgba(255, 252, 255, 0.98), rgba(126, 91, 214, 0.95) 72%, transparent) right top / 50px 1px no-repeat,
    linear-gradient(180deg, rgba(255, 252, 255, 0.98), rgba(126, 91, 214, 0.86) 74%, transparent) right top / 1px 34px no-repeat,
    linear-gradient(90deg, rgba(126, 91, 214, 0.9), rgba(226, 218, 255, 0.36) 48%, transparent) left bottom / 54px 1px no-repeat,
    linear-gradient(270deg, rgba(126, 91, 214, 0.9), rgba(226, 218, 255, 0.36) 48%, transparent) right bottom / 54px 1px no-repeat,
    linear-gradient(103deg, transparent 0 35%, rgba(255, 255, 255, 0.28) 43%, rgba(255, 239, 194, 0.2) 48%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 224, 160, 0.1) 36%, rgba(67, 39, 14, 0.3)),
    linear-gradient(90deg, rgba(255, 216, 144, 1) 0%, rgba(242, 174, 74, 1) 42%, rgba(190, 103, 28, 1) 78%, rgba(115, 64, 21, 1) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 245, 218, 0.52), inset 0 -1px 0 rgba(75, 48, 17, 0.42), inset 0 0 0 1px rgba(255, 232, 176, 0.24), 0 0 0 1px rgba(226, 218, 255, 0.72), 0 20px 44px rgba(0, 0, 0, 0.36), 0 0 34px rgba(126, 91, 214, 0.34), 0 0 22px rgba(240, 183, 105, 0.22);
}

.menu-toggle {
  position: relative;
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(226, 218, 255, 0.88);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32), 0 0 28px rgba(126, 91, 214, 0.28), 0 0 16px rgba(240, 183, 105, 0.14);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 3px auto;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #0b0d0e;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.44;
  background:
    radial-gradient(ellipse at 42% 63%, rgba(226, 218, 255, 0.24), rgba(126, 91, 214, 0.09) 18%, transparent 32%),
    radial-gradient(ellipse at 47% 73%, rgba(126, 91, 214, 0.15), transparent 20%),
    radial-gradient(ellipse at 74% 16%, rgba(232, 224, 255, 0.16), rgba(183, 162, 255, 0.06) 18%, transparent 32%),
    radial-gradient(ellipse at 87% 62%, rgba(183, 162, 255, 0.13), transparent 20%),
    radial-gradient(ellipse at 72% 78%, rgba(126, 91, 214, 0.1), transparent 18%),
    linear-gradient(177deg, transparent 0 30.6%, rgba(226, 218, 255, 0.12) 31%, rgba(126, 91, 214, 0.16) 31.28%, transparent 31.65%),
    linear-gradient(177deg, transparent 0 52.2%, rgba(183, 162, 255, 0.1) 52.55%, rgba(126, 91, 214, 0.14) 52.82%, transparent 53.18%);
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, transparent 0 24%, #000 36%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0 24%, #000 36%, #000 96%, transparent 100%);
}

.motion-ready .hero::before {
  animation: technicalEdgeLight 13.5s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.72;
  background:
    radial-gradient(ellipse at 39% 63.5%, rgba(232, 224, 255, 0.48) 0 1px, rgba(126, 91, 214, 0.24) 2px, transparent 16px),
    radial-gradient(ellipse at 45.5% 66.5%, rgba(210, 196, 255, 0.36) 0 1px, rgba(126, 91, 214, 0.2) 2px, transparent 18px),
    radial-gradient(ellipse at 50.2% 73.2%, rgba(183, 162, 255, 0.34) 0 1px, rgba(80, 56, 128, 0.18) 2px, transparent 16px),
    radial-gradient(circle at 61.8% 8.2%, rgba(232, 224, 255, 0.58) 0 1px, rgba(183, 162, 255, 0.24) 2px, transparent 6px),
    radial-gradient(circle at 66.5% 14.8%, rgba(210, 196, 255, 0.5) 0 1px, rgba(126, 91, 214, 0.18) 2px, transparent 6px),
    radial-gradient(circle at 72.6% 22.6%, rgba(232, 224, 255, 0.48) 0 1px, rgba(126, 91, 214, 0.2) 2px, transparent 7px),
    radial-gradient(circle at 74.8% 13.4%, rgba(232, 224, 255, 0.72) 0 1px, rgba(183, 162, 255, 0.3) 2px, transparent 7px),
    radial-gradient(circle at 83.5% 18.8%, rgba(210, 196, 255, 0.62) 0 1px, rgba(126, 91, 214, 0.24) 2px, transparent 7px),
    radial-gradient(circle at 70.4% 30.6%, rgba(210, 196, 255, 0.5) 0 1px, rgba(126, 91, 214, 0.2) 2px, transparent 6px),
    radial-gradient(circle at 88.2% 34.4%, rgba(232, 224, 255, 0.58) 0 1px, rgba(183, 162, 255, 0.22) 2px, transparent 7px),
    radial-gradient(circle at 77.6% 45.6%, rgba(232, 224, 255, 0.42) 0 1px, rgba(126, 91, 214, 0.17) 2px, transparent 6px),
    radial-gradient(circle at 84.8% 49.2%, rgba(210, 196, 255, 0.46) 0 1px, rgba(126, 91, 214, 0.18) 2px, transparent 6px),
    radial-gradient(circle at 68.8% 56.4%, rgba(210, 196, 255, 0.44) 0 1px, rgba(126, 91, 214, 0.18) 2px, transparent 6px),
    radial-gradient(circle at 91.4% 67.2%, rgba(232, 224, 255, 0.58) 0 1px, rgba(183, 162, 255, 0.22) 2px, transparent 7px),
    radial-gradient(circle at 82.2% 75.4%, rgba(210, 196, 255, 0.42) 0 1px, rgba(126, 91, 214, 0.16) 2px, transparent 6px),
    radial-gradient(circle at 94% 79.8%, rgba(232, 224, 255, 0.46) 0 1px, rgba(183, 162, 255, 0.18) 2px, transparent 7px);
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 10px rgba(126, 91, 214, 0.42));
  -webkit-mask-image: linear-gradient(90deg, transparent 0 28%, #000 37%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0 28%, #000 37%, #000 100%);
}

.motion-ready .hero::after {
  animation: technicalTireSparkle 11.8s ease-in-out infinite;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  --hero-image: image-set(
    url("assets/hero-workshop.webp") type("image/webp"),
    url("assets/hero-workshop.png") type("image/png")
  );
  background-image:
    linear-gradient(90deg, rgba(4, 5, 5, 0.88) 0%, rgba(7, 8, 9, 0.68) 31%, rgba(8, 9, 9, 0.18) 58%, rgba(8, 9, 9, 0.34) 100%),
    linear-gradient(180deg, rgba(6, 7, 8, 0.18), rgba(6, 7, 8, 0.4) 72%, rgba(6, 7, 8, 0.58)),
    radial-gradient(ellipse at 74% 22%, rgba(242, 222, 188, 0.12), transparent 20%),
    radial-gradient(ellipse at 63% 58%, rgba(183, 162, 255, 0.045), transparent 24%),
    var(--hero-image);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, cover;
  background-position: center;
  transform: scale(1.018);
  transform-origin: 58% 50%;
  filter: saturate(1.03) contrast(1.16) brightness(1.1);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
}

.hero-bg::before {
  opacity: 0.3;
  background:
    linear-gradient(105deg, transparent 0 43%, rgba(255, 255, 255, 0.1) 50%, transparent 57%),
    linear-gradient(90deg, transparent 0 64%, rgba(210, 196, 255, 0.13) 73%, rgba(240, 183, 105, 0.075) 83%, transparent 92%);
  mix-blend-mode: screen;
  transform: skewX(-12deg);
}

.hero-bg::after {
  opacity: 0.26;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 16%),
    linear-gradient(92deg, transparent 0 71.5%, rgba(183, 162, 255, 0.09) 72%, rgba(126, 91, 214, 0.13) 72.35%, transparent 72.8%),
    linear-gradient(92deg, transparent 0 86.5%, rgba(210, 196, 255, 0.075) 87%, rgba(126, 91, 214, 0.12) 87.28%, transparent 87.72%),
    radial-gradient(circle at 39% 73%, rgba(240, 183, 105, 0.055), transparent 14%),
    radial-gradient(circle at 78% 58%, rgba(183, 162, 255, 0.052), transparent 17%);
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, transparent 0 54%, #000 65%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0 54%, #000 65%, #000 96%, transparent 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 8px);
  mix-blend-mode: soft-light;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  padding: 126px 0 138px;
}

.hero-copy {
  max-width: 800px;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--gold-text-mid);
  font-size: var(--type-kicker);
  line-height: 1.18;
  font-weight: 820;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, #fff0be 0%, #f7c36e 34%, #d28a32 74%, #a15f1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.08px rgba(64, 36, 10, 0.28);
  filter: none;
  text-shadow:
    0 1px 0 rgba(255, 241, 202, 0.2),
    0 1px 0 rgba(38, 22, 8, 0.28),
    0 0 7px rgba(240, 183, 105, 0.14);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  padding-bottom: 0.06em;
  max-width: 640px;
  font-size: clamp(1.85rem, 3.05vw, 2.85rem);
  line-height: 1.06;
  font-weight: 920;
  text-transform: uppercase;
  color: #f1f1ee;
}

h1 span {
  display: block;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: #c5c8c8;
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  position: relative;
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(226, 218, 255, 0.58);
  background:
    linear-gradient(118deg, rgba(255, 225, 166, 0.095), transparent 28%),
    linear-gradient(180deg, rgba(210, 196, 255, 0.075), transparent 17%),
    radial-gradient(circle at calc(var(--mx, 50%) + 26%) calc(var(--my, 50%) - 18%), rgba(183, 162, 255, 0.062), transparent 30%),
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(240, 183, 105, 0.038), transparent 34%),
    linear-gradient(145deg, rgba(25, 28, 30, 0.72), rgba(12, 14, 15, 0.42));
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 225, 166, 0.16), inset 0 0 0 1px rgba(183, 162, 255, 0.12), 0 0 36px rgba(126, 91, 214, 0.18), 0 0 18px rgba(240, 183, 105, 0.08);
  backdrop-filter: blur(14px) saturate(116%);
  isolation: isolate;
  overflow: hidden;
}

.hero-panel:hover,
.hero-panel:focus-within {
  border-color: rgba(226, 218, 255, 0.92);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 225, 166, 0.24), inset 0 0 0 1px rgba(183, 162, 255, 0.18), 0 0 52px rgba(126, 91, 214, 0.34), 0 0 24px rgba(240, 183, 105, 0.14);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #f2f2ef;
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #82d16d;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(130, 209, 109, 0.76);
}

.hero-panel dl {
  margin: 0;
  display: grid;
  gap: 16px;
}

.hero-panel dl > div {
  padding-top: 15px;
  border-top: 1px solid rgba(210, 196, 255, 0.18);
}

.hero-panel dt {
  color: var(--dim);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 4px 0 0;
  color: #f0f1ee;
  font-size: 1.05rem;
  font-weight: 730;
}

.hero-strip {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  border-top: 1px solid rgba(210, 196, 255, 0.16);
  background: rgba(8, 9, 10, 0.5);
  backdrop-filter: blur(14px) saturate(122%);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-grid div {
  position: relative;
  min-height: 96px;
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  isolation: isolate;
  overflow: hidden;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.strip-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.strip-grid div:hover {
  border-color: var(--violet-line);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 225, 166, 0.14), inset 0 -1px 0 rgba(183, 162, 255, 0.24), 0 0 30px rgba(126, 91, 214, 0.16), 0 0 16px rgba(240, 183, 105, 0.08);
}

.strip-grid strong,
.quality-grid strong {
  display: block;
  color: #f1f1ee;
  font-size: 0.96rem;
  text-transform: uppercase;
}

.strip-grid span,
.quality-grid span {
  display: block;
  margin-top: 4px;
  color: #9fa4a5;
  font-size: 0.86rem;
}

.section {
  padding: clamp(78px, 10vw, 132px) 0;
  position: relative;
  scroll-margin-top: 92px;
}

section {
  scroll-margin-top: 92px;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.section-heading {
  position: relative;
  z-index: 1;
}

.section-heading.wide {
  max-width: 840px;
  margin-bottom: 46px;
}

.section-heading h2,
.shop-copy h2,
.contact-copy h2 {
  margin-bottom: 18px;
  color: #eff0ed;
  font-size: var(--type-section-title);
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading p:not(.section-kicker),
.shop-copy p,
.contact-copy p {
  max-width: 680px;
  color: #b5babb;
  font-size: var(--type-body);
}

.why {
  background: linear-gradient(180deg, #0b0d0e, #111416);
  overflow: hidden;
}

.why::before,
.tyre-hotel::before,
.services::before,
.shop::before,
.contact::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.why::before {
  right: -130px;
  top: 80px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(183, 162, 255, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 37%, rgba(183, 162, 255, 0.15) 38% 39%, transparent 40% 53%, rgba(240, 183, 105, 0.055) 54% 55%, transparent 56%),
    repeating-conic-gradient(from 8deg, rgba(126, 91, 214, 0.14) 0deg 5deg, transparent 5deg 14deg);
  opacity: 0.5;
}

.why-grid,
.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.reason,
.service-card,
.process-card {
  position: relative;
  border: 1px solid rgba(183, 162, 255, 0.66);
  background:
    radial-gradient(circle at calc(var(--mx, 50%) + 24%) calc(var(--my, 50%) - 18%), rgba(126, 91, 214, 0.08), transparent 30%),
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(240, 183, 105, 0.045), transparent 28%),
    linear-gradient(160deg, rgba(232, 238, 238, 0.15), rgba(226, 232, 232, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 225, 166, 0.12), inset 0 0 0 1px rgba(183, 162, 255, 0.1), 0 0 0 1px rgba(80, 56, 128, 0.28), 0 0 28px rgba(126, 91, 214, 0.1), 0 24px 60px rgba(0, 0, 0, 0);
  isolation: isolate;
  overflow: hidden;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
  backdrop-filter: blur(14px) saturate(118%);
}

.reason::before,
.service-card::before,
.process-card::before,
.hero-panel::before,
.metal-card::before,
.strip-grid div::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    linear-gradient(112deg, transparent 0 28%, rgba(255, 225, 166, 0.16) 38%, rgba(226, 218, 255, 0.34) 45%, rgba(126, 91, 214, 0.28) 52%, rgba(240, 183, 105, 0.13) 59%, transparent 70%);
  transform: translateX(-130%) skewX(-10deg);
  transition: opacity 360ms ease, transform 920ms cubic-bezier(0.19, 1, 0.22, 1);
}

.reason::after,
.service-card::after,
.process-card::after,
.hero-panel::after,
.metal-card::after,
.strip-grid div::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border: 1px solid rgba(210, 196, 255, 0.11);
  box-shadow: inset 0 0 46px rgba(255, 255, 255, 0.026), inset 0 1px 0 rgba(255, 225, 166, 0.09), inset 0 -1px 0 rgba(183, 162, 255, 0.2);
}

.hero-panel::after {
  border-color: rgba(210, 196, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 225, 166, 0.12), inset 0 0 54px rgba(183, 162, 255, 0.06);
}

.reason:hover,
.service-card:hover,
.process-card:hover {
  border-color: var(--violet-line-strong);
  background:
    radial-gradient(circle at calc(var(--mx, 50%) + 24%) calc(var(--my, 50%) - 18%), rgba(126, 91, 214, 0.16), transparent 34%),
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(240, 183, 105, 0.08), transparent 32%),
    linear-gradient(160deg, rgba(232, 238, 238, 0.18), rgba(232, 238, 238, 0.048));
  box-shadow: inset 0 1px 0 rgba(255, 225, 166, 0.2), inset 0 0 0 1px rgba(183, 162, 255, 0.2), 0 26px 70px rgba(0, 0, 0, 0.3), 0 0 56px rgba(126, 91, 214, 0.34), 0 0 22px rgba(240, 183, 105, 0.14), 0 0 0 1px rgba(255, 225, 166, 0.18);
}

.reason:hover::before,
.service-card:hover::before,
.process-card:hover::before,
.hero-panel:hover::before,
.metal-card:hover::before,
.strip-grid div:hover::before,
.reason:focus-within::before,
.service-card:focus-within::before,
.process-card:focus-within::before,
.hero-panel:focus-within::before,
.metal-card:focus-within::before,
.strip-grid div:focus-within::before {
  opacity: 0.82;
  transform: translateX(130%) skewX(-10deg);
}

.reason {
  min-height: 232px;
  padding: 28px;
}

.icon,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 30px;
  color: var(--violet-3);
  border: 1px solid var(--violet-line-strong);
  background:
    radial-gradient(circle at 74% 18%, rgba(226, 218, 255, 0.36), transparent 52%),
    radial-gradient(circle at 34% 78%, rgba(255, 196, 111, 0.14), transparent 58%),
    linear-gradient(145deg, rgba(126, 91, 214, 0.3), rgba(255, 255, 255, 0.025) 44%, rgba(80, 56, 128, 0.22)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 225, 166, 0.22), inset 0 0 24px rgba(183, 162, 255, 0.2), 0 16px 44px rgba(0, 0, 0, 0.18), 0 0 34px rgba(126, 91, 214, 0.22), 0 0 16px rgba(240, 183, 105, 0.12);
}

.icon svg,
.service-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason h3,
.service-card h3,
.process-card h3 {
  margin-bottom: 10px;
  color: #eef0ee;
  font-size: var(--type-card-title);
  text-transform: uppercase;
}

.reason p,
.service-card p,
.process-card p {
  margin: 0;
  color: #aeb4b5;
  font-size: var(--type-body);
}

.tyre-hotel {
  background:
    radial-gradient(circle at 68% 8%, rgba(80, 56, 128, 0.12), transparent 24%),
    radial-gradient(circle at 76% 10%, rgba(126, 91, 214, 0.11), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(197, 138, 59, 0.075), transparent 30%),
    linear-gradient(180deg, #111416, #0b0d0e);
  overflow: hidden;
}

.tyre-hotel::before {
  left: -96px;
  bottom: 48px;
  width: 560px;
  height: 270px;
  opacity: 0.38;
  background:
    radial-gradient(ellipse at 42% 48%, rgba(183, 162, 255, 0.1), transparent 42%),
    repeating-linear-gradient(108deg, transparent 0 24px, rgba(226, 218, 255, 0.42) 24px 28px, rgba(80, 56, 128, 0.18) 28px 30px, transparent 30px 54px),
    repeating-linear-gradient(64deg, transparent 0 25px, rgba(240, 183, 105, 0.16) 25px 27px, rgba(183, 162, 255, 0.2) 27px 29px, transparent 29px 56px);
  filter: drop-shadow(0 0 20px rgba(126, 91, 214, 0.22));
  -webkit-mask-image: radial-gradient(ellipse at 44% 52%, #000 0 48%, transparent 72%);
  mask-image: radial-gradient(ellipse at 44% 52%, #000 0 48%, transparent 72%);
  transform: rotate(-8deg);
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-card {
  min-height: 280px;
  padding: 26px;
}

.process-card.highlight {
  border-color: var(--violet-line-strong);
  background:
    radial-gradient(circle at calc(var(--mx, 50%) + 22%) calc(var(--my, 50%) - 18%), rgba(126, 91, 214, 0.16), transparent 32%),
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 196, 111, 0.1), transparent 30%),
    linear-gradient(160deg, rgba(80, 56, 128, 0.25), rgba(213, 150, 63, 0.13), rgba(255, 255, 255, 0.052));
}

.step {
  display: block;
  margin-bottom: 48px;
  padding-bottom: 0.08em;
  color: var(--violet-3);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1;
  font-weight: 920;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #efe8ff 0%, #c6b5ff 24%, #8f6be4 58%, #5a3a9a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.45px rgba(231, 224, 255, 0.16);
  text-shadow: 0 1px 0 rgba(244, 239, 255, 0.14), 0 4px 8px rgba(0, 0, 0, 0.32);
  filter: none;
}

.services {
  background:
    radial-gradient(ellipse at 72% 18%, rgba(80, 56, 128, 0.075), transparent 34%),
    radial-gradient(ellipse at 22% 74%, rgba(240, 183, 105, 0.035), transparent 30%),
    #0d1011;
  overflow: hidden;
}

.services::before {
  right: clamp(-20px, 4vw, 86px);
  top: 58px;
  width: min(720px, 54vw);
  height: 410px;
  opacity: 0.36;
  background:
    radial-gradient(circle at 24% 52%, transparent 0 42px, rgba(226, 218, 255, 0.34) 43px 45px, rgba(126, 91, 214, 0.18) 46px 48px, transparent 49px),
    radial-gradient(circle at 78% 52%, transparent 0 42px, rgba(226, 218, 255, 0.3) 43px 45px, rgba(126, 91, 214, 0.16) 46px 48px, transparent 49px),
    radial-gradient(circle at 24% 52%, rgba(183, 162, 255, 0.08), transparent 23%),
    radial-gradient(circle at 78% 52%, rgba(183, 162, 255, 0.07), transparent 23%),
    linear-gradient(90deg, transparent 0 13%, rgba(183, 162, 255, 0.12) 13.2% 13.45%, transparent 13.7% 23%, rgba(240, 183, 105, 0.055) 23.2% 23.4%, transparent 23.7% 78%, rgba(183, 162, 255, 0.12) 78.2% 78.45%, transparent 78.75%),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(210, 196, 255, 0.045) 31px 32px, transparent 32px 72px);
  filter: drop-shadow(0 0 22px rgba(126, 91, 214, 0.16));
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 86%, transparent 100%), linear-gradient(180deg, transparent 0, #000 18%, #000 78%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 86%, transparent 100%), linear-gradient(180deg, transparent 0, #000 18%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.services::after {
  content: "";
  position: absolute;
  right: clamp(70px, 12vw, 210px);
  top: 250px;
  z-index: 0;
  width: min(560px, 42vw);
  height: 210px;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(104deg, transparent 0 48%, rgba(255, 225, 166, 0.08) 49.2% 49.45%, rgba(183, 162, 255, 0.18) 49.7% 50.05%, transparent 51.4%),
    linear-gradient(76deg, transparent 0 43%, rgba(183, 162, 255, 0.16) 44.2% 44.55%, rgba(126, 91, 214, 0.11) 44.8% 45.1%, transparent 46.4%);
  filter: drop-shadow(0 0 16px rgba(126, 91, 214, 0.2));
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 78%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 78%, transparent 100%);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.service-card {
  min-height: 250px;
  padding: 28px;
}

.shop {
  background:
    radial-gradient(circle at 64% 10%, rgba(80, 56, 128, 0.12), transparent 24%),
    radial-gradient(circle at 72% 14%, rgba(126, 91, 214, 0.1), transparent 26%),
    radial-gradient(circle at 86% 20%, rgba(240, 183, 105, 0.07), transparent 28%),
    linear-gradient(90deg, rgba(9, 11, 12, 0.98), rgba(16, 18, 19, 0.84)),
    #101214;
  overflow: hidden;
}

.shop::before {
  right: -70px;
  bottom: -60px;
  width: 560px;
  height: 390px;
  opacity: 0.28;
  background:
    radial-gradient(ellipse at 52% 48%, rgba(126, 91, 214, 0.09), transparent 40%),
    linear-gradient(136deg, transparent 0 43%, rgba(226, 218, 255, 0.2) 44.1% 44.7%, rgba(80, 56, 128, 0.16) 44.9% 45.4%, transparent 47%),
    linear-gradient(43deg, transparent 0 48%, rgba(240, 183, 105, 0.1) 49.2% 49.7%, rgba(183, 162, 255, 0.16) 49.9% 50.5%, transparent 52%),
    repeating-linear-gradient(90deg, rgba(210, 196, 255, 0.05) 0 1px, transparent 1px 30px);
  filter: drop-shadow(0 0 18px rgba(126, 91, 214, 0.16));
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 22%, #000 78%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 22%, #000 78%, transparent 100%);
}

.shop-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
  color: #d5d8d6;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--violet-3);
  filter: drop-shadow(0 0 8px rgba(126, 91, 214, 0.24));
  transform: rotate(-45deg);
}

.metal-card {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border: 1px solid var(--violet-line);
  background:
    linear-gradient(115deg, rgba(255, 225, 166, 0.13), transparent 36%),
    linear-gradient(90deg, rgba(80, 56, 128, 0.22), transparent 32%, rgba(240, 183, 105, 0.08) 74%, rgba(80, 56, 128, 0.18)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px),
    linear-gradient(145deg, rgba(226, 232, 232, 0.14), rgba(226, 232, 232, 0.045));
  box-shadow: var(--shadow), 0 0 0 1px rgba(126, 91, 214, 0.22), 0 0 42px rgba(126, 91, 214, 0.16), 0 0 20px rgba(240, 183, 105, 0.08);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(16px) saturate(120%);
}

.shop-showcase {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 18px;
  isolation: isolate;
}

.shop-showcase::before {
  content: "";
  position: absolute;
  inset: 10% -4% -8% 12%;
  z-index: -1;
  border: 1px solid var(--violet-line-strong);
  background:
    radial-gradient(circle at 35% 6%, rgba(126, 91, 214, 0.11), transparent 24%),
    radial-gradient(circle at 75% 20%, rgba(240, 183, 105, 0.065), transparent 22%),
    linear-gradient(135deg, rgba(226, 232, 232, 0.1), rgba(226, 232, 232, 0.025));
  backdrop-filter: blur(10px);
}

.shop-showcase article {
  position: relative;
  min-height: 128px;
  padding: 24px 26px 24px 96px;
  border: 1px solid var(--violet-line);
  background:
    radial-gradient(circle at calc(var(--mx, 50%) + 18%) calc(var(--my, 50%) - 14%), rgba(126, 91, 214, 0.11), transparent 30%),
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(240, 183, 105, 0.05), transparent 32%),
    linear-gradient(135deg, rgba(226, 232, 232, 0.16), rgba(226, 232, 232, 0.045)),
    rgba(7, 9, 10, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 225, 166, 0.14), inset 0 0 0 1px rgba(183, 162, 255, 0.1), 0 0 0 1px rgba(80, 56, 128, 0.22), 0 0 28px rgba(126, 91, 214, 0.12);
  backdrop-filter: blur(16px) saturate(118%);
  isolation: isolate;
  overflow: hidden;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.shop-showcase article:hover {
  border-color: var(--violet-line-strong);
  background:
    radial-gradient(circle at calc(var(--mx, 50%) + 18%) calc(var(--my, 50%) - 14%), rgba(126, 91, 214, 0.16), transparent 32%),
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(240, 183, 105, 0.07), transparent 34%),
    linear-gradient(135deg, rgba(232, 238, 238, 0.19), rgba(232, 238, 238, 0.052)),
    rgba(7, 9, 10, 0.2);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.32), 0 0 54px rgba(126, 91, 214, 0.34), 0 0 24px rgba(240, 183, 105, 0.14), 0 0 0 1px rgba(255, 225, 166, 0.18), inset 0 1px 0 rgba(255, 225, 166, 0.2), inset 0 0 0 1px rgba(183, 162, 255, 0.16);
}

.shop-showcase span {
  position: absolute;
  left: 24px;
  top: 24px;
  color: rgba(226, 218, 255, 0.84);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 900;
}

.shop-showcase h3 {
  margin-bottom: 8px;
  color: #f0f1ee;
  font-size: var(--type-card-title);
  text-transform: uppercase;
}

.shop-showcase p {
  margin: 0;
  color: #aeb4b5;
  font-size: var(--type-body);
}

.map-card {
  place-items: stretch;
  align-content: stretch;
  gap: 14px;
  padding: 14px;
  border-color: var(--violet-line);
  background:
    linear-gradient(115deg, rgba(255, 225, 166, 0.12), transparent 36%),
    linear-gradient(90deg, rgba(80, 56, 128, 0.24), transparent 32%, rgba(240, 183, 105, 0.08) 74%, rgba(80, 56, 128, 0.18)),
    linear-gradient(145deg, rgba(226, 232, 232, 0.14), rgba(226, 232, 232, 0.045));
  box-shadow: var(--shadow), 0 0 0 1px rgba(126, 91, 214, 0.28), 0 0 42px rgba(126, 91, 214, 0.18), 0 0 20px rgba(240, 183, 105, 0.08);
  transition: border-color 220ms ease, box-shadow 320ms ease, background 320ms ease;
}

.map-card:hover,
.map-card:focus-within {
  border-color: var(--violet-line-strong);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 225, 166, 0.18), 0 0 54px rgba(126, 91, 214, 0.3), 0 0 24px rgba(240, 183, 105, 0.13), inset 0 1px 0 rgba(255, 225, 166, 0.16);
}

.map-card-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 16px 16px 6px;
}

.map-card-head span {
  color: var(--gold-text-mid);
  font-size: clamp(0.96rem, 1.04vw, 1.16rem);
  line-height: 1.15;
  font-weight: 820;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff0be 0%, #f7c36e 36%, #d28a32 76%, #a15f1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.08px rgba(64, 36, 10, 0.26);
  filter: none;
  text-shadow:
    0 1px 0 rgba(255, 241, 202, 0.18),
    0 1px 0 rgba(38, 22, 8, 0.26),
    0 0 6px rgba(240, 183, 105, 0.12);
}

.map-card-head strong {
  color: #f0f1ee;
  font-size: clamp(1.28rem, 1.55vw, 1.7rem);
  line-height: 1.15;
  font-weight: 820;
}

.map-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: calc(100% - 72px);
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 225, 166, 0.08), transparent 36%),
    linear-gradient(90deg, rgba(80, 56, 128, 0.18), transparent 58%),
    rgba(12, 14, 15, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 24px 70px rgba(0, 0, 0, 0.4);
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 45%, rgba(183, 162, 255, 0.08), transparent 28%),
    repeating-linear-gradient(90deg, rgba(210, 196, 255, 0.045) 0 1px, transparent 1px 34px);
  opacity: 0.7;
  pointer-events: none;
}

.map-frame iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(0.72) contrast(1.06) brightness(0.86);
}

.quality-band {
  padding: 34px 0;
  color: #171a1c;
  background:
    linear-gradient(112deg, transparent 0 58%, rgba(80, 56, 128, 0.18) 70%, rgba(126, 91, 214, 0.14) 80%, transparent 94%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.02) 34%, rgba(0, 0, 0, 0.08) 35%, transparent 36%),
    linear-gradient(180deg, #d6d8d6, #8f9698);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.quality-grid strong,
.quality-grid span {
  color: #151719;
}

.quality-grid strong {
  font-size: clamp(1.08rem, 1.12vw, 1.28rem);
  line-height: 1.16;
}

.quality-grid span {
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  line-height: 1.35;
}

.quality-grid > div {
  position: relative;
  min-height: 74px;
  padding-left: 28px;
  border-left: 1px solid rgba(80, 56, 128, 0.34);
  box-shadow: -1px 0 0 rgba(210, 196, 255, 0.22);
}

.quality-grid > div::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(126, 91, 214, 0.42), rgba(240, 183, 105, 0.16), transparent);
  box-shadow: 0 0 12px rgba(126, 91, 214, 0.2);
  pointer-events: none;
}

.contact {
  background:
    radial-gradient(circle at 56% 22%, rgba(80, 56, 128, 0.13), transparent 27%),
    radial-gradient(circle at 66% 28%, rgba(126, 91, 214, 0.1), transparent 30%),
    radial-gradient(circle at 74% 34%, rgba(240, 183, 105, 0.07), transparent 32%),
    #0b0d0e;
  overflow: hidden;
}

.contact::before {
  left: 4vw;
  bottom: 28px;
  width: 380px;
  height: 380px;
  opacity: 0.24;
  border: 1px solid rgba(210, 196, 255, 0.26);
  background:
    radial-gradient(circle, transparent 0 32%, rgba(183, 162, 255, 0.34) 33% 34%, transparent 35% 51%, rgba(240, 183, 105, 0.13) 52% 53%, transparent 54%),
    repeating-conic-gradient(from 8deg, rgba(126, 91, 214, 0.13) 0deg 2deg, transparent 2deg 11deg);
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(126, 91, 214, 0.08), inset 0 0 30px rgba(183, 162, 255, 0.04);
  -webkit-mask-image: radial-gradient(circle, #000 0 58%, transparent 78%);
  mask-image: radial-gradient(circle, #000 0 58%, transparent 78%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 52px;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a,
.contact-list button {
  display: block;
  width: fit-content;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(183, 162, 255, 0.72);
  background: none;
  color: #f0f1ee;
  font: inherit;
  font-size: clamp(1.16rem, 1.35vw, 1.42rem);
  line-height: 1.22;
  font-weight: 760;
  text-align: left;
  text-shadow: 0 0 16px rgba(126, 91, 214, 0.22), 0 0 8px rgba(240, 183, 105, 0.08);
  cursor: pointer;
}

.contact-list button {
  color: #f7c36e;
  border-bottom-color: rgba(226, 218, 255, 0.84);
  text-shadow: 0 0 14px rgba(240, 183, 105, 0.18), 0 0 14px rgba(126, 91, 214, 0.18);
}

.contact-list a:hover,
.contact-list a:focus-visible,
.contact-list button:hover,
.contact-list button:focus-visible {
  color: #fff0be;
  border-bottom-color: rgba(255, 225, 166, 0.8);
  outline: 0;
}

.contact-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.contact-services span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(210, 196, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 240, 200, 0.1), rgba(255, 255, 255, 0.018) 42%, rgba(7, 8, 9, 0.26)),
    linear-gradient(90deg, rgba(15, 16, 18, 0.96), rgba(42, 34, 42, 0.88) 50%, rgba(15, 16, 18, 0.96));
  color: #f1f1ee;
  font-size: clamp(0.86rem, 0.9vw, 0.98rem);
  line-height: 1.1;
  font-weight: 820;
  text-transform: uppercase;
  isolation: isolate;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 240, 200, 0.14), inset 0 -1px 0 rgba(183, 162, 255, 0.2), 0 0 0 1px rgba(126, 91, 214, 0.32), 0 12px 30px rgba(0, 0, 0, 0.22), 0 0 14px rgba(126, 91, 214, 0.14);
  transition: border-color 260ms ease, background 320ms ease, box-shadow 360ms ease, color 220ms ease, transform 220ms ease;
}

.contact-services span::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border: 1px solid rgba(255, 240, 200, 0.1);
  background:
    linear-gradient(180deg, transparent 0 86%, rgba(183, 162, 255, 0.18) 100%),
    linear-gradient(90deg, transparent 0 12%, rgba(183, 162, 255, 0.3) 50%, transparent 88%) left bottom / 100% 1px no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), inset 0 -1px 0 rgba(183, 162, 255, 0.3), 0 8px 16px -13px rgba(126, 91, 214, 0.7);
}

.contact-services span:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 239, 255, 0.96);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 240, 200, 0.14), rgba(255, 255, 255, 0.025) 42%, rgba(7, 8, 9, 0.22)),
    linear-gradient(90deg, rgba(15, 16, 18, 0.96), rgba(50, 39, 43, 0.9) 50%, rgba(15, 16, 18, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 240, 200, 0.22), inset 0 -1px 0 rgba(183, 162, 255, 0.24), 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 26px rgba(126, 91, 214, 0.24), 0 0 18px rgba(240, 183, 105, 0.12), 0 0 0 1px rgba(210, 196, 255, 0.34);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(210, 196, 255, 0.22);
  background:
    radial-gradient(ellipse at 78% 0%, rgba(126, 91, 214, 0.075), transparent 36%),
    linear-gradient(90deg, rgba(183, 162, 255, 0.1), transparent 28%, transparent 68%, rgba(240, 183, 105, 0.07)),
    linear-gradient(180deg, rgba(14, 16, 17, 0.96), rgba(7, 8, 9, 1)),
    #080909;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #d7dad8;
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #b7bdc0;
  font-size: 0.88rem;
}

.footer-bottom a {
  color: var(--violet-3);
  border-bottom: 1px solid rgba(210, 196, 255, 0.58);
  text-shadow: 0 0 18px rgba(126, 91, 214, 0.22);
  transition: color 180ms ease, border-color 180ms ease, text-shadow 220ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
  border-color: rgba(240, 183, 105, 0.62);
  text-shadow: 0 0 22px rgba(183, 162, 255, 0.42), 0 0 10px rgba(240, 183, 105, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes technicalEdgeLight {
  0%,
  100% {
    opacity: 0.4;
    filter: blur(0.35px) saturate(1);
  }
  38% {
    opacity: 0.66;
    filter: blur(0.55px) saturate(1.16);
  }
  64% {
    opacity: 0.52;
    filter: blur(0.25px) saturate(1.08);
  }
}

@keyframes technicalTireSparkle {
  0%,
  100% {
    opacity: 0.5;
    filter: drop-shadow(0 0 8px rgba(126, 91, 214, 0.34));
  }
  28% {
    opacity: 0.82;
    filter: drop-shadow(0 0 14px rgba(183, 162, 255, 0.5));
  }
  56% {
    opacity: 0.62;
    filter: drop-shadow(0 0 10px rgba(126, 91, 214, 0.42));
  }
  78% {
    opacity: 0.9;
    filter: drop-shadow(0 0 16px rgba(183, 162, 255, 0.56));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 82px;
  }

  section,
  .section {
    scroll-margin-top: 82px;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition-delay: 0ms !important;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    position: fixed;
    inset: 78px 16px auto auto;
    z-index: 130;
    display: grid;
    justify-items: start;
    gap: 0;
    width: min(320px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid rgba(226, 218, 255, 0.52);
    background:
      linear-gradient(135deg, rgba(80, 56, 128, 0.2), transparent 38%, rgba(240, 183, 105, 0.065)),
      #070809;
    box-shadow: var(--shadow), 0 0 34px rgba(126, 91, 214, 0.18), inset 0 1px 0 rgba(255, 225, 166, 0.1);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .menu-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    width: 100%;
    padding: 15px 10px;
    color: #f2f2ef;
    border-bottom: 1px solid rgba(210, 196, 255, 0.16);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: block;
  }

  .btn {
    min-height: 54px;
    padding-inline: 24px;
    font-size: 0.82rem;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 170px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .strip-grid,
  .why-grid,
  .process-grid,
  .service-grid,
  .shop-grid,
  .contact-grid,
  .quality-grid,
  .footer-grid,
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 76px;
  }

  section,
  .section {
    scroll-margin-top: 76px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    min-height: 70px;
    padding: 10px 14px;
    gap: 12px;
  }

  .brand {
    width: 132px;
    height: auto;
    overflow: visible;
  }

  .brand img {
    width: 132px;
  }

  .header-cta {
    min-height: 42px;
    min-width: 86px;
    padding: 0 16px;
  }

  .btn {
    min-height: 52px;
    padding-inline: 18px;
    font-size: 0.78rem;
  }

  .main-nav {
    inset: 70px 14px auto auto;
    width: min(282px, calc(100vw - 28px));
  }

  h1 {
    font-size: clamp(1.4rem, 5.9vw, 1.78rem);
    line-height: 1.1;
  }

  .hero-bg {
    --hero-image: image-set(
      url("assets/hero-workshop-mobile.webp") type("image/webp"),
      url("assets/hero-workshop.png") type("image/png")
    );
    background-position: 60% center;
  }

  .hero-grid {
    gap: 28px;
    padding-top: 104px;
    padding-bottom: 34px;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero-strip {
    position: relative;
    background: #090a0b;
  }

  .strip-grid,
  .why-grid,
  .process-grid,
  .service-grid,
  .shop-grid,
  .contact-grid,
  .quality-grid,
  .footer-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .strip-grid div {
    min-height: 78px;
    padding: 18px 0;
    border-left: 0;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .reason,
  .service-card,
  .process-card {
    min-height: auto;
  }

  .step {
    margin-bottom: 36px;
  }

  .metal-card {
    min-height: 320px;
  }

  .map-frame {
    min-height: 292px;
  }

  .shop-showcase {
    padding: 0;
  }

  .shop-showcase article {
    padding: 22px 22px 22px 82px;
  }

  .shop-showcase span {
    left: 22px;
    top: 22px;
    font-size: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
