:root {
  --black: #020304;
  --white: #f7fbfc;
  --ink: #07090a;
  --muted: #b7c0c4;
  --cyan: #54bcda;
  --cyan-hot: #07d6ff;
  --line: rgba(255, 255, 255, 0.2);
  --font-geist-sans: Inter, Arial, Helvetica, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

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

button {
  font: inherit;
}

.site-shell {
  min-height: 100svh;
  background: var(--black);
}

.hero {
  --x: 0;
  --y: 0;
  --scroll-lift: 0px;
  position: relative;
  height: clamp(760px, 100svh, 900px);
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(24px, 2.8vw, 52px);
  animation: hero-fade 900ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(84, 188, 218, 0.08) 48%, transparent 54%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 76px);
  opacity: 0.36;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translate3d(calc(var(--x) * 10px), calc(var(--scroll-lift) * 0.18), 0);
}

.hero-media {
  position: absolute;
  inset: -2%;
  z-index: -5;
  transform:
    scale(1.025)
    translate3d(calc(var(--x) * -16px), calc((var(--y) * -10px) + (var(--scroll-lift) * 0.28)), 0);
  transition: transform 260ms ease-out;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(0.94) contrast(1.06) brightness(0.9);
  transform: scale(1.08);
  transition:
    opacity 1200ms var(--ease-premium),
    transform 7800ms var(--ease-premium),
    filter 1200ms var(--ease-premium);
}

.hero-media img.is-active {
  opacity: 1;
  filter: saturate(0.98) contrast(1.08) brightness(0.92);
  transform: scale(1.015);
}

.hero-printer .hero-media img:first-child {
  object-position: center;
}

.hero-children .hero-media img:last-child {
  object-position: center 42%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.78) 28%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 45%, rgba(0, 0, 0, 0.34));
}

.hero-children .hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.86) 32%, rgba(0, 0, 0, 0.34) 64%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 45%, rgba(0, 0, 0, 0.42));
}

.cyan-wash {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 48%, rgba(84, 188, 218, 0.12), transparent 25%),
    linear-gradient(90deg, rgba(84, 188, 218, 0.12), transparent 18%, transparent 84%, rgba(84, 188, 218, 0.06));
  mix-blend-mode: screen;
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  animation: reveal-down 760ms cubic-bezier(0.2, 0.7, 0.2, 1) 140ms both;
}

.brand {
  display: block;
  width: clamp(178px, 14.5vw, 252px);
  filter: drop-shadow(0 0 22px rgba(84, 188, 218, 0.16));
}

.brand img,
.site-footer img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.7vw, 48px);
  padding-top: 12px;
  color: var(--white);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.54);
}

.site-nav a {
  opacity: 0.9;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cyan-hot);
  opacity: 1;
  transform: translateY(-2px);
}

.nav-cta {
  color: var(--cyan-hot);
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  padding-left: clamp(20px, 2.4vw, 38px);
  font-weight: 800;
}

.hero-content {
  position: relative;
  z-index: 8;
  width: min(44vw, 660px);
  min-height: 374px;
  margin-top: clamp(76px, 9vh, 120px);
  padding-left: clamp(0px, 1.2vw, 18px);
  animation: copy-rise 850ms cubic-bezier(0.2, 0.7, 0.2, 1) 120ms both;
}

.hero-content .kicker,
.hero-content h1 span,
.hero-copy,
.hero-cta {
  will-change: opacity, transform, filter;
}

.kicker {
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  opacity: 0.92;
  animation: copy-rise 760ms cubic-bezier(0.2, 0.7, 0.2, 1) 160ms both;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  min-height: 2.08em;
  font-size: clamp(48px, 4.7vw, 90px);
  font-weight: 760;
  line-height: 1.01;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.56);
  animation: copy-rise 900ms cubic-bezier(0.2, 0.7, 0.2, 1) 220ms both;
}

h1 span {
  display: block;
}

.hero-content.is-switching .kicker {
  animation: premium-word-rise 720ms var(--ease-premium) 40ms both;
}

.hero-content.is-switching h1 span:first-child {
  animation: premium-word-rise 780ms var(--ease-premium) 110ms both;
}

.hero-content.is-switching h1 span:last-child {
  animation: premium-word-rise 840ms var(--ease-premium) 180ms both;
}

.hero-content.is-switching .hero-copy {
  animation: premium-copy-drift 820ms var(--ease-premium) 280ms both;
}

.hero-content.is-switching .hero-cta {
  animation: premium-word-rise 760ms var(--ease-premium) 380ms both;
}

.cyan-word {
  color: var(--cyan);
  text-shadow:
    0 0 16px rgba(84, 188, 218, 0.3),
    0 18px 44px rgba(0, 0, 0, 0.56);
}

.hero-copy {
  max-width: 480px;
  min-height: 62px;
  margin: 18px 0 0;
  color: #f1f4f5;
  font-size: clamp(16px, 1.08vw, 20px);
  line-height: 1.5;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.72);
  animation: copy-rise 840ms cubic-bezier(0.2, 0.7, 0.2, 1) 330ms both;
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 0 0 10px;
  color: var(--cyan-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 240ms var(--ease-premium), color 180ms ease, filter 240ms ease;
  animation: copy-rise 760ms cubic-bezier(0.2, 0.7, 0.2, 1) 430ms both;
}

.hero-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 28px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan-hot), rgba(84, 188, 218, 0));
  transform-origin: left center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  color: var(--white);
  transform: translateX(4px);
  filter: drop-shadow(0 0 18px rgba(7, 214, 255, 0.28));
}

.hero-cta:hover::after,
.hero-cta:focus-visible::after {
  opacity: 0.7;
  transform: scaleX(1.18);
}

.hero-cta span {
  font-size: 24px;
  line-height: 1;
  transition: transform 220ms ease;
}

.hero-cta:hover span,
.hero-cta:focus-visible span {
  transform: translateX(6px);
}

.carousel-dots {
  position: absolute;
  right: clamp(28px, 3vw, 56px);
  bottom: clamp(26px, 3vw, 48px);
  z-index: 12;
  display: flex;
  gap: 10px;
  animation: reveal-up 760ms cubic-bezier(0.2, 0.7, 0.2, 1) 500ms both;
}

