:root {
  --dark: #121018;
  --dark-2: #17121f;
  --dark-3: #211a2c;
  --cream: #f4ebdd;
  --cream-2: #fff7ea;
  --pink: #ff4fa3;
  --lime: #c8ff4d;
  --yellow: #ffd166;
  --muted: #a79fb2;
  --muted-dark: #5c5368;
  --border-light: rgba(255, 247, 234, 0.18);
  --border-dark: rgba(23, 18, 31, 0.18);
  --font-display: "Space Grotesk", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-label: "IBM Plex Sans", "Manrope", system-ui, sans-serif;
  --container: 1440px;
  --side: 80px;
  --radius: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--cream-2);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

img,
svg {
  max-width: 100%;
}

::selection {
  background: var(--pink);
  color: var(--dark);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--pink);
  color: var(--dark);
  padding: 12px 16px;
  font-weight: 800;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.container {
  width: min(calc(100% - var(--side) * 2), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}

.nav-shell {
  width: min(calc(100% - 48px), 1440px);
  margin: 0 auto;
  min-height: 70px;
  padding: 10px 12px 10px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  color: var(--cream-2);
  background: rgba(18, 16, 24, 0.72);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(20px);
  pointer-events: auto;
}

.brand,
.nav-links,
.nav-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nav-links {
  justify-content: center;
  gap: 28px;
  color: rgba(255, 247, 234, 0.78);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 48px;
  padding: 0 22px;
  background: var(--pink);
  color: var(--dark);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--cream);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.section-dark {
  background: var(--dark);
  color: var(--cream-2);
}

.section-light {
  background: var(--cream);
  color: var(--dark);
}

.hero {
  min-height: 100vh;
  padding: 154px 0 92px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 247, 234, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 234, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 30%, transparent 92%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--lime);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.text-pink {
  color: var(--pink);
}

.hero-name {
  margin: 0 0 8px;
  color: rgba(255, 247, 234, 0.7);
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0;
}

.hero-role {
  margin: 0 0 28px;
  color: rgba(255, 247, 234, 0.54);
  font-size: 18px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: 104px;
}

.hero-lead {
  max-width: 760px;
  margin: 34px 0 0;
  font-size: 24px;
  line-height: 1.42;
  color: rgba(255, 247, 234, 0.88);
}

.hero-note {
  max-width: 700px;
  margin: 22px 0 0;
  padding-left: 22px;
  border-left: 4px solid var(--pink);
  color: rgba(255, 247, 234, 0.68);
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--pink);
  color: var(--dark);
  border-color: var(--pink);
}

.button-outline.light {
  color: var(--cream-2);
  border-color: rgba(255, 247, 234, 0.36);
}

.button-outline.light:hover {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}

.button-outline.dark {
  color: var(--dark);
  border-color: rgba(18, 16, 24, 0.3);
}

.button-outline.dark:hover {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

.ops-board {
  min-height: 680px;
  padding: 26px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-light);
  background:
    linear-gradient(135deg, rgba(255, 79, 163, 0.16), transparent 30%),
    linear-gradient(225deg, rgba(200, 255, 77, 0.1), transparent 35%),
    #191523;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  position: relative;
  overflow: hidden;
}

.portrait-frame {
  min-height: 700px;
  align-self: stretch;
  position: relative;
  transform: rotate(3deg);
  isolation: isolate;
}

.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
}

.portrait-frame::before {
  inset: 26px -18px -22px 34px;
  border: 2px solid var(--pink);
  background: rgba(255, 79, 163, 0.08);
  transform: rotate(-5deg);
  z-index: -1;
}

.portrait-frame::after {
  left: -34px;
  bottom: 44px;
  width: 118px;
  height: 118px;
  background: var(--lime);
  clip-path: polygon(0 0, 100% 18%, 74% 100%, 8% 76%);
  mix-blend-mode: normal;
  z-index: 2;
}

.portrait-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 700px;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  border: 2px solid rgba(255, 247, 234, 0.9);
  background: var(--cream);
  clip-path: polygon(7% 0, 100% 6%, 93% 100%, 0 91%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.ops-board::after {
  content: "";
  position: absolute;
  inset: 76px 40px auto auto;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 247, 234, 0.13);
  transform: rotate(16deg);
}

