﻿:root {
  --bg: #09090b;
  --bg-soft: #111114;
  --bg-panel: rgba(18, 18, 22, 0.82);
  --bg-panel-strong: rgba(11, 11, 14, 0.94);
  --bg-start: #040405;
  --bg-mid: #101014;
  --bg-end: #080809;
  --text: #f3efe7;
  --muted: #afb5bb;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #8fa7b4;
  --accent-soft: #ced9df;
  --accent-cool: #617581;
  --accent-rgb: 143, 167, 180;
  --accent-soft-rgb: 206, 217, 223;
  --accent-cool-rgb: 97, 117, 129;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1328px;
  --font-body: "Vazirmatn", sans-serif;
  --font-display: "Syne", "Vazirmatn", sans-serif;
  --button-height: 48px;
  --button-padding-x: 20px;
  --section-padding: 124px;
  --hero-surface-height: 540px;
  --showreel-screen-height: 420px;
  --member-sticky-top: 108px;
  --team-gap: 30px;
  --member-card-min-height: 560px;
  --member-card-bg: rgba(14, 14, 18, 0.96);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  text-align: start;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(900px 700px at 85% -10%, rgba(var(--accent-rgb), 0.18), transparent 60%),
    radial-gradient(760px 620px at 0% 18%, rgba(var(--accent-cool-rgb), 0.18), transparent 55%),
    linear-gradient(180deg, var(--bg-start) 0%, var(--bg-mid) 40%, var(--bg-end) 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("gray-background-flatlay.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  filter: grayscale(1) contrast(1.08) brightness(0.95);
  pointer-events: none;
  z-index: -2;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 82%);
  pointer-events: none;
  z-index: -1;
}

body.modal-open {
  overflow: hidden;
}

body.admin-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.progress-bar {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  z-index: 1000;
  background: linear-gradient(90deg, var(--accent), var(--accent-cool));
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 100;
  width: min(calc(100% - 44px), var(--max-width));
  margin: 18px auto 0;
  padding: 14px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  background: rgba(10, 10, 12, 0.76);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0.12em;
}

.brand-copy {
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  transition: color 180ms ease;
}

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

.header-tools {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.language-switch__button {
  min-width: 42px;
  height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.language-switch__button:hover,
.language-switch__button:focus-visible {
  color: var(--text);
}

.language-switch__button.is-active {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: #0c1215;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  padding: 6px;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-cool));
  color: #0c1215;
  font-weight: 800;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

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

.section {
  width: min(calc(100% - 44px), var(--max-width));
  margin: 0 auto;
  padding: var(--section-padding) 0;
}

.hero {
  min-height: calc(100svh - 96px);
  display: grid;
  align-items: start;
  padding-top: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.eyebrow,
.section-tag,
.floating-label,
.member-role,
.compact-role,
.project-type,
.screen-kicker,
.member-modal__role {
  color: var(--accent-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
}

.hero-mark {
  display: block;
}

.hero-subtitle {
  margin: 0;
  max-width: 20ch;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.28rem, 2.4vw, 2rem);
  line-height: 1.45;
}

.hero-text,
.section-heading,
.about-copy p,
.manifesto-card p,
.showreel-copy p,
.screen-copy p,
.process-card p,
.member-copy p,
.roster-card p,
.support-card-panel p,
.project-card p,
.project-spotlight p,
.contact-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats li,
.manifesto-card,
.service-card,
.process-card,
.project-card,
.roster-card,
.support-card-panel {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-stats li {
  padding: 18px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 2rem;
}

.hero-stats span {
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-pill-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pill-row span,
.contact-notes span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-surface {
  position: relative;
  min-height: var(--hero-surface-height);
  overflow: hidden;
  border-radius: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(140deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-cool-rgb), 0.08));
  box-shadow: var(--shadow);
}

.hero-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(8, 8, 10, 0.86)),
    radial-gradient(circle at top, rgba(var(--accent-soft-rgb), 0.14), transparent 30%);
}

.hero-team-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.94) contrast(1.05);
}

.hero-surface-label {
  position: absolute;
  inset: auto 26px 26px 26px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.hero-surface-label span {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.hero-surface-label strong {
  font-size: clamp(1.28rem, 2vw, 1.85rem);
  line-height: 1.55;
}

.floating-card {
  position: absolute;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  width: min(350px, 74%);
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 10, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.floating-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.floating-card h2 {
  margin: 6px 0;
  font-size: 1.18rem;
}

.floating-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.founder-card {
  inset: auto auto 18px 14px;
}

.support-card {
  inset: 18px 14px auto auto;
}

.scroll-cue {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.scroll-cue::before {
  content: "";
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.manifesto-band {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.band-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 24s linear infinite;
}

.band-track span {
  color: var(--accent-soft);
  font-family: var(--font-display);
  font-size: 1.06rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.band-track span::after {
  content: "•";
  margin-right: 24px;
  color: rgba(255, 255, 255, 0.32);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4.2vw, 4.25rem);
}

.about-grid,
.showreel-panel,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 38px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 28px;
}

.about-copy article,
.showreel-panel,
.contact-panel {
  border-radius: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.03);
}

.about-copy article {
  padding: 30px 32px;
}

.about-copy h3,
.manifesto-card h3,
.showreel-copy h3,
.process-card h3,
.member-copy h3,
.roster-card h3,
.support-card-panel h3,
.project-card h3,
.project-spotlight h3 {
  margin: 0 0 10px;
  font-size: 1.46rem;
}

.about-frame {
  position: relative;
  overflow: hidden;
  border-radius: clamp(26px, 4vw, 36px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-frame img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.92);
}

.about-overlay {
  position: absolute;
  inset: auto 22px 22px 22px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 6, 8, 0.78);
  backdrop-filter: blur(10px);
}

.about-overlay span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.manifesto-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.manifesto-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.16), transparent 48%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 304px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.14), transparent 42%);
}