.carousel-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dots button.is-active {
  width: 58px;
  background: var(--cyan-hot);
}

.slide-progress {
  position: absolute;
  left: clamp(24px, 2.8vw, 52px);
  right: clamp(24px, 2.8vw, 52px);
  bottom: 0;
  z-index: 12;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.slide-progress::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(84, 188, 218, 0), var(--cyan-hot), rgba(84, 188, 218, 0));
  transform-origin: left center;
  animation: progress-line 6500ms linear both;
}

.approach-cards-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(84, 188, 218, 0.12), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    #020304;
  background-size: auto, 76px 76px, 76px 76px, auto;
  color: var(--white);
}

.approach-photo-panel {
  position: relative;
  min-height: clamp(560px, 58vw, 850px);
  display: flex;
  align-items: flex-end;
  padding: clamp(44px, 6vw, 92px) clamp(28px, 5vw, 82px);
  overflow: hidden;
  background: #020304;
  isolation: isolate;
}

.approach-photo-panel img {
  position: absolute;
  inset: -3% -2% -8%;
  z-index: -4;
  width: 104%;
  height: 111%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.94) contrast(1.06) brightness(0.86);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  transition:
    transform 900ms var(--ease-premium),
    filter 420ms ease;
}

.approach-photo-panel::before,
.approach-photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.approach-photo-panel::before {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.74) 34%, rgba(0, 0, 0, 0.16) 72%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, transparent 34%, rgba(0, 0, 0, 0.82) 88%, #020304 100%);
}

.approach-photo-panel::after {
  z-index: -2;
  background:
    radial-gradient(circle at 18% 72%, rgba(84, 188, 218, 0.14), transparent 24%),
    linear-gradient(90deg, rgba(84, 188, 218, 0.09), transparent 18%);
  mix-blend-mode: screen;
}

.approach-photo-panel > div {
  max-width: 800px;
}

.approach-photo-panel .section-kicker,
.approach-intro-card .section-kicker {
  color: var(--cyan-hot);
}

.approach-photo-panel h2 {
  color: var(--white);
  font-size: clamp(48px, 6vw, 112px);
  font-weight: 760;
  line-height: 0.98;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.58);
}

.approach-photo-panel p:last-child {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.52;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.58);
}

.approach-card-wrap {
  padding: clamp(46px, 6vw, 92px) clamp(28px, 5vw, 82px) clamp(64px, 8vw, 126px);
}

.approach-intro-card {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(2, 3, 4, 0.62);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  transition:
    border-color 260ms ease,
    box-shadow 320ms ease,
    transform 320ms var(--ease-premium);
}

.approach-intro-card:hover {
  border-color: rgba(84, 188, 218, 0.34);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(84, 188, 218, 0.08) inset;
  transform: translateY(-4px);
}

.approach-intro-card .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.approach-intro-card h2 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(36px, 4.2vw, 78px);
  font-weight: 760;
  line-height: 1.02;
}

.approach-intro-card > p:last-child {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.58;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.14);
}

.process-card {
  min-height: clamp(260px, 20vw, 350px);
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    #020304;
  transition:
    transform 320ms var(--ease-premium),
    background 260ms ease,
    box-shadow 260ms ease;
}

.process-card:hover {
  transform: translateY(-8px);
  background:
    linear-gradient(180deg, rgba(84, 188, 218, 0.14), rgba(255, 255, 255, 0.024)),
    #020304;
  box-shadow: 0 24px 70px rgba(7, 214, 255, 0.08);
}

.process-card > span {
  color: var(--cyan-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.process-card h3 {
  margin: auto 0 18px;
  color: var(--white);
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-card h3::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin: 0 0 18px;
  background: var(--cyan-hot);
  box-shadow: 0 0 18px rgba(7, 214, 255, 0.45);
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(14px, 0.9vw, 16px);
  line-height: 1.56;
}

.serve-editorial-section {
  background: #020304;
  color: var(--ink);
}

.serve-editorial-intro {
  display: grid;
  grid-template-columns: minmax(460px, 0.9fr) minmax(320px, 0.44fr);
  gap: clamp(34px, 6vw, 98px);
  align-items: stretch;
  padding: clamp(48px, 5vw, 82px) clamp(28px, 6vw, 110px);
  background:
    linear-gradient(90deg, #ffffff 0%, #f8fafb 54%, #edf5f8 100%);
}

.serve-editorial-intro > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.serve-editorial-intro .section-kicker {
  margin-bottom: clamp(34px, 5vw, 70px);
}

.serve-editorial-intro h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(42px, 4.55vw, 84px);
  font-weight: 760;
  line-height: 1;
}

.serve-editorial-intro aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(250px, 20vw, 330px);
  padding: clamp(24px, 3vw, 40px);
  border-left: 2px solid #0786a1;
  background:
    linear-gradient(135deg, rgba(84, 188, 218, 0.1), rgba(255, 255, 255, 0.5)),
    #ffffff;
  box-shadow: 0 24px 70px rgba(7, 9, 10, 0.08);
}

.serve-editorial-intro aside::before {
  content: "";
  width: 68px;
  height: 2px;
  background: #0786a1;
  box-shadow: 0 0 18px rgba(84, 188, 218, 0.46);
}

.serve-editorial-intro aside p {
  max-width: 560px;
  margin: 0;
  color: #222d31;
  font-size: clamp(17px, 1.18vw, 22px);
  line-height: 1.56;
}

.serve-editorial-intro aside span {
  margin-top: 28px;
  color: #0786a1;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audience-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.audience-tile {
  position: relative;
  min-height: clamp(430px, 40vw, 640px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  grid-column: span 4;
  background: #020304;
  isolation: isolate;
}

.audience-tile:nth-child(1) {
  grid-column: span 4;
}

.audience-tile:nth-child(2) {
  grid-column: span 4;
}

.audience-tile:nth-child(3) {
  grid-column: span 4;
  min-height: clamp(430px, 40vw, 640px);
}

.audience-tile img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08) brightness(0.72);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.035);
  transition:
    transform 1100ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 300ms ease;
}