.ops-topline,
.ops-footer,
.case-meta,
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.ops-topline {
  color: rgba(255, 247, 234, 0.7);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ops-topline strong {
  color: var(--lime);
}

.ops-lane {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  align-items: center;
  gap: 12px;
}

.ops-card {
  min-height: 142px;
  padding: 20px;
  border: 1px solid var(--border-light);
  background: rgba(255, 247, 234, 0.08);
}

.ops-card span,
.ops-footer span,
.case-meta span {
  display: block;
  color: rgba(255, 247, 234, 0.6);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ops-card strong {
  display: block;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}

.ops-card.hot strong,
.case-card.featured .case-meta strong {
  color: var(--pink);
}

.ops-card.blue strong {
  color: #8db8ff;
}

.ops-card.lime strong {
  color: var(--lime);
}

.ops-arrow {
  height: 2px;
  background: rgba(255, 247, 234, 0.34);
  position: relative;
}

.ops-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -5px;
  border-left: 10px solid rgba(255, 247, 234, 0.6);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.ops-dashboard {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.chart-panel,
.control-panel,
.ops-footer > div {
  border: 1px solid var(--border-light);
  background: rgba(255, 247, 234, 0.07);
}

.chart-panel {
  min-height: 280px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 46%;
  height: 78px;
  border-top: 5px solid var(--pink);
  border-right: 5px solid var(--lime);
  transform: skewY(-9deg);
}

.chart-bars {
  height: 100%;
  display: flex;
  align-items: end;
  gap: 12px;
}

.chart-bars span {
  flex: 1;
  min-height: 42px;
  background: rgba(255, 247, 234, 0.12);
  border-top: 4px solid var(--cream);
}

.control-panel {
  padding: 22px;
}

.control-panel p {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
}

.status-row {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  color: rgba(255, 247, 234, 0.76);
  font-weight: 700;
}

.status-row span {
  width: 10px;
  height: 10px;
  background: var(--lime);
}

.ops-footer {
  align-items: stretch;
}

.ops-footer > div {
  flex: 1;
  padding: 22px;
}

.ops-footer strong {
  display: block;
  margin-top: 10px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 30px;
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 72px;
}

.metric-card {
  min-height: 180px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-light);
  background: rgba(255, 247, 234, 0.06);
}

.metric-card strong {
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
}

.metric-card span {
  color: rgba(255, 247, 234, 0.7);
  font-weight: 700;
}

.ticker {
  overflow: hidden;
  background: var(--pink);
  color: var(--dark);
  border-block: 2px solid var(--dark);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 24px 0;
  animation: ticker 34s linear infinite;
}

.ticker span {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  white-space: nowrap;
}

.ticker span::after {
  content: "•";
  margin-left: 34px;
  color: var(--cream);
}

.section-light,
.section-dark,
.contact-section {
  padding: 128px 0;
}

.section-heading {
  margin-bottom: 64px;
}

.split-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.section-number {
  margin: 0;
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 112px;
  font-weight: 800;
  line-height: 0.86;
}

.section-number.pink {
  color: var(--pink);
}

h2 {
  max-width: 1100px;
  font-size: 64px;
  line-height: 1.05;
}

.section-dark h2 {
  color: var(--cream-2);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--dark);
  border-left: 2px solid var(--dark);
}

.value-card {
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  background: rgba(255, 255, 255, 0.22);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.value-card:hover {
  background: var(--pink);
  transform: translateY(-6px);
}

.card-index {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-label);
  font-weight: 800;
}

.value-card h3 {
  margin-top: auto;
  font-size: 31px;
  line-height: 1.08;
}

.value-card p {
  margin: 18px 0 0;
  color: rgba(18, 16, 24, 0.74);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
}

.cases-section {
  border-top: 1px solid var(--border-light);
}

.cases-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.case-card {
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  background: rgba(255, 247, 234, 0.05);
}

.case-card.featured {
  grid-row: span 2;
  min-height: 742px;
  background: var(--cream);
  color: var(--dark);
}

.case-meta strong {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--lime);
}

