:root {
  color-scheme: dark;
  --ink: #f7f2e8;
  --muted: rgba(247, 242, 232, 0.74);
  --dim: rgba(247, 242, 232, 0.52);
  --line: rgba(247, 242, 232, 0.2);
  --panel: rgba(6, 8, 11, 0.56);
  --panel-strong: rgba(6, 8, 11, 0.78);
  --gold: #dfc37f;
  --aqua: #74e2ee;
  --shadow: 0 20px 58px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #050607;
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body::selection {
  color: #050607;
  background: var(--aqua);
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.kuula-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(11, 13, 17, 0.86), rgba(5, 6, 7, 0.96)),
    radial-gradient(circle at 70% 32%, rgba(116, 226, 238, 0.12), transparent 32%),
    #050607;
}

.kuula-frame {
  position: absolute;
  inset: -1px;
  z-index: 1;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 0;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 720ms ease;
  pointer-events: none;
  will-change: opacity;
}

.is-kuula-ready .kuula-frame {
  opacity: 1;
}

.is-kuula-declined .kuula-frame {
  opacity: 0;
}

.stage-cover,
.fallback-stage,
.stage-scrim,
.stage-vignette,
.transition-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stage-cover {
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.5) 48%, rgba(5, 6, 7, 0.78)),
    radial-gradient(circle at 18% 76%, rgba(223, 195, 127, 0.16), transparent 26%),
    radial-gradient(circle at 76% 28%, rgba(116, 226, 238, 0.12), transparent 30%);
  opacity: 1;
  transition: opacity 900ms ease;
}

.is-kuula-ready .stage-cover {
  opacity: 0;
}

.is-kuula-declined .stage-cover {
  opacity: 1;
  background:
    linear-gradient(120deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.58) 46%, rgba(5, 6, 7, 0.82)),
    radial-gradient(circle at 22% 72%, rgba(223, 195, 127, 0.16), transparent 26%),
    radial-gradient(circle at 75% 24%, rgba(116, 226, 238, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(18, 22, 28, 0.96), rgba(5, 6, 7, 0.98));
}

.fallback-stage {
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  background: #050607;
  transition: opacity 560ms ease;
}

.is-kuula-declined .fallback-stage {
  opacity: 1;
}

.fallback-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 720ms ease, transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.fallback-stage img.is-active {
  opacity: 1;
  transform: scale(1);
}

.is-transitioning .fallback-stage img.is-active {
  transform: scale(1.012);
}

.stage-scrim {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.16) 66%, rgba(0, 0, 0, 0.56)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.62));
}

.stage-vignette {
  z-index: 2;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.62);
}

.transition-veil {
  z-index: 3;
  background:
    radial-gradient(circle at 50% 50%, rgba(116, 226, 238, 0.12), transparent 28%),
    rgba(2, 3, 5, 0.72);
  opacity: 0;
  transition: opacity 360ms ease;
  will-change: opacity;
}

.is-transitioning .transition-veil {
  opacity: 0.72;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.6rem) clamp(1rem, 4vw, 4rem);
  background: linear-gradient(180deg, rgba(5, 6, 7, 0.78), rgba(5, 6, 7, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.brand span {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 10, 13, 0.54);
}

.main-nav button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(247, 242, 232, 0.84);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.main-nav button:hover,
.main-nav button:focus-visible,
.main-nav button.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.scene-status {
  position: fixed;
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(1.2rem, 4vw, 3.4rem);
  z-index: 25;
  display: grid;
  gap: 0.35rem;
  min-width: min(260px, calc(100vw - 2rem));
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 8, 11, 0.54);
  box-shadow: var(--shadow);
}

.scene-status span,
.eyebrow {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scene-status strong {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.05;
}

.scene-rail {
  position: fixed;
  top: 50%;
  right: clamp(1rem, 3vw, 2.6rem);
  z-index: 26;
  display: grid;
  gap: 0.72rem;
  transform: translateY(-50%);
}

.scene-rail button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(247, 242, 232, 0.6);
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.scene-rail button:hover,
.scene-rail button:focus-visible,
.scene-rail button.is-active {
  transform: scale(1.45);
  border-color: var(--aqua);
  background: var(--aqua);
}

.experience-shell {
  position: fixed;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  pointer-events: none;
}

.scene-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: clamp(6rem, 10vh, 8.5rem) clamp(1rem, 6vw, 6rem);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 420ms ease, visibility 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.scene-panel:nth-child(even) {
  justify-content: flex-end;
}

.scene-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.is-transitioning .scene-panel.is-active {
  opacity: 0;
  transform: translateY(-12px);
}

.is-moving-backward.is-transitioning .scene-panel.is-active {
  transform: translateY(12px);
}

.scene-copy {
  width: min(100%, 640px);
  padding: clamp(1.25rem, 3vw, 2.45rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.scene-copy-wide {
  width: min(100%, 960px);
}

.scene-panel-contact .scene-copy {
  background: var(--panel-strong);
}

.eyebrow {
  margin: 0 0 0.9rem;
}

h1,
h2,
p {
  margin: 0;
}

h1,
h2 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 6.3vw, 5.35rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.5rem);
}

.scene-copy-wide h2 {
  max-width: 16ch;
  font-size: clamp(2.05rem, 4.7vw, 4.25rem);
}

.scene-copy p:not(.eyebrow),
.start-card p:not(.eyebrow) {
  max-width: 49ch;
  margin-top: 1.05rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.65;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.pill-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(247, 242, 232, 0.18);
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.08);
  color: rgba(247, 242, 232, 0.9);
  font-size: 0.82rem;
  font-weight: 850;
}

