:root {
  --ink: #09060d;
  --ink-soft: #130d1a;
  --ink-card: #17101f;
  --paper: #f5f6ed;
  --lime: #baff25;
  --lime-hot: #d8ff75;
  --purple: #8f35d8;
  --purple-hot: #c96bff;
  --water: #31104a;
  --muted: #b5aebc;
  --line: rgba(255, 255, 255, 0.14);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background:
    radial-gradient(circle at 5% 34%, rgba(186, 255, 37, 0.08), transparent 24rem),
    radial-gradient(circle at 95% 48%, rgba(143, 53, 216, 0.16), transparent 34rem),
    var(--ink);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(calc(100% - 3rem), var(--max));
  min-height: 7.2rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  text-decoration: none;
}

.brand-logo {
  width: 4.6rem;
  height: 4.6rem;
  flex: 0 0 auto;
  border: 2px solid var(--lime);
  border-radius: 50%;
  background: #050306;
  box-shadow:
    0 0 0 4px rgba(9, 6, 13, 0.75),
    0 0 28px rgba(186, 255, 37, 0.26),
    0 0 48px rgba(143, 53, 216, 0.18);
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Bungee", Impact, sans-serif;
  font-size: 0.93rem;
  font-weight: 400;
  letter-spacing: 0.025em;
}

.brand-copy small {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  text-decoration: none;
}

.primary-nav > a:not(.nav-shop)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(186, 255, 37, 0.7);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-shop {
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px 999px 999px 0.4rem;
  background: rgba(9, 6, 13, 0.28);
  backdrop-filter: blur(10px);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-shop:hover,
.nav-shop:focus-visible {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px) rotate(-1deg);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  background: rgba(9, 6, 13, 0.72);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 96vh);
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-image,
.hero-shade,
.hero-ripples {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -4;
  object-fit: cover;
  object-position: 58% center;
  animation: heroReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6, 3, 10, 0.94) 0%, rgba(6, 3, 10, 0.68) 38%, rgba(6, 3, 10, 0.08) 72%),
    linear-gradient(0deg, rgba(9, 6, 13, 0.98) 0%, transparent 47%),
    linear-gradient(180deg, rgba(9, 6, 13, 0.62) 0%, transparent 30%);
}

.hero-ripples {
  z-index: -2;
  opacity: 0.32;
  background: repeating-radial-gradient(ellipse at 22% 88%, transparent 0 38px, rgba(186, 255, 37, 0.2) 40px 41px, transparent 43px 78px);
  mask-image: linear-gradient(to top, black, transparent 40%);
}

.hero-content {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: 13rem 0 8.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.25rem;
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2.25rem;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.hero h1,
.section-heading h2,
.color-lab h2,
.process-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: "Bungee", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1000px;
  font-size: clamp(3.3rem, 7.2vw, 7.1rem);
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--purple-hot);
  font-family: "Permanent Marker", "Brush Script MT", cursive;
  font-size: 1.06em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  text-shadow: 0 0 38px rgba(143, 53, 216, 0.48);
}

.hero-copy {
  max-width: 620px;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.82rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px 999px 999px 0.45rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) rotate(-0.7deg);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 0 34px rgba(186, 255, 37, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--lime-hot);
  box-shadow: 0 0 48px rgba(186, 255, 37, 0.4);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(9, 6, 13, 0.4);
  backdrop-filter: blur(10px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--purple-hot);
  background: rgba(143, 53, 216, 0.34);
}

.hero-stamp {
  position: absolute;
  right: max(1.5rem, calc((100vw - var(--max)) / 2));
  bottom: 4.8rem;
  display: grid;
  width: 10.2rem;
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  background: rgba(21, 7, 31, 0.5);
  text-align: center;
  backdrop-filter: blur(10px);
  transform: rotate(5deg);
}

.hero-stamp::before {
  position: absolute;
  inset: 0.58rem;
  border: 2px dashed rgba(186, 255, 37, 0.7);
  border-radius: inherit;
  content: "";
}

