@font-face {
  font-family: "Involve";
  src: url("./assets/fonts/Involve-Regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Involve";
  src: url("./assets/fonts/Involve-Medium.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Involve";
  src: url("./assets/fonts/Involve-SemiBold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Involve";
  src: url("./assets/fonts/Involve-Bold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700 900;
}

@font-face {
  font-family: "Arkhip";
  src: url("./assets/fonts/Arkhip-Regular.otf") format("opentype");
  font-display: swap;
}

:root {
  --black: #050507;
  --black-2: #0a0b0f;
  --white: #f7f8f4;
  --muted: rgba(247, 248, 244, 0.68);
  --soft: rgba(247, 248, 244, 0.1);
  --line: rgba(247, 248, 244, 0.16);
  --green: #39f0a0;
  --green-2: #a8ffd9;
  --purple: #8f62ff;
  --purple-2: #d8c9ff;
  --radius: 8px;
  --max: 1180px;
  --font-main: "Involve", "Segoe UI", Arial, sans-serif;
  --font-button: "Arkhip", "Segoe UI", Arial, sans-serif;
  --font-display: var(--font-main);
  --font-body: var(--font-main);
}

@property --spin {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(120deg, rgba(57, 240, 160, 0.2), transparent 28%, rgba(143, 98, 255, 0.22) 58%, transparent 82%),
    conic-gradient(from var(--spin), rgba(57, 240, 160, 0.22), rgba(5, 5, 7, 0.08), rgba(143, 98, 255, 0.22), rgba(5, 5, 7, 0.08), rgba(57, 240, 160, 0.22));
  animation: backgroundSpin 18s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 90px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.05));
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.animated-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 7, 0.25), rgba(5, 5, 7, 0.95)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.025) 18px 19px);
  animation: backdropDrift 14s ease-in-out infinite alternate;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--purple));
  box-shadow: 0 0 24px rgba(57, 240, 160, 0.4);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 5, 7, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 7, 0.96);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateX(-50%) translateY(-4px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-display);
}

.brand-mark span {
  background: linear-gradient(90deg, var(--white), var(--green-2), var(--purple-2));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textFlow 7s ease-in-out infinite;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.header-action {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  color: rgba(247, 248, 244, 0.72);
  font-size: 14px;
  font-family: var(--font-body);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.header-action:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header-action {
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-button);
}

.theme-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  min-height: 36px;
  padding: 3px;
  border: 1px solid rgba(21, 24, 22, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.45);
}

.theme-option {
  min-width: 76px;
  border: 0;
  border-radius: 4px;
  color: rgba(21, 24, 22, 0.62);
  background: transparent;
  font-family: var(--font-button);
  font-size: 12px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.theme-option:hover {
  color: #101411;
}

.theme-option.is-active {
  color: #07120d;
  background: linear-gradient(100deg, rgba(34, 216, 137, 0.92), rgba(216, 201, 255, 0.86));
  box-shadow: 0 10px 24px rgba(34, 216, 137, 0.18);
}

.section-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  scroll-margin-top: 110px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  min-height: 92vh;
  padding: 150px 0 34px;
}

.hero-inner {
  max-width: 900px;
}

.eyebrow,
.section-kicker,
.format-topline {
  color: var(--green-2);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.96;
  font-weight: 800;
}

.hero-lead {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(247, 248, 244, 0.78);
  font-size: 23px;
  line-height: 1.42;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-button);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-action {
  color: #05100b;
  background: linear-gradient(90deg, var(--green), var(--purple-2));
  box-shadow: 0 12px 36px rgba(57, 240, 160, 0.22);
}

.secondary-action {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.primary-action::after,
.secondary-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-120%);
}

.primary-action:hover::after,
.secondary-action:hover::after {
  animation: buttonSheen 850ms ease;
}

.hero-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(48px, 8vh, 96px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-strip span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: rgba(247, 248, 244, 0.78);
  background: rgba(5, 5, 7, 0.66);
  font-size: 14px;
}

.intro-grid,
.visual-section,
.audience-section,
.contact-section,
.case-placeholders {
  padding: 76px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.intro-copy h2,
.section-heading h2,
.visual-note h2,
.audience-copy h2,
.contact-panel h2 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.18;
  font-weight: 800;
}

