body.home-landing {
  --home-gap: var(--space-lg);
  --home-radius: var(--radius-lg);
  --home-surface: rgba(14, 17, 39, 0.78);
  --home-panel: var(--surface-panel);
  --home-border: rgba(255, 255, 255, 0.16);
  --home-text: var(--text-on-dark);
  --home-muted: var(--text-on-dark-muted);
  --home-blue: var(--brand-blue);
  --home-yellow: var(--brand-yellow);
  --home-hot-pink: var(--brand-hot-pink);
}

body.home-landing {
  color: var(--home-text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.home-landing > section,
body.home-landing > main > * {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}

.account-hero {
  margin-bottom: -2rem !important;
}

body.home-landing > main > section {
  background: none;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: -2rem;
  margin-top: 3rem;
}

body.home-landing a {
  text-decoration: none;
}

body.home-landing p {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.65;
  color: var(--home-muted);
}

body.home-landing h1,
body.home-landing h2,
body.home-landing h3 {
  color: var(--home-yellow);
  letter-spacing: 0.08em;
}

body.home-landing h1 {
  font-size: clamp(2.7rem, 7vw, 4.2rem);
  line-height: 1.02;
}

body.home-landing h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.35rem;
}

body.home-landing h3 {
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  margin: 0;
}

.home-landing__page {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--home-page-gap, var(--home-gap));
  padding: 0 0 clamp(72px, 12vh, 120px);
  box-sizing: border-box;
  flex: 1 0 auto;
}

.home-hero {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: clamp(100px, 18vh, 160px) 0 clamp(72px, 12vh, 120px);
  background: none;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  max-width: 90%;
  box-sizing: border-box;
}

.home-panel {
  position: relative;
  isolation: isolate;
  border-radius: var(--home-radius);
  border: 1px solid var(--home-border);
  padding: clamp(32px, 6vw, 56px);
  background: linear-gradient(
      150deg,
      rgba(10, 12, 32, 0.92),
      rgba(8, 10, 28, 0.78)
    ),
    radial-gradient(
      circle at 20% 18%,
      rgba(255, 199, 37, 0.16),
      transparent 58%
    ),
    radial-gradient(
      circle at 84% 78%,
      rgba(37, 190, 255, 0.18),
      transparent 55%
    );
  box-shadow: 0 32px 60px rgba(6, 8, 22, 0.55);
  overflow: hidden;
}

.home-panel::before,
.home-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: -40% -24% 30% -34%;
  background: radial-gradient(
    circle at 28% 30%,
    rgba(255, 47, 128, 0.34),
    transparent 62%
  );
  filter: blur(26px);
  opacity: 0.4;
  mix-blend-mode: screen;
  z-index: 0;
}

.home-panel::after {
  inset: 48% -32% -40% -42%;
  background: radial-gradient(
    circle at 72% 60%,
    rgba(37, 190, 255, 0.3),
    transparent 60%
  );
  opacity: 0.45;
  filter: blur(32px);
}

.home-panel > * {
  position: relative;
  z-index: 1;
}

.home-panel--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 5vw, 40px);
  align-items: stretch;
}

.home-hero__inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--home-radius);
  border: 1px solid var(--home-border);
  background: linear-gradient(
      140deg,
      rgba(8, 10, 27, 0.96),
      rgba(15, 18, 40, 0.82)
    ),
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 199, 37, 0.16),
      transparent 58%
    ),
    radial-gradient(
      circle at 90% 76%,
      rgba(37, 190, 255, 0.18),
      transparent 52%
    );
  box-shadow: 0 34px 64px rgba(6, 8, 22, 0.55);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(26px, 5vw, 50px);
  padding: clamp(32px, 6vw, 60px);
  overflow: hidden;
  isolation: isolate;
  box-sizing: border-box;
}

.home-hero__inner::before,
.home-hero__inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
}

.home-hero__inner::before {
  inset: -44% -22% 30% -28%;
  background: radial-gradient(
    circle at 24% 30%,
    rgba(255, 47, 128, 0.42),
    transparent 62%
  );
  filter: blur(26px);
  opacity: 0.75;
}