.hero-stamp strong {
  color: var(--lime);
  font-family: "Bungee", Impact, sans-serif;
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 0.94;
}

.hero-stamp span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(9, 6, 13, 0.75);
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 0 35px rgba(186, 255, 37, 0.22);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.5rem;
  padding: 0.78rem 0;
  font-family: "Bungee", Impact, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}

.ticker-track b {
  color: var(--purple);
  font-size: 1.25rem;
}

.shop-section,
.process-section {
  position: relative;
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: 8rem 0;
}

.shop-section {
  isolation: isolate;
}

.shop-section::before {
  position: absolute;
  z-index: -1;
  top: 4rem;
  right: -20vw;
  width: 62rem;
  height: 34rem;
  opacity: 0.19;
  background: url("./assets/opl-neon-pond-v2.webp") center / cover no-repeat;
  content: "";
  filter: saturate(1.3);
  mask-image: radial-gradient(ellipse, black 5%, transparent 68%);
}

.shop-section::after {
  position: absolute;
  z-index: -1;
  top: 22rem;
  left: -12rem;
  width: 28rem;
  height: 10rem;
  border: 1px solid rgba(186, 255, 37, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 47% 38%, rgba(186, 255, 37, 0.25), transparent 55%),
    rgba(143, 53, 216, 0.07);
  content: "";
  transform: rotate(-10deg);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.section-heading h2,
.process-intro h2 {
  font-size: clamp(3rem, 5.9vw, 5.9rem);
}

.section-heading-copy {
  padding-bottom: 0.4rem;
}

.section-heading-copy > p {
  max-width: 480px;
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.listing-count {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(186, 255, 37, 0.44);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(186, 255, 37, 0.07);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-grid.is-collapsed .product-card:nth-child(n + 9) {
  display: none;
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.2rem 1.2rem 1.2rem 0.3rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 38%),
    var(--ink-card);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card:nth-child(4n + 2),
.product-card:nth-child(4n + 3) {
  border-color: rgba(201, 107, 255, 0.23);
}

.product-card:hover {
  border-color: rgba(186, 255, 37, 0.5);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32), 0 0 26px rgba(143, 53, 216, 0.1);
  transform: translateY(-5px);
}

.product-photo {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e9e9e5;
}

.product-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(9, 6, 13, 0.32));
  content: "";
  pointer-events: none;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 350ms ease;
}

.product-card:hover .product-photo img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.025);
}

.product-number {
  position: absolute;
  z-index: 1;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 2.55rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  color: #fff;
  background: rgba(9, 6, 13, 0.72);
  font-family: "Bungee", Impact, sans-serif;
  font-size: 0.68rem;
  backdrop-filter: blur(9px);
}

.custom-ribbon {
  position: absolute;
  z-index: 2;
  bottom: 0.85rem;
  left: 0.85rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card-custom {
  border-color: rgba(186, 255, 37, 0.55);
  box-shadow: 0 0 34px rgba(186, 255, 37, 0.08);
}

.product-copy {
  display: flex;
  min-height: 15.2rem;
  flex: 1;
  flex-direction: column;
  padding: 1.2rem;
}

.product-type {
  margin: 0 0 0.65rem !important;
  color: var(--lime) !important;
  font-size: 0.7rem !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0;
  font-family: "Bungee", Impact, sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.product-copy > p:not(.product-type) {
  margin: 0.8rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.product-buy strong {
  color: var(--lime);
  font-family: "Permanent Marker", "Brush Script MT", cursive;
  font-size: 1.48rem;
  font-weight: 400;
  line-height: 1;
}

.product-buy a {
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.product-buy a:hover,
.product-buy a:focus-visible {
  color: var(--purple-hot);
}

.catalog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.25rem;
}

.button-outline {
  border-color: rgba(186, 255, 37, 0.58);
  color: var(--lime);
  background: rgba(186, 255, 37, 0.06);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--lime);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--lime);
}

.catalog-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

.color-lab {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(3rem, 7vw, 7rem);
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) max(1.5rem, calc((100vw - var(--max)) / 2));
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 18%, rgba(143, 53, 216, 0.32), transparent 23rem),
    linear-gradient(115deg, var(--lime-hot), var(--lime) 58%, #9fea17);
  isolation: isolate;
}

