
/* ==========================================================
   Viral Ventures — design tokens
   bone/ink editorial system
   ========================================================== */
:root {
  /* Brand palette — pulled from VV logo */
  --bone-0: #FBFCFD;     /* primary bg — cool white */
  --bone-1: #F2F5F9;     /* slightly deeper */
  --bone-2: #E1E7F0;     /* divider tint */
  --ink-0:  #0F2944;     /* primary deep navy (logo dark) */
  --ink-1:  #1B3A5C;     /* body navy (logo mid-dark) */
  --ink-2:  #5A7592;     /* secondary slate */
  --ink-3:  #8FA4BC;     /* tertiary / hint */
  --rule:   #1B3A5C;     /* hairlines */
  --rule-2: rgba(15,41,68,0.12);
  --accent: #3680C4;     /* mid-blue (logo) */
  --accent-2: #5DAEDF;   /* light blue (logo arrow tip) */
  --accent-soft: rgba(54,128,196,0.08);
  --gradient: linear-gradient(135deg, #0F2944 0%, #1B3A5C 35%, #3680C4 70%, #5DAEDF 100%);

  --font-display: "Poppins", "Helvetica Neue", system-ui, sans-serif;
  --font-body:    "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --max-w: 1440px;
  --gutter: clamp(20px, 4.5vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.76, 0, 0.24, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  background: var(--bone-0);
  color: var(--ink-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}
::selection { background: var(--ink-0); color: var(--bone-0); }

img { max-width: 100%; display: block; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ==========================================================
   Layout primitives
   ========================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.rule { height: 1px; background: var(--rule-2); width: 100%; }
.label-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
}
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.96;
  color: var(--ink-0);
  text-wrap: balance;
}
.serif-italic { font-style: normal; color: var(--accent); font-weight: 600; }

/* ==========================================================
   Top bar
   ========================================================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bone-0) 85%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule-2);
}
.topbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 28px; height: 28px;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.brand__suffix {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.08em;
  margin-left: 2px;
}
.topbar__nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.topbar__nav a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.topbar__nav a:hover { color: var(--ink-0); }
.topbar__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.topbar__nav a:hover::after { transform: scaleX(1); }
.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--ink-0);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.topbar__cta:hover { background: var(--ink-0); color: var(--bone-0); }
.topbar__cta__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  padding: 180px var(--gutter) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.hero__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.hero__lede {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero__h1 {
  font-size: clamp(56px, 9vw, 144px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.92;
}
.hero__h1 em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
}
.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 12px;
}
.hero__statement {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-1);
  max-width: 460px;
}
.hero__statement em { font-style: italic; }
.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-2);
}
.hero__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__metric__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.hero__metric__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* hero address strip — top right */
.hero__address {
  position: absolute;
  top: 120px;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-2);
}
.hero__address b { color: var(--ink-0); font-weight: 500; }

/* ==========================================================
   Prism (refined for bone/ink)
   ========================================================== */
.prism-zone {
  position: relative;
  padding: 60px var(--gutter) 120px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.prism-zone__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.prism-zone__h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 84px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
}
.prism-zone__copy p {
  max-width: 460px;
  color: var(--ink-1);
  font-size: 18px;
  line-height: 1.55;
}
.prism-zone__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule-2);
  margin-top: 12px;
}
.prism-zone__item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-2);
  cursor: pointer;
  transition: padding-left 0.4s var(--ease);
}
.prism-zone__item:hover { padding-left: 8px; }
.prism-zone__item--active { padding-left: 12px; }
.prism-zone__item--active::after {
  content: '';
  position: absolute;
}
.prism-zone__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.06em;
}
.prism-zone__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.prism-zone__item--active .prism-zone__name { color: var(--accent); }
.prism-zone__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}