.service-feature {
  min-height: 344px;
}

.service-index,
.process-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent-soft);
  font-family: var(--font-display);
}

.service-card h3 {
  margin: 18px 0 10px;
  font-size: 1.28rem;
}

.service-meta {
  margin-top: 20px;
  color: var(--accent-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showreel-panel,
.contact-panel {
  padding: 34px;
}

.showreel-screen {
  min-height: var(--showreel-screen-height);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(9, 9, 12, 0.14), rgba(9, 9, 12, 0.9)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.3), transparent 36%),
    radial-gradient(circle at left bottom, rgba(var(--accent-cool-rgb), 0.22), transparent 32%);
}

.screen-copy {
  max-width: 460px;
}

.screen-copy strong {
  display: block;
  margin: 10px 0 12px;
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
}

.screen-thumbs {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.screen-thumbs img {
  width: 112px;
  height: 132px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showreel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showreel-copy ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: grid;
  gap: 12px;
}

.showreel-copy li::before {
  content: "•";
  color: var(--accent);
  margin-left: 10px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  padding: 24px;
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at bottom left, rgba(var(--accent-cool-rgb), 0.16), transparent 42%);
}

.process-card h3 {
  margin-top: 18px;
}

.team-story {
  display: grid;
  gap: var(--team-gap);
  padding-bottom: 28vh;
}

.member-card {
  position: sticky;
  top: var(--member-sticky-top);
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 26px;
  padding: 22px;
  min-height: var(--member-card-min-height);
  border-radius: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background: var(--member-card-bg);
  box-shadow: var(--shadow);
  transform-origin: top center;
  transition:
    transform 420ms ease,
    opacity 420ms ease,
    filter 420ms ease;
  opacity: 0.88;
}

.member-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}

.member-card.is-before {
  opacity: 0;
  transform: translateY(-24px) scale(0.98);
  filter: blur(6px);
  pointer-events: none;
}

.member-card.is-after {
  opacity: 0.55;
  transform: translateY(18px) scale(0.99);
  filter: blur(1px);
}

.member-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
}

.member-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.member-copy blockquote {
  margin: 14px 0 18px;
  font-size: clamp(1.18rem, 2vw, 1.8rem);
  line-height: 1.85;
}

.member-tags,
.contact-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.member-tags {
  margin-bottom: 22px;
}

.member-tags span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.team-support-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.team-boards {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 28px;
  margin-bottom: 28px;
}

.team-board,
.team-board-copy {
  border-radius: 30px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.03);
}

.team-board img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: top center;
}

.team-board-copy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.team-board-copy h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2.15rem);
  line-height: 1.3;
}

.team-board-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.team-board-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.team-board-thumb {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 10, 0.74);
}

.team-board-thumb img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  object-position: top center;
}

.team-board-copy blockquote {
  margin: 0;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.16), transparent 50%);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.9;
}

.brand-system-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.brand-system-copy,
.brand-system-board,
.brand-icon-lab {
  border-radius: clamp(26px, 4vw, 36px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand-system-copy {
  grid-row: 1 / 3;
  padding: 34px;
  display: grid;
  align-content: start;
  gap: 22px;
  background:
    linear-gradient(180deg, rgba(12, 12, 16, 0.9), rgba(8, 8, 11, 0.96)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.16), transparent 40%);
}

.brand-system-copy > p,
.brand-icon-lab__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.brand-pillars,
.brand-system-surfaces__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-pillars span,
.brand-system-surfaces__grid span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-soft);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-system-surfaces {
  display: grid;
  gap: 14px;
}

.brand-system-surfaces strong {
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-system-copy blockquote {
  margin: 0;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.14), transparent 52%);
  line-height: 1.9;
}

.brand-system-board {
  margin: 0;
  overflow: hidden;
  background: rgba(245, 241, 235, 0.98);
}

.brand-system-board--applications {
  grid-column: 2 / 4;
}

.brand-system-board img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: top center;
  background: #f2efe9;
}

.brand-system-board--applications img {
  min-height: 430px;
}

.brand-system-board figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 235, 228, 0.96));
}

.brand-system-board figcaption span {
  color: #111;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-system-board figcaption p {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.7;
}

.brand-icon-lab {
  margin-top: 24px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(12, 12, 16, 0.88), rgba(8, 8, 11, 0.95)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.16), transparent 38%);
}

.brand-icon-lab__intro {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 22px;
}

.brand-icon-lab__intro h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  line-height: 1.2;
}

.brand-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.brand-icon-chip {
  min-height: 176px;
  padding: 20px 18px;
  display: grid;
  align-content: start;
  gap: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top, rgba(var(--accent-rgb), 0.12), transparent 44%);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.brand-icon-chip:hover,
.brand-icon-chip:focus-within {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-soft-rgb), 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top, rgba(var(--accent-rgb), 0.18), transparent 48%);
}