.argument-stack,
.process-grid,
.industry-grid,
.value-grid,
.contact-layout,
.team-grid {
  margin-top: 1.45rem;
}

.argument-stack {
  display: grid;
  gap: 0.65rem;
}

.argument-stack article,
.process-grid article,
.industry-grid article,
.value-grid article,
.about-note,
.team-card {
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 8px;
  background: rgba(247, 242, 232, 0.075);
}

.argument-stack article,
.about-note,
.team-card {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0.95rem;
}

.argument-stack strong,
.process-grid strong,
.industry-grid strong,
.value-grid strong,
.about-note strong,
.team-card strong {
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.2;
}

.argument-stack span,
.industry-grid span,
.value-grid span,
.about-note span,
.team-card span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

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

.process-grid article {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1rem;
}

.process-grid span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #07090c;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
}

.process-grid p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.industry-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.industry-grid article,
.value-grid article,
.industry-card {
  display: grid;
  gap: 0.45rem;
  min-height: 124px;
  padding: 0.9rem;
}

.industry-card {
  width: 100%;
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 242, 232, 0.105), rgba(247, 242, 232, 0.045)),
    rgba(247, 242, 232, 0.055);
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease;
}

.industry-card:hover,
.industry-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(116, 226, 238, 0.58);
  background:
    linear-gradient(145deg, rgba(116, 226, 238, 0.14), rgba(247, 242, 232, 0.06)),
    rgba(247, 242, 232, 0.075);
}

.industry-card em {
  color: var(--gold);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1.35;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0.9rem;
}

.about-stack {
  display: grid;
  gap: 0.75rem;
}

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

.team-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-card strong {
  font-size: 1.04rem;
}

.contact-layout .contact-actions {
  min-width: 250px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  margin-top: 0;
}

.legal-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--dim);
  font-size: 0.82rem;
}

.legal-mini a {
  color: var(--ink);
  font-weight: 850;
}

.legal-mini span {
  color: var(--dim);
}

.industry-detail-layer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(2, 3, 5, 0.48);
}

.industry-detail-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(116, 226, 238, 0.16), transparent 32%),
    radial-gradient(circle at 20% 84%, rgba(223, 195, 127, 0.14), transparent 30%),
    rgba(2, 3, 5, 0.78);
}

.industry-detail-shell {
  position: relative;
  width: min(1120px, calc(100vw - 2rem));
  max-height: min(860px, calc(100svh - 2rem));
  overflow: auto;
  overflow-x: hidden;
  border: 1px solid rgba(247, 242, 232, 0.22);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.9);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
}

.industry-detail-topbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.9rem clamp(1rem, 2.6vw, 1.6rem);
  border-bottom: 1px solid rgba(247, 242, 232, 0.13);
  background: rgba(5, 7, 10, 0.84);
}

.industry-detail-topbar span {
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 850;
}

.detail-back,
.detail-close {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 242, 232, 0.18);
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.07);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0.55rem 0.85rem;
}

.detail-close {
  border-color: rgba(116, 226, 238, 0.32);
}

.industry-detail-panel {
  display: none;
  padding: clamp(1.35rem, 3vw, 2.2rem);
}

.industry-detail-panel.is-active {
  display: block;
}

.industry-detail-panel h2 {
  max-width: 15ch;
  font-size: clamp(2.3rem, 5.2vw, 4.6rem);
}

.detail-lead {
  max-width: 72ch;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 0.9rem;
  margin-top: 1.55rem;
}

.detail-grid section,
.detail-cta,
.deliverables-panel {
  border: 1px solid rgba(247, 242, 232, 0.15);
  border-radius: 8px;
  background: rgba(247, 242, 232, 0.065);
}

.detail-grid section {
  padding: 1.05rem;
}

