:root {
  --black: #151515;
  --deep: #0e0e0e;
  --white: #ffffff;
  --cream-text: #f0eae0;
  --muted: #a8a29e;
  --ink: #1c1c1c;
  --graphite: #525252;
  --dark-border: #2a2a2a;
  --light-border: #d8d8d8;
  --flame: #ff5b23;
  --max: 1180px;
  --page-pad: clamp(20px, 5vw, 72px);
  --display: 'Archivo', Arial, sans-serif;
  --body: 'DM Sans', Arial, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--deep);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--deep);
  color: var(--cream-text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

::selection {
  background: var(--flame);
  color: var(--deep);
}

:focus-visible {
  outline: 2px solid var(--flame);
  outline-offset: 4px;
}

.shell {
  width: 100%;
  max-width: 1324px;
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease-out;
}

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

.dark-section { background: var(--deep); color: var(--cream-text); }
.light-section { background: var(--white); color: var(--ink); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(14, 14, 14, .9);
  backdrop-filter: blur(18px);
  transition: background-color 240ms ease-out, border-color 240ms ease-out;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(14, 14, 14, .97);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--cream-text);
  line-height: 1;
}

.brand img {
  width: 138px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.5vw, 38px);
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  padding: 12px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: color 220ms ease-out;
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--white);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.site-footer nav a:hover,
.site-footer nav a:focus-visible { color: var(--white); }

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 12px;
  border: 1px solid var(--flame);
  border-radius: 999px;
  padding: 14px 24px;
  background: var(--flame);
  color: var(--deep);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 240ms ease-out, border-color 240ms ease-out, color 240ms ease-out;
}

.button span {
  font-family: var(--mono);
  font-size: .86em;
}

.button:hover,
.button:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--deep);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--white);
  transition: transform 220ms ease-out;
}

.menu-toggle[aria-expanded='true'] span:nth-last-child(2) { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 72px 0 auto;
  z-index: 99;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: var(--deep);
  padding: 18px var(--page-pad) 26px;
}

.mobile-nav:not([hidden]) { display: grid; }
.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid var(--dark-border);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.mobile-nav a:last-child { color: var(--flame); }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  align-items: center;
  padding: clamp(150px, 18vh, 210px) 0 clamp(70px, 8vh, 100px);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 1px;
  background: rgba(255, 255, 255, .14);
  content: '';
}

.hero-glow {
  position: absolute;
  top: -22%;
  left: 50%;
  z-index: -2;
  width: min(86vw, 1240px);
  height: 92%;
  background: radial-gradient(ellipse at center, rgba(74, 40, 25, .52) 0%, rgba(46, 29, 23, .24) 36%, rgba(14, 14, 14, 0) 70%);
  pointer-events: none;
  transform: translateX(-50%);
  animation: glowDrift 12s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1184px;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow { justify-content: center; }
.eyebrow-dark { color: var(--ink); }

.signal-dot,
.live-signal {
  display: inline-block;
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--flame);
}

.hero h1,
.section-heading h2,
.close h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 980px;
  margin: 28px auto 0;
  color: var(--cream-text);
  font-size: clamp(3.65rem, 9.3vw, 8.7rem);
  line-height: .9;
}

.hero h1 em,
.section-heading h2 em,
.close h2 em {
  color: var(--flame);
  font-style: italic;
  font-weight: 600;
}

.hero-copy {
  max-width: 680px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.55vw, 1.34rem);
  line-height: 1.5;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 38px;
}