.brand-icon-chip__symbol {
  width: 64px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-soft);
}

.brand-icon-chip__symbol svg {
  width: 30px;
  height: 30px;
}

.brand-icon-chip strong {
  font-size: 1.02rem;
  line-height: 1.4;
}

.brand-icon-chip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.support-card-panel {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px;
}

.support-card-panel img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 20px;
}

.team-roster-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.roster-card {
  min-height: 180px;
  padding: 22px;
}

.projects-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
}

.project-spotlight {
  min-height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.08), rgba(9, 9, 11, 0.92)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.34), transparent 35%),
    radial-gradient(circle at bottom left, rgba(var(--accent-cool-rgb), 0.22), transparent 28%);
}

.project-spotlight .button {
  margin-top: 24px;
  align-self: flex-start;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  min-height: 280px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(11, 11, 14, 0.08), rgba(8, 8, 10, 0.88)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.24), transparent 42%),
    radial-gradient(circle at bottom left, rgba(var(--accent-cool-rgb), 0.18), transparent 34%);
}

.project-card small {
  margin-top: 16px;
  color: var(--accent-soft);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy h2 {
  margin-top: 10px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-links a {
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.contact-notes {
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(243, 239, 231, 0.44);
}

.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 0 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(243, 239, 231, 0.52);
  font-size: 0.88rem;
}

.admin-launcher {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 160;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(12, 12, 15, 0.9);
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.admin-panel {
  position: fixed;
  inset: 0;
  z-index: 170;
  pointer-events: none;
}

.admin-panel.is-open {
  pointer-events: auto;
}

.admin-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 7, 0.55);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.admin-panel.is-open .admin-panel__backdrop {
  opacity: 1;
}

.admin-panel__sheet {
  position: absolute;
  top: 0;
  left: 0;
  width: min(520px, calc(100vw - 20px));
  height: 100%;
  padding: 22px;
  overflow: auto;
  background:
    linear-gradient(180deg, rgba(13, 13, 16, 0.98), rgba(9, 9, 11, 0.98)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.18), transparent 30%);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(-100%);
  transition: transform 260ms ease;
}

.admin-panel.is-open .admin-panel__sheet {
  transform: translateX(0);
}

.admin-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-panel__eyebrow {
  margin: 0 0 8px;
  color: var(--accent-soft);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-panel__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
}

.admin-panel__close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.5rem;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.admin-toolbar__button,
.admin-import span {
  min-height: 44px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.admin-import span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.admin-status {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-panel__content {
  display: grid;
  gap: 14px;
}

.admin-group {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.admin-group summary {
  padding: 18px 18px 16px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.admin-group summary::-webkit-details-marker {
  display: none;
}

.admin-grid {
  padding: 0 18px 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-grid label {
  display: grid;
  gap: 8px;
}

.admin-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-grid input,
.admin-grid textarea,
.admin-grid select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 12px 14px;
}

.admin-grid input[type="range"] {
  padding: 0;
}

.admin-grid textarea {
  resize: vertical;
  min-height: 90px;
}

.admin-span-2 {
  grid-column: 1 / -1;
}

.member-modal[hidden] {
  display: none;
}

.member-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.member-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 7, 0.72);
  backdrop-filter: blur(8px);
}

.member-modal__dialog {
  position: relative;
  width: min(calc(100% - 32px), 760px);
  max-height: calc(100svh - 56px);
  overflow: auto;
  margin: 28px auto;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(16, 16, 20, 0.98), rgba(8, 8, 10, 0.98)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.18), transparent 30%);
  box-shadow: var(--shadow);
}

.member-modal__close {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.5rem;
}

.member-modal__quote {
  margin: 18px 0;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text);
}

.member-modal__body {
  display: grid;
  gap: 14px;
  color: var(--muted);
  line-height: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

body.motion-enhanced {
  --section-padding: 118px;
}

.hero-story {
  position: relative;
  min-height: 100svh;
  padding-top: 44px;
}

.hero-grid--cinematic {
  grid-template-columns: minmax(0, 0.78fr) minmax(620px, 1.18fr);
  align-items: stretch;
  gap: 32px;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 24px;
}

.hero-copy-stack {
  display: grid;
  gap: 20px;
  max-width: 700px;
}

.hero-copy-stack h1 {
  letter-spacing: -0.05em;
  font-weight: 600;
}

.hero-copy-stack .eyebrow {
  margin: 0;
}

.hero-copy-stack .hero-text {
  max-width: 60ch;
  font-size: 1.02rem;
  color: rgba(243, 239, 231, 0.78);
}

.hero-story-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.hero-story-card:last-child {
  grid-column: 1 / -1;
}

.hero-story-card,
.showreel-chapter-card {
  position: relative;
  padding: 22px 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.18), transparent 48%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  opacity: 0.34;
  transform: translateX(18px) scale(0.98);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
  cursor: pointer;
}

.hero-story-card.is-active,
.showreel-chapter-card:hover {
  opacity: 1;
  transform: translateX(0) scale(1);
  border-color: rgba(var(--accent-soft-rgb), 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.26), transparent 52%);
}