.audience-tile:nth-child(1) img {
  object-position: center 42%;
}

.audience-tile:nth-child(2) img {
  object-position: center;
}

.audience-tile:nth-child(3) img {
  object-position: center 34%;
}

.audience-tile::before,
.audience-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.audience-tile::before {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.5) 52%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 58%);
}

.audience-tile::after {
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at 18% 78%, rgba(7, 214, 255, 0.2), transparent 30%);
  transition: opacity 260ms ease;
}

.audience-tile:hover img {
  filter: saturate(0.98) contrast(1.08) brightness(0.82);
  transform: scale(1.065);
}

.audience-tile:hover::after {
  opacity: 1;
}

.audience-tile > div {
  width: min(620px, 88%);
  padding: clamp(28px, 4vw, 58px);
}

.audience-tile span {
  color: var(--cyan-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.audience-tile p {
  margin: 22px 0 14px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-transform: uppercase;
}

.audience-tile h3 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 62px);
  font-weight: 740;
  line-height: 1.04;
  text-transform: uppercase;
}

.audience-tile small {
  display: block;
  max-width: 440px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.55;
}

.serve-editorial-close {
  padding: clamp(66px, 7vw, 118px) clamp(28px, 5vw, 82px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(84, 188, 218, 0.13), transparent 30%),
    #020304;
  color: var(--white);
}

.serve-editorial-close h2 {
  color: var(--white);
  font-size: clamp(38px, 5vw, 96px);
  font-weight: 760;
  line-height: 1.02;
}

.serve-editorial-close a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: var(--cyan-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.serve-editorial-close a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.serve-editorial-close span {
  font-size: 26px;
}

.why-shop-section {
  background: #020304;
  color: var(--white);
}

.why-shop-hero {
  position: relative;
  min-height: clamp(520px, 52vw, 760px);
  display: flex;
  align-items: flex-end;
  padding: clamp(48px, 6vw, 92px) clamp(28px, 5vw, 82px);
  overflow: hidden;
  isolation: isolate;
}

.why-shop-hero img {
  position: absolute;
  inset: -2%;
  z-index: -4;
  width: 104%;
  height: 106%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.9) contrast(1.08) brightness(0.78);
}

.why-shop-hero::before,
.why-shop-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-shop-hero::before {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 44%, rgba(0, 0, 0, 0.7));
}

.why-shop-hero::after {
  z-index: -2;
  background: radial-gradient(circle at 18% 72%, rgba(84, 188, 218, 0.14), transparent 24%);
  mix-blend-mode: screen;
}

.why-shop-hero > div {
  max-width: 760px;
}

.why-shop-hero .section-kicker {
  color: var(--cyan-hot);
}

.why-shop-hero h2 {
  color: var(--white);
  font-size: clamp(42px, 5vw, 92px);
  font-weight: 760;
  line-height: 1.02;
}

.why-shop-hero h2 br + * {
  color: var(--cyan);
}

.why-shop-hero p:last-child {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.18vw, 22px);
  line-height: 1.54;
}

.represent-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 96px);
  padding: clamp(64px, 7vw, 112px) clamp(28px, 6vw, 110px);
  background:
    linear-gradient(90deg, #ffffff 0%, #f8fafb 58%, #eef5f8 100%);
  color: var(--ink);
}

.represent-panel > h2,
.represent-panel > div {
  padding: 0 clamp(10px, 2.5vw, 42px);
}

.represent-panel > div {
  border-left: 1px solid rgba(7, 9, 10, 0.18);
}

.represent-panel h2 {
  color: var(--ink);
  font-size: clamp(36px, 4vw, 76px);
  font-weight: 760;
  line-height: 1.04;
}

.represent-panel p {
  max-width: 540px;
  margin: 24px 0 0;
  color: #243035;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.58;
}

.transparency-band {
  position: relative;
  min-height: clamp(420px, 42vw, 640px);
  display: flex;
  align-items: center;
  padding: clamp(48px, 6vw, 92px) clamp(28px, 5vw, 82px);
  overflow: hidden;
  isolation: isolate;
}

.transparency-band img {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.08) brightness(0.74);
}

.transparency-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.1)),
    radial-gradient(circle at 16% 50%, rgba(84, 188, 218, 0.14), transparent 24%);
  pointer-events: none;
}

.transparency-band > div {
  max-width: 560px;
}

.transparency-band h2 {
  color: var(--white);
  font-size: clamp(36px, 4.4vw, 82px);
  font-weight: 760;
  line-height: 1.02;
}

.transparency-band h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 28px 0 0;
  background: var(--cyan-hot);
  box-shadow: 0 0 22px rgba(7, 214, 255, 0.5);
}

.transparency-band p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.1vw, 21px);
  line-height: 1.56;
}

.measure-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1fr);
  min-height: clamp(360px, 34vw, 560px);
  background: #020304;
}

.measure-panel img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 34vw, 560px);
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.9) contrast(1.08) brightness(0.82);
}

.measure-panel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px);
  background:
    radial-gradient(circle at 12% 50%, rgba(84, 188, 218, 0.13), transparent 26%),
    #020304;
}

.measure-panel h2 {
  color: var(--white);
  font-size: clamp(36px, 4.2vw, 78px);
  font-weight: 760;
  line-height: 1.04;
}

.measure-panel p {
  max-width: 500px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.58;
}

.advocate-cta {
  padding: clamp(72px, 8vw, 132px) 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(84, 188, 218, 0.14), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    #010202;
  background-size: auto, 76px 76px, 76px 76px, auto;
}

.advocate-cta h2 {
  color: var(--white);
  font-size: clamp(36px, 4.6vw, 86px);
  font-weight: 760;
  line-height: 1.06;
}

