:root {
  --ink: #05070b;
  --ink-2: #0b0e14;
  --panel: #111620;
  --panel-2: #171d28;
  --paper: #f5f2eb;
  --paper-bright: #fffdf8;
  --text: #f7f4ed;
  --muted: #969da9;
  --muted-dark: #575e69;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.23);
  --line-dark: rgba(5, 7, 11, 0.15);
  --red: #f0243e;
  --red-hot: #ff3b51;
  --red-deep: #aa0d24;
  --gold: #ffc82e;
  --green: #45e0a4;
  --max: 1360px;
  --gutter: clamp(1.25rem, 4.2vw, 5rem);
  --display: "Helvetica Neue", "Arial Black", "Aptos Display", Arial, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

.reading-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.reading-progress progress {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}

.reading-progress progress::-webkit-progress-bar {
  background: transparent;
}

.reading-progress progress::-webkit-progress-value,
.reading-progress progress::-moz-progress-bar {
  background: linear-gradient(90deg, var(--red), var(--gold));
  box-shadow: 0 0 1rem rgba(255, 200, 46, 0.6);
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  width: min(100%, var(--max));
  min-height: 6.8rem;
  margin: auto;
  padding: 1.5rem var(--gutter);
  align-items: center;
  justify-content: space-between;
  color: var(--text);
}

.site-header::after {
  position: absolute;
  right: var(--gutter);
  bottom: 0;
  left: var(--gutter);
  height: 1px;
  background: var(--line);
  content: "";
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: block;
  width: 1.7rem;
  height: 2.15rem;
  filter: drop-shadow(0 0 0.7rem rgba(240, 36, 62, 0.5));
  transform: skew(-8deg);
}

.brand-mark i,
.brand-mark b,
.brand-mark u {
  position: absolute;
  display: block;
  width: 1.45rem;
  height: 0.72rem;
  background: var(--red);
  content: "";
  text-decoration: none;
  transform: skew(-24deg);
}

.brand-mark i {
  top: 0.12rem;
  left: 0.05rem;
}

.brand-mark b {
  top: 0.74rem;
  right: 0;
  width: 1.05rem;
  background: var(--gold);
}

.brand-mark u {
  right: 0.15rem;
  bottom: 0.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.7rem);
}

.site-nav a {
  position: relative;
  color: inherit;
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.language-link)::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.site-nav .language-link {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
}

.menu-button {
  display: none;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.hero {
  position: relative;
  min-height: min(58rem, 100svh);
  padding: 11.5rem var(--gutter) 6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 38%, rgba(240, 36, 62, 0.2), transparent 24rem),
    radial-gradient(circle at 58% 92%, rgba(255, 200, 46, 0.08), transparent 22rem),
    var(--ink);
  color: var(--text);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  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-position: center;
  background-size: 5rem 5rem;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  border-left: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), transparent 42%);
  content: "";
  transform: skewX(-9deg) translateX(13%);
}

.hero-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.hero-atmosphere i {
  position: absolute;
  right: -8vw;
  width: 50vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 200, 46, 0.5), transparent);
  transform: rotate(-27deg);
  transform-origin: right;
}

.hero-atmosphere i:nth-child(1) { top: 14%; }
.hero-atmosphere i:nth-child(2) { top: 29%; opacity: 0.45; }
.hero-atmosphere i:nth-child(3) { top: 57%; opacity: 0.65; }
.hero-atmosphere i:nth-child(4) { top: 72%; opacity: 0.3; }
.hero-atmosphere i:nth-child(5) { top: 88%; }

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 47rem;
  align-self: center;
}

.eyebrow {
  display: flex;
  margin: 0 0 1.6rem;
  align-items: center;
  gap: 0.8rem;
  color: var(--red-deep);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 1.9rem;
  height: 2px;
  background: currentColor;
  transform: skew(-25deg);
}

.hero .eyebrow,
.eyebrow-light {
  color: var(--gold);
}

.hero h1,
.subhero h1,
.legal-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7.6vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  color: var(--red-hot);
  font-style: normal;
  text-shadow: 0.035em 0.045em 0 var(--gold);
}

.hero-lead {
  max-width: 42rem;
  margin: 2.4rem 0 0;
  color: #b9bec7;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.actions {
  display: flex;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
}

.button {
  display: inline-flex;
  min-height: 3.45rem;
  padding: 0.8rem 1.25rem;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border: 1px solid transparent;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  position: relative;
  background: var(--red);
  color: white;
  box-shadow: 0.55rem 0.55rem 0 var(--gold);
}

.button-primary:hover {
  background: var(--red-hot);
}