.hero-story-card span,
.showreel-chapter-card span,
.about-article-index,
.manifesto-card__index,
.showreel-monitor-hud span {
  display: inline-flex;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.hero-story-card h3,
.showreel-chapter-card h4 {
  margin: 10px 0 8px;
  font-size: 1.12rem;
}

.hero-story-card p,
.showreel-chapter-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.hero-story-card small {
  display: block;
  margin-top: 14px;
  color: rgba(243, 239, 231, 0.52);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-icon-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-icon-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top, rgba(var(--accent-rgb), 0.16), transparent 56%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.hero-icon-chip svg {
  width: 18px;
  height: 18px;
}

.hero-icon-chip em {
  color: rgba(243, 239, 231, 0.74);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-visual {
  min-height: 760px;
  display: grid;
  align-items: start;
  perspective: 1400px;
}

.hero-stage-shell {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: start;
  padding-top: 28px;
}

.hero-aura {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  pointer-events: none;
}

.hero-aura--one {
  inset: 10% auto auto 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.38), transparent 68%);
}

.hero-aura--two {
  inset: auto 0 8% auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(var(--accent-cool-rgb), 0.34), transparent 70%);
}

.hero-stage-hud {
  position: absolute;
  inset: 4% 3% auto auto;
  z-index: 5;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.hero-stage-hud span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(8, 8, 12, 0.56);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero-surface--poster {
  isolate: isolate;
  min-height: clamp(680px, 74vw, 860px);
  background:
    linear-gradient(180deg, rgba(7, 7, 10, 0.1), rgba(7, 7, 10, 0.95)),
    radial-gradient(circle at 18% 16%, rgba(var(--accent-soft-rgb), 0.18), transparent 26%),
    radial-gradient(circle at 78% 22%, rgba(var(--accent-rgb), 0.18), transparent 28%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  transform-style: preserve-3d;
}

.hero-surface--poster::before,
.hero-surface--poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-surface--poster::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 16%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 14%, transparent 86%, rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.08), transparent 38%);
  mix-blend-mode: screen;
  opacity: 0.55;
}

.hero-surface--poster::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(6, 6, 9, 0.08), rgba(6, 6, 9, 0.34) 42%, rgba(6, 6, 9, 0.92) 100%),
    radial-gradient(circle at 50% 110%, rgba(0, 0, 0, 0.66), transparent 46%);
}

.hero-frame-lines,
.hero-scanline,
.hero-title-ghost,
.hero-poster-gridlines,
.hero-stage-rulers,
.hero-cast-card {
  position: absolute;
  pointer-events: none;
}

.hero-frame-lines {
  inset: 14px;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  mask-image: linear-gradient(180deg, transparent, black 12%, black 88%, transparent);
}

.hero-scanline {
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 14%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 6px
    );
  mix-blend-mode: screen;
  opacity: 0.2;
}

.hero-poster-gridlines {
  inset: 0;
  z-index: 3;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 25%, 20% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), black 18%, black 88%, transparent);
}

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

.hero-poster-gridlines::before {
  background:
    linear-gradient(180deg, transparent 0%, rgba(var(--accent-rgb), 0.18) 45%, transparent 100%);
  opacity: 0.5;
}

.hero-poster-gridlines::after {
  inset: 8% 8%;
  border: 1px solid rgba(var(--accent-soft-rgb), 0.16);
  border-radius: 28px;
}

.hero-title-ghost {
  inset: 26px auto auto 26px;
  z-index: 5;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 8.6rem);
  line-height: 0.88;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.08em;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.04);
}

.hero-team-shot--poster {
  inset: -1% -3% -1% -3%;
  z-index: 0;
  width: calc(100% + 6%);
  height: calc(100% + 2%);
  object-position: center center;
  opacity: 0.26;
  filter: grayscale(0.16) saturate(0.74) contrast(1.04) brightness(0.44) blur(1px);
  transform: scale(1.08);
}

.hero-poster-system {
  position: absolute;
  inset: 0;
  z-index: 5;
  transform-style: preserve-3d;
}

.hero-video-stack {
  position: absolute;
  inset: 11% 10% 15% 10%;
  z-index: 4;
  display: grid;
  pointer-events: none;
}

.hero-video-panel {
  grid-area: 1 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(8, 8, 11, 0.84), rgba(6, 6, 9, 0.98)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.2), transparent 34%);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.46);
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.975);
  transition:
    opacity 360ms ease,
    transform 360ms ease,
    border-color 360ms ease;
}

.hero-video-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, transparent 38%, rgba(6, 6, 9, 0.18) 58%, rgba(6, 6, 9, 0.82) 100%);
  pointer-events: none;
}

.hero-video-panel.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  border-color: rgba(var(--accent-soft-rgb), 0.24);
}

.hero-reel-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1) contrast(1.05) brightness(0.94);
}

