:root {
  --ink: #09090b;
  --ink-soft: #111114;
  --panel: #141418;
  --panel-light: #19191f;
  --paper: #f4f1ea;
  --muted: #a4a19a;
  --muted-dark: #8d8981;
  --violet: #a78bfa;
  --violet-bright: #bca7ff;
  --violet-dark: #6d49d8;
  --line: rgba(244, 241, 234, 0.14);
  --line-strong: rgba(244, 241, 234, 0.24);
  --shell: min(1240px, calc(100vw - 40px));
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--violet);
  color: var(--ink);
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

em {
  color: var(--violet-bright);
  font-family: var(--serif);
  font-weight: 400;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 112px;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  height: 88px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--paper);
  gap: 6px;
  line-height: 1;
}

.wordmark-name {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.065em;
}

.wordmark-initial {
  color: var(--violet-bright);
}

.wordmark-media {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.065em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  color: #c8c5be;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--violet);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 43px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta span {
  color: var(--violet-bright);
  font-size: 17px;
}

.nav-cta:hover {
  border-color: var(--violet);
  background: var(--violet);
  color: var(--ink);
}

.nav-cta:hover span {
  color: var(--ink);
}

.nav-toggle {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 12px;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav-toggle-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle-lines {
  display: grid;
  width: 26px;
  gap: 6px;
}

.nav-toggle-lines i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  min-height: 800px;
  padding-top: 180px;
  padding-bottom: 42px;
  overflow: hidden;
  background-image: linear-gradient(rgba(255, 255, 255, 0.036) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.036) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0, transparent 35%, transparent 65%, var(--ink) 100%);
  content: "";
  pointer-events: none;
}

.ambient {
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(30px);
}

