:root {
  color-scheme: dark;
  --bg: #0a0a0b;
  --ink: #f5f5f7;
  --muted: rgba(245, 245, 247, 0.68);
  --quiet: rgba(245, 245, 247, 0.42);
  --line: rgba(245, 245, 247, 0.16);
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --red: #ff451d;
  --orange: #ff451d;
  --crimson: #8d1932;
  --purple: #6320ee;
  --cyber: #2a2a2e;
  --cyan: #62e5ff;
  --max: 1320px;
  --display-font: "Syne", "Clash Display", "Monument Extended", "MonumentExtended-Bold", "Arial Black", Impact, "PingFang SC", "STHeiti", "Microsoft YaHei", sans-serif;
  --body-font: "PP Neue Montreal", "Open Sauce One", "Noto Sans", "WenQuanYi Micro Hei", Arial, "PingFang SC", "STHeiti", "Microsoft YaHei", sans-serif;
  --mono-font: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

#signal-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: #020202;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1), opacity 650ms ease;
}

.preloader.done {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.preloader-counter {
  font-family: var(--mono-font);
  color: var(--ink);
  font-size: clamp(24px, 4vw, 58px);
  letter-spacing: 0;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  pointer-events: none;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 245, 247, 0.5);
  background: rgba(245, 245, 247, 0.08);
  backdrop-filter: blur(2px);
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 180ms ease, width 220ms ease, height 220ms ease;
}

body.cursor-active .cursor-ring {
  opacity: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.74));
  background-size: 96px 96px, 96px 96px, auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  padding: 22px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 3, 3, 0.42);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-size: 14px;
  font-weight: 950;
  font-family: var(--display-font);
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, var(--orange), var(--crimson));
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.nav a,
.nav-cta {
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.44);
}

main {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.frame,
.intro-band,
.services,
.statement,
.method,
.work,
.numbers,
.team,
.contact {
  min-height: 100vh;
  padding: clamp(92px, 12vw, 156px) 0;
  scroll-margin-top: 92px;
}

.hero {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: 116px;
}

.eyebrow,
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: var(--mono-font);
}

.hero-inner {
  max-width: 1160px;
  align-self: center;
  padding: 58px 0 34px;
}

.section-number {
  margin: 0 0 24px;
  color: var(--quiet);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 300;
  line-height: 0.9;
  font-family: var(--mono-font);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
}

h1 {
  margin-bottom: 30px;
  max-width: 980px;
  font-size: clamp(58px, 7.6vw, 108px);
  font-weight: 950;
  line-height: 0.86;
  text-transform: uppercase;
  font-family: var(--display-font);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.35);
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 2.35vw, 32px);
  font-weight: 850;
  line-height: 1.16;
}