.home-hero__inner::after {
  inset: 52% -32% -42% -46%;
  background: radial-gradient(
    circle at 70% 60%,
    rgba(37, 190, 255, 0.32),
    transparent 60%
  );
  filter: blur(34px);
  opacity: 0.6;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vh, 30px);
  max-width: 700px;
}

.home-hero__content h1 {
  color: white !important;
}

.home-hero__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--home-blue);
}

.home-hero__accent {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  color: transparent;
  background: linear-gradient(
    120deg,
    #523c0b 0%,
    #ac8330 18%,
    #f6d77c 36%,
    #fceeb5 54%,
    #c5931c 72%,
    #f6d77c 90%,
    #6a4d11 100%
  );
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: accent-gold 10s ease-in-out infinite;
  text-shadow: 0 14px 26px rgba(246, 215, 124, 0.32);
}

@keyframes accent-gold {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.38);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-text);
}

.home-chip--highlight {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 30px rgba(255, 199, 37, 0.28);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-services__cta {
  margin-top: clamp(24px, 4vw, 36px);
}

.home-services__cta .home-btn {
  min-width: clamp(180px, 22vw, 240px);
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--home-border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--home-text);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
  outline: none;
}

.home-btn--primary {
  background: linear-gradient(
    120deg,
    #523c0b 0%,
    #ac8330 18%,
    #f6d77c 36%,
    #fceeb5 54%,
    #c5931c 72%,
    #f6d77c 90%,
    #6a4d11 100%
  );
  background-size: 220% 220%;
  color: #1f1605;
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 20px 40px rgba(246, 215, 124, 0.32);
  animation: accent-gold 10s ease-in-out infinite;
}

.home-btn--primary:hover,
.home-btn--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 28px 52px rgba(246, 215, 124, 0.42);
  background-position: 60% 40%;
}

.home-btn--ghost {
  background: rgba(0, 0, 0, 0.38);
}

.home-btn:not(.home-btn--primary):hover,
.home-btn:not(.home-btn--primary):focus-visible {
  border-color: var(--home-blue);
  box-shadow: 0 18px 32px rgba(37, 190, 255, 0.28);
  transform: translateY(-1px);
}

.home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 20px);
}

.home-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  min-width: 140px;
}

.home-hero__stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  letter-spacing: 0.14em;
  color: var(--home-yellow);
  line-height: 1;
}

.home-hero__stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-muted);
}

.home-hero__visual {
  position: relative;
  border-radius: calc(var(--home-radius) - 4px);
  min-height: clamp(280px, 44vh, 420px);
  overflow: hidden;
  background: rgba(4, 6, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 30px rgba(6, 8, 22, 0.55);
}

.home-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.home-hero__visual::before {
  content: "";
  position: absolute;
  inset: 10% 12% 12% 10%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  pointer-events: none;
}

.home-hero__caption {
  position: absolute;
  bottom: clamp(18px, 5vh, 32px);
  left: clamp(22px, 5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--home-text);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}

.home-hero__caption-title {
  color: var(--home-yellow);
  font-weight: 600;
}

.home-hero__caption-subtitle {
  color: var(--home-muted);
}

.home-section-header {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.home-section-header__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--home-blue);
}

.home-service-lists {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vh, 36px);
}

.home-service-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vh, 24px);
}

.home-service-stack__label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--home-muted);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 18px);
}

