@font-face {
  font-family: "Speed Rusher";
  src: url("../assets/fonts/speed-rusher.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Ethnocentric";
  src: url("../assets/fonts/Ethnocentric-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("../assets/fonts/Montserrat-VariableFont_wght.ttf")
    format("truetype-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Orbitron";
  src: url("../assets/fonts/Orbitron-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Orbitron";
  src: url("../assets/fonts/Orbitron-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

@font-face {
  font-family: "Orbitron";
  src: url("../assets/fonts/Orbitron-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
}

@font-face {
  font-family: "Orbitron";
  src: url("../assets/fonts/Orbitron-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

/* --------------------------------------------------
   Reset
-------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background: #080808;
  color: #ffffff;
  font-family: var(--font-body);
  line-height: 1.6;
}

body::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    linear-gradient(
      to right,
      transparent calc(12.5% - 0.5px),
      var(--page-grid-line) 12.5%,
      transparent calc(12.5% + 0.5px)
    ),
    linear-gradient(
      to right,
      transparent calc(37.5% - 0.5px),
      var(--page-grid-line) 37.5%,
      transparent calc(37.5% + 0.5px)
    ),
    linear-gradient(
      to right,
      transparent calc(62.5% - 0.5px),
      var(--page-grid-line) 62.5%,
      transparent calc(62.5% + 0.5px)
    ),
    linear-gradient(
      to right,
      transparent calc(87.5% - 0.5px),
      var(--page-grid-line) 87.5%,
      transparent calc(87.5% + 0.5px)
    );
}

body > * {
  position: relative;
  z-index: 1;
}

.page-grid-motion {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-grid-drop {
  position: absolute;
  top: 0;
  width: 7px;
  height: 76px;
  opacity: 0;
  background: linear-gradient(
    to bottom,
    rgba(182, 240, 0, 0) 0%,
    rgba(182, 240, 0, 0.3) 20%,
    rgba(182, 240, 0, 0.78) 72%,
    #d7ff38 100%
  );
  clip-path: polygon(
    43% 0,
    57% 0,
    64% 48%,
    76% 82%,
    100% 94%,
    72% 100%,
    28% 100%,
    0 94%,
    24% 82%,
    36% 48%
  );
  filter: drop-shadow(0 0 4px rgba(182, 240, 0, 0.7));
  will-change: transform, opacity;
}

.page-grid-drop:nth-child(1) {
  left: calc(12.5% - 3.5px);
}

.page-grid-drop:nth-child(2) {
  left: calc(37.5% - 3.5px);
}

.page-grid-drop:nth-child(3) {
  left: calc(62.5% - 3.5px);
}

.page-grid-drop:nth-child(4) {
  left: calc(87.5% - 3.5px);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

/* --------------------------------------------------
   Global layout
-------------------------------------------------- */

:root {
  --page-background: #080808;
  --surface: #121212;
  --surface-light: #1a1a1a;
  --text: #ffffff;
  --muted: #a8a8a8;
  --accent: #f4b000;
  --border: rgba(255, 255, 255, 0.16);
  --page-grid-line: rgba(255, 255, 255, 0.11);
  --page-grid-accent: #b6f000;
  --font-display: "Orbitron", "Arial Narrow", sans-serif;
  --font-body: "Montserrat", Arial, sans-serif;

  --container-width: 1180px;
  --section-space: clamp(5rem, 10vw, 9rem);
  --radius-small: 10px;
  --radius-medium: 18px;
}

.container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

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

.section h1 {
  max-width: 900px;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section h2 {
  max-width: 760px;
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.section-intro {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.125rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --------------------------------------------------
   Header
-------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-block: 0.75rem;
  background: transparent;
}

.site-header .container {
  width: min(calc(100% - 1.5rem), 1320px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 1rem;
  background:
    linear-gradient(
      180deg,
      rgba(88, 88, 88, 0.9),
      rgba(48, 48, 48, 0.86)
    )
      padding-box,
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.2) 22%,
      rgba(182, 240, 0, 0.72) 43%,
      rgba(244, 176, 0, 0.9) 55%,
      rgba(182, 240, 0, 0.38) 70%,
      rgba(255, 255, 255, 0.66) 100%
    )
      border-box;
  border: 2px solid transparent;
  border-radius: 999px;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(182, 240, 0, 0.08);
  backdrop-filter: blur(18px);
}

.site-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  align-self: center;
  justify-content: center;
  line-height: 0;
}

.site-logo img {
  width: auto;
  height: 76px;
  max-width: 84px;
  object-fit: contain;
}

.site-nav {
  display: grid;
  width: 100%;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 4.5rem);
  margin: 0;
}

.site-nav > a:not(.site-logo) {
  justify-self: center;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Orbitron", var(--font-display);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.48);
  text-transform: uppercase;
}

.site-nav > a:not(.site-logo):hover {
  color: var(--text);
}

.instagram-side-tab {
  position: fixed;
  top: 54%;
  right: 0;
  left: auto;
  z-index: 80;
  display: flex;
  width: 58px;
  align-items: center;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.9rem 0.55rem 0.75rem;
  background: rgba(10, 10, 10, 0.9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  box-shadow:
    -8px 10px 24px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transform: translate3d(0, -50%, 0);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.instagram-side-tab span {
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transform: none;
}

.instagram-side-tab img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(225, 48, 108, 0.28));
}

.instagram-side-tab:hover {
  background: rgba(24, 24, 24, 0.96);
  transform: translate3d(-3px, -50%, 0);
}

.instagram-side-tab:active {
  transform: translate3d(-1px, -50%, 0) scale(0.97);
}

.instagram-side-tab:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

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

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  background:
    linear-gradient(
      180deg,
      rgba(16, 16, 16, 0.94),
      rgba(3, 3, 3, 0.96)
    )
      padding-box,
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.12) 26%,
      rgba(182, 240, 0, 0.85) 48%,
      rgba(244, 176, 0, 0.8) 66%,
      rgba(255, 255, 255, 0.48) 100%
    )
      border-box;
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 999px;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(182, 240, 0, 0.08);
  font-weight: 700;
  transition:
    transform 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible,
.button:active {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.2) 26%,
      rgba(182, 240, 0, 0.95) 48%,
      rgba(244, 176, 0, 0.9) 66%,
      rgba(255, 255, 255, 0.58) 100%
    )
      border-box;
  color: #080808;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.3),
    0 0 16px rgba(182, 240, 0, 0.14);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.button:active {
  transform: scale(0.98);
}

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

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(680px, 84svh, 820px);
  align-items: center;
  padding-block: clamp(2rem, 4vh, 3.5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.84) 0%,
      rgba(8, 8, 8, 0.62) 38%,
      rgba(8, 8, 8, 0.3) 72%,
      rgba(8, 8, 8, 0.4) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.16) 0%,
      rgba(8, 8, 8, 0.03) 52%,
      rgba(8, 8, 8, 0.58) 100%
    );
  pointer-events: none;
  content: "";
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  filter: brightness(1.12) saturate(0.88) contrast(1.06);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  column-gap: clamp(2.5rem, 7vw, 7rem);
  row-gap: clamp(1.5rem, 3vw, 2.75rem);
}

.hero-wordmark {
  display: inline-block;
  grid-column: 1 / -1;
  justify-self: center;
  width: min(90vw, 1600px);
  max-width: calc(100vw - 2rem);
  margin: 0;
  padding-inline: 0.08em;
  background:
    linear-gradient(
      105deg,
      #f4b000 0%,
      #b6f000 15%,
      #d7ff38 28%,
      #ffffff 41%,
      #777d80 49%,
      #f8f8f8 57%,
      #ffffff 63%,
      #d7ff38 74%,
      #b6f000 87%,
      #f4b000 100%
    );
  background-position: 0% 50%;
  background-size: 240% 100%;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(182, 240, 0, 0.13));
  font-family: "Ethnocentric", var(--font-display);
  font-size: clamp(1.65rem, 8.2vw, 10rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  text-align: center;
  white-space: nowrap;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  animation: hero-wordmark-sweep 6.5s ease-in-out infinite alternate;
}

@keyframes hero-wordmark-sweep {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow {
  font-size: 0.9rem;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-media {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(100%, 440px);
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: rgba(182, 240, 0, 0.18);
  border: 1px solid rgba(182, 240, 0, 0.34);
  border-radius: clamp(18px, 2vw, 30px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 28px 80px rgba(0, 0, 0, 0.42);
}

.hero-media::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 165%;
  aspect-ratio: 1;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 34deg,
    rgba(182, 240, 0, 0.18) 38deg,
    #d7ff38 48deg 58deg,
    transparent 64deg 152deg,
    rgba(182, 240, 0, 0.2) 158deg,
    #b6f000 168deg 181deg,
    transparent 188deg 274deg,
    rgba(182, 240, 0, 0.18) 280deg,
    #d7ff38 291deg 302deg,
    transparent 310deg 360deg
  );
  filter: drop-shadow(0 0 7px rgba(182, 240, 0, 0.72));
  content: "";
  animation: hero-frame-chase 7.5s linear infinite;
}

.hero-media::after {
  position: absolute;
  inset: 3px;
  z-index: 1;
  background: #050505;
  border-radius: calc(clamp(18px, 2vw, 30px) - 3px);
  content: "";
}

.hero-media img {
  position: absolute;
  inset: 4px;
  z-index: 2;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  object-fit: cover;
  object-position: center;
  border-radius: calc(clamp(18px, 2vw, 30px) - 4px);
}

.hero-follow {
  position: absolute;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  overflow: hidden;
  background: rgba(3, 3, 3, 0.78);
  color: var(--page-grid-accent);
  border: 1px solid rgba(182, 240, 0, 0.28);
  border-radius: 5px;
  box-shadow:
    0 0 20px rgba(0, 0, 0, 0.7),
    inset 0 0 18px rgba(182, 240, 0, 0.04);
  font-size: clamp(0.68rem, 1.2vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.hero-follow::before {
  width: 28px;
  height: 1px;
  margin-right: 0.8rem;
  background: var(--page-grid-accent);
  box-shadow: 0 0 7px rgba(182, 240, 0, 0.75);
  content: "";
}

.hero-follow:hover {
  color: #d7ff38;
  border-color: rgba(182, 240, 0, 0.7);
  transform: translateY(-2px);
}

.hero-follow:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@keyframes hero-frame-chase {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* --------------------------------------------------
   Why RyobiGuy scroll network
-------------------------------------------------- */

.why-section {
  position: relative;
  border-bottom: 1px solid var(--border);
}

.why-scroll-scene {
  position: relative;
  height: calc(min(100svh, 980px) + min(64svh, 640px));
}

.why-sticky {
  position: sticky;
  top: 0;
  display: grid;
  height: min(100svh, 980px);
  min-height: 720px;
  grid-template-rows: auto 1fr;
  align-items: start;
  padding-block: clamp(5.5rem, 9vh, 7.5rem) 2rem;
  overflow: hidden;
}

.why-heading {
  position: relative;
  z-index: 4;
  width: min(100%, 690px);
  margin-inline: auto;
  text-align: center;
}

.why-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.75rem;
  background: rgba(8, 8, 8, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.07);
}

.why-heading .eyebrow::before {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--page-grid-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(182, 240, 0, 0.8);
  content: "";
}

.why-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.2vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.why-heading h2 span {
  color: var(--page-grid-accent);
}

.why-heading > p:last-child {
  max-width: 580px;
  margin: 1rem auto 0;
  color: var(--muted);
}

.why-network {
  position: relative;
  width: 100%;
  max-width: 1180px;
  min-height: 550px;
  margin-top: 1rem;
}

.why-connectors {
  position: absolute;
  inset: 6% 21% 4%;
  z-index: 0;
  opacity: var(--why-lines-opacity, 0);
  transition: opacity 120ms linear;
}

.why-connector {
  position: absolute;
  top: 5%;
  bottom: 5%;
  width: 31%;
  border-block: 2px solid rgba(255, 255, 255, 0.14);
}

.why-connector::after {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  background: #191919;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.why-connector-left {
  left: 0;
  border-right: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 0 18px 18px 0;
}

.why-connector-left::after {
  right: -6px;
}

.why-connector-right {
  right: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px 0 0 18px;
}

.why-connector-right::after {
  left: -6px;
}

.why-connectors::after {
  position: absolute;
  top: 50%;
  right: 31%;
  left: 31%;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.why-card {
  position: absolute;
  z-index: 2;
  display: grid;
  width: min(30vw, 310px);
  min-height: 142px;
  align-content: center;
  padding: 1.05rem 1.15rem 1.2rem;
  opacity: 0;
  background:
    linear-gradient(145deg, rgba(42, 42, 42, 0.82), rgba(20, 20, 20, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 24px rgba(255, 255, 255, 0.015),
    0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  will-change: transform, opacity;
}

.why-brand-mark {
  display: grid;
  width: 100%;
  height: 104px;
  place-items: center;
  padding: 0.7rem 0.85rem;
  background: transparent;
}

.why-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-brand-mark img[alt="Wera Tools"] {
  transform: translateY(-14px);
}

.why-brand-mark img[alt="Milwaukee"] {
  transform: translateY(-9px);
}

.why-card-left {
  left: 0;
}

.why-card-right {
  right: 0;
}

.why-card-row-one {
  top: 3%;
}

.why-card-row-two {
  top: 37%;
}

.why-card-row-three {
  top: 71%;
}

.why-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 273px;
  min-height: 273px;
  place-content: center;
  overflow: visible;
  opacity: 0;
  background: transparent;
  text-align: center;
  transform: translate(-50%, -50%) scale(0.8);
  will-change: transform, opacity;
}

.why-hub::before,
.why-hub::after {
  display: none;
}

.why-hub span {
  font-family: "Speed Rusher", var(--font-display);
  font-size: 1.18rem;
}

.why-hub img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter:
    drop-shadow(0 14px 22px rgba(0, 0, 0, 0.68))
    drop-shadow(0 0 12px rgba(182, 240, 0, 0.16));
  object-fit: contain;
}

.why-hub small {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why-scroll-scene.is-static {
  height: auto;
}

.why-scroll-scene.is-static .why-sticky {
  position: relative;
  height: auto;
}

.why-scroll-scene.is-static .why-card,
.why-scroll-scene.is-static .why-hub {
  opacity: 1;
}

/* --------------------------------------------------
   Scrolling workshop wall
-------------------------------------------------- */

.workshop-section {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 76% 45%,
      rgba(182, 240, 0, 0.08),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(8, 8, 8, 0) 0%,
      rgba(8, 8, 8, 0.72) 12%,
      rgba(8, 8, 8, 0.82) 88%,
      rgba(8, 8, 8, 0) 100%
    );
}

.workshop-scroll-scene {
  height: 320vh;
  min-height: 2400px;
}

.workshop-sticky {
  position: sticky;
  top: 0;
  display: grid;
  height: 100vh;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.55fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 6rem);
  padding-block: clamp(7rem, 12vh, 9rem) clamp(2rem, 5vh, 4rem);
  overflow: hidden;
}

.workshop-copy {
  position: relative;
  z-index: 3;
  max-width: 420px;
}

.workshop-copy::before {
  position: absolute;
  top: -2rem;
  left: -2.5rem;
  z-index: -1;
  width: 230px;
  height: 230px;
  background: rgba(182, 240, 0, 0.08);
  border-radius: 50%;
  content: "";
  filter: blur(70px);
}

.workshop-copy h2 {
  max-width: 470px;
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.4vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.workshop-copy > p:not(.eyebrow) {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1rem;
}

.workshop-copy .button {
  width: fit-content;
}

.workshop-wall {
  position: relative;
  height: calc(100vh - clamp(10rem, 20vh, 13rem));
  min-height: 520px;
  overflow: hidden;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.workshop-wall::before {
  position: absolute;
  top: 18%;
  right: 5%;
  z-index: -1;
  width: 70%;
  height: 62%;
  background: rgba(182, 240, 0, 0.1);
  border-radius: 50%;
  content: "";
  filter: blur(95px);
}

.workshop-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.2vw, 1rem);
}

.workshop-lane {
  display: flex;
  flex-direction: column;
  gap: clamp(0.7rem, 1.2vw, 1rem);
  will-change: transform;
}

.workshop-tile {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(34, 34, 34, 0.96), rgba(14, 14, 14, 0.98))
      padding-box,
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.3),
      rgba(182, 240, 0, 0.17),
      rgba(255, 255, 255, 0.08)
    ) border-box;
  border: 1px solid transparent;
  border-radius: clamp(14px, 1.4vw, 22px);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateZ(0);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.workshop-tile:nth-child(3n + 1) {
  border-color: rgba(182, 240, 0, 0.24);
}

.workshop-tile::after {
  position: absolute;
  inset: 45% 0 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.82));
  content: "";
  opacity: 0.58;
  transition: opacity 220ms ease;
}

.workshop-tile img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition:
    filter 320ms ease,
    transform 500ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.workshop-tile figcaption {
  position: absolute;
  right: 0.9rem;
  bottom: 0.8rem;
  left: 0.9rem;
  z-index: 2;
  color: #ffffff;
  font-size: clamp(0.62rem, 0.8vw, 0.75rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0;
  text-shadow: 0 2px 10px #000000;
  text-transform: uppercase;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.workshop-tile:hover {
  z-index: 2;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(182, 240, 0, 0.14);
  transform: scale(1.025);
}

.workshop-tile:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.workshop-tile:hover::after,
.workshop-tile:hover figcaption {
  opacity: 1;
}

.workshop-tile:hover figcaption {
  transform: translateY(0);
}

.workshop-scroll-scene.is-static {
  height: auto;
  min-height: 0;
}

.workshop-scroll-scene.is-static .workshop-sticky {
  position: relative;
  height: auto;
  overflow: visible;
}

.workshop-scroll-scene.is-static .workshop-wall {
  height: auto;
  overflow: visible;
  mask-image: none;
}

.workshop-scroll-scene.is-static .workshop-lane {
  transform: none !important;
}

/* --------------------------------------------------
   Instagram
-------------------------------------------------- */

.instagram-grid {
  display: grid;
  width: min(100%, 1180px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-inline: auto;
}

.instagram-embed-shell,
.instagram-link-card {
  position: relative;
  aspect-ratio: 9 / 16;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(31, 31, 31, 0.94), rgba(12, 12, 12, 0.98))
      padding-box,
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.34),
      rgba(182, 240, 0, 0.34),
      rgba(255, 255, 255, 0.08)
    ) border-box;
  border: 1px solid transparent;
  border-radius: 24px;
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(182, 240, 0, 0.06);
}

.instagram-embed-shell {
  display: grid;
  place-items: center;
  padding: clamp(0.55rem, 1.4vw, 0.9rem);
}

.instagram-embed-shell .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 540px !important;
  margin: 0 auto !important;
  background: #141414 !important;
  color: #ffffff !important;
  border-radius: 16px !important;
}