.prism-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  perspective: 2200px;
  perspective-origin: 50% 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.prism {
  position: relative;
  width: 280px;
  height: 580px;
  transform-style: preserve-3d;
  transition: transform 1s var(--ease);
  cursor: grab;
}
.prism:active { cursor: grabbing; }
.prism__face {
  position: absolute;
  top: 0; left: 0;
  width: 280px;
  height: 580px;
  backface-visibility: hidden;
  border-radius: 44px;
  overflow: hidden;
  background:
    /* metallic side highlights */
    linear-gradient(90deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0) 4%,
      rgba(255,255,255,0) 96%,
      rgba(255,255,255,0.08) 100%),
    /* top/bottom darker bezel */
    linear-gradient(180deg,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0) 8%,
      rgba(0,0,0,0) 92%,
      rgba(0,0,0,0.35) 100%),
    #0a0a0c;
  box-shadow:
    /* outer drop */
    0 40px 80px -20px rgba(14,14,14,0.45),
    0 16px 32px -8px rgba(14,14,14,0.25),
    /* polished frame */
    inset 0 0 0 1.5px rgba(255,255,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.5),
    /* edge bevel */
    inset 6px 0 12px -6px rgba(255,255,255,0.08),
    inset -6px 0 12px -6px rgba(255,255,255,0.08);
}
/* Each face is offset on Z to give the phone real prism depth.
   The phone is 280px wide so radius ~140px gets it close to a real "phone box". */
.prism__face--0 { transform: translateZ(140px); }
.prism__face--1 { transform: rotateY(90deg) translateZ(140px); }
.prism__face--2 { transform: rotateY(180deg) translateZ(140px); }
.prism__face--3 { transform: rotateY(270deg) translateZ(140px); }

.phone-screen {
  position: absolute;
  inset: 12px;
  border-radius: 32px;
  background: #f8f6f1;
  overflow: hidden;
  /* subtle inner shadow to make the screen feel inset behind glass */
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    inset 0 2px 6px rgba(0,0,0,0.25);
}
/* Glare on top of the screen — fixed, doesn't rotate with content */
.phone-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.04) 18%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0) 65%,
    rgba(255,255,255,0.06) 100%);
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: overlay;
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #0E0E0E;
  border-radius: 14px;
  z-index: 5;
}
.phone-status {
  position: absolute;
  top: 18px; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 26px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-2);
  z-index: 4;
}
.phone-indicator {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 4px;
  background: var(--ink-2);
  border-radius: 100px;
  z-index: 5;
  opacity: 0.5;
}

/* face content variants */
.face-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}
.face-content__head {
  padding: 56px 24px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.face-content__kicker {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
}
.face-content__title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink-0);
}
.face-content__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
}
.face-content__hero {
  flex: 1;
  margin: 12px 18px 18px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--bone-1);
}
.face-content__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.face-content__cta {
  margin: 0 18px 24px;
  padding: 12px;
  background: var(--ink-0);
  color: var(--bone-0);
  border-radius: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.prism-controls {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 6px 8px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  background: var(--bone-0);
}
.prism-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.prism-dot:hover { background: var(--bone-1); color: var(--ink-0); }
.prism-dot--active { background: var(--ink-0); color: var(--bone-0); }

/* ==========================================================
   Section header pattern
   ========================================================== */
.section {
  padding: 120px 0;
  position: relative;
}
.section__head {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: end;
}
.section__index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 88px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-wrap: balance;
}
.section__title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
}

/* ==========================================================
   Manifesto
   ========================================================== */
.manifesto {
  background: var(--ink-0);
  color: var(--bone-0);
}
.manifesto .section__head { padding-top: 0; }
.manifesto .section__index { color: var(--ink-3); }
.manifesto .section__title { color: var(--bone-0); }
.manifesto .section__title em { color: var(--bone-2); }
.manifesto__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.manifesto__item {
  padding: 56px 40px 56px 0;
  border-top: 1px solid rgba(244,241,236,0.12);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
}
.manifesto__item:nth-child(even) { padding-left: 40px; padding-right: 0; border-left: 1px solid rgba(244,241,236,0.12); }
.manifesto__item:nth-last-child(2) { border-bottom: 1px solid rgba(244,241,236,0.12); }
.manifesto__item:last-child { border-bottom: 1px solid rgba(244,241,236,0.12); }
.manifesto__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.manifesto__h {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--bone-0);
  margin-bottom: 12px;
}
.manifesto__h em { font-family: var(--font-body); font-style: italic; }
.manifesto__p {
  font-family: var(--font-body);
  color: var(--bone-2);
  font-size: 16px;
  line-height: 1.55;
  max-width: 380px;
}

/* ==========================================================
   Case studies
   ========================================================== */
