:root {
  --ink: #161514;
  --ink-soft: #5b5650;
  --paper: #f7f5ef;
  --white: #fffdf8;
  --line: rgba(22, 21, 20, 0.13);
  --line-dark: rgba(255, 253, 248, 0.18);
  --forest: #17473f;
  --teal: #2f8f83;
  --blue: #3a6f91;
  --clay: #b95f47;
  --gold: #d4a84e;
  --plum: #6f5875;
  --shadow: 0 24px 80px rgba(22, 21, 20, 0.2);
  --radius: 8px;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

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

.site-header {
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.desktop-nav,
.header-actions,
.hero-actions,
.menu-actions,
.cta-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 16px;
  padding: 8px 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  padding: 5px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(178, 224, 162, 0.32), rgba(11, 17, 13, 0.96) 70%),
    #0b110d;
  color: var(--white);
  font: 700 0.78rem/1 "IBM Plex Mono", monospace;
  border: 1px solid rgba(22, 21, 20, 0.34);
  box-shadow:
    0 14px 34px rgba(22, 21, 20, 0.18),
    0 0 0 1px rgba(178, 224, 162, 0.24),
    inset 0 0 0 1px rgba(255, 253, 248, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  filter: saturate(1.08) contrast(1.06) brightness(1.04);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.05rem;
}

.brand-copy span,
.proof-note,
.metric em,
.site-footer {
  color: var(--ink-soft);
}

.brand-copy span {
  font-size: 0.82rem;
}

.hero-identity {
  width: fit-content;
  margin-bottom: 24px;
  padding: 10px 18px 10px 10px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 253, 248, 0.82);
  background: rgba(10, 17, 13, 0.48);
  border: 1px solid rgba(178, 224, 162, 0.26);
  border-radius: 999px;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  font: 800 0.82rem/1 "IBM Plex Mono", monospace;
}

.hero-identity img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow:
    0 0 0 1px rgba(255, 253, 248, 0.24),
    0 0 22px rgba(178, 224, 162, 0.14);
}

.desktop-nav {
  gap: 18px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink-soft);
}

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

.header-actions {
  gap: 14px;
}

.nav-cta {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--teal);
}

.menu-button {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(22, 21, 20, 0.14);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(246, 243, 235, 0.9));
  display: none;
  place-items: center;
  color: var(--ink);
  cursor: pointer;
  box-shadow:
    0 12px 34px rgba(22, 21, 20, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.menu-button:hover,
.menu-button:focus-visible,
.menu-close:hover,
.menu-close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 143, 131, 0.34);
  box-shadow:
    0 16px 42px rgba(22, 21, 20, 0.13),
    0 0 0 4px rgba(47, 143, 131, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  outline: 0;
}

.menu-icon,
.close-icon {
  position: relative;
  width: 26px;
  height: 26px;
  display: block;
}

.menu-icon::before,
.menu-icon::after,
.close-icon::before,
.close-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.menu-icon::before,
.menu-icon::after {
  width: 25px;
  height: 2px;
}

.menu-icon::before {
  top: 7px;
  box-shadow: 0 6px 0 currentColor;
}

.menu-icon::after {
  top: 19px;
  width: 17px;
  left: calc(50% + 4px);
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(22, 21, 20, 0.72);
  padding: 20px;
}