.color-lab::before,
.color-lab::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.color-lab::before {
  top: -8rem;
  right: -6rem;
  width: 31rem;
  height: 17rem;
  border: 3px solid rgba(44, 10, 64, 0.18);
  background: rgba(143, 53, 216, 0.14);
  transform: rotate(-12deg);
}

.color-lab::after {
  right: 24%;
  bottom: -6rem;
  width: 19rem;
  height: 9rem;
  border: 2px solid rgba(44, 10, 64, 0.18);
  background: rgba(143, 53, 216, 0.1);
  transform: rotate(8deg);
}

.eyebrow-dark {
  color: var(--ink);
}

.color-lab h2 {
  font-size: clamp(3.2rem, 6.2vw, 6rem);
}

.color-lab h2 em {
  color: var(--purple);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.color-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.8rem 0 2rem;
  font-size: 1.08rem;
}

.button-ink {
  color: #fff;
  background: var(--ink);
}

.button-ink:hover,
.button-ink:focus-visible {
  color: var(--lime);
  box-shadow: 0 14px 34px rgba(9, 6, 13, 0.24);
}

.swatch-list {
  align-self: center;
  border-top: 2px solid var(--ink);
}

.swatch-row {
  display: grid;
  grid-template-columns: 4.25rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(9, 6, 13, 0.3);
}

.swatch {
  display: block;
  width: 3.7rem;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 58% 42% 55% 45%;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.35), 4px 5px 0 rgba(9, 6, 13, 0.14);
  transform: rotate(-8deg);
}