.case {
  padding: 60px 0;
  border-bottom: 1px solid var(--rule-2);
}
.case__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.case__meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case__index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.12em;
}
.case__year {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
}
.case__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 4px 10px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  align-self: start;
}
.case__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case__name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.0;
}
.case__name em { font-family: var(--font-body); font-style: italic; }
.case__lede {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--ink-1);
  line-height: 1.5;
  max-width: 480px;
}
.case__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-2);
  margin-top: 16px;
}
.case__metric {
  padding: 18px 0;
  border-right: 1px solid var(--rule-2);
}
.case__metric:last-child { border-right: none; }
.case__metric__n {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}
.case__metric__l {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-2);
}
.case__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bone-1);
  border: 1px solid var(--rule-2);
}
.case__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.case__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  padding: 12px 18px;
  border: 1px solid var(--ink-0);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  align-self: start;
}
.case__cta:hover { background: var(--ink-0); color: var(--bone-0); }

/* ==========================================================
   Services
   ========================================================== */
.services {
  background: var(--bone-1);
}
.services__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-2);
}
.service {
  padding: 48px 36px 60px 0;
  border-right: 1px solid var(--rule-2);
  position: relative;
  cursor: pointer;
  transition: background 0.4s var(--ease);
}
.service:nth-child(2) { padding-left: 36px; padding-right: 36px; }
.service:nth-child(3) { padding-left: 36px; padding-right: 0; border-right: none; }
.service:hover { background: var(--bone-0); }
.service__index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.service__h {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.service__h em { font-family: var(--font-body); font-style: italic; }
.service__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-1);
  line-height: 1.55;
  margin-bottom: 28px;
}
.service__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service__list li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 6px;
  text-transform: uppercase;
}
.service__list li::before {
  content: '+';
  color: var(--ink-3);
}

/* ==========================================================
   Process
   ========================================================== */
.process {
  background: var(--bone-0);
}
.process__steps {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
}
.process__step {
  display: grid;
  grid-template-columns: 200px 1fr 1.2fr;
  gap: 60px;
  padding: 48px 0;
  border-top: 1px solid var(--rule-2);
  align-items: start;
}
.process__step:last-child { border-bottom: 1px solid var(--rule-2); }
.process__step__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}
.process__step__h {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.process__step__h em { font-family: var(--font-body); font-style: italic; }
.process__step__p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-1);
  line-height: 1.6;
}
.process__step__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 18px;
  padding: 4px 10px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  align-self: start;
}

/* ==========================================================
   Press / clients strip
   ========================================================== */
.press {
  padding: 60px var(--gutter);
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
}
.press__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: center;
}
.press__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.press__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: center;
}
.press__item {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--ink-2);
  opacity: 0.6;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.press__item:hover { opacity: 1; color: var(--ink-0); }

/* ==========================================================
   Writing
   ========================================================== */
.writing__list {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  border-top: 1px solid var(--rule-2);
}
.writing__row {
  display: grid;
  grid-template-columns: 60px 1fr 140px 100px 28px;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule-2);
  align-items: center;
  cursor: pointer;
  transition: padding-left 0.3s var(--ease);
}
.writing__row:hover { padding-left: 12px; }
.writing__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
}
.writing__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.writing__kind {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.writing__date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  text-align: right;
}
.writing__arrow {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--ink-2);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.writing__row:hover .writing__arrow { color: var(--ink-0); transform: translateX(4px); }

/* ==========================================================
   Contact / inquiry
   ========================================================== */
.contact {
  background: var(--ink-0);
  color: var(--bone-0);
  padding: 140px 0;
}
.contact__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact__lede {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact__h {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.96;
}
.contact__h em { font-family: var(--font-body); font-style: italic; }
.contact__p {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--bone-2);
  line-height: 1.55;
  max-width: 460px;
}
.contact__quick {
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,241,236,0.16);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__quick__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--bone-2);
}
.contact__quick__row b { color: var(--bone-0); font-weight: 500; }

.form {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 12px;
}
.form__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(244,241,236,0.12);
  align-items: center;
}
.form__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-2);
}
.form__input,
.form__textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--bone-0);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  padding: 0;
  resize: none;
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--ink-3); }
.form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form__chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border: 1px solid rgba(244,241,236,0.2);
  border-radius: 999px;
  color: var(--bone-2);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.form__chip:hover { color: var(--bone-0); border-color: var(--bone-2); }