.advocate-cta a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: var(--cyan-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.advocate-cta a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.advocate-cta span {
  font-size: 26px;
}

.contact-experience-section {
  background:
    radial-gradient(circle at 18% 14%, rgba(84, 188, 218, 0.14), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    #020304;
  background-size: auto, 76px 76px, 76px 76px, auto;
  color: var(--white);
}

.contact-hero-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(460px, 1fr);
  min-height: clamp(460px, 44vw, 660px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-hero-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 108px) clamp(28px, 5vw, 82px);
  background:
    radial-gradient(circle at 22% 55%, rgba(84, 188, 218, 0.14), transparent 28%),
    #020304;
}

.contact-hero-card .section-kicker,
.form-heading .section-kicker {
  color: var(--cyan-hot);
}

.contact-hero-card h2 {
  color: var(--white);
  font-size: clamp(46px, 5.6vw, 104px);
  font-weight: 760;
  line-height: 0.99;
  text-transform: none;
}

.contact-hero-card p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.3vw, 25px);
  line-height: 1.48;
}

.contact-hero-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(460px, 44vw, 660px);
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.92) contrast(1.08) brightness(0.82);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.02);
  transition: transform 900ms var(--ease-premium), filter 360ms ease;
}

.premium-contact-form {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 112px) 0 clamp(70px, 8vw, 132px);
}

.form-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 72px);
}

.form-heading h2 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(34px, 4.1vw, 76px);
  font-weight: 760;
  line-height: 1.05;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.premium-contact-form label,
.premium-contact-form legend {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.premium-contact-form input[type="text"],
.premium-contact-form input[type="email"],
.premium-contact-form input[type="tel"],
.premium-contact-form textarea {
  width: 100%;
  margin: 14px 0 0;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: clamp(18px, 1.2vw, 22px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.premium-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.premium-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.premium-contact-form input:focus,
.premium-contact-form textarea:focus {
  border-color: var(--cyan-hot);
  box-shadow: 0 1px 0 var(--cyan-hot);
}

.premium-contact-form fieldset,
.message-field {
  margin: clamp(38px, 5vw, 72px) 0 0;
  padding: 0;
  border: 0;
}

.premium-contact-form legend {
  margin-bottom: 18px;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.14);
}

.contact-methods {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
}

.contact-chip {
  position: relative;
  min-height: 98px;
  display: flex !important;
  align-items: center;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #020304;
  color: rgba(255, 255, 255, 0.78) !important;
  cursor: pointer;
  transition:
    background 240ms ease,
    color 200ms ease,
    transform 260ms var(--ease-premium),
    box-shadow 240ms ease;
}

.contact-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-chip span {
  display: block;
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  font-size: clamp(14px, 0.92vw, 17px);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.38;
  text-transform: none;
}

.contact-chip::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-right: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.contact-chip:hover {
  color: var(--white) !important;
  background:
    linear-gradient(180deg, rgba(84, 188, 218, 0.12), rgba(255, 255, 255, 0.024)),
    #020304;
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(7, 214, 255, 0.08);
}

.contact-chip:has(input:checked) {
  color: var(--white) !important;
  background:
    linear-gradient(180deg, rgba(84, 188, 218, 0.2), rgba(255, 255, 255, 0.035)),
    #020304;
}

.contact-chip:has(input:checked)::before {
  border-color: var(--cyan-hot);
  background: radial-gradient(circle, var(--cyan-hot) 0 38%, transparent 42%);
  box-shadow: 0 0 0 5px rgba(84, 188, 218, 0.12), 0 0 22px rgba(7, 214, 255, 0.34);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
  margin-top: clamp(38px, 5vw, 72px);
}

.form-actions button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 0 32px;
  border: 1px solid var(--cyan-hot);
  background: var(--cyan-hot);
  color: #020304;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.form-actions button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.42) 45%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 620ms var(--ease-premium);
}

.form-actions button:hover::before,
.form-actions button:focus-visible::before {
  transform: translateX(120%);
}

.form-actions button:hover {
  background: transparent;
  color: var(--cyan-hot);
  transform: translateX(4px);
}

.form-actions button span {
  font-size: 24px;
}

.form-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
}