.tech-tag {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--orange);
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button::after {
  content: "↗";
  margin-left: 14px;
  font-size: 18px;
  line-height: 1;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.button.ghost {
  background: rgba(255, 255, 255, 0.045);
}

.hero-deck {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-deck article,
.service-card,
.method-list article,
.work-card,
.numbers article,
.team-strip article {
  background:
    linear-gradient(145deg, rgba(255, 61, 0, 0.1), transparent 55%),
    rgba(3, 3, 3, 0.74);
  backdrop-filter: blur(10px);
}

.hero-deck article {
  min-height: 168px;
  padding: 24px;
}

.hero-deck span,
.service-card span,
.method-list span,
.work-card span,
.team-strip span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-deck strong {
  display: block;
  margin: 38px 0 8px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 0.96;
  text-transform: uppercase;
}

.hero-deck p,
.service-card p,
.method-list p,
.work-card p,
.intro-band > p,
.team-strip span {
  color: var(--muted);
  line-height: 1.6;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(36px, 8vw, 118px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.intro-band h2,
.section-title h2,
.statement h2,
.contact h2,
.page-hero h1,
.case-feature h2,
.team-cards h2 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(48px, 8vw, 118px);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
  font-family: var(--display-font);
}

.intro-band > p {
  max-width: 560px;
  font-size: clamp(18px, 2.2vw, 28px);
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(42px, 7vw, 90px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.section-title.narrow {
  display: block;
  max-width: 940px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid var(--line);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 61, 0, 0.2), rgba(255, 22, 56, 0.08) 55%),
    rgba(255, 255, 255, 0.06);
}

.service-card h3,
.method-list h3,
.work-card h3,
.team-strip strong {
  margin: 0;
  font-size: clamp(28px, 3.8vw, 56px);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
  font-family: var(--display-font);
}

.service-grid.four .service-card {
  padding: clamp(22px, 2.4vw, 34px);
}

.service-grid.four .service-card h3 {
  font-size: clamp(24px, 2.15vw, 32px);
  line-height: 1.08;
}

.service-card p {
  max-width: 320px;
  font-size: 18px;
}

.statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement p {
  color: var(--muted);
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 850;
}

.statement h2 {
  max-width: 1120px;
  color: var(--red);
}

.data-matrix {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-left: calc((100vw - min(var(--max), calc(100vw - 36px))) / -2);
  margin-right: calc((100vw - min(var(--max), calc(100vw - 36px))) / -2);
  padding: clamp(92px, 10vw, 140px) max(18px, calc((100vw - var(--max)) / 2));
  background: var(--purple);
}

.data-matrix h2 {
  max-width: 520px;
  font-family: var(--display-font);
  font-size: clamp(42px, 5vw, 82px);
  line-height: 0.9;
  text-transform: uppercase;
}

.data-block {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(245, 245, 247, 0.22);
  background: rgba(10, 10, 11, 0.18);
}

.data-block strong {
  font-family: var(--display-font);
  font-size: clamp(82px, 12vw, 190px);
  line-height: 0.8;
}

.data-block p {
  color: rgba(245, 245, 247, 0.82);
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.45;
}

.core-puzzle {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.core-puzzle h2 {
  max-width: 720px;
  font-family: var(--display-font);
  font-size: clamp(48px, 7.4vw, 112px);
  line-height: 0.9;
  text-transform: uppercase;
}

.liquid-orbits {
  position: relative;
  min-height: 620px;
}

.liquid-orbits span {
  position: absolute;
  width: min(42vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 34px;
  text-align: center;
  font-family: var(--display-font);
  font-size: clamp(16px, 1.8vw, 28px);
  line-height: 1;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 35% 28%, rgba(245, 245, 247, 0.26), transparent 22%),
    linear-gradient(135deg, rgba(255, 69, 29, 0.92), rgba(99, 32, 238, 0.55));
  box-shadow: 0 0 70px rgba(255, 69, 29, 0.28);
}

.liquid-orbits span:nth-child(1) {
  top: 7%;
  left: 2%;
}

.liquid-orbits span:nth-child(2) {
  top: 28%;
  right: 0;
  background:
    radial-gradient(circle at 35% 28%, rgba(245, 245, 247, 0.22), transparent 22%),
    linear-gradient(135deg, rgba(99, 32, 238, 0.78), rgba(255, 69, 29, 0.58));
}

.liquid-orbits span:nth-child(3) {
  left: 18%;
  bottom: 8%;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.method-list article {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 38px);
}

.method-list h3 {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.04;
}

.method-list p {
  font-size: 16px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr;
  grid-template-rows: repeat(2, 380px);
  gap: 18px;
}

.work-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid var(--line);
}

.work-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(90deg, rgba(255, 61, 0, 0), rgba(255, 61, 0, 0.46), rgba(255, 22, 56, 0));
  filter: blur(10px);
  transform: translateY(35%);
}

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

.work-card.large {
  grid-row: 1 / span 2;
}

.work-card h3 {
  margin-top: 14px;
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 1;
}

.work-card p {
  max-width: 440px;
  font-size: 18px;
}

.numbers {
  min-height: 58vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.numbers article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
}

.numbers strong {
  font-size: clamp(58px, 9vw, 128px);
  line-height: 0.9;
  color: var(--red);
}

.numbers span {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 850;
  text-transform: uppercase;
}

.team {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.team-strip {
  display: grid;
  gap: 14px;
}

.team-strip article {
  padding: 28px;
  border: 1px solid var(--line);
}

.team-strip strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(28px, 4vw, 52px);
}

.contact {
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
}

.contact h2 {
  max-width: 1000px;
  margin-bottom: 36px;
}

.footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 32px;
}

.page {
  padding-top: 116px;
}

.page-hero {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
  margin: 0 0 28px;
  font-size: clamp(54px, 8.8vw, 118px);
  line-height: 0.9;
}

.gtm-hero h1 {
  max-width: 900px;
  font-size: clamp(54px, 7.5vw, 104px);
}

.page-hero p:not(.section-number) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2.3vw, 28px);
  font-weight: 800;
  line-height: 1.45;
}

.image-card {
  background:
    radial-gradient(circle at 20% 88%, rgba(255, 61, 0, 0.34), transparent 16rem),
    linear-gradient(135deg, rgba(255, 61, 0, 0.18), rgba(3, 3, 3, 0.9) 58%),
    rgba(3, 3, 3, 0.82);
}

.image-card.media {
  background:
    radial-gradient(circle at 78% 14%, rgba(98, 229, 255, 0.2), transparent 14rem),
    radial-gradient(circle at 18% 92%, rgba(255, 22, 56, 0.28), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(3, 3, 3, 0.9));
}