.home-service-card {
  position: relative;
  isolation: isolate;
  --card-image: none;
  border-radius: calc(var(--home-radius) + 6px);
  padding: clamp(24px, 4vw, 36px);
  color: var(--home-text);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vh, 22px);
  min-height: clamp(220px, 32vh, 280px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    160deg,
    rgba(10, 12, 30, 0.9),
    rgba(6, 8, 24, 0.76)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 22px 44px rgba(6, 8, 22, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease, background 0.35s ease;
}

.home-service-card::before {
  content: "";
  position: absolute;
  inset: -4px;
  background: radial-gradient(
      circle at 18% 20%,
      rgba(255, 199, 37, 0.18),
      transparent 65%
    ),
    radial-gradient(
      circle at 82% 80%,
      rgba(37, 190, 255, 0.22),
      transparent 60%
    ),
    linear-gradient(220deg, rgba(7, 9, 24, 0.88), rgba(9, 11, 32, 0.72)),
    var(--card-image) center / cover;
  filter: saturate(1.2) brightness(1.05);
  z-index: 0;
  opacity: 0.7;
  transition: opacity 0.45s ease, filter 0.45s ease;
}

.home-service-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--home-radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 0;
  opacity: 0.65;
  transition: opacity 0.35s ease, border-color 0.35s ease;
}

.home-service-card > * {
  position: relative;
  z-index: 1;
}

.home-service-card__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--home-blue);
}

.home-service-card h3 {
  color: var(--home-text);
}

.home-service-card p {
  color: var(--home-muted);
  margin: 0;
}

.home-service-card:hover,
.home-service-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(
    160deg,
    rgba(12, 14, 36, 0.95),
    rgba(6, 8, 26, 0.82)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 30px 60px rgba(31, 64, 120, 0.38);
  outline: none;
}

.home-service-card:hover::before,
.home-service-card:focus-visible::before {
  opacity: 0.92;
  filter: saturate(1.45) brightness(1.12);
}

.home-service-card:hover::after,
.home-service-card:focus-visible::after {
  opacity: 0.9;
  border-color: rgba(255, 255, 255, 0.22);
}

#home-service-clothing {
  --card-image: url("/assets/clothing.webp");
}

#home-service-banners {
  --card-image: url("/assets/banners.webp");
}

#home-service-stickers {
  --card-image: url("/assets/stickers.webp");
}

#home-service-dtf {
  --card-image: url("/assets/dtf-transfers.webp");
}

.home-service-grid--secondary {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.home-service-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: calc(var(--home-radius) - 6px);
  border: 1px solid var(--home-border);
  background: linear-gradient(
      140deg,
      rgba(8, 10, 27, 0.92),
      rgba(13, 16, 36, 0.78)
    ),
    radial-gradient(
      circle at 16% 18%,
      rgba(255, 199, 37, 0.14),
      transparent 60%
    ),
    radial-gradient(
      circle at 84% 82%,
      rgba(37, 190, 255, 0.14),
      transparent 54%
    );
  box-shadow: 0 28px 52px rgba(6, 8, 22, 0.45);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-text);
  text-align: center;
  min-height: 60px;
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.home-service-chip:hover,
.home-service-chip:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 199, 37, 0.6);
  box-shadow: 0 22px 38px rgba(37, 190, 255, 0.24);
  outline: none;
}

.home-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, 1fr);
  gap: clamp(16px, 3vw, 28px);
  margin-top: clamp(24px, 4vh, 36px);
}

.home-showcase__intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(26px, 4vw, 46px);
  align-items: center;
  margin-top: clamp(20px, 4vh, 32px);
  padding: clamp(28px, 6vw, 52px);
  border-radius: var(--home-radius);
  border: 1px solid var(--home-border);
  background: linear-gradient(
      140deg,
      rgba(8, 10, 27, 0.96),
      rgba(15, 18, 40, 0.82)
    ),
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 199, 37, 0.16),
      transparent 58%
    ),
    radial-gradient(
      circle at 90% 76%,
      rgba(37, 190, 255, 0.18),
      transparent 52%
    );
  box-shadow: 0 34px 64px rgba(6, 8, 22, 0.55);
  overflow: hidden;
  isolation: isolate;
}

.home-showcase__intro::before,
.home-showcase__intro::after {
  content: "";
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
}

.home-showcase__intro::before {
  inset: -44% -22% 30% -28%;
  background: radial-gradient(
    circle at 24% 30%,
    rgba(255, 47, 128, 0.42),
    transparent 62%
  );
  filter: blur(26px);
  opacity: 0.7;
}