.primary-stack {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.primary-stack > span {
  color: #8e8986;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  transition: color 220ms ease-out;
}

.text-link span {
  font-family: var(--mono);
  transition: transform 240ms var(--ease);
}

.text-link:hover span,
.text-link:focus-visible span { transform: translateX(4px); }
.text-link-light { color: var(--cream-text); }
.text-link-light:hover,
.text-link-light:focus-visible { color: var(--white); }
.text-link-dark { color: var(--ink); }
.text-link-dark:hover,
.text-link-dark:focus-visible { color: var(--flame); }

.trust-proof {
  display: flex;
  justify-content: center;
  margin: clamp(52px, 8vh, 84px) auto 0;
}

.trust-line {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: .32em;
  margin: 0;
  color: var(--cream-text);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.trust-window {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.trust-placeholder { visibility: hidden; white-space: nowrap; }

.trust-current {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--flame);
  font-style: italic;
  white-space: nowrap;
  transition: opacity 360ms ease-out, transform 360ms var(--ease);
}

.trust-current.is-changing {
  opacity: 0;
  transform: translateY(.45em);
}

.hero-reveal {
  animation: heroEnter 620ms var(--ease) both;
}

.hero-reveal:nth-child(2) { animation-delay: 80ms; }
.hero-reveal:nth-child(3) { animation-delay: 150ms; }
.hero-reveal:nth-child(4) { animation-delay: 220ms; }
.hero-reveal:nth-child(5) { animation-delay: 290ms; }

.hero-rail {
  position: absolute;
  top: 72px;
  bottom: 0;
  z-index: 1;
  width: 226px;
  overflow: hidden;
  opacity: .82;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 13%, #000 87%, transparent 100%);
}

.hero-rail-left { left: 0; }
.hero-rail-right { right: 0; }

.hero-rail-left::after,
.hero-rail-right::after {
  position: absolute;
  inset: 0;
  content: '';
}

.hero-rail-left::after { background: linear-gradient(to left, transparent 50%, var(--deep) 100%); }
.hero-rail-right::after { background: linear-gradient(to right, transparent 50%, var(--deep) 100%); }

.rolo-item {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  display: grid;
  height: 112px;
  align-content: center;
  opacity: 0;
  will-change: transform, opacity, filter;
}

.rolo-item-left { animation: heroRoloLeft 23s linear infinite; }
.rolo-item-right { animation: heroRoloRight 23s linear infinite; }

.rolo-chip,
.rolo-panel {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(14, 14, 14, .76);
}

.rolo-chip {
  display: flex;
  align-items: center;
  min-height: 54px;
  gap: 10px;
  padding: 10px 13px;
  color: rgba(240, 234, 224, .78);
  font-size: 11px;
  white-space: nowrap;
}

.rolo-chip::before {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--flame);
  content: '';
}

.rolo-panel { padding: 10px 12px 8px; }

.rolo-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 7px;
  color: rgba(240, 234, 224, .84);
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rolo-panel-header::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  content: '';
}

.rolo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding: 5px 0;
  color: rgba(240, 234, 224, .55);
  font-size: 9px;
  white-space: nowrap;
}

.rolo-row span:last-child {
  color: rgba(240, 234, 224, .78);
  font-family: var(--mono);
  font-size: 8.5px;
}

.rolo-panel-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding-top: 7px;
  color: var(--flame);
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rolo-panel-foot::before {
  height: 1px;
  flex: 1;
  background: rgba(255, 91, 35, .46);
  content: '';
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, .65fr) minmax(0, 2.35fr);
  gap: clamp(30px, 6vw, 96px);
  align-items: start;
}

.section-heading h2,
.close h2 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: .96;
}

.section-heading p {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--graphite);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  text-wrap: pretty;
}

.five { padding: clamp(112px, 14vw, 176px) 0 clamp(122px, 14vw, 184px); }

.five .section-heading h2 {
  font-size: clamp(3.4rem, 7vw, 6.35rem);
}

.five .section-heading p {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.five-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  margin-top: clamp(76px, 9vw, 110px);
  border: 1px solid var(--ink);
  isolation: isolate;
}

.five-grid::before {
  position: absolute;
  top: 61px;
  right: 22px;
  left: 22px;
  z-index: 0;
  height: 1px;
  background: #bababa;
  content: '';
}

.five-grid::after {
  position: absolute;
  top: 58px;
  left: 18px;
  z-index: 3;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--flame);
  content: '';
  opacity: 0;
  animation: pipelineHorizontal 7s 1.2s ease-in-out infinite;
}

.five-step {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--ink);
  padding: 28px 20px 24px;
  background: var(--white);
}

.five-step:last-child { border-right: 0; }