.form__chip--active {
  background: var(--bone-0);
  color: var(--ink-0);
  border-color: var(--bone-0);
}
.form__submit {
  margin-top: 28px;
  padding: 18px 28px;
  background: var(--bone-0);
  color: var(--ink-0);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  align-self: start;
}
.form__submit:hover { background: var(--accent); color: var(--bone-0); }
.form__submit:disabled { opacity: 0.6; cursor: progress; }
.form__submit:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }
.form__chip:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; }
.form__input:focus-visible,
.form__textarea:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; border-radius: 2px; }
.form__row--honeypot {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__status {
  margin-top: 14px;
  min-height: 1.4em;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}
.form__status[data-kind="error"] { color: #B43A3A; }
.form__thanks {
  padding: 40px 0;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink-0);
  letter-spacing: -0.01em;
}

/* ==========================================================
   Footer
   ========================================================== */
.footer {
  padding: 80px var(--gutter) 40px;
  background: var(--bone-0);
  border-top: 1px solid var(--rule-2);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__brand__name {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 100px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.92;
}
.footer__brand__name em { font-family: var(--font-body); font-style: italic; }
.footer__brand__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__col__h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 10px;
}
.footer__col a {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink-1);
  transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--ink-0); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule-2);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.footer__bottom > *:nth-child(2) { text-align: center; }
.footer__bottom > *:last-child { text-align: right; }

/* ==========================================================
   Reveal on scroll
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal--in { opacity: 1; transform: translateY(0); }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1100px) {
  .hero__top { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .hero__address { display: none; }
  .prism-zone { grid-template-columns: 1fr; gap: 60px; }
  .case__inner { grid-template-columns: 100px 1fr; }
  .case__visual { grid-column: 1 / -1; max-width: 480px; }
  .section__head { grid-template-columns: 100px 1fr; }
  .process__step { grid-template-columns: 80px 1fr 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar__nav { display: none; }
  .topbar__inner { grid-template-columns: auto auto; }
  .hero { padding-top: 120px; }
  .hero__metrics { grid-template-columns: 1fr 1fr; }
  .manifesto__grid { grid-template-columns: 1fr; }
  .manifesto__item, .manifesto__item:nth-child(even) {
    padding: 40px 0;
    border-left: none !important;
  }
  .case__inner { grid-template-columns: 1fr; gap: 30px; }
  .services__grid { grid-template-columns: 1fr; }
  .service, .service:nth-child(2), .service:nth-child(3) {
    padding: 40px 0;
    border-right: none;
    border-bottom: 1px solid var(--rule-2);
  }
  .process__step { grid-template-columns: 60px 1fr; gap: 24px; }
  .process__step > p { grid-column: 1 / -1; }
  .press__inner { grid-template-columns: 1fr; gap: 24px; }
  .press__list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .writing__row { grid-template-columns: 32px 1fr 28px; gap: 12px; }
  .writing__kind, .writing__date { display: none; }
  .writing__title { font-size: 17px; }
  .contact__inner { grid-template-columns: 1fr; gap: 60px; }
  .form__row { grid-template-columns: 1fr; gap: 8px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { grid-template-columns: 1fr; gap: 12px; text-align: left; }
  .footer__bottom > * { text-align: left !important; }
}

/* ============================================================
   Brand override — full-sans editorial accents
   ============================================================ */
em, .display em, .hero__h1 em, .section__title em, .case__name em, .manifesto__h em,
.service__h em, .process__step__h em, .footer__brand__name em, .contact__h em {
  font-style: normal !important;
  font-family: var(--font-display) !important;
  font-weight: 500 !important;
  color: var(--accent) !important;
}
.hero__statement em { color: var(--accent); font-style: normal; font-weight: 600; }
.case__lede em { color: var(--accent); font-style: normal; font-weight: 600; }
.manifesto__p em { color: var(--accent-2); font-style: normal; font-weight: 600; }

/* Logo replaces SVG mark */
.brand__mark--img {
  width: auto;
  height: 32px;
  display: block;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: 18px;
  color: var(--ink-0);
}
.brand__name b { font-weight: 700; }
.brand__name .vv-light { font-weight: 400; }
.brand__suffix { color: var(--ink-3); font-weight: 400; }

/* Topbar refinement */
.topbar { background: rgba(251,252,253,0.88); }
.topbar__cta { border-color: var(--ink-0); color: var(--ink-0); }
.topbar__cta:hover { background: var(--ink-0); color: var(--bone-0); }
.topbar__cta__dot { background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); }