.home-showcase__intro::after {
  inset: 50% -34% -40% -40%;
  background: radial-gradient(
    circle at 70% 60%,
    rgba(37, 190, 255, 0.32),
    transparent 60%
  );
  filter: blur(34px);
  opacity: 0.55;
}

.home-showcase__headline {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.2vw, 26px);
}

.home-showcase__headline p {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
  color: var(--home-text);
}

.home-showcase__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 20px);
}

.home-showcase__stat {
  flex: 1 1 140px;
  min-width: 140px;
  padding: 14px 18px;
  border-radius: calc(var(--home-radius) - 6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.32);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-showcase__stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: 0.12em;
  color: var(--home-yellow);
}

.home-showcase__stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-muted);
}

.home-showcase__filters {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.home-showcase__filter {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 8, 22, 0.42);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--home-text);
}

.home-showcase__item {
  border-radius: calc(var(--home-radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 6, 18, 0.6);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.home-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.home-showcase__item:hover img,
.home-showcase__item:focus-within img {
  transform: scale(1.06);
}

.home-showcase__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: calc(var(--home-radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 8, 22, 0.4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 22px 40px rgba(7, 9, 25, 0.32);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.home-showcase__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 8, 22, 0) 0%,
    rgba(6, 8, 22, 0.75) 80%
  );
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.home-showcase__card:hover,
.home-showcase__card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 52px rgba(31, 64, 120, 0.35);
}

.home-showcase__card:hover::after,
.home-showcase__card:focus-within::after {
  opacity: 0.95;
}

.home-showcase__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.home-showcase__card:hover .home-showcase__media img,
.home-showcase__card:focus-within .home-showcase__media img {
  transform: scale(1.04);
  filter: saturate(1.15) contrast(1.1);
}

.home-showcase__meta {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--home-text);
}

.home-showcase__tag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-blue);
}

.home-showcase__meta h3 {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  letter-spacing: 0.04em;
}

.home-showcase__meta p {
  margin: 0;
  color: var(--home-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.6;
}

.home-showcase__list {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--home-muted);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
}

.home-showcase__list li {
  list-style: disc;
}

.home-values__grid {
  display: grid;
  gap: clamp(20px, 4vw, 32px);
}

.home-values__intro {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
}

.home-values__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 26px);
}

.home-values__list button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 10px;
  border-radius: var(--home-radius);
  border: 1px solid var(--home-border);
  background: linear-gradient(
      140deg,
      rgba(8, 10, 27, 0.92),
      rgba(13, 16, 36, 0.78)
    ),
    radial-gradient(
      circle at 16% 18%,
      rgba(255, 199, 37, 0.14),
      transparent 60%
    ),
    radial-gradient(
      circle at 84% 82%,
      rgba(37, 190, 255, 0.14),
      transparent 54%
    );
  color: var(--home-text);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 28px 52px rgba(6, 8, 22, 0.45);
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.home-values__list button::before,
.home-values__list button::after {
  content: "";
  position: absolute;
  inset: -36% -20% 38% -26%;
  pointer-events: none;
  mix-blend-mode: screen;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 47, 128, 0.28),
    transparent 62%
  );
  filter: blur(26px);
  opacity: 0.5;
}

.home-values__list button::after {
  inset: 48% -32% -40% -44%;
  background: radial-gradient(
    circle at 72% 68%,
    rgba(37, 190, 255, 0.28),
    transparent 60%
  );
}

.home-values__glyph {
  width: clamp(36px, 4vw, 42px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--home-text);
  background: rgba(0, 0, 0, 0.32);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.home-values__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-values__label strong {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-values__label p {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-muted);
}

.home-values__list button:hover,
.home-values__list button:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 199, 37, 0.6);
  box-shadow: 0 22px 40px rgba(37, 190, 255, 0.28);
  outline: none;
}