.ambient-one {
  top: -80px;
  right: -230px;
  background: radial-gradient(circle, rgba(109, 73, 216, 0.34), rgba(109, 73, 216, 0.06) 47%, transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  min-height: 520px;
  gap: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #c8c5be;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 14px rgba(167, 139, 250, 0.7);
}

.hero h1,
.legal-main h1,
.error-copy h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(57px, 7.3vw, 108px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.89;
}

.hero h1 em,
.legal-main h1 em,
.error-copy h1 em {
  font-size: 0.93em;
  letter-spacing: -0.055em;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 38px;
  color: #bab7b0;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--paper);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--violet-bright);
}

.button-quiet {
  border-color: var(--line-strong);
  color: #cfccc4;
}

.button-quiet:hover {
  border-color: var(--violet);
}

.creative-stack {
  position: relative;
  width: min(100%, 540px);
  height: 520px;
  margin-left: auto;
  perspective: 1200px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 52%;
  border: 1px solid rgba(167, 139, 250, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 510px;
  height: 510px;
}

.orbit-two {
  width: 390px;
  height: 390px;
}

.frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 224px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--ink-soft);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.frame-back {
  z-index: 1;
  padding: 23px;
  background: linear-gradient(165deg, #16161b, #0c0c0e);
  transform: translate(-120%, -45%) rotate(-10deg);
}

.frame-mid {
  z-index: 2;
  padding: 23px;
  background: linear-gradient(155deg, #2b2050, #100f16 60%);
  transform: translate(-26%, -55%) rotate(7deg);
}

.frame-front {
  z-index: 3;
  padding: 14px;
  border-color: rgba(167, 139, 250, 0.48);
  background: #111114;
  transform: translate(-65%, -48%) rotate(-1.5deg);
}

.frame-number,
.frame-label {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.frame-number {
  color: var(--violet);
}

.frame-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--paper);
}

.script-lines {
  display: grid;
  margin-top: 42px;
  gap: 13px;
}

.script-lines i {
  height: 5px;
  border-radius: 20px;
  background: rgba(244, 241, 234, 0.2);
}

.script-lines i:nth-child(2) { width: 72%; }
.script-lines i:nth-child(3) { width: 88%; }
.script-lines i:nth-child(4) { width: 54%; background: var(--violet); }

.generation-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.generation-mark i {
  position: absolute;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(167, 139, 250, 0.55);
  border-radius: 50%;
}

.generation-mark i:nth-child(2) { width: 62px; height: 170px; border-radius: 50%; transform: rotate(35deg); }
.generation-mark i:nth-child(3) { width: 16px; height: 16px; border: 0; background: var(--paper); box-shadow: 0 0 30px var(--violet); }

.frame-topline,
.frame-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9d9aa1;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.edit-canvas {
  position: relative;
  display: grid;
  height: 255px;
  margin: 13px 0 11px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 10px;
  background: radial-gradient(circle at 58% 42%, rgba(167, 139, 250, 0.4), transparent 32%), linear-gradient(140deg, #202026, #0a0a0c);
}

.edit-canvas::before,
.edit-canvas::after {
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 44% 56% 63% 37% / 44% 36% 64% 56%;
  content: "";
  animation: turn 13s linear infinite;
}

.edit-canvas::after {
  width: 90px;
  height: 160px;
  border-color: rgba(244, 241, 234, 0.15);
  animation-direction: reverse;
}

.play-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 47px;
  height: 47px;
  padding-left: 3px;
  place-items: center;
  border: 1px solid rgba(244, 241, 234, 0.5);
  border-radius: 50%;
  color: var(--paper);
  font-size: 13px;
}

.caption-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  padding: 8px 6px;
  border-radius: 4px;
  background: var(--violet);
  color: var(--ink);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.timeline {
  display: flex;
  align-items: end;
  height: 35px;
  gap: 4px;
}

.timeline i {
  flex: 1;
  height: 52%;
  border-radius: 2px;
  background: rgba(244, 241, 234, 0.15);
}

.timeline i:nth-child(2), .timeline i:nth-child(5), .timeline i:nth-child(7) { height: 82%; background: rgba(167, 139, 250, 0.65); }
.timeline i:nth-child(4) { height: 100%; background: var(--violet); }

.hero-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  margin-bottom: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.hero-rail li {
  position: relative;
  padding: 20px 22px 20px 36px;
  color: #aaa79f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-rail li::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
  transform: translateY(-50%);
}

.hero-rail li + li {
  border-left: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
  align-items: start;
  margin-bottom: 62px;
  gap: 40px;
}

.section-heading > div {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.7fr);
  align-items: end;
  gap: 40px;
}

.section-index {
  color: var(--violet-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.statement h2,
.audience h2,
.benefits h2,
.faq h2,
.contact h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.2vw, 75px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.section-heading h2 em,
.statement h2 em,
.audience h2 em,
.benefits h2 em,
.faq h2 em,
.contact h2 em {
  letter-spacing: -0.045em;
}

.section-heading > div > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.services {
  background: #0c0c0f;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 390px;
  padding: 25px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  transition: background 220ms ease, transform 220ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--panel);
  transform: translateY(-5px);
}

.service-card-accent {
  background: linear-gradient(150deg, rgba(167, 139, 250, 0.16), rgba(167, 139, 250, 0.025));
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}

.service-number {
  color: var(--muted-dark);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.service-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--violet-bright);
}

.service-card h3 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -0.035em;
  line-height: 1;
}

.service-card p {
  min-height: 102px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-tag {
  align-self: flex-start;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: #cbc8c0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.statement {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.statement::after {
  position: absolute;
  right: -90px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(9, 9, 11, 0.12);
  border-radius: 50%;
  content: "";
}

.statement .section-index {
  color: #6e4bd4;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1.2fr) minmax(220px, 0.45fr);
  align-items: center;
  gap: 40px;
}

.statement h2 {
  margin-bottom: 35px;
  font-size: clamp(48px, 5.5vw, 82px);
}

.statement h2 em {
  color: #6d49d8;
}

.statement-copy > p {
  max-width: 680px;
  margin-bottom: 0;
  color: #49474a;
  font-size: 17px;
  line-height: 1.7;
}

.ratio-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: 220px;
  aspect-ratio: 9 / 16;
  margin-left: auto;
  padding: 28px 22px;
  grid-template-rows: auto auto auto 1fr;
  border: 1px solid rgba(9, 9, 11, 0.25);
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 18px 20px 0 rgba(109, 73, 216, 0.22);
  transform: rotate(4deg);
}