/* Display headings */
.hero__h1, .section__title, .case__name, .manifesto__h, .service__h,
.process__step__h, .contact__h, .footer__brand__name, .prism-zone__h2,
.face-content__title, .display {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
}
.hero__h1 { font-weight: 600; }
.section__title { font-weight: 600; }
.case__name { font-weight: 600; }
.manifesto__h { font-weight: 600; }
.service__h { font-weight: 600; }
.process__step__h { font-weight: 600; }
.contact__h { font-weight: 600; }
.footer__brand__name { font-weight: 700; }
.prism-zone__h2 { font-weight: 600; }
.face-content__title { font-weight: 600; }

/* Manifesto: navy bg w/ light arrow accent */
.manifesto { background: var(--ink-0); color: var(--bone-0); }
.manifesto::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(93,174,223,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.manifesto > * { position: relative; z-index: 1; }
.manifesto .manifesto__item { border-color: rgba(251,252,253,0.12); }
.manifesto .manifesto__h { color: var(--bone-0); }
.manifesto .manifesto__p { color: rgba(251,252,253,0.72); }

/* Contact: navy bg matching manifesto */
.contact { background: var(--ink-0); position: relative; }
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(93,174,223,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.contact__inner { position: relative; z-index: 1; }
.contact__h { color: var(--bone-0); }
.contact__p { color: rgba(251,252,253,0.7); }
.contact__quick { border-color: rgba(251,252,253,0.16); }
.contact__quick__row { color: rgba(251,252,253,0.7); }
.contact__quick__row b { color: var(--bone-0); }
.form__row { border-color: rgba(251,252,253,0.12); }
.form__label { color: rgba(251,252,253,0.6); }
.form__input, .form__textarea { color: var(--bone-0); font-family: var(--font-display); font-weight: 500; }
.form__input::placeholder, .form__textarea::placeholder { color: rgba(251,252,253,0.35); }
.form__chip { color: rgba(251,252,253,0.7); border-color: rgba(251,252,253,0.2); }
.form__chip:hover { color: var(--bone-0); border-color: var(--accent-2); }
.form__chip--active {
  background: var(--accent);
  color: var(--bone-0);
  border-color: var(--accent);
}
.form__submit {
  background: var(--bone-0);
  color: var(--ink-0);
}
.form__submit:hover { background: var(--accent); color: var(--bone-0); }

/* Hero metrics — accent-numbers */
.hero__metric__num { color: var(--accent); font-weight: 600; }
.hero__metric__label { color: var(--ink-2); }
.hero__statement { color: var(--ink-1); }

/* Hero ambient gradient panel — soft */
.hero {
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(93,174,223,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* Press strip restyle */
.press__item { color: var(--ink-2); font-weight: 500; }
.press__item:hover { color: var(--accent); }

/* Case-study accent metrics */
.case__metric__n { color: var(--accent); font-weight: 600; }

/* Process numbering — accent gradient */
.process__step__num {
  background: linear-gradient(135deg, var(--ink-0) 0%, var(--accent) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}

/* Service hover accent border */
.service { transition: background 0.4s var(--ease), color 0.4s var(--ease); }
.service:hover { background: var(--bone-0); }
.service:hover .service__h em { color: var(--accent); }

/* Writing list — sans not serif */
.writing__title { font-family: var(--font-display); font-weight: 500; }

/* Footer brand mark */
.footer__brand__name { color: var(--ink-0); }
.footer__brand__name em { color: var(--accent); }

/* Hero CTA arrow uses accent */
.hero__h1 em, .section__title em, .case__name em, .footer__brand__name em {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

/* Phone face content polish */
.face-content__kicker { color: var(--accent); }
.face-content__cta { background: var(--ink-0); }

/* Prism phone screens — keep slightly off-white */
.phone-screen { background: var(--bone-0); }

/* Prism dot active uses navy */
.prism-dot--active { background: var(--ink-0); color: var(--bone-0); }

/* Form chip sets — tighten alignment */
.form__chips { row-gap: 10px; }

/* Eyebrow color */
.eyebrow { color: var(--ink-2); }



/* ==========================================================
   Centered titles + tightened mobile responsiveness (final pass)
   ========================================================== */
.section__head {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  max-width: 920px;
  padding: 0 var(--gutter);
  margin: 0 auto 80px;
  gap: 18px;
}
.section__index { letter-spacing: 0.14em; }
.section__title { text-align: center; max-width: 880px; }

.hero {
  text-align: center;
}
.hero__top {
  grid-template-columns: 1fr;
  gap: 36px;
  text-align: center;
  align-items: center;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto 80px;
}
.hero__lede { align-items: center; }
.hero__h1 { text-align: center; max-width: 920px; }
.hero__meta { align-items: center; }
.hero__statement { text-align: center; }
.hero__metrics { width: 100%; max-width: 640px; }
.hero__address {
  position: static;
  text-align: center;
  align-items: center;
  margin: 0 auto 24px;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Prism zone — keep two-column on desktop but center copy text */
.prism-zone__copy { text-align: left; }
@media (max-width: 1100px) {
  .prism-zone__copy { text-align: center; align-items: center; }
  .prism-zone__list { width: 100%; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* Manifesto - keep editorial 2col layout but center heads */
.manifesto .section__title { color: var(--bone-0); }

/* Skip link for a11y */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--ink-0);
  color: var(--bone-0);
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  z-index: 200;
}
.skip-link:focus { left: 16px; }

/* Focus rings */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Article (subpage) layout */
.article {
  max-width: 760px;
  margin: 140px auto 0;
  padding: 0 var(--gutter) 120px;
}
.article__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-2);
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: center;
}
.article__h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: var(--ink-0);
  text-align: center;
  margin-bottom: 24px;
  text-wrap: balance;
}
.article__lede {
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-2);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.article__meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rule-2);
  flex-wrap: wrap;
}
.article__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-1);
}
.article__body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-0);
  margin: 56px 0 18px;
}
.article__body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink-0);
  margin: 36px 0 14px;
}
.article__body p { margin-bottom: 22px; }
.article__body ul, .article__body ol { margin: 18px 0 26px 24px; }
.article__body li { margin-bottom: 10px; }
.article__body strong { color: var(--ink-0); font-weight: 600; }
.article__body a { color: var(--accent); border-bottom: 1px solid currentColor; }
.article__body code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--bone-1);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink-0);
}
.article__body blockquote {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-0);
  line-height: 1.4;
}
.article__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
  padding: 12px 18px;
  border: 1px solid var(--ink-0);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.article__back:hover { background: var(--ink-0); color: var(--bone-0); }