.intro-text,
.visual-note p,
.contact-panel p {
  color: rgba(247, 248, 244, 0.72);
  font-size: 18px;
  line-height: 1.72;
}

.services-section,
.approach-section,
.formats-section {
  padding: 92px 0;
}

.section-heading {
  display: flex;
  max-width: 780px;
  flex-direction: column;
  margin-bottom: 32px;
}

.service-grid,
.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}

.service-card,
.format-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 7, 0.66);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.service-card::before,
.format-card::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(57, 240, 160, 0.18), transparent 38%, rgba(143, 98, 255, 0.18));
  transition: opacity 260ms ease;
}

.service-card:hover,
.format-card:hover {
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-6px);
}

.service-card:hover::before,
.format-card:hover::before,
.contact-panel:hover::before {
  opacity: 1;
}

.service-number {
  position: relative;
  z-index: 1;
  color: rgba(247, 248, 244, 0.34);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.service-card h3,
.format-card h3,
.process-step h3 {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.28;
}

.service-card p,
.format-card p,
.process-step p {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: rgba(247, 248, 244, 0.68);
  font-size: 15px;
  line-height: 1.58;
}

.service-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.service-meta span,
.audience-tags span,
.contact-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(247, 248, 244, 0.7);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
}

.visual-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.visual-placeholder,
.mini-placeholder {
  position: relative;
  min-height: 420px;
  border: 1px dashed rgba(247, 248, 244, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(57, 240, 160, 0.16), transparent 38%, rgba(143, 98, 255, 0.16)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px),
    rgba(5, 5, 7, 0.54);
  overflow: hidden;
}

.visual-placeholder::before,
.mini-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.visual-placeholder span,
.mini-placeholder span {
  position: absolute;
  top: 24px;
  left: 24px;
  color: rgba(247, 248, 244, 0.58);
  font-size: 12px;
  text-transform: uppercase;
}

.visual-placeholder strong,
.mini-placeholder strong {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: rgba(247, 248, 244, 0.82);
  font-size: 24px;
  line-height: 1.2;
}

.visual-project-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.visual-project-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.9) contrast(1.08) brightness(0.78);
  transform: scale(1.02);
  transition: transform 700ms ease, filter 700ms ease, opacity 700ms ease;
}

.visual-project-link::before {
  z-index: 1;
}

.visual-project-link::after {
  z-index: 2;
}

.visual-project-link span,
.visual-project-link strong,
.visual-project-link em {
  z-index: 3;
}

.visual-project-link strong {
  right: 170px;
  top: 58px;
  bottom: auto;
  max-width: 520px;
  color: rgba(247, 248, 244, 0.9);
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.visual-project-link em {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: rgba(247, 248, 244, 0.84);
  background: rgba(5, 5, 7, 0.54);
  font-family: var(--font-button);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0;
}

.visual-project-link:hover img {
  opacity: 0.94;
  filter: saturate(1.04) contrast(1.12) brightness(0.86);
  transform: scale(1.07);
}

.visual-note {
  padding-left: 22px;
}

.visual-note p:last-child {
  margin-top: 18px;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-step {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 7, 0.58);
}

.process-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #04110b;
  background: var(--green);
  font-weight: 800;
}

.process-step h3 {
  margin-top: 0;
}

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

.format-card {
  min-height: 360px;
}

.format-card h3 {
  margin-top: 26px;
}

.format-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.format-card li {
  color: rgba(247, 248, 244, 0.74);
  font-size: 14px;
}

.format-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--green), var(--purple));
  vertical-align: 1px;
}

.audience-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-tags span {
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
}

.case-placeholders,
.project-showcase {
  display: grid;
  gap: 14px;
}

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

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

.featured-project {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  min-height: 420px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(57, 240, 160, 0.12), transparent 42%, rgba(143, 98, 255, 0.14)),
    rgba(5, 5, 7, 0.66);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.featured-project::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(ellipse at var(--pointer-x, 50%) var(--pointer-y, 0%), rgba(57, 240, 160, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(57, 240, 160, 0.1), transparent 44%, rgba(143, 98, 255, 0.16));
  transition: opacity 260ms ease;
}