.swatch-green-purple {
  background: radial-gradient(circle at 25% 25%, #d887ff 0 2px, transparent 3px), radial-gradient(circle at 65% 70%, #d887ff 0 2px, transparent 3px), #6d6c35;
}

.swatch-mud {
  background: radial-gradient(circle at 30% 35%, #27cbdf 0 2px, transparent 3px), radial-gradient(circle at 70% 60%, #ff5c5c 0 2px, transparent 3px), #4b2d1b;
}

.swatch-grape {
  background: radial-gradient(circle at 32% 30%, #ff7fca 0 2px, transparent 3px), #35104b;
}

.swatch-watermelon {
  background: radial-gradient(circle at 35% 32%, #47a7ff 0 2px, transparent 3px), radial-gradient(circle at 68% 58%, #47a7ff 0 2px, transparent 3px), #7b9153;
}

.swatch-lime {
  background: radial-gradient(circle at 30% 30%, #8f29cf 0 2px, transparent 3px), radial-gradient(circle at 70% 62%, #8f29cf 0 2px, transparent 3px), #baff25;
}

.swatch-row div {
  display: grid;
}

.swatch-row strong {
  font-size: 1rem;
}

.swatch-row small {
  color: rgba(9, 6, 13, 0.64);
  font-size: 0.82rem;
}

.swatch-row b {
  font-family: "Bungee", Impact, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1.22fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: start;
  isolation: isolate;
}

.process-section::before {
  position: absolute;
  z-index: -1;
  right: -16rem;
  bottom: 2rem;
  width: 38rem;
  height: 14rem;
  border: 1px solid rgba(186, 255, 37, 0.14);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(143, 53, 216, 0.18), transparent 68%);
  content: "";
  transform: rotate(-8deg);
}

.process-intro {
  position: sticky;
  top: 3rem;
}

.process-intro > p:last-child {
  max-width: 32rem;
  margin: 1.8rem 0 0;
  color: var(--muted);
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-steps > li > span {
  color: var(--lime);
  font-family: "Bungee", Impact, sans-serif;
  font-size: 0.75rem;
}

.process-steps h3 {
  margin: 0;
  font-family: "Bungee", Impact, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.process-steps p {
  max-width: 34rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 46rem;
  place-content: center;
  overflow: hidden;
  padding: 6rem 1.5rem;
  border-block: 1px solid var(--line);
  text-align: center;
  isolation: isolate;
}

.final-cta > img:first-child,
.final-cta-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > img:first-child {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}

.final-cta-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 46%, rgba(9, 6, 13, 0.5), rgba(9, 6, 13, 0.9) 63%),
    linear-gradient(0deg, var(--ink), transparent 34%, var(--ink));
}

.cta-logo {
  width: 6.5rem;
  margin: 0 auto 1.1rem;
  border: 2px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(186, 255, 37, 0.28), 0 0 70px rgba(143, 53, 216, 0.3);
}

.final-cta > p {
  margin: 0 0 1.2rem;
  color: var(--lime);
  font-family: "Bungee", Impact, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta h2 {
  font-size: clamp(3.3rem, 7.4vw, 7.4rem);
}

.final-cta .hero-actions {
  justify-content: center;
}

footer {
  display: grid;
  width: min(calc(100% - 3rem), var(--max));
  grid-template-columns: 1.2fr 1fr auto;
  gap: 2rem;
  align-items: center;
  margin: 0 auto;
  padding: 3rem 0;
}

.footer-brand .brand-logo {
  width: 4rem;
  height: 4rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--lime);
}

footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

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

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

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 6.4rem;
  }

  .brand-logo {
    width: 4rem;
    height: 4rem;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    display: none;
    width: min(22rem, calc(100vw - 3rem));
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 1rem 1rem 1rem 0.3rem;
    background: rgba(9, 6, 13, 0.97);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(14px);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 0.85rem;
  }

  .nav-shop {
    margin-top: 0.35rem;
    text-align: center;
  }

  .hero-stamp {
    display: none;
  }

  .section-heading,
  .color-lab,
  .process-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .color-lab {
    gap: 4rem;
  }

  .process-intro {
    position: static;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .site-header,
  .hero-content,
  .shop-section,
  .process-section,
  footer {
    width: min(calc(100% - 2rem), var(--max));
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    max-width: 8.4rem;
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .hero {
    min-height: 780px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 3, 10, 0.91) 0%, rgba(6, 3, 10, 0.57) 68%, rgba(6, 3, 10, 0.22)),
      linear-gradient(0deg, rgba(9, 6, 13, 1) 0%, rgba(9, 6, 13, 0.12) 58%),
      linear-gradient(180deg, rgba(9, 6, 13, 0.68), transparent 34%);
  }

  .hero-content {
    padding: 11rem 0 5.5rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13.6vw, 4.35rem);
  }

  .hero-copy {
    max-width: 94%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .shop-section,
  .process-section {
    padding: 5.2rem 0;
  }

  .section-heading h2,
  .process-intro h2,
  .color-lab h2 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .product-photo {
    aspect-ratio: 1 / 0.9;
  }

  .product-copy {
    min-height: 13.5rem;
  }

  .product-copy h3 {
    font-size: 1.12rem;
  }

  .catalog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    align-self: center;
    margin-top: 0.6rem;
  }

  .catalog-note {
    text-align: center;
  }

  .color-lab {
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 1rem;
  }

  .swatch-row {
    grid-template-columns: 3.7rem minmax(0, 1fr) auto;
  }

  .swatch {
    width: 3.15rem;
  }

  .process-steps li {
    grid-template-columns: 2.7rem 1fr;
  }

  .final-cta {
    min-height: 42rem;
    padding-inline: 1rem;
  }

  .final-cta h2 {
    font-size: clamp(2.9rem, 14vw, 4.7rem);
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer > p {
    grid-column: auto;
  }
}
