:root {
  --paper: #eee3d7;
  --paper-deep: #dbc9b8;
  --paper-dark: #d0b8a4;
  --ink: #121212;
  --ink-soft: #2f2924;
  --muted: rgba(18, 18, 18, 0.64);
  --muted-light: rgba(255, 244, 234, 0.72);
  --panel: #151210;
  --panel-soft: #1d1815;
  --line: rgba(18, 18, 18, 0.12);
  --line-light: rgba(255, 244, 234, 0.14);
  --accent: #ff5e2d;
  --accent-deep: #ff8148;
  --accent-soft: rgba(255, 94, 45, 0.14);
  --accent-fog: rgba(255, 94, 45, 0.24);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
  --display: "Unbounded", sans-serif;
  --body: "Manrope", sans-serif;
  --header-height: 72px;
  --scroll-progress: 0%;
  --marquee-distance: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 94, 45, 0.14), transparent 18%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.52), transparent 18%),
    radial-gradient(circle at 72% 40%, rgba(255, 94, 45, 0.1), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(255, 94, 45, 0.08), transparent 20%),
    linear-gradient(180deg, #f8efe6 0%, var(--paper) 34%, #151210 34%, #0f0d0c 74%, #f2e7da 74%, #eee2d6 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(18, 18, 18, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
  opacity: 0.62;
}

body::after {
  inset: -12%;
  background:
    conic-gradient(from 140deg at 18% 22%, rgba(255, 94, 45, 0.12), transparent 24%, rgba(255, 255, 255, 0.12), transparent 48%, rgba(0, 0, 0, 0.06), transparent 72%),
    radial-gradient(circle at 70% 68%, rgba(255, 94, 45, 0.18), transparent 20%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.04), transparent 32%, rgba(255, 94, 45, 0.05) 45%, transparent 68%);
  filter: blur(28px);
  opacity: 0.85;
}

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

button {
  font: inherit;
}

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

section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.page-shell {
  position: relative;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-height);
  padding: 1rem 2rem;
  color: #fff5ec;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.86), rgba(18, 18, 18, 0.28) 65%, transparent);
  backdrop-filter: blur(10px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 0;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 94, 45, 0.88) var(--scroll-progress),
      rgba(255, 255, 255, 0.18) var(--scroll-progress)
    );
}

.brandmark {
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1rem 1.2rem;
  flex-wrap: wrap;
}

.site-nav a,
.header-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 245, 236, 0.74);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.contact-links a:hover,
.contact-links a:focus-visible,
.preview-link:hover,
.preview-link:focus-visible {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 2rem) clamp(1.3rem, 3vw, 2.6rem) 2rem;
  overflow: clip;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 94, 45, 0.34), transparent 22%),
    radial-gradient(circle at 76% 55%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 35%);
}

.hero::after {
  inset: auto -8% 10% 45%;
  height: 26rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 94, 45, 0.24), rgba(255, 94, 45, 0) 72%);
  filter: blur(20px);
}

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

.hero-bg-anime,
.hero-bg-cutout {
  position: absolute;
  display: block;
  max-width: none;
}

.hero-bg-anime {
  top: 10%;
  right: 4%;
  width: 17rem;
  aspect-ratio: 1;
  object-fit: cover;
  opacity: 0.16;
  filter: saturate(1.08) blur(1px);
  clip-path: polygon(15% 0, 100% 0, 100% 84%, 82% 100%, 0 100%, 0 18%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

.hero-bg-cutout {
  right: -1%;
  bottom: -6%;
  width: min(26vw, 22rem);
  opacity: 0.5;
  filter: grayscale(0.08) drop-shadow(0 12px 40px rgba(0, 0, 0, 0.18));
  transform: rotate(5deg) scaleX(-1);
}

.signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.76;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.94fr) minmax(190px, 0.42fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 5rem);
}

