:root {
  --bg: #07060d;
  --surface: #0e0c17;
  --surface-2: #151222;
  --text: #f6f3ff;
  --muted: #9d98aa;
  --line: rgba(255, 255, 255, 0.1);
  --violet: #8054ff;
  --violet-bright: #a98cff;
  --pink: #d25bff;
  --cyan: #8ee8ff;
  --font: "Onest", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --page: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--bg);
  background: var(--text);
  font: 500 0.75rem var(--mono);
  transform: translateY(-180%);
}

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

.ambient {
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 1050px;
  overflow: hidden;
  pointer-events: none;
}

.ambient::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, var(--bg) 96%);
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.14;
}

.ambient__orb--one {
  top: -10rem;
  left: 14%;
  width: 36rem;
  height: 36rem;
  background: var(--violet);
}

.ambient__orb--two {
  top: 16rem;
  right: 6%;
  width: 28rem;
  height: 28rem;
  background: var(--pink);
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  min-height: 5.5rem;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  width: clamp(8.6rem, 12vw, 10.8rem);
}

.site-nav {
  display: flex;
  gap: 0.2rem;
  padding: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 11, 21, 0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
}

.site-nav a {
  padding: 0.62rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 200ms ease, background 200ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255,255,255,0.07);
}

.header-cta {
  display: flex;
  justify-self: end;
  gap: 0.7rem;
  align-items: center;
  padding: 0.68rem 0.8rem 0.68rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 500;
  transition: border-color 200ms ease, background 200ms ease;
}