.featured-project:hover {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 30px 96px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.featured-project:hover::before {
  opacity: 1;
}

.project-preview {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 380px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.project-preview img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transform: scale(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}

.featured-project:hover .project-preview img {
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.06);
}

.project-info {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 24px 18px 24px 0;
}

.project-info h2 {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.12;
}

.project-info p:not(.section-kicker) {
  margin-top: 18px;
  color: rgba(247, 248, 244, 0.7);
  font-size: 16px;
  line-height: 1.64;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.project-tags span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(247, 248, 244, 0.7);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
}

.project-info .secondary-action {
  width: fit-content;
  margin-top: 30px;
}

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

.video-project,
.image-project {
  position: relative;
  min-height: 420px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(57, 240, 160, 0.1), transparent 42%, rgba(143, 98, 255, 0.12)),
    rgba(5, 5, 7, 0.62);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.video-project::before,
.image-project::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(ellipse at var(--pointer-x, 50%) var(--pointer-y, 0%), rgba(57, 240, 160, 0.16), transparent 40%),
    linear-gradient(135deg, rgba(57, 240, 160, 0.08), transparent 48%, rgba(143, 98, 255, 0.14));
  transition: opacity 260ms ease;
}

.video-project:hover,
.image-project:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.video-project:hover::before,
.image-project:hover::before {
  opacity: 1;
}

.video-frame,
.image-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  border-radius: 7px;
  background: rgba(5, 5, 7, 0.82);
  overflow: hidden;
}

.video-frame video,
.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050507;
}

.image-frame img {
  filter: saturate(0.98) contrast(1.04);
  transition: transform 700ms ease, filter 700ms ease;
}

.lescha-project .image-frame img {
  object-position: left center;
}

.ms-project .image-frame {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 58%),
    #050507;
}

.ms-project .image-frame img {
  object-fit: contain;
  padding: 10px;
}

.image-project:hover .image-frame img {
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.04);
}

.ms-project:hover .image-frame img {
  transform: scale(1.015);
}

.video-project-copy,
.image-project-copy {
  position: relative;
  z-index: 1;
  padding: 22px 6px 4px;
}

.video-project-copy h3,
.image-project-copy h3 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.18;
}

.video-project-copy p:not(.section-kicker),
.image-project-copy p:not(.section-kicker) {
  margin-top: 14px;
  color: rgba(247, 248, 244, 0.7);
  font-size: 15px;
  line-height: 1.58;
}

.video-project-copy .secondary-action,
.image-project-copy .secondary-action {
  width: fit-content;
  margin-top: 24px;
}

.mini-placeholder {
  min-height: 230px;
}

.mini-placeholder strong {
  font-size: 20px;
}

.contact-panel {
  position: relative;
  max-width: 900px;
  min-height: 360px;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 7, 0.72);
  overflow: hidden;
}

.contact-panel h2,
.contact-panel p,
.contact-actions {
  position: relative;
}