.eyebrow,
.section-overline {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-overline {
  color: var(--accent);
}

.section-overline-dark {
  color: rgba(255, 245, 236, 0.76);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  max-width: 44rem;
  margin-top: 1rem;
}

.hero-kicker span {
  position: relative;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-kicker span:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -0.62rem;
  top: 0.52rem;
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 999px;
  background: var(--accent);
}

.hero-title {
  margin: 1.3rem 0 0;
}

.hero-brand,
.hero-line,
.hero-subline {
  display: block;
  font-family: var(--display);
}

.hero-brand {
  font-size: clamp(4rem, 13vw, 9.4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.hero-line {
  max-width: 12ch;
  margin-top: 0.6rem;
  font-size: clamp(1.15rem, 2.7vw, 2.5rem);
  line-height: 1.06;
}

.hero-subline {
  margin-top: 0.35rem;
  font-size: clamp(0.72rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.52);
}

.hero-line-accent {
  color: var(--accent);
}

.hero-subline-accent {
  color: rgba(255, 94, 45, 0.74);
}

.hero-description {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.72;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button-solid {
  color: #fff8f2;
  background: var(--ink);
  box-shadow: 0 14px 35px rgba(18, 18, 18, 0.2);
}

.button-solid:hover,
.button-solid:focus-visible {
  background: var(--accent);
}

.button-ghost {
  color: var(--ink);
  border: 1px solid rgba(18, 18, 18, 0.18);
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 94, 45, 0.55);
  color: var(--accent);
}

.button-outline {
  color: var(--ink);
  border: 1px solid rgba(18, 18, 18, 0.12);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: #fff8f2;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(255, 94, 45, 0.22);
}

.hero-figure {
  position: relative;
  min-height: 31rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 31rem);
  aspect-ratio: 0.78;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(14% 0%, 100% 0%, 100% 82%, 86% 100%, 0% 100%, 0% 18%);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.26);
}

.portrait-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.08) 0%, rgba(18, 18, 18, 0.12) 40%, rgba(18, 18, 18, 0.62) 100%),
    linear-gradient(130deg, rgba(255, 94, 45, 0.22), rgba(255, 255, 255, 0) 50%);
  z-index: 1;
}

.portrait-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  mix-blend-mode: overlay;
  z-index: 1;
}

.portrait-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.05);
  transform: scale(1.04);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(18, 18, 18, 0.14);
  border-radius: 999px;
}

.hero-orbit-outer {
  inset: 6% 2%;
  animation: slow-spin 22s linear infinite;
}

.hero-orbit-inner {
  inset: 14% 11%;
  border-style: dashed;
  border-color: rgba(255, 94, 45, 0.32);
  animation: slow-spin-reverse 18s linear infinite;
}

.hero-floating {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  max-width: 16rem;
  padding: 0.8rem 1rem;
  text-transform: uppercase;
  color: #fff8f2;
  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(10px);
}

.hero-floating strong {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-floating small {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 248, 242, 0.66);
}

.hero-floating-top {
  top: 11%;
  right: -3%;
}

.hero-floating-bottom {
  bottom: 11%;
  left: -6%;
}

.hero-side {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.hero-side-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.44);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-stack-list {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-stack-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink-soft);
}

.hero-stack-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.45rem;
  height: 2px;
  background: var(--accent);
}

.marquee {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(18, 18, 18, 0.1);
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
}

.marquee-shell {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 26s linear infinite;
}