.ratio-card > span {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.ratio-card > span:last-of-type {
  color: var(--violet-bright);
}

.ratio-card > i {
  width: 100%;
  height: 1px;
  margin-block: 18px;
  background: var(--line-strong);
}

.ratio-card small {
  align-self: end;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
}

.process {
  background: #0c0c0f;
}

.section-heading-compact {
  margin-bottom: 50px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 70px minmax(200px, 0.62fr) minmax(260px, 1fr) 44px;
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid var(--line);
  gap: 25px;
  transition: background 200ms ease, padding 200ms ease;
}

.process-list li:hover {
  padding-inline: 18px;
  background: rgba(167, 139, 250, 0.05);
}

.process-number {
  color: var(--muted-dark);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.process-name {
  display: flex;
  align-items: center;
  gap: 17px;
}

.process-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.58);
}

.process-name h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: -0.035em;
}

.process-list p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.process-arrow,
.process-check {
  justify-self: end;
  color: var(--violet-bright);
  font-size: 21px;
}

.audience {
  overflow: hidden;
  background: linear-gradient(135deg, #1e1736, #100f15 53%, #09090b);
}

.audience::before {
  position: absolute;
  top: -180px;
  left: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(167, 139, 250, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(167, 139, 250, 0.025), 0 0 0 180px rgba(167, 139, 250, 0.018);
}

.audience-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 90px;
}

.audience h2 {
  margin-bottom: 30px;
}

.audience-copy > p:last-child {
  max-width: 530px;
  margin: 0;
  color: #aaa6b3;
  line-height: 1.7;
}

.audience-list {
  border-top: 1px solid rgba(244, 241, 234, 0.17);
}

.audience-list > div {
  display: grid;
  grid-template-columns: 48px 1fr 30px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.17);
  gap: 18px;
}

.audience-list span {
  color: var(--violet-bright);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.audience-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.audience-list i {
  color: var(--violet-bright);
  font-size: 18px;
  font-style: normal;
}

.benefits {
  background: var(--paper);
  color: var(--ink);
}

.benefits-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(460px, 1.15fr);
  gap: 100px;
}

.benefits .eyebrow {
  color: #615f5a;
}

.benefits h2 em {
  color: #6d49d8;
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(9, 9, 11, 0.18);
}

.benefit-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 23px 0;
  border-bottom: 1px solid rgba(9, 9, 11, 0.18);
  gap: 20px;
}

.benefit-list li > span {
  color: #6d49d8;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.benefit-list strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.benefit-list p {
  margin: 0;
  color: #615f5a;
  font-size: 14px;
}

.faq {
  background: #0c0c0f;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading .section-index {
  margin-bottom: 38px;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 88px;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

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

.faq-list summary i {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--violet-bright);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 54px 30px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact {
  min-height: 630px;
  overflow: hidden;
  background: #111015;
}

.contact::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.033) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.033) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
}

.contact-glow {
  position: absolute;
  top: -350px;
  right: -200px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 73, 216, 0.48), rgba(109, 73, 216, 0.1) 42%, transparent 68%);
}

.contact-shell {
  position: relative;
  z-index: 1;
}

.contact-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 40px;
}

.contact h2 {
  font-size: clamp(70px, 10vw, 150px);
  line-height: 0.82;
}

.contact-arrow {
  display: grid;
  width: clamp(100px, 12vw, 165px);
  height: clamp(100px, 12vw, 165px);
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(167, 139, 250, 0.55);
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.09);
  color: var(--violet-bright);
  font-size: clamp(40px, 5vw, 70px);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.contact-arrow:hover {
  background: var(--violet);
  color: var(--ink);
  transform: rotate(45deg);
}