.step-top {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 72px;
}

.step-number {
  width: max-content;
  padding-right: 10px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
}

.five-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.25vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -.025em;
}

.step-change {
  display: grid;
  gap: 13px;
}

.step-change div > span {
  color: #777;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.step-change p {
  margin: 5px 0 0;
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.35;
  text-wrap: pretty;
}

.step-change div:last-child p {
  color: var(--ink);
  font-weight: 600;
}

.change-arrow {
  color: var(--flame);
  font-family: var(--mono);
  font-size: 13px;
}

.step-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--flame);
  transform: scaleX(0);
  transform-origin: left;
}

.motion-ready .five-step,
.motion-ready .case-card {
  opacity: 0;
  transform: translateY(12px);
}

.motion-ready .reveal-group.is-visible .five-step,
.motion-ready .reveal-group.is-visible .case-card {
  opacity: 1;
  transform: none;
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
  transition-delay: calc(var(--step) * 90ms);
}

.motion-ready .reveal-group.is-visible .step-line {
  transform: scaleX(1);
  transition: transform 520ms var(--ease);
  transition-delay: calc(150ms + (var(--step) * 90ms));
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(12px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}

.proof { padding: clamp(100px, 12vw, 150px) 0 clamp(110px, 13vw, 160px); }
.section-heading-dark h2 { color: var(--cream-text); }
.section-heading-dark .eyebrow { color: var(--muted); }

.live-signal { animation: quietBlink 2.8s ease-in-out infinite; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(64px, 8vw, 92px);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.case-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 610px;
  flex-direction: column;
  border-right: 1px solid var(--dark-border);
  padding: clamp(24px, 2.5vw, 34px);
  background: var(--deep);
  transition: box-shadow 260ms ease-out;
}

.case-card:first-child { border-left: 1px solid var(--dark-border); }
.case-card:hover,
.case-card:focus-within { box-shadow: inset 0 0 0 1px var(--white); }

.case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.case-header span:last-child { color: var(--flame); }

.case-card h3 {
  margin: 30px 0 0;
  color: var(--cream-text);
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.08;
}

.case-card dl {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
}

.case-card dl > div {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--dark-border);
  padding: 20px 0;
}

.case-card dt {
  color: #85817e;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.case-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-wrap: pretty;
}

.case-card .evidence dd {
  color: var(--cream-text);
  font-family: var(--display);
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
}

.case-card .evidence-confidential dd {
  font-size: clamp(1.7rem, 2.3vw, 2.3rem);
}

.evidence-confidential small {
  display: block;
  margin-top: 9px;
  color: #85817e;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-link {
  display: inline-flex;
  width: max-content;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--flame);
  font-size: 14px;
  font-weight: 700;
  transition: color 220ms ease-out;
}

.case-link span {
  font-family: var(--mono);
  transition: transform 240ms var(--ease);
}

.case-link:hover,
.case-link:focus-visible { color: var(--white); }
.case-link:hover span,
.case-link:focus-visible span { transform: translateX(4px); }

.close {
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: clamp(124px, 13vw, 176px) 0;
}

.close-grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  gap: clamp(64px, 9vw, 132px);
  align-items: center;
}

.close-title > p {
  max-width: 480px;
  margin: 34px 0 0;
  color: var(--graphite);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.start-brief {
  border: 1px solid var(--ink);
  padding: clamp(28px, 3.4vw, 44px);
}

.start-brief-reveal {
  clip-path: inset(0);
}

.motion-ready .start-brief-reveal {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path, opacity;
}

.motion-ready .start-brief.is-brief-visible .start-brief-reveal {
  opacity: 1;
  clip-path: inset(0);
  transition:
    clip-path 980ms var(--ease),
    opacity 180ms ease-out;
}

.start-brief-label {
  margin: 0;
  color: #6c6966;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.start-brief-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--light-border);
  list-style: none;
}

.start-brief-path::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--flame) 0 33.333%, var(--ink) 33.333% 100%);
  transform: scaleX(.333);
  transform-origin: left;
  transition: transform 900ms var(--ease);
}