.header-cta i {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.4rem;
  color: var(--text);
  background: linear-gradient(135deg, var(--violet), #5c34c9);
  font-style: normal;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(169, 140, 255, 0.5);
  background: rgba(128, 84, 255, 0.08);
}

.hero {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0 2.5rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--violet-bright);
  font: 500 0.68rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0.58rem 0.85rem;
  border: 1px solid rgba(169, 140, 255, 0.25);
  border-radius: 999px;
  background: rgba(128, 84, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 0 40px rgba(128, 84, 255, 0.08);
}

.eyebrow span {
  color: #d9cbff;
}

.hero h1 {
  margin: 1.7rem auto 0;
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.066em;
}

.hero h1 > span {
  display: block;
}

.hero-accent {
  padding-bottom: 0.09em;
  color: transparent;
  background: linear-gradient(105deg, #f7f4ff 8%, #c6b6ff 45%, #8b5dff 78%, #d979ff 105%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description {
  max-width: 660px;
  margin: 1.6rem auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.15rem;
  border: 1px solid transparent;
  border-radius: 0.65rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.button i {
  font-style: normal;
  font-weight: 400;
}

.button--primary {
  background: linear-gradient(135deg, #8b5cff, #6434dc);
  box-shadow: 0 10px 30px rgba(105, 57, 225, 0.25), inset 0 1px 0 rgba(255,255,255,0.3);
}

.button--ghost {
  border-color: var(--line);
  color: #d0ccd8;
  background: rgba(255,255,255,0.025);
}

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

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 14px 38px rgba(105, 57, 225, 0.38), inset 0 1px 0 rgba(255,255,255,0.35);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(169, 140, 255, 0.35);
  background: rgba(128, 84, 255, 0.06);
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  height: min(55vw, 640px);
  min-height: 430px;
  margin-top: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 50% 58%, rgba(106, 64, 228, 0.19), transparent 28%),
    linear-gradient(180deg, rgba(18, 14, 31, 0.86), rgba(7, 6, 13, 0.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 50px 120px rgba(0,0,0,0.35);
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  transform: translateX(-100%);
  animation: stage-scan 8s ease-in-out infinite;
}

.stage-grid {
  position: absolute;
  right: -15%;
  bottom: -45%;
  left: -15%;
  height: 95%;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(168, 137, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 137, 255, 0.35) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent 5%, #000 70%);
  transform: perspective(420px) rotateX(63deg);
  transform-origin: center top;
}

.stage-light {
  position: absolute;
  bottom: -5%;
  width: 94%;
  max-width: none;
  opacity: 0.54;
  filter: saturate(0.75) hue-rotate(8deg);
  mix-blend-mode: screen;
}

.stage-orbit {
  position: absolute;
  border: 1px solid rgba(171, 141, 255, 0.16);
  border-radius: 50%;
}

.stage-orbit--outer {
  width: min(47vw, 540px);
  height: min(47vw, 540px);
  box-shadow: 0 0 80px rgba(120, 75, 255, 0.06);
}

.stage-orbit--inner {
  width: min(34vw, 390px);
  height: min(34vw, 390px);
  border-style: dashed;
  animation: orbit 35s linear infinite;
}

.hero-object {
  position: relative;
  z-index: 2;
  width: min(40vw, 470px);
  filter: drop-shadow(0 36px 45px rgba(0,0,0,0.48)) drop-shadow(0 0 35px rgba(120, 211, 255, 0.08));
  animation: object-float 5s ease-in-out infinite;
}

.stage-chip,
.stage-status {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(12, 10, 19, 0.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 14px 38px rgba(0,0,0,0.2);
  backdrop-filter: blur(15px);
  font: 400 0.62rem var(--mono);
}

.stage-chip {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border-radius: 0.6rem;
  color: #d8d3e2;
}

.stage-chip span {
  color: var(--violet-bright);
}

.stage-chip--left {
  top: 32%;
  left: 7%;
}

.stage-chip--right {
  top: 23%;
  right: 6%;
}

.stage-status {
  right: 2rem;
  bottom: 2rem;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
}

.stage-status i {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: #76f3b2;
  box-shadow: 0 0 12px #76f3b2;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.hero-proof p {
  margin: 0;
  color: var(--muted);
  font: 400 0.63rem var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-proof ul {
  display: flex;
  gap: clamp(1.4rem, 3vw, 3.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
  color: #c9c5d1;
  font-size: 0.76rem;
}

.hero-proof li::before {
  margin-right: 0.55rem;
  color: var(--violet-bright);
  content: "✦";
  font-size: 0.6rem;
}

.work,
.services,
.about {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(6.5rem, 12vw, 11rem) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: clamp(2.8rem, 5vw, 4.5rem);
}

.section-head h2,
.services-intro h2,
.about-copy h2,
.contact h2 {
  margin: 1rem 0 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.058em;
}

.section-head h2 span,
.contact h2 span {
  color: var(--violet-bright);
}

.section-head > p,
.services-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.3rem;
}

.project-card {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.project-card--wide {
  grid-row: span 2;
}

.project-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--surface);
}

.project-image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
  content: "";
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.8,.2,1), filter 500ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.025);
  filter: brightness(1.07);
}

.project-image--studio {
  height: 770px;
}

.project-image--studio img {
  object-position: center 42%;
}

.project-image--social,
.project-image--identity {
  height: 335px;
}

.project-image--social img {
  object-position: center 20%;
}

.project-image--identity img {
  object-position: center 44%;
}

.image-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(7,6,13,0.68);
  backdrop-filter: blur(12px);
  font: 400 0.58rem var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
}

.project-caption p {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
}

.project-caption span,
.project-caption > i {
  color: var(--muted);
  font: 400 0.58rem var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-caption > i {
  font-style: normal;
}

.services {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 7vw;
  border-top: 1px solid var(--line);
}

.services-intro {
  align-self: start;
  position: sticky;
  top: 3rem;
}

.services-intro h2 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
}

.services-intro > p:last-child {
  max-width: 410px;
  margin-top: 1.7rem;
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0 1.5rem;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: padding 220ms ease, background 220ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  padding-inline: 1rem;
  background: linear-gradient(90deg, rgba(128,84,255,0.06), transparent);
}

.service-card > span {
  position: absolute;
  top: 2.1rem;
  right: 0;
  color: #655f70;
  font: 400 0.58rem var(--mono);
}

.service-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  align-self: start;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(169,140,255,0.2);
  border-radius: 0.8rem;
  color: var(--violet-bright);
  background: linear-gradient(145deg, rgba(128,84,255,0.14), rgba(128,84,255,0.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  font: 500 0.95rem var(--mono);
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.service-card p {
  max-width: 420px;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  border-top: 1px solid var(--line);
}

.briefing-callout,
.faq-home {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(6.5rem, 12vw, 11rem) 0;
  border-top: 1px solid var(--line);
}

.briefing-callout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.briefing-callout__copy {
  position: sticky;
  top: 3rem;
}

.briefing-callout h2,
.faq-home h2 {
  margin: 1rem 0 0;
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.058em;
}

.briefing-callout__copy > p:not(.section-kicker) {
  max-width: 470px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.briefing-callout__copy .button {
  margin-top: 1.8rem;
}

.briefing-flow {
  counter-reset: briefing;
  border-top: 1px solid var(--line);
}

.briefing-flow > div {
  display: grid;
  grid-template-columns: 3.3rem 1fr;
  gap: 0.35rem 1.2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.briefing-flow span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(169,140,255,0.22);
  border-radius: 0.7rem;
  color: var(--violet-bright);
  background: rgba(128,84,255,0.06);
  font: 500 0.62rem var(--mono);
}

.briefing-flow p {
  margin: 0;
  font-size: 1.03rem;
  font-weight: 600;
}

.briefing-flow small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.faq-home {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 7vw;
}

.faq-home__intro > a {
  display: inline-block;
  margin-top: 1.6rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(169,140,255,0.35);
  color: #d5d0de;
  text-decoration: none;
  font-size: 0.75rem;
}

.faq-home__intro i {
  margin-left: 0.4rem;
  color: var(--violet-bright);
  font-style: normal;
}

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

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

.faq-list summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  list-style: none;
  color: #e3dfe8;
  font-size: 0.95rem;
  font-weight: 500;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--violet-bright);
  content: "+";
  font: 400 1rem var(--mono);
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 620px;
  margin: -0.35rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.about-visual {
  position: relative;
}

.about-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--surface);
}

.about-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(44,17,80,0.38));
  content: "";
  mix-blend-mode: color;
}