.contact-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
  gap: 40px;
}

.contact-bottom > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

.email-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.email-actions > a {
  border-bottom: 1px solid rgba(167, 139, 250, 0.6);
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.email-actions button {
  min-height: 37px;
  padding-inline: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.email-actions button:hover,
.email-actions button.is-copied {
  border-color: var(--violet);
  color: var(--paper);
}

.site-footer {
  padding: 54px 0 42px;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 1fr;
  align-items: start;
  gap: 30px;
}

.footer-location,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-location span,
.footer-contact span {
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-location strong,
.footer-contact a {
  font-size: 13px;
  font-weight: 500;
}

.footer-contact a:hover,
.footer-meta a:hover {
  color: var(--violet-bright);
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 30px;
}

.footer-meta a:last-child {
  margin-left: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.2, 0.65, 0.3, 1), transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

[data-reveal-delay="1"] { transition-delay: 90ms; }
[data-reveal-delay="2"] { transition-delay: 180ms; }
[data-reveal-delay="3"] { transition-delay: 270ms; }

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes turn {
  to { transform: rotate(360deg); }
}

/* Legal and 404 pages */
.legal-header {
  position: relative;
}

.legal-back {
  min-height: 40px;
}

.legal-main {
  padding-top: 110px;
  padding-bottom: 120px;
}

.legal-main h1 {
  max-width: 900px;
  margin-bottom: 40px;
}

.legal-lead {
  max-width: 730px;
  margin-bottom: 80px;
  color: #bab7b0;
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.55;
}

.legal-content {
  max-width: 900px;
  margin-left: auto;
  border-top: 1px solid var(--line);
}

.legal-content section {
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  gap: 25px;
}

.legal-content section > span {
  color: var(--violet-bright);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.legal-content h2 {
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.legal-content p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-content p a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--violet);
  text-underline-offset: 4px;
}

.legal-updated {
  max-width: 900px;
  margin: 38px 0 0 auto;
  color: var(--muted-dark);
  font-size: 11px;
}

.error-page {
  min-height: 100vh;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

.error-main {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding-block: 40px;
  align-content: space-between;
  overflow: hidden;
}

.error-code {
  position: absolute;
  top: 50%;
  right: -1vw;
  color: rgba(167, 139, 250, 0.13);
  font-family: var(--display);
  font-size: min(43vw, 630px);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.8;
  transform: translateY(-50%);
}

.error-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  padding-top: 170px;
}

.error-copy h1 {
  max-width: 800px;
}

.error-copy > p:not(.eyebrow) {
  max-width: 420px;
  margin-bottom: 30px;
  color: var(--muted);
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
    gap: 25px;
  }

  .creative-stack {
    height: 470px;
    transform: scale(0.88);
    transform-origin: right center;
  }

  .section-heading > div {
    grid-template-columns: 1fr;
  }

  .section-heading > div > p {
    max-width: 560px;
  }

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

  .statement-grid {
    grid-template-columns: minmax(110px, 0.25fr) minmax(0, 1fr) 190px;
  }

  .ratio-card {
    width: 180px;
  }

  .ratio-card > span {
    font-size: 58px;
  }

  .audience-shell,
  .benefits-shell,
  .faq-shell {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .section {
    padding-block: 88px;
  }

  .site-header {
    height: 78px;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    display: flex;
    align-items: stretch;
    gap: 0;
  }

  .js .primary-nav {
    position: fixed;
    inset: 0;
    padding: 120px 20px 35px;
    flex-direction: column;
    visibility: hidden;
    background: rgba(9, 9, 11, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility 0s linear 220ms, opacity 220ms ease, transform 220ms ease;
  }

  .js .nav-open .primary-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .primary-nav > a:not(.nav-cta) {
    display: flex;
    min-height: 72px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 26px;
    letter-spacing: -0.02em;
    text-transform: none;
  }

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

  .primary-nav .nav-cta {
    min-height: 58px;
    margin-top: auto;
    justify-content: space-between;
    padding-inline: 24px;
  }

  .nav-open .nav-toggle-lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-open .nav-toggle-lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 25px;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
    min-width: 0;
  }

  .creative-stack {
    width: 470px;
    max-width: 100%;
    height: 420px;
    margin: 0 auto;
    transform: scale(0.83);
    transform-origin: center top;
  }

  .hero-rail {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -30px;
  }

  .hero-rail li:nth-child(3),
  .hero-rail li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .hero-rail li:nth-child(3) {
    border-left: 0;
  }

  .section-heading,
  .statement-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 25px;
  }

  .section-index {
    margin-bottom: 0;
  }

  .statement-copy {
    max-width: 620px;
  }

  .ratio-card {
    display: none;
  }

  .process-list li {
    grid-template-columns: 48px minmax(160px, 0.55fr) 1fr 25px;
    gap: 15px;
  }

  .audience-shell,
  .benefits-shell,
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .contact-main {
    margin-bottom: 55px;
  }

  .contact-bottom {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .section {
    padding-block: 74px;
  }

  .wordmark {
    gap: 5px;
  }

  .wordmark-name {
    font-size: 26px;
  }

  .wordmark-media {
    font-size: 26px;
  }

  .hero {
    padding-top: 125px;
    padding-bottom: 32px;
    background-size: 55px 55px;
  }

  .hero h1,
  .legal-main h1,
  .error-copy h1 {
    font-size: clamp(50px, 15.7vw, 74px);
    line-height: 0.91;
  }

  .hero-intro {
    margin-bottom: 31px;
    font-size: 16px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    justify-content: space-between;
  }

  .creative-stack {
    width: 440px;
    max-width: none;
    height: 365px;
    margin-inline: auto;
    justify-self: center;
    transform: scale(0.7);
  }

  .hero-rail {
    margin-top: -62px;
  }

  .hero-rail li {
    padding: 16px 8px 16px 25px;
    font-size: 8px;
  }

  .hero-rail li::before {
    left: 9px;
  }

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

  .section-heading > div {
    gap: 25px;
  }

  .section-heading h2,
  .statement h2,
  .audience h2,
  .benefits h2,
  .faq h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

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

  .service-card {
    min-height: 310px;
  }

  .service-card p {
    min-height: auto;
  }

  .statement h2 {
    margin-bottom: 28px;
  }

  .statement-copy > p {
    font-size: 15px;
  }

  .process-list li {
    grid-template-columns: 36px 1fr 20px;
    padding: 24px 0;
    gap: 12px;
  }

  .process-list li:hover {
    padding-inline: 0;
  }

  .process-list p {
    grid-column: 2 / 4;
  }

  .process-arrow,
  .process-check {
    grid-column: 3;
    grid-row: 1;
  }

  .audience-shell,
  .benefits-shell,
  .faq-shell {
    gap: 48px;
  }

  .audience-list > div {
    grid-template-columns: 35px 1fr 18px;
    gap: 10px;
  }

  .audience-list h3 {
    font-size: 19px;
  }

  .benefit-list li {
    grid-template-columns: 40px 1fr;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 17px;
  }

  .contact {
    min-height: 570px;
  }

  .contact h2 {
    font-size: clamp(62px, 19vw, 94px);
  }

  .contact-main {
    align-items: flex-end;
  }

  .contact-arrow {
    width: 76px;
    height: 76px;
    font-size: 34px;
  }

  .email-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .email-actions > a {
    font-size: 19px;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-meta {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-meta a:last-child {
    margin-left: 0;
  }

  .legal-header .legal-back {
    padding-inline: 13px;
    font-size: 9px;
  }

  .legal-main {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .legal-lead {
    margin-bottom: 55px;
  }

  .legal-content section {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }

  .error-code {
    top: 36%;
    font-size: 62vw;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