.marquee-track {
  display: inline-flex;
  flex-shrink: 0;
  gap: 2.2rem;
  padding-right: 2.2rem;
  min-width: max-content;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-panel,
.contact {
  position: relative;
  padding: 7rem clamp(1.3rem, 3vw, 2.6rem);
}

.section-panel {
  display: grid;
  grid-template-columns: minmax(110px, 160px) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.section-marker {
  position: sticky;
  top: 6rem;
  align-self: start;
  z-index: 1;
}

.section-marker span,
.preview-index {
  display: block;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.95;
  color: var(--accent);
}

.section-marker p {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.manifesto-body,
.process-body {
  max-width: 76rem;
}

.section-title,
.contact-title {
  margin: 0.7rem 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-title-dark {
  color: #fff5ec;
}

.manifesto {
  isolation: isolate;
}

.manifesto::before {
  content: "";
  position: absolute;
  inset: clamp(18rem, 24vw, 22rem) 0 0;
  background:
    radial-gradient(circle at 74% 56%, rgba(255, 94, 45, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(30, 21, 16, 0) 0%, rgba(30, 21, 16, 0.72) 24%, rgba(30, 21, 16, 0.9) 100%);
  pointer-events: none;
  z-index: 0;
}

.manifesto-body {
  position: relative;
  z-index: 1;
}

.manifesto-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(18rem, 28vw, 24rem);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  margin-top: 2rem;
}

.manifesto-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 0;
}

.manifesto-aside {
  position: relative;
  display: grid;
  align-content: end;
  justify-items: end;
  gap: 0.9rem;
  min-height: clamp(25rem, 38vw, 32rem);
}

.manifesto-aside::before {
  content: "";
  position: absolute;
  inset: 16% 6% 0 12%;
  background: radial-gradient(circle at center, rgba(255, 94, 45, 0.18), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.manifesto-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(18, 16, 15, 0.14);
  border-radius: 999px;
  background: rgba(255, 249, 244, 0.72);
  backdrop-filter: blur(14px);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.manifesto-columns p {
  position: relative;
  z-index: 1;
  color: rgba(255, 247, 241, 0.84);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.12);
}

.manifesto-aside-copy {
  position: relative;
  z-index: 1;
  top: auto;
  left: auto;
  max-width: 14rem;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
  color: rgba(255, 247, 241, 0.62);
}

.manifesto-portrait {
  position: relative;
  z-index: 1;
  justify-self: end;
  align-self: end;
  width: min(100%, 24rem);
  margin: 0;
}

.manifesto-portrait::after {
  content: "Overl1te";
  position: absolute;
  left: -2.6rem;
  bottom: 1.4rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: rgba(255, 247, 241, 0.1);
  pointer-events: none;
  z-index: 0;
}

.manifesto-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(20, 14, 12, 0.16));
}

.manifesto-columns p,
.process-steps p,
.preview-body,
.capability-body p,
.contact-note {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-top: 2.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.signal-strip span,
.preview-meta li,
.capability-tail {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: auto;
  padding: 0;
  color: rgba(255, 247, 241, 0.92);
  background: none;
  border: none;
  box-shadow: none;
}

.signal-strip span::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0.32rem rgba(255, 94, 45, 0.14);
}

.capabilities {
  position: relative;
  padding: 7rem clamp(1.3rem, 3vw, 2.6rem);
  color: #fff5ec;
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 94, 45, 0.24), transparent 18%),
    linear-gradient(180deg, #171412 0%, #0f0d0c 100%);
  overflow: clip;
}

.capabilities::before {
  content: "Signal Stack";
  position: absolute;
  right: -4%;
  top: 2.6rem;
  font-family: var(--display);
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.85;
  letter-spacing: -0.07em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.capabilities::after {
  content: "";
  position: absolute;
  inset: auto 8% 8% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 94, 45, 0.16), transparent 70%);
  filter: blur(12px);
}

.capabilities-intro {
  position: relative;
  z-index: 1;
  max-width: 65rem;
}

.capability-list {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  border-top: 1px solid var(--line-light);
}

.capability {
  display: grid;
  grid-template-columns: minmax(80px, 110px) minmax(0, 1fr) minmax(180px, 240px);
  gap: 1.4rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line-light);
}

.capability-index {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  color: rgba(255, 245, 236, 0.58);
}

.capability-body h3,
.preview-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.capability-tail {
  align-self: center;
  justify-self: end;
  color: rgba(255, 245, 236, 0.64);
  text-align: right;
}

.process {
  position: relative;
  color: #fff5ec;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 74% 28%, rgba(255, 94, 45, 0.16), transparent 17%);
  pointer-events: none;
}

.process .section-marker,
.process-body {
  position: relative;
  z-index: 1;
}

.process .section-marker p {
  color: rgba(255, 245, 236, 0.3);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.process-quote {
  position: relative;
  padding-top: 1.5rem;
}

.process-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6rem;
  height: 2px;
  background: var(--accent);
}

.process-quote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255, 245, 236, 0.9);
}

.process-quote strong {
  display: block;
  margin-top: 1rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.process-quote span {
  display: block;
  max-width: 21rem;
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 245, 236, 0.58);
}

.process-steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 244, 234, 0.1);
}

.process-steps li:nth-child(2) {
  margin-left: 2rem;
}

.process-steps li:nth-child(3) {
  margin-left: 4rem;
}

.process-steps li:nth-child(4) {
  margin-left: 1rem;
}

.process-steps span {
  font-family: var(--display);
  color: var(--accent);
}

.process-steps p {
  color: rgba(255, 245, 236, 0.74);
}

.work {
  position: relative;
  padding: 7rem clamp(1.3rem, 3vw, 2.6rem);
  color: #fff5ec;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 94, 45, 0.2), transparent 20%),
    linear-gradient(180deg, #161412 0%, #0d0b0a 100%);
}

.work::after {
  content: "";
  position: absolute;
  inset: auto auto 4% 6%;
  width: 15rem;
  height: 15rem;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 94, 45, 0.18), transparent 70%);
  filter: blur(10px);
}

.work-top {
  position: relative;
  z-index: 1;
  max-width: 64rem;
}