.motion-ready .start-brief.is-brief-visible .start-brief-path::before {
  transform: scaleX(1);
}

.start-brief-path li {
  position: relative;
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 132px;
  border-right: 1px solid var(--light-border);
  padding: 0 clamp(18px, 2.2vw, 30px);
}

.start-brief-path li::before {
  content: "";
  position: absolute;
  top: -35px;
  left: clamp(18px, 2.2vw, 30px);
  width: 9px;
  height: 9px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--flame);
  opacity: 0;
  transform: scale(.45);
}

.motion-ready .start-brief.is-brief-visible .start-brief-path li::before {
  animation: dotSequence 620ms var(--ease) both;
  animation-delay: calc(var(--dot, 0) * 170ms + 180ms);
}

.start-brief-path li:first-child { padding-left: 0; }
.start-brief-path li:first-child::before { left: 0; }
.start-brief-path li:last-child {
  border-right: 0;
  padding-right: 0;
}
.start-brief-path li:nth-child(1) { --dot: 0; }
.start-brief-path li:nth-child(2) { --dot: 1; }
.start-brief-path li:nth-child(3) { --dot: 2; }

.start-brief-path span {
  color: #6c6966;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.start-brief-path strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.32rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.close-actions {
  margin-top: 38px;
  border-top: 1px solid var(--light-border);
  padding: 30px 2px 2px;
  overflow: clip;
}

.close-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.motion-ready .close-actions .close-buttons {
  opacity: 0;
  transform: translateY(-28px);
  will-change: transform, opacity;
}

.motion-ready .close-actions.is-actions-visible .close-buttons,
.motion-ready .close-actions:focus-within .close-buttons {
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 720ms var(--ease),
    opacity 320ms ease-out;
}

.site-footer {
  border-top: 1px solid var(--dark-border);
  background: var(--deep);
  color: var(--cream-text);
  padding: 58px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: start;
}

.footer-brand img { width: 132px; }
.site-footer p {
  margin: 14px 0 0;
  color: #85817e;
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
}

.site-footer .copyright {
  grid-column: 1 / -1;
  margin-top: 8px;
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@keyframes glowDrift {
  from { transform: translateX(-52%) translateY(-1%); }
  to { transform: translateX(-48%) translateY(3%); }
}

@keyframes heroRoloLeft {
  0% { opacity: 0; filter: blur(1.4px); transform: translate(0, -112px) scale(.84); }
  14% { opacity: .48; }
  50% { opacity: 1; filter: blur(0); transform: translate(22px, 46vh) scale(1.04); }
  86% { opacity: .48; }
  100% { opacity: 0; filter: blur(1.4px); transform: translate(0, 100vh) scale(.84); }
}

@keyframes heroRoloRight {
  0% { opacity: 0; filter: blur(1.4px); transform: translate(0, -112px) scale(.84); }
  14% { opacity: .48; }
  50% { opacity: 1; filter: blur(0); transform: translate(-22px, 46vh) scale(1.04); }
  86% { opacity: .48; }
  100% { opacity: 0; filter: blur(1.4px); transform: translate(0, 100vh) scale(.84); }
}

@keyframes pipelineHorizontal {
  0% { left: 18px; opacity: 0; }
  8%, 90% { opacity: 1; }
  100% { left: calc(100% - 25px); opacity: 0; }
}

@keyframes pipelineVertical {
  0% { top: 22px; opacity: 0; }
  8%, 90% { opacity: 1; }
  100% { top: calc(100% - 29px); opacity: 0; }
}

@keyframes quietBlink {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; }
}