.form-actions a {
  color: var(--cyan-hot);
  font-family: var(--font-geist-mono), monospace;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stance-section {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 8vw, 132px) clamp(28px, 6vw, 110px);
  background:
    radial-gradient(circle at 18% 24%, rgba(84, 188, 218, 0.16), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #010202;
  background-size: auto, 72px 72px, 72px 72px, auto;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.stance-section::after {
  content: "FOCUS ON YOUR MISSION.";
  position: absolute;
  right: clamp(22px, 4vw, 72px);
  bottom: clamp(20px, 3vw, 52px);
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(26px, 5vw, 92px);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.stance-section p {
  margin: 0 0 22px;
  color: var(--cyan-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.stance-section h2 {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  color: var(--white);
  font-size: clamp(40px, 5.5vw, 108px);
  font-weight: 760;
  line-height: 1.02;
  text-transform: uppercase;
}

.stance-section h2::before {
  content: "";
  display: block;
  width: 82px;
  height: 2px;
  margin: 0 0 30px;
  background: var(--cyan-hot);
  box-shadow: 0 0 24px rgba(7, 214, 255, 0.52);
}

.mission-section {
  display: grid;
  grid-template-columns: minmax(330px, 0.74fr) minmax(440px, 1fr);
  gap: clamp(42px, 5vw, 92px);
  align-items: stretch;
  padding: clamp(46px, 5vw, 86px) clamp(28px, 5vw, 82px);
  background:
    linear-gradient(90deg, #f7f8f8 0%, #ffffff 54%, #eef4f6 100%);
  color: var(--ink);
}

.mission-visual {
  position: relative;
  overflow: hidden;
  min-height: clamp(340px, 33vw, 520px);
  background: #101719;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.mission-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 48%);
  pointer-events: none;
}

.mission-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(340px, 33vw, 520px);
  object-fit: cover;
  object-position: 48% center;
  filter: saturate(0.94) contrast(1.05) brightness(0.86);
  transition: transform 1200ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mission-visual span {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  max-width: 360px;
  color: var(--white);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.mission-visual:hover img {
  transform: scale(1.045);
}

.section-kicker {
  margin: 0 0 18px;
  color: #0a839f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mission-copy h2 {
  max-width: 820px;
  font-size: clamp(42px, 4.2vw, 80px);
  font-weight: 760;
  line-height: 1.04;
}

.mission-copy p:last-child {
  max-width: 780px;
  margin: 24px 0 0;
  color: #101516;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.55;
}

.approach-list {
  display: grid;
  gap: 0;
  margin-top: clamp(34px, 4vw, 58px);
  border-top: 1px solid rgba(7, 9, 10, 0.16);
}

.approach-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(7, 9, 10, 0.16);
}

.approach-item > span {
  color: #0786a1;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.approach-item h3 {
  margin: 0;
  color: #050708;
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.approach-item p {
  max-width: 620px;
  margin: 8px 0 0;
  color: #344146;
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.55;
}

.technology-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 104px);
  align-items: center;
  padding: clamp(70px, 8vw, 136px) clamp(28px, 5vw, 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 48%, rgba(84, 188, 218, 0.2), transparent 26%),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    #020304;
  background-size: auto, 74px 74px, 74px 74px, auto;
  color: var(--white);
}

.technology-copy .section-kicker {
  color: var(--cyan-hot);
}

.technology-copy h2 {
  max-width: 820px;
  font-size: clamp(44px, 5.1vw, 96px);
  font-weight: 760;
  line-height: 0.99;
}

.technology-copy > p:last-of-type {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.62;
}

.technology-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.technology-points span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(2, 3, 4, 0.72);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.technology-copy a,
.final-cta a,
.contact-section a {
  color: var(--cyan-hot);
}

.technology-copy a,
.final-cta a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.technology-copy a:hover,
.final-cta a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.technology-copy a span,
.final-cta a span {
  font-size: 24px;
}

.technology-visual {
  position: relative;
  min-height: clamp(360px, 34vw, 560px);
  display: grid;
  place-items: center;
}

.technology-visual::before {
  content: "";
  position: absolute;
  inset: 12% -12% -4% 4%;
  border: 1px solid rgba(84, 188, 218, 0.25);
  border-radius: 999px;
  transform: rotate(-8deg);
  box-shadow: 0 0 80px rgba(7, 214, 255, 0.14);
}

.technology-visual img {
  position: relative;
  z-index: 1;
  width: min(94%, 680px);
  height: auto;
  filter:
    drop-shadow(0 46px 70px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 34px rgba(84, 188, 218, 0.12));
  transform: translate3d(0, 0, 0);
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.technology-visual:hover img {
  transform: translate3d(0, -8px, 0) scale(1.015);
}

.technology-visual span {
  position: absolute;
  right: 4%;
  bottom: 7%;
  z-index: 2;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.serve-section {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 132px) clamp(28px, 5vw, 82px);
  background:
    radial-gradient(circle at 78% 18%, rgba(84, 188, 218, 0.15), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #020304;
  background-size: auto, 78px 78px, 78px 78px, auto;
  color: var(--white);
}

.serve-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 58%),
    radial-gradient(ellipse at 50% 100%, rgba(84, 188, 218, 0.12), transparent 44%);
  pointer-events: none;
}

.serve-heading,
.serve-grid,
.serve-statement {
  position: relative;
  z-index: 1;
}

.serve-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(420px, 0.85fr) minmax(280px, 0.5fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: start;
}

.serve-heading .section-kicker {
  color: var(--cyan-hot);
}

.serve-heading h2 {
  max-width: 940px;
  font-size: clamp(46px, 5.8vw, 108px);
  font-weight: 760;
  line-height: 0.98;
}

.serve-heading > p:last-child {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.56;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: clamp(48px, 6vw, 92px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.serve-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(330px, 28vw, 440px);
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.1);
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.serve-card:nth-child(1),
.serve-card:nth-child(3) {
  grid-column: span 2;
}

.serve-card:nth-child(2) {
  grid-column: span 2;
  transform: translateY(34px);
}

.serve-card img {
  width: calc(100% + clamp(48px, 6vw, 84px));
  height: clamp(155px, 13vw, 220px);
  margin: calc(clamp(24px, 3vw, 42px) * -1) calc(clamp(24px, 3vw, 42px) * -1) 28px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) brightness(0.76);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 260ms ease;
}

.serve-card:hover {
  transform: translateY(-6px);
  border-color: rgba(84, 188, 218, 0.45);
  background:
    linear-gradient(180deg, rgba(84, 188, 218, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.16);
}

.serve-card:nth-child(2):hover {
  transform: translateY(22px);
}

.serve-card:hover img {
  filter: saturate(0.98) contrast(1.08) brightness(0.86);
  transform: scale(1.04);
}

.serve-card > span {
  color: var(--cyan-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.serve-card > p:first-of-type {
  margin: 24px 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.serve-card h3 {
  margin: 0;
  max-width: 360px;
  font-size: clamp(25px, 2.25vw, 42px);
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.serve-card div {
  width: 58px;
  height: 2px;
  margin: auto 0 22px;
  background: var(--cyan-hot);
  box-shadow: 0 0 18px rgba(7, 214, 255, 0.45);
}

.serve-card > p:last-child {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.55;
}

.serve-statement {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: clamp(42px, 5vw, 78px);
}

.serve-statement p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(24px, 2.6vw, 48px);
  font-weight: 560;
  line-height: 1.16;
}

.serve-statement a {
  position: relative;
  flex: 0 0 auto;
  padding-bottom: 10px;
  color: var(--cyan-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 200ms ease, color 200ms ease;
}

.serve-statement a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 28px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan-hot), transparent);
}

.serve-statement a span {
  display: inline-block;
  margin-left: 10px;
  font-size: 22px;
  transition: transform 200ms ease;
}

.serve-statement a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.serve-statement a:hover span {
  transform: translateX(5px);
}

.why-section {
  background: #f7f8f8;
  color: var(--ink);
}

.why-hero {
  position: relative;
  min-height: clamp(440px, 48vw, 680px);
  display: flex;
  align-items: flex-end;
  padding: clamp(44px, 6vw, 92px) clamp(28px, 5vw, 82px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.62) 46%, rgba(0, 0, 0, 0.16) 100%),
    url("assets/approach-meeting.png") center 42% / cover no-repeat;
}

.why-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 72%, rgba(84, 188, 218, 0.12), transparent 28%);
  pointer-events: none;
}

.why-hero > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.why-hero .section-kicker {
  color: var(--cyan-hot);
}

.why-hero h2 {
  color: var(--white);
  font-size: clamp(42px, 5.2vw, 94px);
  font-weight: 760;
  line-height: 1;
}

.why-hero h2 br + * {
  color: var(--cyan);
}

.why-hero p:last-child {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.54;
}

.represent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 92px);
  padding: clamp(62px, 7vw, 118px) clamp(28px, 6vw, 110px);
  background:
    linear-gradient(90deg, #ffffff 0%, #f7f8f8 55%, #edf3f5 100%);
}

.represent-grid > h2,
.represent-grid div {
  padding: 0 clamp(10px, 2.5vw, 42px);
}

.represent-grid div {
  border-left: 1px solid rgba(7, 9, 10, 0.18);
}

.represent-grid h2 {
  font-size: clamp(38px, 4.1vw, 78px);
  font-weight: 760;
  line-height: 1.04;
}

.represent-grid p {
  max-width: 520px;
  margin: 24px 0 0;
  color: #263236;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.58;
}

.clarity-section {
  position: relative;
  min-height: clamp(430px, 48vw, 680px);
  overflow: hidden;
  background: #020304;
  isolation: isolate;
}

.clarity-section img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.08) brightness(0.78);
  transform: scale(1.02);
}

.clarity-section::before,
.clarity-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.clarity-section::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 42%, rgba(0, 0, 0, 0.46));
}