.instagram-embed-shell > iframe {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 540px !important;
  margin: 0 auto !important;
  border-radius: 16px !important;
}

.instagram-link-card {
  display: block;
}

.instagram-link-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 40%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 30%);
  content: "";
}

.instagram-link-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 300ms ease,
    transform 600ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.instagram-link-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.instagram-reel-label {
  position: absolute;
  right: 1.25rem;
  bottom: 1.15rem;
  left: 1.25rem;
  z-index: 2;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.instagram-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  background: rgba(8, 8, 8, 0.68);
  border: 1px solid rgba(182, 240, 0, 0.72);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(182, 240, 0, 0.06),
    0 0 28px rgba(182, 240, 0, 0.22);
  transform: translate(-50%, -50%);
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.instagram-play::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #ffffff;
  content: "";
}

.instagram-link-card:hover .instagram-play {
  background: rgba(182, 240, 0, 0.88);
  transform: translate(-50%, -50%) scale(1.08);
}

.instagram-link-card:hover .instagram-play::before {
  border-left-color: #080808;
}

/* --------------------------------------------------
   Marquees
-------------------------------------------------- */

.marquee-section {
  position: relative;
  width: min(calc(100% - 2rem), var(--container-width));
  margin-inline: auto;
  overflow: hidden;
  padding-block: 3rem;
}