.work-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(1.6rem, 3vw, 2.5rem);
  margin-top: 3rem;
}

.project-preview {
  position: sticky;
  top: 6rem;
  align-self: start;
  min-height: 31rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 94, 45, 0.22), rgba(255, 94, 45, 0.02)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  clip-path: polygon(0 10%, 12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.project-preview::before {
  content: "";
  position: absolute;
  inset: 7% 6%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.7;
}

.preview-index {
  position: relative;
  z-index: 1;
}

.preview-kicker {
  position: relative;
  z-index: 1;
  max-width: 18rem;
  margin: 1.2rem 0 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 245, 236, 0.74);
}

.preview-title {
  position: relative;
  z-index: 1;
  max-width: 12rem;
  margin-top: 1rem;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.preview-body {
  position: relative;
  z-index: 1;
  max-width: 24rem;
  margin-top: 1rem;
  color: rgba(255, 245, 236, 0.84);
}

.preview-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.preview-meta li {
  color: rgba(255, 245, 236, 0.64);
}

.preview-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: 1.8rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-rail {
  border-top: 1px solid var(--line-light);
}

.project-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(70px, 90px) minmax(170px, 220px) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.6rem 0;
  text-align: left;
  color: inherit;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.project-row:hover,
.project-row:focus-visible,
.project-row.is-active {
  color: #ffffff;
  transform: translateX(10px);
}

.project-row-index {
  font-family: var(--display);
  color: rgba(255, 245, 236, 0.52);
}

.project-row-title {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.project-row-copy {
  color: rgba(255, 245, 236, 0.72);
  line-height: 1.65;
}

.quote-band {
  position: relative;
  z-index: 1;
  margin: 4rem 0;
  transform: rotate(-2deg);
  background:
    linear-gradient(90deg, var(--accent) 0%, #ff6c3b 52%, var(--accent) 100%);
  overflow: clip;
  box-shadow: 0 18px 50px rgba(255, 94, 45, 0.24);
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 36%);
}

.quote-band p {
  position: relative;
  margin: 0;
  padding: 1rem 2rem;
  font-family: var(--display);
  font-size: clamp(0.98rem, 2.6vw, 1.8rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff9f4;
  text-align: center;
}

.contact {
  position: relative;
  color: var(--ink);
  overflow: clip;
  padding-top: 7rem;
  padding-bottom: clamp(1.5rem, 2.2vw, 2.5rem);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(26rem, 37vw, 40rem);
  gap: clamp(1.8rem, 3.6vw, 4.4rem);
  align-items: stretch;
}

.contact-copy {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  padding-right: clamp(0rem, 1.2vw, 1.4rem);
}

.contact-atmosphere-copy {
  position: absolute;
  top: 0.25rem;
  right: clamp(0.4rem, 1vw, 1rem);
  z-index: 2;
  display: grid;
  gap: 0.7rem;
  width: min(100%, 16.5rem);
  max-width: 16.5rem;
  min-width: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  justify-self: end;
  text-align: right;
  color: var(--ink);
}

.contact-atmosphere-copy span,
.contact-atmosphere-copy strong {
  display: block;
}

.contact-atmosphere-copy span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(18, 16, 15, 0.52);
}

.contact-atmosphere-copy strong {
  font-family: var(--display);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  font-size: clamp(1.9rem, 2.55vw, 2.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.contact-atmosphere-copy p {
  margin: 0;
  max-width: 16.5rem;
  margin-left: auto;
  font-size: 1.04rem;
  line-height: 1.58;
  color: rgba(18, 16, 15, 0.72);
}

.contact-visual {
  position: relative;
  min-height: clamp(35rem, 50vw, 46rem);
  display: block;
  padding: 1.25rem 0.35rem 0.75rem 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.contact-visual::before {
  content: "";
  position: absolute;
  inset: auto -2% 1% 0%;
  height: 23rem;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 94, 45, 0.24), transparent 69%);
  filter: blur(22px);
  z-index: 0;
  pointer-events: none;
}

.contact-atmosphere {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(28rem, 36vw, 38rem);
  margin: 0;
  pointer-events: none;
  transform: translateX(clamp(-14rem, -16vw, -7rem));
}

.contact-atmosphere::before {
  content: "";
  position: absolute;
  inset: 16% 8% 6% 8%;
  background: radial-gradient(circle at center, rgba(255, 94, 45, 0.3), transparent 60%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.contact-atmosphere img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 36px 72px rgba(20, 14, 12, 0.18));
}

.contact::before {
  content: "";
  position: absolute;
  inset: 12% -6% auto 44%;
  height: 27rem;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 94, 45, 0.14), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.contact-title {
  position: relative;
  z-index: 1;
  max-width: 50rem;
}

.contact-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2.5rem;
}

.contact-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: auto;
  padding: 0.05rem 1.8rem 0.45rem 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  font-family: var(--display);
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.contact-links a::before {
  content: "->";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translate(15px,-50%);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
}

.contact-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 1.8rem;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 94, 45, 0.86), rgba(255, 94, 45, 0));
  transform: scaleX(0.42);
  transform-origin: left center;
  opacity: 0.74;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--ink);
  transform: translateX(8px);
}