.hero-video-panel__overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: min(380px, 72%);
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(6, 6, 9, 0.18), rgba(6, 6, 9, 0.84)),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.16), transparent 56%);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.hero-video-panel__overlay span {
  color: var(--accent-soft);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-video-panel__overlay strong {
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  line-height: 1.2;
}

.hero-video-panel__overlay p {
  margin: 0;
  color: rgba(243, 239, 231, 0.76);
  line-height: 1.75;
}

.hero-video-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-video-panel__meta em {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(243, 239, 231, 0.68);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-logo-orbit {
  position: absolute;
  inset: 8% 8% 12% 8%;
  z-index: 1;
  pointer-events: none;
}

.hero-logo-orbit__item {
  position: absolute;
  width: 58px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top, rgba(var(--accent-rgb), 0.18), transparent 60%);
  color: rgba(243, 239, 231, 0.82);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-logo-orbit__item:nth-child(1) {
  inset: 4% auto auto 28%;
}

.hero-logo-orbit__item:nth-child(2) {
  inset: 15% 18% auto auto;
}

.hero-logo-orbit__item:nth-child(3) {
  inset: auto auto 17% 20%;
}

.hero-logo-orbit__item:nth-child(4) {
  inset: auto 12% 10% auto;
}

.hero-logo-orbit__item svg {
  width: 24px;
  height: 24px;
}

.hero-poster-system::before {
  content: "";
  position: absolute;
  inset: 13% 12% 16% 12%;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    radial-gradient(circle at center, rgba(var(--accent-cool-rgb), 0.12), transparent 54%);
}

.hero-cast-card {
  width: clamp(142px, 14vw, 188px);
  padding: 8px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(12, 12, 16, 0.96), rgba(8, 8, 11, 0.9)),
    radial-gradient(circle at top, rgba(var(--accent-rgb), 0.12), transparent 42%);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.hero-cast-card::before {
  content: "GRAY CAST";
  position: absolute;
  inset: 14px 16px auto auto;
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-cast-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 76% center;
  border-radius: 21px;
  filter: saturate(1) contrast(1.04);
}

.hero-cast-card__meta {
  position: absolute;
  inset: auto 14px 14px 14px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(7, 7, 10, 0.16), rgba(7, 7, 10, 0.88)),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.18), transparent 54%);
  backdrop-filter: blur(12px);
}

.hero-cast-card__meta span {
  color: var(--accent-soft);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-cast-card__meta strong {
  font-size: 1rem;
  line-height: 1.5;
}

.hero-cast-card__meta p {
  margin: 0;
  color: rgba(243, 239, 231, 0.72);
  font-size: 0.76rem;
  line-height: 1.65;
}

.hero-cast-card--1 {
  inset: 4% auto auto 2%;
  transform: rotate(-9deg);
}

.hero-cast-card--2 {
  inset: 5% 8% auto auto;
  transform: rotate(8deg);
}

.hero-cast-card--3 {
  inset: 32% auto auto 7%;
  transform: rotate(-5deg);
}

.hero-cast-card--4 {
  inset: 35% 0 auto auto;
  transform: rotate(6deg);
}

.hero-cast-card--5 {
  inset: auto auto 4% 17%;
  transform: rotate(-4deg);
}

.hero-cast-card--6 {
  inset: auto 8% 5% auto;
  transform: rotate(5deg);
}

.hero-stage-rulers {
  inset: auto auto 30px 26px;
  z-index: 5;
  display: grid;
  gap: 8px;
}

.hero-stage-rulers span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-stage-rulers span::before {
  content: "";
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-surface-label {
  inset: auto 30px 28px auto;
  z-index: 5;
  max-width: 320px;
}

.about-grid--cinematic {
  gap: 42px;
  align-items: stretch;
}

.about-article-card {
  position: relative;
  overflow: hidden;
}

.about-article-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.07), transparent 38%);
  pointer-events: none;
}

.about-article-index {
  margin-bottom: 12px;
}

.about-frame {
  min-height: 100%;
}

.about-video-float {
  position: absolute;
  inset: auto 28px 126px auto;
  z-index: 4;
  width: min(230px, 36%);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(8, 8, 11, 0.88), rgba(6, 6, 9, 0.98)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.18), transparent 42%);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.38);
}

.about-video-float video {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.94) contrast(1.04) brightness(0.92);
}

.about-video-float__meta {
  display: grid;
  gap: 4px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.16), transparent 60%);
}

.about-video-float__meta span {
  color: var(--accent-soft);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-video-float__meta strong {
  font-size: 1rem;
  line-height: 1.4;
}

.about-film-strip {
  position: absolute;
  inset: 24px 24px auto auto;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.about-film-strip span {
  width: 74px;
  height: 92px;
  padding: 6px;
  border-radius: 16px;
  background: rgba(7, 7, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.about-film-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
}

.about-icon-row {
  position: absolute;
  inset: auto auto 22px 22px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-icon-row__item {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 10, 0.78);
  color: var(--accent-soft);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.about-icon-row__item svg {
  width: 20px;
  height: 20px;
}

.manifesto-grid--story {
  gap: 20px;
}

.manifesto-card {
  position: relative;
}

.manifesto-card__index {
  margin-bottom: 12px;
}

.showreel-panel--cinematic {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: stretch;
}

.showreel-screen--monitor {
  position: relative;
  min-height: clamp(420px, 62vw, 560px);
  padding: 22px;
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(7, 7, 10, 0.84), rgba(7, 7, 10, 0.96)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.24), transparent 30%),
    radial-gradient(circle at bottom left, rgba(var(--accent-cool-rgb), 0.18), transparent 24%);
}

.showreel-screen--monitor::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 7px
    );
  mix-blend-mode: screen;
  opacity: 0.16;
  pointer-events: none;
}

.showreel-monitor-hud {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.showreel-screen-stage {
  position: relative;
  z-index: 1;
  min-height: 320px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.9fr);
  gap: 24px;
  align-items: center;
}

.showreel-screen-copy {
  max-width: 380px;
}