.marquee-heading {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 2rem), 1180px);
  margin-inline: auto;
  text-align: center;
}

.marquee-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 0.75rem;
  color: var(--page-grid-accent);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow:
    0 0 18px rgba(182, 240, 0, 0.16),
    0 8px 30px rgba(0, 0, 0, 0.5);
}

.marquee-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(76%, 290px);
  height: 9px;
  background:
    radial-gradient(
      circle at 50% 0,
      transparent 0 4px,
      rgba(244, 176, 0, 0.92) 4.5px 5.5px,
      transparent 6px
    )
    0 0 / 18px 9px repeat-x,
    radial-gradient(
      circle at 50% 100%,
      transparent 0 4px,
      rgba(244, 176, 0, 0.92) 4.5px 5.5px,
      transparent 6px
    )
    9px 0 / 18px 9px repeat-x;
  filter: drop-shadow(0 0 4px rgba(244, 176, 0, 0.3));
  content: "";
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  transform: translateX(-50%);
  animation: marquee-heading-squiggle 4.8s linear infinite;
}

@keyframes marquee-heading-squiggle {
  to {
    background-position:
      36px 0,
      45px 0;
  }
}

.marquee {
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 0;
}

.marquee-track {
  --marquee-gap: clamp(4.75rem, 7vw, 7.5rem);

  display: flex;
  width: max-content;
  gap: var(--marquee-gap);
  padding-block: 0.9rem;
  animation: marquee-scroll 24s linear infinite;
}