.menu-panel {
  margin-left: auto;
  width: min(420px, 100%);
  height: 100%;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 0 0 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.menu-top {
  width: min(100% - 32px, 1180px);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.menu-brand {
  min-width: 0;
}

.menu-brand .brand-copy {
  min-width: 0;
}

.menu-close {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(22, 21, 20, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 243, 235, 0.92));
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow:
    0 12px 34px rgba(22, 21, 20, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  flex: 0 0 auto;
}

.close-icon::before,
.close-icon::after {
  top: 12px;
  width: 25px;
  height: 2.5px;
}

.close-icon::before {
  transform: translateX(-50%) rotate(45deg);
}

.close-icon::after {
  transform: translateX(-50%) rotate(-45deg);
}

.menu-links {
  width: min(100% - 32px, 1180px);
  display: grid;
  gap: 12px;
  margin: 28px auto 34px;
}

.menu-links a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.menu-actions {
  width: min(100% - 32px, 1180px);
  margin-right: auto;
  margin-left: auto;
  margin-top: auto;
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
}

.hero {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(22, 21, 20, 0.92), rgba(23, 71, 63, 0.88) 52%, rgba(58, 111, 145, 0.78)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1600&q=80") center / cover no-repeat,
    #161514;
  overflow: hidden;
}

.hero-grid {
  width: min(1180px, calc(100% - 32px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.9fr);
  gap: 58px;
  align-items: center;
  padding: 74px 0;
}

.eyebrow {
  margin: 0 0 16px;
  font: 700 0.78rem/1.2 "IBM Plex Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero .eyebrow,
.dark .eyebrow,
.image-proof .eyebrow,
.final-cta .eyebrow {
  color: #9fd8ca;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  max-width: 860px;
  font-size: 5.8rem;
  font-weight: 900;
}

.hero-lead {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: 1.3rem;
  line-height: 1.5;
  color: rgba(255, 253, 248, 0.82);
}

.thesis-line {
  width: fit-content;
  margin: 22px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.1);
  color: rgba(255, 253, 248, 0.88);
  font: 700 0.9rem/1.35 "IBM Plex Mono", monospace;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(212, 168, 78, 0.24);
}

.button.secondary,
.button.ghost {
  background: rgba(255, 253, 248, 0.1);
  color: var(--white);
  border-color: var(--line-dark);
}

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.proof-note {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero .proof-note {
  color: rgba(255, 253, 248, 0.66);
}

.hero-media {
  position: relative;
  margin: 0;
  min-height: 610px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 253, 248, 0.18);
  background: #26362f;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 21, 20, 0.08), rgba(22, 21, 20, 0.54));
}

.hero-media figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: 420px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.95rem;
  line-height: 1.5;
}

.floating-proof {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  width: min(300px, calc(100% - 44px));
  padding: 16px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: var(--radius);
  background: rgba(22, 21, 20, 0.62);
  backdrop-filter: blur(14px);
}

.floating-proof span,
.floating-proof em,
.metric span,
.metric em,
.status-badge,
.asset-grid span,
.prompt-grid span,
.proof-card dt,
.technical-drawer summary {
  font: 700 0.76rem/1.35 "IBM Plex Mono", monospace;
}

.floating-proof strong {
  font-size: 1.45rem;
}

.floating-proof em {
  color: rgba(255, 253, 248, 0.7);
  font-style: normal;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.proof-strip {
  padding: 22px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  min-height: 154px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.metric span,
.metric em {
  color: rgba(255, 253, 248, 0.66);
}

.metric strong {
  font-size: 4rem;
  line-height: 0.9;
}

.section {
  padding: 96px 0;
}

.section.light {
  background: var(--paper);
}

.section.dark,
.image-proof,
.image-backed {
  background: var(--ink);
  color: var(--white);
}

.image-proof,
.image-backed,
.cta-visual {
  position: relative;
  overflow: hidden;
}

.image-proof {
  background:
    linear-gradient(115deg, rgba(22, 21, 20, 0.86), rgba(22, 21, 20, 0.78) 52%, rgba(22, 21, 20, 0.64)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1600&q=80") center / cover no-repeat,
    var(--ink);
}

.image-proof::before,
.image-backed::before,
.cta-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.image-proof::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(159, 216, 202, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(22, 21, 20, 0.02), rgba(22, 21, 20, 0.28));
}

.image-proof > .wrap,
.image-backed > .wrap,
.cta-visual > .wrap {
  position: relative;
  z-index: 1;
}

.case-section,
.final-cta {
  background: #fbfaf5;
}

.network-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 245, 239, 0.96)),
    #fbfaf5;
}

.problem-section {
  background:
    linear-gradient(180deg, rgba(251, 250, 245, 0.92), rgba(247, 245, 239, 0.98)),
    #fbfaf5;
}

.image-backed {
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.problem-visual {
  background-image:
    linear-gradient(115deg, rgba(22, 21, 20, 0.86), rgba(23, 71, 63, 0.74) 58%, rgba(58, 111, 145, 0.58)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
}

.case-visual {
  background-image:
    linear-gradient(115deg, rgba(22, 21, 20, 0.88), rgba(22, 21, 20, 0.73) 50%, rgba(23, 71, 63, 0.62)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1600&q=80");
}

.cta-visual {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(22, 21, 20, 0.9), rgba(22, 21, 20, 0.76) 55%, rgba(23, 71, 63, 0.62)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80") center / cover no-repeat,
    var(--ink);
}

.image-backed::before,
.cta-visual::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(159, 216, 202, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.03), rgba(22, 21, 20, 0.22));
}

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

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.split-intro p,
.proof-card p,
.cta-copy p,
.technical-drawer,
.section-heading p,
.anatomy-grid span {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.dark .split-intro p,
.image-proof p,
.image-backed .split-intro p,
.lane-card p {
  color: rgba(255, 253, 248, 0.72);
}

.image-backed .eyebrow {
  color: #9fd8ca;
}

.image-backed .problem-grid article {
  background: rgba(255, 253, 248, 0.1);
  border-color: rgba(255, 253, 248, 0.2);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.image-backed .problem-grid strong {
  color: var(--white);
}

.image-backed .problem-grid span {
  color: rgba(255, 253, 248, 0.74);
}

.case-section.image-backed .proof-card {
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.case-section.image-backed .proof-card h3,
.case-section.image-backed .proof-card dt,
.case-section.image-backed .proof-card dd {
  color: var(--ink);
}

.case-section.image-backed .proof-card p {
  color: var(--ink-soft);
}

.case-section.image-backed .proof-card dl div {
  background: rgba(22, 21, 20, 0.055);
}

.case-section.image-backed .proof-card dd {
  color: var(--forest);
}

.case-section.image-backed .proof-card a {
  color: #08766a;
}

.case-section.image-backed .proof-photo {
  border: 1px solid rgba(255, 253, 248, 0.2);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.case-section.image-backed .proof-photo img {
  opacity: 0.92;
}

.section h2 {
  font-size: 4rem;
  font-weight: 900;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.path-grid,
.problem-grid,
.deliverable-grid,
.network-grid {
  display: grid;
  gap: 14px;
}

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

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

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

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

.capability-grid article,
.path-card,
.problem-grid article,
.deliverable-grid article,
.network-grid article,
.lane-card,
.proof-card,
.anatomy-grid article,
.asset-grid article,
.prompt-grid article {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.capability-grid article,
.deliverable-grid article {
  min-height: 226px;
  padding: 22px;
  background: var(--white);
  display: grid;
  align-content: space-between;
  box-shadow: 0 12px 40px rgba(22, 21, 20, 0.05);
}

.network-grid article {
  min-height: 330px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(240, 238, 231, 0.92));
  box-shadow: 0 16px 48px rgba(22, 21, 20, 0.07);
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.network-grid h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.05;
}

.network-grid p,
.network-note {
  color: var(--ink-soft);
  line-height: 1.6;
}

.network-grid p {
  margin: 0;
  font-size: 1rem;
}

.network-grid a {
  width: fit-content;
  font-weight: 900;
  color: var(--teal);
}

.network-note {
  margin-top: 18px;
  font-size: 0.94rem;
}

.live-site-section {
  border-top: 1px solid var(--line);
}

.live-site-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.live-site-grid a {
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(240, 238, 231, 0.94));
  display: grid;
  align-content: space-between;
  gap: 16px;
  box-shadow: 0 14px 42px rgba(22, 21, 20, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.live-site-grid a:hover,
.live-site-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 143, 131, 0.34);
  box-shadow:
    0 22px 58px rgba(22, 21, 20, 0.11),
    0 0 0 4px rgba(47, 143, 131, 0.06);
  outline: 0;
}

.live-site-grid span {
  width: fit-content;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(47, 143, 131, 0.1);
  color: #07584b;
  font: 800 0.68rem/1 "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.live-site-grid strong {
  margin-top: 8px;
  font-size: 1.28rem;
  line-height: 1.1;
}

.live-site-grid em {
  color: var(--ink-soft);
  font-style: normal;
  line-height: 1.42;
}

.live-site-grid .product-link {
  background:
    linear-gradient(145deg, rgba(212, 168, 78, 0.22), rgba(255, 253, 248, 0.96));
}

.live-site-grid .product-link span {
  color: #755018;
  background: rgba(212, 168, 78, 0.22);
}

.path-card {
  min-height: 430px;
  padding: 28px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(240, 238, 231, 0.92));
  box-shadow: 0 18px 54px rgba(22, 21, 20, 0.08);
}

.path-card.product {
  background:
    linear-gradient(135deg, rgba(47, 143, 131, 0.14), rgba(255, 253, 248, 0.96));
}

.path-card span,
.capability-grid span,
.deliverable-grid span {
  font: 700 0.78rem/1 "IBM Plex Mono", monospace;
  color: var(--clay);
}

.path-card span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
}

.capability-grid h3,
.path-card h3,
.deliverable-grid h3,
.proof-card h3,
.lane-card h3 {
  margin: 0;
  font-size: 1.36rem;
  line-height: 1.13;
}

.path-card h3 {
  max-width: 620px;
  font-size: 2.35rem;
}

.capability-grid p,
.path-card p,
.deliverable-grid p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.path-card .button {
  width: fit-content;
}

.path-card .button.ghost {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.64);
}

.problem-grid article {
  min-height: 250px;
  padding: 26px;
  display: grid;
  align-content: space-between;
  background: var(--white);
  box-shadow: 0 14px 46px rgba(22, 21, 20, 0.06);
}

.problem-grid strong {
  font-size: 2.25rem;
  line-height: 1;
}

.problem-grid span {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.55;
}

.deliverable-grid article {
  min-height: 260px;
}

.media-banner {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  position: relative;
  min-height: 360px;
}

.media-banner img {
  width: 100%;
  aspect-ratio: 16 / 6;
  min-height: 360px;
  object-fit: cover;
}

.media-banner figcaption,
.proof-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 520px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(22, 21, 20, 0.66);
  backdrop-filter: blur(12px);
  font-size: 0.92rem;
  line-height: 1.45;
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.lane-card {
  min-height: 430px;
  padding: 28px;
  background: rgba(255, 253, 248, 0.07);
  border-color: rgba(255, 253, 248, 0.16);
  display: flex;
  flex-direction: column;
}

.lane-card.accent {
  background: linear-gradient(135deg, rgba(47, 143, 131, 0.2), rgba(111, 88, 117, 0.18));
}

.lane-label {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(159, 216, 202, 0.12);
  color: #9fd8ca;
  font: 700 0.74rem/1 "IBM Plex Mono", monospace;
}

.lane-card h3 {
  font-size: 2rem;
}

.lane-card .button {
  width: fit-content;
  margin-top: 18px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
}

.pill-row span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.proof-media-stack {
  display: grid;
  gap: 12px;
}

.proof-photo {
  position: relative;
  margin: 0;
  min-height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #23211f;
}

.proof-photo img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 54%;
}

.proof-photo-secondary img {
  aspect-ratio: 16 / 9;
  object-position: center 52%;
}

.proof-photo-secondary-mobile {
  display: none;
}

@media (min-width: 1041px) {
  .proof-layout {
    align-items: stretch;
  }

  .proof-media-stack {
    height: 100%;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .proof-photo-secondary {
    min-height: 260px;
  }

  .proof-photo-secondary img {
    height: 100%;
    aspect-ratio: auto;
  }
}

.proof-cards {
  display: grid;
  gap: 12px;
}

.proof-card {
  padding: 22px;
  background: var(--white);
  display: grid;
  gap: 14px;
}

.status-badge {
  width: fit-content;
  padding: 7px 9px;
  border-radius: 999px;
}

.status-badge.live {
  color: #07584b;
  background: rgba(47, 143, 131, 0.12);
}

.status-badge.paused {
  color: #755018;
  background: rgba(212, 168, 78, 0.18);
}

.proof-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
}

.proof-card dl div {
  padding: 10px;
  border-radius: var(--radius);
  background: #f0eee7;
}

.proof-card dt {
  color: var(--ink-soft);
}

.proof-card dd {
  margin: 6px 0 0;
  font-weight: 900;
}

.proof-card a {
  width: fit-content;
  font-weight: 900;
  color: var(--teal);
}

.anatomy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.anatomy-grid article {
  min-height: 190px;
  padding: 20px;
  background: var(--white);
  display: grid;
  align-content: space-between;
}

.anatomy-grid strong {
  font-size: 1.12rem;
}

.technical-drawer {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.technical-drawer summary {
  cursor: pointer;
  color: var(--forest);
}

.file-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.file-list span {
  min-height: 48px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f2f0e9;
  font: 700 0.72rem/1.3 "IBM Plex Mono", monospace;
  display: flex;
  align-items: center;
}

.image-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.asset-grid,
.prompt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.asset-grid article,
.prompt-grid article {
  min-height: 210px;
  padding: 20px;
  background: rgba(255, 253, 248, 0.14);
  border-color: rgba(255, 253, 248, 0.25);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  display: grid;
  align-content: space-between;
}

.asset-grid span,
.asset-grid p,
.prompt-grid span,
.prompt-grid p {
  color: rgba(255, 253, 248, 0.72);
}

.asset-grid strong,
.prompt-grid strong {
  font-size: 1.55rem;
  line-height: 1.1;
  color: var(--gold);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(22, 21, 20, 0.72);
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.18);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.cta-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cta-copy {
  padding: 18px;
}

.cta-copy h2 {
  font-size: 4rem;
}

.cta-copy p {
  color: rgba(255, 253, 248, 0.74);
}

.cta-actions {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.86rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--ink);
}

.footer-mark {
  width: 44px;
  height: 44px;
  padding: 4px;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero-grid,
  .split-intro,
  .lane-grid,
  .proof-layout,
  .image-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 58px 0;
  }

  .hero-media,
  .hero-media img {
    min-height: 520px;
  }

  .metric-row,
  .capability-grid,
  .path-grid,
  .problem-grid,
  .network-grid,
  .live-site-grid,
  .anatomy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero h1 {
    font-size: 4.4rem;
  }

  .section h2,
  .cta-copy h2 {
    font-size: 3.3rem;
  }

  .path-card h3,
  .problem-grid strong {
    font-size: 2.05rem;
  }

  .proof-photo img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .proof-media-stack {
    order: 1;
  }

  .proof-cards {
    order: 2;
  }

  .proof-photo-secondary-desktop {
    display: none;
  }

  .proof-photo-secondary-mobile {
    display: block;
    order: 3;
    margin-top: 18px;
  }

  .proof-photo-secondary-mobile img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .nav,
  .wrap,
  .hero-grid,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .brand-copy span {
    display: none;
  }

  .nav {
    min-height: 88px;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    padding: 4px;
  }

  .hero-identity {
    margin-bottom: 18px;
    padding: 8px 12px 8px 8px;
    gap: 10px;
    font-size: 0.7rem;
  }

  .hero-identity img {
    width: 52px;
    height: 52px;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .section h2,
  .cta-copy h2 {
    font-size: 2.35rem;
  }

  .path-card h3,
  .problem-grid strong {
    font-size: 1.85rem;
  }

  .metric strong {
    font-size: 3.2rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 430px;
  }

  .metric-row,
  .capability-grid,
    .path-grid,
    .problem-grid,
    .network-grid,
    .live-site-grid,
    .deliverable-grid,
  .proof-card dl,
  .anatomy-grid,
  .asset-grid,
  .prompt-grid,
  .file-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .media-banner img {
    aspect-ratio: 4 / 3;
  }

  .floating-proof {
    top: 14px;
    left: 14px;
    width: calc(100% - 28px);
  }

  .menu-modal {
    padding: 0;
  }

  .menu-panel {
    border-radius: 0;
  }

  .menu-top,
  .menu-links,
  .menu-actions {
    width: min(100% - 24px, 1180px);
  }

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