.showreel-screen-copy strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  line-height: 1.25;
}

.showreel-screen-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
}

.showreel-visual-stack {
  position: relative;
  min-height: 300px;
}

.showreel-frame {
  position: absolute;
  inset: auto;
  width: clamp(160px, 24vw, 250px);
  aspect-ratio: 4 / 5;
  padding: 8px;
  border-radius: 26px;
  background: rgba(8, 8, 12, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.showreel-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.showreel-frame--1 {
  inset: 10% auto auto 0;
  transform: rotate(-7deg);
}

.showreel-frame--2 {
  inset: 0 8% auto auto;
  transform: rotate(5deg);
}

.showreel-frame--3 {
  inset: auto 0 0 auto;
  transform: rotate(11deg);
}

.showreel-word-strip {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showreel-word-strip span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.showreel-copy {
  gap: 18px;
}

.showreel-chapter-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 10px;
}

.showreel-chapter-card h4 {
  font-size: 1rem;
}

.showreel-chapter-card {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .hero-grid--cinematic,
  .showreel-panel--cinematic {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-stage-shell {
    min-height: 620px;
  }

  .hero-stage-hud {
    inset: 4% 18px auto auto;
  }

  .hero-cast-card {
    width: clamp(140px, 22vw, 210px);
  }

  .hero-video-stack {
    inset: 12% 10% 16% 10%;
  }

  .hero-cast-card--2 {
    inset-inline-end: 12%;
  }

  .hero-cast-card--4 {
    inset-inline-end: 4%;
  }

  .hero-cast-card--5 {
    inset-inline-end: 20%;
  }

  .showreel-screen-stage {
    grid-template-columns: 1fr;
  }

  .showreel-visual-stack {
    min-height: 250px;
  }

  .about-video-float {
    width: min(210px, 34%);
  }
}

@media (max-width: 900px) {
  .hero-story {
    min-height: auto;
  }

  .hero-visual,
  .hero-stage-shell {
    min-height: 540px;
  }

  .hero-story-cards,
  .showreel-chapter-grid {
    grid-template-columns: 1fr;
  }

  .hero-story-card {
    opacity: 1;
    transform: none;
  }

  .hero-stage-hud {
    display: none;
  }

  .hero-surface--poster {
    min-height: 560px;
  }

  .hero-icon-rail {
    gap: 10px;
  }

  .hero-video-stack {
    inset: 10% 7% 14% 7%;
  }

  .hero-video-panel__overlay {
    max-width: min(360px, 82%);
  }

  .hero-cast-card {
    width: clamp(128px, 25vw, 176px);
  }

  .hero-cast-card--1 {
    inset: 4% auto auto 2%;
  }

  .hero-cast-card--2 {
    inset: 9% 10% auto auto;
  }

  .hero-cast-card--3 {
    inset: 33% auto auto 10%;
  }

  .hero-cast-card--4 {
    inset: 38% 0 auto auto;
  }

  .hero-cast-card--5 {
    inset: auto 18% 8% auto;
  }

  .hero-cast-card--6 {
    inset: auto 3% 10% auto;
  }

  .about-film-strip {
    inset: auto 18px 18px auto;
  }

  .about-video-float {
    inset: auto 18px 110px auto;
    width: min(188px, 38%);
  }

  .about-icon-row {
    inset: auto auto 18px 18px;
  }
}

@media (max-width: 640px) {
  .hero-copy-stack {
    gap: 14px;
  }

  .hero-grid--cinematic {
    gap: 18px;
  }

  .hero-copy {
    order: 2;
    gap: 18px;
  }

  .hero-visual {
    order: 1;
  }

  .hero-icon-rail {
    gap: 8px;
  }

  .hero-icon-chip {
    padding: 8px 12px;
  }

  .hero-icon-chip em {
    font-size: 0.64rem;
  }

  .hero-stage-shell,
  .hero-visual {
    min-height: 500px;
  }

  .hero-title-ghost {
    inset: 18px auto auto 18px;
    font-size: 3.3rem;
  }

  .hero-surface--poster {
    min-height: 500px;
  }

  .hero-video-stack {
    inset: 12% 8% 20% 8%;
  }

  .hero-video-panel {
    border-radius: 24px;
  }

  .hero-video-panel__overlay {
    inset: auto 14px 14px 14px;
    max-width: calc(100% - 28px);
    padding: 14px;
    border-radius: 18px;
  }

  .hero-video-panel__meta em {
    font-size: 0.6rem;
  }

  .hero-logo-orbit {
    display: none;
  }

  .hero-cast-card {
    width: min(34vw, 142px);
    padding: 6px;
    border-radius: 20px;
  }

  .hero-cast-card img {
    border-radius: 15px;
  }

  .hero-cast-card__meta {
    inset: auto 10px 10px 10px;
    padding: 10px 11px;
    border-radius: 14px;
  }

  .hero-cast-card__meta span {
    font-size: 0.56rem;
  }

  .hero-cast-card__meta strong {
    font-size: 0.84rem;
  }

  .hero-cast-card--1 {
    inset: 8% auto auto 0;
  }

  .hero-cast-card--2 {
    inset: 10% 4% auto auto;
  }

  .hero-cast-card--3 {
    inset: 37% auto auto 4%;
  }

  .hero-cast-card--4 {
    inset: 39% -2% auto auto;
  }

  .hero-cast-card--5 {
    inset: auto 16% 12% auto;
  }

  .hero-cast-card--6 {
    inset: auto 2% 12% auto;
  }

  .hero-stage-rulers {
    inset: auto auto 20px 18px;
    gap: 6px;
  }

  .hero-stage-rulers span::before {
    width: 28px;
  }

  .hero-surface-label {
    inset: auto 18px 18px auto;
    max-width: 220px;
  }

  .hero-story-card,
  .showreel-chapter-card {
    padding: 16px;
    border-radius: 18px;
  }

  .about-film-strip {
    display: none;
  }

  .about-video-float {
    inset: auto 12px 92px auto;
    width: 148px;
    border-radius: 18px;
  }

  .about-video-float__meta {
    padding: 10px 12px 12px;
  }

  .about-icon-row {
    gap: 8px;
  }

  .about-icon-row__item {
    width: 42px;
  }

  .showreel-screen--monitor {
    min-height: 420px;
    padding: 18px;
  }

  .showreel-frame {
    width: 140px;
    border-radius: 22px;
  }

  .showreel-frame--1 {
    inset: 18% auto auto 0;
  }

  .showreel-frame--2 {
    inset: 0 0 auto auto;
  }

  .showreel-frame--3 {
    inset: auto 6% 0 auto;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  .hero-story-card,
  .showreel-chapter-card,
  .service-card,
  .process-card,
  .project-card,
  .project-spotlight,
  .support-card-panel,
  .roster-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.section-intro {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.9;
}

.showreel-slot-grid {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.showreel-slot-card,
.project-requirements-card,
.motion-lab-card,
.contact-mode-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(8, 8, 10, 0.66)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.16), transparent 44%);
}

.showreel-slot-card {
  padding: 18px 18px 20px;
}

.showreel-slot-card::after,
.project-requirements-card::after,
.motion-lab-card::after,
.contact-mode-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 700ms ease;
  pointer-events: none;
}

.showreel-slot-card:hover::after,
.project-requirements-card:hover::after,
.motion-lab-card:hover::after,
.contact-mode-card:hover::after {
  transform: translateX(100%);
}

.showreel-slot-card span,
.motion-lab-card__meta span,
.contact-mode-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-soft);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showreel-slot-card h4,
.motion-lab-card h3,
.project-requirements-card h3,
.contact-mode-card h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
}