@keyframes dotSequence {
  0% { opacity: .2; transform: scale(.5); }
  55% { opacity: 1; transform: scale(1.5); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 1180px) {
  .hero-rail { display: none; }
}

@media (max-width: 959px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .desktop-nav,
  .header-action { display: none; }
  .menu-toggle { display: block; grid-column: 3; }

  .hero {
    min-height: 0;
    padding: 136px 0 82px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .five-grid { grid-template-columns: 1fr; }
  .five-grid::before {
    top: 24px;
    right: auto;
    bottom: 24px;
    left: 30px;
    width: 1px;
    height: auto;
  }
  .five-grid::after {
    top: 22px;
    left: 27px;
    animation-name: pipelineVertical;
  }

  .five-step {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(180px, .72fr) minmax(0, 1.28fr);
    gap: 34px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
    padding: 26px 28px 26px 58px;
  }

  .five-step:last-child { border-bottom: 0; }
  .step-top { gap: 20px; }
  .step-number { margin-left: -37px; padding: 1px 7px; }
  .step-line {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 3px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }
  .motion-ready .reveal-group.is-visible .step-line { transform: scaleY(1); }
  .step-change { grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }

  .proof-grid { grid-template-columns: 1fr; }
  .case-card {
    min-height: 0;
    border-right: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
  }
  .case-card:last-child { border-bottom: 0; }
  .case-link { margin-top: 24px; }

  .close { min-height: 0; }
  .close-grid { grid-template-columns: 1fr; }
  .close-title > p { max-width: 560px; }
}

@media (max-width: 640px) {
  .header-inner { min-height: 66px; }
  .brand img { width: 132px; height: auto; }
  .mobile-nav { top: 66px; }

  .hero { padding: 122px 0 70px; }
  .hero h1 { margin-top: 24px; font-size: clamp(3.45rem, 15vw, 4.4rem); }
  .hero-copy { margin-top: 28px; font-size: 1.03rem; }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }

  .primary-stack,
  .primary-stack .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-actions .text-link { justify-content: center; }
  .trust-proof { margin-top: 50px; }
  .trust-line { align-items: center; flex-direction: column; gap: 2px; }

  .section-heading h2,
  .close h2 { font-size: clamp(2.8rem, 14vw, 4.1rem); }

  .five,
  .proof,
  .close { padding-top: 88px; padding-bottom: 96px; }

  .five-grid,
  .proof-grid { margin-top: 54px; }

  .five-step {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 24px 24px 26px 52px;
  }

  .step-top { gap: 16px; }
  .step-change { grid-template-columns: 1fr; gap: 9px; }
  .change-arrow { transform: rotate(90deg); transform-origin: center; }
  .five-step h3 { font-size: 1.65rem; }

  .case-card { padding: 24px 20px 28px; }
  .case-card h3 { margin-top: 24px; }
  .case-card dl { margin-top: 26px; }

  .close-grid { gap: 48px; }
  .close-title > p { margin-top: 24px; }
  .start-brief { padding: 26px 22px 24px; }
  .start-brief-path {
    grid-template-columns: 1fr;
    margin-top: 24px;
    padding: 0 0 0 28px;
    border-top: 0;
  }
  .start-brief-path::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 3px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--flame) 0 33.333%, var(--ink) 33.333% 100%);
    transform: scaleY(.333);
    transform-origin: top;
  }
  .motion-ready .start-brief.is-brief-visible .start-brief-path::before { transform: scaleY(1); }
  .start-brief-path li,
  .start-brief-path li:first-child,
  .start-brief-path li:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--light-border);
    padding: 22px 0;
  }
  .start-brief-path li:last-child { border-bottom: 0; }
  .start-brief-path li::before,
  .start-brief-path li:first-child::before {
    top: 27px;
    left: -29px;
  }
  .start-brief-path strong { font-size: 1.45rem; }
  .close-actions { margin-top: 20px; padding-top: 24px; }
  .close-buttons { align-items: stretch; flex-direction: column; }
  .close-buttons .button,
  .close-buttons .text-link { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer nav { justify-content: flex-start; gap: 18px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .hero-reveal,
  .motion-ready .reveal,
  .motion-ready .five-step,
  .motion-ready .case-card {
    opacity: 1 !important;
    transform: none !important;
  }
  .motion-ready .start-brief-reveal,
  .motion-ready .close-actions .close-buttons {
    opacity: 1 !important;
    clip-path: inset(0) !important;
    transform: none !important;
  }
  .rolo-item { display: none; }
  .trust-current { transition: none !important; }
  .five-grid::after { display: none; }
  .step-line { transform: none !important; }
}