.contact-links a:hover::after,
.contact-links a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.contact-note {
  position: relative;
  z-index: 1;
  margin-top: 2.3rem;
  color: var(--muted);
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js-ready [data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .process [data-reveal] {
  opacity: 1;
  transform: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--marquee-distance)));
  }
}

@keyframes slow-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes slow-spin-reverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-meta {
    display: none;
  }

  .hero-grid,
  .work-layout,
  .process-layout,
  .capability,
  .contact-layout,
  .manifesto-stage,
  .manifesto-columns {
    grid-template-columns: 1fr;
  }

  .manifesto-aside,
  .contact-visual {
    min-height: auto;
  }

  .manifesto-aside {
    max-width: 24rem;
  }

  .contact-visual {
    width: 100%;
    max-width: 40rem;
    padding-top: 1.5rem;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 1.5rem;
  }

  .contact-atmosphere-copy {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 0;
  }

  .contact-atmosphere {
    position: relative;
    left: auto;
    bottom: auto;
    justify-self: center;
    width: min(100%, 28rem);
    transform: none;
  }

  .hero-side {
    order: 3;
  }

  .hero-side-label {
    writing-mode: initial;
    transform: none;
  }

  .capability-tail {
    justify-self: start;
    text-align: left;
  }

  .project-preview {
    position: relative;
    top: auto;
  }

  .process-steps li,
  .project-row {
    grid-template-columns: 64px 1fr;
  }

  .project-row-copy,
  .capability-tail {
    grid-column: 2 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 1rem 1rem 0.9rem;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-header::after {
    left: 1rem;
    right: 1rem;
  }

  .site-nav {
    justify-content: start;
    gap: 0.8rem 1rem;
  }

  .site-nav a {
    font-size: 0.7rem;
  }

  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-bg-anime {
    width: 11rem;
    right: -6%;
    top: 16%;
  }

  .hero-bg-cutout {
    width: 12rem;
    right: -10%;
    bottom: 8%;
    opacity: 0.1;
  }

  .hero-kicker {
    gap: 0.35rem 0.8rem;
  }

  .hero-kicker span {
    font-size: 0.9rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-figure {
    min-height: 26rem;
  }

  .portrait-shell {
    width: min(100%, 26rem);
  }

  .hero-floating {
    max-width: 13rem;
  }

  .hero-floating-top {
    right: 0;
  }

  .hero-floating-bottom {
    left: 0;
  }

  .section-panel,
  .capabilities,
  .work,
  .contact {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-panel {
    grid-template-columns: 1fr;
  }

  .section-marker {
    position: relative;
    top: auto;
  }

  .process-steps li,
  .project-row {
    grid-template-columns: 1fr;
  }

  .process-steps li:nth-child(2),
  .process-steps li:nth-child(3),
  .process-steps li:nth-child(4) {
    margin-left: 0;
  }

  .manifesto-aside-copy {
    position: relative;
    top: auto;
    left: auto;
    max-width: none;
  }

  .manifesto-portrait,
  .contact-atmosphere {
    justify-self: center;
    width: min(100%, 19.5rem);
  }

  .manifesto-portrait::after {
    left: -0.8rem;
    bottom: 0.8rem;
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .contact-visual {
    gap: 1rem;
  }

  .contact-atmosphere-copy {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    max-width: none;
    justify-self: center;
    text-align: center;
  }

  .contact-links a {
    width: fit-content;
    padding-right: 2.2rem;
  }

  .contact-atmosphere-copy strong {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .contact-atmosphere-copy p {
    margin-left: 0;
    max-width: none;
    font-size: 1rem;
  }

  .project-preview {
    min-height: 24rem;
    padding: 1.5rem;
  }

  .quote-band p {
    padding: 0.8rem 1rem;
  }
}