.home-values__list button.is-active {
  border-color: rgba(255, 199, 37, 0.8);
  background: linear-gradient(
    140deg,
    rgba(255, 199, 37, 0.24),
    rgba(37, 190, 255, 0.2)
  );
}

.home-values__list button.is-active .home-values__glyph,
.home-values__list button:hover .home-values__glyph,
.home-values__list button:focus-visible .home-values__glyph {
  border-color: rgba(255, 199, 37, 0.6);
  transform: scale(1.05);
}

.home-values__panel {
  position: relative;
  border-radius: calc(var(--home-radius) + 2px);
  border: 1px solid var(--home-border);
  background: linear-gradient(
      140deg,
      rgba(8, 10, 27, 0.92),
      rgba(13, 16, 36, 0.78)
    ),
    radial-gradient(
      circle at 14% 16%,
      rgba(255, 199, 37, 0.14),
      transparent 58%
    ),
    radial-gradient(
      circle at 86% 84%,
      rgba(37, 190, 255, 0.14),
      transparent 56%
    );
  box-shadow: 0 32px 58px rgba(6, 8, 22, 0.48);
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  gap: clamp(12px, 2vw, 18px);
  color: var(--home-text);
  min-height: 220px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  isolation: isolate;
}

.home-values__panel::before,
.home-values__panel::after {
  content: "";
  position: absolute;
  inset: -44% -22% 36% -28%;
  pointer-events: none;
  mix-blend-mode: screen;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 47, 128, 0.28),
    transparent 62%
  );
  filter: blur(30px);
  opacity: 0.45;
}

.home-values__panel::after {
  inset: 50% -34% -42% -40%;
  background: radial-gradient(
    circle at 74% 68%,
    rgba(37, 190, 255, 0.26),
    transparent 60%
  );
}

a {
  color: white;
}

.home-values__panel h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 0.05em;
  color: var(--home-yellow);
}

.home-values__panel p {
  margin: 0;
  color: var(--home-muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.65;
}

.home-values__panel ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 6px;
  color: var(--home-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

.home-values__panel li {
  list-style: disc;
}

.home-values__panel {
  border: 1px solid var(--home-border);
  background: linear-gradient(
      140deg,
      rgba(8, 10, 27, 0.92),
      rgba(13, 16, 36, 0.78)
    ),
    radial-gradient(circle at 16% 18%, rgba(255, 199, 37, 0.1), transparent 58%),
    radial-gradient(
      circle at 84% 82%,
      rgba(37, 190, 255, 0.12),
      transparent 52%
    );
  box-shadow: 0 30px 56px rgba(6, 8, 22, 0.5);
  isolation: isolate;
}

.home-values__panel.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.home-faq {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 36px);
}

.home-faq__items {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
}

.home-faq__item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--home-radius) - 6px);
  background: linear-gradient(
    140deg,
    rgba(18, 21, 46, 0.9),
    rgba(10, 12, 28, 0.78)
  );
  padding: clamp(20px, 3vw, 28px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-faq__item[open] {
  border-color: rgba(255, 199, 37, 0.45);
  box-shadow: 0 18px 34px rgba(6, 8, 22, 0.35);
}

.home-faq__item summary {
  list-style: none;
  cursor: pointer;
  font-size: clamp(1.25rem, 3.2vw, 1.6rem);
  font-weight: 600;
  color: var(--home-yellow);
  position: relative;
  padding-right: 2rem;
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--home-yellow);
  transition: transform 0.3s ease;
}

.home-faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.home-faq__item summary:focus-visible {
  outline: 2px solid var(--home-yellow);
  outline-offset: 6px;
}

.home-faq__content {
  margin-top: clamp(12px, 1.5vw, 18px);
}

.home-areas {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 28px);
}

.home-areas__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(12px, 3vw, 20px);
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  color: var(--home-text);
}

.home-areas__list li {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--home-radius) - 6px);
  background: rgba(12, 15, 34, 0.68);
  text-align: center;
}

.home-areas__list a {
  color: var(--home-text);
  font-weight: 600;
}