/* 404 */
.notfound {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px var(--gutter) 80px;
  text-align: center;
  gap: 24px;
}
.notfound__code {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 220px);
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.9;
}

/* Mobile menu (hamburger) */
.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.menu-toggle__bars {
  width: 18px; height: 12px;
  position: relative;
}
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink-0);
  transition: transform 0.3s var(--ease);
}
.menu-toggle__bars::before { top: 2px; }
.menu-toggle__bars::after { bottom: 2px; }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink-0);
  color: var(--bone-0);
  z-index: 99;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 100px 24px 40px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--bone-0);
}
.mobile-nav a:hover { color: var(--accent-2); }

@media (max-width: 768px) {
  .menu-toggle { display: inline-flex; }
  .topbar__inner { grid-template-columns: auto 1fr auto; }
  .topbar__nav { display: none; }
  .topbar__cta { display: none; }
  .hero { padding-top: 110px; padding-bottom: 60px; }
  .hero__h1 { font-size: clamp(40px, 11vw, 64px); }
  .hero__metrics { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .hero__metric__num { font-size: 26px; }
  .hero__metric__label { font-size: 9px; }
  .hero__address { font-size: 10px; gap: 12px; }
  .section { padding: 80px 0; }
  .section__head { margin-bottom: 50px; gap: 14px; }
  .prism-zone { padding: 40px var(--gutter) 80px; gap: 50px; }
  .prism-zone__h2 { font-size: clamp(32px, 7vw, 48px); }
  .prism-stage { transform: scale(0.85); }
  .case__inner { gap: 20px; }
  .case__metrics { grid-template-columns: 1fr 1fr 1fr; }
  .case__metric { padding: 12px 4px; }
  .case__metric__n { font-size: 22px; }
  .process__step { padding: 28px 0; }
  .process__step__num { font-size: 38px; }
  .press__list { grid-template-columns: 1fr 1fr; gap: 16px; }
  .press__item { font-size: 15px; text-align: center; }
  .contact { padding: 80px 0; }
  .contact__h { font-size: clamp(34px, 9vw, 56px); }
  .form__row { padding: 16px 0; }
  .form__chips { gap: 6px; }
  .form__chip { font-size: 10px; padding: 6px 10px; }
}

@media (max-width: 480px) {
  :root { --gutter: 18px; }
  .hero__metrics { grid-template-columns: 1fr; }
  .case__metrics { grid-template-columns: 1fr; }
  .case__metric { border-right: none; border-bottom: 1px solid var(--rule-2); }
  .case__metric:last-child { border-bottom: none; }
  .footer__brand img { height: 80px !important; }
}




/* ==========================================================
   Paper-fold project overlay — 3-panel brochure
   Center panel grows out of the iPhone screen, then left/right
   flaps unfold from behind it.
   ========================================================== */
.fold-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  perspective: 2400px;
  perspective-origin: 50% 50%;
}
.fold-overlay[aria-hidden="false"] { pointer-events: auto; }

