@font-face {
  font-family: "Wurt Display";
  src: url("/fonts/anton.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --page: #0a0b0c;
  --page-soft: #0f1112;
  --surface: #131617;
  --surface-raised: #181c1e;
  --surface-cool: #11171a;
  --ink: #f2eee5;
  --ink-soft: #d5d1c8;
  --muted: #a3a7a5;
  --muted-dim: #737a7b;
  --line: rgba(237, 235, 226, 0.14);
  --line-strong: rgba(237, 235, 226, 0.28);
  --orange: #ee7136;
  --orange-bright: #ff9560;
  --orange-dim: #a84d2b;
  --steel: #9bb4c1;
  --steel-bright: #c7dae1;
  --display: "Wurt Display", Impact, "Arial Narrow", "Helvetica Neue", sans-serif;
  --body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

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

html {
  min-width: 320px;
  background: var(--page);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--page);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.edit-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 1%, rgba(86, 116, 129, 0.12), transparent 31rem),
    radial-gradient(circle at -5% 31%, rgba(238, 113, 54, 0.08), transparent 27rem),
    linear-gradient(180deg, #0a0b0c 0%, #0c0e0f 45%, #0a0b0c 100%);
}

.edit-page::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 204, 204, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 204, 204, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), transparent 61%);
  pointer-events: none;
}