.showreel-slot-card p,
.motion-lab-card p,
.project-requirements-card p,
.contact-mode-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.motion-lab {
  position: relative;
}

.motion-lab::before {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  border-radius: 40px;
  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 top right, rgba(var(--accent-rgb), 0.16), transparent 34%);
  background-size: 36px 36px, 36px 36px, auto;
  opacity: 0.42;
  pointer-events: none;
}

.motion-lab-grid,
.contact-modes {
  position: relative;
  z-index: 1;
}

.motion-lab-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.motion-lab-card {
  padding: 24px;
  min-height: 280px;
}

.motion-lab-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.motion-lab-card__meta strong {
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motion-lab-card__needs,
.projects-requirements {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.motion-lab-card__needs li,
.projects-requirements p {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.motion-lab-notes {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.motion-lab-notes span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-soft);
}

.project-requirements-card {
  padding: 24px;
  min-height: 100%;
}

.projects-grid {
  grid-column: 1 / -1;
}

.contact-panel {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.72fr) minmax(320px, 0.92fr);
}

.contact-modes {
  display: grid;
  gap: 12px;
}

.contact-mode-card {
  padding: 18px;
}

.portrait-lab-board {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 34px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(11, 11, 14, 0.82), rgba(8, 8, 10, 0.94)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.16), transparent 32%);
  box-shadow: var(--shadow);
}

.portrait-lab-board__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.portrait-lab-board__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portrait-lab-board__eyebrow span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-soft);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portrait-lab-board__references {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(360px, 100%);
}