.home-areas__list a:hover,
.home-areas__list a:focus-visible {
  text-decoration: underline;
}

.home-visit__map {
  position: relative;
  border-radius: calc(var(--home-radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 8, 22, 0.42);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  min-height: clamp(240px, 42vh, 320px);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-visit__map::before,
.home-visit__map::after {
  content: "";
  position: absolute;
  inset: -42% -24% 38% -30%;
  background: radial-gradient(
    circle at 24% 30%,
    rgba(255, 47, 128, 0.24),
    transparent 62%
  );
  filter: blur(34px);
  opacity: 0.35;
  mix-blend-mode: screen;
  pointer-events: none;
}

.home-visit__map::after {
  inset: 48% -32% -44% -38%;
  background: radial-gradient(
    circle at 74% 70%,
    rgba(37, 190, 255, 0.22),
    transparent 58%
  );
}

.home-visit__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.05) contrast(1.05);
}

.home-visit__map-link {
  position: absolute;
  z-index: 1;
  bottom: clamp(18px, 5vh, 28px);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.45);
  color: var(--home-text);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-visit__map:hover,
.home-visit__map:focus-within {
  transform: translateY(-4px);
  border-color: var(--home-blue);
  box-shadow: 0 30px 48px rgba(37, 190, 255, 0.28);
}

.home-visit__map:hover .home-visit__map-link,
.home-visit__map:focus-within .home-visit__map-link {
  border-color: rgba(255, 199, 37, 0.6);
  box-shadow: 0 18px 32px rgba(255, 199, 37, 0.32);
  transform: translate(-50%, -2px);
}

@supports (backdrop-filter: blur(16px)) {
  .home-hero__inner,
  .home-panel,
  .home-service-card,
  .home-service-chip,
  .home-showcase__card,
  .home-values__panel {
    backdrop-filter: blur(16px);
  }
}

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

  .home-showcase__filters {
    justify-content: flex-start;
  }

  .home-panel--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .home-landing__page {
    padding: 0 0 clamp(48px, 10vh, 80px);
  }

  .home-hero {
    padding: clamp(80px, 18vh, 120px) 0 clamp(48px, 12vh, 80px);
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    padding: clamp(20px, 6vw, 32px);
    gap: clamp(20px, 4vw, 28px);
  }

  .home-hero__visual {
    order: -1;
    min-height: clamp(260px, 55vh, 360px);
  }

  .home-panel {
    padding: clamp(24px, 6vw, 36px);
  }

  .home-showcase__intro {
    grid-template-columns: 1fr;
    gap: clamp(18px, 5vw, 24px);
  }

  .home-showcase__filters {
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .home-showcase__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .home-showcase__filters {
    justify-content: flex-start;
  }

  .home-values__list {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: clamp(64px, 20vh, 96px) 0 clamp(36px, 12vh, 60px);
  }

  .home-hero__inner {
    padding: clamp(18px, 7vw, 26px);
  }

  body.home-landing h1 {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }

  body.home-landing h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-btn {
    width: auto;
    max-width: 100%;
    min-width: clamp(180px, 60vw, 240px);
  }

  .home-hero__visual::before {
    inset: 8% 10% 10% 8%;
    border-radius: 20px;
  }

  body.home-landing > main > section {
    padding: 1rem;
  }
}

.location-landing .home-landing__page {
  max-width: min(960px, 92vw);
  padding: clamp(60px, 14vh, 120px) 0;
  margin: 0 auto;
  gap: clamp(24px, 6vh, 42px);
}

.location-landing .home-panel {
  padding: clamp(28px, 6vw, 52px);
}

.location-landing .home-panel--split {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 4vh, 32px);
}

.location-hero {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 4vh, 30px);
}

.location-hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--home-blue);
}

.location-hero__content h1 {
  color: #fff;
}

.location-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 3vh, 22px);
}

.location-stack p {
  margin: 0;
}

.location-landing ul {
  margin: 0;
  padding-left: 1.2rem;
  gap: 0.6rem;
}