.case-card:not(.featured) .case-meta strong {
  color: var(--pink);
}

.case-card.featured .case-meta span {
  color: rgba(18, 16, 24, 0.58);
}

.case-card h3 {
  margin-top: auto;
  font-size: 42px;
  line-height: 1.05;
}

.detailing-visual {
  margin: 34px 0 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

.detailing-visual::before {
  content: "";
  position: absolute;
  right: -12px;
  top: -12px;
  width: 72px;
  height: 72px;
  background: var(--pink);
  clip-path: polygon(0 0, 100% 20%, 76% 100%, 12% 78%);
}

.detailing-visual::after {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -14px;
  width: 92px;
  height: 18px;
  background: var(--lime);
}

.detailing-shot {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--dark);
  background: var(--dark);
  position: relative;
  z-index: 1;
  box-shadow: 10px 10px 0 rgba(255, 79, 163, 0.18);
}

.detailing-shot.flow {
  transform: rotate(-1deg);
}

.detailing-shot:nth-child(2) {
  transform: translateX(18px) rotate(0.7deg);
}

.detailing-shot:nth-child(3) {
  transform: translateX(-12px) rotate(-0.6deg);
}

.detailing-shot img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.92) contrast(1.06);
}

.detailing-shot.flow img {
  width: 100%;
}

.case-card.featured h3 {
  margin-top: 0;
}

.case-copy {
  margin-top: 26px;
  display: grid;
  gap: 22px;
}

.case-copy-block {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 247, 234, 0.14);
}

.case-card.featured .case-copy-block {
  border-top-color: rgba(18, 16, 24, 0.14);
}

.case-copy-block span,
.case-result span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-copy-block span {
  color: rgba(255, 247, 234, 0.54);
}

.case-card.featured .case-copy-block span {
  color: rgba(18, 16, 24, 0.5);
}

.case-copy-block p {
  margin: 0;
  color: rgba(255, 247, 234, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.case-card.featured .case-copy-block p {
  color: rgba(18, 16, 24, 0.68);
  font-size: 20px;
}

.case-result {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(200, 255, 77, 0.34);
  background: rgba(200, 255, 77, 0.1);
  color: var(--lime);
}

.case-card.featured .case-result {
  border-color: rgba(31, 126, 66, 0.2);
  background: #e8f4ea;
  color: #23713d;
}

.case-result p {
  margin: 0;
  color: currentColor;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 700;
}

.case-result span {
  margin-bottom: 10px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.process-step {
  min-height: 250px;
  padding: 28px;
  border: 2px solid var(--dark);
  background: var(--cream-2);
  position: relative;
}

.process-step.offset {
  transform: translateY(48px);
}

.process-step span {
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.process-step h3 {
  margin-top: 34px;
  font-size: 34px;
}

.process-step p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(18, 16, 24, 0.72);
  font-weight: 600;
}

.skills-section {
  border-top: 1px solid var(--border-light);
}

.skill-stack {
  border-top: 1px solid var(--border-light);
}

.skill-row {
  min-height: 132px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.skill-row h3 {
  font-size: 34px;
}

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

.chips span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--border-light);
  background: rgba(255, 247, 234, 0.05);
  color: rgba(255, 247, 234, 0.78);
  font-size: 15px;
  font-weight: 700;
}

.skill-row:nth-child(2n) .chips span:nth-child(2n),
.skill-row:nth-child(2n + 1) .chips span:nth-child(3n) {
  border-color: rgba(255, 79, 163, 0.7);
  color: var(--cream);
}

.contact-section {
  background:
    linear-gradient(90deg, var(--cream) 0 64%, var(--dark) 64% 100%);
  color: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: 68px;
  align-items: start;
}

.contact-copy h2 {
  font-size: 66px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(18, 16, 24, 0.72);
  font-size: 22px;
  font-weight: 600;
}

.contact-form {
  padding: 36px;
  background: var(--dark);
  color: var(--cream);
  border: 1px solid rgba(255, 247, 234, 0.2);
}

.contact-form label {
  display: block;
  margin-bottom: 26px;
}

.contact-form .form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 247, 234, 0.64);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(255, 247, 234, 0.32);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  padding: 14px 0;
  outline: 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
}