.fold-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 35%, rgba(15,41,68,0.55), rgba(10,28,48,0.94));
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.05s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.fold-overlay.is-open .fold-backdrop { opacity: 1; }

.fold-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1100px, 94vw);
  height: min(640px, 84vh);
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  visibility: hidden;
}
.fold-overlay[aria-hidden="false"] .fold-stage { visibility: visible; }

.fold-paper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* Shared panel chrome */
.fold-panel {
  position: absolute;
  background: var(--bone-0);
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow:
    0 0 0 1px rgba(15,41,68,0.06),
    0 30px 60px -25px rgba(15,41,68,0.45);
}

/* CENTER: middle third — the "spine" with the hero shot */
.fold-panel--center {
  top: 0;
  left: 33.333%;
  width: 33.333%;
  height: 100%;
  z-index: 3;
}

/* LEFT flap: hinged at its right edge — unfolds from behind center to the left */
.fold-panel--left {
  top: 0;
  left: 0;
  width: 33.333%;
  height: 100%;
  transform-origin: right center;
  transform: rotateY(180deg) translateZ(-1px);
  z-index: 2;
}

/* RIGHT flap: hinged at its left edge */
.fold-panel--right {
  top: 0;
  right: 0;
  width: 33.333%;
  height: 100%;
  transform-origin: left center;
  transform: rotateY(-180deg) translateZ(-1px);
  z-index: 2;
}

/* OPEN — flaps rotate out from behind */
.fold-overlay.is-open .fold-panel--left,
.fold-overlay.is-open .fold-panel--right {
  transform: rotateY(0deg) translateZ(0);
  transition: transform 0.85s var(--ease-io) 0.05s;
}

/* CLOSING — flaps fold back behind center */
.fold-overlay .fold-panel--left,
.fold-overlay .fold-panel--right {
  transition: transform 0.55s var(--ease-io) 0s;
}

/* Center panel inner shadows hint at fold seams */
.fold-panel--center::before,
.fold-panel--center::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 28px;
  pointer-events: none;
  z-index: 1;
}
.fold-panel--center::before { left: 0;  background: linear-gradient(90deg, rgba(15,41,68,0.14), transparent); }
.fold-panel--center::after  { right: 0; background: linear-gradient(-90deg, rgba(15,41,68,0.14), transparent); }

/* Decorative vertical seams at the fold lines */
.fold-seam {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  background: linear-gradient(180deg, transparent, var(--rule-2) 20%, var(--rule-2) 80%, transparent);
  transition: opacity 0.4s var(--ease) 0.85s;
}
.fold-overlay.is-open .fold-seam { opacity: 1; }
.fold-seam--l { left: 33.333%; }
.fold-seam--r { right: 33.333%; }

/* === Inner content === */
.fold-panel-inner {
  position: absolute;
  inset: 0;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease) 0.7s;
  overflow-y: auto;
}
.fold-overlay.is-open .fold-panel-inner { opacity: 1; }

.fold-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.fold-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink-0);
  line-height: 1;
  margin-bottom: 14px;
}
.fold-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-1);
  font-style: italic;
}
.fold-section-h {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 12px;
}
.fold-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.fold-list li {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-1);
  padding-left: 14px;
  position: relative;
}
.fold-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 1px;
  background: var(--accent);
}