.location-landing li {
  color: var(--home-muted);
}

.location-landing li::marker {
  color: var(--home-yellow);
}

.location-landing a {
  color: var(--home-yellow);
}

.location-landing a:hover,
.location-landing a:focus-visible {
  text-decoration: underline;
}

.about-landing__page {
  gap: clamp(48px, 10vh, 72px);
}

.about-hero {
  gap: clamp(24px, 6vw, 48px);
  align-items: center;
}

.about-hero__intro,
.about-hero__meta {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 3vh, 24px);
}

.about-hero__intro p,
.about-hero__strapline {
  margin: 0;
}

.about-hero__strapline {
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  color: var(--home-muted);
}

.about-hero__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(14px, 3vh, 20px);
}

.about-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vh, 18px);
  padding: clamp(24px, 4vw, 32px);
  border-radius: calc(var(--home-radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
      155deg,
      rgba(10, 12, 32, 0.92),
      rgba(6, 8, 24, 0.78)
    ),
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 199, 37, 0.18),
      transparent 58%
    ),
    radial-gradient(
      circle at 84% 72%,
      rgba(37, 190, 255, 0.18),
      transparent 52%
    );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 26px 52px rgba(6, 8, 22, 0.48);
}

.about-card::before,
.about-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(28px);
  opacity: 0.42;
}

.about-card::before {
  inset: -38% -22% 36% -28%;
  background: radial-gradient(
    circle at 30% 34%,
    rgba(255, 47, 128, 0.35),
    transparent 62%
  );
}

.about-card::after {
  inset: 42% -28% -34% -40%;
  background: radial-gradient(
    circle at 72% 68%,
    rgba(37, 190, 255, 0.32),
    transparent 60%
  );
}

.about-card strong,
.about-card h3 {
  color: var(--home-yellow);
  letter-spacing: 0.06em;
}

.about-card strong {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  letter-spacing: 0.04em;
}

.about-card h3 {
  margin: 0;
}

.about-card p {
  margin: 0;
  color: var(--home-muted);
}

.about-card > * {
  position: relative;
  z-index: 1;
}

.about-card--compact {
  padding: clamp(18px, 3.2vw, 24px);
  gap: clamp(10px, 2vh, 16px);
}

.about-story__insight h3 {
  font-size: clamp(1.6rem, 3.6vw, 2rem);
}

.about-story__insight ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.6vh, 18px);
}

.about-story__insight li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--home-muted);
}

.about-story__insight li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--home-yellow);
  box-shadow: 0 0 12px rgba(255, 199, 37, 0.45);
}

.about-mission__grid,
.about-process__grid,
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(12px, 4vw, 8px);
}

.about-process__step {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--home-blue);
}

.about-values__card p {
  flex-grow: 1;
}

.about-visit .home-section-header p {
  margin: 0;
}

.about-contact {
  align-items: center;
}

.about-contact .home-section-header {
  align-items: flex-start;
  gap: clamp(12px, 2vh, 18px);
}

.about-contact p {
  margin: 0;
  color: var(--home-muted);
  max-width: 720px;
}

@media (max-width: 960px) {
  .about-hero {
    gap: clamp(20px, 6vw, 36px);
  }
}

@media (max-width: 768px) {
  .location-landing .home-panel {
    padding: clamp(22px, 8vw, 36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-btn,
  .home-service-card,
  .home-service-chip,
  .home-showcase__card,
  .home-showcase__media img {
    transition: none;
  }

  .home-service-card:hover,
  .home-service-card:focus-visible,
  .home-service-chip:hover,
  .home-service-chip:focus-visible,
  .home-showcase__card:hover,
  .home-showcase__card:focus-within,
  .home-btn:hover,
  .home-btn:focus-visible,
  .home-hero__accent {
    transform: none;
    box-shadow: none;
  }

  .home-hero__accent {
    animation: none;
    background-position: 50% 50%;
    text-shadow: none;
  }

  .home-btn--primary {
    animation: none;
    background-position: 50% 50%;
  }
}