.image-card.social {
  background:
    radial-gradient(circle at 72% 78%, rgba(255, 61, 0, 0.28), transparent 16rem),
    linear-gradient(45deg, rgba(179, 74, 109, 0.24), rgba(3, 3, 3, 0.9) 56%),
    rgba(3, 3, 3, 0.82);
}

.image-card.gtm {
  background:
    radial-gradient(circle at 18% 18%, rgba(99, 32, 238, 0.34), transparent 15rem),
    radial-gradient(circle at 82% 82%, rgba(255, 69, 29, 0.32), transparent 16rem),
    rgba(10, 10, 11, 0.84);
}

.gtm-execution {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  border-top: 1px solid var(--line);
  padding: clamp(92px, 12vw, 156px) 0;
}

.gtm-execution.detail {
  min-height: 82vh;
}

.gtm-execution h2 {
  max-width: 900px;
  font-family: var(--display-font);
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.9;
  text-transform: uppercase;
}

.gtm-execution p:not(.section-number) {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.5;
}

.gtm-system {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(99, 32, 238, 0.28), transparent 19rem),
    rgba(245, 245, 247, 0.035);
  overflow: hidden;
}

.gtm-system::before {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(245, 245, 247, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(255, 69, 29, 0.2), inset 0 0 70px rgba(99, 32, 238, 0.2);
}

.gtm-system::after {
  content: "";
  position: absolute;
  inset: 29%;
  border: 1px solid rgba(255, 69, 29, 0.38);
  border-radius: 50%;
  animation: spin 16s linear infinite;
}

.gtm-system span {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 11, 0.78);
  color: var(--ink);
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gtm-system span:nth-child(1) { top: 12%; left: 36%; }
.gtm-system span:nth-child(2) { top: 30%; right: 8%; }
.gtm-system span:nth-child(3) { bottom: 30%; right: 14%; }
.gtm-system span:nth-child(4) { bottom: 12%; left: 34%; }
.gtm-system span:nth-child(5) { bottom: 30%; left: 7%; }
.gtm-system span:nth-child(6) { top: 30%; left: 12%; }

.case-stack {
  display: grid;
  gap: 18px;
  padding: clamp(70px, 10vw, 120px) 0;
}

.case-feature {
  min-height: 560px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: 34px;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.case-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  filter: saturate(1.2) contrast(1.08);
}

.case-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 3, 3, 0.9), rgba(3, 3, 3, 0.22));
}

.case-feature > div {
  position: relative;
  z-index: 1;
  grid-column: 1 / 2;
  padding: clamp(28px, 5vw, 62px);
}

.case-feature.compact {
  min-height: 330px;
  display: block;
}

.case-feature span,
.team-cards span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  font-family: var(--mono-font);
}

.case-feature h2 {
  margin: 18px 0;
  font-size: clamp(46px, 8vw, 112px);
  line-height: 0.88;
}

.case-feature p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.45;
}

.agency-visual,
.detail-hero {
  position: relative;
}

.agency-visual::before,
.media-hero::before,
.detail-hero::before,
.social-hero::before,
.gtm-hero::before,
.contact-page::before {
  content: "";
  position: absolute;
  inset: 100px 0 0 auto;
  width: min(48vw, 620px);
  height: min(54vw, 620px);
  z-index: -1;
  opacity: 0.52;
  background: url("./assets/ppt/team-bg.jpg") center / cover;
  mask-image: radial-gradient(circle, black 42%, transparent 72%);
}

.media-hero::before {
  background-image: url("./assets/ppt/media-bg.jpg");
}

.detail-hero::before {
  background-image: url("./assets/ppt/about-bg.jpg");
}

.social-hero::before {
  background-image: url("./assets/ppt/team-bg.jpg");
}

.gtm-hero::before {
  background:
    radial-gradient(circle at 55% 48%, rgba(99, 32, 238, 0.42), transparent 18rem),
    radial-gradient(circle at 74% 55%, rgba(255, 69, 29, 0.34), transparent 16rem);
  opacity: 0.78;
}

.contact-page::before {
  background-image: url("./assets/ppt/cover-bg.jpg");
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(70px, 10vw, 120px) 0;
}

.team-cards article {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.team-cards img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  filter: grayscale(0.08) contrast(1.04);
}

.team-cards span,
.team-cards h2,
.team-cards p {
  margin-left: 28px;
  margin-right: 28px;
}

.team-cards span {
  margin-top: 28px;
}

.team-cards h2 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.9;
}

.team-cards p {
  color: var(--muted);
  margin-bottom: 30px;
}