.edit-page::after {
  position: absolute;
  z-index: -1;
  top: 57rem;
  right: -27rem;
  width: 59rem;
  height: 59rem;
  border: 1px solid rgba(150, 174, 185, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(150, 174, 185, 0.018), 0 0 0 12rem rgba(150, 174, 185, 0.012);
  content: "";
  transform: rotate(-21deg) skewX(-11deg);
  pointer-events: none;
}

.content-width {
  width: min(1240px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 11, 12, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  gap: 28px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  display: block;
  content: "";
}

.brand-mark::before {
  top: 6px;
  left: -5px;
  width: 23px;
  height: 2px;
  background: var(--orange);
  transform: rotate(-29deg);
}

.brand-mark::after {
  top: 1px;
  left: 6px;
  width: 2px;
  height: 12px;
  background: var(--steel);
  transform: rotate(31deg);
}

.brand-mark span {
  top: 4px;
  left: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.brand-dot {
  color: var(--orange);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.site-nav > a:not(.nav-cta) {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav > a:not(.nav-cta):hover,
.site-nav > a:not(.nav-cta):focus-visible {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.095em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-cta {
  min-height: 40px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--page);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--orange-bright);
  box-shadow: 0 10px 25px rgba(238, 113, 54, 0.22);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(46px, 7vw, 112px);
  min-height: 744px;
  padding-top: 88px;
  padding-bottom: 112px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  animation: hero-rise 760ms cubic-bezier(0.22, 0.7, 0.22, 1) both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--steel);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-rule {
  display: inline-block;
  width: 25px;
  height: 2px;
  background: var(--orange);
  box-shadow: 7px 0 0 rgba(238, 113, 54, 0.34);
}

.eyebrow-number {
  color: var(--orange);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p,
figure,
ol {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.008em;
  line-height: 0.97;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(3.45rem, 6.1vw, 6.6rem);
  letter-spacing: -0.012em;
  overflow-wrap: anywhere;
}

h1 span,
h2 span,
h2 em {
  color: var(--orange-bright);
  font-style: normal;
}

h1 span {
  display: inline-block;
  max-width: 100%;
  background: linear-gradient(105deg, var(--orange-bright) 4%, #ffd0b0 47%, var(--steel) 96%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-lede {
  max-width: 536px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  padding: 17px 23px;
}

.button-primary {
  background: var(--orange);
  color: #1b0e08;
  box-shadow: 0 10px 28px rgba(238, 113, 54, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-bright);
  box-shadow: 0 14px 34px rgba(238, 113, 54, 0.3);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink-soft);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--steel);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-direction {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 27px 0 0;
  color: var(--muted-dim);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-direction span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 400;
}

.hero-direction i {
  color: var(--steel);
  font-size: 0.9rem;
  font-style: normal;
}

.hero-figure {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 14px 14px 0;
  animation: hero-rise 900ms 100ms cubic-bezier(0.22, 0.7, 0.22, 1) both;
}

.hero-figure::before,
.hero-figure::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero-figure::before {
  top: 3%;
  right: -5%;
  bottom: 13%;
  left: 7%;
  border: 1px solid rgba(238, 113, 54, 0.37);
  transform: skewY(-6deg);
}

.hero-figure::after {
  top: -6%;
  right: 9%;
  width: 68%;
  height: 116%;
  border: 1px solid rgba(155, 180, 193, 0.26);
  transform: skewX(-13deg) rotate(7deg);
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 236, 229, 0.3);
  background: var(--surface-cool);
  box-shadow: 25px 30px 70px rgba(0, 0, 0, 0.47), inset 0 0 0 8px rgba(3, 6, 7, 0.65);
  transform: perspective(1300px) rotateY(-5deg) rotateX(1.5deg);
}

.hero-frame::before {
  position: absolute;
  z-index: 3;
  inset: 13px;
  border: 1px solid rgba(236, 239, 232, 0.22);
  content: "";
  pointer-events: none;
}

.hero-frame::after {
  position: absolute;
  z-index: 4;
  top: -24%;
  left: 28%;
  width: 12%;
  height: 150%;
  background: linear-gradient(90deg, transparent, rgba(248, 242, 226, 0.11), transparent);
  content: "";
  transform: rotate(19deg);
  animation: frame-shine 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-frame-topline,
.hero-frame-footer,
.timeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: rgba(228, 235, 233, 0.66);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-frame-topline {
  position: relative;
  z-index: 5;
  min-height: 47px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(229, 232, 224, 0.15);
  background: rgba(14, 18, 19, 0.76);
}

.hero-frame-topline span:first-child {
  color: var(--orange-bright);
}

.hero-art-wrap {
  position: relative;
  aspect-ratio: 1.27 / 1;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(54, 67, 71, 0.9), transparent 45%),
    linear-gradient(160deg, #29353a, #0e1517 67%, #0a0d0e);
}

.hero-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.07) brightness(0.82);
  animation: art-drift 12s ease-in-out infinite alternate;
  transform: scale(1.035);
}

.art-vignette,
.art-scanline,
.art-crosshair,
.art-label {
  position: absolute;
  pointer-events: none;
}

.art-vignette {
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 8, 0.46), transparent 28%, transparent 75%, rgba(4, 7, 8, 0.5)),
    linear-gradient(0deg, rgba(4, 7, 8, 0.68), transparent 38%, rgba(4, 7, 8, 0.13));
}

.art-scanline {
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 44%;
  width: 1px;
  background: linear-gradient(180deg, transparent 2%, rgba(233, 238, 231, 0.4) 50%, transparent 98%);
  opacity: 0.52;
  animation: scanline 7s ease-in-out infinite;
}

.art-crosshair {
  z-index: 2;
  width: 22px;
  height: 22px;
  border-color: rgba(244, 235, 219, 0.68);
  border-style: solid;
}

.art-crosshair::after {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange-bright);
  content: "";
}

.art-crosshair-one {
  top: 11%;
  left: 8%;
  border-width: 1px 0 0 1px;
}

.art-crosshair-two {
  right: 8%;
  bottom: 16%;
  border-width: 0 1px 1px 0;
}