/* Status row at the bottom of the left panel */
.fold-status-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule-2);
  margin-top: auto;
}
#fold-status {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-1);
  line-height: 1.45;
}
.fold-yearstamp {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
}

/* Center panel: hero shot fills entire panel */
.fold-hero {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bone-1);
  overflow: hidden;
}
.fold-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fold-hero__caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-0);
  background: rgba(15,41,68,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease) 0.5s;
}
.fold-overlay.is-open .fold-hero__caption { opacity: 1; }

/* Screenshot grid (right panel) — compact 2 columns */
.fold-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fold-shot {
  aspect-ratio: 9 / 16;
  background: var(--bone-1);
  border-radius: 8px;
  border: 1px solid var(--rule-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  max-height: 180px;
}

/* Metrics in right panel */
.fold-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.fold-metric {
  text-align: left;
  padding: 12px 10px;
  background: var(--bone-1);
  border-radius: 6px;
}
.fold-metric__n {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.015em;
  line-height: 1;
}
.fold-metric__l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 6px;
  line-height: 1.3;
}

/* CTA */
.fold-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--ink-0);
  color: var(--bone-0);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease);
  border: 1px solid var(--ink-0);
}
.fold-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--ink-0); }

/* Close: simple × in the top-right corner */
.fold-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  color: var(--bone-0);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.4s var(--ease) 0.5s, background 0.2s var(--ease);
}
.fold-close:hover { background: rgba(255,255,255,0.22); }
.fold-overlay.is-open .fold-close { opacity: 1; }

/* During the FLIP morph, side flaps stay folded behind */
.fold-overlay.is-open .fold-stage.fold-stage--starting .fold-panel--left {
  transform: rotateY(180deg) translateZ(-1px) !important;
  transition: none !important;
}
.fold-overlay.is-open .fold-stage.fold-stage--starting .fold-panel--right {
  transform: rotateY(-180deg) translateZ(-1px) !important;
  transition: none !important;
}
.fold-overlay.is-open .fold-stage.fold-stage--starting .fold-panel-inner,
.fold-overlay.is-open .fold-stage.fold-stage--starting .fold-hero__caption,
.fold-overlay.is-open .fold-stage.fold-stage--starting .fold-seam {
  opacity: 0 !important;
  transition: none !important;
}

/* During morph, the center panel IS the iPhone screen — fill the entire stage */
.fold-stage.fold-stage--starting .fold-panel--center {
  left: 0 !important;
  width: 100% !important;
  border-radius: 28px;
  transition: left 0.45s var(--ease-io) 0.5s, width 0.45s var(--ease-io) 0.5s, border-radius 0.4s var(--ease) 0.4s;
}
.fold-overlay.is-open .fold-stage:not(.fold-stage--starting) .fold-panel--center {
  border-radius: 0;
  transition: left 0.45s var(--ease-io), width 0.45s var(--ease-io), border-radius 0.3s var(--ease);
}

body.fold-locked { overflow: hidden; }

/* Mobile: stack vertically */
@media (max-width: 720px) {
  .fold-stage { width: 96vw; height: 90vh; }
  .fold-paper { display: flex; flex-direction: column; }

  .fold-panel--center,
  .fold-panel--left,
  .fold-panel--right {
    position: relative;
    left: auto; right: auto; top: auto;
    width: 100%;
    height: 33.333%;
  }

  .fold-panel--left {
    order: 1;
    transform-origin: bottom center;
    transform: rotateX(-180deg) translateZ(-1px);
  }
  .fold-panel--center { order: 2; }
  .fold-panel--right {
    order: 3;
    transform-origin: top center;
    transform: rotateX(180deg) translateZ(-1px);
  }

  .fold-overlay.is-open .fold-panel--left,
  .fold-overlay.is-open .fold-panel--right {
    transform: rotateX(0deg) translateZ(0);
  }

  .fold-panel-inner { padding: 22px 20px; gap: 14px; }
  .fold-name { font-size: 26px; margin-bottom: 8px; }
  .fold-tagline { font-size: 13px; }
  .fold-shots { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 8px; }
  .fold-shot { aspect-ratio: 9 / 16; max-height: 100px; }
  .fold-seam { display: none; }
  .fold-panel--center::before, .fold-panel--center::after { display: none; }
}