.marquee-hub,
.case-template,
.manifesto {
  min-height: 80vh;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}

.marquee-hub h2,
.case-template h2 {
  max-width: 980px;
  font-family: var(--display-font);
  font-size: clamp(50px, 8vw, 120px);
  line-height: 0.9;
  text-transform: uppercase;
}

.marquee-hub p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
}

.logo-marquee {
  display: flex;
  gap: 54px;
  overflow: hidden;
  margin-top: 70px;
  color: rgba(245, 245, 247, 0.72);
  font-family: var(--display-font);
  font-size: clamp(38px, 7vw, 98px);
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

@keyframes marquee {
  to { transform: translateX(-48%); }
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  border: 1px solid var(--line);
  background: var(--line);
}

.template-grid article {
  min-height: 220px;
  padding: 28px;
  background: rgba(10, 10, 11, 0.82);
}

.template-grid span {
  color: var(--orange);
  font-family: var(--mono-font);
  text-transform: uppercase;
}

.template-grid strong {
  display: block;
  margin-top: 52px;
  font-family: var(--display-font);
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.94;
  text-transform: uppercase;
}

.manifesto p {
  max-width: 1180px;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(36px, 6vw, 92px);
  line-height: 1.02;
  text-transform: uppercase;
}

.contact-form {
  width: min(100%, 980px);
  display: grid;
  gap: 22px;
  margin-top: 44px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form span {
  color: var(--orange);
  font-family: var(--mono-font);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  min-height: 56px;
  font: 800 24px/1 var(--body-font);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus {
  border-bottom-color: var(--orange);
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .intro-band,
  .team {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid.four,
  .method-list,
  .numbers,
  .data-matrix,
  .core-puzzle,
  .gtm-execution {
    grid-template-columns: 1fr 1fr;
  }

  .data-matrix {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }

  .data-matrix > div {
    grid-column: 1 / -1;
    padding: 0;
  }

  .core-puzzle {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .work-card,
  .work-card.large {
    min-height: 420px;
    grid-row: auto;
  }

  .case-feature {
    grid-template-columns: 1fr;
  }

  .team-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: absolute;
    padding: 16px 14px;
  }

  .brand {
    font-size: 12px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

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

  .frame,
  .intro-band,
  .services,
  .statement,
  .method,
  .work,
  .team,
  .contact {
    min-height: auto;
    padding: 82px 0;
  }

  .page {
    padding-top: 88px;
  }

  .page-hero {
    min-height: auto;
    padding: 72px 0;
  }

  .page-hero h1 {
    font-size: clamp(46px, 13vw, 70px);
    line-height: 0.98;
  }

  .case-feature,
  .case-feature.compact {
    min-height: 420px;
  }

  .case-feature h2 {
    font-size: clamp(42px, 12vw, 68px);
  }

  .team-cards article {
    min-height: auto;
  }

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

  .marquee-hub h2,
  .case-template h2,
  .manifesto p {
    font-size: clamp(42px, 12vw, 70px);
  }

  .hero {
    min-height: 100vh;
    padding-top: 92px;
  }

  .eyebrow,
  .footer {
    flex-direction: column;
    gap: 10px;
  }

  .hero-inner {
    padding: 56px 0 34px;
  }

  h1,
  .intro-band h2,
  .section-title h2,
  .statement h2,
  .contact h2 {
    line-height: 0.94;
  }

  h1 {
    font-size: clamp(58px, 16vw, 82px);
  }

  .button {
    width: 100%;
  }

  .hero-deck,
  .service-grid,
  .service-grid.four,
  .method-list,
  .numbers,
  .data-matrix,
  .gtm-execution {
    grid-template-columns: 1fr;
  }

  .data-matrix {
    min-height: auto;
    padding: 82px 0;
  }

  .data-matrix h2,
  .core-puzzle h2 {
    font-size: clamp(46px, 13vw, 72px);
    line-height: 0.94;
  }

  .data-block {
    min-height: 330px;
  }

  .liquid-orbits {
    min-height: 500px;
  }

  .liquid-orbits span {
    width: min(76vw, 280px);
  }

  .liquid-orbits span:nth-child(3) {
    left: 8%;
  }

  .gtm-system {
    min-height: 440px;
  }

  .gtm-system span {
    font-size: 10px;
    padding: 0 10px;
  }

  .hero-deck article {
    min-height: 132px;
  }

  .service-card,
  .method-list article {
    min-height: 300px;
  }

  .service-card h3,
  .method-list h3,
  .work-card h3 {
    font-size: clamp(28px, 10vw, 44px);
    line-height: 1.04;
  }

  .section-title {
    display: block;
  }

  .numbers article {
    min-height: 240px;
  }
}

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