.button-quiet {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-capabilities {
  display: flex;
  margin-top: 3.4rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-capabilities span {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  color: #8f96a2;
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  z-index: 2;
  min-height: 36rem;
  align-self: center;
}

.energy-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
}

.energy-ring::after {
  position: absolute;
  top: 50%;
  left: -0.23rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 1rem var(--gold);
  content: "";
}

.energy-ring-one {
  width: 19rem;
  height: 19rem;
}

.energy-ring-two {
  width: 29rem;
  height: 29rem;
  border-color: rgba(240, 36, 62, 0.32);
}

.energy-ring-three {
  width: 39rem;
  height: 39rem;
  border-color: rgba(255, 255, 255, 0.08);
}

.vector-bolt {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15rem;
  height: 28rem;
  -webkit-clip-path: polygon(48% 0, 100% 0, 69% 38%, 100% 38%, 23% 100%, 39% 57%, 0 57%);
  clip-path: polygon(48% 0, 100% 0, 69% 38%, 100% 38%, 23% 100%, 39% 57%, 0 57%);
  transform: translate(-50%, -50%) skew(-7deg);
}

.bolt-shadow {
  z-index: 1;
  background: var(--red);
  filter: blur(1.25rem);
  opacity: 0.7;
  transform: translate(-43%, -45%) skew(-7deg);
}

.bolt-core {
  z-index: 3;
  background: linear-gradient(140deg, #fff7cc 0 12%, var(--gold) 30%, var(--red-hot) 75%);
  filter: drop-shadow(0 0 1.8rem rgba(255, 200, 46, 0.45));
}

.bolt-core::after {
  position: absolute;
  inset: 0.35rem 0.75rem 0.9rem 0.55rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.78), transparent 50%);
  content: "";
}

.energy-node {
  position: absolute;
  z-index: 5;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--paper-bright);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 1.2rem var(--red);
}

.node-one { top: 16%; left: 27%; }
.node-two { top: 40%; right: 12%; }
.node-three { right: 31%; bottom: 11%; background: var(--gold); box-shadow: 0 0 1.2rem var(--gold); }

.speed-trace {
  position: absolute;
  z-index: 2;
  height: 0.32rem;
  background: linear-gradient(90deg, transparent, var(--red) 28%, var(--gold));
  box-shadow: 0 0 1rem rgba(240, 36, 62, 0.6);
  transform: skew(-28deg);
}

.trace-one { top: 24%; left: -5%; width: 48%; }
.trace-two { top: 53%; right: -10%; width: 47%; }
.trace-three { right: 4%; bottom: 19%; width: 35%; height: 0.18rem; }

.art-label {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 1rem;
  display: grid;
  width: 13rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-strong);
  background: rgba(5, 7, 11, 0.76);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  gap: 0.35rem;
}

.art-label::before {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--green);
  box-shadow: 0 0 1rem var(--green);
  content: "";
}