.clarity-section::after {
  z-index: -1;
  background:
    radial-gradient(circle at 20% 52%, rgba(84, 188, 218, 0.14), transparent 26%),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: auto, 76px 76px, 76px 76px;
  mix-blend-mode: screen;
}

.clarity-overlay {
  width: min(760px, 50vw);
  padding: clamp(74px, 8vw, 128px) clamp(28px, 5vw, 82px);
}

.clarity-overlay .section-kicker {
  color: var(--cyan-hot);
}

.clarity-overlay h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(42px, 5.1vw, 98px);
  font-weight: 760;
  line-height: 0.98;
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.58);
}

.clarity-overlay h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 28px 0 0;
  background: var(--cyan-hot);
  box-shadow: 0 0 22px rgba(7, 214, 255, 0.5);
}

.clarity-overlay > p:last-child {
  max-width: 570px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.15vw, 21px);
  line-height: 1.56;
}

.final-cta {
  padding: clamp(74px, 8vw, 132px) 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(84, 188, 218, 0.12), transparent 32%),
    #010202;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(38px, 4.6vw, 86px);
  font-weight: 760;
  line-height: 1.04;
}

.contact-section {
  background:
    linear-gradient(90deg, #ffffff 0%, #f7f8f8 54%, #edf3f5 100%);
  color: var(--ink);
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(420px, 1fr);
  min-height: clamp(470px, 46vw, 690px);
  background: #020304;
  color: var(--white);
}

.contact-intro > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 108px) clamp(28px, 5vw, 82px);
  background:
    radial-gradient(circle at 18% 52%, rgba(84, 188, 218, 0.14), transparent 26%),
    #020304;
}

.contact-intro .section-kicker {
  color: var(--cyan-hot);
}

.contact-intro h2 {
  font-size: clamp(46px, 5.8vw, 106px);
  font-weight: 760;
  line-height: 0.98;
  text-transform: none;
}

.contact-intro p:last-child {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.4vw, 25px);
  line-height: 1.48;
}

.contact-intro img {
  width: 100%;
  height: 100%;
  min-height: clamp(470px, 46vw, 690px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.05) brightness(0.88);
}

.conversation-form {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 110px) 0 clamp(72px, 8vw, 126px);
}