.contact-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  min-height: 28px;
  margin: 16px 0 0;
  color: var(--lime);
  font-size: 15px;
  font-weight: 700;
}

.site-footer {
  padding: 34px 0;
  background: var(--dark);
  border-top: 1px solid var(--border-light);
  color: rgba(255, 247, 234, 0.68);
}

.footer-inner {
  font-size: 15px;
  font-weight: 700;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--pink);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 1280px) {
  :root {
    --side: 48px;
  }

  h1 {
    font-size: 86px;
  }

  h2,
  .contact-copy h2 {
    font-size: 56px;
  }

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

  .ops-board {
    min-height: 560px;
  }

  .portrait-frame,
  .portrait-frame img {
    min-height: 620px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  :root {
    --side: 28px;
  }

  .site-header {
    top: 10px;
  }

  .nav-shell {
    width: min(calc(100% - 20px), 1440px);
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 88px;
    display: none;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(18, 16, 24, 0.96);
    border: 1px solid var(--border-light);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 54px;
    justify-content: center;
    border: 1px solid var(--border-light);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 130px;
  }

  h1 {
    font-size: 64px;
  }

  .hero-lead {
    font-size: 21px;
  }

  .ops-lane,
  .ops-dashboard,
  .ops-footer,
  .cases-grid,
  .process-list,
  .contact-grid,
  .skill-row,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .ops-lane {
    gap: 14px;
  }

  .ops-arrow {
    width: 2px;
    height: 32px;
    justify-self: center;
  }

  .ops-arrow::after {
    right: -5px;
    top: auto;
    bottom: -1px;
    border-top: 10px solid rgba(255, 247, 234, 0.6);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 0;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-card.featured {
    min-height: 520px;
  }

  .detailing-visual {
    gap: 14px;
  }

  .detailing-shot,
  .detailing-shot.flow,
  .detailing-shot:nth-child(2),
  .detailing-shot:nth-child(3) {
    transform: none;
  }

  .process-step.offset {
    transform: none;
  }

  .contact-section {
    background: var(--cream);
  }
}

@media (max-width: 680px) {
  :root {
    --side: 18px;
  }

  body {
    font-size: 16px;
  }

  .brand {
    font-size: 16px;
  }

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

  .hero {
    padding-bottom: 64px;
  }

  .hero-grid {
    gap: 36px;
  }

  h1 {
    font-size: 48px;
    line-height: 1.05;
  }

  h2,
  .contact-copy h2 {
    font-size: 40px;
    line-height: 1.08;
  }

  .section-number {
    font-size: 74px;
  }

  .hero-role,
  .hero-lead,
  .contact-copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .ops-board {
    min-height: auto;
    padding: 18px;
  }

  .portrait-frame {
    min-height: 460px;
    transform: rotate(1.5deg);
  }

  .portrait-frame::before {
    inset: 18px -10px -14px 20px;
  }

  .portrait-frame::after {
    left: -16px;
    bottom: 28px;
    width: 74px;
    height: 74px;
  }

  .portrait-frame img {
    min-height: 460px;
  }

  .ops-card {
    min-height: 112px;
  }

  .ops-card strong,
  .ops-footer strong {
    font-size: 28px;
  }

  .chart-panel {
    min-height: 220px;
  }

  .metric-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .value-card,
  .case-card,
  .process-step,
  .contact-form {
    padding: 22px;
  }

  .metric-card strong,
  .case-meta strong {
    font-size: 38px;
  }

  .ticker span {
    font-size: 24px;
  }

  .section-light,
  .section-dark,
  .contact-section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .value-card {
    min-height: 260px;
  }

  .value-card h3,
  .skill-row h3,
  .process-step h3 {
    font-size: 28px;
  }

  .case-card h3 {
    font-size: 32px;
  }

  .skill-row {
    gap: 18px;
  }

  .chips span {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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