:root {
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --blue-soft: #eef3fb;
  --blue-softer: #f4f7fc;
  --text: #0f172a;
  --text-muted: #5b6778;
  --bg: #f7f9fc;
  --card: #ffffff;
  --border: #e4eaf2;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 14px 36px rgba(37, 99, 235, 0.06);
  --shadow-hover: 0 8px 28px rgba(15, 23, 42, 0.08), 0 18px 40px rgba(37, 99, 235, 0.1);

  --container: 1260px;
  --gutter: clamp(24px, 5vw, 72px);
  --radius: 16px;
  --radius-lg: 24px;
  --header-h: 4.5rem;

  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.6rem);
}

body.lightbox-open {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
  color: var(--text);
}

p {
  margin: 0;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--text);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-blue {
  color: var(--blue);
}

.icon-arrow {
  width: 1.05rem;
  height: 1.05rem;
  transition: transform 0.22s ease;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(247, 249, 252, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.wordmark:hover {
  text-decoration: none;
}

.wordmark .icon {
  color: var(--blue);
  width: 1.25rem;
  height: 1.25rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.site-nav a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.48rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  color: var(--text) !important;
}

.nav-cta:hover,
.nav-cta.is-active {
  border-color: var(--blue);
  color: var(--blue) !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.92rem 1.3rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:hover .icon-arrow {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
  background: var(--blue-hover);
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
  background: var(--card);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: #c5d0de;
}

.btn-lg {
  padding: 1.05rem 1.55rem;
  font-size: 1.05rem;
}

/* HERO */

.hero {
  padding: 4.5rem 0 2.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 4.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(54px, 6vw, 82px);
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.hero-role {
  margin-top: 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: var(--text);
}

.nowrap {
  white-space: nowrap;
}

.hero-copy {
  margin-top: 1.4rem;
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-portrait {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  max-height: 34rem;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}

/* RESULTS BAR */

.hero-results {
  padding: 0.5rem 0 4.5rem;
}

.results-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.results-bar .stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.7rem 1.8rem;
}

.results-bar .stat + .stat {
  border-left: 1px solid var(--border);
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  flex-shrink: 0;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.1vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.stat-label {
  margin-top: 0.28rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CASE STUDIES */

.work {
  padding: 1.5rem 0 4.5rem;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3.25rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.5rem 2.4rem;
}

.case-study + .case-study {
  margin-top: 2.75rem;
}

.case-study-flip {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.case-study-flip .case-copy {
  order: 2;
}

.case-study-flip .case-media {
  order: 1;
}

.case-title {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.account-logo {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  overflow: hidden;
  background: #0b0d10;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.account-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.account-logo.logo-gl {
  background: #fff;
}

.account-logo.logo-mm img {
  transform: scale(1.08);
}

.account-logo.logo-wg img {
  transform: scale(1.04);
}

.case-study h2 {
  font-size: clamp(1.85rem, 2.4vw, 2.35rem);
  font-weight: 800;
}

.case-intro {
  margin-top: 1.15rem;
  color: var(--text-muted);
  max-width: 38rem;
  font-size: 1.05rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

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

.metric {
  background: var(--blue-softer);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.05rem 1rem 1.1rem;
}

.metric .icon {
  margin-bottom: 0.5rem;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.metric-label {
  margin-top: 0.22rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.case-aside {
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.case-study h3 {
  margin-top: 1.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.did-list {
  list-style: none;
  margin-top: 0.7rem;
}

.did-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.68rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.did-list li:last-child {
  border-bottom: 0;
}

.did-list .icon {
  margin-top: 0.18rem;
}

.case-copy .btn {
  margin-top: 1.7rem;
}

.case-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 0.75rem;
  align-items: start;
  min-height: 28rem;
}

.shot {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  background: #0f1115;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shot img {
  width: 100%;
}

.shot-primary {
  position: relative;
  z-index: 2;
  margin-right: -6%;
}

.shot-secondary {
  position: relative;
  z-index: 1;
  margin-top: 2.6rem;
}

.shot:hover {
  transform: scale(1.02);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
  z-index: 3;
}

/* SECTIONS */

.section {
  padding: 5.5rem 0;
}

.section-tint {
  background: var(--blue-softer);
}

.section-head {
  margin-bottom: 2.1rem;
}

.section h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.section-kicker {
  margin-top: 0.7rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.result-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.7rem 1.6rem 1.8rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #d4deea;
}

.result-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.result-head img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  object-fit: cover;
  background: #111;
  border: 1px solid var(--border);
}

.result-head h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.result-metrics .icon {
  margin-bottom: 0.4rem;
}

.result-note {
  margin-top: 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.result-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.95rem;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 600;
}

.result-proof:hover {
  text-decoration: none;
}

.result-proof .icon-arrow {
  width: 0.9rem;
  height: 0.9rem;
}

.result-proof:hover .icon-arrow {
  transform: translateX(3px);
}

/* PROCESS */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 2.35rem;
  left: 6%;
  right: 6%;
  height: 1px;
  background: #d7e2ef;
  z-index: 0;
}

.steps li {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.45rem 1.25rem 1.55rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.2rem;
  right: -0.7rem;
  width: 8px;
  height: 8px;
  border-top: 2px solid #9eb1c9;
  border-right: 2px solid #9eb1c9;
  transform: rotate(45deg);
  z-index: 2;
}

.steps li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #d4deea;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.step-num {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
}

.step-icon .icon {
  width: 1.22rem;
  height: 1.22rem;
}

.steps h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.steps p {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* PROOF */

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.proof-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.55rem 1.45rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.proof-card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #d4deea;
}

.proof-card:hover .icon-arrow {
  transform: translateX(4px);
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  flex-shrink: 0;
}

.proof-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  flex: 1;
}

.proof-copy strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.proof-copy span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.proof-card .icon-arrow {
  color: var(--text-muted);
}

/* CONTACT */

.contact {
  padding-top: 4.5rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 3rem;
  align-items: center;
  background: var(--blue-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 3.1rem;
}

.contact h2 {
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 0.7rem;
}

.contact-role {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.contact-note {
  margin-top: 0.9rem;
  color: var(--text-muted);
}

.contact-details {
  list-style: none;
  margin-top: 1.5rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
}

.contact-details a {
  color: var(--text);
  overflow-wrap: anywhere;
}

.contact-details a:hover {
  color: var(--blue);
}

.site-footer {
  padding: 1.6rem 0 2.2rem;
}

.footer-inner {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-inner p {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-inner .icon {
  color: var(--blue);
  width: 1rem;
  height: 1rem;
}

/* MOTION */

.hero-in {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0ms);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .hero-grid,
  .case-study,
  .case-study-flip {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .hero-role {
    max-width: none;
  }

  .case-study-flip .case-copy,
  .case-study-flip .case-media {
    order: initial;
  }

  .hero-portrait {
    max-width: 28rem;
  }

  .case-media {
    min-height: 0;
    max-width: 44rem;
  }
}

@media (max-width: 900px) {
  .results-grid,
  .proof-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .steps::before,
  .steps li::after {
    display: none;
  }

  .results-bar .stat + .stat {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .case-media {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .shot-primary,
  .shot-secondary {
    margin: 0;
  }

  .case-study {
    padding: 1.7rem 1.35rem;
  }

  .contact-panel {
    padding: 2rem 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 3.25rem;
  }
}

@media (max-width: 640px) {
  .hero-portrait {
    max-width: 22rem;
    margin-inline: auto;
  }

  .hero-portrait img {
    max-height: 26rem;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 1.0625rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }

  .site-nav.is-open {
    display: flex;
    box-shadow: 0 18px 28px rgba(16, 24, 40, 0.06);
  }

  .site-nav a {
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 0;
    padding: 0.9rem 0.25rem;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
    text-align: left;
    color: var(--text-muted) !important;
  }

  body.nav-open {
    overflow: hidden;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .case-media {
    grid-template-columns: 1fr;
    max-width: 26rem;
  }

  .shot-primary,
  .shot-secondary {
    margin: 0;
  }

  .shot-secondary {
    margin-top: 1rem;
  }

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

  .metric-grid,
  .metric-grid-3,
  .result-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .metric-grid-3 .metric:first-child {
    grid-column: 1 / -1;
  }

  .work {
    padding-bottom: 2.5rem;
  }

  .hero-results {
    padding-bottom: 2.75rem;
  }
}

/* PROOF PAGES */

.proof-page {
  padding: 2.5rem 0 5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.back-link:hover {
  color: var(--blue);
  text-decoration: none;
}

.back-link .icon {
  transform: rotate(180deg);
}

.proof-hero {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.2rem 2.2rem 2.3rem;
  margin-bottom: 2.5rem;
}

.proof-index-hero {
  padding: 1.45rem 1.8rem 1.5rem;
  margin-bottom: 1.35rem;
}

.proof-index-hero .proof-lede {
  margin-top: 0.45rem;
}

.proof-hero .case-title {
  margin-bottom: 1.1rem;
}

.proof-hero h1 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
}

.proof-lede {
  margin-top: 1.2rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.proof-hero .metric-grid {
  margin-top: 1.4rem;
}

.proof-page h2 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin-bottom: 1.3rem;
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.proof-shot {
  margin: 0;
  cursor: zoom-in;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.proof-shot:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #d4deea;
}

.proof-shot img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  object-position: top center;
  background: #0f1115;
}

.proof-shot figcaption {
  padding: 0.9rem 1rem 1.05rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.proof-drive {
  margin-top: 2.4rem;
}

.evidence-index {
  display: grid;
  gap: 0.9rem;
}

.evidence-row {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1.15fr) minmax(0, 1.2fr) auto;
  gap: 1rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0.95rem 1.25rem;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.evidence-row:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #c5d4e8;
}

.evidence-row strong {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.evidence-row .evidence-metric {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.evidence-row .icon-arrow {
  color: var(--text-muted);
  transition: transform 0.22s ease, color 0.22s ease;
}

.evidence-row:hover .icon-arrow {
  color: var(--blue);
  transform: translateX(4px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  background: rgba(10, 14, 22, 0.82);
  padding: 3.5rem 1.5rem 1.5rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(920px, 100%);
  max-height: calc(100vh - 9rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  max-width: min(40rem, calc(100% - 2rem));
  color: #e8eef7;
  text-align: center;
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .proof-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .evidence-row {
    grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  }

  .evidence-row .account-logo {
    grid-row: 1 / span 2;
  }

  .evidence-row strong {
    grid-column: 2;
  }

  .evidence-row .evidence-metric {
    grid-column: 2;
    grid-row: 2;
  }

  .evidence-row .icon-arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 640px) {
  .hero-title-break {
    display: none;
  }

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

  .proof-shot img {
    height: 26rem;
  }

  .proof-hero {
    padding: 1.5rem 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-in,
  .js .reveal,
  .btn,
  .icon-arrow,
  .shot,
  .result-card,
  .proof-card,
  .proof-shot,
  .evidence-row,
  .steps li,
  .nav-toggle span,
  .site-header {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