.art-label {
  z-index: 2;
  color: rgba(236, 235, 226, 0.68);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.art-label-left {
  top: 31%;
  left: 22px;
  transform: rotate(180deg);
}

.art-label-right {
  right: 21px;
  bottom: 28%;
}

.timeline {
  position: relative;
  z-index: 5;
  padding: 17px 28px 19px;
  border-top: 1px solid rgba(229, 232, 224, 0.14);
  background: #101516;
}

.timeline-head {
  margin-bottom: 12px;
  color: var(--muted-dim);
  font-size: 0.55rem;
}

.timeline-head span:first-child {
  color: var(--steel);
}

.timeline-track {
  position: relative;
  display: flex;
  gap: 3px;
  width: 100%;
  height: 9px;
  margin-top: 4px;
  overflow: hidden;
  background: #1d2426;
}

.timeline-track i,
.timeline-track b {
  display: block;
  height: 100%;
  flex: 0 0 auto;
  border-radius: 1px;
}

.timeline-track-video i:nth-child(1) { width: 18%; background: #a15335; }
.timeline-track-video i:nth-child(2) { width: 24%; background: #c27045; }
.timeline-track-video i:nth-child(3) { width: 29%; background: #a9a093; }
.timeline-track-video i:nth-child(4) { width: 15%; background: #788f99; }
.timeline-track-video b { width: 11%; background: #45565c; }
.timeline-track-audio { height: 5px; opacity: 0.78; }
.timeline-track-audio i:nth-child(1) { width: 22%; background: #49636d; }
.timeline-track-audio i:nth-child(2) { width: 37%; background: #6d8a91; }
.timeline-track-audio i:nth-child(3) { width: 21%; background: #3f5961; }
.timeline-track-audio b { width: 15%; background: #788f99; }

.timeline-playhead {
  position: absolute;
  z-index: 2;
  top: 36px;
  bottom: 16px;
  left: 32%;
  width: 1px;
  background: var(--orange-bright);
  box-shadow: 0 0 13px rgba(255, 149, 96, 0.7);
  animation: playhead 5.5s ease-in-out infinite;
}

.hero-frame-footer {
  position: relative;
  z-index: 5;
  min-height: 44px;
  padding: 0 28px;
  border-top: 1px solid rgba(229, 232, 224, 0.11);
  color: var(--muted-dim);
}

.hero-frame-footer span:first-child {
  color: var(--steel);
}

.signal-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #91d4b0;
  box-shadow: 0 0 0 4px rgba(145, 212, 176, 0.1), 0 0 13px rgba(145, 212, 176, 0.55);
  animation: signal-pulse 2.4s ease-in-out infinite;
}

.hero-figure figcaption {
  margin: 18px 6px 0;
  color: var(--muted-dim);
  font-size: 0.74rem;
  letter-spacing: 0.035em;
}

.spec-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 20, 21, 0.9);
}

.spec-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.spec-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 12px;
  min-height: 88px;
  padding: 16px 22px;
  border-left: 1px solid var(--line);
}

.spec-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.spec-index {
  grid-row: span 2;
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1;
}

.spec-item strong,
.spec-item > span:last-child {
  display: block;
  min-width: 0;
}

.spec-item strong {
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.2;
}

.spec-item > span:last-child {
  margin-top: 6px;
  color: var(--muted-dim);
  font-size: 0.7rem;
  line-height: 1.2;
}

.section-pad {
  padding-top: 156px;
  padding-bottom: 156px;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.77fr) minmax(0, 1.23fr);
  align-items: start;
  gap: clamp(54px, 9vw, 140px);
}

.section-heading h2,
.brief-copy h2,
.principles-intro h2,
.faq-intro h2 {
  color: var(--ink);
  font-size: clamp(3.2rem, 5.6vw, 6.2rem);
}

.section-heading > p:last-child,
.brief-copy > p:not(.eyebrow):not(.fine-note),
.principles-intro > p:last-child {
  max-width: 435px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.workflow-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 59px minmax(0, 1fr) 25px;
  gap: 20px;
  align-items: start;
  min-height: 146px;
  padding: 0 0 29px;
  border-bottom: 1px solid var(--line);
}

.workflow-list li + li {
  padding-top: 29px;
}

.workflow-list li:last-child {
  min-height: auto;
  padding-bottom: 0;
  border-bottom: 0;
}

.workflow-number {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--orange-bright);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.workflow-copy h3,
.principle-row h3 {
  margin: 1px 0 7px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.workflow-copy p,
.principle-row p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.workflow-mark {
  align-self: center;
  color: var(--steel);
  font-size: 1.25rem;
  line-height: 1;
}

.brief-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: clamp(54px, 9vw, 132px);
}

.brief-board {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 495px;
  border: 1px solid rgba(155, 180, 193, 0.28);
  background:
    radial-gradient(circle at 86% 13%, rgba(155, 180, 193, 0.17), transparent 24rem),
    linear-gradient(145deg, #1a2225, #111718 66%, #0c1011);
  box-shadow: 20px 23px 0 rgba(0, 0, 0, 0.29);
}

.brief-board::before {
  position: absolute;
  top: 81px;
  right: -38px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(238, 113, 54, 0.22);
  border-radius: 50%;
  content: "";
  transform: rotate(19deg) skewX(-13deg);
  pointer-events: none;
}

.brief-board::after {
  position: absolute;
  top: -40px;
  left: 55%;
  width: 1px;
  height: 550px;
  background: linear-gradient(180deg, transparent, rgba(218, 229, 229, 0.24), transparent);
  content: "";
  transform: rotate(33deg);
  animation: board-scan 8s ease-in-out infinite;
  pointer-events: none;
}

.brief-board-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(220, 230, 227, 0.15);
  color: var(--muted-dim);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brief-board-top span:first-child {
  color: var(--orange-bright);
}

.brief-board-main {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  max-width: 530px;
  padding: 65px 15% 80px 11%;
}

.board-kicker {
  margin: 0 0 17px;
  color: var(--steel);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.board-prompt {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  line-height: 1.23;
}

.board-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 10px;
  border: 1px solid rgba(222, 231, 229, 0.18);
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
}

.meta-chip-orange {
  border-color: rgba(238, 113, 54, 0.46);
  color: var(--orange-bright);
}

.board-timeline {
  position: relative;
  flex: 0 0 auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  margin: 0 9%;
  height: 54px;
  border-top: 1px solid rgba(231, 235, 225, 0.19);
  border-bottom: 1px solid rgba(231, 235, 225, 0.11);
  pointer-events: none;
}

.board-timeline::before,
.board-timeline::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(231, 235, 225, 0.11);
  content: "";
}

.board-timeline::before { top: 17px; }
.board-timeline::after { top: 36px; }

.board-clip,
.board-audio {
  position: absolute;
  z-index: 1;
  display: block;
  height: 10px;
  border-radius: 1px;
}

.board-clip { top: 4px; background: var(--orange-dim); }
.board-clip-one { left: 0; width: 26%; }
.board-clip-two { left: 29%; width: 34%; background: #987052; }
.board-clip-three { left: 67%; width: 28%; background: #657e87; }
.board-audio { top: 24px; background: #54707a; opacity: 0.86; }
.board-audio-one { left: 8%; width: 40%; }
.board-audio-two { left: 53%; width: 33%; background: #788e92; }

.board-playhead {
  position: absolute;
  z-index: 2;
  top: -8px;
  bottom: -8px;
  left: 61%;
  width: 1px;
  background: var(--orange-bright);
  box-shadow: 0 0 13px rgba(255, 149, 96, 0.66);
  animation: board-playhead 5.7s ease-in-out infinite;
}

.board-note {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1;
  margin: 16px 25px 19px;
  color: var(--muted-dim);
  font-size: 0.64rem;
  letter-spacing: 0.035em;
}

.brief-copy .eyebrow {
  color: var(--steel);
}

.brief-copy h2 span {
  color: transparent;
  background: linear-gradient(105deg, var(--orange-bright), var(--steel-bright));
  background-clip: text;
  -webkit-background-clip: text;
}

.fine-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 405px;
  margin: 28px 0 0;
  color: var(--muted-dim);
  font-size: 0.74rem;
  line-height: 1.55;
}

.fine-note-mark {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 1.05rem;
  line-height: 1.1;
}

.principles-section {
  display: grid;
  grid-template-columns: minmax(255px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(55px, 9vw, 140px);
}

.principles-list {
  border-top: 1px solid var(--line);
}

.principle-row {
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr) 25px;
  gap: 22px;
  align-items: start;
  padding: 28px 0 31px;
  border-bottom: 1px solid var(--line);
}

.principle-code {
  color: var(--orange);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.5;
}

.principle-arrow {
  color: var(--steel);
  font-size: 1.16rem;
  line-height: 1;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(55px, 9vw, 140px);
  padding-top: 130px;
  padding-bottom: 150px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 79px;
  padding: 19px 0;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.08;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--orange);
  content: "+";
  font-family: var(--body);
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease;
}

.faq-list details[open] summary {
  color: var(--ink);
}

.faq-list details[open] summary::after {
  color: var(--orange-bright);
  transform: rotate(45deg);
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
  color: var(--ink);
}

.faq-list details p {
  max-width: 630px;
  margin: -2px 46px 23px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.67;
}

.final-cta {
  padding-bottom: 124px;
}

.final-cta-frame {
  position: relative;
  min-height: 355px;
  overflow: hidden;
  padding: clamp(42px, 6vw, 70px);
  border: 1px solid rgba(238, 113, 54, 0.47);
  background:
    radial-gradient(circle at 87% 17%, rgba(238, 113, 54, 0.27), transparent 20rem),
    linear-gradient(125deg, rgba(68, 39, 28, 0.78), transparent 48%),
    linear-gradient(310deg, rgba(42, 60, 66, 0.72), transparent 64%),
    #171819;
  box-shadow: 25px 26px 0 rgba(0, 0, 0, 0.34);
}

.final-cta-frame::before {
  position: absolute;
  z-index: 0;
  inset: 17px;
  border: 1px solid rgba(246, 234, 217, 0.19);
  content: "";
  pointer-events: none;
}

.final-cta-frame::after {
  position: absolute;
  z-index: 0;
  right: -14%;
  bottom: -74%;
  width: 62%;
  height: 170%;
  border: 1px solid rgba(155, 180, 193, 0.28);
  border-radius: 50%;
  content: "";
  transform: rotate(-14deg) skewX(-15deg);
  pointer-events: none;
}

.final-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.final-cta-copy .eyebrow {
  color: #d5d8d0;
}

.final-cta-copy h2 {
  color: var(--ink);
  font-size: clamp(3.15rem, 5.8vw, 6rem);
}

.final-cta-copy h2 span {
  color: var(--ink);
}

.final-cta-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 25px 0 0;
  color: #c9c9c1;
  font-size: 1rem;
  line-height: 1.65;
}

.final-cta-copy .button {
  margin-top: 29px;
}

.button-light {
  background: var(--ink);
  color: var(--page);
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.2);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--orange-bright);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.27);
  transform: translateY(-2px);
}

.final-cta-stamp {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 9%;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(245, 237, 220, 0.55);
  border-radius: 50%;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: 0.09em;
  line-height: 1.05;
  text-align: center;
  transform: translateY(-50%) rotate(9deg);
  animation: stamp-float 6s ease-in-out infinite;
  pointer-events: none;
}

.final-cta-stamp::before,
.final-cta-stamp::after {
  position: absolute;
  width: 11px;
  height: 11px;
  border-color: var(--orange-bright);
  border-style: solid;
  content: "";
}

.final-cta-stamp::before {
  top: 18px;
  left: 17px;
  border-width: 1px 0 0 1px;
}

.final-cta-stamp::after {
  right: 17px;
  bottom: 18px;
  border-width: 0 1px 1px 0;
}

.final-cta-stamp b {
  position: absolute;
  right: 26px;
  bottom: 30px;
  color: var(--orange-bright);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(7, 8, 9, 0.68);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 28px;
  min-height: 112px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted-dim);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
}

.footer-inner nav a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-inner nav a:hover,
.footer-inner nav a:focus-visible {
  color: var(--orange-bright);
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes frame-shine {
  0%, 24% { transform: translateX(-65%) rotate(19deg); opacity: 0; }
  38% { opacity: 1; }
  64%, 100% { transform: translateX(650%) rotate(19deg); opacity: 0; }
}

@keyframes art-drift {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-0.8%, -0.5%, 0); }
}

@keyframes scanline {
  0%, 100% { opacity: 0.22; transform: translateX(-14px); }
  50% { opacity: 0.68; transform: translateX(23px); }
}

@keyframes playhead {
  0%, 12% { left: 25%; }
  50% { left: 73%; }
  86%, 100% { left: 45%; }
}

@keyframes signal-pulse {
  0%, 100% { opacity: 0.58; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes board-scan {
  0%, 21% { transform: translateX(-80px) rotate(33deg); opacity: 0; }
  36% { opacity: 0.9; }
  68%, 100% { transform: translateX(250px) rotate(33deg); opacity: 0; }
}

@keyframes board-playhead {
  0%, 15% { left: 26%; }
  53% { left: 72%; }
  86%, 100% { left: 48%; }
}

@keyframes stamp-float {
  0%, 100% { transform: translateY(-50%) rotate(9deg); }
  50% { transform: translateY(calc(-50% - 8px)) rotate(6deg); }
}

@keyframes stamp-float-mobile {
  0%, 100% { transform: rotate(9deg); }
  50% { transform: translateY(-6px) rotate(6deg); }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 48px;
  }

  .final-cta-frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta-stamp {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    align-self: flex-end;
    margin-top: 34px;
    transform: rotate(9deg);
    animation-name: stamp-float-mobile;
  }

  .hero-frame-topline,
  .hero-frame-footer,
  .timeline {
    padding-right: 21px;
    padding-left: 21px;
  }

  .workflow-section,
  .brief-section,
  .principles-section,
  .faq-section {
    gap: 65px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 14px 19px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 82px;
    padding-bottom: 93px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-figure {
    max-width: 760px;
    margin-right: 2%;
    margin-left: 2%;
  }

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

  .spec-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .section-pad {
    padding-top: 116px;
    padding-bottom: 116px;
  }

  .workflow-section,
  .brief-section,
  .principles-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 57px;
  }

  .section-heading > p:last-child,
  .brief-copy > p:not(.eyebrow):not(.fine-note),
  .principles-intro > p:last-child {
    max-width: 650px;
  }

  .brief-board {
    max-width: 760px;
  }

  .brief-copy {
    max-width: 650px;
  }

  .faq-section {
    padding-top: 105px;
    padding-bottom: 116px;
  }

  .faq-list {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .content-width,
  .header-inner {
    width: min(100% - 34px, 1240px);
  }

  .header-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand action"
      "nav nav";
    align-items: center;
    min-height: 0;
    padding-top: 15px;
    padding-bottom: 14px;
    gap: 13px 0;
  }

  .header-inner > .brand-lockup {
    grid-area: brand;
  }

  .site-nav {
    grid-area: nav;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 17px;
  }

  .site-nav > a:not(.nav-cta) {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  .nav-cta {
    position: absolute;
    top: 15px;
    right: 0;
    min-height: 36px;
    padding: 10px 13px;
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 66px;
    padding-bottom: 75px;
  }

  h1 {
    font-size: clamp(2.55rem, 12.8vw, 4.6rem);
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 0.97rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 280px;
  }

  .button {
    width: 100%;
  }

  .hero-direction {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    margin-top: 22px;
  }

  .hero-direction i {
    display: none;
  }

  .hero-figure {
    margin-right: 0;
    margin-left: 0;
    padding: 8px 8px 0;
  }

  .hero-frame {
    transform: none;
  }

  .hero-frame-topline,
  .hero-frame-footer,
  .timeline {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-frame-topline,
  .hero-frame-footer {
    font-size: 0.49rem;
  }

  .hero-frame-topline span:last-child,
  .hero-frame-footer span:last-child {
    display: none;
  }

  .art-label {
    font-size: 0.48rem;
  }

  .art-label-left { left: 13px; }
  .art-label-right { right: 13px; }

  .timeline-head {
    font-size: 0.48rem;
  }

  .hero-figure figcaption {
    margin-right: 0;
    margin-left: 0;
    font-size: 0.68rem;
  }

  .spec-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .spec-item {
    grid-template-columns: 1fr;
    min-height: 86px;
    padding: 14px 11px;
  }

  .spec-item:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .spec-index {
    grid-row: auto;
    margin-bottom: 8px;
  }

  .spec-item strong {
    font-size: 0.57rem;
  }

  .spec-item > span:last-child {
    font-size: 0.64rem;
  }

  .section-pad {
    padding-top: 89px;
    padding-bottom: 89px;
  }

  .section-heading h2,
  .brief-copy h2,
  .principles-intro h2,
  .faq-intro h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .section-heading > p:last-child,
  .brief-copy > p:not(.eyebrow):not(.fine-note),
  .principles-intro > p:last-child {
    margin-top: 23px;
    font-size: 0.92rem;
  }

  .workflow-section,
  .brief-section,
  .principles-section,
  .faq-section {
    gap: 44px;
  }

  .workflow-list li {
    grid-template-columns: 43px minmax(0, 1fr) 16px;
    gap: 13px;
    min-height: 152px;
    padding-bottom: 23px;
  }

  .workflow-list li + li {
    padding-top: 23px;
  }

  .workflow-list li:last-child {
    min-height: auto;
  }

  .workflow-number {
    width: 39px;
    height: 39px;
    font-size: 0.86rem;
  }

  .workflow-copy h3,
  .principle-row h3 {
    font-size: 1.3rem;
  }

  .workflow-copy p,
  .principle-row p {
    font-size: 0.82rem;
  }

  .brief-board {
    min-height: 435px;
  }

  .brief-board-main {
    padding: 47px 10% 86px;
  }

  .board-prompt {
    font-size: clamp(1.35rem, 6.2vw, 1.9rem);
  }

  .brief-board-top {
    padding-right: 17px;
    padding-left: 17px;
    font-size: 0.5rem;
  }

  .brief-board-top span:last-child {
    display: none;
  }

  .board-note {
    right: auto;
    left: auto;
    margin: 16px 17px 17px;
    font-size: 0.58rem;
  }

  .principle-row {
    grid-template-columns: 58px minmax(0, 1fr) 16px;
    gap: 13px;
    padding-top: 23px;
    padding-bottom: 25px;
  }

  .principle-code {
    font-size: 0.56rem;
  }

  .faq-section {
    padding-top: 88px;
    padding-bottom: 92px;
  }

  .faq-list summary {
    min-height: 69px;
    padding: 16px 0;
    font-size: 1.18rem;
  }

  .faq-list summary::after {
    font-size: 1.24rem;
  }

  .faq-list details p {
    margin-right: 27px;
    margin-bottom: 20px;
    font-size: 0.82rem;
  }

  .final-cta {
    padding-bottom: 78px;
  }

  .final-cta-frame {
    min-height: 440px;
    padding: 38px 25px 30px;
  }

  .final-cta-copy h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .final-cta-copy > p:not(.eyebrow) {
    font-size: 0.9rem;
  }

  .final-cta-copy .button {
    max-width: 270px;
  }

  .final-cta-stamp {
    width: 104px;
    height: 104px;
    font-size: 0.77rem;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    align-self: flex-end;
    margin-top: 34px;
    transform: rotate(9deg);
    animation-name: stamp-float-mobile;
  }

  .final-cta-stamp::before { top: 12px; left: 12px; }
  .final-cta-stamp::after { right: 12px; bottom: 12px; }
  .final-cta-stamp b { right: 18px; bottom: 20px; font-size: 0.8rem; }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding-top: 31px;
    padding-bottom: 31px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-copy,
  .hero-figure {
    opacity: 1;
  }
}