.conversation-form label,
.conversation-form legend {
  display: block;
  color: #060809;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.conversation-form input[type="text"],
.conversation-form input[type="email"],
.conversation-form input[type="tel"],
.conversation-form textarea {
  width: 100%;
  margin: 16px 0 38px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 9, 10, 0.34);
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.conversation-form textarea {
  resize: vertical;
}

.conversation-form input:focus,
.conversation-form textarea:focus {
  border-color: #0786a1;
  box-shadow: 0 1px 0 #0786a1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 88px);
}

.conversation-form fieldset {
  margin: 0 0 40px;
  padding: 0;
  border: 0;
}

.conversation-form legend {
  margin-bottom: 18px;
}

.choice {
  display: flex !important;
  align-items: center;
  gap: 16px;
  width: max-content;
  max-width: 100%;
  margin: 14px 0;
  color: #151b1d !important;
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  font-weight: 430 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.choice input {
  appearance: none;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin: 0;
  border: 1px solid #050708;
  border-radius: 999px;
  background: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.choice input:checked {
  border-color: #0786a1;
  background: radial-gradient(circle, #0786a1 0 38%, transparent 42%);
  box-shadow: 0 0 0 5px rgba(84, 188, 218, 0.14);
}

.conversation-form button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  margin-top: 8px;
  padding: 0 34px;
  border: 1px solid #0786a1;
  background: #0786e8;
  color: var(--white);
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.conversation-form button:hover {
  background: #0299c4;
  transform: translateX(4px);
}

.conversation-form button span {
  font-size: 24px;
}

.conversation-form > p {
  margin: 26px 0 0;
  color: #1f2b2f;
  font-size: 16px;
}

.conversation-form > p a {
  font-family: var(--font-geist-mono), monospace;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.conversation-form small {
  display: block;
  margin-top: 44px;
  color: #111719;
  font-size: 15px;
}

.pillar-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: #010202;
}

.pillar-strip span {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(15px, 1.3vw, 24px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pillar-strip span:last-child {
  border-right: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0 clamp(24px, 4vw, 62px) 26px;
  background:
    radial-gradient(circle at 18% 18%, rgba(84, 188, 218, 0.13), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    #010202;
  background-size: auto, 76px 76px, 76px 76px, auto;
  color: var(--white);
}

.site-footer::after {
  content: "THE SHOP";
  position: absolute;
  right: -0.08em;
  bottom: 74px;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(92px, 16vw, 300px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.76;
  pointer-events: none;
}

.footer-statement {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 8vw, 140px) 0 clamp(46px, 6vw, 92px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-statement p {
  margin: 0 0 22px;
  color: var(--cyan-hot);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.footer-statement h2 {
  max-width: 1320px;
  color: var(--white);
  font-size: clamp(44px, 7vw, 138px);
  font-weight: 760;
  line-height: 0.98;
  text-transform: uppercase;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(220px, 0.34fr) minmax(280px, 0.45fr);
  gap: clamp(32px, 6vw, 92px);
  padding: clamp(34px, 4vw, 58px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand img {
  display: block;
  width: min(300px, 100%);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(84, 188, 218, 0.16));
}

.footer-brand span,
.footer-bottom span {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-contact a,
.footer-contact span {
  text-transform: none;
  letter-spacing: 0.02em;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--cyan-hot);
  transform: translateX(4px);
}

.footer-pillars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-pillars span {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(12px, 1vw, 18px);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.footer-pillars span:last-child {
  border-right: 0;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.footer-bottom span {
  margin: 0;
}

.back-to-top {
  position: fixed;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 60;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(84, 188, 218, 0.55);
  background:
    linear-gradient(180deg, rgba(7, 214, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(2, 3, 4, 0.78);
  color: var(--cyan-hot);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    0 0 30px rgba(7, 214, 255, 0.12);
  backdrop-filter: blur(16px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 14px, 0) scale(0.94);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.back-to-top span {
  font-size: 24px;
  line-height: 1;
}

.back-to-top small {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: var(--cyan-hot);
  background:
    linear-gradient(180deg, rgba(7, 214, 255, 0.2), rgba(255, 255, 255, 0.05)),
    rgba(2, 3, 4, 0.9);
  color: var(--white);
  transform: translate3d(0, -4px, 0) scale(1);
  outline: 0;
}

.reveal-premium {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(10px);
  transition:
    opacity 860ms var(--ease-premium),
    transform 860ms var(--ease-premium),
    filter 860ms var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-premium.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.process-card.reveal-premium,
.audience-tile.reveal-premium,
.contact-chip.reveal-premium {
  transform: translate3d(0, 28px, 0) scale(0.985);
}

.process-card.reveal-premium.is-visible,
.audience-tile.reveal-premium.is-visible,
.contact-chip.reveal-premium.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes hero-fade {
  from {
    opacity: 0.96;
  }

  to {
    opacity: 1;
  }
}

@keyframes copy-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes reveal-down {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes progress-line {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes premium-word-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    filter: blur(12px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes premium-copy-drift {
  from {
    opacity: 0;
    transform: translate3d(18px, 22px, 0);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

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

  .reveal-premium,
  .reveal-premium.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-media,
  .hero-media img,
  .approach-photo-panel img,
  .audience-tile img,
  .contact-hero-card img {
    transform: none !important;
  }
}

@media (max-width: 1040px) {
  .hero {
    height: clamp(720px, 100svh, 880px);
    min-height: 720px;
  }

  .site-nav {
    gap: 22px;
    font-size: 10px;
  }

  .hero-content {
    width: min(72vw, 700px);
    min-height: 400px;
    margin-top: clamp(76px, 10vh, 116px);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.84) 46%, rgba(0, 0, 0, 0.26) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 45%, rgba(0, 0, 0, 0.46));
  }

  .mission-section,
  .technology-section,
  .contact-intro,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .approach-intro-card,
  .approach-cards {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 220px;
  }

  .serve-editorial-intro,
  .audience-mosaic,
  .represent-panel,
  .measure-panel,
  .contact-hero-card,
  .form-heading {
    grid-template-columns: 1fr;
  }

  .represent-panel > div {
    border-left: 0;
    border-top: 1px solid rgba(7, 9, 10, 0.18);
    padding-top: 34px;
  }

  .serve-editorial-intro aside {
    min-height: 230px;
  }

  .audience-tile,
  .audience-tile:nth-child(1),
  .audience-tile:nth-child(2),
  .audience-tile:nth-child(3) {
    grid-column: auto;
    min-height: 440px;
  }

  .serve-heading,
  .represent-grid {
    grid-template-columns: 1fr;
  }

  .represent-grid div {
    border-left: 0;
    border-top: 1px solid rgba(7, 9, 10, 0.18);
    padding-top: 34px;
  }

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

  .serve-card:nth-child(1),
  .serve-card:nth-child(2),
  .serve-card:nth-child(3) {
    grid-column: auto;
    transform: none;
  }

  .serve-card:nth-child(2):hover {
    transform: translateY(-6px);
  }

  .serve-card {
    min-height: 300px;
  }

  .serve-statement {
    align-items: flex-start;
    flex-direction: column;
  }

  .clarity-overlay {
    width: min(680px, 72vw);
  }

  .technology-visual {
    min-height: 360px;
  }

  .contact-intro img {
    min-height: 360px;
  }

  .mission-visual {
    min-height: 360px;
  }

  .mission-visual img {
    min-height: 360px;
  }

  .site-footer a,
  .site-footer span {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .hero {
    height: auto;
    min-height: 760px;
    padding: 22px;
  }

  .brand {
    width: 188px;
  }

  .site-nav {
    display: none;
  }

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

  .hero-children .hero-media img:last-child {
    object-position: 59% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.78) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.34));
  }

  .hero-content {
    width: min(100%, 540px);
    min-height: 430px;
    margin-top: clamp(82px, 12vh, 120px);
  }

  .kicker {
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  h1 {
    min-height: 2.18em;
    font-size: clamp(40px, 11vw, 64px);
  }

  .hero-copy {
    max-width: 400px;
    font-size: 17px;
  }

  .carousel-dots {
    left: 22px;
    right: auto;
  }

  .approach-photo-panel {
    min-height: 620px;
    padding: 62px 22px;
  }

  .approach-photo-panel img {
    object-position: 58% center;
  }

  .approach-photo-panel::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.36) 34%, rgba(0, 0, 0, 0.88) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.24));
  }

  .approach-photo-panel h2 {
    font-size: clamp(40px, 12vw, 68px);
  }

  .approach-card-wrap {
    padding: 34px 22px 64px;
  }

  .approach-intro-card {
    padding: 28px 22px;
  }

  .approach-intro-card h2 {
    font-size: clamp(32px, 9vw, 52px);
  }

  .process-card {
    min-height: 210px;
    padding: 24px 22px;
  }

  .serve-editorial-intro {
    padding: 46px 22px;
    gap: 28px;
  }

  .serve-editorial-intro .section-kicker {
    margin-bottom: 28px;
  }

  .serve-editorial-intro h2 {
    font-size: clamp(36px, 10vw, 58px);
  }

  .serve-editorial-intro > p:last-child {
    font-size: 17px;
  }

  .audience-tile,
  .audience-tile:nth-child(1),
  .audience-tile:nth-child(2),
  .audience-tile:nth-child(3) {
    min-height: 470px;
  }

  .audience-tile > div {
    width: 100%;
    padding: 28px 22px;
  }

  .audience-tile h3 {
    font-size: clamp(28px, 9vw, 46px);
  }

  .serve-editorial-close {
    padding: 58px 22px;
  }

  .why-shop-hero {
    min-height: 560px;
    padding: 62px 22px;
  }

  .why-shop-hero img {
    object-position: 58% center;
  }

  .why-shop-hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.38) 36%, rgba(0, 0, 0, 0.86) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.22));
  }

  .why-shop-hero h2,
  .represent-panel h2,
  .transparency-band h2,
  .measure-panel h2,
  .advocate-cta h2 {
    font-size: clamp(34px, 10vw, 58px);
  }

  .represent-panel {
    padding: 48px 22px;
  }

  .represent-panel > h2,
  .represent-panel > div {
    padding-left: 0;
    padding-right: 0;
  }

  .transparency-band {
    min-height: 520px;
    padding: 58px 22px;
  }

  .measure-panel img {
    min-height: 300px;
  }

  .measure-panel > div {
    padding: 48px 22px;
  }

  .advocate-cta {
    padding: 62px 22px;
    background-size: auto, 54px 54px, 54px 54px, auto;
  }

  .contact-hero-card {
    min-height: 0;
  }

  .contact-hero-card > div {
    padding: 62px 22px;
  }

  .contact-hero-card h2 {
    font-size: clamp(40px, 12vw, 66px);
  }

  .contact-hero-card img {
    min-height: 320px;
  }

  .premium-contact-form {
    width: calc(100% - 44px);
    padding: 50px 0 70px;
  }

  .form-heading {
    gap: 10px;
  }

  .form-heading h2 {
    font-size: clamp(30px, 9vw, 50px);
  }

  .field-grid,
  .chip-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-chip {
    min-height: 76px;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding: 0 22px 24px;
    background-size: auto, 54px 54px, 54px 54px, auto;
  }

  .footer-statement {
    padding: 58px 0 42px;
  }

  .footer-statement h2 {
    font-size: clamp(36px, 12vw, 68px);
  }

  .footer-main,
  .footer-pillars {
    grid-template-columns: 1fr;
  }

  .footer-pillars span {
    min-height: 68px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .back-to-top {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .back-to-top span {
    font-size: 21px;
  }

  .mission-section {
    grid-template-columns: 1fr;
    padding: 34px 22px 42px;
    gap: 30px;
  }

  .mission-visual,
  .mission-visual img {
    min-height: 260px;
  }

  .mission-copy h2 {
    font-size: clamp(34px, 10vw, 54px);
  }

  .approach-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .serve-section {
    padding: 62px 22px;
    background-size: auto, 54px 54px, 54px 54px, auto;
  }

  .technology-section {
    padding: 62px 22px;
    background-size: auto, 54px 54px, 54px 54px, auto;
  }

  .technology-copy h2 {
    font-size: clamp(36px, 10vw, 58px);
  }

  .technology-points {
    grid-template-columns: 1fr;
  }

  .stance-section {
    padding: 58px 22px;
    background-size: auto, 54px 54px, 54px 54px, auto;
  }

  .stance-section h2 {
    font-size: clamp(34px, 10vw, 58px);
  }

  .technology-visual span {
    right: auto;
    left: 0;
    bottom: 0;
  }

  .serve-heading h2 {
    font-size: clamp(38px, 11vw, 64px);
  }

  .serve-card {
    min-height: 260px;
    padding: 26px 22px;
  }

  .serve-statement p {
    font-size: clamp(24px, 8vw, 38px);
  }

  .clarity-section {
    min-height: 620px;
  }

  .clarity-section img {
    object-position: 62% center;
  }

  .clarity-section::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 44%, rgba(0, 0, 0, 0.36) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.26));
  }

  .clarity-overlay {
    width: 100%;
    padding: 70px 22px;
  }

  .clarity-overlay h2 {
    font-size: clamp(36px, 10.4vw, 58px);
  }

  .why-hero {
    min-height: 560px;
    padding: 62px 22px;
    background-position: 58% center;
  }

  .why-hero h2,
  .represent-grid h2,
  .final-cta h2 {
    font-size: clamp(34px, 10vw, 58px);
  }

  .represent-grid {
    padding: 48px 22px;
  }

  .represent-grid > h2,
  .represent-grid div {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-intro {
    min-height: 0;
  }

  .contact-intro > div {
    padding: 62px 22px;
  }

  .contact-intro h2 {
    font-size: clamp(40px, 12vw, 66px);
  }

  .contact-intro img {
    min-height: 320px;
  }

  .conversation-form {
    width: calc(100% - 44px);
    padding: 48px 0 68px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pillar-strip {
    grid-template-columns: 1fr;
  }

  .pillar-strip span {
    min-height: 76px;
    justify-content: flex-start;
    padding-left: 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}