.art-label span {
  color: var(--red-hot);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.art-label strong {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-index {
  position: absolute;
  right: var(--gutter);
  bottom: 1.5rem;
  color: #676e79;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.studio-strip {
  display: flex;
  min-height: 5.25rem;
  padding: 1.25rem max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  gap: clamp(1rem, 3vw, 3rem);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studio-strip i {
  width: 0.35rem;
  height: 0.35rem;
  background: var(--red);
  transform: rotate(45deg);
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(5.5rem, 9vw, 9rem) var(--gutter);
}

.services {
  background: var(--paper);
}

.section-heading {
  display: grid;
  margin-bottom: 4rem;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(18rem, 1.2fr);
  gap: 2rem 5rem;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2,
.about h2,
.project h2,
.contact h2,
.promise h2,
.support-detail h2,
.deletion-detail h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  max-width: 38rem;
  margin: 0;
  color: var(--muted-dark);
  font-size: 1.08rem;
}

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

.service-card {
  position: relative;
  min-height: 26rem;
  padding: 1.5rem 1.5rem 2rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 0.3rem;
  background: linear-gradient(90deg, var(--red), var(--gold));
  content: "";
  transform: translateX(110%) skew(-25deg);
  transition: transform 220ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--ink-2);
  color: var(--text);
  transform: translateY(-0.6rem);
}

.service-card:hover::before {
  transform: translateX(0) skew(-25deg);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-card-top > span {
  color: var(--red-deep);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 800;
}

.service-glyph {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--line-dark);
}

.service-glyph i,
.service-glyph b {
  position: absolute;
  display: block;
  background: var(--red);
  content: "";
}

.service-glyph i {
  top: 0.8rem;
  left: 0.55rem;
  width: 2.3rem;
  height: 0.35rem;
  transform: skew(-28deg);
}

.service-glyph b {
  right: 0.55rem;
  bottom: 0.85rem;
  width: 1.4rem;
  height: 0.35rem;
  background: var(--gold);
  transform: skew(-28deg);
}

.glyph-2 { border-radius: 50%; }
.glyph-2 i { top: 50%; transform: rotate(-28deg); }
.glyph-3 i { width: 0.4rem; height: 2rem; transform: skew(-16deg); }
.glyph-3 b { right: 0.65rem; bottom: 0.7rem; width: 1.9rem; }
.glyph-4 { transform: rotate(45deg); }
.glyph-4 i, .glyph-4 b { transform: rotate(-45deg) skew(-28deg); }

.service-card:hover .service-glyph {
  border-color: var(--line-strong);
}

.service-card h3 {
  margin: 5rem 0 1.3rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.2vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: #656b74;
  font-size: 0.9rem;
}

.service-card:hover p {
  color: #a9afb8;
}

.card-arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.3rem;
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.project {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  background: var(--paper-bright);
}

.project-panel {
  display: grid;
  width: min(calc(100% - (2 * var(--gutter))), var(--max));
  min-height: 42rem;
  margin: 0 auto;
  overflow: hidden;
  background: var(--red-deep);
  color: white;
  grid-template-columns: 0.95fr 1.05fr;
}

.project-copy {
  position: relative;
  z-index: 3;
  padding: clamp(3rem, 6vw, 6rem);
}

.project-copy::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 14rem;
  height: 14rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.project-copy > p:not(.eyebrow) {
  max-width: 36rem;
  margin: 2rem 0 0;
  color: #f3cbd1;
  font-size: 1.05rem;
}

.button-light {
  background: var(--paper-bright);
  color: var(--ink);
  box-shadow: 0.5rem 0.5rem 0 var(--gold);
}

.text-link {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link-light {
  color: white;
}

.project-visual {
  position: relative;
  display: grid;
  min-height: 40rem;
  padding: 5rem 4rem;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(150deg, transparent 0 52%, rgba(5, 7, 11, 0.3) 52%),
    repeating-linear-gradient(135deg, transparent 0 3.9rem, rgba(255, 255, 255, 0.05) 3.9rem 4rem);
}

.product-window {
  position: relative;
  z-index: 3;
  width: min(100%, 38rem);
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(5, 7, 11, 0.88);
  box-shadow: 1.5rem 1.5rem 0 rgba(5, 7, 11, 0.22), 0 2rem 5rem rgba(5, 7, 11, 0.3);
  transform: perspective(70rem) rotateY(-7deg) rotateX(2deg);
}

.product-window-bar {
  display: flex;
  min-height: 2.7rem;
  padding: 0 0.2rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  gap: 0.4rem;
}

.product-window-bar span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #525963;
}

.product-window-bar span:first-child { background: var(--red); }
.product-window-bar span:nth-child(2) { background: var(--gold); }
.product-window-bar i {
  margin-left: auto;
  color: #858c97;
  font-family: var(--mono);
  font-size: 0.55rem;
  font-style: normal;
  letter-spacing: 0.13em;
}

.schedule-day {
  display: flex;
  padding: 1.3rem 0.55rem 1rem;
  align-items: center;
  justify-content: space-between;
}

.schedule-day strong {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.schedule-day small {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.schedule-row {
  position: relative;
  display: grid;
  min-height: 5rem;
  padding: 0.9rem 0.85rem 0.9rem 1.15rem;
  align-items: center;
  border-top: 1px solid var(--line);
  grid-template-columns: 4.4rem 1fr auto;
  gap: 0.8rem;
}

.schedule-row::before {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 0;
  width: 3px;
  background: #4e5662;
  content: "";
}

.schedule-row.row-red::before { background: var(--red); box-shadow: 0 0 0.8rem var(--red); }
.schedule-row.row-gold::before { background: var(--gold); }
.schedule-row time { font-family: var(--display); font-size: 1.2rem; font-weight: 900; }
.schedule-row > span { display: grid; }
.schedule-row b { color: #747c88; font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.09em; }
.schedule-row i { font-size: 0.78rem; font-style: normal; }
.schedule-row u { color: #686f7a; font-family: var(--mono); font-size: 0.48rem; text-decoration: none; }

.project-orbit {
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 31rem;
  height: 31rem;
  border: 1px solid rgba(255, 200, 46, 0.33);
  border-radius: 50%;
}

.project-bolt {
  position: absolute;
  top: -3rem;
  right: -1rem;
  width: 10rem;
  height: 18rem;
  background: var(--gold);
  -webkit-clip-path: polygon(50% 0, 100% 0, 68% 41%, 100% 41%, 20% 100%, 39% 58%, 0 58%);
  clip-path: polygon(50% 0, 100% 0, 68% 41%, 100% 41%, 20% 100%, 39% 58%, 0 58%);
  opacity: 0.75;
  transform: rotate(16deg);
}

.about {
  gap: 4rem 7rem;
}

.about-label {
  position: relative;
}

.studio-system {
  position: relative;
  display: grid;
  width: min(100%, 30rem);
  min-height: 29rem;
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink-2);
  background-size: 3rem 3rem;
  color: white;
  align-content: center;
  gap: 0.75rem;
}

.studio-system > span {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 3.8rem;
  padding: 0.7rem 1rem;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(5, 7, 11, 0.82);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 1rem;
}

.studio-system > span i {
  color: var(--red-hot);
  font-style: normal;
}

.studio-system > span:nth-child(2),
.studio-system > span:nth-child(4) {
  margin-left: 2.5rem;
}

.system-bolt {
  position: absolute;
  z-index: 1;
  top: 2rem;
  right: -2rem;
  width: 9rem;
  height: 16rem;
  background: linear-gradient(145deg, var(--gold), var(--red));
  -webkit-clip-path: polygon(50% 0, 100% 0, 68% 41%, 100% 41%, 20% 100%, 39% 58%, 0 58%);
  clip-path: polygon(50% 0, 100% 0, 68% 41%, 100% 41%, 20% 100%, 39% 58%, 0 58%);
  opacity: 0.55;
}

.about-copy {
  align-self: center;
}

.about-copy > p {
  max-width: 42rem;
  margin: 2.5rem 0 3rem;
  color: #4f555e;
  font-size: 1.12rem;
}

.company-facts {
  display: grid;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
}

.company-facts span {
  display: grid;
  min-height: 7.5rem;
  padding: 1.2rem;
  align-content: space-between;
  border-right: 1px solid var(--line-dark);
  color: #454b54;
  font-size: 0.78rem;
}

.company-facts span:last-child { border-right: 0; }
.company-facts b { color: var(--red-deep); font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; }

.contact {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 36rem;
  padding-right: max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  padding-left: max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 50%, rgba(240, 36, 62, 0.25), transparent 23rem),
    var(--ink);
  color: var(--text);
}

.contact h2 {
  position: relative;
  z-index: 3;
  max-width: 62rem;
}

.contact > p:not(.eyebrow) {
  position: relative;
  z-index: 3;
  max-width: 42rem;
  margin: 1.8rem 0;
  color: #a7adb7;
}

.contact-link {
  position: relative;
  z-index: 3;
  display: inline-block;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--gold);
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-streak {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 25rem;
  height: 30rem;
  background: linear-gradient(145deg, var(--gold), var(--red) 55%);
  -webkit-clip-path: polygon(50% 0, 100% 0, 68% 41%, 100% 41%, 20% 100%, 39% 58%, 0 58%);
  clip-path: polygon(50% 0, 100% 0, 68% 41%, 100% 41%, 20% 100%, 39% 58%, 0 58%);
  filter: drop-shadow(0 0 3rem rgba(240, 36, 62, 0.35));
  opacity: 0.55;
  transform: rotate(12deg);
}

.subhero,
.legal-hero {
  display: grid;
  min-height: 40rem;
  padding: 12.5rem max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter))) 6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 35%, rgba(240, 36, 62, 0.18), transparent 22rem),
    var(--ink);
  color: var(--text);
}