.portrait-lab-reference {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.portrait-lab-reference img {
  width: 100%;
  height: 100%;
  min-height: 116px;
  object-fit: cover;
  object-position: top center;
}

.portrait-treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.portrait-treatment-card {
  display: grid;
  gap: 14px;
}

.portrait-treatment-card__stage {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #09090c;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.portrait-treatment-card__default,
.portrait-treatment-card__treated {
  position: absolute;
  inset: 0;
}

.portrait-treatment-card__default img,
.portrait-treatment-card__treated img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.portrait-treatment-card__treated {
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

.portrait-treatment-card__default {
  transition:
    transform 360ms ease,
    filter 360ms ease,
    opacity 360ms ease;
}

.portrait-treatment-card:hover .portrait-treatment-card__default,
.portrait-treatment-card:focus-within .portrait-treatment-card__default {
  opacity: 0.28;
  transform: scale(1.03);
  filter: blur(1px) grayscale(0.18);
}

.portrait-treatment-card:hover .portrait-treatment-card__treated,
.portrait-treatment-card:focus-within .portrait-treatment-card__treated {
  opacity: 1;
  transform: scale(1);
}

.portrait-treatment-card__treated::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.portrait-treatment-card__badge {
  position: absolute;
  inset: auto 14px 14px 14px;
  z-index: 1;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(7, 7, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.5;
}

.portrait-treatment-card__toggle {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 10, 0.8);
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.portrait-treatment-card__meta span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-soft);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portrait-treatment-card__meta h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.portrait-treatment-card__meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.portrait-lab-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.portrait-lab-notes span {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  line-height: 1.7;
}

.portrait-lab-quote {
  margin: 0;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.16), transparent 54%);
  color: var(--text);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.8;
}

.portrait-treatment-card--character-shift .portrait-treatment-card__treated img {
  filter: saturate(0.94) contrast(1.04);
}

.portrait-treatment-card--storyboard-shift .portrait-treatment-card__treated img {
  filter: saturate(0.88) contrast(1.08);
}

.portrait-treatment-card--rhythm-shift .portrait-treatment-card__treated img {
  filter: saturate(0.9) contrast(1.12);
}

@media (prefers-reduced-motion: reduce) {
  .showreel-slot-card,
  .motion-lab-card,
  .project-requirements-card,
  .contact-mode-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20%);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .about-grid,
  .showreel-panel,
  .contact-panel,
  .projects-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 600px;
  }

  .manifesto-grid,
  .process-grid,
  .team-roster-grid,
  .motion-lab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-boards,
  .portrait-treatment-grid,
  .portrait-lab-notes {
    grid-template-columns: 1fr;
  }

  .brand-system-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-system-copy {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .brand-system-board--applications {
    grid-column: 1 / -1;
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 14px 16px;
    border-radius: 28px;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: start;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .header-tools {
    gap: 8px;
  }

  .language-switch {
    gap: 4px;
    padding: 3px;
  }

  .language-switch__button {
    min-width: 38px;
    height: 34px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .brand {
    justify-self: center;
    gap: 8px;
  }

  .brand-copy {
    display: none;
  }

  .brand-mark {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .hero-stats,
  .projects-grid,
  .team-support-grid,
  .manifesto-grid,
  .process-grid,
  .team-roster-grid,
  .motion-lab-grid,
  .contact-modes {
    grid-template-columns: 1fr;
  }

  .team-boards,
  .portrait-treatment-grid {
    grid-template-columns: 1fr;
  }

  .brand-system-layout {
    grid-template-columns: 1fr;
  }

  .brand-system-copy,
  .brand-system-board--applications {
    grid-column: auto;
    grid-row: auto;
  }

  .brand-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .member-card,
  .support-card-panel,
  .team-boards {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .member-card {
    position: relative;
    top: 0;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .member-image img,
  .support-card-panel img,
  .team-board img {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .section {
    width: min(calc(100% - 24px), var(--max-width));
    padding: 84px 0;
  }

  .site-header {
    width: min(calc(100% - 24px), var(--max-width));
    top: 12px;
    margin-top: 12px;
    padding: 12px 58px 12px 14px;
    gap: 10px;
    grid-template-columns: auto 1fr;
  }

  .brand {
    gap: 6px;
  }

  .brand-mark {
    font-size: 0.92rem;
  }

  .header-tools {
    position: fixed;
    top: 84px;
    left: 18px;
    right: auto;
    transform: none;
    justify-self: auto;
    z-index: 140;
  }

  html[dir="rtl"] .header-tools {
    left: 18px;
    right: auto;
  }

  .language-switch {
    gap: 2px;
    padding: 2px;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(16px);
  }

  .language-switch__button {
    min-width: 32px;
    height: 30px;
    padding: 0 8px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

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

  .hero h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.9rem);
    line-height: 0.98;
  }

  .hero-subtitle {
    max-width: 16ch;
    font-size: 1.06rem;
    line-height: 1.52;
  }

  .hero-copy-stack,
  .hero-copy-stack .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .hero-stats li {
    padding: 14px 12px;
  }

  .hero-stats strong {
    font-size: 1.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-stats span {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .hero-surface {
    min-height: 430px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-stage-shell {
    min-height: 430px;
    padding-top: 6px;
  }

  .floating-card {
    width: calc(100% - 24px);
    grid-template-columns: 72px 1fr;
    padding: 12px;
  }

  .founder-card {
    inset: auto 12px 12px auto;
  }

  .support-card {
    inset: 12px 12px auto auto;
  }

  .about-frame img {
    min-height: 380px;
  }

  .screen-thumbs {
    justify-content: flex-start;
  }

  .screen-thumbs img {
    width: 88px;
    height: 108px;
  }

  .member-modal__dialog {
    width: min(calc(100% - 20px), 760px);
    margin: 10px auto;
    max-height: calc(100svh - 20px);
    padding: 22px;
  }

  .admin-panel__sheet {
    width: 100vw;
    padding: 16px;
  }

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

  .admin-span-2 {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 28px;
  }

  .motion-lab::before {
    inset: 90px 0 0;
    background-size: 22px 22px, 22px 22px, auto;
  }

  .project-requirements-card,
  .showreel-slot-card,
  .motion-lab-card,
  .contact-mode-card,
  .portrait-lab-board {
    border-radius: 20px;
  }

  .team-board-copy,
  .portrait-lab-board,
  .brand-system-copy,
  .brand-icon-lab {
    padding: 18px;
  }

  .team-board-thumbs,
  .portrait-lab-board__references,
  .portrait-lab-notes {
    grid-template-columns: 1fr;
  }

  .brand-icon-grid {
    grid-template-columns: 1fr;
  }

  .portrait-lab-board__header {
    flex-direction: column;
  }

  .portrait-treatment-card__stage {
    aspect-ratio: 4 / 5;
  }
}