.about-frame img {
  width: 100%;
  aspect-ratio: 0.85;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.7) contrast(1.04);
}

.about-badge {
  position: absolute;
  right: -1.2rem;
  bottom: 2rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.7rem 0.9rem 0.7rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  color: var(--muted);
  background: rgba(12,10,19,0.82);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(15px);
  font: 400 0.5rem var(--mono);
  letter-spacing: 0.06em;
}

.about-badge b {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.45rem;
  color: var(--text);
  background: linear-gradient(135deg, var(--violet), #4a25a9);
  font-size: 0.65rem;
}

.about-copy h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.about-lead {
  max-width: 570px;
  margin: 1.7rem 0 0;
  color: #d6d2dc;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.about-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.about-text p {
  margin: 0;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin: 2.5rem 0 0;
}

.about-facts div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(255,255,255,0.018);
}

.about-facts dt {
  margin-bottom: 0.5rem;
  color: #6f6979;
  font: 400 0.52rem var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
  color: #cac6d1;
  font-size: 0.67rem;
  line-height: 1.4;
}

.contact {
  position: relative;
  width: var(--page);
  margin: 0 auto clamp(1.5rem, 4vw, 3rem);
  padding: clamp(5rem, 10vw, 9rem) 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(169,140,255,0.2);
  border-radius: 1.4rem;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 110%, rgba(128,84,255,0.38), transparent 47%),
    #0d0a17;
  background-size: 58px 58px, 58px 58px, auto, auto;
}

.contact::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  content: "";
}

.contact-glow {
  position: absolute;
  bottom: -11rem;
  left: 50%;
  width: min(70vw, 760px);
  height: 20rem;
  border: 2px solid rgba(176, 146, 255, 0.65);
  border-radius: 50%;
  box-shadow: 0 0 35px #7b4dff, 0 0 100px rgba(123,77,255,0.65), inset 0 0 35px #7b4dff;
  transform: translateX(-50%);
}

.contact > *:not(.contact-glow) {
  position: relative;
  z-index: 1;
}