.detail-grid h3 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 1rem;
}

.detail-grid ul {
  display: grid;
  gap: 0.58rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-grid li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.detail-grid li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--aqua);
  content: "";
}

.tag-cloud,
.deliverables-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.tag-cloud span,
.deliverables-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.07);
  color: rgba(247, 242, 232, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
}

.detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  padding: 1rem;
}

.detail-cta strong {
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.15;
}

.deliverables-panel {
  margin: 0 clamp(1.35rem, 3vw, 2.2rem) clamp(1.35rem, 3vw, 2.2rem);
  padding: 1.05rem;
}

.deliverables-panel .eyebrow {
  margin-bottom: 0.8rem;
}

.primary-action,
.secondary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-action {
  background: linear-gradient(135deg, var(--ink), #d7c083);
  color: #07090c;
}

.secondary-action {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

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

.contact-actions,
.start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.mini-cta {
  position: fixed;
  left: clamp(1rem, 4vw, 4rem);
  bottom: clamp(1.2rem, 4vw, 3.4rem);
  z-index: 28;
}

.mini-cta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(247, 242, 232, 0.24);
  border-radius: 999px;
  background: rgba(6, 8, 11, 0.58);
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.legal-links {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 27;
  display: flex;
  gap: 0.85rem;
  transform: translateX(-50%);
  color: rgba(247, 242, 232, 0.6);
  font-size: 0.82rem;
}

.legal-links button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.legal-links button:hover,
.legal-links button:focus-visible,
.legal-links a:hover,
.legal-links a:focus-visible {
  color: #fff;
}

.start-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background:
    linear-gradient(120deg, rgba(5, 6, 7, 0.94), rgba(5, 6, 7, 0.6)),
    radial-gradient(circle at 72% 24%, rgba(116, 226, 238, 0.15), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(223, 195, 127, 0.16), transparent 30%);
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.is-started .start-layer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.start-card {
  width: min(760px, calc(100vw - 2rem));
  max-height: calc(100svh - 2rem);
  overflow: auto;
  overflow-x: hidden;
  padding: clamp(1.35rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 8, 11, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.start-card h2 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 6vw, 5rem);
}

.start-card small {
  display: block;
  margin-top: 1rem;
  color: var(--dim);
  line-height: 1.5;
}

.start-card small a {
  color: var(--ink);
  border-bottom: 1px solid rgba(247, 242, 232, 0.42);
}

.error-banner {
  position: fixed;
  left: 50%;
  top: clamp(5.5rem, 10vw, 7rem);
  z-index: 90;
  width: min(calc(100vw - 2rem), 560px);
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 210, 132, 0.34);
  border-radius: 8px;
  background: rgba(16, 12, 8, 0.9);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.error-banner span {
  color: var(--muted);
}

.error-banner a {
  color: var(--gold);
  font-weight: 900;
}

.error-banner button {
  width: fit-content;
  min-height: 36px;
  border: 1px solid rgba(247, 242, 232, 0.2);
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.08);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  padding: 0.5rem 0.8rem;
}

@media (max-width: 980px) {
  .scene-status {
    display: none;
  }

  .scene-rail {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 1rem;
    grid-auto-flow: column;
    transform: translateX(-50%);
  }

  .mini-cta {
    display: none;
  }

  .legal-links {
    bottom: 3.2rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    width: min(92vw, 360px);
    padding: 0.42rem 0.55rem;
    border: 1px solid rgba(247, 242, 232, 0.12);
    border-radius: 999px;
    background: rgba(6, 8, 11, 0.68);
    color: rgba(247, 242, 232, 0.72);
    font-size: 0.72rem;
  }
}

@media (max-width: 720px) {
  :root {
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0.85rem;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 4.55rem;
    left: 0.85rem;
    width: min(350px, calc(100vw - 2rem));
  }

  .main-nav button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 36px;
    padding: 0.5rem 0.5rem;
    font-size: 0.72rem;
  }

  .scene-panel {
    --mobile-panel-top: calc(8.95rem + env(safe-area-inset-top));
    --mobile-panel-bottom: calc(6.45rem + env(safe-area-inset-bottom));
    align-items: flex-end;
    justify-content: flex-start;
    padding: var(--mobile-panel-top) 1.05rem var(--mobile-panel-bottom);
    overflow: hidden;
  }

  .scene-panel:nth-child(even) {
    justify-content: flex-start;
  }

  .scene-copy {
    width: 100%;
    max-height: calc(100svh - var(--mobile-panel-top) - var(--mobile-panel-bottom));
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 1.15rem;
    backdrop-filter: none;
  }

  .scene-copy-wide {
    width: 100%;
  }

  h1 {
    max-width: 10.8ch;
    font-size: clamp(2.05rem, 9.5vw, 3.15rem);
    line-height: 1;
  }

  h2 {
    max-width: 11.5ch;
    font-size: clamp(1.85rem, 9vw, 2.85rem);
    line-height: 1;
  }

  .scene-copy-wide h2 {
    max-width: 13ch;
    font-size: clamp(1.78rem, 8.2vw, 2.75rem);
  }

  .scene-copy p:not(.eyebrow),
  .start-card p:not(.eyebrow) {
    max-width: 35ch;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .argument-stack,
  .process-grid,
  .industry-grid,
  .value-grid,
  .contact-layout,
  .team-grid {
    margin-top: 1rem;
  }

  .argument-stack article,
  .about-note,
  .team-card {
    padding: 0.72rem;
  }

  .argument-stack span,
  .industry-grid span,
  .value-grid span,
  .about-note span,
  .team-card span {
    font-size: 0.76rem;
    line-height: 1.38;
  }

  .argument-stack strong,
  .process-grid strong,
  .industry-grid strong,
  .value-grid strong,
  .about-note strong,
  .team-card strong {
    font-size: 0.84rem;
  }

  .industry-card strong {
    display: block;
    min-width: 0;
    font-size: clamp(0.78rem, 3.55vw, 0.84rem);
    line-height: 1.08;
    hyphens: auto;
    overflow-wrap: normal;
    word-break: normal;
  }

  .process-grid,
  .industry-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .process-grid article {
    min-height: 132px;
    gap: 0.42rem;
    padding: 0.68rem;
  }

  .process-grid span {
    width: 31px;
    height: 31px;
    font-size: 0.68rem;
  }

  .process-grid p {
    font-size: 0.72rem;
    line-height: 1.34;
  }

  .industry-grid article,
  .value-grid article,
  .industry-card {
    min-height: 104px;
    gap: 0.32rem;
    padding: 0.66rem;
  }

  .industry-card em {
    font-size: 0.66rem;
  }

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

  .team-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
  }

  .contact-layout .contact-actions {
    min-width: 0;
  }

  .legal-mini {
    gap: 0.55rem;
    font-size: 0.76rem;
  }

  .pill-row {
    gap: 0.45rem;
  }

  .pill-row span {
    font-size: 0.74rem;
  }

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

  .primary-action,
  .secondary-action {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0.75rem 0.9rem;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .industry-detail-layer {
    align-items: stretch;
    padding: 0.65rem;
  }

  .industry-detail-shell {
    width: 100%;
    max-height: calc(100svh - 1.3rem);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.46);
  }

  .industry-detail-topbar {
    gap: 0.5rem;
    padding: 0.65rem;
  }

  .industry-detail-topbar span {
    display: none;
  }

  .detail-back,
  .detail-close {
    min-height: 36px;
    padding: 0.5rem 0.65rem;
    font-size: 0.74rem;
  }

  .industry-detail-panel {
    padding: 1rem;
  }

  .industry-detail-panel h2 {
    max-width: 12.5ch;
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .detail-lead {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .detail-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    margin-top: 1rem;
  }

  .detail-grid section,
  .detail-cta,
  .deliverables-panel {
    padding: 0.85rem;
  }

  .detail-grid li {
    font-size: 0.84rem;
  }

  .detail-cta {
    align-items: stretch;
    display: grid;
  }

  .deliverables-panel {
    margin: 0 1rem 1rem;
  }

  .tag-cloud span,
  .deliverables-grid span {
    min-height: 29px;
    font-size: 0.72rem;
  }

  .start-card h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .start-layer {
    padding-inline: 1.05rem;
  }

  .start-card {
    width: min(360px, calc(100vw - 2rem));
    backdrop-filter: none;
    background: rgba(6, 8, 11, 0.94);
  }
}

@media (max-width: 420px), (max-height: 740px) {
  .scene-panel {
    --mobile-panel-top: calc(8.85rem + env(safe-area-inset-top));
    --mobile-panel-bottom: calc(6.35rem + env(safe-area-inset-bottom));
  }

  .scene-copy {
    padding: 0.95rem;
  }

  h1 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  h2,
  .scene-copy-wide h2 {
    font-size: clamp(1.55rem, 7.5vw, 2.35rem);
  }

  .scene-copy p:not(.eyebrow),
  .start-card p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.46;
  }

  .industry-grid article,
  .value-grid article,
  .industry-card {
    min-height: 96px;
  }
}

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

  .kuula-frame {
    transform: none;
  }

  .fallback-stage img,
  .fallback-stage img.is-active,
  .is-transitioning .fallback-stage img.is-active {
    transform: none;
  }

  .is-transitioning .transition-veil {
    opacity: 0.78;
  }
}