.contact-panel p {
  max-width: 700px;
  margin-top: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(247, 248, 244, 0.58);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes backgroundSpin {
  to {
    --spin: 360deg;
  }
}

@keyframes backdropDrift {
  from {
    transform: translateY(0);
    opacity: 0.72;
  }
  to {
    transform: translateY(-28px);
    opacity: 0.96;
  }
}

@keyframes textFlow {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes buttonSheen {
  to {
    transform: translateX(120%);
  }
}

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

  .main-nav {
    display: none;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-strip,
  .service-grid,
  .format-grid,
  .case-placeholders,
  .featured-project,
  .intro-grid,
  .visual-section,
  .audience-section {
    grid-template-columns: 1fr;
  }

.hero-strip {
    position: static;
    margin-top: 52px;
  }

  .visual-note {
    padding-left: 0;
  }

  .service-card,
  .format-card,
  .project-preview {
    min-height: auto;
  }

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

  .project-info {
    padding: 12px 4px 8px;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .site-footer {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .site-header {
    top: 12px;
    left: 12px;
    right: auto;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    gap: 10px;
    padding: 10px;
    justify-content: space-between;
    transform: none;
  }

  .site-header.is-scrolled {
    transform: translateY(-4px);
  }

  .brand-mark,
  .header-action {
    font-size: 13px;
  }

  .header-action {
    display: none;
  }

  .theme-switch {
    justify-self: end;
  }

  .theme-option {
    min-width: 68px;
    font-size: 11px;
  }

  .hero {
    min-height: 88vh;
    padding: 118px 0 54px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-inner,
  .hero-lead {
    width: 100%;
    max-width: 340px;
  }

  .hero-lead {
    overflow-wrap: anywhere;
  }

  .hero-lead,
  .intro-text,
  .visual-note p,
  .contact-panel p {
    font-size: 16px;
  }

  .intro-copy h2,
  .section-heading h2,
  .visual-note h2,
  .audience-copy h2,
  .contact-panel h2 {
    font-size: 30px;
  }

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

  .visual-placeholder {
    min-height: 300px;
    transform: none !important;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-panel {
    padding: 26px;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

/* Light visual direction */
:root {
  --black: #fbfcf7;
  --black-2: #edf7f0;
  --white: #151816;
  --muted: rgba(21, 24, 22, 0.68);
  --soft: rgba(21, 24, 22, 0.08);
  --line: rgba(21, 24, 22, 0.14);
  --green: #22d889;
  --green-2: #08754f;
  --purple: #7657ee;
  --purple-2: #efeaff;
}

html {
  background: #fbfcf7;
}

body {
  color: var(--white);
  background: #fbfcf7;
}

body::before {
  background:
    linear-gradient(118deg, rgba(34, 216, 137, 0.3), transparent 28%, rgba(118, 87, 238, 0.26) 58%, transparent 84%),
    conic-gradient(from var(--spin), rgba(34, 216, 137, 0.34), rgba(255, 255, 255, 0.64), rgba(118, 87, 238, 0.28), rgba(255, 255, 255, 0.7), rgba(34, 216, 137, 0.34));
  filter: saturate(1.08);
}

body::after {
  background:
    repeating-linear-gradient(90deg, rgba(14, 27, 22, 0.045) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(14, 27, 22, 0.038) 0 1px, transparent 1px 92px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 45%, rgba(255, 255, 255, 0.35));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.42) 72%, rgba(0, 0, 0, 0.18));
}

.animated-backdrop {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.62), transparent 34%, rgba(224, 244, 235, 0.78) 52%, transparent 74%),
    linear-gradient(22deg, transparent, rgba(240, 235, 255, 0.82) 48%, transparent 76%),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(21, 24, 22, 0.032) 18px 19px);
  background-size: 180% 180%, 220% 220%, auto;
  animation: lightFieldShift 14s ease-in-out infinite alternate;
}

.page-progress {
  background: rgba(21, 24, 22, 0.1);
}

.page-progress span {
  background: linear-gradient(90deg, #0ebe78, var(--purple));
  box-shadow: 0 0 22px rgba(34, 216, 137, 0.35);
}

.site-header {
  border-color: rgba(21, 24, 22, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 60px rgba(28, 36, 32, 0.12);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(21, 24, 22, 0.18);
}

.brand-mark span,
.hero h1 {
  background: linear-gradient(95deg, #111713, #0e8f61 48%, #6448d4);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textFlow 7s ease-in-out infinite;
}

.main-nav a,
.header-action {
  color: rgba(21, 24, 22, 0.68);
}

.main-nav a:hover,
.main-nav a.is-active,
.header-action:hover {
  color: #101411;
  background: rgba(21, 24, 22, 0.07);
}

.header-action,
.secondary-action {
  border-color: rgba(21, 24, 22, 0.16);
}

.eyebrow,
.section-kicker,
.format-topline {
  color: #0a7f58;
  text-shadow: 0 0 20px rgba(34, 216, 137, 0.25);
}

.hero-lead,
.intro-text,
.visual-note p,
.contact-panel p,
.service-card p,
.format-card p,
.process-step p {
  color: var(--muted);
}

.primary-action {
  color: #07120d;
  background: linear-gradient(100deg, #24e394, #d9d0ff 58%, #ffffff);
  box-shadow: 0 18px 44px rgba(34, 216, 137, 0.25);
}

.secondary-action {
  color: #151816;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.hero-strip {
  border-color: rgba(21, 24, 22, 0.14);
  background: rgba(21, 24, 22, 0.08);
  box-shadow: 0 18px 54px rgba(28, 36, 32, 0.1);
}

.hero-strip span {
  color: rgba(21, 24, 22, 0.72);
  background: rgba(255, 255, 255, 0.7);
}

.service-card,
.format-card,
.process-step,
.featured-project,
.video-project,
.image-project,
.contact-panel {
  border-color: rgba(21, 24, 22, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    0 22px 70px rgba(28, 36, 32, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.service-card::before,
.format-card::before,
.featured-project::before,
.video-project::before,
.image-project::before,
.contact-panel::before {
  opacity: 0;
  background:
    radial-gradient(ellipse at var(--pointer-x, 50%) var(--pointer-y, 0%), rgba(34, 216, 137, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(34, 216, 137, 0.13), transparent 42%, rgba(118, 87, 238, 0.14));
}

.service-card::after,
.format-card::after,
.featured-project::after,
.visual-placeholder::after,
.mini-placeholder::after,
.contact-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, transparent 34%, rgba(255, 255, 255, 0.72) 48%, transparent 62%, transparent 100%);
  opacity: 0;
  transform: translateX(-120%);
}

.service-card:hover::after,
.format-card:hover::after,
.featured-project:hover::after,
.visual-placeholder:hover::after,
.mini-placeholder:hover::after,
.contact-panel:hover::after {
  animation: surfaceSheen 900ms ease;
  opacity: 1;
}

.service-card:hover,
.format-card:hover,
.featured-project:hover,
.video-project:hover,
.image-project:hover {
  border-color: rgba(8, 117, 79, 0.28);
  box-shadow:
    0 28px 90px rgba(28, 36, 32, 0.13),
    0 0 0 1px rgba(34, 216, 137, 0.12) inset;
}

.service-number {
  color: rgba(21, 24, 22, 0.34);
}

.service-card h3,
.format-card h3,
.project-info h2,
.video-project-copy h3,
.image-project-copy h3,
.process-step h3,
.visual-placeholder strong,
.mini-placeholder strong {
  color: #141816;
}

.service-meta span,
.project-tags span,
.audience-tags span,
.contact-actions span {
  border-color: rgba(21, 24, 22, 0.12);
  color: rgba(21, 24, 22, 0.68);
  background: rgba(255, 255, 255, 0.62);
}

.visual-placeholder,
.mini-placeholder {
  border-color: rgba(8, 117, 79, 0.22);
  background:
    linear-gradient(135deg, rgba(34, 216, 137, 0.18), transparent 36%, rgba(118, 87, 238, 0.16)),
    repeating-linear-gradient(45deg, rgba(21, 24, 22, 0.052) 0 1px, transparent 1px 18px),
    rgba(255, 255, 255, 0.56);
  box-shadow: 0 24px 78px rgba(28, 36, 32, 0.1);
}

.project-preview {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.project-info p:not(.section-kicker) {
  color: var(--muted);
}

.video-project-copy p:not(.section-kicker) {
  color: var(--muted);
}

.image-project-copy p:not(.section-kicker) {
  color: var(--muted);
}

.visual-placeholder::before,
.mini-placeholder::before {
  border-color: rgba(21, 24, 22, 0.12);
}

.visual-placeholder span,
.mini-placeholder span {
  color: rgba(21, 24, 22, 0.5);
}

.visual-project-link span {
  color: rgba(247, 248, 244, 0.74);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.visual-project-link strong {
  color: rgba(247, 248, 244, 0.92);
}

.visual-project-link em {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(247, 248, 244, 0.88);
  background: rgba(5, 5, 7, 0.58);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.process-step span {
  color: #07120d;
  background: linear-gradient(135deg, #22d889, #e7ddff);
  box-shadow: 0 10px 26px rgba(34, 216, 137, 0.22);
}

.format-card li,
.audience-copy h2,
.intro-copy h2,
.section-heading h2,
.visual-note h2,
.contact-panel h2 {
  color: #151816;
}

.format-card li::before {
  background: linear-gradient(135deg, #0ebe78, var(--purple));
}

.audience-tags span {
  min-height: 44px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.audience-tags span:hover {
  border-color: rgba(8, 117, 79, 0.28);
  background: rgba(255, 255, 255, 0.86);
  transform: translateY(-3px);
}

.site-footer {
  border-color: rgba(21, 24, 22, 0.12);
  color: rgba(21, 24, 22, 0.62);
}

.reveal {
  transform: translateY(30px) scale(0.985);
}

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

@keyframes lightFieldShift {
  0% {
    background-position: 0% 20%, 100% 10%, 0 0;
  }
  100% {
    background-position: 100% 78%, 12% 92%, 36px 20px;
  }
}

@keyframes surfaceSheen {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@media (max-width: 640px) {
  .service-card,
  .format-card,
  .process-step,
  .featured-project,
  .video-project,
  .image-project,
  .contact-panel {
    box-shadow: 0 18px 54px rgba(28, 36, 32, 0.1);
  }

  .featured-project {
    padding: 12px;
  }

  .project-preview,
  .project-preview img {
    min-height: 260px;
  }

  .project-info h2 {
    font-size: 30px;
  }

  .video-project-copy h3 {
    font-size: 25px;
  }

  .image-project-copy h3 {
    font-size: 25px;
  }

  .visual-project-link strong {
    right: 24px;
    top: 58px;
    bottom: auto;
    font-size: 22px;
  }

  .visual-project-link em {
    left: 24px;
    right: auto;
  }

  .hero-lead {
    color: rgba(21, 24, 22, 0.7);
  }
}

/* Unified dark theme. Light remains the default reference theme. */
html[data-theme="dark"] {
  background: #050507;
}

html[data-theme="dark"] body {
  color: #f7f8f4;
  background: #050507;
}

html[data-theme="dark"] body::before {
  background:
    linear-gradient(120deg, rgba(57, 240, 160, 0.2), transparent 28%, rgba(143, 98, 255, 0.22) 58%, transparent 82%),
    conic-gradient(from var(--spin), rgba(57, 240, 160, 0.22), rgba(5, 5, 7, 0.08), rgba(143, 98, 255, 0.22), rgba(5, 5, 7, 0.08), rgba(57, 240, 160, 0.22));
  filter: saturate(1);
}

html[data-theme="dark"] body::after {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 90px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.05));
}

html[data-theme="dark"] .animated-backdrop {
  background:
    linear-gradient(180deg, rgba(5, 5, 7, 0.22), rgba(5, 5, 7, 0.96)),
    linear-gradient(115deg, rgba(57, 240, 160, 0.08), transparent 38%, rgba(143, 98, 255, 0.12) 68%, transparent),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.025) 18px 19px);
  background-size: 180% 180%, 220% 220%, auto;
}

html[data-theme="dark"] .page-progress {
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .site-header {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 7, 0.9);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(5, 5, 7, 0.96);
  border-color: rgba(255, 255, 255, 0.22);
}

html[data-theme="dark"] .brand-mark span,
html[data-theme="dark"] .hero h1 {
  background: linear-gradient(90deg, #f7f8f4, #a8ffd9, #d8c9ff);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html[data-theme="dark"] .main-nav a,
html[data-theme="dark"] .header-action {
  color: rgba(247, 248, 244, 0.72);
}

html[data-theme="dark"] .main-nav a:hover,
html[data-theme="dark"] .main-nav a.is-active,
html[data-theme="dark"] .header-action:hover {
  color: #f7f8f4;
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .theme-switch {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .theme-option {
  color: rgba(247, 248, 244, 0.68);
}

html[data-theme="dark"] .theme-option:hover {
  color: #f7f8f4;
}

html[data-theme="dark"] .theme-option.is-active {
  color: #06120c;
  background: linear-gradient(100deg, #39f0a0, #d8c9ff);
  box-shadow: 0 10px 26px rgba(57, 240, 160, 0.2);
}

html[data-theme="dark"] .eyebrow,
html[data-theme="dark"] .section-kicker,
html[data-theme="dark"] .format-topline {
  color: #a8ffd9;
  text-shadow: 0 0 20px rgba(57, 240, 160, 0.18);
}

html[data-theme="dark"] .hero-lead,
html[data-theme="dark"] .intro-text,
html[data-theme="dark"] .visual-note p,
html[data-theme="dark"] .contact-panel p,
html[data-theme="dark"] .service-card p,
html[data-theme="dark"] .format-card p,
html[data-theme="dark"] .project-info p:not(.section-kicker),
html[data-theme="dark"] .video-project-copy p:not(.section-kicker),
html[data-theme="dark"] .image-project-copy p:not(.section-kicker),
html[data-theme="dark"] .process-step p {
  color: rgba(247, 248, 244, 0.72);
}

html[data-theme="dark"] .intro-copy h2,
html[data-theme="dark"] .section-heading h2,
html[data-theme="dark"] .visual-note h2,
html[data-theme="dark"] .audience-copy h2,
html[data-theme="dark"] .contact-panel h2,
html[data-theme="dark"] .format-card li,
html[data-theme="dark"] .service-card h3,
html[data-theme="dark"] .format-card h3,
html[data-theme="dark"] .project-info h2,
html[data-theme="dark"] .video-project-copy h3,
html[data-theme="dark"] .image-project-copy h3,
html[data-theme="dark"] .process-step h3,
html[data-theme="dark"] .visual-placeholder strong,
html[data-theme="dark"] .mini-placeholder strong {
  color: #f7f8f4;
}

html[data-theme="dark"] .primary-action {
  color: #05100b;
  background: linear-gradient(100deg, #39f0a0, #d8c9ff 68%, #ffffff);
  box-shadow: 0 18px 48px rgba(57, 240, 160, 0.22);
}

html[data-theme="dark"] .secondary-action {
  color: #f7f8f4;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .hero-strip {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

html[data-theme="dark"] .hero-strip span {
  color: rgba(247, 248, 244, 0.78);
  background: rgba(5, 5, 7, 0.66);
}

html[data-theme="dark"] .service-card,
html[data-theme="dark"] .format-card,
html[data-theme="dark"] .featured-project,
html[data-theme="dark"] .video-project,
html[data-theme="dark"] .image-project,
html[data-theme="dark"] .process-step,
html[data-theme="dark"] .contact-panel {
  border-color: rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 7, 0.66);
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .service-card::before,
html[data-theme="dark"] .format-card::before,
html[data-theme="dark"] .featured-project::before,
html[data-theme="dark"] .video-project::before,
html[data-theme="dark"] .image-project::before,
html[data-theme="dark"] .contact-panel::before {
  background:
    radial-gradient(ellipse at var(--pointer-x, 50%) var(--pointer-y, 0%), rgba(57, 240, 160, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(57, 240, 160, 0.18), transparent 38%, rgba(143, 98, 255, 0.18));
}

html[data-theme="dark"] .service-card::after,
html[data-theme="dark"] .format-card::after,
html[data-theme="dark"] .featured-project::after,
html[data-theme="dark"] .visual-placeholder::after,
html[data-theme="dark"] .mini-placeholder::after,
html[data-theme="dark"] .contact-panel::after {
  background: linear-gradient(110deg, transparent 0%, transparent 34%, rgba(255, 255, 255, 0.22) 48%, transparent 62%, transparent 100%);
}

html[data-theme="dark"] .service-card:hover,
html[data-theme="dark"] .format-card:hover,
html[data-theme="dark"] .featured-project:hover,
html[data-theme="dark"] .video-project:hover,
html[data-theme="dark"] .image-project:hover {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 30px 92px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(57, 240, 160, 0.12) inset;
}

html[data-theme="dark"] .service-number {
  color: rgba(247, 248, 244, 0.34);
}

html[data-theme="dark"] .service-meta span,
html[data-theme="dark"] .project-tags span,
html[data-theme="dark"] .audience-tags span,
html[data-theme="dark"] .contact-actions span {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(247, 248, 244, 0.7);
  background: rgba(255, 255, 255, 0.045);
}

html[data-theme="dark"] .visual-placeholder,
html[data-theme="dark"] .mini-placeholder {
  border-color: rgba(247, 248, 244, 0.3);
  background:
    linear-gradient(135deg, rgba(57, 240, 160, 0.16), transparent 38%, rgba(143, 98, 255, 0.16)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px),
    rgba(5, 5, 7, 0.54);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .visual-placeholder::before,
html[data-theme="dark"] .mini-placeholder::before {
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .visual-placeholder span,
html[data-theme="dark"] .mini-placeholder span {
  color: rgba(247, 248, 244, 0.58);
}

html[data-theme="dark"] .project-preview {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .process-step span {
  color: #04110b;
  background: linear-gradient(135deg, #39f0a0, #d8c9ff);
  box-shadow: 0 10px 26px rgba(57, 240, 160, 0.18);
}

html[data-theme="dark"] .format-card li::before {
  background: linear-gradient(135deg, #39f0a0, #8f62ff);
}

html[data-theme="dark"] .audience-tags span:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .site-footer {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(247, 248, 244, 0.58);
}