.contact h2 {
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.contact-copy {
  max-width: 620px;
  margin: 1.6rem auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.button--light {
  color: var(--bg);
  background: var(--text);
}

.contact-email {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  color: #d7d2df;
  text-decoration: none;
  font-size: 0.75rem;
}

.contact-email i {
  margin-left: 0.4rem;
  color: var(--violet-bright);
  font-style: normal;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  min-height: 6rem;
  margin-inline: auto;
  color: #706a78;
  font: 400 0.55rem var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer img {
  width: 8rem;
  opacity: 0.6;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  justify-self: end;
  color: #9d98a7;
  text-decoration: none;
}

.footer-links {
  display: flex;
  justify-self: end;
  gap: 1.2rem;
}

.footer-links a {
  justify-self: auto;
}

.pointer-glow {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(128,84,255,0.07);
  filter: blur(55px);
  opacity: 0;
  transform: translate3d(calc(var(--pointer-x-px, 0px) - 50%), calc(var(--pointer-y-px, 0px) - 50%), 0);
  transition: opacity 400ms ease;
}

body.has-pointer .pointer-glow {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(.2,.8,.2,1);
}

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

.hero h1 .reveal:nth-child(2) {
  transition-delay: 90ms;
}

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

@keyframes object-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

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

@keyframes stage-scan {
  0%, 30% { transform: translateX(-110%); }
  70%, 100% { transform: translateX(110%); }
}

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

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .project-image--studio {
    height: 620px;
  }

  .project-image--social,
  .project-image--identity {
    height: 260px;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .services-intro {
    position: static;
  }

  .about {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
  }

  .briefing-callout,
  .faq-home {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .briefing-callout__copy {
    position: static;
  }

  .about-text,
  .about-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  :root {
    --page: calc(100% - 28px);
  }

  .site-header {
    min-height: 4.8rem;
  }

  .brand {
    width: 8.2rem;
  }

  .header-cta {
    padding: 0.5rem;
    border: 0;
  }

  .header-cta span {
    display: none;
  }

  .header-cta i {
    width: 2rem;
    height: 2rem;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .eyebrow {
    font-size: 0.54rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-description {
    font-size: 0.88rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 290px;
    margin-inline: auto;
  }

  .hero-stage {
    height: 450px;
    min-height: 0;
    border-radius: 1rem;
  }

  .hero-object {
    width: 76vw;
    max-width: 330px;
  }

  .stage-orbit--outer {
    width: 84vw;
    height: 84vw;
  }

  .stage-orbit--inner {
    width: 62vw;
    height: 62vw;
  }

  .stage-chip {
    font-size: 0.48rem;
  }

  .stage-chip--left {
    top: 18%;
    left: 0.7rem;
  }

  .stage-chip--right {
    top: 29%;
    right: 0.7rem;
  }

  .stage-status {
    right: 50%;
    bottom: 1rem;
    width: max-content;
    font-size: 0.48rem;
    transform: translateX(50%);
  }

  .hero-proof {
    display: block;
    overflow: hidden;
  }

  .hero-proof p {
    margin-bottom: 1rem;
  }

  .hero-proof ul {
    width: max-content;
    gap: 1.3rem;
    font-size: 0.65rem;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-head h2,
  .services-intro h2,
  .about-copy h2 {
    font-size: 2.6rem;
  }

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

  .project-card--wide {
    grid-row: auto;
  }

  .project-image--studio,
  .project-image--social,
  .project-image--identity {
    height: 430px;
  }

  .project-image--social img {
    object-position: center top;
  }

  .service-card {
    grid-template-columns: 3.5rem 1fr;
    gap: 0 0.8rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-visual {
    width: calc(100% - 1rem);
  }

  .about-badge {
    right: -1rem;
  }

  .about-text {
    grid-template-columns: 1fr;
  }

  .about-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-facts div {
    padding: 0.7rem;
  }

  .about-facts dd {
    font-size: 0.57rem;
  }

  .contact {
    padding-inline: 1rem;
  }

  .briefing-callout h2,
  .faq-home h2 {
    font-size: 2.6rem;
  }

  .contact h2 {
    font-size: 2.8rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-email {
    font-size: 0.67rem;
  }

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

  .site-footer p {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