.subhero {
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 4rem;
  align-items: center;
}

.subhero h1,
.legal-hero h1 {
  max-width: 62rem;
  font-size: clamp(3.7rem, 7vw, 7.1rem);
}

.subhero > div > p:not(.eyebrow),
.legal-hero > p:not(.eyebrow) {
  max-width: 47rem;
  margin: 2.2rem 0 0;
  color: #aeb4bd;
  font-size: 1.12rem;
}

.app-symbol {
  position: relative;
  display: grid;
  width: min(25rem, 100%);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink-2);
  background-size: 3rem 3rem;
}

.app-symbol span {
  position: relative;
  z-index: 2;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(6rem, 13vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.16em;
  -webkit-text-stroke: 2px white;
}

.app-symbol i,
.app-symbol b {
  position: absolute;
  right: -20%;
  width: 105%;
  height: 1.1rem;
  background: var(--red);
  transform: rotate(-32deg) skew(-25deg);
}

.app-symbol i { top: 28%; }
.app-symbol b { bottom: 26%; background: var(--gold); }

.section-heading.compact { display: block; }

.feature-row {
  display: grid;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
}

.feature-row article {
  min-height: 18rem;
  padding: 2rem;
  border-right: 1px solid var(--line-dark);
}

.feature-row article:last-child { border-right: 0; }

.feature-row span,
.choice-steps article::before {
  color: var(--red-deep);
  font-family: var(--mono);
  font-size: 0.64rem;
}

.feature-row h3,
.provider-list h3,
.support-grid h2,
.choice-steps h2 {
  margin: 3.5rem 0 1rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.feature-row p,
.provider-list p { color: #565d66; }

.provider-section {
  width: 100%;
  max-width: none;
  padding-right: max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  padding-left: max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  background: var(--paper-bright);
}

.provider-list { border-top: 1px solid var(--line-dark); }
.provider-list article { display: grid; padding: 2rem 0; border-bottom: 1px solid var(--line-dark); grid-template-columns: 0.6fr 1.4fr; gap: 2rem; }
.provider-list h3 { margin: 0; }
.provider-list p { max-width: 50rem; margin: 0; }

.promise {
  width: 100%;
  max-width: none;
  padding-right: max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  padding-left: max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  background: var(--red-deep);
  color: white;
}

.promise p:not(.eyebrow) { max-width: 50rem; color: #f1c7ce; font-size: 1.08rem; }

.legal-jump {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter) 8rem;
  grid-template-columns: repeat(3, 1fr);
}

.legal-jump a {
  display: flex;
  min-height: 9rem;
  padding: 1.5rem;
  border: 1px solid var(--line-dark);
  align-items: flex-end;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-jump a:hover { background: var(--ink); color: white; }

.legal-hero {
  display: block;
  min-height: 33rem;
}

.legal-layout {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 5rem var(--gutter) 8rem;
  grid-template-columns: minmax(13rem, 0.6fr) minmax(0, 1.4fr);
  gap: 4rem 7rem;
}

.legal-aside {
  position: sticky;
  top: 2rem;
  height: fit-content;
  padding: 1.5rem;
  border: 1px solid var(--line-dark);
  background: var(--paper-bright);
}

.legal-aside > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--red-deep);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-aside ol { margin: 0; padding-left: 1.15rem; }
.legal-aside li { margin: 0.45rem 0; color: #5b626b; font-size: 0.78rem; }
.legal-aside a { text-decoration: none; }
.legal-aside a:hover { color: var(--red-deep); }
.legal-document { min-width: 0; }
.legal-document section { padding: 0 0 3.5rem; scroll-margin-top: 2rem; }
.legal-document section + section { padding-top: 3.5rem; border-top: 1px solid var(--line-dark); }

.legal-document h2 {
  margin: 0 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.legal-document p,
.legal-document li { color: #3e444d; }
.legal-document p { margin: 0 0 1.1rem; }
.legal-document ul { margin: 0; padding: 0; list-style: none; }
.legal-document li, .deletion-detail li { position: relative; margin: 0.8rem 0; padding-left: 1.6rem; }

.legal-document li::before,
.deletion-detail li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.55rem;
  height: 0.16rem;
  background: var(--red);
  content: "";
  transform: skew(-25deg);
}

.legal-document a { color: var(--red-deep); }
.legal-date { padding: 1rem var(--gutter); background: var(--ink); color: #747b86; font-family: var(--mono); font-size: 0.64rem; text-align: center; }

.support-pulse {
  position: relative;
  display: grid;
  width: 21rem;
  height: 21rem;
  place-items: center;
  justify-self: end;
}

.support-pulse i { position: absolute; width: 4rem; height: 4rem; border: 1px solid rgba(255, 200, 46, 0.55); border-radius: 50%; }
.support-pulse i:nth-child(2) { width: 11rem; height: 11rem; border-color: rgba(240, 36, 62, 0.45); }
.support-pulse i:nth-child(3) { width: 19rem; height: 19rem; border-color: rgba(255, 255, 255, 0.15); }
.support-pulse::after { width: 1rem; height: 1rem; border-radius: 50%; background: var(--green); box-shadow: 0 0 2rem var(--green); content: ""; }

.support-grid {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 5rem var(--gutter) 0;
  grid-template-columns: repeat(3, 1fr);
}

.support-grid article { min-height: 20rem; padding: 2rem; border: 1px solid var(--line-dark); }
.support-grid article + article { border-left: 0; }
.status-dot { display: block; width: 0.65rem; height: 0.65rem; border-radius: 50%; background: var(--green); box-shadow: 0 0 1rem rgba(69, 224, 164, 0.65); }
.support-grid h2 { margin-top: 4rem; }
.support-grid p { min-height: 4rem; color: #565d66; }
.support-grid a { color: var(--red-deep); font-size: 0.75rem; font-weight: 850; }
.support-detail, .deletion-detail { gap: 4rem 7rem; }
.support-detail h2 { font-size: 3.5rem; }
.support-detail ol { padding: 0; counter-reset: support; list-style: none; }
.support-detail li { padding: 1rem 0; border-top: 1px solid var(--line-dark); counter-increment: support; }
.support-detail li::before { margin-right: 1rem; color: var(--red-deep); content: "0" counter(support); font-family: var(--mono); font-size: 0.64rem; }

.office-card {
  padding: 2.5rem;
  background: var(--ink);
  color: white;
  box-shadow: 1rem 1rem 0 var(--red);
}

.office-card > span { display: block; margin-bottom: 2rem; color: var(--gold); font-family: var(--mono); font-size: 0.64rem; font-weight: 850; letter-spacing: 0.13em; text-transform: uppercase; }
.office-card strong { display: block; font-family: var(--display); font-size: 2rem; text-transform: uppercase; }
.office-card p { margin: 0.7rem 0; color: #a8aeb7; font-size: 0.86rem; }
.choices-hero { min-height: 34rem; }

.choice-steps {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 5rem var(--gutter) 0;
  grid-template-columns: repeat(4, 1fr);
}

.choice-steps article { min-height: 21rem; padding: 1.8rem; border: 1px solid var(--line-dark); }
.choice-steps article + article { border-left: 0; }
.choice-steps h2 { margin: 4rem 0 1.2rem; font-size: 1.65rem; }
.choice-steps p { color: #555c65; font-size: 0.88rem; }
.deletion-detail ul { margin: 0 0 2rem; padding: 0; list-style: none; }
.warning { padding: 1.2rem 1.4rem; border-left: 4px solid var(--gold); background: #e8e2d7; }

.site-footer {
  display: grid;
  padding: 5rem max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter))) 2rem;
  background: var(--ink);
  color: var(--text);
  grid-template-columns: 1fr 0.75fr 1.25fr;
  gap: 4rem;
}

.footer-lead p { max-width: 22rem; margin: 1.5rem 0 0; color: #7e8590; }
.footer-links { display: grid; align-content: start; gap: 0.75rem; }
.footer-links a { color: #b6bbc3; font-size: 0.75rem; font-weight: 750; }
.footer-legal { padding-left: 2rem; border-left: 1px solid var(--line); }
.footer-legal p { margin: 0 0 0.6rem; color: #7e8590; font-size: 0.75rem; }
.footer-legal strong, .footer-legal a { color: var(--text); }

.footer-bottom {
  display: flex;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  justify-content: space-between;
  color: #626974;
  font-family: var(--mono);
  font-size: 0.62rem;
}

.privacy-signal { display: inline-flex; align-items: center; gap: 0.55rem; }
.privacy-signal i { display: inline-block; width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--green); box-shadow: 0 0 0.7rem rgba(69, 224, 164, 0.5); }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes energy-pulse {
  0%, 100% { filter: drop-shadow(0 0 1.8rem rgba(255, 200, 46, 0.4)); }
  50% { filter: drop-shadow(0 0 3.4rem rgba(240, 36, 62, 0.72)); }
}

@keyframes ring-drift {
  from { transform: translate(-50%, -50%) rotate(-20deg); }
  to { transform: translate(-50%, -50%) rotate(340deg); }
}

.bolt-core { animation: energy-pulse 3.5s ease-in-out infinite; }
.energy-ring-two { animation: ring-drift 28s linear infinite; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; }
  .hero-art { min-height: 31rem; }
  .energy-ring-three { width: 32rem; height: 32rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 20rem; }
  .service-card h3 { margin-top: 3rem; }
  .project-panel { grid-template-columns: 1fr; }
  .project-visual { min-height: 32rem; }
  .about, .support-detail, .deletion-detail, .legal-layout { gap: 3rem; }
  .choice-steps { grid-template-columns: repeat(2, 1fr); }
  .choice-steps article:nth-child(3) { border-left: 1px solid var(--line-dark); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-legal { padding: 2rem 0 0; border-top: 1px solid var(--line); border-left: 0; grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .site-header { min-height: 5.3rem; }

  .js .menu-button {
    position: relative;
    z-index: 102;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0;
    place-content: center;
    border: 1px solid var(--line-strong);
    background: rgba(5, 7, 11, 0.5);
    color: white;
    gap: 0.4rem;
  }

  .js .menu-button span { display: block; width: 1.25rem; height: 2px; background: currentColor; transition: transform 180ms ease; }
  .js .menu-button[aria-expanded="true"] span:first-child { transform: translateY(0.2rem) rotate(45deg); }
  .js .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-0.2rem) rotate(-45deg); }

  .js .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 7rem var(--gutter) 3rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 180ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .js .site-nav a { font-family: var(--display); font-size: 2rem; letter-spacing: -0.025em; }
  .js .site-nav .language-link { margin-top: 1rem; font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.1em; }
  .no-js .site-header { position: relative; min-height: 0; padding-bottom: 1rem; flex-wrap: wrap; background: var(--ink); gap: 1rem; }
  .no-js .site-nav { width: 100%; padding-top: 0.75rem; overflow-x: auto; border-top: 1px solid var(--line); gap: 1rem; }
  .no-js .site-nav a { flex: none; font-size: 0.62rem; }
  .no-js .site-nav .language-link { padding: 0.35rem 0.55rem; }

  .hero, .section-grid, .subhero { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding-top: 9rem; padding-bottom: 4rem; }
  .hero h1 { font-size: clamp(3.7rem, 17vw, 6.6rem); }
  .hero-art { min-height: 26rem; margin-top: 2rem; }
  .vector-bolt { width: 11rem; height: 21rem; }
  .energy-ring-one { width: 15rem; height: 15rem; }
  .energy-ring-two { width: 22rem; height: 22rem; }
  .energy-ring-three { width: 28rem; height: 28rem; }
  .hero-capabilities { display: none; }
  .studio-strip { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .studio-strip span, .studio-strip i { flex: none; }
  .section-heading { display: block; }
  .section-heading h2 { margin-bottom: 1.5rem; }
  .service-grid, .feature-row, .legal-jump, .support-grid, .choice-steps, .site-footer { grid-template-columns: 1fr; }
  .service-card { min-height: 18rem; }
  .project-panel { width: 100%; }
  .project-copy { padding: 4rem var(--gutter); }
  .project-visual { min-height: 27rem; padding: 3rem 1.25rem; }
  .schedule-row { grid-template-columns: 3.6rem 1fr; }
  .schedule-row u { display: none; }
  .about { gap: 4rem; }
  .studio-system { max-width: 32rem; }
  .company-facts { grid-template-columns: 1fr; }
  .company-facts span { min-height: 5.5rem; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .contact-streak { right: -10rem; opacity: 0.35; }
  .subhero { padding-top: 9rem; }
  .subhero h1, .legal-hero h1 { font-size: clamp(3.2rem, 14vw, 5.8rem); }
  .app-symbol, .support-pulse { display: none; }
  .feature-row article, .support-grid article, .choice-steps article { min-height: 0; border-right: 1px solid var(--line-dark); border-bottom: 0; border-left: 1px solid var(--line-dark) !important; }
  .feature-row article:last-child, .support-grid article:last-child, .choice-steps article:last-child { border-bottom: 1px solid var(--line-dark); }
  .feature-row h3, .support-grid h2, .choice-steps h2 { margin-top: 2rem; }
  .provider-list article { grid-template-columns: 1fr; }
  .legal-jump { padding-bottom: 5rem; }
  .legal-jump a + a { border-top: 0; }
  .legal-layout { grid-template-columns: 1fr; gap: 3rem; }
  .legal-aside { position: static; }
  .support-grid, .choice-steps { padding-top: 3rem; }
  .site-footer { gap: 2.5rem; }
  .footer-legal, .footer-bottom { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 440px) {
  .hero h1 { font-size: 3.4rem; }
  .button { width: 100%; }
  .actions { align-items: stretch; flex-direction: column; }
  .hero-art { min-height: 22rem; }
  .energy-ring-three { width: 24rem; height: 24rem; }
  .art-label { right: -0.5rem; width: 11rem; }
  .studio-system { padding: 1.2rem; }
  .studio-system > span:nth-child(2), .studio-system > span:nth-child(4) { margin-left: 1rem; }
  .contact h2, .project h2, .about h2, .section-heading h2 { font-size: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .reading-progress, .legal-aside, .legal-date { display: none !important; }
  body { background: white; color: black; font-size: 11pt; }
  .legal-hero { min-height: 0; padding: 2rem 0; background: white; color: black; }
  .legal-hero h1 { font-size: 38pt; }
  .legal-hero > p:not(.eyebrow) { color: black; }
  .legal-layout { display: block; max-width: none; padding: 1rem 0; }
  .legal-document section { break-inside: avoid-page; }
  a { text-decoration: none; }
}

/* Runner direction: the alpha design is preserved by the design-alpha-v1 tag. */
.home-page .site-header {
  color: var(--ink);
}

.home-page .site-header::after {
  background: rgba(5, 7, 11, 0.16);
}

.home-page .site-nav .language-link {
  border-color: rgba(5, 7, 11, 0.25);
  background: rgba(255, 255, 255, 0.4);
}

.home-page .hero {
  min-height: min(58rem, 100svh);
  background: #f4eae5;
  color: var(--ink);
  grid-template-columns: minmax(0, 0.98fr) minmax(28rem, 1.02fr);
}

.home-page .hero::before,
.home-page .hero::after {
  display: none;
}

.home-page .hero-atmosphere {
  display: none;
}

.home-page .hero .eyebrow {
  color: var(--red-deep);
}

.home-page .hero h1 {
  font-size: clamp(3.8rem, 7.2vw, 7.5rem);
}

.home-page .hero h1 em {
  color: var(--red);
  text-shadow: 0.035em 0.045em 0 var(--gold);
}

.home-page .hero-lead {
  color: #4f555d;
}

.home-page .button-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0.55rem 0.55rem 0 var(--red);
}

.home-page .button-primary:hover {
  background: var(--red-deep);
}

.home-page .button-quiet {
  border-color: rgba(5, 7, 11, 0.25);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
}

.home-page .button-quiet:hover {
  border-color: var(--ink);
}

.home-page .hero-capabilities span {
  border-color: rgba(5, 7, 11, 0.16);
  background: rgba(255, 255, 255, 0.34);
  color: #555b64;
}

.home-page .hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  align-self: stretch;
}

.runner-scene {
  position: absolute;
  inset: 0;
  display: block;
  background: #f4eae5;
}

.runner-scene::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(90deg, #f4eae5 0%, rgba(244, 234, 229, 0.92) 18%, rgba(244, 234, 229, 0.68) 37%, rgba(244, 234, 229, 0.16) 56%, transparent 68%);
  content: "";
  pointer-events: none;
}

.motion-canvas,
.runner-artwork,
.lightning-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.motion-canvas {
  z-index: 0;
  pointer-events: none;
}

.runner-artwork {
  z-index: 1;
  image-rendering: auto;
  object-fit: contain;
  object-position: right center;
}

.lightning-canvas {
  z-index: 2;
  pointer-events: none;
}

.home-page .art-label {
  right: var(--gutter);
  bottom: 3.4rem;
  background: rgba(255, 253, 248, 0.88);
  border-color: rgba(5, 7, 11, 0.23);
  color: var(--ink);
}

.home-page .art-label span {
  color: var(--red-deep);
}

.home-page .hero-index {
  color: #6b6260;
}

.home-page .studio-strip {
  background: var(--red-deep);
  color: white;
}

.home-page .studio-strip i {
  background: var(--gold);
  box-shadow: 0 0 0.8rem rgba(255, 200, 46, 0.7);
}

.projects {
  width: 100%;
  max-width: none;
  padding-right: max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  padding-left: max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 4.5rem 4.5rem;
  color: var(--text);
}

.projects .section-heading > p:last-child {
  color: #a4abb5;
}

.projects .eyebrow {
  color: var(--gold);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.projects-empty {
  position: relative;
  display: grid;
  min-height: 22rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  background: var(--ink-2);
  grid-column: 1 / -1;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 3rem;
  align-items: end;
}

.projects-empty > span {
  align-self: start;
  color: var(--red-hot);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.projects-empty h3,
.portfolio-card h3 {
  max-width: 46rem;
  margin: 0 0 1.2rem;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.projects-empty p {
  max-width: 42rem;
  margin: 0;
  color: #9da4af;
}

.projects-empty > i {
  position: absolute;
  top: -5rem;
  right: 3rem;
  width: 12rem;
  height: 22rem;
  background: linear-gradient(145deg, var(--gold), var(--red));
  -webkit-clip-path: polygon(50% 0, 100% 0, 68% 41%, 100% 41%, 20% 100%, 39% 58%, 0 58%);
  clip-path: polygon(50% 0, 100% 0, 68% 41%, 100% 41%, 20% 100%, 39% 58%, 0 58%);
  opacity: 0.14;
  transform: rotate(13deg);
}

.portfolio-card {
  position: relative;
  min-height: 30rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  background: var(--ink-2);
}

.portfolio-meta {
  display: flex;
  margin-bottom: 7rem;
  justify-content: space-between;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.portfolio-card h3 {
  max-width: 34rem;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.portfolio-card > p {
  max-width: 36rem;
  color: #a4abb5;
}

.portfolio-links {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.portfolio-links a {
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.portfolio-mark {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.portfolio-mark i,
.portfolio-mark b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9rem;
  height: 0.7rem;
  background: var(--red);
  content: "";
  transform: translate(-50%, -50%) rotate(-24deg) skew(-28deg);
}

.portfolio-mark b {
  width: 6rem;
  background: var(--gold);
  transform: translate(-35%, 140%) rotate(-24deg) skew(-28deg);
}

@media (max-width: 1080px) {
  .home-page .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(25rem, 0.95fr);
  }
}

@media (max-width: 780px) {
  .home-page .site-header {
    color: var(--ink);
  }

  .js .home-page .site-nav {
    color: var(--text);
  }

  .js .home-page .menu-button {
    border-color: rgba(5, 7, 11, 0.24);
    background: rgba(255, 255, 255, 0.65);
    color: var(--ink);
  }

  .home-page .hero {
    grid-template-columns: 1fr;
  }

  .home-page .hero::after {
    display: none;
  }

  .home-page .hero-art {
    position: relative;
    z-index: 2;
    inset: auto;
    width: auto;
    height: auto;
    min-height: 29rem;
    margin: -1rem calc(var(--gutter) * -1) -2rem;
    align-self: center;
  }

  .runner-scene {
    inset: 0;
  }

  .runner-scene::after {
    display: none;
  }

  .runner-artwork {
    object-fit: cover;
    object-position: right center;
  }

  .home-page .art-label {
    right: var(--gutter);
    bottom: 1rem;
  }

  .projects-empty {
    min-height: 23rem;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

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

@media (max-width: 440px) {
  .home-page .hero h1 {
    font-size: 3.2rem;
  }

  .home-page .hero-art {
    min-height: 25rem;
  }

  .home-page .art-label {
    right: -0.4rem;
    bottom: -0.3rem;
  }
}