.marquee-track-reverse {
  animation-direction: reverse;
}

.marquee-track span {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.025em;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(182, 240, 0, 0.08);
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::after {
  position: absolute;
  top: 50%;
  left: calc(100% + (var(--marquee-gap) / 2));
  color: var(--page-grid-accent);
  content: "✦";
  text-shadow: 0 0 8px rgba(182, 240, 0, 0.5);
  transform: translate(-50%, -50%);
}

.crossing-marquee {
  min-height: 280px;
  padding-block: 2.75rem;
}

.crossing-marquee .marquee-track {
  animation-duration: 68s;
}

.crossing-marquee .marquee-one {
  position: absolute;
  top: 58%;
  left: 0;
  z-index: 1;
  transform: rotate(5deg);
}

.crossing-marquee .marquee-two {
  position: absolute;
  top: 58%;
  left: 0;
  z-index: 2;
  transform: rotate(-5deg);
}

.straight-marquee .marquee {
  margin-top: 1.5rem;
}

.straight-marquee .marquee-track {
  animation-duration: 38s;
}

/* --------------------------------------------------
   Contact
-------------------------------------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.contact-copy {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  justify-items: start;
  text-align: left;
}

.contact-copy h2,
.contact-copy .section-intro {
  margin-right: auto;
  margin-left: 0;
}

.contact-button {
  justify-self: start;
}

.contact-art {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-column: 2;
  grid-row: 1;
  place-items: center;
}

.contact-art::before {
  position: absolute;
  z-index: -1;
  width: 82%;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(182, 240, 0, 0.2) 0%,
    rgba(182, 240, 0, 0.08) 42%,
    transparent 72%
  );
  border-radius: 50%;
  content: "";
  filter: blur(18px);
}

.contact-art img {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  filter:
    drop-shadow(0 24px 32px rgba(0, 0, 0, 0.56))
    drop-shadow(0 0 18px rgba(182, 240, 0, 0.3))
    drop-shadow(0 0 34px rgba(182, 240, 0, 0.14));
  transform: rotate(-5deg);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

.footer-wordmark-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(115px, 10.5vw, 190px);
  padding: 0.25rem 0 0;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(8, 8, 8, 0.72) 58%,
    #080808 100%
  );
}

.footer-wordmark-stage::after {
  content: none;
}

.footer-wordmark {
  position: relative;
  width: max-content;
  max-width: calc(100vw - 3rem);
  margin: 0;
  background:
    linear-gradient(
      108deg,
      transparent 25%,
      rgba(255, 255, 255, 0.12) 36%,
      #fff 47%,
      rgba(255, 255, 255, 0.16) 58%,
      transparent 70%
    ) 105% 50% / 210% 100% no-repeat,
    linear-gradient(
      180deg,
      #6e7478 0%,
      #fff 11%,
      #b7bec2 22%,
      #4e555a 34%,
      #f9fbfc 47%,
      #8b9398 59%,
      #e8edef 72%,
      #5e656a 85%,
      #cdd2d5 94%,
      #747b80 100%
    );
  color: transparent;
  filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.68));
  font-family: "Ethnocentric", var(--font-display);
  font-size: clamp(3.5rem, 8.1vw, 10.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.92;
  opacity: 1;
  text-align: center;
  white-space: nowrap;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.34);
}

.site-footer {
  position: relative;
  z-index: 4;
  padding-block: 2.65rem;
  background: #080808;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-inner p {
  margin: 0;
}

.footer-copy {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}

.footer-copy > p:first-child {
  font-size: 1.08rem;
}

.footer-credit {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.08rem;
  line-height: 1;
}

.footer-credit a {
  display: inline-block;
  line-height: 0;
}

.footer-credit img {
  display: block;
  width: clamp(165px, 11vw, 215px);
  height: auto;
  filter:
    drop-shadow(0 0 6px rgba(0, 87, 184, 0.56))
    drop-shadow(0 0 13px rgba(0, 87, 184, 0.24));
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.footer-credit a:hover img,
.footer-credit a:focus-visible img {
  filter:
    drop-shadow(0 0 8px rgba(0, 87, 184, 0.96))
    drop-shadow(0 0 19px rgba(0, 87, 184, 0.62))
    drop-shadow(0 0 30px rgba(63, 124, 255, 0.28));
  transform: translateY(-1px);
}

.footer-credit a:active img {
  filter:
    drop-shadow(0 0 5px rgba(0, 63, 135, 1))
    drop-shadow(0 0 13px rgba(0, 87, 184, 0.78));
  transform: translateY(1px) scale(0.985);
}

.footer-credit a:focus-visible {
  border-radius: 0.25rem;
  outline: 2px solid #3f7cff;
  outline-offset: 5px;
}

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

@media (max-width: 900px) {
  .footer-wordmark-stage {
    display: none;
  }

  .site-nav {
    display: grid;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.72fr);
    gap: 2.5rem;
  }

  .why-scroll-scene {
    height: auto;
  }

  .why-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    padding-block: 6rem;
    overflow: visible;
  }

  .why-network {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3rem;
  }

  .why-connectors {
    display: none;
  }

  .why-card,
  .why-hub {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    opacity: 1;
    transform: none !important;
  }

  .why-hub {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    width: 247px;
    min-height: 247px;
    margin-bottom: 0.5rem;
  }

  .workshop-scroll-scene {
    height: auto;
    min-height: 0;
  }

  .workshop-sticky {
    position: relative;
    display: block;
    height: auto;
    padding-block: 6rem;
    overflow: visible;
  }

  .workshop-copy {
    max-width: 680px;
    margin-bottom: 3rem;
  }

  .workshop-copy h2 {
    max-width: 680px;
  }

  .workshop-wall {
    height: auto;
    min-height: 0;
    overflow: visible;
    mask-image: none;
  }

  .workshop-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workshop-lane {
    display: contents;
    transform: none !important;
  }

  .instagram-grid {
    grid-template-columns: 1fr 1fr;
  }

  .instagram-grid > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .section {
    padding-block: 5rem;
  }

  .hero {
    min-height: auto;
    padding-block: 2.5rem 4rem;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.74) 0%,
        rgba(8, 8, 8, 0.58) 50%,
        rgba(8, 8, 8, 0.8) 100%
      );
  }

  .hero-background {
    opacity: 0.44;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    width: min(100%, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
    min-width: 0;
    margin-inline: auto;
  }

  .hero-copy,
  .hero-media,
  .hero-wordmark {
    min-width: 0;
    max-width: 100%;
  }

  .hero-wordmark {
    width: 90vw;
    max-width: calc(100vw - 2rem);
    padding-inline: 0.08em;
    font-size: clamp(1.65rem, 8.2vw, 10rem);
    letter-spacing: 0;
    line-height: 0.95;
    transform: none;
  }

  .hero-media {
    justify-self: center;
    width: min(calc(100vw - 2.5rem), 390px);
    max-width: calc(100vw - 2.5rem);
  }

  .why-network {
    grid-template-columns: 1fr;
  }

  .why-card-left.why-card-row-one {
    order: 1;
  }

  .why-card-left.why-card-row-two {
    order: 2;
  }

  .why-card-left.why-card-row-three {
    order: 3;
  }

  .why-hub {
    grid-row: auto;
    order: 4;
  }

  .why-card-right.why-card-row-one {
    order: 5;
  }

  .why-card-right.why-card-row-two {
    order: 6;
  }

  .why-card-right.why-card-row-three {
    order: 7;
  }

  .why-card {
    min-height: 140px;
    padding: 1rem;
    overflow: hidden;
    transition: none;
  }

  .why-brand-mark {
    height: 96px;
    padding: 0.5rem clamp(1.25rem, 8vw, 3rem);
    overflow: hidden;
  }

  .why-brand-mark img,
  .why-brand-mark img[alt="Wera Tools"],
  .why-brand-mark img[alt="Milwaukee"] {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 80px;
    max-height: 80px;
    margin: auto;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .why-hub {
    grid-column: auto;
  }

  .site-header {
    padding-block: 0.5rem;
  }

  .header-inner {
    min-height: 68px;
    padding: 0.25rem 0.7rem;
    backdrop-filter: none;
  }

  .site-logo img {
    height: 52px;
    max-width: 58px;
  }

  .site-nav {
    gap: clamp(0.45rem, 2.4vw, 0.85rem);
    min-width: 0;
  }

  .site-nav > a:not(.site-logo) {
    font-size: clamp(0.72rem, 3vw, 0.9rem);
    letter-spacing: 0.025em;
    white-space: nowrap;
  }

  .instagram-side-tab {
    top: 56%;
    width: 48px;
    gap: 0.55rem;
    padding: 0.7rem 0.4rem 0.6rem;
    border-radius: 15px 0 0 15px;
    backdrop-filter: none;
  }

  .instagram-side-tab span {
    font-size: 0.6rem;
  }

  .instagram-side-tab img {
    width: 30px;
    height: 30px;
  }

  .workshop-sticky {
    padding-block: 5rem;
  }

  .workshop-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .contact-art {
    grid-column: 1;
    grid-row: 2;
  }

  .contact-art img {
    width: min(78vw, 320px);
  }

  .workshop-tile figcaption {
    opacity: 1;
    transform: none;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .instagram-grid > :last-child {
    grid-column: auto;
  }

  .crossing-marquee {
    min-height: 235px;
  }

  .crossing-marquee .marquee-one,
  .crossing-marquee .marquee-two {
    top: 61%;
  }

  .footer-inner {
    width: 100%;
    align-items: center;
    flex-direction: column;
  }

  .site-footer {
    padding-block: 2rem;
  }

  .footer-copy > p:first-child {
    font-size: 0.9rem;
  }

  .footer-credit img {
    width: 150px;
  }

  .footer-credit {
    gap: 0.4rem;
    font-size: 0.9rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-wordmark {
    background-position: 50% 50%;
  }

  .hero-background {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
