@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/IBMPlexSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/IBMPlexSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/IBMPlexSans-SemiBold.woff2") format("woff2");
  font-weight: 650;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/IBMPlexSans-Bold.woff2") format("woff2");
  font-weight: 760;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Condensed";
  src: url("assets/fonts/IBMPlexSansCondensed-SemiBold.woff2") format("woff2");
  font-weight: 650;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Condensed";
  src: url("assets/fonts/IBMPlexSansCondensed-Bold.woff2") format("woff2");
  font-weight: 760;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/IBMPlexMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/IBMPlexMono-SemiBold.woff2") format("woff2");
  font-weight: 650;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-sans: "Manrope", "IBM Plex Sans", "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Manrope", "IBM Plex Sans", "Inter", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ink: #161719;
  --ink-soft: #3f4247;
  --muted: #6a6e75;
  --paper: #f8f8f6;
  --paper-2: #ededeb;
  --line: #d6d7d6;
  --line-dark: #383b40;
  --panel: #ffffff;
  --graphite: #111315;
  --graphite-2: #202327;
  --aqua: #30c7b5;
  --aqua-dark: #128879;
  --gold: #ff8a3d;
  --rose: #ff4fd8;
  --focus: #0b6bd3;
  --shadow: 0 18px 48px rgba(17, 19, 21, 0.16);
  --shadow-soft: 0 10px 28px rgba(17, 19, 21, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.5;
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font: 16px/1.5 var(--font-sans);
}

a {
  color: inherit;
  text-decoration-color: rgba(18, 136, 121, 0.55);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: var(--aqua-dark);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

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

code {
  border-radius: 4px;
  background: rgba(17, 19, 21, 0.07);
  padding: 1px 5px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 50;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 8px 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  background: rgba(248, 248, 246, 0.9);
  border-bottom: 1px solid rgba(214, 215, 214, 0.88);
  backdrop-filter: blur(14px);
}

.brand-link {
  flex: 0 0 auto;
  width: 164px;
}

.brand-logo {
  width: 164px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink-soft);
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(48, 199, 181, 0.1);
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  background: rgba(48, 199, 181, 0.14);
  color: var(--ink);
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: max(620px, calc(100vh - 154px));
  min-height: max(620px, calc(100svh - 154px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f8fbfa;
  background: var(--graphite);
}

.hero-canvas,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-canvas {
  z-index: 1;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 11, 18, 0.92) 0%, rgba(7, 11, 18, 0.8) 33%, rgba(7, 11, 18, 0.3) 57%, rgba(7, 11, 18, 0.06) 77%, rgba(7, 11, 18, 0.14) 100%),
    linear-gradient(180deg, rgba(7, 11, 18, 0.1) 0%, rgba(7, 11, 18, 0.14) 46%, rgba(7, 11, 18, 0.58) 100%),
    radial-gradient(circle at 76% 42%, rgba(7, 11, 18, 0) 0%, rgba(7, 11, 18, 0.02) 38%, rgba(7, 11, 18, 0.18) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: 76px;
  font-weight: 650;
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(248, 251, 250, 0.84);
  font-size: 22px;
}

.hero-sublead {
  max-width: 760px;
  margin-top: 14px;
  color: rgba(248, 251, 250, 0.72);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 0 18px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  border-color: var(--aqua);
  background: var(--aqua);
  color: #07110f;
  box-shadow: 0 16px 36px rgba(48, 199, 181, 0.24);
}

.button.secondary {
  border-color: rgba(248, 251, 250, 0.52);
  background: rgba(248, 251, 250, 0.06);
  color: #f8fbfa;
  backdrop-filter: blur(10px);
}

.button:hover {
  filter: brightness(0.96);
}

.hero-facts {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 52px 0 0;
}

.hero-facts div {
  min-height: 112px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(248, 251, 250, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(10, 14, 22, 0.34) 0%, rgba(10, 14, 22, 0.62) 100%);
  padding: 18px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(248, 251, 250, 0.08);
  backdrop-filter: blur(16px);
}

.hero-facts div::before,
.case-facts div::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(248, 251, 250, 0) 0%, rgba(248, 251, 250, 0.42) 50%, rgba(248, 251, 250, 0) 100%);
  opacity: 0.8;
}

.hero-facts dt {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: rgba(248, 251, 250, 0.82);
  font-size: 15px;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #2c2f33;
  border-bottom: 1px solid #2c2f33;
  background: #1d2024;
  color: #edf0ef;
}

.status-strip div {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 3px;
  border-right: 1px solid #34383d;
  padding: 14px 24px;
  font-size: 14px;
}

.status-strip div:last-child {
  border-right: 0;
}

.status-strip strong {
  color: var(--aqua);
}

.section {
  --section-bg: var(--paper);
  padding: 86px 0;
  background: var(--section-bg);
  border-bottom: 1px solid rgba(214, 215, 214, 0.78);
}

.section:nth-of-type(2n + 1) {
  --section-bg: var(--paper-2);
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section h2 {
  max-width: 850px;
  font-size: 46px;
  font-weight: 650;
}

.section h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.section p {
  color: var(--ink-soft);
}

.lead {
  max-width: 840px;
  margin: 18px 0 0;
  font-size: 19px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: start;
}

.section.summary-section {
  --section-bg: #fbfbfa;
}

.copy-panel,
.source-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  box-shadow: var(--shadow);
}

.copy-panel p {
  margin-top: 0;
  font-size: 16px;
}

.copy-button {
  margin-top: 10px;
}

body.consent-modal-open {
  overflow: hidden;
}

.consent-trigger,
.consent-banner,
.consent-modal {
  z-index: 80;
}

.consent-trigger {
  position: fixed;
  right: 24px;
  bottom: 24px;
  min-height: 44px;
  border: 1px solid rgba(248, 251, 250, 0.16);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(7, 11, 18, 0.9);
  color: #f8fbfa;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.consent-banner[hidden],
.consent-modal[hidden],
.consent-trigger[hidden] {
  display: none;
}

.consent-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: center;
}

.consent-banner__panel {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  border: 1px solid rgba(248, 251, 250, 0.16);
  border-radius: 8px;
  background: rgba(7, 11, 18, 0.94);
  color: #f8fbfa;
  padding: 24px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.consent-banner__eyebrow {
  margin: 0 0 10px;
  color: #82f2e5;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.consent-banner__copy h2,
.consent-modal__header h2 {
  margin: 0;
  color: #f8fbfa;
  font-size: 34px;
  line-height: 1.06;
}

.consent-modal__header h2 {
  color: var(--ink);
  font-size: 32px;
}

.consent-banner__copy p,
.consent-modal__header p,
.consent-note {
  margin: 12px 0 0;
}

.consent-banner__copy > p:last-child {
  max-width: 760px;
  color: rgba(248, 251, 250, 0.78);
}

.consent-banner__copy a {
  color: #f8fbfa;
}

.consent-banner__actions,
.consent-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.consent-banner__actions {
  justify-content: flex-end;
}

.consent-banner__actions .button,
.consent-modal__actions .button {
  width: auto;
}

.consent-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.consent-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 18, 0.6);
  backdrop-filter: blur(10px);
}

.consent-modal__panel {
  position: relative;
  width: min(760px, 100%);
  display: grid;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 28px;
  box-shadow: var(--shadow);
}

.consent-options {
  display: grid;
  gap: 12px;
}

.consent-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px 20px;
}

.consent-option h3 {
  margin: 0;
  color: var(--ink);
}

.consent-option p {
  margin: 8px 0 0;
}

.consent-switch {
  position: relative;
  width: 54px;
  height: 32px;
  display: inline-flex;
}

.consent-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.consent-switch span {
  position: relative;
  width: 54px;
  height: 32px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(17, 19, 21, 0.16);
  transition: background 160ms ease, border-color 160ms ease;
}

.consent-switch span::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(17, 19, 21, 0.18);
  transition: transform 160ms ease;
}

.consent-switch input:checked + span {
  border-color: var(--aqua);
  background: rgba(48, 199, 181, 0.26);
}

.consent-switch input:checked + span::before {
  transform: translateX(22px);
}

.consent-switch input:disabled + span {
  opacity: 0.7;
}

.consent-note {
  color: var(--muted);
  font-size: 14px;
}

.step-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.step-card,
.legal-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.step-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.step-index {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--aqua-dark);
  border-radius: 999px;
  color: var(--aqua-dark);
  font-weight: 800;
}

.step-card p,
.legal-block p {
  margin: 0;
}

.section.safety-section {
  --section-bg: #101214;
  color: #f8fbfa;
  border-bottom-color: #292d31;
}

.safety-section p,
.safety-section h2 {
  color: #f8fbfa;
}

.safety-section .eyebrow {
  color: #82f2e5;
}

.safety-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.safety-list li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 5px solid #c44d61;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 18px 20px;
  color: #f5f8f7;
  font-size: 17px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

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

.legal-block {
  min-height: 210px;
}

.legal-block h3,
.privacy-table h3,
.source-panel h3 {
  color: var(--ink);
}

.privacy-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--line);
}

.privacy-table > div {
  background: var(--panel);
  padding: 22px;
}

.privacy-table p {
  margin: 10px 0 0;
}

.section.ai-section {
  --section-bg: #eef8f6;
}

.section.realization-teaser-section {
  --section-bg: #f8f8f6;
}

.section.service-section {
  --section-bg: #f8f8f6;
}

.teaser-panel {
  border-left: 5px solid var(--aqua-dark);
  background: rgba(255, 255, 255, 0.72);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.teaser-panel p {
  margin-top: 0;
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.service-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.service-card h3,
.service-card p {
  margin: 0;
}

.service-card h3 {
  color: var(--ink);
}

.service-cta {
  margin: 26px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.case-hero {
  min-height: max(600px, calc(100vh - 72px));
  min-height: max(600px, calc(100svh - 72px));
  align-items: center;
}

.legal-hero {
  min-height: max(560px, calc(100vh - 72px));
  min-height: max(560px, calc(100svh - 72px));
  align-items: center;
}

.case-hero .hero-content {
  padding: 68px 0 52px;
}

.legal-hero .hero-content {
  padding: 68px 0 52px;
}

.case-facts {
  width: min(1060px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 52px 0 0;
}

.case-facts div {
  min-height: 126px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(248, 251, 250, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(10, 14, 22, 0.34) 0%, rgba(10, 14, 22, 0.62) 100%);
  padding: 18px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(248, 251, 250, 0.08);
  backdrop-filter: blur(16px);
}

.case-facts dt {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-facts dd {
  margin: 0;
  color: rgba(248, 251, 250, 0.82);
  font-size: 15px;
}

.case-summary-grid,
.media-grid,
.tech-grid,
.publication-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

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

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

.case-summary-card,
.media-card,
.tech-card,
.publication-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.case-summary-card p,
.media-card p,
.tech-card p,
.publication-grid p {
  margin: 10px 0 0;
}

.case-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.case-feature {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.case-feature span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--aqua-dark);
  border-radius: 999px;
  color: var(--aqua-dark);
  font-weight: 800;
}

.case-feature p {
  margin: 10px 0 0;
}

.section.media-section {
  --section-bg: #111315;
  color: #f8fbfa;
  border-bottom-color: #292d31;
}

.media-section h2,
.media-section h3,
.media-section .lead,
.media-section p {
  color: #f8fbfa;
}

.media-section .eyebrow {
  color: #82f2e5;
}

.media-section code {
  background: rgba(248, 251, 250, 0.14);
  color: #f8fbfa;
}

.media-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.section.tech-section {
  --section-bg: #eef8f6;
}

.section.authorship-section {
  --section-bg: #f1f4f1;
}

.section.object-section {
  --section-bg: #f3f5f5;
}

.section.case-gallery-section {
  --section-bg: #111315;
  color: #f8fbfa;
  border-bottom-color: #292d31;
}

.case-gallery-section h2,
.case-gallery-section p {
  color: #f8fbfa;
}

.case-gallery-section .eyebrow {
  color: #82f2e5;
}

.case-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.72fr);
  gap: 14px;
  margin-top: 34px;
}

.case-gallery picture {
  overflow: hidden;
  border-radius: 8px;
  background: #05070a;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.case-gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.case-gallery__wide {
  grid-row: span 2;
}

.section.narrative-section {
  --section-bg: #f8f8f6;
}

.section.publication-section {
  --section-bg: #ededeb;
}

.section.case-cta-section {
  --section-bg: #f8f8f6;
}

.section.legal-page-section {
  --section-bg: #f8f8f6;
}

.section.privacy-www-section {
  --section-bg: #ededeb;
}

.section.cookies-section {
  --section-bg: #111315;
  color: #f8fbfa;
  border-bottom-color: #292d31;
}

.cookies-section h2,
.cookies-section p {
  color: #f8fbfa;
}

.cookies-section .eyebrow {
  color: #82f2e5;
}

.notice-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 5px solid var(--aqua);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.notice-panel p {
  margin: 0;
}

.notice-panel p + p {
  margin-top: 16px;
}

.section.acceptance-section {
  --section-bg: #eef8f6;
}

.section.sources-section {
  --section-bg: #f8f8f6;
}

.case-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid #2a2d31;
  border-radius: 8px;
  background: var(--graphite);
  color: #f8fbfa;
  padding: 34px;
  box-shadow: var(--shadow);
}

.case-cta-panel h2,
.case-cta-panel p {
  color: #f8fbfa;
}

.case-cta-panel p {
  max-width: 760px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.section.contact-section {
  --section-bg: var(--paper);
}

.source-panel ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 42px 24px;
  background: var(--graphite);
  color: rgba(248, 251, 250, 0.72);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  font-size: 14px;
}

.footer-symbol {
  width: 42px;
  height: auto;
  filter: invert(1);
  opacity: 0.85;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.product-hero {
  min-height: max(680px, calc(100vh - 72px));
  min-height: max(680px, calc(100svh - 72px));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 11, 18, 0.94) 0%, rgba(7, 11, 18, 0.78) 36%, rgba(7, 11, 18, 0.36) 63%, rgba(7, 11, 18, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 11, 18, 0.08) 0%, rgba(7, 11, 18, 0.18) 46%, rgba(7, 11, 18, 0.74) 100%);
}

.product-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #2c2f33;
  border-bottom: 1px solid #2c2f33;
  background: #16191d;
  color: #edf0ef;
}

.product-proof-strip div {
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-right: 1px solid #34383d;
  padding: 16px 24px;
  font-size: 14px;
}

.product-proof-strip div:last-child {
  border-right: 0;
}

.product-proof-strip strong {
  color: var(--aqua);
}

.section.value-section {
  --section-bg: #f8f8f6;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.impact-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.impact-grid h3,
.impact-grid p {
  margin: 0;
}

.impact-grid p {
  margin-top: 12px;
}

.section.modules-section {
  --section-bg: #ededeb;
}

.image-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.image-split--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-photo {
  overflow: hidden;
  border-radius: 8px;
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.split-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section.use-cases-section {
  --section-bg: #f8f8f6;
}

.section.process-section {
  --section-bg: #eef8f6;
}

.section.case-proof-section {
  --section-bg: #111315;
  color: #f8fbfa;
  border-bottom-color: #292d31;
}

.case-proof-section h2,
.case-proof-section p {
  color: #f8fbfa;
}

.case-proof-section .eyebrow {
  color: #82f2e5;
}

.case-proof-section .button {
  margin-top: 16px;
}

.section.responsibility-section {
  --section-bg: #f1f4f1;
}

.section.brief-section {
  --section-bg: #f8f8f6;
}

.brief-note {
  border-left: 4px solid var(--aqua-dark);
  padding-left: 16px;
  font-size: 15px;
}

.brief-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  box-shadow: var(--shadow);
}

.brief-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 750;
}

.brief-form label span {
  line-height: 1.25;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  border: 1px solid #bfc3c2;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
}

.brief-form textarea {
  resize: vertical;
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  border-color: var(--focus);
  outline: 3px solid rgba(11, 107, 211, 0.18);
}

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

.checkbox-label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  font-weight: 600;
}

.checkbox-label input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.brief-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.brief-form__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.form-status[data-state="success"] {
  color: var(--aqua-dark);
  font-weight: 750;
}

.form-status[data-state="error"] {
  color: #9d263b;
  font-weight: 750;
}

.brief-form.is-sending {
  opacity: 0.72;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: max(560px, calc(100vh - 178px));
    min-height: max(560px, calc(100svh - 178px));
  }

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

  .hero-facts,
  .case-facts,
  .status-strip,
  .product-proof-strip,
  .step-grid,
  .service-grid,
  .impact-grid,
  .case-summary-grid,
  .case-gallery,
  .media-grid,
  .tech-grid,
  .publication-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-split,
  .image-split--reverse {
    grid-template-columns: 1fr;
  }

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

  .two-column {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .consent-banner__panel {
    grid-template-columns: 1fr;
  }

  .consent-banner__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body,
  button,
  input,
  textarea {
    font-size: 15px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand-link,
  .brand-logo {
    width: 138px;
  }

  .site-nav a {
    min-height: 34px;
    padding: 0 9px;
    font-size: 14px;
  }

  .hero {
    min-height: max(480px, calc(100vh - 190px));
    min-height: max(480px, calc(100svh - 190px));
  }

  .hero-content,
  .section-inner {
    width: min(100% - 32px, 1120px);
  }

  .hero-content {
    padding: 46px 0 30px;
  }

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

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

  .section {
    padding: 62px 0;
  }

  .section h2 {
    font-size: 34px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-facts {
    display: none;
  }

  .hero-facts,
  .case-facts,
  .status-strip,
  .product-proof-strip,
  .step-grid,
  .service-grid,
  .impact-grid,
  .case-summary-grid,
  .case-gallery,
  .media-grid,
  .tech-grid,
  .publication-grid,
  .legal-grid,
  .privacy-table {
    grid-template-columns: 1fr;
  }

  .case-facts {
    margin-top: 34px;
  }

  .case-gallery__wide {
    grid-row: auto;
  }

  .case-gallery img {
    min-height: 260px;
  }

  .case-feature {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .case-cta-panel {
    padding: 24px;
  }

  .consent-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .consent-trigger {
    right: 16px;
    bottom: 16px;
  }

  .consent-banner__panel,
  .consent-modal__panel {
    padding: 20px;
  }

  .consent-banner__copy h2,
  .consent-modal__header h2 {
    font-size: 28px;
  }

  .consent-banner__actions,
  .consent-modal__actions {
    width: 100%;
  }

  .consent-banner__actions .button,
  .consent-modal__actions .button {
    width: 100%;
  }

  .consent-option {
    grid-template-columns: 1fr;
  }

  .status-strip div {
    border-right: 0;
    border-bottom: 1px solid #34383d;
  }

  .status-strip div:last-child {
    border-bottom: 0;
  }

  .product-proof-strip div {
    border-right: 0;
    border-bottom: 1px solid #34383d;
  }

  .product-proof-strip div:last-child {
    border-bottom: 0;
  }

  .form-grid,
  .product-module-grid {
    grid-template-columns: 1fr;
  }

  .brief-form {
    padding: 20px;
  }

  .brief-form__footer .button {
    width: 100%;
  }

  .legal-block,
  .step-card,
  .service-card,
  .case-summary-card,
  .media-card,
  .tech-card {
    min-height: auto;
  }
}

.command-menu-toggle {
  display: none;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
  grid-auto-rows: 8px;
  align-items: start;
}

.gallery-card,
.gallery-card:nth-child(7n + 1),
.gallery-card[data-orientation="vertical"] {
  grid-column: span 1;
  grid-row: auto;
  aspect-ratio: auto;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: border-color 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1), transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card--wide,
.gallery-card:nth-child(7n + 1).gallery-card--wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

.gallery-card picture {
  aspect-ratio: var(--gallery-ratio, 1.6);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: calc(var(--v2-radius) - 1px) calc(var(--v2-radius) - 1px) 0 0;
}

.gallery-card img {
  aspect-ratio: var(--gallery-ratio, 1.6);
  height: auto;
  transform: scale(1.001);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card span {
  display: block;
  padding: 12px 12px 0;
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 760;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.gallery-card strong,
.gallery-card[data-orientation="vertical"] strong,
.gallery-card--wide strong {
  padding: 5px 12px 14px;
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.08;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translate3d(0, -2px, 0);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.028);
}

button.video-gallery-card {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--v2-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1), transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-gallery-card__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  background: #03070b;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-gallery-card__play {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(5, 8, 12, 0.66);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), background 260ms ease, border-color 260ms ease;
}

.video-gallery-card__play::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--v2-ink);
}

button.video-gallery-card:hover,
button.video-gallery-card:focus-visible {
  border-color: rgba(96, 245, 255, 0.44);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(96, 245, 255, 0.12);
  transform: translate3d(0, -2px, 0);
}

button.video-gallery-card:hover .video-gallery-card__media img,
button.video-gallery-card:focus-visible .video-gallery-card__media img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.026);
}

button.video-gallery-card:hover .video-gallery-card__play,
button.video-gallery-card:focus-visible .video-gallery-card__play {
  border-color: rgba(96, 245, 255, 0.56);
  background: rgba(96, 245, 255, 0.16);
  transform: scale(1.04);
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
  background: rgba(1, 2, 4, 0.985);
  padding: 24px 28px 18px;
}

.video-lightbox[hidden] {
  display: none;
}

.video-lightbox__figure {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  margin: 0;
}

.video-lightbox__stage {
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
}

.video-lightbox__stage video {
  width: min(100%, 1280px);
  max-height: calc(100svh - 190px);
  display: block;
  object-fit: contain;
  background: #03070b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--v2-radius-sm);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

.video-lightbox figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 0.8fr) minmax(240px, 1fr);
  gap: 16px;
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
  color: var(--v2-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.video-lightbox figcaption strong {
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1;
  text-transform: none;
}

.video-lightbox figcaption small {
  color: var(--v2-muted);
  line-height: 1.35;
  text-transform: none;
}

.video-lightbox__thumbs {
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  max-height: 96px;
}

.video-lightbox__thumbs button {
  aspect-ratio: 16 / 9;
}

@media (hover: none), (pointer: coarse) {
  .gateway-card:hover,
  .gateway-card:focus-visible,
  .signal-card:hover,
  .system-node:hover,
  .usecase-tile:hover,
  .sequence-panel:hover,
  .split-panel:hover,
  .gallery-card:hover,
  .gallery-card:focus-visible,
  .aurea-video-head-card:hover,
  .aurea-video-head-card:focus-visible,
  .aurea-reel-card:hover,
  .aurea-reel-card:focus-visible,
  button.video-gallery-card:hover,
  button.video-gallery-card:focus-visible {
    transform: none;
  }

  .gateway-card:hover img,
  .gateway-card:focus-visible img,
  .gallery-card:hover img,
  .gallery-card:focus-visible img,
  .aurea-video-head-card:hover .aurea-video-head-card__media video,
  .aurea-video-head-card:focus-visible .aurea-video-head-card__media video,
  .aurea-reel-card:hover .aurea-reel-card__media video,
  .aurea-reel-card:focus-visible .aurea-reel-card__media video,
  button.video-gallery-card:hover .video-gallery-card__media img,
  button.video-gallery-card:focus-visible .video-gallery-card__media img {
    transform: none;
  }
}

@media (max-width: 760px) {
  body.is-mobile-nav-open {
    overflow: hidden;
  }

  .command-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .command-brand {
    justify-content: flex-start;
  }

  .command-menu-toggle {
    position: relative;
    z-index: 103;
    width: 44px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--v2-radius-xs);
    background: rgba(255, 255, 255, 0.055);
    color: var(--v2-ink);
    padding: 0;
  }

  .command-menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .command-menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .command-menu-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .experience-deck {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 58px;
    z-index: 102;
    width: auto;
    max-height: calc(100svh - 78px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid rgba(96, 245, 255, 0.18);
    border-radius: 0 0 var(--v2-radius) var(--v2-radius);
    background:
      linear-gradient(135deg, rgba(96, 245, 255, 0.1), rgba(255, 79, 216, 0.055)),
      rgba(3, 7, 10, 0.98);
    box-shadow: 0 28px 84px rgba(0, 0, 0, 0.48);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -10px, 0);
    visibility: hidden;
    mask-image: none;
    transition: opacity 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 220ms ease;
    backdrop-filter: blur(24px) saturate(150%);
  }

  .command-bar.is-mobile-open .experience-deck {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  .experience-deck .deck-indicator {
    display: none;
  }

  .nav-top-link,
  .nav-group,
  .nav-group-trigger {
    width: 100%;
    min-width: 0;
  }

  .experience-deck a,
  .nav-group-trigger {
    min-height: 52px;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--v2-radius-xs);
    background: rgba(255, 255, 255, 0.045);
    padding: 0 12px;
    text-align: left;
  }

  .nav-top-link,
  .nav-group-trigger {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-top-link small,
  .nav-group-trigger small {
    margin-top: 0;
    font-size: 9px;
  }

  .nav-menu,
  .nav-group:hover .nav-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: none;
    visibility: hidden;
    transition: max-height 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease, visibility 180ms ease;
  }

  .nav-group.is-open .nav-menu,
  .nav-group:focus-within .nav-menu {
    max-height: 70svh;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-menu-shell {
    max-height: none;
    overflow: visible;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 8px;
  }

  .gallery-card,
  .gallery-card:nth-child(7n + 1),
  .gallery-card[data-orientation="vertical"],
  .gallery-card--wide {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: auto;
  }

  .gallery-card--wide {
    grid-column: 1 / -1;
  }

  .gallery-card strong,
  .gallery-card[data-orientation="vertical"] strong,
  .gallery-card--wide strong {
    font-size: clamp(14px, 4.2vw, 17px);
  }

  .video-lightbox {
    padding: 62px 12px 12px;
  }

  .video-lightbox__stage video {
    max-height: calc(100svh - 236px);
  }

  .video-lightbox figcaption {
    grid-template-columns: 1fr;
    gap: 7px;
    align-items: start;
  }

  .video-lightbox__thumbs {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  }
}

.command-menu-toggle {
  display: none;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
  grid-auto-rows: 8px;
  align-items: start;
}

.gallery-card,
.gallery-card:nth-child(7n + 1),
.gallery-card[data-orientation="vertical"] {
  grid-column: span 1;
  grid-row: auto;
  aspect-ratio: auto;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: border-color 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1), transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card--wide,
.gallery-card:nth-child(7n + 1).gallery-card--wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

.gallery-card picture {
  aspect-ratio: var(--gallery-ratio, 1.6);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: calc(var(--v2-radius) - 1px) calc(var(--v2-radius) - 1px) 0 0;
}

.gallery-card img {
  aspect-ratio: var(--gallery-ratio, 1.6);
  height: auto;
  transform: scale(1.001);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card span {
  display: block;
  padding: 12px 12px 0;
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 760;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.gallery-card strong,
.gallery-card[data-orientation="vertical"] strong,
.gallery-card--wide strong {
  padding: 5px 12px 14px;
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.08;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translate3d(0, -2px, 0);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.028);
}

@media (hover: none), (pointer: coarse) {
  .gateway-card:hover,
  .gateway-card:focus-visible,
  .signal-card:hover,
  .system-node:hover,
  .usecase-tile:hover,
  .sequence-panel:hover,
  .split-panel:hover,
  .gallery-card:hover,
  .gallery-card:focus-visible,
  .aurea-video-head-card:hover,
  .aurea-video-head-card:focus-visible,
  .aurea-reel-card:hover,
  .aurea-reel-card:focus-visible,
  button.video-gallery-card:hover,
  button.video-gallery-card:focus-visible {
    transform: none;
  }

  .gateway-card:hover img,
  .gateway-card:focus-visible img,
  .gallery-card:hover img,
  .gallery-card:focus-visible img,
  .aurea-video-head-card:hover .aurea-video-head-card__media video,
  .aurea-video-head-card:focus-visible .aurea-video-head-card__media video,
  .aurea-reel-card:hover .aurea-reel-card__media video,
  .aurea-reel-card:focus-visible .aurea-reel-card__media video,
  button.video-gallery-card:hover .video-gallery-card__media img,
  button.video-gallery-card:focus-visible .video-gallery-card__media img {
    transform: none;
  }
}

@media (max-width: 760px) {
  body.is-mobile-nav-open {
    overflow: hidden;
  }

  .command-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .command-brand {
    justify-content: flex-start;
  }

  .command-menu-toggle {
    position: relative;
    z-index: 103;
    width: 44px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--v2-radius-xs);
    background: rgba(255, 255, 255, 0.055);
    color: var(--v2-ink);
    padding: 0;
  }

  .command-menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .command-menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .command-menu-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .experience-deck {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 58px;
    z-index: 102;
    width: auto;
    max-height: calc(100svh - 78px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid rgba(96, 245, 255, 0.18);
    border-radius: 0 0 var(--v2-radius) var(--v2-radius);
    background: linear-gradient(135deg, rgba(96, 245, 255, 0.1), rgba(255, 79, 216, 0.055)), rgba(3, 7, 10, 0.98);
    box-shadow: 0 28px 84px rgba(0, 0, 0, 0.48);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -10px, 0);
    visibility: hidden;
    mask-image: none;
    transition: opacity 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 220ms ease;
    backdrop-filter: blur(24px) saturate(150%);
  }

  .command-bar.is-mobile-open .experience-deck {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  .experience-deck .deck-indicator {
    display: none;
  }

  .nav-top-link,
  .nav-group,
  .nav-group-trigger {
    width: 100%;
    min-width: 0;
  }

  .experience-deck a,
  .nav-group-trigger {
    min-height: 52px;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--v2-radius-xs);
    background: rgba(255, 255, 255, 0.045);
    padding: 0 12px;
    text-align: left;
  }

  .nav-top-link,
  .nav-group-trigger {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-menu,
  .nav-group:hover .nav-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: none;
    visibility: hidden;
    transition: max-height 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease, visibility 180ms ease;
  }

  .nav-group.is-open .nav-menu,
  .nav-group:focus-within .nav-menu {
    max-height: 70svh;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-menu-shell {
    max-height: none;
    overflow: visible;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 8px;
  }

  .gallery-card,
  .gallery-card:nth-child(7n + 1),
  .gallery-card[data-orientation="vertical"],
  .gallery-card--wide {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: auto;
  }

  .gallery-card--wide {
    grid-column: 1 / -1;
  }
}

/* Premium cinematic UI pass: quiets the earlier cyber/HUD styling while keeping layout and behavior intact. */
body.v2-page {
  --premium-surface: rgba(8, 12, 17, 0.68);
  --premium-surface-strong: rgba(10, 14, 20, 0.82);
  --premium-line: rgba(255, 255, 255, 0.13);
  --premium-line-soft: rgba(255, 255, 255, 0.085);
  --premium-accent: rgba(96, 245, 255, 0.72);
  --premium-gold: rgba(255, 138, 61, 0.78);
}

.v2-page::after {
  opacity: 0;
}

.command-bar {
  background:
    linear-gradient(180deg, rgba(3, 6, 9, 0.9), rgba(3, 6, 9, 0.72)),
    rgba(3, 6, 9, 0.72);
  border-bottom-color: var(--premium-line-soft);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.22);
}

.command-bar.is-scrolled {
  background:
    linear-gradient(180deg, rgba(3, 6, 9, 0.96), rgba(3, 6, 9, 0.86)),
    rgba(3, 6, 9, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
}

.command-brand img {
  filter: brightness(0) invert(1);
}

.experience-deck a,
.nav-group-trigger {
  color: rgba(247, 251, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  transition: color 220ms ease, opacity 220ms ease;
}

.experience-deck a::before,
.nav-group-trigger::before {
  left: 14px;
  right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.72), transparent);
  opacity: 0;
}

.experience-deck a:hover,
.experience-deck a[aria-current="page"],
.nav-group.is-active .nav-group-trigger,
.nav-group.is-open .nav-group-trigger,
.nav-group-trigger:hover {
  color: var(--v2-ink);
}

.nav-menu-shell,
body.v2-page .consent-banner__panel,
body.v2-page .consent-modal__panel {
  border-color: var(--premium-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(5, 8, 12, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.nav-menu-shell::before,
.nav-menu-shell::after {
  display: none;
}

.command-cta,
.command-phone,
.v2-button,
body.v2-page .consent-banner__actions .button,
body.v2-page .consent-modal__actions .button,
body.v2-page .consent-trigger {
  clip-path: none;
  border-radius: var(--v2-radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: none;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.command-cta::after,
.v2-button::after {
  display: none;
}

.command-cta,
.v2-button--primary,
body.v2-page .consent-banner__actions .button.primary,
body.v2-page .consent-modal__actions .button.primary {
  border-color: rgba(96, 245, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(96, 245, 255, 0.94), rgba(48, 199, 181, 0.86)),
    rgba(96, 245, 255, 0.88);
  color: #031012;
  box-shadow: 0 12px 32px rgba(48, 199, 181, 0.16);
}

.v2-button--ghost,
.command-phone,
body.v2-page .consent-banner__actions .button,
body.v2-page .consent-modal__actions .button,
body.v2-page .consent-trigger {
  border-color: var(--premium-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(7, 10, 15, 0.58);
  color: rgba(247, 251, 255, 0.88);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.command-cta:hover,
.command-cta:focus-visible,
.command-phone:hover,
.command-phone:focus-visible,
.v2-button:hover,
.v2-button:focus-visible,
body.v2-page .consent-banner__actions .button:hover,
body.v2-page .consent-banner__actions .button:focus-visible,
body.v2-page .consent-modal__actions .button:hover,
body.v2-page .consent-modal__actions .button:focus-visible,
body.v2-page .consent-trigger:hover,
body.v2-page .consent-trigger:focus-visible {
  transform: translate3d(0, -1px, 0);
  border-color: rgba(255, 138, 61, 0.34);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.command-cta:hover,
.command-cta:focus-visible,
.v2-button--primary:hover,
.v2-button--primary:focus-visible,
body.v2-page .consent-banner__actions .button.primary:hover,
body.v2-page .consent-banner__actions .button.primary:focus-visible,
body.v2-page .consent-modal__actions .button.primary:hover,
body.v2-page .consent-modal__actions .button.primary:focus-visible {
  border-color: rgba(96, 245, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(111, 248, 255, 0.98), rgba(64, 207, 190, 0.92)),
    rgba(96, 245, 255, 0.92);
}

.hero-infographic-stage {
  perspective: none;
  border: 1px solid var(--premium-line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022)),
    rgba(5, 8, 12, 0.46);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(112%);
}

.hero-infographic-stage::before,
.hero-infographic-stage::after,
.hero-infographic-stage .motion-scan,
.hud-particle-field,
.hud-module::before,
.hud-module::after,
.persona-map::before,
.voice-hud-grid::before,
.nfc-handoff::before,
.light-stage-map::before,
.intel-dashboard::before,
.voice-wave::after,
.nfc-signal::after,
.intel-dashboard .intel-panel::after {
  content: none;
  display: none;
}

.hud-module {
  transform: none !important;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  padding: clamp(22px, 3vw, 34px);
}

.hud-topline,
.hud-dock,
.hud-metrics {
  color: rgba(247, 251, 255, 0.72);
}

.hud-topline span,
.hud-dock span,
.hud-metrics span {
  color: rgba(247, 251, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.hud-topline strong {
  color: rgba(247, 251, 255, 0.92);
  text-shadow: none;
}

.hud-ring,
.nfc-signal i {
  display: none;
}

.persona-core,
.persona-node,
.voice-orb,
.voice-script,
.hud-module .nfc-token,
.handoff-card,
.light-pulse-card,
.intel-dashboard .intel-panel,
.hud-dock span,
.hud-metrics span {
  border-color: var(--premium-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    rgba(8, 12, 17, 0.56);
  box-shadow: none;
  animation: none !important;
  transform: none !important;
}

.persona-core strong,
.voice-orb span,
.hud-module .nfc-token strong,
.handoff-card strong,
.light-pulse-card strong,
.intel-dashboard strong {
  color: var(--v2-ink);
  text-shadow: none;
}

.persona-core small,
.persona-node em,
.voice-script span,
.hud-module .nfc-token small,
.handoff-card span,
.light-pulse-card span,
.intel-dashboard span {
  color: var(--premium-gold);
}

.voice-wave i,
.light-stage-map .light-column {
  background:
    linear-gradient(180deg, rgba(96, 245, 255, 0.28), rgba(255, 138, 61, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow: none;
  animation: none !important;
}

.nfc-signal {
  color: rgba(247, 251, 255, 0.62);
}

.hero-function-strip {
  border-color: var(--premium-line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(4, 7, 11, 0.5);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.hero-slider-status {
  display: none;
}

.hero-tab::before {
  display: none;
}

.hero-tab::after {
  background: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.hero-tab:hover::after,
.hero-tab:focus-visible::after,
.hero-tab.is-active::after {
  background: rgba(255, 138, 61, 0.84);
  box-shadow: none;
}

.hero-arrows button {
  border-color: var(--premium-line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.hero-orchestration {
  min-height: 54px;
  align-items: center;
}

.hero-orchestration::before,
.hero-orchestration__signal {
  display: none;
}

.hero-flow-node {
  min-height: 48px;
  align-content: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(5, 8, 12, 0.32);
  padding: 8px 12px;
  opacity: 0.74;
  backdrop-filter: blur(10px);
}

.hero-flow-node::before,
.hero-flow-node::after {
  display: none;
}

.hero-flow-node small,
.hero-flow-node strong,
.hero-flow-node em {
  font-family: var(--font-sans);
  text-transform: none;
}

.hero-flow-node small {
  color: var(--premium-gold);
}

.hero-flow-node strong {
  color: rgba(247, 251, 255, 0.86);
  font-size: clamp(12px, 0.9vw, 14px);
}

.hero-flow-node em {
  color: rgba(247, 251, 255, 0.52);
  font-size: clamp(10px, 0.78vw, 12px);
}

.hero-flow-node.is-active {
  border-color: rgba(255, 138, 61, 0.28);
  background: rgba(255, 255, 255, 0.06);
  transform: none;
}

.hero-flow-node.is-active strong {
  color: var(--v2-ink);
  text-shadow: none;
}

.signal-card,
.system-node,
.tech-stack-card,
.gateway-card,
.sequence-panel,
.timeline-step,
.usecase-tile,
.split-panel,
.aurea-conference-card,
.case-vision__cards article,
.company-proof__panel,
.voice-console,
.sound-console,
.transcript-panel,
.media-rights-card,
.media-cta-card,
.video-gallery-card,
.gallery-toolbar,
.gallery-section-head,
.brief-shell,
.brief-summary,
.wizard-card {
  border-color: var(--premium-line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(7, 10, 15, 0.6);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
}

.gateway-card::before,
.gateway-card::after,
.signal-card::before,
.system-node::before,
.tech-stack-card::before,
.sequence-panel::before,
.timeline-step::before,
.usecase-tile::before {
  opacity: 0.42;
}

.gateway-card:hover,
.gateway-card:focus-visible,
.signal-card:hover,
.system-node:hover,
.tech-stack-card:hover,
.sequence-panel:hover,
.timeline-step:hover,
.usecase-tile:hover,
.split-panel:hover,
.gallery-card:hover,
.gallery-card:focus-visible,
.aurea-reel-card:hover,
.aurea-reel-card:focus-visible,
button.video-gallery-card:hover,
button.video-gallery-card:focus-visible {
  transform: translate3d(0, -1px, 0);
  border-color: rgba(255, 138, 61, 0.24);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1120px) {
  .hero-orchestration {
    display: none;
  }

  .hero-infographic-stage {
    border-radius: 16px;
  }
}

@media (max-width: 760px) {
  .hero-infographic-stage {
    background: rgba(5, 8, 12, 0.36);
  }

  .hero-function-strip {
    background: rgba(4, 7, 11, 0.62);
  }

  .experience-deck {
    border-color: var(--premium-line);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
      rgba(4, 7, 11, 0.98);
    box-shadow: 0 28px 84px rgba(0, 0, 0, 0.42);
  }

  .experience-deck a,
  .nav-group-trigger {
    border-color: var(--premium-line-soft);
    border-radius: var(--v2-radius-sm);
    background: rgba(255, 255, 255, 0.04);
  }
}

/* Final command header refresh. */
.command-menu-toggle {
  display: none;
}

.command-bar {
  min-height: 64px;
  grid-template-columns: minmax(178px, 0.9fr) minmax(470px, 1.35fr) minmax(286px, 0.9fr);
  gap: clamp(16px, 2vw, 30px);
  padding: 8px max(18px, calc((100vw - 1320px) / 2 + 18px));
  border-bottom-color: rgba(96, 245, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(3, 7, 10, 0.86), rgba(3, 7, 10, 0.68)),
    linear-gradient(90deg, rgba(96, 245, 255, 0.075), transparent 34%, rgba(255, 79, 216, 0.05));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px) saturate(150%);
}

.command-bar.is-scrolled {
  min-height: 60px;
  background:
    linear-gradient(180deg, rgba(3, 7, 10, 0.96), rgba(3, 7, 10, 0.84)),
    linear-gradient(90deg, rgba(96, 245, 255, 0.09), transparent 34%, rgba(255, 79, 216, 0.06));
  border-bottom-color: rgba(96, 245, 255, 0.26);
}

.command-brand {
  min-height: 40px;
  gap: 12px;
  justify-self: start;
}

.command-brand img {
  width: clamp(128px, 10vw, 154px);
}

.command-brand span {
  max-width: 112px;
  color: rgba(247, 251, 255, 0.62);
  font-size: 11px;
  line-height: 1.15;
  white-space: normal;
}

.experience-deck {
  justify-self: center;
  width: min(100%, 590px);
  min-height: 46px;
  gap: 4px;
  overflow: visible;
}

.nav-top-link,
.nav-group-trigger {
  min-width: clamp(78px, 6.2vw, 96px);
  min-height: 44px;
  padding: 0 10px;
  line-height: 1.06;
}

.experience-deck a,
.nav-group-trigger {
  overflow: visible;
  font-size: 13px;
  letter-spacing: 0;
}

.nav-top-link > span,
.nav-group-trigger > span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-top-link small,
.nav-group-trigger small {
  max-width: 100%;
  color: rgba(96, 245, 255, 0.78);
  font-size: 10px;
  line-height: 1.05;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-group-trigger::after {
  right: 5px;
  top: 13px;
}

.nav-menu {
  width: min(440px, calc(100vw - 32px));
  padding-top: 10px;
}

.nav-group:first-of-type .nav-menu {
  left: 0;
  transform: translateX(-30%) translateY(12px) scale(0.985);
}

.nav-group:first-of-type.is-open .nav-menu,
.nav-group:first-of-type:hover .nav-menu,
.nav-group:first-of-type:focus-within .nav-menu {
  transform: translateX(-30%) translateY(0) scale(1);
}

.nav-group:last-of-type .nav-menu {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(12px) scale(0.985);
}

.nav-group:last-of-type.is-open .nav-menu,
.nav-group:last-of-type:hover .nav-menu,
.nav-group:last-of-type:focus-within .nav-menu {
  transform: translateX(0) translateY(0) scale(1);
}

.nav-menu-shell {
  gap: 9px;
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.105), rgba(255, 79, 216, 0.055)),
    rgba(3, 7, 10, 0.97);
  padding: 10px;
}

.nav-menu-card {
  min-height: 74px;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  border-radius: 6px !important;
}

.nav-menu-thumb {
  height: 54px;
  border-radius: 5px;
}

.nav-menu-copy {
  min-width: 0;
  gap: 4px;
}

.nav-menu-copy strong {
  font-size: 17px;
  line-height: 1.08;
  white-space: normal;
}

.nav-menu-copy small {
  display: block;
  color: rgba(247, 251, 255, 0.66);
  font-size: 12px;
  line-height: 1.28;
  white-space: normal;
  overflow-wrap: anywhere;
}

.command-actions {
  justify-self: end;
  gap: 10px;
}

.command-phone {
  min-height: 40px;
  border-color: rgba(247, 251, 255, 0.14);
  border-radius: 6px;
  background: rgba(247, 251, 255, 0.045);
  color: rgba(247, 251, 255, 0.82);
  box-shadow: none;
  padding: 0 14px;
}

.command-bar .command-cta,
.command-cta {
  min-height: 42px;
  border-radius: 6px;
  clip-path: none;
  padding: 0 18px;
  background:
    radial-gradient(circle at 28% 0%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, var(--v2-cyan, #60f5ff), var(--v2-magenta, #ff4fd8) 72%, var(--v2-orange, #ff8a3d));
  color: #031010;
  box-shadow: 0 14px 36px rgba(48, 199, 181, 0.28);
  text-transform: none;
  white-space: nowrap;
}

.command-bar .command-cta::after,
.command-cta::after {
  display: none;
}

.command-phone:hover,
.command-phone:focus-visible {
  border-color: rgba(96, 245, 255, 0.36);
  background: rgba(96, 245, 255, 0.08);
  box-shadow: none;
}

.command-cta:hover,
.command-cta:focus-visible {
  border-color: rgba(255, 138, 61, 0.74);
  box-shadow: 0 18px 44px rgba(48, 199, 181, 0.34);
}

@media (max-width: 1180px) {
  .command-bar {
    grid-template-columns: minmax(150px, 0.75fr) minmax(420px, 1fr) auto;
    gap: 12px;
    padding-inline: 14px;
  }

  .command-brand span {
    display: none;
  }

  .experience-deck {
    width: min(100%, 520px);
  }

  .nav-top-link,
  .nav-group-trigger {
    min-width: 78px;
    padding-inline: 8px;
  }

  .command-phone {
    display: none;
  }
}

@media (max-width: 900px) {
  body.is-mobile-nav-open {
    overflow: hidden;
  }

  .command-bar {
    top: 0;
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
    padding: 9px 10px;
  }

  .command-brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    justify-content: flex-start;
    min-height: 40px;
  }

  .command-brand img {
    width: clamp(112px, 32vw, 142px);
  }

  .command-actions {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    justify-self: end;
  }

  .command-phone {
    display: none;
  }

  .command-bar .command-cta,
  .command-cta {
    min-height: 40px;
    padding-inline: clamp(11px, 3.2vw, 16px);
    font-size: clamp(12px, 3.15vw, 14px);
  }

  .command-menu-toggle {
    position: relative;
    z-index: 103;
    grid-column: 3;
    grid-row: 1;
    width: 42px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(247, 251, 255, 0.16);
    border-radius: 6px;
    background: rgba(247, 251, 255, 0.055);
    color: var(--v2-ink);
    padding: 0;
  }

  .command-menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .command-menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .command-menu-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .experience-deck {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 62px;
    z-index: 102;
    grid-column: 1 / -1;
    width: auto;
    max-height: calc(100svh - 76px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid rgba(96, 245, 255, 0.2);
    border-radius: 0 0 8px 8px;
    background:
      linear-gradient(135deg, rgba(96, 245, 255, 0.11), rgba(255, 79, 216, 0.06)),
      rgba(3, 7, 10, 0.985);
    box-shadow: 0 28px 84px rgba(0, 0, 0, 0.54);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -10px, 0);
    visibility: hidden;
    mask-image: none;
    transition: opacity 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 220ms ease;
    backdrop-filter: blur(24px) saturate(150%);
  }

  .command-bar.is-mobile-open .experience-deck {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  .experience-deck .deck-indicator {
    display: none;
  }

  .nav-top-link,
  .nav-group,
  .nav-group-trigger {
    width: 100%;
    min-width: 0;
  }

  .experience-deck a,
  .nav-group-trigger {
    min-height: 52px;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid rgba(247, 251, 255, 0.1);
    border-radius: 6px;
    background: rgba(247, 251, 255, 0.045);
    padding: 0 12px;
    text-align: left;
    font-size: 15px;
  }

  .nav-top-link,
  .nav-group-trigger {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-top-link small,
  .nav-group-trigger small {
    margin-left: auto;
    margin-top: 0;
    font-size: 12px;
    text-align: right;
  }

  .nav-group-trigger::after {
    right: 14px;
    top: 21px;
  }

  .nav-menu,
  .nav-group:first-of-type .nav-menu,
  .nav-group:last-of-type .nav-menu,
  .nav-group:hover .nav-menu {
    position: static;
    left: auto;
    right: auto;
    width: 100%;
    max-height: 0;
    padding-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: none;
    visibility: hidden;
    transition: max-height 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease, visibility 180ms ease;
  }

  .nav-group.is-open .nav-menu,
  .nav-group:first-of-type.is-open .nav-menu,
  .nav-group:last-of-type.is-open .nav-menu,
  .nav-group:focus-within .nav-menu {
    max-height: 70svh;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-menu-shell {
    max-height: none;
    gap: 8px;
    overflow: visible;
    padding: 8px;
  }

  .nav-menu-card {
    min-height: 70px;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
    padding: 8px !important;
  }

  .nav-menu-thumb {
    height: 52px;
  }

  .nav-menu-copy strong {
    font-size: 16px;
  }

  .nav-menu-copy small {
    font-size: 12px;
    line-height: 1.25;
  }
}

@media (max-width: 420px) {
  .command-bar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 6px;
  }

  .command-brand img {
    width: 104px;
  }

  .command-bar .command-cta,
  .command-cta {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .command-menu-toggle {
    width: 40px;
    height: 38px;
  }

  .experience-deck {
    left: 8px;
    right: 8px;
    top: 58px;
    max-height: calc(100svh - 70px);
  }
}

@media (max-width: 340px) {
  .command-bar .command-cta,
  .command-cta {
    max-width: 104px;
    white-space: normal;
    line-height: 1.05;
  }
}

/* Twoja AI CTA */
.command-bar .command-cta {
  min-width: 124px;
  min-height: 48px;
  flex-direction: column;
  gap: 2px;
  padding: 6px 16px 7px;
  line-height: 1;
  white-space: normal;
}

.command-bar .command-cta span,
.command-bar .command-cta small,
.v2-footer__cta span,
.v2-footer__cta small,
.site-footer__cta span,
.site-footer__cta small,
.ai-request-cta__button span,
.ai-request-cta__button small {
  display: block;
  letter-spacing: 0;
  line-height: 1;
}

.command-bar .command-cta span {
  font-size: 14px;
  font-weight: 760;
}

.command-bar .command-cta small {
  color: rgba(3, 16, 18, 0.76);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.v2-footer .v2-footer__cta,
.site-footer .site-footer__cta {
  min-height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  padding: 8px 14px;
}

.v2-footer__cta span,
.site-footer__cta span {
  font-size: 14px;
  font-weight: 760;
}

.v2-footer__cta small,
.site-footer__cta small {
  color: rgba(247, 251, 255, 0.66);
  font-size: 11px;
  font-weight: 650;
}

.v2-footer__cta:hover small,
.v2-footer__cta:focus-visible small,
.site-footer__cta:hover small,
.site-footer__cta:focus-visible small {
  color: rgba(3, 16, 18, 0.72);
}

.ai-request-cta {
  position: relative;
  isolation: isolate;
  min-height: clamp(460px, 52svh, 640px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(96, 245, 255, 0.16);
  border-bottom: 1px solid rgba(255, 138, 61, 0.16);
  background: #05070a;
}

.ai-request-cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.58), rgba(96, 245, 255, 0.32), transparent);
  pointer-events: none;
}

.ai-request-cta__bg,
.ai-request-cta__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ai-request-cta__bg {
  z-index: 0;
  margin: 0;
}

.ai-request-cta__bg img {
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.02);
}

.ai-request-cta__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 4, 6, 0.94) 0%, rgba(3, 4, 6, 0.78) 46%, rgba(3, 4, 6, 0.28) 100%),
    linear-gradient(180deg, rgba(3, 4, 6, 0.1), rgba(3, 4, 6, 0.84));
  pointer-events: none;
}

.ai-request-cta__inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 42px;
  margin: 0 auto;
  padding: 96px 0;
}

.ai-request-cta__inner > div {
  min-width: 0;
  max-width: 100%;
}

.ai-request-cta__inner h2 {
  width: 100%;
  max-width: 820px;
  margin: 0;
  color: var(--v2-ink, #f7fbff);
  font-family: var(--font-display, var(--font-sans));
  font-size: 72px;
  font-weight: 760;
  line-height: 0.94;
  overflow-wrap: break-word;
  white-space: normal;
  text-wrap: balance;
}

.ai-request-cta__inner p:not(.kicker) {
  width: 100%;
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(247, 251, 255, 0.72);
  font-size: 18px;
  line-height: 1.55;
  overflow-wrap: break-word;
  white-space: normal;
}

.ai-request-cta__button {
  min-width: 236px;
  min-height: 92px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(96, 245, 255, 0.5);
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.38), transparent 34%),
    linear-gradient(135deg, var(--v2-cyan, #60f5ff), var(--v2-magenta, #ff4fd8) 72%, var(--v2-orange, #ff8a3d));
  color: #031010;
  padding: 16px 18px 18px;
  text-decoration: none;
  box-shadow: 0 24px 58px rgba(48, 199, 181, 0.26);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.ai-request-cta__button span {
  font-size: 34px;
  font-weight: 780;
}

.ai-request-cta__button small {
  color: rgba(3, 16, 18, 0.74);
  font-size: 13px;
  font-weight: 760;
}

.ai-request-cta__button:hover,
.ai-request-cta__button:focus-visible {
  border-color: rgba(255, 138, 61, 0.78);
  box-shadow: 0 30px 68px rgba(48, 199, 181, 0.34);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .ai-request-cta__inner h2 {
    font-size: 56px;
  }
}

@media (max-width: 900px) {
  .command-bar .command-cta {
    min-width: 112px;
    min-height: 42px;
    padding: 5px 12px 6px;
  }

  .command-bar .command-cta span {
    font-size: 13px;
  }

  .command-bar .command-cta small {
    font-size: 9px;
  }
}

@media (max-width: 760px) {
  .ai-request-cta {
    min-height: 0;
  }

  .ai-request-cta__shade {
    background:
      linear-gradient(180deg, rgba(3, 4, 6, 0.72), rgba(3, 4, 6, 0.94)),
      linear-gradient(90deg, rgba(3, 4, 6, 0.9), rgba(3, 4, 6, 0.62));
  }

  .ai-request-cta__inner {
    width: min(1120px, calc(100% - 32px));
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
    padding: 88px 0;
  }

  .ai-request-cta__inner h2 {
    max-width: calc(100vw - 32px);
    font-size: 32px;
    line-height: 1;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .ai-request-cta__inner p:not(.kicker) {
    max-width: calc(100vw - 32px);
    overflow-wrap: anywhere;
    font-size: 16px;
  }

  .ai-request-cta__button {
    width: min(100%, 320px);
    min-height: 82px;
  }
}

@media (max-width: 560px) {
  .command-bar .command-cta {
    min-width: 96px;
    min-height: 40px;
    padding: 5px 9px;
  }

  .command-bar .command-cta span {
    font-size: 12px;
  }

  .command-bar .command-cta small {
    font-size: 8px;
  }

  .ai-request-cta__inner h2,
  .ai-request-cta__inner p:not(.kicker) {
    max-width: min(100%, 356px);
  }
}

@media (max-width: 420px) {
  .command-bar .command-cta {
    min-width: 96px;
    min-height: 40px;
    padding: 5px 9px;
  }

  .command-bar .command-cta span {
    font-size: 12px;
  }

  .command-bar .command-cta small {
    font-size: 8px;
  }

  .ai-request-cta__inner h2 {
    font-size: 30px;
  }

  .ai-request-cta__button span {
    font-size: 28px;
  }
}

/* Case refinement layer. */
body[data-page="realizacja"].v2-page .case-conference-reel.case-signature {
  padding: clamp(44px, 5.8vw, 84px) max(18px, calc((100vw - 1260px) / 2)) clamp(52px, 6vw, 90px);
  background:
    radial-gradient(circle at 10% 12%, rgba(96, 245, 255, 0.12), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(255, 79, 216, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.96), rgba(5, 7, 10, 0.9));
}

body[data-page="realizacja"].v2-page .aurea-conference-card.aurea-conference-card--featured.case-signature-card,
body[data-page="realizacja"].v2-page .case-signature-card {
  width: min(100%, 1260px);
  max-width: 1260px;
  display: grid;
  grid-template-columns: minmax(420px, 0.66fr) minmax(0, 1fr) !important;
  grid-template-rows: minmax(0, auto) auto;
  gap: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(96, 245, 255, 0.18) !important;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.07), rgba(255, 79, 216, 0.055)),
    rgba(247, 251, 255, 0.026) !important;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
  padding: 0 !important;
}

body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__copy {
  grid-column: 1 !important;
  grid-row: 1 !important;
  min-width: 0;
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: clamp(16px, 2vw, 24px);
  border-right: 1px solid rgba(96, 245, 255, 0.14);
  background:
    radial-gradient(circle at 0% 0%, rgba(96, 245, 255, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(3, 7, 10, 0.62), rgba(3, 7, 10, 0.3));
  padding: clamp(26px, 3.3vw, 46px);
}

body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(31px, 3.1vw, 48px);
  line-height: 0.96;
}

body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__copy p:not(.kicker) {
  max-width: 520px;
  color: rgba(247, 251, 255, 0.72);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.62;
}

body[data-page="realizacja"].v2-page .case-signature-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body[data-page="realizacja"].v2-page .case-signature-card__meta span {
  border: 1px solid rgba(96, 245, 255, 0.18);
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.045);
  color: rgba(247, 251, 255, 0.78);
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  padding: 8px 10px;
  text-transform: uppercase;
}

body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__media {
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 100%;
  min-width: 0;
  min-height: clamp(400px, 36vw, 560px);
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 7, 10, 0.22), transparent 18%),
    linear-gradient(180deg, rgba(3, 7, 10, 0.18), transparent 28%, rgba(3, 7, 10, 0.38));
}

body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__media span {
  z-index: 2;
  bottom: 18px;
  left: 18px;
  border-color: rgba(96, 245, 255, 0.32);
  background: rgba(3, 7, 10, 0.78);
  color: rgba(247, 251, 255, 0.86);
}

body[data-page="realizacja"].v2-page .case-signature-proof {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(247, 251, 255, 0.08);
  background: rgba(3, 7, 10, 0.34);
}

body[data-page="realizacja"].v2-page .case-signature-proof li {
  min-height: 92px;
  border: 0;
  border-right: 1px solid rgba(247, 251, 255, 0.08);
  border-radius: 0;
  background: transparent;
  padding: clamp(18px, 2vw, 24px);
}

body[data-page="realizacja"].v2-page .case-signature-proof li:last-child {
  border-right: 0;
}

body[data-page="realizacja"].v2-page .case-vision {
  width: min(100% - 48px, 1180px);
  gap: clamp(34px, 5.4vw, 86px);
  padding: clamp(78px, 8vw, 132px) 0 clamp(48px, 5.8vw, 86px);
}

body[data-page="realizacja"].v2-page .case-vision__copy {
  position: relative;
}

body[data-page="realizacja"].v2-page .case-vision__copy::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(96, 245, 255, 0), rgba(96, 245, 255, 0.5), rgba(255, 79, 216, 0.32), rgba(96, 245, 255, 0));
}

body[data-page="realizacja"].v2-page .case-vision__copy h2 {
  max-width: 780px;
  font-size: clamp(42px, 5.5vw, 76px);
}

body[data-page="realizacja"].v2-page .case-vision__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: clamp(22px, 2.5vw, 34px);
}

body[data-page="realizacja"].v2-page .case-vision__tags span {
  border: 1px solid rgba(247, 251, 255, 0.11);
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.038);
  color: rgba(247, 251, 255, 0.74);
  font-size: 12px;
  font-weight: 720;
  line-height: 1;
  padding: 9px 11px;
}

body[data-page="realizacja"].v2-page .case-vision__cards {
  counter-reset: caseVision;
  gap: 14px;
}

body[data-page="realizacja"].v2-page .case-vision__cards article {
  counter-increment: caseVision;
  min-height: 0;
  display: grid;
  gap: 10px;
  padding: clamp(22px, 2.4vw, 32px) clamp(20px, 2.4vw, 30px);
}

body[data-page="realizacja"].v2-page .case-vision__cards article::after {
  content: "0" counter(caseVision);
  position: absolute;
  right: 18px;
  top: 16px;
  color: rgba(255, 79, 216, 0.34);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 760;
}

body[data-page="realizacja"].v2-page .case-layer-board {
  position: relative;
  isolation: isolate;
  width: min(100% - 48px, 1240px);
  display: grid;
  gap: clamp(22px, 3vw, 38px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px) 0 clamp(64px, 7vw, 104px);
}

body[data-page="realizacja"].v2-page .case-layer-board::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 245, 255, 0.42), rgba(255, 79, 216, 0.24), transparent);
}

body[data-page="realizacja"].v2-page .case-layer-board__head {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(320px, 0.46fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: end;
}

body[data-page="realizacja"].v2-page .case-layer-board__head h2 {
  max-width: 780px;
  margin: 0;
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 0.98;
}

body[data-page="realizacja"].v2-page .case-layer-board__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, auto);
  grid-auto-flow: dense;
  gap: clamp(12px, 1.6vw, 20px);
}

body[data-page="realizacja"].v2-page .case-layer-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 9px;
  background: #05070a;
}

body[data-page="realizacja"].v2-page .case-layer-card--wide {
  grid-column: span 2;
}

body[data-page="realizacja"].v2-page .case-layer-card--tall {
  grid-row: span 2;
}

body[data-page="realizacja"].v2-page .case-layer-card picture,
body[data-page="realizacja"].v2-page .case-layer-card img {
  width: 100%;
  height: 100%;
  display: block;
}

body[data-page="realizacja"].v2-page .case-layer-card img {
  object-fit: cover;
  filter: saturate(1.04) contrast(1.05);
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

body[data-page="realizacja"].v2-page .case-layer-card:hover img {
  transform: scale(1.04);
}

body[data-page="realizacja"].v2-page .case-layer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 10, 0.02), rgba(3, 7, 10, 0.3) 48%, rgba(3, 7, 10, 0.92));
  pointer-events: none;
}

body[data-page="realizacja"].v2-page .case-layer-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

body[data-page="realizacja"].v2-page .case-layer-card span {
  color: var(--v2-orange);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

body[data-page="realizacja"].v2-page .case-layer-card strong {
  max-width: 480px;
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.04;
}

body[data-page="realizacja"].v2-page .case-delivery {
  position: relative;
  padding-top: clamp(72px, 7vw, 116px);
}

body[data-page="realizacja"].v2-page .case-delivery .tech-pitch__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.42fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 54px);
}

body[data-page="realizacja"].v2-page .case-delivery .tech-pitch__intro h2 {
  max-width: 850px;
}

body[data-page="realizacja"].v2-page .case-delivery .tech-pitch__intro p:not(.kicker) {
  max-width: 520px;
  border-left: 1px solid rgba(96, 245, 255, 0.22);
  padding-left: 18px;
}

body[data-page="realizacja"].v2-page .case-stack-grid {
  gap: clamp(12px, 1.6vw, 20px);
}

body[data-page="realizacja"].v2-page .case-sequence {
  width: min(100% - 48px, 1180px);
  gap: 12px;
  padding: clamp(70px, 8vw, 120px) 0;
}

body[data-page="realizacja"].v2-page .sequence-panel {
  border-top: 1px solid rgba(96, 245, 255, 0.16) !important;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.035), rgba(255, 79, 216, 0.025)),
    transparent !important;
  padding-top: clamp(22px, 2.5vw, 34px) !important;
}

@media (max-width: 1100px) {
  body[data-page="realizacja"].v2-page .aurea-conference-card.aurea-conference-card--featured.case-signature-card,
  body[data-page="realizacja"].v2-page .case-signature-card,
  body[data-page="realizacja"].v2-page .case-layer-board__head,
  body[data-page="realizacja"].v2-page .case-delivery .tech-pitch__intro {
    grid-template-columns: 1fr !important;
  }

  body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__copy,
  body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__media {
    grid-column: 1;
  }

  body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__copy {
    grid-row: 1;
    border-right: 0;
    border-bottom: 1px solid rgba(96, 245, 255, 0.14);
  }

  body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__media {
    grid-row: 2;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  body[data-page="realizacja"].v2-page .case-signature-proof {
    grid-row: 3;
  }

  body[data-page="realizacja"].v2-page .case-layer-board__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="realizacja"].v2-page .case-conference-reel.case-signature {
    padding-inline: 16px;
  }

  body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__copy {
    padding: 24px 20px;
  }

  body[data-page="realizacja"].v2-page .case-signature-proof,
  body[data-page="realizacja"].v2-page .case-layer-board__grid {
    grid-template-columns: 1fr;
  }

  body[data-page="realizacja"].v2-page .case-signature-proof li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 251, 255, 0.08);
  }

  body[data-page="realizacja"].v2-page .case-signature-proof li:last-child {
    border-bottom: 0;
  }

  body[data-page="realizacja"].v2-page .case-vision,
  body[data-page="realizacja"].v2-page .case-layer-board,
  body[data-page="realizacja"].v2-page .case-sequence {
    width: min(100% - 32px, 1240px);
  }

  body[data-page="realizacja"].v2-page .case-vision__copy::before {
    left: 0;
    right: 0;
    top: -24px;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(96, 245, 255, 0.5), rgba(255, 79, 216, 0.26), transparent);
  }

  body[data-page="realizacja"].v2-page .case-layer-card,
  body[data-page="realizacja"].v2-page .case-layer-card--wide,
  body[data-page="realizacja"].v2-page .case-layer-card--tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  body[data-page="realizacja"].v2-page .case-delivery .tech-pitch__intro p:not(.kicker) {
    border-left: 0;
    padding-left: 0;
  }
}

/* Final polish: cyan/magenta palette, Case proof section and audio controls. */
:root {
  --v2-cyan: #60f5ff;
  --v2-magenta: #ff4fd8;
  --v2-pink: #ff4fd8;
  --v2-orange: #ff8a3d;
  --v2-gold: #ff8a3d;
  --v2-amber: #ff8a3d;
}

body.v2-page .command-cta,
body.v2-page .v2-button--primary,
.v2-footer[data-motion-scene] .v2-footer__cta,
.v2-footer[data-motion-scene] .v2-footer__cta:hover,
.v2-footer[data-motion-scene] .v2-footer__cta:focus-visible,
body.legal-page .site-footer[data-motion-scene] .site-footer__cta,
body.legal-page .site-footer[data-motion-scene] .site-footer__cta:hover,
body.legal-page .site-footer[data-motion-scene] .site-footer__cta:focus-visible,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__cta,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__cta:hover,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__cta:focus-visible {
  border-color: rgba(255, 79, 216, 0.36);
  background:
    radial-gradient(circle at 26% 0%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, var(--v2-cyan), var(--v2-magenta) 72%, var(--v2-orange));
  color: #031010;
  box-shadow: 0 16px 42px rgba(255, 79, 216, 0.18), 0 12px 34px rgba(96, 245, 255, 0.12);
}

body[data-page="glos"].v2-page main#main .voice-console {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(340px, 0.86fr) minmax(250px, 0.56fr);
  gap: clamp(16px, 2.3vw, 30px);
  align-items: stretch;
  border: 1px solid rgba(96, 245, 255, 0.15) !important;
  border-radius: 10px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(96, 245, 255, 0.1), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(255, 79, 216, 0.11), transparent 34%),
    rgba(247, 251, 255, 0.028) !important;
  padding: clamp(16px, 2vw, 26px) !important;
}

body[data-page="muzyka"].v2-page main#main .sound-console,
body[data-page="muzyka"].v2-page main#main .sound-state-grid {
  border: 1px solid rgba(96, 245, 255, 0.15) !important;
  border-radius: 10px !important;
  background:
    radial-gradient(circle at 28% 18%, color-mix(in srgb, var(--state-accent, var(--v2-cyan)) 18%, transparent), transparent 34%),
    radial-gradient(circle at 84% 8%, rgba(255, 79, 216, 0.1), transparent 32%),
    rgba(247, 251, 255, 0.028) !important;
  padding: clamp(18px, 2.4vw, 32px) !important;
}

body[data-page="glos"].v2-page main#main .voice-pack-switch button,
body[data-page="glos"].v2-page main#main .voice-actions button,
body[data-page="glos"].v2-page main#main .voice-question-stack button,
body[data-page="muzyka"].v2-page main#main .sound-states button,
body[data-page="muzyka"].v2-page main#main .sound-tracks button {
  width: 100%;
  min-height: 52px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 12px;
  align-items: center;
  border: 1px solid rgba(247, 251, 255, 0.13) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.055), rgba(255, 79, 216, 0.035)),
    rgba(247, 251, 255, 0.035) !important;
  color: rgba(247, 251, 255, 0.78) !important;
  box-shadow: none !important;
  padding: 12px 13px !important;
  text-align: left;
  text-transform: none;
}

body[data-page="glos"].v2-page main#main .voice-pack-switch button::after,
body[data-page="glos"].v2-page main#main .voice-actions button::after,
body[data-page="glos"].v2-page main#main .voice-question-stack button::after,
body[data-page="muzyka"].v2-page main#main .sound-states button::after,
body[data-page="muzyka"].v2-page main#main .sound-tracks button::after {
  display: none !important;
}

body[data-page="glos"].v2-page main#main .voice-pack-switch button:hover,
body[data-page="glos"].v2-page main#main .voice-pack-switch button:focus-visible,
body[data-page="glos"].v2-page main#main .voice-actions button:hover,
body[data-page="glos"].v2-page main#main .voice-actions button:focus-visible,
body[data-page="glos"].v2-page main#main .voice-question-stack button:hover,
body[data-page="glos"].v2-page main#main .voice-question-stack button:focus-visible,
body[data-page="muzyka"].v2-page main#main .sound-states button:hover,
body[data-page="muzyka"].v2-page main#main .sound-states button:focus-visible,
body[data-page="muzyka"].v2-page main#main .sound-tracks button:hover,
body[data-page="muzyka"].v2-page main#main .sound-tracks button:focus-visible {
  border-color: rgba(96, 245, 255, 0.4) !important;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.11), rgba(255, 79, 216, 0.065)),
    rgba(247, 251, 255, 0.055) !important;
  color: var(--v2-ink) !important;
  transform: translateY(-1px);
  outline: 0;
}

body[data-page="glos"].v2-page main#main .voice-pack-switch button.is-active,
body[data-page="glos"].v2-page main#main .voice-actions button.is-active,
body[data-page="glos"].v2-page main#main .voice-question-stack button.is-active,
body[data-page="muzyka"].v2-page main#main .sound-states button.is-active,
body[data-page="muzyka"].v2-page main#main .sound-tracks button.is-active {
  border-color: rgba(255, 79, 216, 0.56) !important;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.14), rgba(255, 79, 216, 0.13)),
    rgba(247, 251, 255, 0.075) !important;
  box-shadow: 0 16px 42px rgba(255, 79, 216, 0.09) !important;
}

@media (max-width: 1100px) {
  body[data-page="glos"].v2-page main#main .voice-console,
  body[data-page="muzyka"].v2-page main#main .sound-console {
    grid-template-columns: 1fr;
  }
}

body[data-page="realizacja"].v2-page .case-conference-reel.case-conference-reel--featured {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  padding: clamp(58px, 7vw, 104px) max(20px, calc((100vw - 1240px) / 2)) clamp(50px, 6vw, 86px);
  background:
    radial-gradient(circle at 16% 12%, rgba(96, 245, 255, 0.12), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(255, 79, 216, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.98), rgba(5, 7, 10, 0.9));
}

body[data-page="realizacja"].v2-page .case-conference-reel.case-conference-reel--featured::before {
  background: linear-gradient(90deg, transparent, rgba(96, 245, 255, 0.5), rgba(255, 79, 216, 0.34), transparent);
}

body[data-page="realizacja"].v2-page .aurea-conference-card.aurea-conference-card--featured {
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(300px, 0.74fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(96, 245, 255, 0.18) !important;
  border-radius: 10px;
  background:
    radial-gradient(circle at 16% 0%, rgba(96, 245, 255, 0.13), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(255, 79, 216, 0.12), transparent 34%),
    rgba(247, 251, 255, 0.032) !important;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
  padding: clamp(12px, 1.4vw, 18px);
}

body[data-page="realizacja"].v2-page .aurea-conference-card--featured .aurea-conference-card__media {
  min-height: clamp(340px, 48vw, 640px);
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #020407;
}

body[data-page="realizacja"].v2-page .aurea-conference-card--featured .aurea-conference-card__media video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

body[data-page="realizacja"].v2-page .aurea-conference-card__media span {
  top: auto;
  bottom: 16px;
  left: 16px;
  border: 1px solid rgba(96, 245, 255, 0.26);
  border-radius: 999px;
  background: rgba(3, 7, 10, 0.78);
  color: rgba(247, 251, 255, 0.9);
  padding: 8px 12px;
  backdrop-filter: blur(14px);
}

body[data-page="realizacja"].v2-page .aurea-conference-card--featured .aurea-conference-card__copy {
  align-self: center;
  padding: clamp(10px, 2vw, 28px) clamp(4px, 1vw, 12px);
}

body[data-page="realizacja"].v2-page .aurea-conference-card--featured .aurea-conference-card__copy h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.65vw, 54px);
  line-height: 0.98;
}

body[data-page="realizacja"].v2-page .conference-proof-list li {
  border: 1px solid rgba(247, 251, 255, 0.1);
  border-radius: 8px;
  background: rgba(247, 251, 255, 0.045);
}

body[data-page="realizacja"].v2-page .conference-proof-list span,
body[data-page="realizacja"].v2-page .case-proof-card span {
  color: var(--v2-orange);
}

body[data-page="realizacja"].v2-page .case-vision__cards article,
body[data-page="realizacja"].v2-page .case-stack-grid .tech-stack-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(247, 251, 255, 0.1) !important;
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.07), rgba(255, 79, 216, 0.045)),
    rgba(247, 251, 255, 0.028) !important;
  box-shadow: none !important;
}

body[data-page="realizacja"].v2-page .case-vision__cards article::before,
body[data-page="realizacja"].v2-page .case-stack-grid .tech-stack-card::before {
  left: auto;
  right: 0;
  top: 0;
  z-index: 0;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 245, 255, 0.44), rgba(255, 79, 216, 0.28));
  pointer-events: none;
}

body[data-page="realizacja"].v2-page .case-vision__cards article > *,
body[data-page="realizacja"].v2-page .case-stack-grid .tech-stack-card > * {
  position: relative;
  z-index: 1;
}

body[data-page="realizacja"].v2-page .case-stack-grid .tech-stack-card::after {
  right: 16px;
  top: 14px;
  bottom: auto;
  z-index: 1;
  color: rgba(255, 79, 216, 0.38);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1;
  pointer-events: none;
}

body[data-page="realizacja"].v2-page .case-proof-mosaic {
  width: min(100% - 48px, 1240px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 22px);
  align-items: stretch;
  margin: 0 auto;
  padding: clamp(64px, 7vw, 110px) 0 clamp(72px, 8vw, 124px);
}

body[data-page="realizacja"].v2-page .case-proof-mosaic .case-gallery-caption {
  grid-column: span 2;
  min-height: 100%;
  align-self: stretch;
  border: 1px solid rgba(96, 245, 255, 0.14);
  border-radius: 9px;
  background:
    radial-gradient(circle at 0% 0%, rgba(96, 245, 255, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(247, 251, 255, 0.055), rgba(247, 251, 255, 0.018));
  padding: clamp(24px, 3vw, 42px);
}

body[data-page="realizacja"].v2-page .case-proof-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 9px;
  background: #05070a;
}

body[data-page="realizacja"].v2-page .case-proof-card--wide {
  grid-column: span 2;
}

body[data-page="realizacja"].v2-page .case-proof-card--tall {
  grid-row: span 2;
}

body[data-page="realizacja"].v2-page .case-proof-card picture,
body[data-page="realizacja"].v2-page .case-proof-card img {
  width: 100%;
  height: 100%;
  display: block;
}

body[data-page="realizacja"].v2-page .case-proof-card img {
  object-fit: cover;
  filter: saturate(1.06) contrast(1.05);
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

body[data-page="realizacja"].v2-page .case-proof-card:hover img {
  transform: scale(1.045);
}

body[data-page="realizacja"].v2-page .case-proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(3, 7, 10, 0.2) 48%, rgba(3, 7, 10, 0.9));
  pointer-events: none;
}

body[data-page="realizacja"].v2-page .case-proof-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

body[data-page="realizacja"].v2-page .case-proof-card strong {
  max-width: 460px;
  color: var(--v2-ink);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.06;
}

body[data-page="glos"].v2-page .voice-stage,
body[data-page="muzyka"].v2-page .music-stage {
  width: min(100% - 48px, 1240px);
}

body[data-page="glos"].v2-page .voice-console {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(340px, 0.86fr) minmax(250px, 0.56fr);
  gap: clamp(16px, 2.3vw, 30px);
  align-items: stretch;
  overflow: visible;
  border: 1px solid rgba(96, 245, 255, 0.15) !important;
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 0%, rgba(96, 245, 255, 0.1), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(255, 79, 216, 0.11), transparent 34%),
    rgba(247, 251, 255, 0.028) !important;
  padding: clamp(16px, 2vw, 26px);
}

body[data-page="glos"].v2-page .transcript-panel.transcript-panel--inline,
body[data-page="glos"].v2-page .voice-panel-main,
body[data-page="glos"].v2-page .voice-side,
body[data-page="muzyka"].v2-page .sound-controls,
body[data-page="muzyka"].v2-page .sound-state-grid {
  border: 1px solid rgba(247, 251, 255, 0.1) !important;
  border-radius: 8px;
  background: rgba(247, 251, 255, 0.035) !important;
  padding: clamp(16px, 1.6vw, 22px);
}

body[data-page="glos"].v2-page .transcript-panel.transcript-panel--inline {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 18px;
  background: rgba(3, 7, 10, 0.38) !important;
}

body[data-page="glos"].v2-page .transcript-copy {
  max-height: min(56svh, 620px);
  overflow-y: auto;
  padding-right: 6px;
  color: rgba(247, 251, 255, 0.76);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.68;
}

body[data-page="muzyka"].v2-page .sound-console {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  border: 1px solid rgba(96, 245, 255, 0.15) !important;
  border-radius: 10px;
  background:
    radial-gradient(circle at 28% 18%, color-mix(in srgb, var(--state-accent, var(--v2-cyan)) 18%, transparent), transparent 34%),
    radial-gradient(circle at 84% 8%, rgba(255, 79, 216, 0.1), transparent 32%),
    rgba(247, 251, 255, 0.028) !important;
  padding: clamp(18px, 2.4vw, 32px);
}

body[data-page="muzyka"].v2-page .sound-core {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  min-height: clamp(320px, 36vw, 520px);
}

body[data-page="muzyka"].v2-page .sound-state-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(14px, 2vw, 24px);
}

body[data-page="muzyka"].v2-page .player-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="muzyka"].v2-page .range-label input {
  accent-color: var(--v2-magenta);
}

body[data-page="glos"].v2-page .voice-console audio,
body[data-page="muzyka"].v2-page .sound-controls audio {
  width: 100%;
  border-radius: 8px;
  background: rgba(247, 251, 255, 0.08);
}

body.v2-page:not([data-page="home"]) .voice-pack-switch button,
body.v2-page:not([data-page="home"]) .voice-actions button,
body.v2-page:not([data-page="home"]) .voice-question-stack button,
body.v2-page:not([data-page="home"]) .sound-states button,
body.v2-page:not([data-page="home"]) .sound-tracks button {
  width: 100%;
  min-height: 52px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 12px;
  align-items: center;
  border: 1px solid rgba(247, 251, 255, 0.13) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.055), rgba(255, 79, 216, 0.035)),
    rgba(247, 251, 255, 0.035) !important;
  color: rgba(247, 251, 255, 0.78) !important;
  box-shadow: none !important;
  padding: 12px 13px !important;
  text-align: left;
  text-transform: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

body.v2-page:not([data-page="home"]) .voice-pack-switch button::after,
body.v2-page:not([data-page="home"]) .voice-actions button::after,
body.v2-page:not([data-page="home"]) .voice-question-stack button::after,
body.v2-page:not([data-page="home"]) .sound-states button::after,
body.v2-page:not([data-page="home"]) .sound-tracks button::after {
  display: none !important;
}

body.v2-page:not([data-page="home"]) .voice-pack-switch button span,
body.v2-page:not([data-page="home"]) .voice-actions button span,
body.v2-page:not([data-page="home"]) .voice-question-stack button span,
body.v2-page:not([data-page="home"]) .sound-states button em,
body.v2-page:not([data-page="home"]) .sound-tracks button em {
  grid-row: 1 / span 2;
  min-width: 28px;
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
}

body.v2-page:not([data-page="home"]) .voice-pack-switch button strong,
body.v2-page:not([data-page="home"]) .voice-actions button strong,
body.v2-page:not([data-page="home"]) .voice-question-stack button strong,
body.v2-page:not([data-page="home"]) .sound-states button strong,
body.v2-page:not([data-page="home"]) .sound-tracks button strong {
  min-width: 0;
  color: var(--v2-ink);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

body.v2-page:not([data-page="home"]) .voice-actions button small,
body.v2-page:not([data-page="home"]) .sound-states button span,
body.v2-page:not([data-page="home"]) .sound-tracks button span {
  grid-column: 2;
  color: rgba(247, 251, 255, 0.58);
  font-size: 12px;
  line-height: 1.28;
}

body.v2-page:not([data-page="home"]) .voice-pack-switch button:hover,
body.v2-page:not([data-page="home"]) .voice-pack-switch button:focus-visible,
body.v2-page:not([data-page="home"]) .voice-actions button:hover,
body.v2-page:not([data-page="home"]) .voice-actions button:focus-visible,
body.v2-page:not([data-page="home"]) .voice-question-stack button:hover,
body.v2-page:not([data-page="home"]) .voice-question-stack button:focus-visible,
body.v2-page:not([data-page="home"]) .sound-states button:hover,
body.v2-page:not([data-page="home"]) .sound-states button:focus-visible,
body.v2-page:not([data-page="home"]) .sound-tracks button:hover,
body.v2-page:not([data-page="home"]) .sound-tracks button:focus-visible {
  border-color: rgba(96, 245, 255, 0.4) !important;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.11), rgba(255, 79, 216, 0.065)),
    rgba(247, 251, 255, 0.055) !important;
  color: var(--v2-ink) !important;
  transform: translateY(-1px);
  outline: 0;
}

body.v2-page:not([data-page="home"]) .voice-pack-switch button.is-active,
body.v2-page:not([data-page="home"]) .voice-actions button.is-active,
body.v2-page:not([data-page="home"]) .voice-question-stack button.is-active,
body.v2-page:not([data-page="home"]) .sound-states button.is-active,
body.v2-page:not([data-page="home"]) .sound-tracks button.is-active {
  border-color: rgba(255, 79, 216, 0.56) !important;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.14), rgba(255, 79, 216, 0.13)),
    rgba(247, 251, 255, 0.075) !important;
  box-shadow: 0 16px 42px rgba(255, 79, 216, 0.09) !important;
}

@media (max-width: 1100px) {
  body[data-page="realizacja"].v2-page .aurea-conference-card.aurea-conference-card--featured,
  body[data-page="glos"].v2-page .voice-console,
  body[data-page="muzyka"].v2-page .sound-console {
    grid-template-columns: 1fr;
  }

  body[data-page="realizacja"].v2-page .case-proof-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="realizacja"].v2-page .conference-proof-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body[data-page="realizacja"].v2-page .case-conference-reel.case-conference-reel--featured {
    padding-inline: 16px;
  }

  body[data-page="realizacja"].v2-page .aurea-conference-card--featured .aurea-conference-card__media {
    width: 100%;
    min-width: 0;
    min-height: 0;
  }

  body[data-page="realizacja"].v2-page .case-proof-mosaic,
  body[data-page="glos"].v2-page .voice-stage,
  body[data-page="muzyka"].v2-page .music-stage {
    width: min(100% - 32px, 1240px);
  }

  body[data-page="realizacja"].v2-page .case-proof-mosaic,
  body[data-page="muzyka"].v2-page .sound-state-grid,
  body[data-page="muzyka"].v2-page .player-row {
    grid-template-columns: 1fr;
  }

  body[data-page="realizacja"].v2-page .case-proof-mosaic .case-gallery-caption,
  body[data-page="realizacja"].v2-page .case-proof-card,
  body[data-page="realizacja"].v2-page .case-proof-card--wide,
  body[data-page="realizacja"].v2-page .case-proof-card--tall {
    grid-column: auto;
    grid-row: auto;
  }

  body[data-page="realizacja"].v2-page .case-proof-card {
    min-height: 260px;
  }

  body[data-page="glos"].v2-page .transcript-copy {
    max-height: none;
  }

  body[data-page="muzyka"].v2-page .sound-core {
    min-height: min(74vw, 280px);
  }
}

/* Early footer draft layer; the effective footer override is placed later near the final header layer. */
.v2-footer[data-motion-scene],
body.legal-page .site-footer[data-motion-scene],
body.interaction-legal-page .site-footer[data-motion-scene] {
  position: relative;
  isolation: isolate;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(390px, 1.2fr) minmax(220px, 0.72fr);
  gap: clamp(30px, 4.4vw, 74px);
  align-items: start;
  justify-items: stretch;
  overflow: hidden;
  border-top: 1px solid rgba(247, 251, 255, 0.1);
  background:
    radial-gradient(circle at 16% 0%, rgba(96, 245, 255, 0.12), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(255, 138, 61, 0.08), transparent 29%),
    linear-gradient(180deg, rgba(3, 7, 10, 0.98), #05070a 74%);
  color: rgba(247, 251, 255, 0.66);
  padding: clamp(58px, 6.2vw, 86px) max(24px, calc((100vw - 1180px) / 2)) clamp(44px, 5vw, 70px);
  text-align: left;
}

.v2-footer[data-motion-scene]::before,
body.legal-page .site-footer[data-motion-scene]::before,
body.interaction-legal-page .site-footer[data-motion-scene]::before {
  content: "";
  position: absolute;
  display: block;
  left: max(24px, calc((100vw - 1180px) / 2));
  right: max(24px, calc((100vw - 1180px) / 2));
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 245, 255, 0.64), rgba(255, 138, 61, 0.48), transparent);
  opacity: 0.78;
}

.v2-footer[data-motion-scene]::after,
body.legal-page .site-footer[data-motion-scene]::after,
body.interaction-legal-page .site-footer[data-motion-scene]::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  left: 10%;
  width: min(420px, 42vw);
  height: 1px;
  background: rgba(96, 245, 255, 0.9);
  box-shadow: 0 0 28px rgba(96, 245, 255, 0.28);
  opacity: 0;
  transform: translateX(-36%);
}

.v2-footer[data-motion-scene].is-scene-visible::after,
body.legal-page .site-footer[data-motion-scene].is-scene-visible::after,
body.interaction-legal-page .site-footer[data-motion-scene].is-scene-visible::after {
  animation: footerLineScan 2.8s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.v2-footer[data-motion-scene] p,
body.legal-page .site-footer[data-motion-scene] p,
body.interaction-legal-page .site-footer[data-motion-scene] p {
  margin: 0;
}

.v2-footer[data-motion-scene] .v2-footer__brand,
body.legal-page .site-footer[data-motion-scene] .site-footer__brand,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__brand {
  min-width: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px 18px;
  align-items: start;
}

.v2-footer[data-motion-scene] .v2-footer__brand img,
body.legal-page .site-footer[data-motion-scene] .site-footer__brand .footer-symbol,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__brand .footer-symbol {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(96, 245, 255, 0.16));
  opacity: 0.9;
}

.v2-footer[data-motion-scene] .v2-footer__brand p:first-of-type,
body.legal-page .site-footer[data-motion-scene] .site-footer__brand p:first-of-type,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__brand p:first-of-type {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.v2-footer[data-motion-scene] .v2-footer__brand strong,
body.legal-page .site-footer[data-motion-scene] .site-footer__brand strong,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__brand strong {
  max-width: 440px;
  color: var(--v2-ink, #f7fbff);
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.v2-footer[data-motion-scene] .v2-footer__brand span,
body.legal-page .site-footer[data-motion-scene] .site-footer__brand span,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__brand span {
  color: rgba(96, 245, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}

.v2-footer[data-motion-scene] .v2-footer__meta,
body.legal-page .site-footer[data-motion-scene] .site-footer__meta,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__meta {
  grid-column: 2;
  color: rgba(247, 251, 255, 0.46);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
}

.v2-footer[data-motion-scene] .v2-footer__links,
body.legal-page .site-footer[data-motion-scene] .site-footer__links,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__links {
  grid-column: auto;
  grid-row: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
  justify-content: stretch;
}

.v2-footer[data-motion-scene] .v2-footer__links div,
body.legal-page .site-footer[data-motion-scene] .site-footer__links div,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__links div,
.v2-footer[data-motion-scene] .v2-footer__contact,
body.legal-page .site-footer[data-motion-scene] .site-footer__contact,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__contact {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: start;
}

.v2-footer[data-motion-scene] .v2-footer__links span,
body.legal-page .site-footer[data-motion-scene] .site-footer__links span,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__links span,
.v2-footer[data-motion-scene] .v2-footer__contact > span,
body.legal-page .site-footer[data-motion-scene] .site-footer__contact > span,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__contact > span {
  color: rgba(255, 138, 61, 0.88);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.v2-footer[data-motion-scene] a,
body.v2-page:not([data-page="home"]) .v2-footer[data-motion-scene] a,
body.legal-page .site-footer[data-motion-scene] a,
body.interaction-legal-page .site-footer[data-motion-scene] a {
  width: fit-content;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: rgba(247, 251, 255, 0.7);
  box-shadow: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  padding: 0 0 3px;
  text-decoration: none;
  text-transform: none;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.v2-footer[data-motion-scene] a:hover,
.v2-footer[data-motion-scene] a:focus-visible,
body.legal-page .site-footer[data-motion-scene] a:hover,
body.legal-page .site-footer[data-motion-scene] a:focus-visible,
body.interaction-legal-page .site-footer[data-motion-scene] a:hover,
body.interaction-legal-page .site-footer[data-motion-scene] a:focus-visible {
  border-color: rgba(96, 245, 255, 0.38);
  background: transparent;
  color: var(--v2-ink, #f7fbff);
  transform: translateX(3px);
}

.v2-footer[data-motion-scene] .v2-footer__cta,
body.legal-page .site-footer[data-motion-scene] .site-footer__cta,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__cta {
  min-height: 40px;
  border: 1px solid rgba(96, 245, 255, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.16), rgba(255, 79, 216, 0.09)),
    rgba(247, 251, 255, 0.04);
  color: var(--v2-ink, #f7fbff);
  padding: 0 14px;
  box-shadow: 0 14px 34px rgba(255, 79, 216, 0.08);
}

.v2-footer[data-motion-scene] .v2-footer__cta:hover,
.v2-footer[data-motion-scene] .v2-footer__cta:focus-visible,
body.legal-page .site-footer[data-motion-scene] .site-footer__cta:hover,
body.legal-page .site-footer[data-motion-scene] .site-footer__cta:focus-visible,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__cta:hover,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__cta:focus-visible {
  border-color: rgba(255, 138, 61, 0.58);
  background: linear-gradient(135deg, var(--v2-cyan, #60f5ff), var(--v2-magenta, #ff4fd8) 72%, var(--v2-orange, #ff8a3d));
  color: #031010;
  transform: translateY(-1px);
}

@media (max-width: 1040px) {
  .v2-footer[data-motion-scene],
  body.legal-page .site-footer[data-motion-scene],
  body.interaction-legal-page .site-footer[data-motion-scene] {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  }

  .v2-footer[data-motion-scene] .v2-footer__links,
  body.legal-page .site-footer[data-motion-scene] .site-footer__links,
  body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__links {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 720px) {
  .v2-footer[data-motion-scene],
  body.legal-page .site-footer[data-motion-scene],
  body.interaction-legal-page .site-footer[data-motion-scene] {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 18px 42px;
  }

  .v2-footer[data-motion-scene]::before,
  body.legal-page .site-footer[data-motion-scene]::before,
  body.interaction-legal-page .site-footer[data-motion-scene]::before {
    left: 18px;
    right: 18px;
  }

  .v2-footer[data-motion-scene] .v2-footer__links,
  body.legal-page .site-footer[data-motion-scene] .site-footer__links,
  body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__links {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .v2-footer[data-motion-scene] .v2-footer__brand,
  body.legal-page .site-footer[data-motion-scene] .site-footer__brand,
  body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__brand {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px 14px;
  }

  .v2-footer[data-motion-scene] .v2-footer__brand img,
  body.legal-page .site-footer[data-motion-scene] .site-footer__brand .footer-symbol,
  body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__brand .footer-symbol {
    width: 44px;
    height: 44px;
  }

  .v2-footer[data-motion-scene] .v2-footer__meta,
  body.legal-page .site-footer[data-motion-scene] .site-footer__meta,
  body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__meta {
    grid-column: 1 / -1;
    max-width: 280px;
  }
}

@media (max-width: 360px) {
  .v2-footer[data-motion-scene],
  body.legal-page .site-footer[data-motion-scene],
  body.interaction-legal-page .site-footer[data-motion-scene] {
    padding-inline: 15px;
  }

  .v2-footer[data-motion-scene] a,
  body.v2-page:not([data-page="home"]) .v2-footer[data-motion-scene] a,
  body.legal-page .site-footer[data-motion-scene] a,
  body.interaction-legal-page .site-footer[data-motion-scene] a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-footer[data-motion-scene].is-scene-visible::after,
  body.legal-page .site-footer[data-motion-scene].is-scene-visible::after,
  body.interaction-legal-page .site-footer[data-motion-scene].is-scene-visible::after {
    animation: none;
  }

  .v2-footer[data-motion-scene] a,
  body.legal-page .site-footer[data-motion-scene] a,
  body.interaction-legal-page .site-footer[data-motion-scene] a {
    transition: none;
  }
}

/* Premium footer refresh. */
.v2-footer,
body.legal-page .site-footer,
body.interaction-legal-page .site-footer {
  position: relative;
  isolation: isolate;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(390px, 1.28fr) minmax(220px, 0.72fr);
  gap: clamp(28px, 4.2vw, 72px);
  align-items: start;
  border-top: 1px solid rgba(247, 251, 255, 0.1);
  background:
    radial-gradient(circle at 18% 0%, rgba(96, 245, 255, 0.13), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(255, 138, 61, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(3, 7, 10, 0.98), #05070a 72%);
  color: rgba(247, 251, 255, 0.66);
  padding: clamp(54px, 6vw, 82px) max(24px, calc((100vw - 1180px) / 2)) clamp(42px, 5vw, 68px);
  overflow: hidden;
}

.v2-footer::before,
body.legal-page .site-footer::before,
body.interaction-legal-page .site-footer::before {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  right: max(24px, calc((100vw - 1180px) / 2));
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 245, 255, 0.62), rgba(255, 138, 61, 0.46), transparent);
  opacity: 0.78;
}

.v2-footer::after,
body.legal-page .site-footer::after,
body.interaction-legal-page .site-footer::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 12%;
  z-index: -1;
  width: min(420px, 42vw);
  height: 1px;
  background: rgba(96, 245, 255, 0.9);
  box-shadow: 0 0 28px rgba(96, 245, 255, 0.3);
  opacity: 0;
  transform: translateX(-36%);
}

.v2-footer.is-scene-visible::after,
body.legal-page .site-footer.is-scene-visible::after,
body.interaction-legal-page .site-footer.is-scene-visible::after {
  animation: footerLineScan 2.8s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.v2-footer p,
body.legal-page .site-footer p,
body.interaction-legal-page .site-footer p {
  margin: 0;
}

.v2-footer__brand,
.site-footer__brand {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px 16px;
  align-items: start;
}

.v2-footer__brand img,
.site-footer__brand .footer-symbol {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(96, 245, 255, 0.14));
  opacity: 0.86;
}

.v2-footer__brand p:first-of-type,
.site-footer__brand p:first-of-type {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.v2-footer__brand strong,
.site-footer__brand strong {
  max-width: 440px;
  color: var(--v2-ink);
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.v2-footer__brand span,
.site-footer__brand span {
  color: rgba(96, 245, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.v2-footer__meta,
.site-footer__meta {
  grid-column: 2;
  color: rgba(247, 251, 255, 0.46);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: 0;
}

.v2-footer__links,
.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
}

.v2-footer__links div,
.site-footer__links div,
.v2-footer__contact,
.site-footer__contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.v2-footer__links span,
.site-footer__links span,
.v2-footer__contact > span,
.site-footer__contact > span {
  color: rgba(255, 138, 61, 0.88);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.v2-footer a,
body.v2-page:not([data-page="home"]) .v2-footer a,
body.legal-page .site-footer a,
body.interaction-legal-page .site-footer a {
  width: fit-content;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: rgba(247, 251, 255, 0.7);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  padding: 0 0 3px;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.v2-footer a:hover,
.v2-footer a:focus-visible,
body.legal-page .site-footer a:hover,
body.legal-page .site-footer a:focus-visible,
body.interaction-legal-page .site-footer a:hover,
body.interaction-legal-page .site-footer a:focus-visible {
  border-color: rgba(96, 245, 255, 0.38);
  background: transparent;
  color: var(--v2-ink);
  transform: translateX(3px);
}

.v2-footer__contact,
.site-footer__contact {
  justify-items: start;
}

.v2-footer .v2-footer__cta,
.site-footer .site-footer__cta {
  min-height: 40px;
  border: 1px solid rgba(96, 245, 255, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.16), rgba(255, 79, 216, 0.09)),
    rgba(247, 251, 255, 0.04);
  color: var(--v2-ink);
  padding: 0 14px;
  box-shadow: 0 14px 34px rgba(255, 79, 216, 0.08);
}

.v2-footer .v2-footer__cta:hover,
.v2-footer .v2-footer__cta:focus-visible,
.site-footer .site-footer__cta:hover,
.site-footer .site-footer__cta:focus-visible {
  border-color: rgba(255, 138, 61, 0.58);
  color: #031010;
  background: linear-gradient(135deg, var(--v2-cyan, #60f5ff), var(--v2-magenta, #ff4fd8) 72%, var(--v2-orange, #ff8a3d));
  transform: translateY(-1px);
}

@keyframes footerLineScan {
  0% {
    opacity: 0;
    transform: translateX(-36%);
  }

  28% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    transform: translateX(150%);
  }
}

@media (max-width: 1040px) {
  .v2-footer,
  body.legal-page .site-footer,
  body.interaction-legal-page .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  }

  .v2-footer__links,
  .site-footer__links {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 720px) {
  .v2-footer,
  body.legal-page .site-footer,
  body.interaction-legal-page .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 18px 42px;
  }

  .v2-footer::before,
  body.legal-page .site-footer::before,
  body.interaction-legal-page .site-footer::before {
    left: 18px;
    right: 18px;
  }

  .v2-footer__links,
  .site-footer__links {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .v2-footer__brand,
  .site-footer__brand {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px 14px;
  }

  .v2-footer__brand img,
  .site-footer__brand .footer-symbol {
    width: 34px;
    height: 34px;
  }

  .v2-footer__meta,
  .site-footer__meta {
    grid-column: 1 / -1;
    max-width: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-footer.is-scene-visible::after,
  body.legal-page .site-footer.is-scene-visible::after,
  body.interaction-legal-page .site-footer.is-scene-visible::after {
    animation: none;
  }
}
/* Header dropdown breathing pass. */
.nav-menu {
  width: min(468px, calc(100vw - 32px));
}

.nav-menu-shell {
  gap: 11px;
  padding: 13px;
}

.nav-menu-card {
  min-height: 82px;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  border-color: rgba(247, 251, 255, 0.09);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
  padding: 10px 12px !important;
}

.nav-menu-card:hover,
.nav-menu-card:focus-visible,
.nav-menu-card.is-active {
  border-color: rgba(96, 245, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.12), rgba(255, 79, 216, 0.055)),
    rgba(255, 255, 255, 0.048);
}

.nav-menu-thumb {
  height: 60px;
}

.nav-menu-copy {
  gap: 6px;
  align-content: center;
  padding-block: 2px;
}

.nav-menu-copy strong {
  font-size: 18px;
  line-height: 1.06;
}

.nav-menu-copy small {
  max-width: 270px;
  font-size: 12px;
  line-height: 1.38;
}

@media (max-width: 900px) {
  .nav-menu-shell {
    gap: 10px;
    padding: 10px;
  }

  .nav-menu-card {
    min-height: 78px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 9px !important;
  }

  .nav-menu-thumb {
    height: 58px;
  }

  .nav-menu-copy {
    gap: 5px;
    padding-block: 0;
  }

  .nav-menu-copy strong {
    font-size: 16px;
    line-height: 1.08;
  }

  .nav-menu-copy small {
    max-width: none;
    font-size: 12px;
    line-height: 1.32;
  }
}

@media (max-width: 420px) {
  .nav-menu-shell {
    gap: 9px;
    padding: 9px;
  }

  .nav-menu-card {
    min-height: 74px;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
    padding: 8px !important;
  }

  .nav-menu-thumb {
    height: 54px;
  }
}

/* Header dropdown breathing pass. */
.nav-menu {
  width: min(468px, calc(100vw - 32px));
}

.nav-menu-shell {
  gap: 11px;
  padding: 13px;
}

.nav-menu-card {
  min-height: 82px;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  border-color: rgba(247, 251, 255, 0.09);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
  padding: 10px 12px !important;
}

.nav-menu-card:hover,
.nav-menu-card:focus-visible,
.nav-menu-card.is-active {
  border-color: rgba(96, 245, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.12), rgba(255, 79, 216, 0.055)),
    rgba(255, 255, 255, 0.048);
}

.nav-menu-thumb {
  height: 60px;
}

.nav-menu-copy {
  gap: 6px;
  align-content: center;
  padding-block: 2px;
}

.nav-menu-copy strong {
  font-size: 18px;
  line-height: 1.06;
}

.nav-menu-copy small {
  max-width: 270px;
  font-size: 12px;
  line-height: 1.38;
}

@media (max-width: 900px) {
  .nav-menu-shell {
    gap: 10px;
    padding: 10px;
  }

  .nav-menu-card {
    min-height: 78px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 9px !important;
  }

  .nav-menu-thumb {
    height: 58px;
  }

  .nav-menu-copy {
    gap: 5px;
    padding-block: 0;
  }

  .nav-menu-copy strong {
    font-size: 16px;
    line-height: 1.08;
  }

  .nav-menu-copy small {
    max-width: none;
    font-size: 12px;
    line-height: 1.32;
  }
}

@media (max-width: 420px) {
  .nav-menu-shell {
    gap: 9px;
    padding: 9px;
  }

  .nav-menu-card {
    min-height: 74px;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
    padding: 8px !important;
  }

  .nav-menu-thumb {
    height: 54px;
  }
}

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

@media (max-width: 760px) {
  .hero-slide-copy,
  .hero-slide-copy h2,
  .hero-line,
  .hero-commands {
    max-width: min(100%, 340px);
  }

  .hero-commands {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-commands .v2-button,
  .hero-commands .v2-button:nth-child(3) {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* Aurea AI v2 cinematic system */
:root {
  --v2-black: #05070a;
  --v2-ink: #f7fbff;
  --v2-dim: rgba(247, 251, 255, 0.72);
  --v2-muted: rgba(247, 251, 255, 0.54);
  --v2-line: rgba(255, 255, 255, 0.15);
  --v2-panel: rgba(7, 12, 18, 0.58);
  --v2-panel-strong: rgba(7, 12, 18, 0.82);
  --v2-cyan: #60f5ff;
  --v2-aqua: #30c7b5;
  --v2-violet: #a98bff;
  --v2-magenta: #ff4fd8;
  --v2-pink: #ff4fd8;
  --v2-orange: #ff8a3d;
  --v2-gold: #ff8a3d;
  --v2-amber: #ff8a3d;
  --v2-radius-xs: 6px;
  --v2-radius-sm: 8px;
  --v2-radius: 10px;
  --v2-radius-lg: 14px;
  --v2-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

body.v2-page {
  min-height: 100vh;
  background: var(--v2-black);
  color: var(--v2-ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

.v2-page a {
  text-decoration: none;
}

.v2-page h1,
.v2-page h2,
.v2-page h3,
.v2-page legend {
  font-family: var(--font-display);
  letter-spacing: 0;
  text-wrap: balance;
  filter: none;
}

.v2-page p,
.v2-page li {
  text-wrap: pretty;
}

body.v2-page .consent-trigger,
body.v2-page .consent-banner,
body.v2-page .consent-modal {
  z-index: 140;
}

body.v2-page .consent-banner__panel,
body.v2-page .consent-modal__panel {
  border-color: rgba(96, 245, 255, 0.18);
  border-radius: var(--v2-radius-lg);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.08), rgba(255, 79, 216, 0.04)),
    rgba(3, 7, 10, 0.94);
  color: var(--v2-ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

body.v2-page .consent-banner__copy,
body.v2-page .consent-modal__header {
  min-width: 0;
}

body.v2-page .consent-banner__eyebrow,
body.v2-page .consent-banner__copy h2,
body.v2-page .consent-modal__header h2 {
  font-family: var(--font-mono);
  letter-spacing: 0;
}

body.v2-page .consent-banner__copy h2,
body.v2-page .consent-modal__header h2 {
  color: var(--v2-ink);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.08;
}

body.v2-page .consent-banner__copy > p:last-child,
body.v2-page .consent-note,
body.v2-page .consent-modal__header p {
  max-width: 100%;
  color: var(--v2-dim);
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.v2-page .consent-banner__actions .button,
body.v2-page .consent-modal__actions .button,
body.v2-page .consent-trigger {
  border-radius: var(--v2-radius-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
}

body.v2-page .consent-banner__actions .button.primary,
body.v2-page .consent-modal__actions .button.primary {
  background: linear-gradient(135deg, var(--v2-cyan), var(--v2-aqua));
}

body:not(.has-consent-banner) {
  --consent-banner-offset: 0px;
}

.v2-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 10%, rgba(96, 245, 255, 0.1), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(255, 79, 216, 0.08), transparent 31%),
    linear-gradient(180deg, #030506 0%, #071116 42%, #020304 100%);
}

.v2-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(96, 245, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 245, 255, 0.055) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 70%, transparent);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(96, 245, 255, 0.16), transparent 32%),
    #05070a;
  color: var(--v2-ink);
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 110%, 0);
  pointer-events: none;
  overflow: hidden;
}

.page-transition span {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(34px, 8vw, 92px);
  font-weight: 760;
  letter-spacing: 0;
}

.page-transition small {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-transition::before,
.page-transition::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-transition::before {
  background:
    linear-gradient(90deg, transparent, rgba(96, 245, 255, 0.34), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 100% 9px;
  transform: translateX(-110%);
}

.page-transition::after {
  opacity: 0.38;
  background:
    radial-gradient(circle at center, rgba(96, 245, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 79, 216, 0.12), transparent 42%);
}

.page-transition.is-scanning::before {
  animation: routeScan 0.62s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.command-bar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(210px, auto) minmax(0, 1fr) auto;
  gap: clamp(14px, 2.2vw, 30px);
  align-items: center;
  padding: 10px max(18px, calc((100vw - 1320px) / 2 + 18px));
  border: 0;
  border-bottom: 1px solid rgba(96, 245, 255, 0.14);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 10, 0.9), rgba(3, 7, 10, 0.62)),
    linear-gradient(90deg, rgba(96, 245, 255, 0.08), transparent 32%, rgba(255, 79, 216, 0.045));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px) saturate(145%);
  transform: none;
  transition: min-height 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.command-bar::before,
.command-bar::after {
  display: none;
}

.command-bar::before {
  left: -1px;
  top: -1px;
  border-left: 1px solid;
  border-top: 1px solid;
}

.command-bar::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.command-bar.is-scrolled {
  background:
    linear-gradient(180deg, rgba(3, 7, 10, 0.96), rgba(3, 7, 10, 0.82)),
    linear-gradient(90deg, rgba(96, 245, 255, 0.1), transparent 32%, rgba(255, 79, 216, 0.06));
  border-bottom-color: rgba(96, 245, 255, 0.24);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.3);
}

.command-brand {
  min-width: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: var(--v2-ink);
}

.command-brand img {
  width: clamp(118px, 9.5vw, 146px);
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(96, 245, 255, 0.12));
  opacity: 0.94;
}

.command-brand span {
  color: var(--v2-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.experience-deck {
  position: relative;
  min-width: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 0.35vw, 8px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  scrollbar-width: none;
}

.experience-deck::-webkit-scrollbar {
  display: none;
}

.experience-deck a,
.nav-group-trigger {
  position: relative;
  z-index: 2;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0 clamp(8px, 1vw, 14px);
  color: var(--v2-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.experience-deck a::before,
.nav-group-trigger::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.experience-deck a:hover,
.experience-deck a[aria-current="page"],
.nav-group.is-active .nav-group-trigger,
.nav-group.is-open .nav-group-trigger,
.nav-group-trigger:hover {
  color: var(--v2-ink);
}

.experience-deck a:hover::before,
.experience-deck a[aria-current="page"]::before,
.nav-group.is-active .nav-group-trigger::before,
.nav-group.is-open .nav-group-trigger::before,
.nav-group-trigger:hover::before {
  opacity: 0.44;
  transform: scaleX(1);
}

.nav-top-link,
.nav-group-trigger {
  flex-direction: column;
  gap: 0;
  min-width: clamp(68px, 5.6vw, 86px);
  line-height: 1.05;
}

.nav-top-link small,
.nav-group-trigger small {
  margin-top: 2px;
  color: color-mix(in srgb, var(--module-color, var(--v2-cyan)) 60%, var(--v2-muted));
  font-size: 8px;
  opacity: 0.78;
  text-transform: uppercase;
}

.nav-group {
  position: relative;
  z-index: 5;
}

.nav-group-trigger::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 14px;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.64;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-group.is-open .nav-group-trigger::after,
.nav-group:focus-within .nav-group-trigger::after {
  transform: translateY(1px) rotate(225deg);
  opacity: 1;
}

.nav-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 1px);
  width: min(390px, calc(100vw - 32px));
  padding-top: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px) scale(0.985);
  transform-origin: top center;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.nav-group.is-open .nav-menu,
.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.nav-menu-shell {
  position: relative;
  display: grid;
  gap: 8px;
  overflow: hidden;
  border: 1px solid rgba(96, 245, 255, 0.16);
  border-radius: 0 0 var(--v2-radius) var(--v2-radius);
  background:
    radial-gradient(circle at 16% 8%, rgba(96, 245, 255, 0.15), transparent 34%),
    linear-gradient(135deg, rgba(96, 245, 255, 0.1), rgba(255, 79, 216, 0.05)),
    rgba(3, 7, 10, 0.96);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 10px;
  backdrop-filter: blur(24px) saturate(150%);
}

.nav-menu-shell::before,
.nav-menu-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.nav-menu-shell::before {
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.065);
}

.nav-menu-shell::after {
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(96, 245, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 245, 255, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 25% 20%, #000, transparent 68%);
}

.nav-menu-card {
  position: relative;
  z-index: 2;
  min-height: 78px;
  display: grid !important;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--v2-radius-xs) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  padding: 9px !important;
  color: var(--v2-dim);
  text-align: left;
}

.nav-menu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(96, 245, 255, 0.28), transparent);
  transform: translateX(-110%);
  pointer-events: none;
}

.nav-menu-card:hover,
.nav-menu-card:focus-visible,
.nav-menu-card.is-active {
  border-color: rgba(96, 245, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.14), rgba(169, 139, 255, 0.08)),
    rgba(255, 255, 255, 0.055);
  color: var(--v2-ink);
  box-shadow: 0 0 32px rgba(96, 245, 255, 0.08);
}

.nav-menu-card:hover::after,
.nav-menu-card:focus-visible::after {
  animation: imageScan 0.82s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.nav-menu-thumb {
  position: relative;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(96, 245, 255, 0.16);
  border-radius: var(--v2-radius-xs);
  background: #05070a;
}

.nav-menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.04);
  transition: transform 320ms ease, filter 320ms ease;
}

.nav-menu-card:hover .nav-menu-thumb img,
.nav-menu-card:focus-visible .nav-menu-thumb img {
  transform: scale(1.13);
  filter: saturate(1.18) contrast(1.08);
}

.nav-menu-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.nav-menu-copy strong {
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 0.98;
}

.nav-menu-copy small {
  color: var(--v2-muted);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.25;
}

.deck-indicator {
  position: absolute;
  z-index: 1;
  left: 0;
  top: auto;
  bottom: 0;
  width: 60px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--v2-cyan), var(--v2-gold), transparent);
  box-shadow: 0 0 18px rgba(96, 245, 255, 0.32);
  transition: transform 260ms ease, width 260ms ease;
}

.command-actions {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.command-phone {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--v2-radius-xs);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  color: rgba(247, 251, 255, 0.86);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 13px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.command-phone:hover,
.command-phone:focus-visible {
  border-color: rgba(96, 245, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  color: var(--v2-ink);
  transform: translateY(-1px);
}

.command-bar .command-cta {
  min-height: 42px;
  padding-inline: 18px;
  box-shadow: 0 12px 34px rgba(48, 199, 181, 0.2);
}

.command-cta,
.v2-button {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--v2-radius);
  padding: 0 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.command-cta,
.v2-button--primary {
  border: 1px solid rgba(96, 245, 255, 0.55);
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.4), transparent 28%),
    linear-gradient(135deg, var(--v2-cyan), var(--v2-aqua));
  color: #031010;
  box-shadow: 0 18px 44px rgba(48, 199, 181, 0.24);
}

.v2-button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.08), rgba(255, 79, 216, 0.04)),
    rgba(255, 255, 255, 0.055);
  color: var(--v2-ink);
  backdrop-filter: blur(14px);
}

.command-cta::after,
.v2-button::after {
  content: "";
  position: absolute;
  inset: -80% auto -80% -36%;
  width: 32%;
  transform: rotate(18deg);
  background: rgba(255, 255, 255, 0.55);
  opacity: 0;
  transition: transform 420ms ease, opacity 220ms ease;
}

.command-cta:hover::after,
.v2-button:hover::after {
  opacity: 0.42;
  transform: translateX(430%) rotate(18deg);
}

.cinematic-hero,
.page-hero,
.case-hero-v2 {
  position: relative;
  min-height: clamp(620px, 82svh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #05070a;
}

.cinematic-bg,
.page-hero-bg,
.case-hero-bg,
.statement-bg,
.brief-bg,
.gateway-card picture,
.split-cinema > picture {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--video-poster, none) center / cover no-repeat #05070a;
}

.cinematic-bg__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
}

.cinematic-bg video {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.cinematic-bg img,
.cinematic-bg video,
.page-hero-bg img,
.page-hero-bg video,
.case-hero-bg img,
.case-hero-bg video,
.statement-bg img,
.brief-bg img,
.brief-bg video,
.gateway-card img,
.split-cinema > picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.06);
}

.cinematic-bg video[data-video-autoplay="true"],
.page-hero-bg video[data-video-autoplay="true"],
.case-hero-bg video[data-video-autoplay="true"],
.brief-bg video[data-video-autoplay="true"] {
  opacity: 0;
  transition: opacity 520ms ease, filter 520ms ease;
}

.cinematic-bg video[data-video-autoplay="true"].is-video-ready,
.page-hero-bg video[data-video-autoplay="true"].is-video-ready,
.case-hero-bg video[data-video-autoplay="true"].is-video-ready,
.brief-bg video[data-video-autoplay="true"].is-video-ready {
  opacity: 1;
}

@media (max-width: 760px) {
  .cinematic-bg video[data-video-desktop-only="true"] {
    display: none;
  }
}

.cinematic-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(1, 3, 5, 0.92) 0%, rgba(3, 10, 14, 0.68) 38%, rgba(3, 4, 6, 0.2) 100%),
    linear-gradient(180deg, rgba(3, 4, 6, 0.2) 0%, rgba(3, 4, 6, 0.28) 44%, rgba(3, 4, 6, 0.94) 100%),
    linear-gradient(135deg, rgba(96, 245, 255, 0.1), transparent 32%, rgba(255, 79, 216, 0.08));
  pointer-events: none;
}

.aurea-function-console {
  --hero-strip-offset: 20px;
  --hero-top-space: clamp(92px, 10svh, 116px);
  --hero-bottom-space: clamp(86px, 10svh, 112px);
  min-height: clamp(650px, 86svh, 900px);
  align-items: stretch;
}

.function-grid {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  min-height: clamp(650px, 86svh, 900px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.68fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  margin: 0 auto;
  padding: var(--hero-top-space) 0 var(--hero-bottom-space);
  isolation: isolate;
}

.function-grid::before,
.function-grid::after {
  content: none;
  display: none;
}

.function-grid > * {
  position: relative;
  z-index: 2;
}

.function-copy {
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
}

@media (min-width: 1121px) {
  .function-copy {
    padding-bottom: clamp(72px, 8svh, 104px);
  }
}

.function-copy h1 {
  max-width: 620px;
  color: var(--v2-ink);
  text-shadow: 0 0 34px rgba(96, 245, 255, 0.12);
}

.hero-slide-copy {
  display: none;
  min-width: 0;
  max-width: 760px;
  margin-top: 22px;
}

.hero-slide-copy.is-active {
  display: block;
}

.hero-slide-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-left: 2px solid var(--v2-cyan);
  padding-left: 12px;
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.hero-slide-copy h2 {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--v2-ink);
  font-size: clamp(28px, 3.8vw, 50px);
  line-height: 1.03;
  font-weight: 760;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-infographic-stage {
  --hud-x: 50%;
  --hud-y: 42%;
  --hud-tilt-x: 0deg;
  --hud-tilt-y: 0deg;
  position: relative;
  min-height: clamp(360px, 38svh, 470px);
  isolation: isolate;
  border: 1px solid rgba(96, 245, 255, 0.16);
  border-radius: var(--v2-radius-lg);
  background:
    radial-gradient(circle at var(--hud-x) var(--hud-y), color-mix(in srgb, var(--module-color, var(--v2-cyan)) 22%, transparent), transparent 34%),
    linear-gradient(135deg, rgba(96, 245, 255, 0.12), transparent 36%, rgba(255, 79, 216, 0.08)),
    rgba(2, 8, 11, 0.54);
  box-shadow: var(--v2-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.hero-infographic-stage::before,
.hero-infographic-stage::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 0;
  pointer-events: none;
}

.hero-infographic-stage::before {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-infographic-stage::after {
  background-image:
    linear-gradient(rgba(96, 245, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 245, 255, 0.09) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at center, #000, transparent 70%);
}

.infographic {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transition: opacity 260ms ease, visibility 260ms ease, transform 260ms ease;
}

.infographic:not(.is-active) {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

.infographic.is-active {
  z-index: 2;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1);
}

.orbit-core {
  position: relative;
  z-index: 3;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(96, 245, 255, 0.6);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(96, 245, 255, 0.24), rgba(96, 245, 255, 0.04) 62%, transparent),
    rgba(2, 8, 11, 0.72);
  box-shadow: 0 0 70px rgba(96, 245, 255, 0.18);
}

.orbit-core span,
.nfc-token,
.voice-panel strong,
.nfc-terminal strong,
.intel-panel strong {
  font-family: var(--font-mono);
  font-weight: 650;
  text-transform: uppercase;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(96, 245, 255, 0.24);
  border-radius: 50%;
  animation: orbitPulse 5s ease-in-out infinite;
}

.orbit-ring--one {
  width: 280px;
  height: 280px;
}

.orbit-ring--two {
  width: 390px;
  height: 390px;
  border-color: rgba(255, 79, 216, 0.2);
  animation-delay: -1.6s;
}

.orbit-node {
  position: absolute;
  min-width: 74px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--v2-radius-xs);
  background: rgba(3, 7, 10, 0.82);
  padding: 8px 10px;
  color: var(--v2-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(96, 245, 255, 0.08);
}

.node-a { top: 15%; left: 21%; }
.node-b { top: 24%; right: 14%; }
.node-c { bottom: 17%; left: 17%; }
.node-d { right: 20%; bottom: 23%; }

.voice-wave {
  width: min(82%, 360px);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.voice-wave i {
  width: 7px;
  height: 44px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--v2-cyan), var(--v2-pink));
  box-shadow: 0 0 20px rgba(96, 245, 255, 0.22);
  animation: voiceBars 1.2s ease-in-out infinite;
}

.voice-wave i:nth-child(2n) { animation-delay: -0.24s; }
.voice-wave i:nth-child(3n) { animation-delay: -0.44s; }
.voice-wave i:nth-child(4n) { animation-delay: -0.62s; }

.voice-panel,
.nfc-terminal {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--v2-radius);
  background: rgba(2, 8, 11, 0.76);
  padding: 18px;
}

.voice-panel span,
.voice-panel em,
.nfc-terminal span,
.intel-panel span {
  display: block;
  color: var(--v2-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
}

.voice-panel strong,
.nfc-terminal strong {
  display: block;
  margin: 6px 0;
  color: var(--v2-ink);
  font-size: 18px;
}

.nfc-token {
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 138, 61, 0.58);
  border-radius: var(--v2-radius-lg);
  color: var(--v2-amber);
  background:
    linear-gradient(135deg, rgba(255, 138, 61, 0.16), rgba(96, 245, 255, 0.06)),
    rgba(2, 8, 11, 0.72);
  box-shadow: 0 0 54px rgba(255, 138, 61, 0.16);
}

.nfc-path {
  position: absolute;
  inset: 36% 24% auto 24%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.nfc-path i {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--v2-cyan), transparent);
  animation: signalRun 1.6s ease-in-out infinite;
}

.nfc-path i:nth-child(2) { animation-delay: 0.18s; }
.nfc-path i:nth-child(3) { animation-delay: 0.36s; }

.light-column {
  width: min(38%, 160px);
  height: 68%;
  border: 1px solid rgba(96, 245, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(96, 245, 255, 0), rgba(96, 245, 255, 0.3), rgba(255, 79, 216, 0.16), rgba(96, 245, 255, 0)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  box-shadow: 0 0 90px rgba(96, 245, 255, 0.18);
  animation: lightSweep 2.8s ease-in-out infinite;
}

.light-timeline {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.light-timeline span {
  border-top: 2px solid rgba(96, 245, 255, 0.42);
  padding-top: 10px;
  color: var(--v2-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.infographic--intelligence {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 56px;
}

.intel-panel {
  min-height: 150px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(96, 245, 255, 0.16);
  border-radius: var(--v2-radius);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.12), rgba(255, 79, 216, 0.06)),
    rgba(2, 8, 11, 0.72);
  padding: 20px;
}

.intel-panel--wide {
  grid-column: 1 / -1;
}

.intel-panel strong {
  margin-top: 8px;
  color: var(--v2-ink);
  font-size: clamp(28px, 4vw, 46px);
}

.hero-infographic-stage {
  min-height: clamp(360px, 38svh, 470px);
}

.hero-infographic-stage::before {
  border-color: rgba(96, 245, 255, 0.16);
  box-shadow: inset 0 0 42px rgba(96, 245, 255, 0.055);
}

.hero-infographic-stage::after {
  opacity: 0.12;
}

.hero-infographic-stage .infographic--intelligence {
  grid-template-columns: none;
  gap: 0;
  padding: 22px;
}

.hud-module {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(96, 245, 255, 0.16);
  border-radius: var(--v2-radius);
  background:
    radial-gradient(circle at 50% 38%, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 18%, transparent), transparent 42%),
    linear-gradient(135deg, rgba(96, 245, 255, 0.08), rgba(255, 79, 216, 0.045)),
    rgba(2, 8, 12, 0.68);
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 54px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 10%, transparent);
  transform: perspective(900px) rotateX(var(--hud-tilt-y)) rotateY(var(--hud-tilt-x));
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hud-module::before,
.hud-module::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  pointer-events: none;
}

.hud-module::before {
  border: 1px solid rgba(255, 255, 255, 0.075);
  background:
    linear-gradient(90deg, var(--module-color, var(--v2-cyan)), transparent) left top / 58px 1px no-repeat,
    linear-gradient(180deg, var(--module-color, var(--v2-cyan)), transparent) left top / 1px 58px no-repeat,
    linear-gradient(270deg, var(--module-color, var(--v2-cyan)), transparent) right bottom / 58px 1px no-repeat,
    linear-gradient(0deg, var(--module-color, var(--v2-cyan)), transparent) right bottom / 1px 58px no-repeat;
  opacity: 0.9;
}

.hud-module::after {
  opacity: 0.1;
  background:
    linear-gradient(90deg, transparent, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 38%, transparent), transparent),
    linear-gradient(180deg, transparent 0 48%, rgba(255, 255, 255, 0.1) 49% 51%, transparent 52%);
  transform: translateX(-120%);
  animation: hudModuleScan 4.8s ease-in-out infinite;
}

.hud-module > * {
  position: relative;
  z-index: 2;
}

.hud-particle-field {
  position: absolute;
  inset: 12px;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.82;
}

.hud-particle-field span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--module-color, var(--v2-cyan));
  box-shadow:
    0 0 10px var(--module-color, var(--v2-cyan)),
    0 0 28px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 42%, transparent);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(var(--s, 1));
  animation: hudParticleDrift 5.8s ease-in-out var(--d, 0s) infinite;
}

.hero-infographic-stage.is-energized .hud-particle-field span {
  animation-duration: 2.2s;
}

.hud-topline,
.hud-dock,
.hud-metrics {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: var(--v2-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.hud-topline strong {
  color: var(--module-color, var(--v2-cyan));
  font-weight: 650;
}

.hud-dock,
.hud-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.hud-dock span,
.hud-metrics span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--v2-radius-xs);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.hud-dock {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hud-module--persona .hud-dock {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hud-metrics b {
  color: var(--v2-ink);
  font-weight: 650;
}

.persona-map,
.voice-hud-grid,
.nfc-handoff,
.light-stage-map,
.intel-dashboard {
  position: relative;
  z-index: 1;
  min-height: 0;
}

.persona-map {
  display: grid;
  place-items: center;
}

.persona-map::before,
.voice-hud-grid::before,
.nfc-handoff::before,
.light-stage-map::before,
.intel-dashboard::before {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.38;
  background:
    linear-gradient(90deg, transparent 0 48%, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 62%, transparent) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 0 48%, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 42%, transparent) 49% 51%, transparent 52%);
  mask-image: radial-gradient(circle at center, #000 0 52%, transparent 72%);
  animation: hudGridBreathe 4.8s ease-in-out infinite;
}

.hud-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--module-color, var(--v2-cyan)) 34%, transparent);
  animation: orbitPulse 5.4s ease-in-out infinite;
}

.hud-ring--outer {
  width: min(80%, 360px);
  aspect-ratio: 1;
  border-color: rgba(255, 79, 216, 0.22);
}

.hud-ring--inner {
  width: min(52%, 230px);
  aspect-ratio: 1;
  animation-delay: -1.6s;
}

.persona-core,
.voice-orb,
.hud-module .nfc-token {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--module-color, var(--v2-cyan)) 64%, transparent);
  background:
    radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 26%, transparent), transparent 62%),
    rgba(2, 8, 11, 0.76);
  box-shadow: 0 0 70px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 18%, transparent);
  animation: hudCoreBreathe 3.8s ease-in-out infinite;
}

.persona-core {
  width: 138px;
  height: 138px;
  align-content: center;
  border-radius: 50%;
  gap: 4px;
}

.persona-core small,
.hud-module .nfc-token small,
.voice-orb span,
.handoff-card span,
.light-pulse-card span,
.intel-dashboard span,
.voice-script span {
  color: var(--v2-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.persona-core strong {
  margin-top: 0;
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: 28px;
}

.persona-node {
  position: absolute;
  z-index: 4;
  min-width: 112px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--v2-radius-xs);
  background: rgba(3, 7, 10, 0.82);
  padding: 10px 12px;
  box-shadow: 0 0 28px rgba(96, 245, 255, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.infographic.is-active .persona-node,
.infographic.is-active .handoff-card,
.infographic.is-active .light-pulse-card,
.infographic.is-active .intel-panel,
.infographic.is-active .voice-script {
  border-color: color-mix(in srgb, var(--module-color, var(--v2-cyan)) 34%, rgba(255, 255, 255, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 32px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 8%, transparent);
}

.persona-node em,
.persona-node b {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  text-transform: uppercase;
}

.persona-node em {
  color: var(--v2-muted);
  font-size: 10px;
}

.persona-node b {
  margin-top: 3px;
  color: var(--v2-ink);
  font-size: 12px;
  font-weight: 650;
}

.persona-node.node-a { top: 12%; left: 8%; }
.persona-node.node-b { top: 16%; right: 7%; }
.persona-node.node-c { bottom: 14%; left: 9%; }
.persona-node.node-d { right: 10%; bottom: 17%; }

.voice-hud-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.voice-orb {
  width: 132px;
  height: 132px;
  justify-self: center;
  border-radius: 50%;
}

.voice-wave {
  width: 100%;
  height: 150px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--v2-radius);
  background: rgba(255, 255, 255, 0.035);
}

.voice-wave::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 22%, transparent), transparent);
  transform: translateX(-120%);
  animation: hudSignalSweep 2.8s ease-in-out infinite;
}

.voice-script {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--v2-radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 16px;
}

.voice-script strong,
.handoff-card strong,
.light-pulse-card strong,
.intel-dashboard strong {
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 0.95;
  text-shadow: 0 0 26px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 24%, transparent);
}

.voice-script em,
.handoff-card em,
.light-pulse-card em,
.intel-dashboard em {
  color: var(--v2-dim);
  font-style: normal;
}

.nfc-handoff {
  display: grid;
  grid-template-columns: 0.62fr 0.48fr 1fr;
  gap: 14px;
  align-items: center;
}

.hud-module .nfc-token {
  width: 132px;
  height: 132px;
  border-radius: var(--v2-radius);
}

.hud-module .nfc-token strong {
  color: var(--v2-amber);
  font-family: var(--font-mono);
  font-size: 34px;
}

.nfc-signal {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: center;
}

.nfc-signal::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--module-color, var(--v2-cyan));
  box-shadow: 0 0 26px var(--module-color, var(--v2-cyan));
  transform: translate(-50%, -50%);
  animation: hudPulseDot 1.8s ease-in-out infinite;
}

.nfc-signal i {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--module-color, var(--v2-cyan)), transparent);
  animation: signalRun 1.4s ease-in-out infinite;
}

.nfc-signal i:nth-child(2) { animation-delay: 0.16s; }
.nfc-signal i:nth-child(3) { animation-delay: 0.32s; }
.nfc-signal span {
  color: var(--v2-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
}

.handoff-card,
.light-pulse-card,
.intel-dashboard .intel-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--v2-radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 12%, transparent), transparent),
    rgba(255, 255, 255, 0.045);
  padding: 16px;
}

.handoff-card {
  display: grid;
  gap: 8px;
}

.light-stage-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(150px, 1.1fr);
  gap: 12px;
  align-items: stretch;
}

.light-stage-map .light-column {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: var(--v2-radius);
}

.light-column--two { animation-delay: -0.7s; }
.light-column--three { animation-delay: -1.4s; }

.light-pulse-card {
  display: grid;
  align-content: end;
  gap: 8px;
}

.hud-module .light-timeline {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 2;
}

.intel-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(118px, auto);
  gap: 12px;
}

.intel-dashboard .intel-panel {
  min-height: 0;
  display: grid;
  align-content: end;
  gap: 7px;
  position: relative;
  overflow: hidden;
}

.intel-dashboard .intel-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--module-color, var(--v2-cyan)), transparent);
  opacity: 0.75;
  transform: translateX(-100%);
  animation: hudSignalSweep 3.2s ease-in-out infinite;
}

.intel-dashboard .intel-panel--wide {
  grid-column: 1 / -1;
}

.intel-dashboard strong {
  font-size: clamp(30px, 4vw, 48px);
}

.intel-dashboard .intel-panel--wide strong {
  font-size: clamp(34px, 4.8vw, 58px);
}

.hero-infographic-stage {
  min-height: clamp(330px, 34svh, 420px);
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-infographic-stage::before {
  display: none;
}

.hero-infographic-stage::after {
  inset: -10%;
  opacity: 0.18;
  background:
    radial-gradient(circle at var(--hud-x, 50%) var(--hud-y, 42%), color-mix(in srgb, var(--module-color, var(--v2-cyan)) 30%, transparent), transparent 34%),
    linear-gradient(90deg, transparent 0 44%, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 20%, transparent) 49% 51%, transparent 56%);
  background-size: auto;
  filter: blur(16px);
  mask-image: none;
}

.hero-infographic-stage .infographic {
  padding: clamp(8px, 1.4vw, 16px);
}

.hud-module {
  overflow: visible;
  gap: clamp(10px, 1.5vw, 16px);
  border: 0;
  background: transparent;
  padding: clamp(8px, 1.4vw, 14px);
  box-shadow: none;
  backdrop-filter: none;
}

.hud-module::before {
  display: none;
}

.hud-module::after {
  inset: 8%;
  opacity: 0.16;
  background:
    linear-gradient(90deg, transparent, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 42%, transparent), transparent),
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 22%, transparent), transparent 48%);
  filter: blur(10px);
}

.hud-topline,
.hud-dock,
.hud-metrics {
  min-width: 0;
  flex-wrap: wrap;
  font-size: 10px;
  line-height: 1.15;
}

.hud-topline span,
.hud-topline strong,
.hud-dock span,
.hud-metrics span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hud-dock span,
.hud-metrics span {
  min-height: 30px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(2, 8, 11, 0.18);
  padding: 5px;
}

.persona-core,
.voice-orb,
.hud-module .nfc-token {
  border-color: color-mix(in srgb, var(--module-color, var(--v2-cyan)) 38%, transparent);
  background:
    radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 24%, transparent), transparent 62%),
    rgba(2, 8, 11, 0.22);
  box-shadow: 0 0 42px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 18%, transparent);
}

.persona-node,
.voice-script,
.handoff-card,
.light-pulse-card,
.intel-dashboard .intel-panel {
  min-width: 0;
  border-color: color-mix(in srgb, var(--module-color, var(--v2-cyan)) 18%, rgba(255, 255, 255, 0.08));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 10%, transparent), transparent),
    rgba(2, 8, 11, 0.18);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.infographic.is-active .persona-node,
.infographic.is-active .handoff-card,
.infographic.is-active .light-pulse-card,
.infographic.is-active .intel-panel,
.infographic.is-active .voice-script {
  box-shadow: 0 0 24px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 8%, transparent);
}

.persona-node {
  min-width: 92px;
}

.voice-wave {
  height: clamp(92px, 15svh, 130px);
  border: 0;
  background: transparent;
}

.voice-wave::after {
  opacity: 0.35;
}

.voice-script strong,
.handoff-card strong,
.light-pulse-card strong,
.intel-dashboard strong {
  max-width: 100%;
  font-size: clamp(21px, 2.15vw, 32px);
  line-height: 1.06;
  overflow-wrap: anywhere;
  text-wrap: balance;
  white-space: normal;
}

.light-pulse-card strong {
  font-size: clamp(22px, 2.1vw, 30px);
}

.intel-dashboard strong {
  font-size: clamp(23px, 2.3vw, 34px);
}

.intel-dashboard .intel-panel--wide strong {
  font-size: clamp(24px, 2.5vw, 34px);
}

.voice-script em,
.handoff-card em,
.light-pulse-card em,
.intel-dashboard em {
  max-width: 100%;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.35;
  overflow-wrap: break-word;
}

.light-stage-map {
  grid-template-columns: minmax(42px, 0.6fr) minmax(48px, 0.76fr) minmax(42px, 0.6fr) minmax(156px, 1.35fr);
  gap: clamp(8px, 1.2vw, 12px);
}

.light-stage-map .light-column {
  min-height: clamp(160px, 25svh, 220px);
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 34%, transparent), rgba(255, 79, 216, 0.16), transparent),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  box-shadow: 0 0 48px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 14%, transparent);
}

.light-pulse-card {
  overflow: hidden;
}

.intel-dashboard {
  grid-auto-rows: minmax(92px, auto);
}

.intel-dashboard .intel-panel {
  padding: clamp(12px, 1.4vw, 16px);
}

.hero-function-strip {
  position: absolute;
  left: auto;
  right: max(24px, calc((100vw - 1180px) / 2));
  top: clamp(104px, 14svh, 136px);
  bottom: auto;
  z-index: 4;
  width: auto;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(96, 245, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(96, 245, 255, 0.12), rgba(255, 79, 216, 0.08)),
    rgba(2, 7, 10, 0.34);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18), 0 0 24px rgba(96, 245, 255, 0.06);
  padding: 7px 9px 7px 12px;
  backdrop-filter: blur(16px);
  transform: none;
  transition: box-shadow 240ms ease, border-color 240ms ease;
}

.hero-function-strip::before {
  content: none;
}

.hero-slider-status {
  min-width: 0;
  border-right: 0;
  border-bottom: 0;
  padding: 0 3px 0 0;
}

.hero-slider-status span,
.hero-slider-status strong {
  display: block;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.hero-slider-status span {
  display: none;
}

.hero-slider-status strong {
  margin-top: 0;
  color: var(--v2-cyan);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.02em;
  max-width: 88px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
}

.hero-function-tabs {
  display: flex;
  gap: 7px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tab,
.hero-arrows button {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--v2-radius-xs);
  background: rgba(255, 255, 255, 0.04);
  color: var(--v2-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-tab {
  position: relative;
  overflow: hidden;
  width: 22px;
  height: 22px;
  min-height: 22px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 0;
  line-height: 0;
  text-align: center;
  box-shadow: none;
}

.hero-tab::before,
.hero-tab::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-tab::before {
  inset: -6px;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 24%, transparent), transparent 58%);
  transition: opacity 180ms ease;
}

.hero-tab::after {
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  opacity: 0.72;
  transform: translate(-50%, -50%) scale(0.92);
  transition: width 180ms ease, height 180ms ease, opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-tab:hover,
.hero-tab:focus-visible,
.hero-tab.is-active {
  border-color: transparent;
  background: transparent;
  color: var(--v2-ink);
  box-shadow: none;
}

.hero-tab:hover::before,
.hero-tab:focus-visible::before,
.hero-tab.is-active::before {
  opacity: 1;
}

.hero-tab:hover::after,
.hero-tab:focus-visible::after,
.hero-tab.is-active::after {
  width: 9px;
  height: 9px;
  opacity: 0.96;
  background: var(--module-color, var(--v2-cyan));
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 16px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 42%, transparent);
}

.hero-tab.is-active {
  width: 32px;
  animation: none;
}

.hero-tab.is-active::after {
  width: 22px;
  height: 8px;
}

.hero-arrows {
  display: flex;
  gap: 4px;
}

.hero-arrows button {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--v2-ink);
  font-size: 18px;
  line-height: 1;
}

.hero-progress {
  display: none;
}

.hero-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateY(-100%);
  animation: heroProgressScan 3.6s ease-in-out infinite;
}

.hero-progress span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: center top;
  background: linear-gradient(180deg, var(--v2-cyan), var(--v2-pink), var(--v2-amber));
  box-shadow: 0 0 18px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 52%, transparent);
}

.cinematic-copy,
.page-hero-copy,
.case-hero-copy {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  min-width: 0;
  margin: 0 auto;
  padding: clamp(112px, 12svh, 142px) 0 clamp(46px, 6svh, 72px);
}

.cinematic-copy.function-copy {
  width: auto;
  padding: 0;
}

@media (min-width: 1121px) {
  .cinematic-copy.function-copy {
    padding-bottom: clamp(104px, 10svh, 132px);
  }
}

.page-hero--right .page-hero-copy {
  display: grid;
  justify-items: end;
  text-align: right;
}

.page-hero--center .page-hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.kicker {
  margin: 0 0 16px;
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cinematic-copy h1,
.page-hero-copy h1,
.case-hero-copy h1 {
  max-width: 950px;
  margin: 0;
  color: var(--v2-ink);
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.96;
  font-weight: 760;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: balance;
}

.page-hero-copy h1 {
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1;
}

.case-hero-copy h1 {
  max-width: 1050px;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1;
}

.hero-line {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--v2-dim);
  font-size: clamp(17px, 1.55vw, 21px);
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: balance;
}

.hero-support {
  max-width: 860px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(24px, 4svh, 42px);
}

.hero-support span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(96, 245, 255, 0.18);
  border-radius: var(--v2-radius-xs);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.1), rgba(255, 79, 216, 0.045)),
    rgba(2, 8, 11, 0.62);
  color: var(--v2-ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
  padding: 9px 12px;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(96, 245, 255, 0.08);
}

.page-hero--right .hero-support {
  justify-content: flex-end;
}

.page-hero--center .hero-support {
  justify-content: center;
}

body[data-page="produkt"] .page-hero-bg img,
body[data-page="produkt"] .page-hero-bg video,
body[data-page="technologia"] .page-hero-bg img,
body[data-page="technologia"] .page-hero-bg video,
body[data-page="zastosowania"] .page-hero-bg img,
body[data-page="zastosowania"] .page-hero-bg video,
body[data-page="proces"] .page-hero-bg img,
body[data-page="proces"] .page-hero-bg video,
body[data-page="galeria"] .page-hero-bg img,
body[data-page="galeria"] .page-hero-bg video,
body[data-page="glos"] .page-hero-bg img,
body[data-page="glos"] .page-hero-bg video,
body[data-page="muzyka"] .page-hero-bg img,
body[data-page="muzyka"] .page-hero-bg video,
body[data-page="realizacja"] .case-hero-bg img,
body[data-page="realizacja"] .case-hero-bg video {
  object-position: center center;
}

body[data-page="technologia"] .page-hero-bg img,
body[data-page="technologia"] .page-hero-bg video,
body[data-page="glos"] .page-hero-bg img,
body[data-page="glos"] .page-hero-bg video {
  object-position: 42% center;
}

body[data-page="muzyka"] .page-hero-bg img,
body[data-page="muzyka"] .page-hero-bg video {
  object-position: 56% center;
}

.hero-commands {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-orchestration {
  position: absolute;
  left: 50%;
  bottom: calc(var(--hero-strip-offset, 20px) + var(--consent-banner-offset, 0px) + 20px);
  z-index: 4;
  width: min(1180px, calc(100% - 48px));
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-orchestration::before,
.hero-orchestration__signal {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 245, 255, 0.38), rgba(255, 79, 216, 0.3), rgba(255, 138, 61, 0.26), transparent);
  transform: translateY(-50%);
}

.hero-orchestration::before {
  opacity: 0.58;
}

.hero-orchestration__signal {
  z-index: 1;
  width: 20%;
  right: auto;
  opacity: 0.9;
  background: linear-gradient(90deg, transparent, var(--v2-cyan), var(--v2-pink), transparent);
  filter: drop-shadow(0 0 12px rgba(96, 245, 255, 0.32));
  animation: orchestrationSignal 4.8s ease-in-out infinite;
}

.hero-flow-node {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 72px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 34px 8px 0;
  text-align: center;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
  opacity: 0.72;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-flow-node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(96, 245, 255, 0.56);
  border-radius: 999px;
  background: rgba(2, 8, 11, 0.72);
  box-shadow: 0 0 16px rgba(96, 245, 255, 0.16);
  opacity: 0.92;
  transform: translate(-50%, -50%);
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-flow-node::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 34%, transparent), transparent 66%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.58);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-flow-node small,
.hero-flow-node strong,
.hero-flow-node em {
  min-width: 0;
  font-family: var(--font-mono);
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.hero-flow-node small {
  color: var(--v2-cyan);
  font-size: 9px;
  font-weight: 760;
}

.hero-flow-node strong {
  color: var(--v2-ink);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 820;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.hero-flow-node em {
  color: rgba(238, 250, 255, 0.62);
  font-size: clamp(9px, 0.78vw, 11px);
  font-style: normal;
  font-weight: 650;
}

.hero-flow-node.is-active {
  opacity: 1;
  transform: translateY(-4px);
}

.hero-flow-node.is-active::before {
  width: 14px;
  height: 14px;
  border-color: color-mix(in srgb, var(--module-color, var(--v2-cyan)) 72%, white);
  background: var(--module-color, var(--v2-cyan));
  box-shadow:
    0 0 18px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 48%, transparent),
    0 0 38px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 24%, transparent);
}

.hero-flow-node.is-active::after {
  opacity: 0.72;
  transform: translate(-50%, -50%) scale(1);
  animation: heroNodeHalo 1.8s ease-in-out infinite;
}

.hero-flow-node.is-active strong {
  color: var(--module-color, var(--v2-cyan));
  text-shadow: 0 0 18px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 32%, transparent);
}

.hero-system-panel {
  position: absolute;
  right: 5vw;
  top: 140px;
  z-index: 4;
  width: min(300px, 36vw);
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-lg);
  background: rgba(5, 7, 10, 0.48);
  padding: 18px;
  color: var(--v2-dim);
  box-shadow: var(--v2-shadow);
  backdrop-filter: blur(20px);
}

.hero-system-panel span,
.hero-system-panel strong {
  display: block;
}

.hero-system-panel span {
  font-size: 11px;
  font-weight: 820;
  color: var(--v2-cyan);
}

.hero-system-panel strong {
  margin-top: 8px;
  color: var(--v2-ink);
  font-size: 20px;
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.gateway-card {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: min(7vw, 72px);
  color: var(--v2-ink);
  isolation: isolate;
}

.gateway-card--wide {
  grid-column: span 2;
}

.gateway-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(3, 4, 6, 0.08), rgba(3, 4, 6, 0.88)),
    linear-gradient(90deg, rgba(3, 4, 6, 0.68), transparent);
}

.gateway-card span,
.gateway-card h2,
.gateway-card p,
.gateway-tech-list {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.gateway-card span {
  color: var(--v2-cyan);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.gateway-card h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1;
}

.gateway-card p {
  margin: 18px 0 0;
  color: var(--v2-dim);
  font-size: 19px;
}

.gateway-tech-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.gateway-tech-list li {
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 10px;
  color: rgba(238, 250, 255, 0.86);
  font-family: var(--font-mono);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 720;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.gateway-card--tech::after {
  background:
    linear-gradient(180deg, rgba(3, 4, 6, 0.12), rgba(3, 4, 6, 0.9)),
    linear-gradient(90deg, rgba(3, 4, 6, 0.74), rgba(3, 4, 6, 0.16));
}

.home-product-board.gateway-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas:
    "head head head head feature feature feature feature tech tech tech tech"
    "light light light light feature feature feature feature voice voice voice voice"
    "gallery gallery gallery nfc nfc nfc wide wide wide wide wide wide";
  grid-auto-rows: minmax(218px, auto);
  gap: 12px;
  margin: 0;
  padding: clamp(78px, 8vw, 118px) max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 16% 10%, rgba(96, 245, 255, 0.16), transparent 34%),
    radial-gradient(circle at 76% 36%, rgba(48, 199, 181, 0.14), transparent 36%),
    radial-gradient(circle at 94% 6%, rgba(255, 79, 216, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.44), rgba(5, 7, 10, 0.92));
  box-sizing: border-box;
  overflow: hidden;
}

.home-product-board__head {
  grid-area: head;
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 0;
  padding: 0 clamp(10px, 2vw, 24px) 0 0;
}

.home-product-board__head h2 {
  max-width: 620px;
  margin: 0;
  color: var(--v2-ink);
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1;
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: balance;
}

.home-product-board__head p:not(.kicker) {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--v2-dim);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.45;
  text-wrap: balance;
}

.home-product-board .gateway-card {
  min-height: 0;
  height: 100%;
  border: 1px solid rgba(96, 245, 255, 0.12);
  border-radius: var(--v2-radius);
  background: rgba(2, 8, 11, 0.54);
  padding: clamp(18px, 2vw, 24px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.home-product-board .gateway-card::after {
  background:
    linear-gradient(180deg, rgba(3, 4, 6, 0.02), rgba(3, 4, 6, 0.32) 45%, rgba(3, 4, 6, 0.86)),
    linear-gradient(90deg, rgba(3, 4, 6, 0.72), rgba(3, 4, 6, 0.14) 58%, rgba(3, 4, 6, 0.34));
}

.home-product-board .gateway-card picture {
  border-radius: inherit;
}

.home-product-board .gateway-card img {
  object-position: center center;
  transform: scale(1.015);
}

.home-product-board .gateway-card span,
.home-product-board .gateway-card h2,
.home-product-board .gateway-card p,
.home-product-board .gateway-tech-list {
  max-width: min(100%, 470px);
}

.home-product-board .gateway-card span {
  font-size: 10px;
  line-height: 1.1;
}

.home-product-board .gateway-card h2 {
  margin-top: 10px;
  font-size: clamp(20px, 2.15vw, 31px);
  line-height: 1.04;
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: balance;
}

.home-product-board .gateway-card p {
  margin-top: 10px;
  color: rgba(238, 250, 255, 0.74);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.35;
  overflow-wrap: break-word;
}

.home-product-board .gateway-card--feature {
  grid-area: feature;
  min-height: 0;
}

.home-product-board .gateway-card--tech {
  grid-area: tech;
  min-height: 0;
}

.home-product-board .gateway-card--voice {
  grid-area: voice;
}

.home-product-board .gateway-card--nfc {
  grid-area: nfc;
}

.home-product-board .gateway-card--light {
  grid-area: light;
  min-height: 0;
}

.home-product-board .gateway-card--gallery {
  grid-area: gallery;
  min-height: 0;
}

.home-product-board .gateway-card--wide {
  grid-area: wide;
  min-height: 0;
}

.home-product-board .gateway-card--feature img {
  object-position: center 54%;
}

.home-product-board .gateway-card--tech img {
  object-position: center 44%;
}

.home-product-board .gateway-card--voice img {
  object-position: center 58%;
}

.home-product-board .gateway-card--nfc img {
  object-position: center 60%;
}

.home-product-board .gateway-card--light img {
  object-position: center 44%;
}

.home-product-board .gateway-card--gallery img {
  object-position: center 42%;
}

.home-product-board .gateway-card--wide img {
  object-position: center 46%;
}

.home-product-board .gateway-tech-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin-top: 16px;
}

.home-product-board .gateway-tech-list li {
  padding-top: 8px;
  font-size: 10px;
}

.aurea-video-suite {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 86px;
  padding: clamp(88px, 8vw, 124px) max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.96), rgba(6, 10, 15, 0.98) 44%, rgba(5, 7, 10, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 88px);
  color: var(--v2-ink);
}

.aurea-video-suite::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(116deg, rgba(96, 245, 255, 0.1), transparent 30%, rgba(255, 138, 61, 0.08) 56%, transparent 74%, rgba(255, 79, 216, 0.08)),
    linear-gradient(90deg, rgba(3, 4, 6, 0.7), transparent 34%, rgba(3, 4, 6, 0.72));
  mix-blend-mode: screen;
}

.aurea-video-suite > * {
  position: relative;
  z-index: 1;
}

.aurea-video-suite__head {
  display: block;
  margin-bottom: 34px;
  padding-top: 10px;
}

.aurea-video-suite__head h2 {
  margin: 0;
  max-width: 780px;
  color: var(--v2-ink);
  font-size: clamp(44px, 5.7vw, 82px);
  line-height: 0.98;
  text-wrap: balance;
}

.aurea-video-suite__head p:not(.kicker) {
  margin: 0;
  color: var(--v2-dim);
  font-size: 18px;
  line-height: 1.48;
  text-wrap: balance;
}

.aurea-video-head-card {
  position: relative;
  min-width: 0;
  width: 100%;
  min-height: clamp(460px, 48vw, 640px);
  display: block;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(96, 245, 255, 0.2);
  border-radius: var(--v2-radius-sm);
  background: rgba(5, 8, 12, 0.86);
  color: var(--v2-ink);
  padding: 0;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateZ(0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.aurea-video-head-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 4, 6, 0.16), rgba(3, 4, 6, 0.08) 34%, rgba(3, 4, 6, 0.86)),
    linear-gradient(90deg, rgba(3, 4, 6, 0.7), rgba(3, 4, 6, 0.22) 38%, rgba(3, 4, 6, 0.78) 78%),
    radial-gradient(circle at 18% 28%, rgba(96, 245, 255, 0.18), transparent 34%);
}

.aurea-video-head-card:hover,
.aurea-video-head-card:focus-visible,
.aurea-video-head-card.is-active {
  border-color: rgba(96, 245, 255, 0.48);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(96, 245, 255, 0.14);
  transform: translateY(-2px);
}

.aurea-video-head-card:focus-visible {
  outline: 2px solid rgba(96, 245, 255, 0.86);
  outline-offset: 3px;
}

.aurea-video-head-card__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--video-poster, none) center / cover no-repeat #03070b;
}

.aurea-video-head-card__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #03070b;
  transform: scale(1.012);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.aurea-video-head-card__media video[data-video-autoplay="true"] {
  opacity: 0;
}

.aurea-video-head-card__media video[data-video-autoplay="true"].is-video-ready {
  opacity: 1;
}

.aurea-video-head-card:hover .aurea-video-head-card__media video,
.aurea-video-head-card:focus-visible .aurea-video-head-card__media video,
.aurea-video-head-card.is-active .aurea-video-head-card__media video {
  filter: saturate(1.13) contrast(1.05);
  transform: scale(1.045);
}

.aurea-video-head-card__copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  max-width: none;
  padding: clamp(28px, 5vw, 66px);
}

.aurea-video-head-card__text {
  min-width: 0;
  max-width: 790px;
  align-self: center;
  justify-self: end;
}

.aurea-video-head-card__text .kicker {
  margin-bottom: 18px;
}

.aurea-video-head-card__text p:not(.kicker) {
  max-width: 720px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.aurea-video-head-card__scene {
  display: grid;
  gap: 7px;
  max-width: 360px;
}

.aurea-video-head-card__scene span,
.aurea-video-head-card__scene strong,
.aurea-video-head-card__scene em {
  display: block;
  min-width: 0;
}

.aurea-video-head-card__scene span {
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 760;
  line-height: 1.15;
  text-transform: uppercase;
}

.aurea-video-head-card__scene strong {
  color: var(--v2-ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.5);
}

.aurea-video-head-card__scene em {
  color: rgba(247, 251, 255, 0.64);
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.aurea-video-suite__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  gap: 14px;
  align-items: stretch;
}

.aurea-video-frame {
  position: relative;
  min-height: 420px;
  aspect-ratio: 16 / 8.7;
  overflow: hidden;
  border: 1px solid rgba(96, 245, 255, 0.22);
  border-radius: var(--v2-radius-sm);
  background:
    var(--video-poster, none) center / cover no-repeat,
    linear-gradient(135deg, rgba(96, 245, 255, 0.1), rgba(255, 79, 216, 0.05)),
    #03070b;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  isolation: isolate;
  transform: translateZ(0);
}

.aurea-video-frame video,
.aurea-reel-card video,
.aurea-conference-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #03070b;
}

.aurea-video-frame video[data-video-autoplay="true"],
.aurea-reel-card video[data-video-autoplay="true"] {
  opacity: 0;
  transition: opacity 320ms ease;
}

.aurea-video-frame video[data-video-autoplay="true"].is-video-ready,
.aurea-reel-card video[data-video-autoplay="true"].is-video-ready {
  opacity: 1;
}

.aurea-feature-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.aurea-video-frame::before,
.aurea-reel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 4, 6, 0.03), rgba(3, 4, 6, 0.16) 42%, rgba(3, 4, 6, 0.84)),
    linear-gradient(90deg, rgba(3, 4, 6, 0.68), transparent 58%);
}

.aurea-video-frame__scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.64;
  background:
    linear-gradient(90deg, transparent, rgba(96, 245, 255, 0.28), rgba(255, 138, 61, 0.18), transparent),
    linear-gradient(180deg, transparent 0 48%, rgba(255, 255, 255, 0.1) 50%, transparent 52%);
  transform: translateX(-100%);
  animation: aureaVideoScan 5.8s ease-in-out infinite;
  mix-blend-mode: screen;
}

.aurea-video-frame__hud {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 4;
  max-width: 720px;
  display: grid;
  gap: 8px;
}

.aurea-video-frame__hud span,
.aurea-video-frame__hud strong,
.aurea-video-frame__hud em {
  display: block;
}

.aurea-video-frame__hud span {
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.2;
  text-transform: uppercase;
}

.aurea-video-frame__hud strong {
  color: var(--v2-ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.03;
  text-wrap: balance;
}

.aurea-video-frame__hud em {
  max-width: 560px;
  color: rgba(247, 251, 255, 0.74);
  font-style: normal;
  font-size: 15px;
  line-height: 1.4;
}

.aurea-video-suite__signals {
  display: grid;
  gap: 12px;
}

.aurea-video-suite__signals div {
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--v2-radius-sm);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.08), rgba(255, 79, 216, 0.04)),
    rgba(6, 12, 18, 0.72);
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease, opacity 180ms ease;
}

.aurea-video-suite__signals.is-changing div {
  opacity: 0.42;
  transform: translateY(4px);
}

.aurea-video-suite__signals span {
  color: var(--v2-gold);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 760;
  line-height: 0.9;
}

.aurea-video-suite__signals strong,
.aurea-video-suite__signals em {
  display: block;
}

.aurea-video-suite__signals strong {
  color: var(--v2-ink);
  font-size: 17px;
  line-height: 1.12;
}

.aurea-video-suite__signals em {
  color: var(--v2-muted);
  font-style: normal;
  font-size: 12px;
  line-height: 1.32;
}

.aurea-video-suite__routes {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.aurea-video-suite__routes a {
  min-width: 0;
  min-height: 152px;
  display: grid;
  align-content: end;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--v2-radius-sm);
  background:
    linear-gradient(145deg, rgba(96, 245, 255, 0.08), rgba(255, 79, 216, 0.06) 52%, rgba(255, 79, 216, 0.045)),
    rgba(6, 12, 18, 0.72);
  color: var(--v2-ink);
  padding: 16px;
  text-decoration: none;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.aurea-video-suite__routes a:hover,
.aurea-video-suite__routes a:focus-visible {
  border-color: rgba(96, 245, 255, 0.48);
  background:
    linear-gradient(145deg, rgba(96, 245, 255, 0.14), rgba(255, 138, 61, 0.08) 52%, rgba(255, 79, 216, 0.07)),
    rgba(7, 15, 22, 0.86);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(96, 245, 255, 0.12);
  transform: translateY(-3px);
}

.aurea-video-suite__routes a:focus-visible {
  outline: 2px solid rgba(96, 245, 255, 0.86);
  outline-offset: 3px;
}

.aurea-video-suite__routes span,
.aurea-video-suite__routes strong,
.aurea-video-suite__routes em {
  display: block;
  min-width: 0;
}

.aurea-video-suite__routes span {
  color: var(--v2-gold);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.15;
  text-transform: uppercase;
}

.aurea-video-suite__routes strong {
  color: var(--v2-ink);
  font-size: clamp(20px, 1.65vw, 24px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: normal;
}

.aurea-video-suite__routes em {
  color: rgba(247, 251, 255, 0.64);
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: normal;
}

.aurea-reel-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(168px, auto);
  gap: 10px;
  margin-top: 14px;
}

.aurea-reel-card {
  position: relative;
  min-width: 0;
  min-height: 230px;
  grid-column: span 3;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--v2-radius-sm);
  background: rgba(5, 8, 12, 0.86);
  color: var(--v2-ink);
  padding: 0;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.aurea-reel-card:nth-child(1) {
  grid-row: span 2;
}

.aurea-reel-card:nth-child(3) {
  grid-column: span 6;
  grid-row: span 2;
}

.aurea-reel-card:nth-child(9),
.aurea-reel-card:nth-child(10) {
  grid-column: span 6;
}

.aurea-reel-card:hover,
.aurea-reel-card:focus-visible,
.aurea-reel-card.is-active {
  border-color: rgba(96, 245, 255, 0.48);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(96, 245, 255, 0.16);
  transform: translateY(-3px);
}

.aurea-reel-card:focus-visible {
  outline: 2px solid rgba(96, 245, 255, 0.86);
  outline-offset: 3px;
}

.aurea-reel-card.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(255, 138, 61, 0.72);
  border-radius: inherit;
}

.aurea-reel-card__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--video-poster, none) center / cover no-repeat #03070b;
}

.aurea-reel-card__media video {
  transform: scale(1.012);
  transition: transform 420ms ease, filter 420ms ease;
}

.aurea-reel-card:hover .aurea-reel-card__media video,
.aurea-reel-card:focus-visible .aurea-reel-card__media video,
.aurea-reel-card.is-active .aurea-reel-card__media video {
  filter: saturate(1.14) contrast(1.05);
  transform: scale(1.055);
}

.aurea-reel-card__copy {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 14px;
  z-index: 3;
  display: grid;
  gap: 6px;
  max-width: 420px;
}

.aurea-reel-card__copy span,
.aurea-reel-card__copy strong,
.aurea-reel-card__copy em {
  display: block;
  min-width: 0;
}

.aurea-reel-card__copy span {
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 760;
  line-height: 1.15;
  text-transform: uppercase;
}

.aurea-reel-card__copy strong {
  color: var(--v2-ink);
  font-size: 20px;
  line-height: 1.05;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.aurea-reel-card__copy em {
  color: rgba(247, 251, 255, 0.64);
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.aurea-conference-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 16px;
  border: 1px solid rgba(255, 138, 61, 0.2);
  border-radius: var(--v2-radius-sm);
  background:
    linear-gradient(135deg, rgba(255, 138, 61, 0.1), rgba(96, 245, 255, 0.055) 42%, rgba(255, 79, 216, 0.05)),
    rgba(7, 12, 18, 0.76);
  padding: 18px;
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.aurea-conference-card--featured {
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 28px);
  border-color: rgba(255, 138, 61, 0.34);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 138, 61, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(96, 245, 255, 0.1), rgba(255, 79, 216, 0.065)),
    rgba(7, 12, 18, 0.84);
  padding: clamp(14px, 2vw, 24px);
}

.aurea-conference-card > * {
  min-width: 0;
}

.aurea-conference-card__copy {
  display: grid;
  align-content: center;
  padding: 18px 12px 18px 10px;
}

.aurea-conference-card--featured .aurea-conference-card__copy {
  max-width: 980px;
  padding: 0 6px 4px;
}

.aurea-conference-card__copy h2,
.aurea-conference-card__copy h3 {
  max-width: 620px;
  margin: 0;
  color: var(--v2-ink);
  font-size: 42px;
  line-height: 1.02;
  text-wrap: balance;
}

.aurea-conference-card__copy p:not(.kicker) {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--v2-dim);
  font-size: 16px;
  line-height: 1.5;
}

.aurea-conference-card--featured .aurea-conference-card__copy h2 {
  max-width: 980px;
  font-size: clamp(34px, 4.3vw, 58px);
}

.aurea-conference-card--featured .aurea-conference-card__copy p:not(.kicker) {
  max-width: 820px;
  font-size: clamp(16px, 1.5vw, 20px);
}

.aurea-conference-card__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: var(--v2-radius-sm);
  background: #020407;
}

.aurea-conference-card__media video {
  aspect-ratio: 2 / 1;
  height: 100%;
  min-height: 100%;
  object-fit: contain;
}

.aurea-conference-card--featured .aurea-conference-card__media {
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: #020407;
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(96, 245, 255, 0.16);
}

.aurea-conference-card--featured .aurea-conference-card__media video {
  aspect-ratio: 16 / 9;
  height: 100%;
  min-height: 0;
}

.aurea-conference-card__media span {
  position: absolute;
  left: 14px;
  top: 12px;
  z-index: 2;
  max-width: calc(100% - 28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--v2-radius-xs);
  background: rgba(3, 4, 6, 0.64);
  color: rgba(247, 251, 255, 0.72);
  padding: 7px 9px;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
  pointer-events: none;
}

.case-conference-reel {
  padding: clamp(70px, 7vw, 112px) max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 138, 61, 0.12), transparent 34%),
    radial-gradient(circle at 88% 24%, rgba(96, 245, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.98), rgba(6, 10, 15, 0.94));
}

.case-vision {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin: 0 auto;
  padding: clamp(82px, 8vw, 128px) 0 clamp(58px, 6vw, 92px);
}

.case-vision__copy,
.case-vision__cards {
  min-width: 0;
}

.case-vision__copy h2 {
  max-width: 820px;
  margin: 0;
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 0.98;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.case-vision__copy p:not(.kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--v2-dim);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.62;
  overflow-wrap: break-word;
}

.case-vision__cards {
  display: grid;
  gap: 12px;
}

.case-vision__cards article {
  min-width: 0;
  border: 1px solid rgba(96, 245, 255, 0.15);
  border-radius: var(--v2-radius-lg);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.08), rgba(255, 138, 61, 0.045)),
    rgba(7, 12, 18, 0.68);
  padding: 24px;
  box-shadow: var(--v2-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.case-vision__cards span {
  color: var(--v2-gold);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.case-vision__cards strong {
  display: block;
  margin-top: 12px;
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.02;
  overflow-wrap: break-word;
}

.case-vision__cards p {
  margin: 14px 0 0;
  color: var(--v2-dim);
  font-size: 15px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.case-conference-reel--featured {
  padding-top: clamp(54px, 6vw, 88px);
  padding-bottom: clamp(58px, 6vw, 96px);
}

.case-conference-reel .aurea-conference-card {
  max-width: 1180px;
  margin: 0 auto;
}

.conference-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.conference-proof-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(96, 245, 255, 0.14);
  border-radius: var(--v2-radius-xs);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(247, 251, 255, 0.82);
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.35;
}

.conference-proof-list span {
  color: var(--v2-gold);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 760;
}

.case-delivery {
  padding-top: clamp(86px, 8vw, 130px);
  padding-bottom: clamp(78px, 8vw, 118px);
}

.case-stack-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-stack-grid .tech-stack-card {
  min-height: 250px;
}

.full-bleed-statement {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.full-bleed-statement::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(3, 4, 6, 0.9), rgba(3, 4, 6, 0.4), rgba(3, 4, 6, 0.82));
}

.statement-copy {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.statement-copy h2,
.band-copy h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(34px, 5.2vw, 70px);
  line-height: 1;
}

.statement-copy .v2-button {
  margin-top: 32px;
}

.cinematic-band,
.system-map,
.usecase-wall,
.timeline-cinema,
.case-sequence {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}

.signal-grid,
.system-map,
.usecase-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.signal-card,
.system-node,
.usecase-tile,
.sequence-panel,
.timeline-step,
.split-panel,
.wizard-form {
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-lg);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.055), rgba(255, 79, 216, 0.035)),
    var(--v2-panel);
  box-shadow: var(--v2-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.signal-card,
.system-node,
.usecase-tile,
.sequence-panel,
.timeline-step {
  min-height: 260px;
  padding: 26px;
}

.signal-card span,
.system-node span,
.usecase-tile span,
.sequence-panel span,
.timeline-step span {
  color: var(--v2-cyan);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.signal-card h3,
.system-node h3,
.usecase-tile h2,
.sequence-panel h2,
.timeline-step h2 {
  margin: 14px 0 0;
  color: var(--v2-ink);
  line-height: 1.05;
}

.signal-card p,
.system-node p,
.usecase-tile p,
.sequence-panel p,
.timeline-step p,
.split-panel p,
.cinema-list {
  color: var(--v2-dim);
}

.split-cinema {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 92px 0;
}

.split-cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(3, 4, 6, 0.18), rgba(3, 4, 6, 0.86));
}

.split-panel {
  position: relative;
  z-index: 3;
  width: min(620px, calc(100% - 48px));
  margin-left: auto;
  margin-right: max(24px, calc((100vw - 1180px) / 2));
  padding: 34px;
}

.split-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1;
}

.cinema-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding-left: 18px;
}

.system-map {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.usecase-wall {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.usecase-tile {
  grid-column: span 2;
}

.usecase-tile:nth-child(1),
.usecase-tile:nth-child(2) {
  grid-column: span 3;
}

.timeline-cinema,
.case-sequence {
  display: grid;
  gap: 18px;
}

.timeline-step,
.sequence-panel {
  display: grid;
  grid-template-columns: 96px minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  min-height: 0;
}

.timeline-step h2,
.sequence-panel h2,
.timeline-step p,
.sequence-panel p {
  margin-top: 0;
}

.case-gallery-v2 {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.case-gallery-v2 picture {
  min-height: 86svh;
  overflow: hidden;
  background: #05070a;
}

.case-gallery-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-gallery-caption {
  grid-column: span 2;
  min-height: 58svh;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 80px 24px;
  text-align: center;
}

.case-gallery-caption h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1;
}

.case-gallery-caption .v2-button {
  margin-top: 30px;
}

.brief-stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 130px 24px 80px;
}

.brief-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(3, 4, 6, 0.92), rgba(3, 4, 6, 0.62), rgba(3, 4, 6, 0.9));
}

.brief-shell {
  position: relative;
  z-index: 3;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: start;
  margin: 0 auto;
}

.brief-intro h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
}

.brief-intro p:not(.kicker) {
  max-width: 560px;
  color: var(--v2-dim);
  font-size: 19px;
}

.wizard-form {
  padding: 28px;
}

.wizard-progress {
  height: 4px;
  overflow: hidden;
  border-radius: var(--v2-radius-xs);
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.wizard-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--v2-cyan), var(--v2-pink));
  transition: width 220ms ease;
}

.wizard-step {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  border: 0;
  padding: 0;
}

.wizard-step.is-active {
  display: grid;
}

.wizard-step legend {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  color: var(--v2-ink);
  font-size: 28px;
  font-weight: 780;
}

.wizard-step label {
  display: grid;
  gap: 8px;
  color: var(--v2-dim);
  font-weight: 760;
}

.wizard-wide {
  grid-column: 1 / -1;
}

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

.wizard-form input,
.wizard-form select,
.wizard-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--v2-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--v2-ink);
  padding: 13px 14px;
  font: inherit;
}

.wizard-form select option {
  color: #05070a;
}

.wizard-form textarea {
  resize: vertical;
}

.wizard-form input:focus,
.wizard-form select:focus,
.wizard-form textarea:focus {
  outline: 3px solid rgba(96, 245, 255, 0.18);
  border-color: rgba(96, 245, 255, 0.58);
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.wizard-summary {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  color: var(--v2-dim);
}

.wizard-summary div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.wizard-summary strong {
  color: var(--v2-cyan);
}

.form-status {
  width: 100%;
  min-height: 26px;
  margin: 16px 0 0;
  color: var(--v2-dim);
}

.form-status[data-state="success"] {
  color: var(--v2-cyan);
}

.form-status[data-state="error"] {
  color: #ff7d9b;
}

.brief-honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
}

.checkbox-label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}

.checkbox-label input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.company-proof {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
  margin: 0;
  border-top: 1px solid rgba(96, 245, 255, 0.1);
  background:
    radial-gradient(circle at 18% 0%, rgba(96, 245, 255, 0.16), transparent 36%),
    radial-gradient(circle at 86% 26%, rgba(255, 79, 216, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.42), rgba(5, 7, 10, 0.96));
  padding: clamp(86px, 8vw, 122px) max(24px, calc((100vw - 1180px) / 2));
}

.company-proof::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 245, 255, 0.28), rgba(255, 79, 216, 0.16), transparent);
  pointer-events: none;
}

.company-proof__intro {
  min-width: 0;
  display: grid;
  align-content: center;
}

.company-proof__intro h2 {
  max-width: 760px;
  margin: 0;
  color: var(--v2-ink);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  text-wrap: balance;
}

.company-proof__intro > p:not(.kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--v2-dim);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.48;
}

.company-proof__signals {
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: clamp(26px, 3vw, 34px) 0 0;
  padding: 0;
  list-style: none;
}

.company-proof__signals li {
  min-width: 0;
  border-top: 1px solid rgba(96, 245, 255, 0.2);
  padding-top: 10px;
  color: rgba(238, 250, 255, 0.82);
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.92vw, 12px);
  font-weight: 650;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.company-proof__signals span {
  display: block;
  margin-bottom: 5px;
  color: var(--v2-cyan);
  font-size: 10px;
}

.company-proof__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 3.4vw, 40px);
}

.company-proof__panel {
  position: relative;
  min-width: 0;
  display: grid;
  align-content: center;
  overflow: hidden;
  border: 1px solid rgba(96, 245, 255, 0.16);
  border-radius: var(--v2-radius);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.08), rgba(255, 79, 216, 0.035)),
    rgba(4, 9, 13, 0.58);
  box-shadow: 0 24px 82px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: clamp(24px, 3vw, 34px);
  backdrop-filter: blur(16px);
}

.company-proof__panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--v2-cyan), rgba(255, 79, 216, 0.72), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.company-proof__identity {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 2vw, 24px);
  align-items: center;
  margin-bottom: clamp(18px, 2.2vw, 26px);
}

.company-proof__identity img {
  width: clamp(66px, 5.2vw, 86px);
  height: clamp(66px, 5.2vw, 86px);
  object-fit: contain;
  opacity: 0.96;
  filter: brightness(0) invert(1) drop-shadow(0 0 22px rgba(96, 245, 255, 0.22));
}

.v2-footer__brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  opacity: 0.94;
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(96, 245, 255, 0.14));
}

.company-proof__identity span,
.company-proof__data dt,
.v2-footer__brand span,
.v2-footer__meta {
  color: var(--v2-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.25;
  text-transform: uppercase;
}

.company-proof__identity strong {
  display: block;
  margin-top: 5px;
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  text-wrap: balance;
}

.company-proof__data {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 0;
}

.company-proof__data div {
  min-width: 0;
  display: grid;
  gap: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.company-proof__data div:nth-child(3),
.company-proof__data div:nth-child(4) {
  grid-column: 1 / -1;
}

.company-proof__data dd {
  margin: 0;
  color: rgba(238, 250, 255, 0.82);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.company-proof__data a {
  color: var(--v2-ink);
  text-decoration-color: rgba(96, 245, 255, 0.42);
}

.v2-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 10px 32px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(96, 245, 255, 0.04), transparent 46%, rgba(255, 79, 216, 0.035)),
    #05070a;
  padding: 26px max(24px, calc((100vw - 1180px) / 2)) 30px;
  color: var(--v2-muted);
}

.v2-footer p {
  margin: 0;
}

.v2-footer__brand {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.v2-footer__brand p {
  display: grid;
  gap: 3px;
}

.v2-footer__brand strong {
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.v2-footer__meta {
  grid-column: 1;
  grid-row: 2;
  opacity: 0.68;
}

.v2-footer nav {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}

.v2-footer a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--v2-radius-xs);
  background: rgba(255, 255, 255, 0.025);
  color: var(--v2-dim);
  padding: 0 11px;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.v2-footer a:hover,
.v2-footer a:focus-visible {
  border-color: rgba(96, 245, 255, 0.34);
  background: rgba(96, 245, 255, 0.08);
  color: var(--v2-ink);
}

@media (max-width: 1360px) {
  .command-bar {
    grid-template-columns: minmax(124px, auto) minmax(0, 1fr) auto;
    gap: clamp(10px, 1.35vw, 18px);
  }

  .command-brand span {
    display: none;
  }

  .experience-deck a,
  .nav-group-trigger {
    padding-inline: clamp(6px, 0.7vw, 10px);
    font-size: 11px;
  }

  .command-phone {
    padding-inline: 10px;
  }

  .command-bar .command-cta {
    padding-inline: 14px;
  }
}

@media (max-width: 1180px) {
  .command-phone {
    display: none;
  }
}

.reveal {
  will-change: transform, opacity;
}

[data-motion-scene] {
  position: relative;
  isolation: isolate;
  --motion-progress: 0;
  --pointer-x: 50%;
  --pointer-y: 50%;
}

[data-motion-scene]:not(.command-bar)::before {
  content: none;
  display: none;
}

[data-motion-scene].is-scene-visible:not(.command-bar)::before,
[data-motion-scene]:not(.command-bar):hover::before {
  opacity: 0;
}

[data-motion-layer] {
  will-change: transform, opacity;
}

.motion-ready .command-bar {
  animation: commandBarBoot 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.aurea-function-console::after,
.page-hero::after,
.case-hero-v2::after,
.brief-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.26;
  background: linear-gradient(180deg, transparent 0%, rgba(96, 245, 255, 0.18) 50%, transparent 100%);
  transform: translateY(-100%);
}

.motion-ready .aurea-function-console::after,
.motion-ready .page-hero::after,
.motion-ready .case-hero-v2::after,
.motion-ready .brief-stage::before {
  animation: sceneBootScan 1.2s 0.24s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero-infographic-stage {
  transform-style: preserve-3d;
}

.hero-infographic-stage .motion-scan {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(96, 245, 255, 0.38) 48%, rgba(255, 79, 216, 0.18) 52%, transparent 100%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-110%);
  mix-blend-mode: screen;
}

.aurea-function-console.is-switching .hero-infographic-stage .motion-scan {
  animation: hudModuleScan 0.72s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.aurea-function-console.is-switching .hero-function-strip {
  box-shadow: var(--v2-shadow), 0 0 42px rgba(96, 245, 255, 0.2);
}

.orbit-node {
  animation: nodeFloat 4.8s ease-in-out infinite;
}

.node-b,
.node-d {
  animation-delay: -1.7s;
}

.voice-panel,
.nfc-terminal,
.intel-panel {
  animation: panelPulse 3.2s ease-in-out infinite;
}

.gateway-card,
.signal-card,
.system-node,
.usecase-tile,
.sequence-panel,
.timeline-step,
.wizard-form,
.split-panel {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.signal-card,
.system-node,
.usecase-tile,
.sequence-panel,
.timeline-step {
  padding-bottom: 58px;
}

.gateway-card::before,
.signal-card::before,
.system-node::before,
.usecase-tile::before,
.sequence-panel::before,
.timeline-step::before,
.wizard-form::before,
.split-panel::before {
  content: none;
  display: none;
}

.gateway-card:hover,
.gateway-card:focus-visible,
.signal-card:hover,
.system-node:hover,
.usecase-tile:hover,
.sequence-panel:hover,
.timeline-step.is-motion-active,
.wizard-form:focus-within,
.split-panel:hover {
  border-color: rgba(96, 245, 255, 0.38);
  box-shadow: var(--v2-shadow), 0 0 44px rgba(96, 245, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gateway-card:hover,
.gateway-card:focus-visible {
  transform: translateY(-8px) scale(1.012);
}

.signal-card:hover,
.system-node:hover,
.usecase-tile:hover,
.sequence-panel:hover,
.timeline-step.is-motion-active,
.split-panel:hover {
  transform: translateY(-6px);
}

.gateway-card:hover::before,
.gateway-card:focus-visible::before,
.signal-card:hover::before,
.system-node:hover::before,
.usecase-tile:hover::before,
.sequence-panel:hover::before,
.timeline-step.is-motion-active::before,
.wizard-form:focus-within::before,
.split-panel:hover::before {
  opacity: 0;
}

.gateway-card:hover img,
.gateway-card:focus-visible img,
.case-gallery-v2 picture:hover img,
.split-cinema:hover > picture img {
  transform: scale(1.12);
}

.signal-card::after,
.system-node::after,
.usecase-tile::after,
.sequence-panel::after,
.timeline-step::after {
  content: attr(data-motion-counter);
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 1;
  color: rgba(96, 245, 255, 0.34);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
}

.signal-card > *,
.system-node > *,
.usecase-tile > *,
.sequence-panel > *,
.timeline-step > *,
.wizard-form > *,
.split-panel > * {
  position: relative;
  z-index: 1;
}

.motion-meter {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  color: rgba(96, 245, 255, 0.72);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  pointer-events: none;
}

.motion-meter i {
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--v2-cyan), var(--v2-pink), transparent);
  box-shadow: 0 0 18px rgba(96, 245, 255, 0.26);
}

.motion-meter em {
  font-style: normal;
}

.signal-card.is-motion-active,
.system-node.is-motion-active,
.usecase-tile.is-motion-active,
.sequence-panel.is-motion-active {
  border-color: rgba(96, 245, 255, 0.46);
}

.system-map::before {
  content: "";
  position: absolute;
  left: min(5vw, 64px);
  right: min(5vw, 64px);
  top: 50%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 245, 255, 0.34), rgba(255, 79, 216, 0.22), transparent);
  transform: scaleX(var(--motion-progress));
  transform-origin: left center;
}

.system-map .system-node {
  overflow: hidden;
}

.system-map .system-node::before {
  content: none;
  display: none;
}

.tech-pitch {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 8px 0 118px;
}

.tech-pitch__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 28px;
}

.tech-pitch__intro .kicker {
  grid-column: 1 / -1;
  margin: 0;
}

.tech-pitch__intro h2 {
  margin: 0;
  max-width: 780px;
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.96;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.tech-pitch__intro p:not(.kicker) {
  margin: 0;
  color: var(--v2-dim);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.62;
  overflow-wrap: break-word;
}

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

.tech-stack-card {
  position: relative;
  min-width: 0;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-lg);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.08), rgba(255, 79, 216, 0.04)),
    rgba(6, 11, 16, 0.72);
  padding: 26px;
  box-shadow: var(--v2-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.tech-stack-card::before {
  content: none;
  display: none;
}

.tech-stack-card::after {
  content: attr(data-motion-counter);
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 1;
  color: rgba(96, 245, 255, 0.34);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
}

.tech-stack-card:hover,
.tech-stack-card.is-motion-active {
  transform: translateY(-6px);
  border-color: rgba(96, 245, 255, 0.38);
  box-shadow: var(--v2-shadow), 0 0 44px rgba(96, 245, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tech-stack-card:hover::before,
.tech-stack-card.is-motion-active::before {
  opacity: 0;
}

.tech-stack-card > * {
  position: relative;
  z-index: 1;
}

.tech-stack-card span {
  color: var(--v2-cyan);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.tech-stack-card h3 {
  margin: 18px 0 0;
  color: var(--v2-ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.02;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.tech-stack-card p {
  margin: 18px 0 0;
  color: var(--v2-dim);
  font-size: 15px;
  line-height: 1.58;
  overflow-wrap: break-word;
}

.tech-pitch__summary {
  max-width: 980px;
  margin: 28px 0 0;
  border-left: 2px solid rgba(96, 245, 255, 0.58);
  padding: 6px 0 6px 22px;
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: clamp(23px, 3vw, 38px);
  line-height: 1.14;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.timeline-cinema,
.case-sequence {
  position: relative;
}

.timeline-cinema::before,
.case-sequence::before {
  content: "";
  position: absolute;
  left: 47px;
  top: 110px;
  bottom: 110px;
  width: 1px;
  background: rgba(255, 255, 255, 0.11);
}

.timeline-cinema::after,
.case-sequence::after {
  content: "";
  position: absolute;
  left: 47px;
  top: 110px;
  width: 1px;
  height: calc((100% - 220px) * var(--motion-progress));
  background: linear-gradient(180deg, var(--v2-cyan), var(--v2-pink), var(--v2-amber));
  box-shadow: 0 0 24px rgba(96, 245, 255, 0.28);
}

.timeline-step,
.sequence-panel {
  overflow: hidden;
}

.timeline-step.is-motion-active span,
.sequence-panel.is-motion-active span {
  color: var(--v2-amber);
}

.case-gallery-v2 picture {
  position: relative;
}

.case-gallery-v2 picture::after {
  content: none;
  display: none;
}

.case-gallery-v2.is-scene-visible picture::after,
.case-gallery-v2 picture:hover::after {
  animation: none;
}

.case-gallery-v2.is-scene-visible picture:nth-child(2)::after {
  animation-delay: 0.12s;
}

.wizard-progress {
  box-shadow: 0 0 26px rgba(96, 245, 255, 0.1);
}

.wizard-progress span {
  box-shadow: 0 0 22px rgba(96, 245, 255, 0.34);
}

.wizard-step.is-active {
  animation: wizardStepIn 0.46s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.wizard-form label.is-invalid input,
.wizard-form label.is-invalid select,
.wizard-form label.is-invalid textarea {
  border-color: rgba(255, 125, 155, 0.82);
  box-shadow: 0 0 0 3px rgba(255, 125, 155, 0.12);
}

.experience-deck a,
.nav-group-trigger {
  padding: 0 clamp(8px, 1vw, 14px);
  font-size: 12px;
}

body.is-lightbox-open {
  overflow: hidden;
}

.gallery-experience,
.video-gallery,
.voice-stage,
.music-stage,
.media-cta-band {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}

.gallery-toolbar,
.video-gallery__head,
.sound-console,
.voice-console,
.media-cta-card,
.media-rights-card,
.transcript-panel,
.sound-state-grid {
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-lg);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.08), rgba(255, 79, 216, 0.035)),
    rgba(6, 11, 16, 0.68);
  box-shadow: var(--v2-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.gallery-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: 28px;
}

.gallery-toolbar h2,
.voice-head h2,
.sound-controls h2,
.media-cta-card h2 {
  min-width: 0;
  margin: 0;
  color: var(--v2-ink);
  font-size: clamp(28px, 3.7vw, 54px);
  line-height: 1.02;
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: balance;
}

.gallery-stats {
  min-width: 178px;
  display: grid;
  justify-items: end;
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.gallery-stats span {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.9;
}

.gallery-mode-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.gallery-mode-tabs a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--v2-radius-xs);
  background: rgba(255, 255, 255, 0.055);
  color: var(--v2-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  padding: 0 12px;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.gallery-mode-tabs a:hover,
.gallery-mode-tabs a:focus-visible,
.gallery-mode-tabs a[aria-current="page"] {
  border-color: rgba(96, 245, 255, 0.44);
  background: rgba(96, 245, 255, 0.12);
  color: var(--v2-ink);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 34px;
}

.gallery-filters button,
.voice-pack-switch button,
.voice-actions button,
.voice-question-stack button,
.sound-states button,
.sound-tracks button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--v2-radius-xs);
  background: rgba(255, 255, 255, 0.055);
  color: var(--v2-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gallery-filters button {
  min-height: 40px;
  padding: 0 14px;
}

.gallery-filters button:hover,
.gallery-filters button.is-active,
.voice-pack-switch button:hover,
.voice-pack-switch button.is-active,
.voice-actions button:hover,
.voice-actions button.is-active,
.voice-question-stack button:hover,
.voice-question-stack button.is-active,
.sound-states button:hover,
.sound-states button.is-active,
.sound-tracks button:hover,
.sound-tracks button.is-active {
  border-color: rgba(96, 245, 255, 0.44);
  background: rgba(96, 245, 255, 0.12);
  color: var(--v2-ink);
  box-shadow: 0 0 28px rgba(96, 245, 255, 0.1);
}

.gallery-section {
  margin-top: 76px;
}

.gallery-section:first-of-type {
  margin-top: 0;
}

.gallery-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.gallery-section-head h3 {
  margin: 0;
  color: var(--v2-ink);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
}

.gallery-section-head span {
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  grid-column: span 2;
  aspect-ratio: 16 / 10;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--v2-radius);
  background: rgba(3, 5, 8, 0.86);
  color: var(--v2-ink);
  padding: 0;
  cursor: pointer;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gallery-card[data-orientation="vertical"] {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: 2 / 3;
}

.gallery-card--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7.2;
}

.gallery-card picture {
  display: block;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  background: #05070a;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: none;
  filter: none;
}

.gallery-card::before,
.gallery-card::after {
  content: none;
  display: none;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: none;
  filter: none;
}

.gallery-card span {
  display: none;
}

.gallery-card strong {
  display: block;
  padding: 11px 12px 12px;
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.03;
  text-align: left;
  overflow-wrap: break-word;
}

.gallery-card[data-orientation="vertical"] strong {
  font-size: clamp(14px, 1vw, 17px);
}

.gallery-card--wide strong {
  font-size: clamp(20px, 2.2vw, 34px);
  padding: 14px 16px 16px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
  background: rgba(1, 2, 4, 0.98);
  padding: 24px 28px 18px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox figure {
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  margin: 0;
}

.gallery-lightbox picture {
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
}

.gallery-lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.gallery-lightbox figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
  color: var(--v2-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.gallery-lightbox figcaption strong {
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  text-transform: none;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 7, 10, 0.72);
  color: var(--v2-ink);
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.lightbox-close {
  position: absolute;
  right: 24px;
  top: 22px;
  z-index: 2;
  width: 42px;
  height: 42px;
  font-size: 26px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  font-size: 34px;
  transform: translateY(-50%);
}

.lightbox-nav--prev {
  left: 18px;
}

.lightbox-nav--next {
  right: 18px;
}

.lightbox-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(54px, 1fr));
  gap: 6px;
  max-height: 124px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
}

.lightbox-thumbs button {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: #05070a;
  padding: 0;
  opacity: 0.55;
  cursor: pointer;
}

.lightbox-thumbs button.is-active {
  border-color: rgba(255, 255, 255, 0.88);
  opacity: 1;
}

.lightbox-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #05070a;
}

.video-gallery {
  padding-top: 10px;
  scroll-margin-top: 92px;
}

.video-gallery__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 28px;
  align-items: end;
  padding: 28px;
}

.video-gallery__head h2 {
  margin: 0;
  color: var(--v2-ink);
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1;
  text-wrap: balance;
}

.video-gallery__head p:not(.kicker) {
  margin: 0;
  color: var(--v2-dim);
  font-size: 17px;
  line-height: 1.48;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, auto);
  gap: 12px;
  margin-top: 18px;
}

.video-gallery-card {
  position: relative;
  min-width: 0;
  grid-column: span 4;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--v2-radius-sm);
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.06), rgba(255, 79, 216, 0.035)),
    rgba(4, 8, 12, 0.8);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
}

.video-gallery-card--wide,
.video-gallery-card--conference {
  grid-column: span 6;
}

.video-gallery-card--tall {
  grid-row: span 2;
}

.video-gallery-card__media {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: var(--video-poster, none) center / cover no-repeat #03070b;
}

.video-gallery-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(3, 4, 6, 0.42));
}

.video-gallery-card video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  background: #03070b;
}

.video-gallery-card video[data-video-autoplay="true"] {
  opacity: 0;
  transition: opacity 320ms ease, transform 420ms ease, filter 420ms ease;
}

.video-gallery-card video[data-video-autoplay="true"].is-video-ready {
  opacity: 1;
}

.video-gallery-card:hover video[data-video-autoplay="true"],
.video-gallery-card:focus-within video[data-video-autoplay="true"] {
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.035);
}

.video-gallery-card__copy {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.video-gallery-card__copy span {
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 760;
  line-height: 1.15;
  text-transform: uppercase;
}

.video-gallery-card__copy h3 {
  margin: 0;
  color: var(--v2-ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.02;
  text-wrap: balance;
}

.video-gallery-card__copy p {
  margin: 0;
  color: var(--v2-dim);
  font-size: 14px;
  line-height: 1.42;
}

.voice-stage,
.music-stage {
  display: grid;
  gap: 24px;
}

.voice-console {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 18px;
  padding: 24px;
}

.voice-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.voice-status {
  border: 1px solid rgba(96, 245, 255, 0.28);
  border-radius: var(--v2-radius-xs);
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
  padding: 9px 10px;
  text-transform: uppercase;
}

.voice-waveform {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 26px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--v2-radius);
  background:
    radial-gradient(circle at center, rgba(96, 245, 255, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.035);
}

.voice-waveform i {
  width: 6px;
  height: 34px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--v2-cyan), var(--v2-pink));
  box-shadow: 0 0 20px rgba(96, 245, 255, 0.22);
  animation: voiceBars 1.1s ease-in-out infinite;
}

.voice-waveform i:nth-child(2n) { animation-delay: -0.2s; }
.voice-waveform i:nth-child(3n) { animation-delay: -0.42s; }
.voice-waveform i:nth-child(4n) { animation-delay: -0.64s; }

.voice-console audio {
  width: 100%;
  filter: invert(1) hue-rotate(145deg) saturate(1.5);
}

.media-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--v2-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.35;
}

.media-status[data-state="ok"] {
  color: var(--v2-cyan);
}

.media-status[data-state="error"] {
  color: #ffb5c9;
}

.media-rights-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-color: rgba(255, 138, 61, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 138, 61, 0.1), rgba(96, 245, 255, 0.045)),
    rgba(6, 11, 16, 0.62);
  padding: 18px 22px;
}

.media-rights-card span {
  color: var(--v2-gold);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.15;
  text-transform: uppercase;
}

.media-rights-card strong {
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.04;
}

.media-rights-card p {
  margin: 0;
  color: rgba(247, 251, 255, 0.72);
  font-size: 14px;
  line-height: 1.42;
}

.voice-time {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--v2-muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.voice-progress {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  margin: 10px 0 18px;
}

.voice-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--v2-cyan), var(--v2-pink));
  box-shadow: 0 0 24px rgba(96, 245, 255, 0.28);
}

.voice-actions,
.voice-pack-switch,
.voice-question-stack,
.sound-states,
.sound-tracks {
  display: grid;
  gap: 10px;
}

.voice-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.voice-actions button,
.voice-pack-switch button,
.voice-question-stack button,
.sound-states button,
.sound-tracks button {
  min-height: 44px;
  padding: 10px 12px;
  text-align: left;
  overflow-wrap: anywhere;
  white-space: normal;
}

.voice-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.voice-question-stack button {
  min-height: 76px;
  line-height: 1.25;
  text-transform: none;
}

.transcript-panel {
  padding: 28px;
}

.transcript-copy {
  color: var(--v2-dim);
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.58;
  overflow-wrap: break-word;
  hyphens: auto;
}

.transcript-word {
  color: rgba(247, 251, 255, 0.44);
  transition: color 120ms ease, text-shadow 120ms ease;
}

.transcript-word.is-lit {
  color: var(--v2-ink);
  text-shadow: 0 0 18px rgba(96, 245, 255, 0.16);
}

.sound-console {
  --state-accent: var(--v2-cyan);
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
  padding: 24px;
}

.sound-core {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--state-accent) 36%, transparent);
  border-radius: var(--v2-radius-lg);
  background:
    radial-gradient(circle at center, color-mix(in srgb, var(--state-accent) 24%, transparent), transparent 46%),
    rgba(1, 5, 8, 0.72);
}

.sound-core::before,
.sound-core::after {
  content: "";
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--state-accent) 34%, transparent);
  border-radius: 50%;
  pointer-events: none;
}

.sound-core::before {
  width: 72%;
  height: 72%;
  animation: orbitPulse 5s ease-in-out infinite;
}

.sound-core::after {
  width: 46%;
  height: 46%;
  animation: orbitPulse 3.8s -1.2s ease-in-out infinite;
}

.sound-core canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sound-core-label {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.sound-core-label span {
  color: var(--state-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.sound-core-label strong {
  max-width: 240px;
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  line-height: 1;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.sound-controls {
  min-width: 0;
}

.player-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 18px;
}

.range-label {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--v2-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.range-label input {
  width: 100%;
  accent-color: var(--state-accent, var(--v2-cyan));
}

.sound-state-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
  padding: 24px;
}

.sound-states button {
  min-height: 96px;
  border-color: color-mix(in srgb, var(--state-accent, var(--v2-cyan)) 24%, rgba(255, 255, 255, 0.12));
}

.sound-states button strong,
.sound-tracks button strong {
  display: block;
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.06;
  text-transform: none;
  overflow-wrap: break-word;
  hyphens: auto;
}

.sound-states button span,
.sound-tracks button span {
  display: block;
  margin-top: 8px;
  color: var(--v2-muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}

.media-cta-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 20px;
}

.media-cta-card {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 22px;
  padding: 32px;
}

.media-cta-card span {
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(0.96) rotate(0deg);
    opacity: 0.62;
  }

  50% {
    transform: scale(1.03) rotate(18deg);
    opacity: 1;
  }
}

@keyframes voiceBars {
  0%,
  100% {
    transform: scaleY(0.38);
    opacity: 0.58;
  }

  50% {
    transform: scaleY(1.62);
    opacity: 1;
  }
}

@keyframes signalRun {
  0% {
    transform: translateX(-20px);
    opacity: 0.18;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(20px);
    opacity: 0.18;
  }
}

@keyframes lightSweep {
  0%,
  100% {
    transform: scaleY(0.86);
    filter: hue-rotate(0deg);
    opacity: 0.72;
  }

  50% {
    transform: scaleY(1.04);
    filter: hue-rotate(20deg);
    opacity: 1;
  }
}

@keyframes routeScan {
  0% {
    transform: translateX(-110%);
    opacity: 0;
  }

  18%,
  72% {
    opacity: 1;
  }

  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}

@keyframes commandBarBoot {
  0% {
    opacity: 0;
    transform: translateY(-18px);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes sceneBootScan {
  0% {
    opacity: 0;
    transform: translateY(-105%);
  }

  20%,
  58% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateY(105%);
  }
}

@keyframes hudModuleScan {
  0% {
    opacity: 0;
    transform: translateX(-110%);
  }

  16%,
  68% {
    opacity: 0.78;
  }

  100% {
    opacity: 0;
    transform: translateX(110%);
  }
}

@keyframes hudParticleDrift {
  0% {
    opacity: 0;
    transform: translate3d(-18px, 18px, 0) scale(var(--s, 1));
  }

  24%,
  66% {
    opacity: 0.82;
  }

  100% {
    opacity: 0;
    transform: translate3d(28px, -34px, 0) scale(calc(var(--s, 1) * 1.42));
  }
}

@keyframes hudGridBreathe {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.44;
    transform: scale(1.02);
  }
}

@keyframes hudCoreBreathe {
  0%,
  100% {
    box-shadow: 0 0 54px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 14%, transparent);
    filter: saturate(1);
  }

  50% {
    box-shadow: 0 0 86px color-mix(in srgb, var(--module-color, var(--v2-cyan)) 24%, transparent);
    filter: saturate(1.22);
  }
}

@keyframes hudSignalSweep {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  34%,
  68% {
    opacity: 0.85;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes heroProgressScan {
  0%,
  52% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes heroSignalBreathe {
  0%,
  100% {
    opacity: 0.42;
    transform: skewY(-4deg) scaleX(0.98);
  }

  50% {
    opacity: 0.76;
    transform: skewY(-4deg) scaleX(1.02);
  }
}

@keyframes heroSignalRun {
  0%,
  42% {
    opacity: 0.28;
    transform: translateX(-4%) scaleX(0.82);
  }

  72% {
    opacity: 0.8;
  }

  100% {
    opacity: 0.34;
    transform: translateX(4%) scaleX(1);
  }
}

@keyframes orchestrationSignal {
  0% {
    opacity: 0;
    transform: translate(-10%, -50%) scaleX(0.4);
  }

  18%,
  76% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
    transform: translate(470%, -50%) scaleX(1);
  }
}

@keyframes heroNodeHalo {
  0%,
  100% {
    opacity: 0.38;
    transform: translate(-50%, -50%) scale(0.78);
  }

  50% {
    opacity: 0.78;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes hudPulseDot {
  0%,
  100% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0.72);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.18);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes panelPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(96, 245, 255, 0);
  }

  50% {
    box-shadow: 0 0 30px rgba(96, 245, 255, 0.1);
  }
}

@keyframes imageScan {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  18%,
  72% {
    opacity: 0.68;
  }

  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes aureaVideoScan {
  0%,
  42% {
    opacity: 0;
    transform: translateX(-110%);
  }

  58% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translateX(110%);
  }
}

@keyframes wizardStepIn {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .command-bar {
    grid-template-columns: minmax(138px, auto) minmax(0, 1fr) auto;
    gap: 12px;
    padding: 8px 14px;
  }

  .experience-deck {
    grid-column: auto;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  }

  .nav-top-link,
  .nav-group-trigger {
    min-width: 88px;
  }

  .nav-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 68px;
    width: auto;
    transform: translateY(10px) scale(0.985);
  }

  .nav-group.is-open .nav-menu,
  .nav-group:hover .nav-menu,
  .nav-group:focus-within .nav-menu {
    transform: translateY(0) scale(1);
  }

  .nav-menu-shell {
    max-height: calc(100svh - 148px);
    overflow-y: auto;
  }

  .command-brand span {
    display: none;
  }

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

  .tech-pitch__intro {
    grid-template-columns: 1fr;
  }

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

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

  .usecase-tile,
  .usecase-tile:nth-child(1),
  .usecase-tile:nth-child(2) {
    grid-column: span 1;
  }

  .brief-shell {
    grid-template-columns: 1fr;
  }

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

  .gallery-card,
  .gallery-card:nth-child(7n + 1),
  .gallery-card[data-orientation="vertical"] {
    min-height: 0;
  }

  .voice-console,
  .sound-console,
  .sound-state-grid,
  .media-cta-band,
  .company-proof,
  .video-gallery__head {
    grid-template-columns: 1fr;
  }

  .video-gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .video-gallery-card,
  .video-gallery-card--tall {
    grid-column: span 3;
    grid-row: auto;
  }

  .video-gallery-card--wide,
  .video-gallery-card--conference {
    grid-column: 1 / -1;
  }

  .company-proof {
    padding: 92px max(24px, calc((100vw - 1180px) / 2));
  }

  .function-grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3.2svh, 28px);
    padding: clamp(106px, 12svh, 136px) 0 clamp(82px, 10svh, 110px);
  }

  .hero-infographic-stage {
    min-height: clamp(250px, 32svh, 330px);
  }

  .hero-infographic-stage .infographic {
    padding: 16px;
  }

  .hud-module {
    gap: 14px;
    padding: 16px;
  }

  .hud-topline,
  .hud-dock,
  .hud-metrics {
    font-size: 10px;
  }

  .persona-core,
  .voice-orb,
  .hud-module .nfc-token {
    width: 116px;
    height: 116px;
  }

  .persona-core strong {
    font-size: 24px;
  }

  .persona-node {
    min-width: 98px;
    padding: 9px 10px;
  }

  .voice-hud-grid,
  .nfc-handoff {
    grid-template-columns: 1fr;
  }

  .nfc-signal {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
  }

  .nfc-signal span {
    grid-column: 1 / -1;
  }

  .light-stage-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .light-pulse-card {
    grid-column: 1 / -1;
    min-height: 120px;
  }

  .light-stage-map .light-column {
    min-height: 140px;
  }
}

@media (min-width: 1121px) and (max-height: 820px) {
  .aurea-function-console {
    --hero-top-space: clamp(82px, 11svh, 104px);
    --hero-bottom-space: clamp(72px, 10svh, 96px);
    --hero-strip-offset: 14px;
  }

  .function-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(410px, 0.6fr);
    gap: clamp(24px, 4vw, 54px);
  }

  .function-copy h1 {
    font-size: clamp(40px, 5vw, 68px);
  }

  .hero-slide-copy {
    margin-top: 14px;
  }

  .hero-slide-copy h2 {
    margin-top: 10px;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.04;
  }

  .hero-line {
    margin-top: 14px;
    font-size: 16px;
  }

  .hero-commands {
    margin-top: 22px;
  }

  .hero-infographic-stage {
    min-height: clamp(310px, calc(100dvh - 260px), 400px);
  }

  .hero-orchestration {
    bottom: calc(var(--hero-strip-offset, 14px) + var(--consent-banner-offset, 0px) + 16px);
  }

  .hero-orchestration::before,
  .hero-orchestration__signal {
    top: 14px;
  }

  .hero-flow-node {
    min-height: 54px;
    padding: 27px 6px 0;
  }

  .hero-flow-node::before,
  .hero-flow-node::after {
    top: 14px;
  }

  .hero-flow-node em {
    display: none;
  }
}

@media (max-width: 760px) {
  .command-bar {
    top: 0;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 10px 8px;
  }

  .command-bar > * {
    min-width: 0;
  }

  .command-brand {
    justify-content: center;
    min-height: 34px;
  }

  .command-brand img {
    width: 116px;
  }

  .command-actions {
    display: none;
  }

  .aurea-function-console {
    --hero-strip-offset: 10px;
    --hero-top-space: clamp(132px, 15svh, 150px);
    --hero-bottom-space: clamp(88px, 11svh, 106px);
  }

  .experience-deck {
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    gap: 2px;
    padding-bottom: 1px;
  }

  .experience-deck a,
  .nav-group-trigger {
    min-height: 40px;
    font-size: 11px;
    padding: 0 8px;
  }

  .nav-top-link,
  .nav-group-trigger {
    min-width: 72px;
  }

  .nav-top-link small,
  .nav-group-trigger small {
    font-size: 7px;
  }

  .nav-menu {
    left: 10px;
    right: 10px;
    top: 96px;
  }

  .nav-menu-shell {
    gap: 7px;
    padding: 8px;
  }

  .nav-menu-card {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 72px;
    gap: 10px;
  }

  .nav-menu-thumb {
    height: 52px;
  }

  .nav-menu-copy strong {
    font-size: 17px;
  }

  .nav-menu-copy small {
    font-size: 11px;
  }

  .function-grid {
    width: min(100% - 32px, 1180px);
    min-height: clamp(620px, 94svh, 820px);
    gap: clamp(12px, 2.6svh, 20px);
    align-content: start;
    padding: var(--hero-top-space) 0 var(--hero-bottom-space);
  }

  .function-copy h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .hero-slide-copy h2 {
    max-width: min(100%, 340px);
    margin-top: 9px;
    font-size: clamp(18px, 5.2vw, 21px);
    line-height: 1.12;
    overflow-wrap: anywhere;
    text-wrap: normal;
  }

  .hero-slide-copy {
    max-width: 100%;
    margin-top: 12px;
  }

  .hero-slide-label {
    min-height: 22px;
    font-size: 10px;
  }

  .hero-line {
    max-width: 100%;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.42;
  }

  .hero-support {
    width: 100%;
    gap: 7px;
    margin-top: 18px;
  }

  .hero-support span {
    min-height: 34px;
    flex: 1 1 142px;
    justify-content: center;
    padding: 8px 9px;
    font-size: 10px;
    text-align: center;
  }

  .hero-commands {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-orchestration {
    display: none;
  }

  .hero-infographic-stage {
    min-height: clamp(210px, 29svh, 300px);
  }

  .hero-infographic-stage .infographic {
    padding: 12px;
  }

  .hud-module {
    gap: 12px;
    padding: 12px;
  }

  .hud-module::before,
  .hud-module::after {
    inset: 10px;
  }

  .hud-topline,
  .hud-dock,
  .hud-metrics {
    gap: 6px;
    font-size: 9px;
  }

  .hud-topline {
    align-items: start;
    flex-direction: column;
  }

  .hud-dock,
  .hud-metrics,
  .hud-module--persona .hud-dock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hud-dock span,
  .hud-metrics span {
    min-height: 34px;
    padding: 4px;
  }

  .hud-ring--outer {
    width: min(94%, 300px);
  }

  .hud-ring--inner {
    width: min(62%, 190px);
  }

  .persona-core,
  .voice-orb,
  .hud-module .nfc-token {
    width: 102px;
    height: 102px;
  }

  .persona-core strong {
    font-size: 21px;
  }

  .persona-node {
    min-width: 82px;
    padding: 7px 8px;
  }

  .node-a { top: 11%; left: 8%; }
  .node-b { top: 18%; right: 7%; }
  .node-c { bottom: 14%; left: 8%; }
  .node-d { right: 8%; bottom: 18%; }

  .infographic--intelligence {
    padding: 28px;
  }

  .voice-hud-grid,
  .nfc-handoff,
  .intel-dashboard {
    gap: 10px;
  }

  .voice-wave {
    height: 100px;
    gap: 7px;
  }

  .voice-wave i {
    width: 5px;
  }

  .voice-script,
  .handoff-card,
  .light-pulse-card,
  .intel-dashboard .intel-panel {
    padding: 12px;
  }

  .voice-script strong,
  .handoff-card strong,
  .light-pulse-card strong,
  .intel-dashboard strong {
    font-size: 24px;
    line-height: 1;
  }

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

  .light-stage-map .light-column {
    min-height: 96px;
  }

  .light-pulse-card {
    min-height: 96px;
  }

  .hud-module .light-timeline {
    gap: 5px;
  }

  .hud-module .light-timeline span {
    font-size: 8px;
    padding-top: 7px;
  }

  .intel-dashboard {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .intel-dashboard .intel-panel {
    min-height: 86px;
  }

  .intel-dashboard .intel-panel--wide {
    grid-column: auto;
  }

  .intel-dashboard .intel-panel--wide strong {
    font-size: 28px;
  }

  .hero-function-strip {
    right: 12px;
    top: 112px;
    width: auto;
    display: inline-flex;
    gap: 7px;
    padding: 7px 8px;
  }

  .hero-slider-status {
    display: none;
    min-width: 0;
    border-right: 0;
    border-bottom: 0;
    padding: 0;
  }

  .hero-function-tabs {
    display: flex;
    gap: 6px;
    overflow-x: visible;
  }

  .hero-tab {
    width: 20px;
    height: 20px;
    min-height: 20px;
    padding: 0;
    font-size: 0;
  }

  body.v2-page .consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  body.v2-page .consent-banner__panel {
    width: 100%;
    max-width: calc(100vw - 20px);
    gap: 14px;
    padding: 16px;
  }

  body.v2-page .consent-banner__copy h2 {
    font-size: 24px;
  }

  .cinematic-copy,
  .page-hero-copy,
  .case-hero-copy {
    width: min(100% - 32px, 1180px);
    padding: 138px 0 44px;
  }

  .page-hero--right .page-hero-copy,
  .page-hero--center .page-hero-copy {
    justify-items: start;
    text-align: left;
  }

  .page-hero--right .hero-support,
  .page-hero--center .hero-support {
    justify-content: flex-start;
  }

  .hero-system-panel {
    display: none;
  }

  .cinematic-copy h1,
  .page-hero-copy h1,
  .case-hero-copy h1 {
    font-size: clamp(32px, 10.5vw, 52px);
    line-height: 1.02;
  }

  body[data-page="realizacja"] .case-hero-copy h1 {
    max-width: min(100%, 340px);
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.04;
    text-wrap: normal;
  }

  body[data-page="realizacja"] .case-hero-copy .hero-line,
  body[data-page="realizacja"] .case-hero-copy .hero-support {
    max-width: min(100%, 340px);
  }

  body[data-page="realizacja"] .case-hero-copy .hero-support span {
    flex: 1 1 100%;
  }

  .gateway-grid,
  .case-gallery-v2 {
    grid-template-columns: 1fr;
  }

  .gateway-card,
  .gateway-card--wide {
    grid-column: span 1;
    min-height: 72svh;
    padding: 32px;
  }

  .gateway-tech-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cinematic-band,
  .system-map,
  .tech-pitch,
  .case-vision,
  .usecase-wall,
  .timeline-cinema,
  .case-sequence,
  .gallery-experience,
  .voice-stage,
  .music-stage,
  .media-cta-band {
    width: min(100% - 32px, 1180px);
    padding: 72px 0;
  }

  .company-proof {
    width: 100%;
    padding: 72px 16px;
  }

  .company-proof::after {
    left: 16px;
    right: 16px;
  }

  .company-proof__signals,
  .company-proof__data {
    grid-template-columns: 1fr;
  }

  .company-proof__panel {
    padding: 22px;
  }

  .company-proof__identity {
    align-items: flex-start;
  }

  .v2-footer {
    grid-template-columns: 1fr;
    padding: 24px 16px 28px;
  }

  .v2-footer__meta,
  .v2-footer nav {
    grid-column: 1;
    grid-row: auto;
  }

  .v2-footer nav {
    justify-content: flex-start;
  }

  .gallery-toolbar,
  .gallery-section-head,
  .voice-head,
  .gallery-lightbox figcaption {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
    justify-items: start;
  }

  .gallery-stats {
    justify-items: start;
  }

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

  .gallery-card,
  .gallery-card:nth-child(7n + 1),
  .gallery-card[data-orientation="vertical"] {
    min-height: 0;
  }

  .gallery-card,
  .gallery-card--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 10.5;
  }

  .gallery-card[data-orientation="vertical"] {
    grid-column: span 1;
    grid-row: span 2;
    aspect-ratio: 2 / 3.15;
  }

  .gallery-card--wide strong {
    font-size: clamp(19px, 6vw, 30px);
  }

  .video-gallery {
    width: min(100% - 32px, 1320px);
    padding: 64px 0;
  }

  .video-gallery__head {
    display: block;
    padding: 18px;
  }

  .video-gallery__head p:not(.kicker) {
    margin-top: 16px;
    font-size: 15px;
  }

  .video-gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .video-gallery-card,
  .video-gallery-card--wide,
  .video-gallery-card--tall,
  .video-gallery-card--conference {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .video-gallery-card__media {
    min-height: 250px;
  }

  .gallery-lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    padding: 64px 12px 12px;
  }

  .gallery-lightbox figure {
    height: 100%;
  }

  .lightbox-nav {
    top: auto;
    bottom: 78px;
    width: 42px;
    height: 42px;
    font-size: 30px;
    transform: none;
  }

  .lightbox-nav--prev {
    left: 12px;
  }

  .lightbox-nav--next {
    right: 12px;
  }

  .voice-actions {
    grid-template-columns: 1fr;
  }

  .player-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .voice-console,
  .sound-console,
  .sound-state-grid,
  .transcript-panel,
  .media-rights-card,
  .media-cta-card {
    padding: 18px;
  }

  .media-rights-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sound-core {
    min-height: 320px;
  }

  .signal-grid,
  .system-map,
  .tech-stack-grid,
  .usecase-wall {
    grid-template-columns: 1fr;
  }

  .case-vision__copy h2 {
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.03;
    text-wrap: normal;
  }

  .case-vision__copy p:not(.kicker) {
    font-size: 15px;
    line-height: 1.52;
    text-wrap: normal;
  }

  .case-vision__cards {
    grid-template-columns: 1fr;
  }

  .case-vision__cards article {
    padding: 20px;
  }

  .case-vision__cards strong {
    font-size: clamp(22px, 6vw, 30px);
  }

  .tech-pitch__intro h2 {
    font-size: clamp(32px, 9vw, 46px);
  }

  .tech-stack-card {
    min-height: 0;
    padding: 22px;
  }

  .tech-pitch__summary {
    padding-left: 16px;
  }

  .timeline-step,
  .sequence-panel {
    grid-template-columns: 1fr;
  }

  .split-panel {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
    padding: 24px;
  }

  .case-gallery-v2 picture {
    min-height: 68svh;
  }

  .case-gallery-caption {
    grid-column: span 1;
  }

  .brief-stage {
    padding: 172px 16px 56px;
  }

  .brief-shell {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .brief-intro {
    max-width: 100%;
    min-width: 0;
  }

  .brief-intro h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.04;
    overflow-wrap: anywhere;
    text-wrap: normal;
  }

  .brief-intro p:not(.kicker) {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.48;
    overflow-wrap: anywhere;
    text-wrap: normal;
  }

  .wizard-step {
    grid-template-columns: 1fr;
  }

  .integration-options {
    grid-template-columns: 1fr;
  }

  .wizard-summary div {
    grid-template-columns: 1fr;
  }

  .wizard-actions .v2-button {
    width: 100%;
  }
}

@media (max-width: 760px) and (max-height: 720px) {
  .aurea-function-console {
    --hero-top-space: 106px;
    --hero-bottom-space: 82px;
  }

  .function-grid {
    gap: 10px;
  }

  .kicker {
    margin-bottom: 10px;
  }

  .hero-slide-copy {
    margin-top: 8px;
  }

  .hero-line {
    display: none;
  }

  .hero-commands {
    margin-top: 12px;
  }

  .hero-infographic-stage {
    min-height: 160px;
  }
}

@media (max-width: 1120px) {
  .hero-function-strip {
    left: auto;
    right: 16px;
    top: 112px;
    bottom: auto;
    width: auto;
    display: inline-flex;
    gap: 8px;
    padding: 7px 9px;
    transform: none;
  }

  .hero-slider-status {
    grid-column: auto;
    border-bottom: 0;
    padding: 0 2px 0 0;
  }

  .hero-function-tabs {
    grid-column: auto;
    display: flex;
    gap: 6px;
    overflow-x: visible;
  }

  .hero-tab {
    width: 20px;
    height: 20px;
    min-height: 20px;
    padding: 0;
    font-size: 0;
    text-align: center;
  }

  .hero-tab::after {
    content: "";
    left: 50%;
    top: 50%;
    bottom: auto;
    width: 7px;
    height: 7px;
    transform: translate(-50%, -50%) scale(0.92);
  }

  .hero-tab:hover::after,
  .hero-tab:focus-visible::after,
  .hero-tab.is-active::after {
    content: "";
    transform: translate(-50%, -50%) scale(1);
  }

  .hero-tab.is-active {
    width: 30px;
  }

  .hero-tab.is-active::after {
    width: 20px;
    height: 8px;
  }

  .hero-progress {
    display: none;
  }

  .hero-arrows {
    display: flex;
  }

  .home-product-board.gateway-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-areas: none;
    grid-auto-rows: minmax(210px, auto);
  }

  .home-product-board__head,
  .home-product-board .gateway-card,
  .home-product-board .gateway-card--feature,
  .home-product-board .gateway-card--tech,
  .home-product-board .gateway-card--voice,
  .home-product-board .gateway-card--nfc,
  .home-product-board .gateway-card--light,
  .home-product-board .gateway-card--gallery,
  .home-product-board .gateway-card--wide {
    grid-area: auto;
  }

  .home-product-board__head {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 0 0 10px;
  }

  .home-product-board .gateway-card--feature {
    grid-column: 1 / span 3;
    grid-row: span 2;
  }

  .home-product-board .gateway-card--tech {
    grid-column: 4 / span 3;
  }

  .home-product-board .gateway-card--voice,
  .home-product-board .gateway-card--nfc,
  .home-product-board .gateway-card--light,
  .home-product-board .gateway-card--gallery {
    grid-column: span 3;
  }

  .home-product-board .gateway-card--wide {
    grid-column: 1 / -1;
  }

  .aurea-video-suite {
    padding: 92px 24px;
  }

  .aurea-video-suite__head,
  .aurea-video-suite__stage,
  .aurea-conference-card {
    grid-template-columns: 1fr;
  }

  .case-vision {
    grid-template-columns: 1fr;
  }

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

  .aurea-video-suite__head {
    gap: 18px;
  }

  .aurea-video-head-card {
    min-height: min(560px, 62vw);
  }

  .aurea-video-head-card__copy {
    grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
    gap: 28px;
    padding: 34px;
  }

  .aurea-video-suite__head h2 {
    font-size: 48px;
  }

  .aurea-video-frame {
    min-height: 360px;
  }

  .aurea-video-suite__signals {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aurea-video-suite__routes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aurea-reel-wall {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .aurea-reel-card,
  .aurea-reel-card:nth-child(1),
  .aurea-reel-card:nth-child(3),
  .aurea-reel-card:nth-child(9),
  .aurea-reel-card:nth-child(10) {
    grid-column: span 3;
    grid-row: span 1;
  }

  .aurea-reel-card:nth-child(3),
  .aurea-reel-card:nth-child(10) {
    grid-column: span 6;
  }

  .aurea-conference-card__copy {
    padding: 8px 4px 0;
  }
}

@media (max-width: 760px) {
  .case-vision__cards {
    grid-template-columns: 1fr;
  }

  .case-vision__copy h2 {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.06;
    overflow-wrap: anywhere;
    text-wrap: normal;
  }

  .case-vision__copy p:not(.kicker),
  .case-vision__cards strong,
  .case-vision__cards p {
    max-width: min(100%, 330px);
    overflow-wrap: anywhere;
    text-wrap: normal;
  }

  .case-vision__cards article {
    max-width: min(100%, 358px);
  }

  .home-product-board.gateway-grid {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas: none;
    grid-auto-rows: auto;
    gap: 10px;
    padding: 64px 16px;
  }

  .home-product-board__head,
  .home-product-board .gateway-card,
  .home-product-board .gateway-card--feature,
  .home-product-board .gateway-card--tech,
  .home-product-board .gateway-card--voice,
  .home-product-board .gateway-card--nfc,
  .home-product-board .gateway-card--light,
  .home-product-board .gateway-card--gallery,
  .home-product-board .gateway-card--wide {
    grid-area: auto;
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .home-product-board__head h2 {
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.04;
    overflow-wrap: anywhere;
    text-wrap: normal;
  }

  .home-product-board__head p:not(.kicker) {
    font-size: 15px;
    line-height: 1.42;
    overflow-wrap: anywhere;
    text-wrap: normal;
  }

  .home-product-board .gateway-card {
    min-height: 310px;
    padding: 22px;
  }

  .home-product-board .gateway-card--feature {
    min-height: min(560px, 74svh);
  }

  .home-product-board .gateway-card h2 {
    font-size: clamp(21px, 6.6vw, 28px);
  }

  .home-product-board .gateway-card p {
    max-width: calc(100% - 8px);
    font-size: 13px;
  }

  .home-product-board .gateway-tech-list {
    grid-template-columns: 1fr;
  }

  .aurea-video-suite {
    padding: 72px 16px;
  }

  .aurea-video-suite__head {
    display: block;
    margin-bottom: 22px;
  }

  .aurea-video-head-card {
    min-height: min(620px, 82svh);
    margin-bottom: 0;
  }

  .aurea-video-head-card::before {
    background:
      linear-gradient(180deg, rgba(3, 4, 6, 0.2), rgba(3, 4, 6, 0.18) 28%, rgba(3, 4, 6, 0.92)),
      linear-gradient(90deg, rgba(3, 4, 6, 0.48), rgba(3, 4, 6, 0.3) 48%, rgba(3, 4, 6, 0.78));
  }

  .aurea-video-head-card__copy {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 22px;
    padding: 22px;
  }

  .aurea-video-head-card__text {
    max-width: none;
    align-self: end;
    justify-self: stretch;
    order: 1;
  }

  .aurea-video-head-card__text .kicker {
    margin-bottom: 12px;
  }

  .aurea-video-head-card__scene {
    max-width: none;
    order: 2;
  }

  .aurea-video-suite__head h2 {
    font-size: clamp(30px, 8.6vw, 36px);
    line-height: 1.02;
    overflow-wrap: anywhere;
    text-wrap: normal;
  }

  .aurea-video-suite__head p:not(.kicker) {
    max-width: 100%;
    margin-top: 16px;
    font-size: 15px;
    overflow-wrap: anywhere;
    text-wrap: normal;
  }

  .aurea-video-suite__stage {
    gap: 10px;
  }

  .aurea-video-frame {
    min-height: 390px;
    aspect-ratio: 9 / 13;
  }

  .aurea-video-frame video {
    object-position: center center;
  }

  .aurea-video-frame__hud {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .aurea-video-frame__hud strong {
    font-size: 23px;
    line-height: 1.06;
    text-wrap: normal;
  }

  .aurea-video-frame__hud em {
    font-size: 13px;
  }

  .aurea-video-suite__signals,
  .aurea-video-suite__routes,
  .aurea-reel-wall {
    grid-template-columns: 1fr;
  }

  .aurea-video-suite__signals div {
    min-height: 118px;
  }

  .aurea-video-suite__routes a {
    min-height: 128px;
  }

  .aurea-reel-card,
  .aurea-reel-card:nth-child(1),
  .aurea-reel-card:nth-child(3),
  .aurea-reel-card:nth-child(9),
  .aurea-reel-card:nth-child(10) {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 270px;
    aspect-ratio: 16 / 11;
  }

  .aurea-reel-card__copy strong {
    font-size: 22px;
  }

  .hero-function-strip {
    right: 10px;
    top: 130px;
    max-width: calc(100vw - 20px);
    padding: 6px 7px;
    overflow: hidden;
  }

  .hero-arrows {
    display: none;
  }

  .hero-function-tabs {
    max-width: 164px;
    overflow: hidden;
  }

  .hero-slide-copy,
  .hero-line {
    max-width: min(100%, 340px);
    text-wrap: normal;
  }

  .hero-commands {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-commands .v2-button {
    width: 100%;
    flex: none;
    min-width: 0;
    min-height: 42px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero-commands .v2-button:nth-child(3) {
    grid-column: 1 / -1;
  }

  body.v2-page .consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  body.v2-page .consent-banner__panel {
    gap: 12px;
    max-height: min(54svh, 420px);
    overflow-y: auto;
    padding: 14px;
    border-radius: var(--v2-radius-sm);
  }

  body.v2-page .consent-banner__copy h2 {
    font-size: 22px;
    line-height: 1.08;
  }

  body.v2-page .consent-banner__eyebrow {
    margin-bottom: 6px;
    font-size: 11px;
  }

  body.v2-page .consent-banner__copy > p:last-child {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.36;
  }

  body.v2-page .consent-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.v2-page .consent-banner__actions .button {
    min-height: 42px;
    font-size: 12px;
  }

  .aurea-conference-card {
    gap: 14px;
    padding: 12px;
  }

  .aurea-conference-card__copy h2,
  .aurea-conference-card__copy h3 {
    font-size: 31px;
  }

  .aurea-conference-card__copy p:not(.kicker) {
    font-size: 14px;
  }

  .aurea-conference-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .aurea-conference-card__media span {
    position: static;
    display: block;
    max-width: none;
    border-radius: 0;
  }

  .conference-proof-list {
    grid-template-columns: 1fr;
  }
}

.command-menu-toggle {
  display: none;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
  grid-auto-rows: 8px;
  align-items: start;
}

.gallery-card,
.gallery-card:nth-child(7n + 1),
.gallery-card[data-orientation="vertical"] {
  grid-column: span 1;
  grid-row: auto;
  aspect-ratio: auto;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: border-color 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1), transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card--wide,
.gallery-card:nth-child(7n + 1).gallery-card--wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

.gallery-card picture {
  aspect-ratio: var(--gallery-ratio, 1.6);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: calc(var(--v2-radius) - 1px) calc(var(--v2-radius) - 1px) 0 0;
}

.gallery-card img {
  aspect-ratio: var(--gallery-ratio, 1.6);
  height: auto;
  transform: scale(1.001);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card span {
  display: block;
  padding: 12px 12px 0;
  color: var(--v2-cyan);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 760;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.gallery-card strong,
.gallery-card[data-orientation="vertical"] strong,
.gallery-card--wide strong {
  padding: 5px 12px 14px;
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.08;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translate3d(0, -2px, 0);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.028);
}

@media (hover: none), (pointer: coarse) {
  .gateway-card:hover,
  .gateway-card:focus-visible,
  .signal-card:hover,
  .system-node:hover,
  .usecase-tile:hover,
  .sequence-panel:hover,
  .split-panel:hover,
  .gallery-card:hover,
  .gallery-card:focus-visible,
  .aurea-video-head-card:hover,
  .aurea-video-head-card:focus-visible,
  .aurea-reel-card:hover,
  .aurea-reel-card:focus-visible,
  button.video-gallery-card:hover,
  button.video-gallery-card:focus-visible {
    transform: none;
  }

  .gateway-card:hover img,
  .gateway-card:focus-visible img,
  .gallery-card:hover img,
  .gallery-card:focus-visible img,
  .aurea-video-head-card:hover .aurea-video-head-card__media video,
  .aurea-video-head-card:focus-visible .aurea-video-head-card__media video,
  .aurea-reel-card:hover .aurea-reel-card__media video,
  .aurea-reel-card:focus-visible .aurea-reel-card__media video,
  button.video-gallery-card:hover .video-gallery-card__media img,
  button.video-gallery-card:focus-visible .video-gallery-card__media img {
    transform: none;
  }
}

@media (max-width: 760px) {
  body.is-mobile-nav-open {
    overflow: hidden;
  }

  .command-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .command-brand {
    justify-content: flex-start;
  }

  .command-menu-toggle {
    position: relative;
    z-index: 103;
    width: 44px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--v2-radius-xs);
    background: rgba(255, 255, 255, 0.055);
    color: var(--v2-ink);
    padding: 0;
  }

  .command-menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .command-menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .command-menu-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .experience-deck {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 58px;
    z-index: 102;
    width: auto;
    max-height: calc(100svh - 78px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid rgba(96, 245, 255, 0.18);
    border-radius: 0 0 var(--v2-radius) var(--v2-radius);
    background: linear-gradient(135deg, rgba(96, 245, 255, 0.1), rgba(255, 79, 216, 0.055)), rgba(3, 7, 10, 0.98);
    box-shadow: 0 28px 84px rgba(0, 0, 0, 0.48);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -10px, 0);
    visibility: hidden;
    mask-image: none;
    transition: opacity 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 220ms ease;
    backdrop-filter: blur(24px) saturate(150%);
  }

  .command-bar.is-mobile-open .experience-deck {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  .experience-deck .deck-indicator {
    display: none;
  }

  .nav-top-link,
  .nav-group,
  .nav-group-trigger {
    width: 100%;
    min-width: 0;
  }

  .experience-deck a,
  .nav-group-trigger {
    min-height: 52px;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--v2-radius-xs);
    background: rgba(255, 255, 255, 0.045);
    padding: 0 12px;
    text-align: left;
  }

  .nav-top-link,
  .nav-group-trigger {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-menu,
  .nav-group:hover .nav-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: none;
    visibility: hidden;
    transition: max-height 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease, visibility 180ms ease;
  }

  .nav-group.is-open .nav-menu,
  .nav-group:focus-within .nav-menu {
    max-height: 70svh;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-menu-shell {
    max-height: none;
    overflow: visible;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 8px;
  }

  .gallery-card,
  .gallery-card:nth-child(7n + 1),
  .gallery-card[data-orientation="vertical"],
  .gallery-card--wide {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: auto;
  }

  .gallery-card--wide {
    grid-column: 1 / -1;
  }
}

/* Final premium overrides: placed after component/mobile rules so the quieter language wins globally. */
.command-cta,
.command-phone,
.v2-button,
body.v2-page .consent-banner__actions .button,
body.v2-page .consent-modal__actions .button,
body.v2-page .consent-trigger {
  clip-path: none !important;
  border-radius: var(--v2-radius-sm) !important;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: none;
}

.command-cta::after,
.v2-button::after {
  display: none !important;
}

.command-cta,
.v2-button--primary,
body.v2-page .consent-banner__actions .button.primary,
body.v2-page .consent-modal__actions .button.primary {
  border-color: rgba(96, 245, 255, 0.42);
  background: linear-gradient(180deg, rgba(96, 245, 255, 0.94), rgba(48, 199, 181, 0.86));
  color: #031012;
  box-shadow: 0 12px 32px rgba(48, 199, 181, 0.16);
}

.v2-button--ghost,
.command-phone,
body.v2-page .consent-banner__actions .button,
body.v2-page .consent-modal__actions .button,
body.v2-page .consent-trigger {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(7, 10, 15, 0.62);
  color: rgba(247, 251, 255, 0.88);
  box-shadow: none;
}

.command-cta:hover,
.command-cta:focus-visible,
.command-phone:hover,
.command-phone:focus-visible,
.v2-button:hover,
.v2-button:focus-visible {
  transform: translate3d(0, -1px, 0);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.v2-page::after,
.hero-orchestration,
.hero-infographic-stage::before,
.hero-infographic-stage::after,
.hero-infographic-stage .motion-scan,
.hud-particle-field,
.hud-module::before,
.hud-module::after {
  display: none !important;
}

.hero-infographic-stage {
  perspective: none;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(5, 8, 12, 0.42);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(110%);
}

.hud-module {
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 24px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  padding: clamp(26px, 4vw, 44px);
  transform: none !important;
}

.persona-map,
.voice-hud-grid,
.nfc-handoff,
.light-stage-map,
.intel-dashboard,
.hud-ring,
.nfc-signal i,
.nfc-signal::after,
.voice-wave::after,
.intel-dashboard .intel-panel::after {
  display: none !important;
}

.hud-topline {
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    rgba(8, 12, 17, 0.44);
  padding: clamp(22px, 3vw, 32px);
}

.hud-topline span {
  color: rgba(255, 138, 61, 0.82);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.hud-topline strong {
  max-width: 360px;
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 0.98;
  text-shadow: none;
}

.hud-dock,
.hud-metrics,
.hud-module .light-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hud-dock span,
.hud-metrics span,
.hud-module .light-timeline span {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(247, 251, 255, 0.66);
  padding: 9px 12px;
  box-shadow: none;
  animation: none !important;
  transform: none !important;
}

.hero-function-strip {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(4, 7, 11, 0.58);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.hero-slider-status,
.hero-progress {
  display: none !important;
}

.hero-tab::before {
  display: none !important;
}

.hero-tab::after {
  background: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.hero-tab:hover::after,
.hero-tab:focus-visible::after,
.hero-tab.is-active::after {
  background: rgba(255, 138, 61, 0.84);
  box-shadow: none;
}

.signal-card,
.system-node,
.tech-stack-card,
.gateway-card,
.sequence-panel,
.timeline-step,
.usecase-tile,
.split-panel,
.aurea-conference-card,
.case-vision__cards article,
.company-proof__panel,
.voice-console,
.sound-console,
.transcript-panel,
.media-rights-card,
.media-cta-card,
.video-gallery-card,
.gallery-toolbar,
.gallery-section-head,
.brief-shell,
.brief-summary,
.wizard-card {
  border-color: rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(7, 10, 15, 0.6);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
}

.gateway-card:hover,
.gateway-card:focus-visible,
.signal-card:hover,
.system-node:hover,
.tech-stack-card:hover,
.sequence-panel:hover,
.timeline-step:hover,
.usecase-tile:hover,
.split-panel:hover,
.gallery-card:hover,
.gallery-card:focus-visible,
.aurea-reel-card:hover,
.aurea-reel-card:focus-visible,
button.video-gallery-card:hover,
button.video-gallery-card:focus-visible {
  transform: translate3d(0, -1px, 0);
  border-color: rgba(255, 138, 61, 0.24);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1120px) {
  .hero-infographic-stage {
    border-radius: 16px;
  }
}

@media (max-width: 760px) {
  .hud-module {
    padding: 18px;
  }

  .hud-topline {
    min-height: 150px;
    padding: 20px;
  }

  .hud-topline strong {
    font-size: clamp(28px, 8vw, 36px);
  }

  .experience-deck {
    border-color: rgba(255, 255, 255, 0.13);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
      rgba(4, 7, 11, 0.98);
    box-shadow: 0 28px 84px rgba(0, 0, 0, 0.42);
  }
}

/* Premium typography pass: calmer hierarchy, fewer terminal-like labels, no viewport-driven type scaling on key surfaces. */
body.v2-page {
  --type-hero-mark: 72px;
  --type-hero-title: 47px;
  --type-page-title: 58px;
  --type-section-title: 50px;
  --type-panel-title: 34px;
  --type-card-title: 26px;
  --type-lead: 19px;
  --type-body: 16px;
  --type-small: 13px;
  --type-label: 12px;
  font-size: var(--type-body);
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

body.v2-page :where(h1, h2, h3, h4, p, li, a, button, span, strong, em, small, label, input, select, textarea, legend) {
  letter-spacing: 0;
}

.v2-page h1,
.v2-page h2,
.v2-page h3,
.v2-page legend {
  font-feature-settings: "kern" 1, "liga" 1;
  hyphens: none;
  overflow-wrap: break-word;
}

.function-copy > h1 {
  max-width: 680px;
  font-size: var(--type-hero-mark);
  line-height: 0.92;
}

.hero-slide-copy h2 {
  max-width: 860px;
  font-size: var(--type-hero-title);
  line-height: 1.04;
}

.page-hero-copy h1,
.case-hero-copy h1,
.brief-intro h1 {
  font-size: var(--type-page-title);
  line-height: 0.96;
}

body[data-page="realizacja"] .case-hero-copy h1 {
  font-size: 54px;
  line-height: 1;
}

.hero-line,
.brief-intro p:not(.kicker),
.company-proof__intro > p:not(.kicker),
.case-vision__copy p:not(.kicker),
.aurea-conference-card--featured .aurea-conference-card__copy p:not(.kicker),
.aurea-video-head-card__text p:not(.kicker) {
  font-size: var(--type-lead);
  line-height: 1.5;
}

.statement-copy h2,
.band-copy h2,
.company-proof__intro h2,
.case-vision__copy h2,
.case-gallery-caption h2,
.split-panel h2 {
  font-size: var(--type-section-title);
  line-height: 1;
}

.aurea-video-head-card__text h2,
.aurea-conference-card--featured .aurea-conference-card__copy h2 {
  font-size: var(--type-section-title);
  line-height: 1;
}

.aurea-video-head-card__scene strong,
.aurea-video-frame__hud strong,
.aurea-reel-card__copy strong,
.tech-stack-card h3,
.signal-card h3,
.system-node h3,
.usecase-tile h2,
.sequence-panel h2,
.timeline-step h2,
.media-cta-card h2,
.case-vision__cards strong,
.aurea-conference-card__copy h2,
.aurea-conference-card__copy h3,
.wizard-step legend,
body.v2-page .consent-banner__copy h2,
body.v2-page .consent-modal__header h2 {
  font-size: var(--type-card-title);
  line-height: 1.08;
}

.aurea-video-suite__signals span,
.company-proof__identity strong,
.hud-topline strong {
  font-size: var(--type-panel-title);
  line-height: 0.95;
}

.hud-topline,
.hud-topline strong {
  text-transform: none;
}

.kicker,
.hero-slide-label,
.hero-support span,
.command-brand span,
.experience-deck a,
.nav-group-trigger,
.nav-top-link small,
.nav-group-trigger small,
.nav-menu-copy small,
.hero-tab,
.hero-flow-node small,
.hero-flow-node strong,
.hero-flow-node em,
.hud-topline span,
.hud-dock span,
.hud-metrics span,
.hud-module .light-timeline span,
.aurea-video-head-card__scene span,
.aurea-video-head-card__scene em,
.aurea-video-frame__hud span,
.aurea-reel-card__copy span,
.aurea-reel-card__copy em,
.aurea-video-suite__routes a span,
.aurea-video-suite__routes a em,
.aurea-video-suite__signals em,
.signal-card span,
.system-node span,
.usecase-tile span,
.sequence-panel span,
.timeline-step span,
.tech-stack-card span,
.case-vision__cards span,
.conference-proof-list span,
.company-proof__signals li,
.company-proof__signals span,
.wizard-summary strong,
body.v2-page .consent-banner__eyebrow {
  font-family: var(--font-sans);
  font-size: var(--type-label);
  font-weight: 650;
  line-height: 1.25;
  text-transform: none;
}

.command-brand span,
.nav-top-link small,
.nav-group-trigger small {
  font-size: 11px;
}

.kicker,
.hero-slide-label,
.aurea-video-head-card__scene span,
.aurea-video-frame__hud span,
.aurea-reel-card__copy span,
.tech-stack-card span,
.signal-card span,
.system-node span,
.usecase-tile span,
.sequence-panel span,
.timeline-step span,
.case-vision__cards span {
  color: rgba(255, 138, 61, 0.9);
}

.hero-slide-label {
  min-height: 0;
  border-left-color: rgba(255, 138, 61, 0.72);
  padding-left: 10px;
}

.hero-function-strip .hero-tab {
  font-size: 0;
  line-height: 0;
}

.hero-support span,
.hud-dock span,
.hud-metrics span,
.hud-module .light-timeline span {
  font-size: var(--type-small);
}

.command-cta,
.command-phone,
.v2-button,
body.v2-page .consent-banner__actions .button,
body.v2-page .consent-modal__actions .button,
body.v2-page .consent-trigger {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.12;
}

.experience-deck a,
.nav-group-trigger {
  font-size: 14px;
  font-weight: 650;
}

.nav-menu-copy strong {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.1;
}

.nav-menu-copy small,
.aurea-video-suite__signals em,
.aurea-reel-card__copy em,
.aurea-video-head-card__scene em,
.company-proof__signals li {
  color: rgba(247, 251, 255, 0.62);
}

.aurea-video-frame__hud em,
.aurea-video-suite__signals strong,
.aurea-video-suite__routes a em,
.tech-stack-card p,
.signal-card p,
.system-node p,
.usecase-tile p,
.sequence-panel p,
.timeline-step p,
.case-vision__cards p,
.aurea-conference-card__copy p:not(.kicker),
.wizard-step label,
.wizard-form input,
.wizard-form select,
.wizard-form textarea,
body.v2-page .consent-banner__copy > p:last-child,
body.v2-page .consent-note,
body.v2-page .consent-modal__header p {
  font-size: var(--type-body);
  line-height: 1.55;
}

.aurea-video-suite__routes a strong {
  font-family: var(--font-sans);
  font-size: 25px;
  font-weight: 760;
  line-height: 1.04;
}

.aurea-video-suite__signals strong {
  font-size: 17px;
  font-weight: 760;
}

.wizard-step legend,
body.v2-page .consent-banner__copy h2,
body.v2-page .consent-modal__header h2 {
  font-family: var(--font-display);
  font-weight: 760;
}

.wizard-summary strong {
  color: rgba(255, 138, 61, 0.9);
}

@media (max-width: 1120px) {
  body.v2-page {
    --type-hero-mark: 62px;
    --type-hero-title: 40px;
    --type-page-title: 50px;
    --type-section-title: 43px;
    --type-card-title: 25px;
    --type-lead: 18px;
  }

  body[data-page="realizacja"] .case-hero-copy h1 {
    font-size: 46px;
  }
}

@media (max-width: 760px) {
  body.v2-page {
    --type-hero-mark: 44px;
    --type-hero-title: 29px;
    --type-page-title: 36px;
    --type-section-title: 32px;
    --type-panel-title: 30px;
    --type-card-title: 22px;
    --type-lead: 16px;
    --type-body: 15px;
    --type-small: 12px;
    --type-label: 11px;
  }

  .function-copy > h1,
  .hero-slide-copy h2,
  .page-hero-copy h1,
  .case-hero-copy h1,
  .brief-intro h1,
  body[data-page="realizacja"] .case-hero-copy h1 {
    line-height: 1;
  }

  body[data-page="realizacja"] .case-hero-copy h1 {
    font-size: var(--type-page-title);
  }

  .command-cta,
  .command-phone,
  .v2-button,
  body.v2-page .consent-banner__actions .button,
  body.v2-page .consent-modal__actions .button,
  body.v2-page .consent-trigger {
    font-size: 14px;
  }

  .experience-deck a,
  .nav-group-trigger {
    font-size: 15px;
  }

  .nav-top-link small,
  .nav-group-trigger small {
    font-size: 12px;
  }
}

/* Reusable cinematic bridge between sections. */
.section-bridge {
  position: relative;
  z-index: 8;
  width: min(1080px, calc(100% - 48px));
  min-height: 132px;
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1fr) 72px;
  gap: 22px;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022)),
    rgba(5, 8, 12, 0.72);
  color: var(--v2-ink);
  padding: 16px 18px 16px 22px;
  text-decoration: none;
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(112%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.section-bridge--home {
  margin-top: -74px;
  margin-bottom: -54px;
}

.section-bridge::before,
.section-bridge::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.section-bridge::before {
  left: 18px;
  right: 18px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.52), rgba(96, 245, 255, 0.42), transparent);
  opacity: 0.48;
}

.section-bridge::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(96, 245, 255, 0.08), transparent 28%, rgba(255, 138, 61, 0.08) 68%, transparent),
    linear-gradient(180deg, rgba(5, 7, 10, 0), rgba(5, 7, 10, 0.32));
  opacity: 0.68;
}

.section-bridge:hover,
.section-bridge:focus-visible {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(255, 138, 61, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.026)),
    rgba(7, 10, 15, 0.78);
  box-shadow: 0 34px 104px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 138, 61, 0.08);
}

.section-bridge:focus-visible {
  outline: 2px solid rgba(96, 245, 255, 0.72);
  outline-offset: 4px;
}

.section-bridge__copy,
.section-bridge__rail,
.section-bridge__signal {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.section-bridge__copy {
  display: grid;
  gap: 5px;
}

.section-bridge__copy span {
  color: rgba(255, 138, 61, 0.9);
  font-size: var(--type-label);
  font-weight: 700;
  line-height: 1.1;
}

.section-bridge__copy strong {
  color: var(--v2-ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.04;
}

.section-bridge__copy em {
  color: rgba(247, 251, 255, 0.66);
  font-size: var(--type-small);
  font-style: normal;
  line-height: 1.25;
}

.section-bridge__rail {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr 0.78fr 1.18fr 0.86fr;
  gap: 8px;
  align-items: stretch;
}

.section-bridge__rail span {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: var(--bridge-poster, none) center / cover no-repeat rgba(7, 10, 15, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translate3d(0, 0, 0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), filter 360ms ease, border-color 360ms ease;
}

.section-bridge__rail span::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 4, 6, 0.05), rgba(3, 4, 6, 0.48)),
    linear-gradient(90deg, rgba(3, 4, 6, 0.26), transparent 58%);
}

.section-bridge__rail span:nth-child(2) {
  transform: translateY(8px);
}

.section-bridge__rail span:nth-child(3) {
  transform: translateY(-6px);
}

.section-bridge__rail span:nth-child(4) {
  transform: translateY(4px);
}

.section-bridge:hover .section-bridge__rail span,
.section-bridge:focus-visible .section-bridge__rail span {
  border-color: rgba(255, 138, 61, 0.24);
  filter: saturate(1.08) contrast(1.04);
}

.section-bridge:hover .section-bridge__rail span:nth-child(1),
.section-bridge:focus-visible .section-bridge__rail span:nth-child(1) {
  transform: translateY(-2px);
}

.section-bridge:hover .section-bridge__rail span:nth-child(2),
.section-bridge:focus-visible .section-bridge__rail span:nth-child(2) {
  transform: translateY(4px);
}

.section-bridge:hover .section-bridge__rail span:nth-child(3),
.section-bridge:focus-visible .section-bridge__rail span:nth-child(3) {
  transform: translateY(-10px);
}

.section-bridge:hover .section-bridge__rail span:nth-child(4),
.section-bridge:focus-visible .section-bridge__rail span:nth-child(4) {
  transform: translateY(0);
}

.section-bridge__signal {
  width: 52px;
  height: 52px;
  justify-self: end;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.section-bridge__signal::before,
.section-bridge__signal::after,
.section-bridge__signal i {
  content: "";
  display: block;
  border-radius: 999px;
}

.section-bridge__signal::before {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 138, 61, 0.32);
}

.section-bridge__signal::after {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 138, 61, 0.9);
  box-shadow: 0 0 22px rgba(255, 138, 61, 0.28);
}

.section-bridge__signal i {
  position: absolute;
  width: 2px;
  height: 22px;
  background: linear-gradient(180deg, rgba(96, 245, 255, 0), rgba(96, 245, 255, 0.8), rgba(255, 138, 61, 0));
  transform: translateY(35px);
  animation: sectionBridgeSignal 2.8s ease-in-out infinite;
}

@keyframes sectionBridgeSignal {
  0%,
  100% {
    opacity: 0;
    transform: translateY(-34px);
  }

  42% {
    opacity: 0.95;
  }

  62% {
    opacity: 0.45;
    transform: translateY(34px);
  }
}

@media (max-width: 900px) {
  .section-bridge {
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 16px;
    width: min(100% - 32px, 720px);
    min-height: 118px;
  }

  .section-bridge__rail {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 64px;
  }
}

@media (max-width: 760px) {
  .section-bridge {
    border-radius: 16px;
    padding: 16px;
  }

  .section-bridge--home {
    margin-top: -44px;
    margin-bottom: -42px;
  }

  .section-bridge__copy strong {
    font-size: 24px;
  }

  .section-bridge__rail {
    grid-template-columns: 1.1fr 0.9fr 1fr;
  }

  .section-bridge__rail span:nth-child(4) {
    display: none;
  }

  .section-bridge__signal {
    width: 48px;
    height: 48px;
  }
}

/* Restored hero journey strip and a lighter central scroll cue. */
.hero-orchestration {
  --flow-focus: 10%;
  --flow-complete: 10%;
  position: absolute;
  left: 50%;
  bottom: calc(var(--hero-strip-offset, 20px) + 64px);
  z-index: 4;
  width: min(1180px, calc(100% - 48px));
  min-height: 88px;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
  padding: 0 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
  isolation: isolate;
  pointer-events: auto;
}

.hero-orchestration::before,
.hero-orchestration::after,
.hero-orchestration__signal {
  display: block !important;
}

.hero-orchestration::before {
  left: 3%;
  right: 3%;
  top: 24px;
  height: 1px;
  opacity: 0.62;
  background:
    linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.34), rgba(255, 255, 255, 0.18), rgba(96, 245, 255, 0.18), rgba(255, 138, 61, 0.18), transparent);
  box-shadow: 0 0 22px rgba(255, 138, 61, 0.08);
}

.hero-orchestration::after {
  content: "";
  position: absolute;
  left: var(--flow-focus);
  top: 24px;
  z-index: 1;
  width: 150px;
  height: 58px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, color-mix(in srgb, var(--module-color, var(--v2-gold)) 28%, transparent), transparent 62%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 34%);
  opacity: 0.5;
  filter: blur(5px);
  transform: translate(-50%, -48%);
  transition: left 520ms cubic-bezier(0.22, 1, 0.36, 1), background 260ms ease, opacity 260ms ease;
}

.hero-orchestration__signal {
  left: 3%;
  right: auto;
  top: 24px;
  z-index: 2;
  width: calc(var(--flow-complete) - 3%);
  height: 2px;
  opacity: 0.88;
  background:
    linear-gradient(90deg, rgba(255, 138, 61, 0), rgba(255, 138, 61, 0.8), color-mix(in srgb, var(--module-color, var(--v2-cyan)) 58%, white), rgba(255, 255, 255, 0.54));
  border-radius: 999px;
  box-shadow:
    0 0 14px color-mix(in srgb, var(--module-color, var(--v2-gold)) 18%, transparent),
    0 0 2px rgba(255, 255, 255, 0.5);
  filter: drop-shadow(0 0 14px rgba(255, 138, 61, 0.2));
  animation: heroFlowLineBreath 3.8s ease-in-out infinite;
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1), background 260ms ease;
}

.hero-orchestration__signal::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--module-color, var(--v2-gold)) 70%, white);
  box-shadow:
    0 0 14px color-mix(in srgb, var(--module-color, var(--v2-gold)) 42%, transparent),
    0 0 34px color-mix(in srgb, var(--module-color, var(--v2-gold)) 16%, transparent);
  transform: translateY(-50%);
}

.hero-flow-node {
  position: relative;
  appearance: none;
  width: 100%;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 4px;
  border: 0 !important;
  background: transparent !important;
  color: inherit;
  font: inherit;
  min-height: 78px;
  padding: 38px 10px 0;
  opacity: 0.56;
  transform: none;
  cursor: pointer;
  pointer-events: auto;
  text-align: center;
  transition:
    opacity 240ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    color 240ms ease;
}

.hero-flow-node:hover,
.hero-flow-node:focus-visible {
  opacity: 0.92;
  transform: translateY(-2px);
}

.hero-flow-node:focus-visible {
  outline: 1px solid rgba(96, 245, 255, 0.55);
  outline-offset: 8px;
  border-radius: 999px;
}

.hero-flow-node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  width: 9px;
  height: 9px;
  border-color: rgba(255, 138, 61, 0.46);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.22), transparent 46%),
    rgba(5, 8, 12, 0.86);
  box-shadow: 0 0 14px rgba(255, 138, 61, 0.12), inset 0 0 0 3px rgba(5, 8, 12, 0.6);
  transform: translate(-50%, -50%);
  transition:
    width 260ms cubic-bezier(0.22, 1, 0.36, 1),
    height 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.hero-flow-node::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  width: 48px;
  height: 48px;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--module-color, var(--v2-gold)) 24%, transparent), transparent 68%),
    radial-gradient(circle, rgba(255, 138, 61, 0.12), transparent 72%);
  opacity: 0;
  filter: blur(3px);
  transform: translate(-50%, -50%) scale(0.68);
}

.hero-flow-node small,
.hero-flow-node strong,
.hero-flow-node em {
  font-family: var(--font-sans);
  text-transform: none;
}

.hero-flow-node small {
  color: rgba(255, 138, 61, 0.82);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.hero-flow-node strong {
  color: rgba(247, 251, 255, 0.84);
  font-size: 13px;
  font-weight: 760;
}

.hero-flow-node em {
  color: rgba(247, 251, 255, 0.5);
  font-size: 11px;
  font-weight: 550;
}

.hero-flow-node.is-active {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  opacity: 1;
  transform: translateY(-3px);
}

.hero-flow-node.is-active::before {
  width: 15px;
  height: 15px;
  border-color: color-mix(in srgb, var(--module-color, var(--v2-gold)) 70%, white);
  background:
    radial-gradient(circle at 45% 38%, rgba(255, 255, 255, 0.55), transparent 24%),
    color-mix(in srgb, var(--module-color, var(--v2-gold)) 72%, var(--v2-gold));
  box-shadow:
    0 0 16px color-mix(in srgb, var(--module-color, var(--v2-gold)) 48%, transparent),
    0 0 34px color-mix(in srgb, var(--module-color, var(--v2-gold)) 20%, transparent),
    inset 0 0 0 4px rgba(5, 8, 12, 0.22);
}

.hero-flow-node.is-active::after {
  opacity: 0.68;
  transform: translate(-50%, -50%) scale(1.08);
  animation: heroFlowPulse 2.4s ease-in-out infinite;
}

.hero-flow-node.is-active small {
  color: color-mix(in srgb, var(--module-color, var(--v2-gold)) 56%, var(--v2-gold));
}

.hero-flow-node.is-active strong {
  color: var(--v2-ink);
  text-shadow: 0 0 22px color-mix(in srgb, var(--module-color, var(--v2-gold)) 18%, transparent);
}

.hero-flow-node.is-active em {
  color: rgba(247, 251, 255, 0.76);
}

@keyframes heroFlowPulse {
  0%,
  100% {
    opacity: 0.48;
    transform: translate(-50%, -50%) scale(0.92);
  }

  50% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(1.16);
  }
}

@keyframes heroFlowLineBreath {
  0%,
  100% {
    opacity: 0.72;
    filter: drop-shadow(0 0 8px rgba(255, 138, 61, 0.14));
  }

  50% {
    opacity: 0.96;
    filter: drop-shadow(0 0 16px color-mix(in srgb, var(--module-color, var(--v2-gold)) 18%, transparent));
  }
}

.aurea-function-console::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 44%;
  pointer-events: none;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0), rgba(5, 7, 10, 0.9) 46%, #05070a 76%, #05070a 100%),
    linear-gradient(90deg, rgba(3, 16, 17, 0.18), transparent 38%, rgba(34, 18, 42, 0.16));
  transform: none;
  animation: none !important;
}

.aurea-video-suite {
  background:
    linear-gradient(180deg, #05070a 0, #05070a 116px, rgba(6, 10, 15, 0.98) 190px, rgba(5, 7, 10, 0.94) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 88px);
}

.aurea-video-suite::before {
  inset: 116px 0 0;
}

.section-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 4.4svh, 42px);
  z-index: 9;
  width: max-content;
  display: inline-grid;
  grid-template-columns: 28px auto;
  align-items: center;
  justify-items: start;
  gap: 16px;
  margin: 0;
  color: rgba(247, 251, 255, 0.72);
  text-decoration: none;
  transform: translateX(-50%);
  isolation: isolate;
  transition: color 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-scroll-cue::before,
.section-scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
}

.section-scroll-cue::before {
  display: none;
}

.section-scroll-cue::after {
  left: 13px;
  top: 50%;
  z-index: -1;
  width: 72px;
  height: 58px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 34% 54%, rgba(255, 138, 61, 0.2), transparent 58%),
    radial-gradient(ellipse at 44% 36%, rgba(96, 245, 255, 0.1), transparent 58%);
  filter: blur(14px);
  opacity: 0.46;
  transform: translate(-50%, -50%);
  animation: scrollCueGlow 4.8s ease-in-out infinite;
}

.aurea-function-console .section-scroll-cue {
  bottom: calc(var(--hero-strip-offset, 20px) - 2px);
}

.page-hero .section-scroll-cue,
.case-hero-v2 .section-scroll-cue {
  bottom: clamp(22px, 4.6svh, 48px);
}

.section-scroll-cue span {
  position: relative;
  color: rgba(247, 251, 255, 0.5);
  font-size: 11px;
  font-weight: 680;
  line-height: 1.1;
  letter-spacing: 0.015em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.section-scroll-cue i {
  position: relative;
  width: 28px;
  height: 46px;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.section-scroll-cue i::before,
.section-scroll-cue i::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
}

.section-scroll-cue i::before {
  top: 2px;
  width: 1px;
  height: 34px;
  background:
    linear-gradient(180deg, rgba(255, 138, 61, 0), rgba(255, 138, 61, 0.18) 18%, rgba(255, 138, 61, 0.96) 56%, rgba(96, 245, 255, 0.22) 78%, rgba(255, 138, 61, 0));
  background-size: 100% 210%;
  background-position: 50% 0%;
  filter: drop-shadow(0 0 12px rgba(255, 138, 61, 0.28));
  transform: translateX(-50%);
  animation: scrollCueCurrent 2.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.section-scroll-cue i::after {
  top: 30px;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 138, 61, 0.92);
  border-bottom: 2px solid rgba(255, 138, 61, 0.92);
  filter: drop-shadow(0 0 10px rgba(255, 138, 61, 0.24));
  transform: translateX(-50%) rotate(45deg);
  animation: scrollCueArrow 2.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.section-scroll-cue:hover,
.section-scroll-cue:focus-visible {
  color: var(--v2-ink);
  transform: translateX(-50%) translateY(2px);
}

.section-scroll-cue:hover span,
.section-scroll-cue:focus-visible span {
  color: rgba(247, 251, 255, 0.78);
}

.section-scroll-cue:hover i,
.section-scroll-cue:focus-visible i {
  color: var(--v2-ink);
}

.section-scroll-cue:focus-visible {
  outline: 2px solid rgba(96, 245, 255, 0.72);
  outline-offset: 5px;
  border-radius: 999px;
}

@keyframes scrollCueArrow {
  0%,
  100% {
    opacity: 0.24;
    transform: translate(-50%, -5px) rotate(45deg);
  }

  40% {
    opacity: 1;
    transform: translate(-50%, 2px) rotate(45deg);
  }

  72% {
    opacity: 0.72;
    transform: translate(-50%, 8px) rotate(45deg);
  }
}

@keyframes scrollCueCurrent {
  0%,
  100% {
    opacity: 0.34;
    background-position: 50% 0%;
  }

  48% {
    opacity: 1;
    background-position: 50% 88%;
  }

  76% {
    opacity: 0.66;
    background-position: 50% 100%;
  }
}

@keyframes scrollCueGlow {
  0%,
  100% {
    opacity: 0.26;
    transform: translate(-50%, -50%) translateY(-2px);
  }

  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) translateY(4px);
  }
}

@media (max-width: 1120px) {
  .hero-orchestration {
    bottom: calc(var(--hero-strip-offset, 18px) + 62px);
    width: min(820px, calc(100% - 40px));
    min-height: 58px;
  }

  .hero-flow-node {
    min-height: 52px;
    padding-top: 30px;
  }

  .hero-flow-node em {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-orchestration {
    bottom: calc(var(--hero-strip-offset, 14px) + 58px);
    width: min(320px, calc(100% - 40px));
    min-height: 28px;
    gap: 2px;
  }

  .hero-orchestration::before,
  .hero-orchestration::after,
  .hero-orchestration__signal,
  .hero-flow-node::after,
  .hero-flow-node small,
  .hero-flow-node strong,
  .hero-flow-node em {
    display: none !important;
  }

  .hero-flow-node {
    min-height: 22px;
    padding: 0;
  }

  .hero-flow-node::before {
    top: 50%;
    width: 8px;
    height: 8px;
  }

  .hero-flow-node.is-active::before {
    width: 22px;
    height: 8px;
  }

  .section-scroll-cue {
    grid-template-columns: 24px auto;
    gap: 13px;
  }

  .aurea-function-console .section-scroll-cue {
    bottom: calc(var(--hero-strip-offset, 14px) - 2px);
  }

  .page-hero .section-scroll-cue,
  .case-hero-v2 .section-scroll-cue {
    bottom: 18px;
  }

  .section-scroll-cue span {
    font-size: 10px;
  }

  .section-scroll-cue::before {
    display: none;
  }

  .section-scroll-cue i {
    width: 24px;
    height: 40px;
  }
}

/* Quiet premium slider controls: no HUD capsule, only motion and a soft track. */
.hero-function-strip {
  right: max(28px, calc((100vw - 1180px) / 2));
  top: clamp(104px, 14svh, 136px);
  gap: 14px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0;
  backdrop-filter: none;
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-function-strip::before {
  content: none !important;
}

.hero-slider-status,
.hero-progress {
  display: none !important;
}

.hero-function-tabs {
  position: relative;
  --hero-tab-x: 14px;
  gap: 12px;
  padding: 0 4px;
}

.hero-function-tabs::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 50%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.22), rgba(96, 245, 255, 0.12), transparent);
  opacity: 0.36;
  transform: translateY(-50%) scaleX(0.84);
  transform-origin: center;
  animation: premiumSliderTrack 6.4s ease-in-out infinite;
}

.hero-function-tabs::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 50%, color-mix(in srgb, var(--module-color, var(--v2-gold)) 34%, transparent), transparent 68%);
  opacity: 0.72;
  filter: blur(4px);
  transform: translate(calc(var(--hero-tab-x) - 17px), -50%);
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    background 260ms ease,
    opacity 260ms ease;
  pointer-events: none;
}

.hero-tab,
.hero-arrows button {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-tab {
  width: 20px;
  height: 26px;
  min-height: 26px;
  overflow: visible;
}

.hero-tab::before {
  display: block !important;
  inset: 50% auto auto 50%;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--module-color, var(--v2-gold)) 18%, transparent), transparent 68%);
  opacity: 0;
  filter: blur(3px);
  transform: translate(-50%, -50%);
  transition: opacity 260ms ease;
}

.hero-tab::after {
  display: block !important;
  width: 6px;
  height: 6px;
  background: rgba(247, 251, 255, 0.38);
  opacity: 0.72;
  transition:
    width 340ms cubic-bezier(0.22, 1, 0.36, 1),
    height 340ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-tab:hover::before,
.hero-tab:focus-visible::before,
.hero-tab.is-active::before {
  opacity: 1;
}

.hero-tab:hover::after,
.hero-tab:focus-visible::after {
  background: rgba(247, 251, 255, 0.74);
  opacity: 0.96;
  transform: translate(-50%, -50%) scale(1.08);
}

.hero-tab.is-active {
  width: 20px;
}

.hero-tab.is-active::after {
  width: 23px;
  height: 7px;
  background:
    linear-gradient(90deg, var(--v2-gold), color-mix(in srgb, var(--module-color, var(--v2-gold)) 52%, white));
  box-shadow:
    0 0 18px color-mix(in srgb, var(--module-color, var(--v2-gold)) 22%, transparent),
    0 0 38px color-mix(in srgb, var(--module-color, var(--v2-gold)) 11%, transparent);
  animation: premiumSliderActive 3.8s ease-in-out infinite;
}

.hero-arrows {
  gap: 8px;
  margin-left: 2px;
}

.hero-arrows button {
  position: relative;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: rgba(247, 251, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1;
  isolation: isolate;
  transition: color 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-arrows button::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.15), transparent 68%);
  opacity: 0;
  filter: blur(5px);
  transform: translateY(2px);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-arrows button:hover,
.hero-arrows button:focus-visible {
  color: var(--v2-ink);
  transform: translateY(-1px);
}

.hero-arrows button:hover::before,
.hero-arrows button:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

@keyframes premiumSliderTrack {
  0%,
  100% {
    opacity: 0.24;
    transform: translateY(-50%) scaleX(0.78);
  }

  50% {
    opacity: 0.46;
    transform: translateY(-50%) scaleX(1);
  }
}

@keyframes premiumSliderActive {
  0%,
  100% {
    filter: saturate(1);
    transform: translate(-50%, -50%);
  }

  50% {
    filter: saturate(1.18);
    transform: translate(-50%, calc(-50% - 1px));
  }
}

/* Premium hero visual: editorial text on the moving image, without boxed HUD chrome. */
.hero-infographic-stage {
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
  overflow: visible;
}

.hero-infographic-stage::before,
.hero-infographic-stage::after,
.hero-infographic-stage .motion-scan {
  display: none !important;
}

.hero-infographic-stage .infographic {
  padding: 0;
  place-items: center start;
}

.hud-module {
  width: min(430px, 100%);
  min-height: auto;
  position: relative;
  display: grid;
  align-content: center;
  gap: 28px;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  transform: translate3d(0, 0, 0);
  animation: premiumHeroFloat 9s ease-in-out infinite;
  isolation: isolate;
}

.hud-module::before,
.hud-module::after {
  display: none !important;
}

.hud-topline,
.hud-dock,
.hud-metrics,
.hud-module .light-timeline {
  position: relative;
  z-index: 2;
}

.hud-topline {
  position: relative;
  min-height: auto;
  display: grid;
  gap: 12px;
  align-content: center;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  padding: 0 0 0 18px;
  text-shadow: 0 18px 56px rgba(0, 0, 0, 0.42);
}

.hud-topline::before,
.hud-topline::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hud-topline::before {
  left: 0;
  top: 4px;
  width: 1px;
  height: min(100%, 96px);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 138, 61, 0), rgba(255, 138, 61, 0.82), color-mix(in srgb, var(--module-color, var(--v2-gold)) 34%, transparent), rgba(255, 138, 61, 0));
  opacity: 0.72;
  transform-origin: top;
  box-shadow: 0 0 18px rgba(255, 138, 61, 0.16);
}

.hud-topline::after {
  left: 18px;
  bottom: -18px;
  width: 132px;
  max-width: 40%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 138, 61, 0.72), color-mix(in srgb, var(--module-color, var(--v2-gold)) 36%, white), transparent);
  opacity: 0.58;
  transform-origin: left;
  box-shadow: 0 0 20px rgba(255, 138, 61, 0.12);
}

.hud-topline span {
  width: max-content;
  max-width: 100%;
  color: rgba(255, 138, 61, 0.88);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: none;
}

.hud-topline strong {
  display: block;
  max-width: 430px;
  color: var(--v2-ink);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 790;
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow:
    0 18px 42px rgba(0, 0, 0, 0.54),
    0 1px 0 rgba(255, 255, 255, 0.035);
  text-wrap: balance;
  filter: none;
}

.hud-dock,
.hud-metrics,
.hud-module .light-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  color: rgba(247, 251, 255, 0.62);
}

.hud-dock span,
.hud-metrics span,
.hud-module .light-timeline span {
  min-height: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  color: rgba(247, 251, 255, 0.62);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
  padding: 0;
  box-shadow: none !important;
  text-align: left;
  text-transform: none;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.hud-dock span::before,
.hud-metrics span::before,
.hud-module .light-timeline span::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: color-mix(in srgb, var(--module-color, var(--v2-gold)) 52%, var(--v2-gold));
  box-shadow: 0 0 18px color-mix(in srgb, var(--module-color, var(--v2-gold)) 22%, transparent);
  opacity: 0.82;
}

.hud-metrics b {
  color: rgba(247, 251, 255, 0.9);
  font-weight: 760;
}

.infographic.is-active .hud-module {
  animation: premiumHeroFloat 9s ease-in-out infinite;
}

.infographic.is-active .hud-topline span {
  animation: premiumLabelSettle 620ms 80ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.infographic.is-active .hud-topline::before {
  animation: premiumChapterLine 900ms 70ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.infographic.is-active .hud-topline::after {
  animation: premiumChapterRule 920ms 340ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.infographic.is-active .hud-topline strong {
  animation: premiumTitleSettle 780ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.infographic.is-active .hud-dock span,
.infographic.is-active .hud-metrics span,
.infographic.is-active .hud-module .light-timeline span {
  animation: premiumMetaSettle 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.infographic.is-active .hud-dock span::before,
.infographic.is-active .hud-metrics span::before,
.infographic.is-active .hud-module .light-timeline span::before {
  animation: premiumDotBreathe 3.8s ease-in-out infinite;
}

.infographic.is-active .hud-dock span:nth-child(1),
.infographic.is-active .hud-metrics span:nth-child(1),
.infographic.is-active .hud-module .light-timeline span:nth-child(1) {
  animation-delay: 180ms;
}

.infographic.is-active .hud-dock span:nth-child(2),
.infographic.is-active .hud-metrics span:nth-child(2),
.infographic.is-active .hud-module .light-timeline span:nth-child(2) {
  animation-delay: 250ms;
}

.infographic.is-active .hud-dock span:nth-child(3),
.infographic.is-active .hud-metrics span:nth-child(3),
.infographic.is-active .hud-module .light-timeline span:nth-child(3) {
  animation-delay: 320ms;
}

.infographic.is-active .hud-dock span:nth-child(4),
.infographic.is-active .hud-module .light-timeline span:nth-child(4) {
  animation-delay: 390ms;
}

.infographic.is-active .hud-dock span:nth-child(2)::before,
.infographic.is-active .hud-metrics span:nth-child(2)::before,
.infographic.is-active .hud-module .light-timeline span:nth-child(2)::before {
  animation-delay: -1.1s;
}

.infographic.is-active .hud-dock span:nth-child(3)::before,
.infographic.is-active .hud-metrics span:nth-child(3)::before,
.infographic.is-active .hud-module .light-timeline span:nth-child(3)::before {
  animation-delay: -2.1s;
}

.infographic.is-active .hud-dock span:nth-child(4)::before,
.infographic.is-active .hud-module .light-timeline span:nth-child(4)::before {
  animation-delay: -2.8s;
}

@keyframes premiumModuleSettle {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes premiumLabelSettle {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes premiumChapterLine {
  from {
    opacity: 0;
    transform: scaleY(0.18);
  }

  to {
    opacity: 0.72;
    transform: scaleY(1);
  }
}

@keyframes premiumChapterRule {
  from {
    opacity: 0;
    transform: scaleX(0.12);
  }

  to {
    opacity: 0.58;
    transform: scaleX(1);
  }
}

@keyframes premiumTitleSettle {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes premiumMetaSettle {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes premiumDotBreathe {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.86);
    box-shadow: 0 0 12px color-mix(in srgb, var(--module-color, var(--v2-gold)) 14%, transparent);
  }

  48% {
    opacity: 1;
    transform: scale(1.18);
    box-shadow: 0 0 24px color-mix(in srgb, var(--module-color, var(--v2-gold)) 28%, transparent);
  }
}

@keyframes premiumHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@media (max-width: 1120px) {
  .hud-module {
    width: min(360px, 100%);
  }

  .hud-topline strong {
    font-size: 40px;
  }
}

@media (max-width: 760px) {
  .hero-infographic-stage .infographic {
    place-items: center;
  }

  .hud-module {
    width: 100%;
    gap: 20px;
  }

  .hud-topline {
    padding-left: 14px;
  }

  .hud-topline::after {
    left: 14px;
    bottom: -14px;
    width: 96px;
  }

  .hud-topline strong {
    font-size: 34px;
  }

  .hud-dock,
  .hud-metrics,
  .hud-module .light-timeline {
    gap: 10px 14px;
  }

  .hud-dock span,
  .hud-metrics span,
  .hud-module .light-timeline span {
    font-size: 12px;
  }
}

/* Home hero refinement: calmer type and a clearer journey panel. */
body[data-page="home"] {
  --type-hero-mark: 60px;
  --type-hero-title: 37px;
  --type-panel-title: 36px;
  --type-lead: 17px;
}

body[data-page="home"] .aurea-function-console {
  --hero-strip-offset: 24px;
  --hero-top-space: clamp(84px, 9svh, 104px);
  --hero-bottom-space: clamp(220px, 25svh, 260px);
  min-height: clamp(680px, 92svh, 920px);
}

body[data-page="home"] .function-grid {
  width: min(1120px, calc(100% - 72px));
  min-height: auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.58fr);
  gap: clamp(34px, 5vw, 84px);
  align-content: center;
  padding: var(--hero-top-space) 0 var(--hero-bottom-space);
}

@media (min-width: 1121px) {
  body[data-page="home"] .cinematic-copy.function-copy {
    padding-bottom: 0;
  }
}

body[data-page="home"] .function-copy > h1 {
  max-width: 620px;
  line-height: 0.96;
}

body[data-page="home"] .hero-slide-copy {
  max-width: 650px;
  margin-top: 18px;
}

body[data-page="home"] .hero-slide-copy h2 {
  max-width: 650px;
  margin-top: 12px;
  line-height: 1.08;
}

body[data-page="home"] .hero-line {
  max-width: 620px;
  margin-top: 18px;
  line-height: 1.45;
}

body[data-page="home"] .hero-commands {
  margin-top: 26px;
}

body[data-page="home"] .hud-module {
  width: min(360px, 100%);
  gap: 22px;
}

body[data-page="home"] .hud-topline strong {
  max-width: 360px;
  font-size: var(--type-panel-title);
  line-height: 0.98;
}

body[data-page="home"] .hero-orchestration {
  bottom: calc(var(--hero-strip-offset, 24px) + 98px);
  width: min(1060px, calc(100% - 96px));
  min-height: 104px;
  align-items: stretch;
  gap: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: var(--v2-radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    linear-gradient(90deg, rgba(255, 138, 61, 0.075), rgba(96, 245, 255, 0.045), rgba(255, 79, 216, 0.035)),
    rgba(3, 6, 9, 0.58);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: 14px 16px 12px;
  backdrop-filter: blur(18px) saturate(130%);
}

body[data-page="home"] .hero-orchestration::before {
  left: 26px;
  right: 26px;
  top: 29px;
  opacity: 0.5;
}

body[data-page="home"] .hero-orchestration::after {
  top: 29px;
  width: 116px;
  height: 52px;
  opacity: 0.42;
}

body[data-page="home"] .hero-orchestration__signal {
  left: 26px;
  top: 29px;
  width: calc(var(--flow-complete) - 26px);
}

body[data-page="home"] .hero-flow-node {
  min-height: 76px;
  align-content: start;
  gap: 5px;
  padding: 38px 8px 0;
  opacity: 0.66;
}

body[data-page="home"] .hero-flow-node::before,
body[data-page="home"] .hero-flow-node::after {
  top: 29px;
}

body[data-page="home"] .hero-flow-node small {
  font-size: 10px;
}

body[data-page="home"] .hero-flow-node strong {
  font-size: 14px;
  line-height: 1.06;
}

body[data-page="home"] .hero-flow-node em {
  max-width: 140px;
  font-size: 11px;
  line-height: 1.18;
}

body[data-page="home"] .hero-flow-node.is-active {
  transform: translateY(-2px);
}

body[data-page="home"] .aurea-function-console .section-scroll-cue {
  bottom: calc(var(--hero-strip-offset, 24px) + 14px);
}

@media (min-width: 1121px) and (max-height: 820px) {
  body[data-page="home"] {
    --type-hero-mark: 58px;
    --type-hero-title: 35px;
    --type-panel-title: 34px;
    --type-lead: 16px;
  }

  body[data-page="home"] .aurea-function-console {
    --hero-top-space: clamp(78px, 9svh, 96px);
    --hero-bottom-space: clamp(160px, 21svh, 190px);
    --hero-strip-offset: 18px;
  }

  body[data-page="home"] .function-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.56fr);
    gap: clamp(28px, 4vw, 64px);
  }

  body[data-page="home"] .hero-slide-copy {
    margin-top: 12px;
  }

  body[data-page="home"] .hero-slide-copy h2 {
    margin-top: 8px;
  }

  body[data-page="home"] .hero-line {
    margin-top: 12px;
  }

  body[data-page="home"] .hero-commands {
    margin-top: 22px;
  }

  body[data-page="home"] .hero-orchestration {
    bottom: calc(var(--hero-strip-offset, 18px) + 84px);
    min-height: 86px;
    padding-block: 10px;
  }

  body[data-page="home"] .hero-flow-node {
    min-height: 64px;
    padding-top: 34px;
  }
}

@media (max-width: 1120px) {
  body[data-page="home"] {
    --type-hero-mark: 56px;
    --type-hero-title: 34px;
    --type-panel-title: 34px;
    --type-lead: 17px;
  }

  body[data-page="home"] .aurea-function-console {
    --hero-bottom-space: clamp(178px, 22svh, 210px);
  }

  body[data-page="home"] .function-grid {
    width: min(860px, calc(100% - 48px));
    grid-template-columns: 1fr;
    gap: clamp(22px, 3svh, 32px);
  }

  body[data-page="home"] .hero-infographic-stage .infographic {
    place-items: center start;
  }

  body[data-page="home"] .hero-orchestration {
    width: min(780px, calc(100% - 44px));
    min-height: 78px;
    bottom: calc(var(--hero-strip-offset, 20px) + 82px);
    padding: 12px 14px 10px;
  }

  body[data-page="home"] .hero-orchestration::before,
  body[data-page="home"] .hero-orchestration::after,
  body[data-page="home"] .hero-orchestration__signal,
  body[data-page="home"] .hero-flow-node::before,
  body[data-page="home"] .hero-flow-node::after {
    top: 24px;
  }

  body[data-page="home"] .hero-flow-node {
    min-height: 54px;
    padding-top: 32px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] {
    --type-hero-mark: 42px;
    --type-hero-title: 25px;
    --type-panel-title: 30px;
    --type-lead: 15px;
  }

  body[data-page="home"] .aurea-function-console {
    --hero-top-space: clamp(126px, 15svh, 146px);
    --hero-bottom-space: clamp(82px, 11svh, 104px);
    --hero-strip-offset: 12px;
  }

  body[data-page="home"] .function-grid {
    width: min(100% - 32px, 1180px);
    min-height: clamp(620px, 94svh, 820px);
    gap: clamp(12px, 2.6svh, 20px);
    align-content: start;
  }

  body[data-page="home"] .function-copy > h1 {
    max-width: 100%;
  }

  body[data-page="home"] .hero-slide-copy h2 {
    max-width: min(100%, 350px);
    line-height: 1.13;
  }

  body[data-page="home"] .hero-line {
    line-height: 1.42;
  }

  body[data-page="home"] .hud-topline strong {
    font-size: var(--type-panel-title);
  }

  body[data-page="home"] .aurea-function-console .section-scroll-cue {
    bottom: calc(var(--hero-strip-offset, 12px) + 2px);
  }
}

/* Home hero slider HUD: richer visual modules with stable slide formatting. */
body[data-page="home"] .hero-infographic-stage {
  min-height: clamp(340px, 40svh, 440px);
}

body[data-page="home"] .hero-infographic-stage .infographic {
  padding: 0;
  place-items: center;
}

body[data-page="home"] .hud-module {
  position: relative;
  width: min(460px, 100%);
  min-height: clamp(330px, 40svh, 420px);
  display: grid;
  grid-template-rows: auto minmax(150px, 1fr) auto;
  align-content: stretch;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--v2-radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.018)),
    radial-gradient(circle at 18% 12%, color-mix(in srgb, var(--module-color, var(--v2-gold)) 14%, transparent), transparent 34%),
    rgba(4, 7, 11, 0.54) !important;
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
  padding: clamp(18px, 2vw, 24px) !important;
  backdrop-filter: blur(18px) saturate(125%);
}

body[data-page="home"] .hud-module::before,
body[data-page="home"] .hud-module::after {
  content: "";
  position: absolute;
  display: block !important;
  pointer-events: none;
}

body[data-page="home"] .hud-module::before {
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: var(--v2-radius-xs);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--module-color, var(--v2-gold)) 64%, transparent), transparent) left top / 72px 1px no-repeat,
    linear-gradient(180deg, color-mix(in srgb, var(--module-color, var(--v2-gold)) 54%, transparent), transparent) left top / 1px 72px no-repeat,
    linear-gradient(270deg, rgba(255, 255, 255, 0.18), transparent) right bottom / 72px 1px no-repeat;
  opacity: 0.76;
}

body[data-page="home"] .hud-module::after {
  inset: -30% -18%;
  opacity: 0.2;
  background:
    linear-gradient(90deg, transparent, color-mix(in srgb, var(--module-color, var(--v2-gold)) 40%, transparent), transparent),
    radial-gradient(circle at 54% 48%, color-mix(in srgb, var(--module-color, var(--v2-cyan)) 22%, transparent), transparent 44%);
  filter: blur(22px);
  transform: translateX(-30%);
}

body[data-page="home"] .hud-topline {
  min-height: 0;
  gap: 7px;
  padding: 0 0 0 16px;
}

body[data-page="home"] .hud-topline::before {
  height: min(100%, 78px);
}

body[data-page="home"] .hud-topline::after {
  bottom: -10px;
  width: 96px;
}

body[data-page="home"] .hud-topline span {
  font-size: 12px;
}

body[data-page="home"] .hud-topline strong {
  max-width: 390px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 0.98;
}

body[data-page="home"] .persona-map,
body[data-page="home"] .voice-hud-grid,
body[data-page="home"] .nfc-handoff,
body[data-page="home"] .light-stage-map,
body[data-page="home"] .intel-dashboard {
  min-height: 0;
  display: grid !important;
}

body[data-page="home"] .hud-ring,
body[data-page="home"] .nfc-signal i,
body[data-page="home"] .nfc-signal::after,
body[data-page="home"] .voice-wave::after,
body[data-page="home"] .intel-dashboard .intel-panel::after {
  display: block !important;
}

body[data-page="home"] .persona-map,
body[data-page="home"] .voice-hud-grid,
body[data-page="home"] .nfc-handoff,
body[data-page="home"] .light-stage-map,
body[data-page="home"] .intel-dashboard,
body[data-page="home"] .hud-dock,
body[data-page="home"] .hud-metrics,
body[data-page="home"] .hud-module .light-timeline {
  position: relative;
  z-index: 2;
}

body[data-page="home"] .persona-map {
  min-height: 170px;
  place-items: center;
}

body[data-page="home"] .hud-ring--outer {
  width: min(72%, 280px);
}

body[data-page="home"] .hud-ring--inner {
  width: min(46%, 180px);
}

body[data-page="home"] .persona-core,
body[data-page="home"] .voice-orb,
body[data-page="home"] .hud-module .nfc-token {
  width: 104px;
  height: 104px;
}

body[data-page="home"] .persona-core strong {
  font-size: 24px;
}

body[data-page="home"] .persona-node {
  display: none;
}

body[data-page="home"] .persona-node.node-a { top: 14%; left: 0; }
body[data-page="home"] .persona-node.node-b { top: 18%; right: 0; }
body[data-page="home"] .persona-node.node-c { bottom: 18%; left: 2%; }
body[data-page="home"] .persona-node.node-d { right: 1%; bottom: 18%; }

body[data-page="home"] .voice-hud-grid {
  grid-template-columns: 0.74fr 1fr;
  grid-template-rows: minmax(94px, 1fr) auto;
  gap: 12px;
  align-items: center;
}

body[data-page="home"] .voice-wave {
  height: clamp(96px, 15svh, 132px);
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--v2-radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.044), rgba(255, 255, 255, 0.016)),
    rgba(2, 8, 11, 0.22);
}

body[data-page="home"] .voice-wave i {
  width: 5px;
}

body[data-page="home"] .voice-script {
  grid-column: 1 / -1;
}

body[data-page="home"] .nfc-handoff {
  grid-template-columns: 104px minmax(52px, 0.44fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

body[data-page="home"] .nfc-signal {
  gap: 12px;
}

body[data-page="home"] .handoff-card,
body[data-page="home"] .voice-script,
body[data-page="home"] .light-pulse-card,
body[data-page="home"] .intel-dashboard .intel-panel {
  border-radius: var(--v2-radius-sm);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--module-color, var(--v2-gold)) 11%, transparent), transparent),
    rgba(255, 255, 255, 0.042);
}

body[data-page="home"] .voice-script,
body[data-page="home"] .handoff-card,
body[data-page="home"] .light-pulse-card {
  padding: 14px;
}

body[data-page="home"] .voice-script strong,
body[data-page="home"] .handoff-card strong,
body[data-page="home"] .light-pulse-card strong,
body[data-page="home"] .intel-dashboard strong {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
}

body[data-page="home"] .voice-script em,
body[data-page="home"] .handoff-card em,
body[data-page="home"] .light-pulse-card em,
body[data-page="home"] .intel-dashboard em {
  font-size: 12px;
  line-height: 1.35;
}

body[data-page="home"] .light-stage-map {
  grid-template-columns: 0.62fr 0.76fr 0.62fr minmax(138px, 1.18fr);
  gap: 10px;
  align-items: stretch;
}

body[data-page="home"] .light-stage-map .light-column {
  min-height: clamp(142px, 22svh, 204px);
  border-radius: 999px;
}

body[data-page="home"] .light-pulse-card {
  min-height: 0;
}

body[data-page="home"] .intel-dashboard {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(92px, auto);
  gap: 10px;
}

body[data-page="home"] .intel-dashboard .intel-panel {
  min-height: 0;
  padding: 13px;
}

body[data-page="home"] .hud-module--intel {
  grid-template-rows: auto minmax(172px, 1fr) auto;
}

body[data-page="home"] .hud-module--intel .hud-topline strong {
  max-width: 340px;
  font-size: clamp(27px, 2.55vw, 34px);
}

body[data-page="home"] .hud-module--intel .intel-dashboard {
  margin-top: 8px;
  grid-auto-rows: minmax(76px, auto);
  align-content: stretch;
}

body[data-page="home"] .hud-module--intel .intel-panel {
  align-content: center;
  gap: 4px;
}

body[data-page="home"] .hud-module--intel .intel-dashboard span {
  color: rgba(255, 138, 61, 0.82);
  font-size: 10px;
}

body[data-page="home"] .hud-module--intel .intel-dashboard strong {
  font-family: var(--font-display);
  font-size: clamp(21px, 1.9vw, 27px);
  font-weight: 780;
  line-height: 1;
  text-transform: none;
}

body[data-page="home"] .hud-module--intel .intel-dashboard em {
  color: rgba(247, 251, 255, 0.68);
  font-size: 12px;
}

body[data-page="home"] .intel-dashboard .intel-panel--wide {
  grid-column: 1 / -1;
}

body[data-page="home"] .hud-module--intel .intel-dashboard .intel-panel--wide strong {
  font-size: clamp(23px, 2.25vw, 30px);
}

body[data-page="home"] .hud-module--voice {
  grid-template-rows: auto minmax(156px, 1fr) auto;
}

body[data-page="home"] .hud-module--voice .hud-topline strong {
  font-size: clamp(27px, 2.45vw, 35px);
}

body[data-page="home"] .hud-module--voice .voice-hud-grid {
  min-height: 0;
  grid-template-columns: 96px minmax(0, 1fr);
  grid-template-rows: 94px minmax(76px, auto);
  overflow: hidden;
}

body[data-page="home"] .hud-module--voice .voice-orb {
  width: 92px;
  height: 92px;
}

body[data-page="home"] .hud-module--voice .voice-wave {
  width: 100%;
  min-width: 0;
  height: 88px;
  overflow: hidden;
}

body[data-page="home"] .hud-module--voice .voice-wave i {
  width: 4px;
}

body[data-page="home"] .hud-module--voice .voice-script {
  min-height: 0;
  gap: 4px;
  padding: 11px 12px;
  overflow: hidden;
}

body[data-page="home"] .hud-module--voice .voice-script strong {
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.04;
}

body[data-page="home"] .hud-module--voice .voice-script em {
  font-size: 11px;
}

body[data-page="home"] .hud-module--nfc .handoff-card strong {
  font-size: clamp(22px, 2vw, 28px);
}

body[data-page="home"] .hud-module--nfc {
  grid-template-rows: auto minmax(150px, 1fr) auto;
}

body[data-page="home"] .hud-module--nfc .nfc-handoff {
  grid-template-columns: 92px minmax(42px, 0.36fr) minmax(0, 1fr);
  gap: 10px;
}

body[data-page="home"] .hud-module--nfc .nfc-token {
  width: 92px;
  height: 92px;
}

body[data-page="home"] .hud-module--nfc .nfc-token strong {
  font-size: 28px;
}

body[data-page="home"] .hud-module--nfc .handoff-card {
  gap: 5px;
  padding: 12px;
}

body[data-page="home"] .hud-module--nfc .handoff-card strong {
  font-size: clamp(20px, 1.85vw, 25px);
  line-height: 1.03;
}

body[data-page="home"] .hud-module--nfc .handoff-card em {
  font-size: 11px;
}

body[data-page="home"] .hud-module--nfc .hud-dock span {
  min-height: 38px;
  align-items: center;
  padding: 7px 8px;
  font-size: 12px;
}

body[data-page="home"] .hud-module--light .hud-topline strong {
  font-size: clamp(26px, 2.45vw, 34px);
}

body[data-page="home"] .hud-module--light .light-pulse-card {
  padding: 12px;
}

body[data-page="home"] .hud-module--light .light-pulse-card strong {
  font-size: clamp(23px, 2vw, 28px);
  line-height: 1.03;
}

body[data-page="home"] .hud-dock,
body[data-page="home"] .hud-metrics,
body[data-page="home"] .hud-module .light-timeline {
  display: grid;
  gap: 8px;
  align-items: stretch;
}

body[data-page="home"] .hud-dock,
body[data-page="home"] .hud-module--persona .hud-dock,
body[data-page="home"] .hud-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="home"] .hud-module--nfc .hud-dock,
body[data-page="home"] .hud-module .light-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="home"] .hud-dock span,
body[data-page="home"] .hud-metrics span,
body[data-page="home"] .hud-module .light-timeline span {
  min-width: 0;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.095) !important;
  border-radius: var(--v2-radius-xs);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.014)),
    rgba(2, 8, 11, 0.24) !important;
  padding: 9px 10px;
  text-align: left;
  overflow: hidden;
}

body[data-page="home"] .hud-dock span::before,
body[data-page="home"] .hud-metrics span::before,
body[data-page="home"] .hud-module .light-timeline span::before {
  width: 16px;
  height: 2px;
  border-radius: 999px;
}

body[data-page="home"] .hud-metrics b {
  display: block;
  width: 100%;
}

@media (min-width: 1121px) and (max-height: 820px) {
  body[data-page="home"] .hero-infographic-stage {
    min-height: clamp(300px, calc(100dvh - 300px), 360px);
  }

  body[data-page="home"] .hud-module {
    min-height: clamp(292px, calc(100dvh - 310px), 352px);
    gap: 10px;
    padding: 16px !important;
  }

  body[data-page="home"] .hud-topline strong {
    font-size: clamp(25px, 2.4vw, 32px);
  }

  body[data-page="home"] .persona-map {
    min-height: 142px;
  }

  body[data-page="home"] .persona-core,
  body[data-page="home"] .voice-orb,
  body[data-page="home"] .hud-module .nfc-token {
    width: 90px;
    height: 90px;
  }

  body[data-page="home"] .persona-node {
    min-width: 80px;
    padding: 7px 8px;
  }

  body[data-page="home"] .voice-hud-grid {
    grid-template-rows: minmax(78px, 1fr) auto;
  }

  body[data-page="home"] .voice-wave {
    height: 88px;
  }

  body[data-page="home"] .light-stage-map .light-column {
    min-height: 124px;
  }

  body[data-page="home"] .intel-dashboard {
    grid-auto-rows: minmax(74px, auto);
  }

  body[data-page="home"] .hud-module--intel {
    grid-template-rows: auto minmax(148px, 1fr) auto;
  }

  body[data-page="home"] .hud-module--intel .hud-topline strong {
    font-size: clamp(24px, 2.2vw, 30px);
  }

  body[data-page="home"] .hud-module--intel .intel-dashboard {
    margin-top: 4px;
    grid-auto-rows: minmax(66px, auto);
  }

  body[data-page="home"] .hud-module--intel .intel-panel {
    padding: 10px;
  }

  body[data-page="home"] .hud-module--intel .intel-dashboard strong,
  body[data-page="home"] .hud-module--intel .intel-dashboard .intel-panel--wide strong {
    font-size: 22px;
  }

  body[data-page="home"] .hud-module--voice .voice-hud-grid {
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-rows: 78px minmax(66px, auto);
  }

  body[data-page="home"] .hud-module--voice .voice-orb {
    width: 78px;
    height: 78px;
  }

  body[data-page="home"] .hud-module--voice .voice-wave {
    height: 74px;
  }

  body[data-page="home"] .hud-module--voice .voice-script strong {
    font-size: 20px;
  }

  body[data-page="home"] .hud-module--light .light-pulse-card strong {
    font-size: 22px;
  }

  body[data-page="home"] .hud-dock span,
  body[data-page="home"] .hud-metrics span,
  body[data-page="home"] .hud-module .light-timeline span {
    min-height: 36px;
    padding: 7px 8px;
  }
}

@media (max-width: 1120px) {
  body[data-page="home"] .hud-module {
    width: min(520px, 100%);
    min-height: 330px;
  }

  body[data-page="home"] .hero-infographic-stage .infographic {
    place-items: center start;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-infographic-stage {
    min-height: 350px;
  }

  body[data-page="home"] .hud-module {
    width: 100%;
    min-height: 340px;
    gap: 12px;
    padding: 16px !important;
  }

  body[data-page="home"] .hero-infographic-stage .infographic {
    place-items: center;
  }

  body[data-page="home"] .hud-topline strong {
    max-width: 100%;
    font-size: 28px;
  }

  body[data-page="home"] .persona-map {
    min-height: 164px;
  }

  body[data-page="home"] .voice-hud-grid,
  body[data-page="home"] .nfc-handoff,
  body[data-page="home"] .light-stage-map {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .voice-orb,
  body[data-page="home"] .hud-module .nfc-token {
    justify-self: center;
  }

  body[data-page="home"] .voice-wave,
  body[data-page="home"] .nfc-signal,
  body[data-page="home"] .light-stage-map .light-column {
    display: none !important;
  }

  body[data-page="home"] .light-pulse-card,
  body[data-page="home"] .voice-script,
  body[data-page="home"] .handoff-card {
    min-height: 104px;
  }

  body[data-page="home"] .intel-dashboard {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  body[data-page="home"] .intel-dashboard .intel-panel--wide {
    grid-column: auto;
  }

  body[data-page="home"] .hud-module--intel {
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  body[data-page="home"] .hud-module--intel .intel-dashboard {
    grid-auto-rows: auto;
    margin-top: 2px;
  }

  body[data-page="home"] .hud-dock,
  body[data-page="home"] .hud-module--persona .hud-dock,
  body[data-page="home"] .hud-module--nfc .hud-dock,
  body[data-page="home"] .hud-metrics,
  body[data-page="home"] .hud-module .light-timeline {
    grid-template-columns: 1fr;
  }
}

/* Home hero noir pass: no cards, only precision lines and light. */
body[data-page="home"] .hero-orchestration {
  overflow: visible;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
  padding: 0 20px;
}

body[data-page="home"] .hero-orchestration::before {
  left: 20px;
  right: 20px;
  height: 1px;
  opacity: 0.7;
  background:
    linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.34) 8%, rgba(247, 251, 255, 0.22) 52%, rgba(96, 245, 255, 0.16) 78%, transparent),
    linear-gradient(90deg, transparent, color-mix(in srgb, var(--module-color, var(--v2-gold)) 66%, white), transparent);
  box-shadow: 0 0 18px rgba(255, 138, 61, 0.14);
}

body[data-page="home"] .hero-orchestration::after {
  width: 108px;
  height: 42px;
  opacity: 0.42;
  background:
    radial-gradient(ellipse at center, color-mix(in srgb, var(--module-color, var(--v2-gold)) 38%, transparent), transparent 68%);
  filter: blur(10px);
}

body[data-page="home"] .hero-orchestration__signal {
  left: 20px;
  height: 2px;
  width: calc(var(--flow-complete) - 20px);
  background:
    linear-gradient(90deg, rgba(255, 138, 61, 0), rgba(255, 138, 61, 0.86), color-mix(in srgb, var(--module-color, var(--v2-gold)) 70%, white), rgba(247, 251, 255, 0.5));
  box-shadow:
    0 0 16px color-mix(in srgb, var(--module-color, var(--v2-gold)) 24%, transparent),
    0 0 2px rgba(255, 255, 255, 0.44);
}

body[data-page="home"] .hero-flow-node {
  min-height: 72px;
  gap: 3px;
  padding-top: 38px;
}

body[data-page="home"] .hero-flow-node::before {
  width: 7px;
  height: 7px;
  border: 0;
  background: rgba(255, 138, 61, 0.66);
  box-shadow: 0 0 16px rgba(255, 138, 61, 0.18);
}

body[data-page="home"] .hero-flow-node.is-active::before {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--module-color, var(--v2-gold)) 70%, white);
  box-shadow:
    0 0 16px color-mix(in srgb, var(--module-color, var(--v2-gold)) 48%, transparent),
    0 0 44px color-mix(in srgb, var(--module-color, var(--v2-gold)) 24%, transparent);
}

body[data-page="home"] .hero-flow-node small {
  color: rgba(255, 138, 61, 0.78);
  font-size: 9px;
}

body[data-page="home"] .hero-flow-node strong {
  color: rgba(247, 251, 255, 0.74);
  font-size: 13px;
  font-weight: 760;
}

body[data-page="home"] .hero-flow-node em {
  color: rgba(247, 251, 255, 0.42);
  font-size: 10px;
}

body[data-page="home"] .hero-flow-node.is-active strong {
  color: var(--v2-ink);
  text-shadow: 0 0 22px color-mix(in srgb, var(--module-color, var(--v2-gold)) 20%, transparent);
}

body[data-page="home"] .hero-infographic-stage {
  min-height: clamp(320px, 38svh, 420px);
}

body[data-page="home"] .hud-module {
  width: min(430px, 100%);
  min-height: clamp(310px, 38svh, 395px);
  grid-template-rows: auto minmax(132px, 1fr) auto;
  gap: 18px;
  overflow: visible;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  backdrop-filter: none;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.34));
}

body[data-page="home"] .hud-module::before,
body[data-page="home"] .hud-module::after {
  content: "";
  position: absolute;
  display: block !important;
  pointer-events: none;
}

body[data-page="home"] .hud-module::before {
  left: -18px;
  top: 2px;
  bottom: 8px;
  width: 1px;
  background:
    linear-gradient(180deg, transparent, rgba(255, 138, 61, 0.92) 16%, color-mix(in srgb, var(--module-color, var(--v2-gold)) 45%, transparent) 48%, rgba(96, 245, 255, 0.18) 70%, transparent);
  opacity: 0.72;
  box-shadow: 0 0 22px rgba(255, 138, 61, 0.18);
}

body[data-page="home"] .hud-module::after {
  left: -46px;
  top: 28%;
  width: 540px;
  max-width: 120%;
  height: 1px;
  opacity: 0.22;
  background:
    linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.82), color-mix(in srgb, var(--module-color, var(--v2-gold)) 36%, white), transparent);
  transform: rotate(-12deg);
  filter: blur(0.2px);
}

body[data-page="home"] .hud-topline {
  gap: 8px;
  padding-left: 0;
}

body[data-page="home"] .hud-topline::before {
  display: none;
}

body[data-page="home"] .hud-topline::after {
  left: 0;
  bottom: -11px;
  width: 116px;
  max-width: 42%;
  background:
    linear-gradient(90deg, rgba(255, 138, 61, 0.88), color-mix(in srgb, var(--module-color, var(--v2-gold)) 40%, white), transparent);
}

body[data-page="home"] .hud-topline span,
body[data-page="home"] .persona-core small,
body[data-page="home"] .hud-module .nfc-token small,
body[data-page="home"] .voice-orb span,
body[data-page="home"] .handoff-card span,
body[data-page="home"] .light-pulse-card span,
body[data-page="home"] .intel-dashboard span,
body[data-page="home"] .voice-script span {
  color: rgba(255, 138, 61, 0.88);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.01em;
}

body[data-page="home"] .hud-topline strong {
  max-width: 430px;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 0.92;
  text-shadow:
    0 18px 44px rgba(0, 0, 0, 0.62),
    0 0 28px color-mix(in srgb, var(--module-color, var(--v2-gold)) 12%, transparent);
}

body[data-page="home"] .persona-core,
body[data-page="home"] .voice-orb,
body[data-page="home"] .hud-module .nfc-token,
body[data-page="home"] .persona-node,
body[data-page="home"] .voice-script,
body[data-page="home"] .handoff-card,
body[data-page="home"] .light-pulse-card,
body[data-page="home"] .intel-dashboard .intel-panel,
body[data-page="home"] .voice-wave {
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
}

body[data-page="home"] .persona-core,
body[data-page="home"] .voice-orb,
body[data-page="home"] .hud-module .nfc-token {
  background:
    radial-gradient(circle at center, color-mix(in srgb, var(--module-color, var(--v2-gold)) 12%, transparent), transparent 62%) !important;
}

body[data-page="home"] .hud-ring {
  border-color: color-mix(in srgb, var(--module-color, var(--v2-gold)) 32%, transparent);
  opacity: 0.7;
}

body[data-page="home"] .persona-node,
body[data-page="home"] .voice-script,
body[data-page="home"] .handoff-card,
body[data-page="home"] .light-pulse-card,
body[data-page="home"] .intel-dashboard .intel-panel {
  position: relative;
  padding: 10px 0 0;
}

body[data-page="home"] .persona-node::before,
body[data-page="home"] .voice-script::before,
body[data-page="home"] .handoff-card::before,
body[data-page="home"] .light-pulse-card::before,
body[data-page="home"] .intel-dashboard .intel-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--module-color, var(--v2-gold)) 58%, var(--v2-gold));
  box-shadow: 0 0 16px color-mix(in srgb, var(--module-color, var(--v2-gold)) 18%, transparent);
}

body[data-page="home"] .persona-node em,
body[data-page="home"] .persona-node b,
body[data-page="home"] .voice-script strong,
body[data-page="home"] .handoff-card strong,
body[data-page="home"] .light-pulse-card strong,
body[data-page="home"] .intel-dashboard strong {
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.56);
}

body[data-page="home"] .persona-node em {
  font-size: 9px;
}

body[data-page="home"] .persona-node b {
  font-size: 11px;
}

body[data-page="home"] .voice-script,
body[data-page="home"] .handoff-card,
body[data-page="home"] .light-pulse-card {
  padding-top: 12px;
}

body[data-page="home"] .nfc-signal i {
  height: 1px;
  opacity: 0.64;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.72), color-mix(in srgb, var(--module-color, var(--v2-gold)) 34%, white), transparent);
}

body[data-page="home"] .nfc-signal::after {
  width: 8px;
  height: 8px;
  background: rgba(255, 138, 61, 0.86);
  box-shadow: 0 0 22px rgba(255, 138, 61, 0.34);
}

body[data-page="home"] .voice-wave {
  height: 82px;
}

body[data-page="home"] .voice-wave::after,
body[data-page="home"] .intel-dashboard .intel-panel::after {
  display: none !important;
}

body[data-page="home"] .voice-wave i {
  width: 4px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(96, 245, 255, 0.9), rgba(255, 138, 61, 0.82) 58%, rgba(255, 79, 216, 0.66));
  box-shadow: 0 0 18px rgba(96, 245, 255, 0.18);
}

body[data-page="home"] .light-stage-map .light-column {
  border: 0;
  border-radius: 999px;
  opacity: 0.78;
  background:
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--module-color, var(--v2-gold)) 22%, transparent) 42%, rgba(255, 138, 61, 0.14) 58%, transparent),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  box-shadow: 0 0 44px color-mix(in srgb, var(--module-color, var(--v2-gold)) 13%, transparent);
}

body[data-page="home"] .hud-dock,
body[data-page="home"] .hud-metrics,
body[data-page="home"] .hud-module .light-timeline {
  gap: 14px;
  align-items: start;
}

body[data-page="home"] .hud-dock span,
body[data-page="home"] .hud-metrics span,
body[data-page="home"] .hud-module .light-timeline span {
  min-height: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  padding: 9px 0 0;
  color: rgba(247, 251, 255, 0.62);
  font-size: 12px;
}

body[data-page="home"] .hud-dock span::before,
body[data-page="home"] .hud-metrics span::before,
body[data-page="home"] .hud-module .light-timeline span::before {
  width: 22px;
  height: 2px;
  background: color-mix(in srgb, var(--module-color, var(--v2-gold)) 56%, var(--v2-gold));
}

body[data-page="home"] .hud-module--nfc .hud-dock span {
  min-height: 0;
  align-items: flex-start;
  padding: 9px 0 0;
}

body[data-page="home"] .hud-module--nfc .handoff-card {
  padding: 12px 0 0;
}

body[data-page="home"] .hud-module--intel .intel-panel {
  padding: 12px 0 0;
}

body[data-page="home"] .hud-module--intel .intel-dashboard {
  gap: 16px 20px;
}

body[data-page="home"] .hud-module--light .light-pulse-card {
  padding: 12px 0 0;
}

@media (min-width: 1121px) and (max-height: 820px) {
  body[data-page="home"] .hud-module {
    min-height: clamp(286px, calc(100dvh - 320px), 344px);
    gap: 14px;
    padding: 0 !important;
  }

  body[data-page="home"] .hud-topline strong {
    font-size: clamp(30px, 2.8vw, 38px);
  }

  body[data-page="home"] .hud-module--intel .hud-topline strong,
  body[data-page="home"] .hud-module--voice .hud-topline strong,
  body[data-page="home"] .hud-module--light .hud-topline strong {
    font-size: clamp(27px, 2.4vw, 34px);
  }
}

@media (max-width: 1120px) {
  body[data-page="home"] .hero-orchestration {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-inline: 10px;
  }

  body[data-page="home"] .hud-module {
    width: min(470px, 100%);
    min-height: 330px;
    padding: 0 !important;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .hud-module {
    width: calc(100% - 22px);
    min-height: 340px;
    padding: 0 !important;
  }

  body[data-page="home"] .hud-module::before {
    left: -12px;
  }

  body[data-page="home"] .hud-topline strong {
    font-size: 32px;
  }

  body[data-page="home"] .persona-node,
  body[data-page="home"] .voice-script,
  body[data-page="home"] .handoff-card,
  body[data-page="home"] .light-pulse-card,
  body[data-page="home"] .intel-dashboard .intel-panel {
    padding-top: 10px;
  }
}

/* Home hero editorial HUD: quieter, no gimmick geometry. */
body[data-page="home"] .hero-orchestration__signal::after,
body[data-page="home"] .hero-flow-node::after,
body[data-page="home"] .hud-ring,
body[data-page="home"] .persona-map::before,
body[data-page="home"] .voice-hud-grid::before,
body[data-page="home"] .nfc-handoff::before,
body[data-page="home"] .light-stage-map::before,
body[data-page="home"] .intel-dashboard::before,
body[data-page="home"] .nfc-signal::after,
body[data-page="home"] .light-stage-map .light-column {
  display: none !important;
}

body[data-page="home"] .hero-flow-node::before {
  width: 13px;
  height: 1px;
  border-radius: 0;
  background: rgba(255, 138, 61, 0.5);
  box-shadow: none;
}

body[data-page="home"] .hero-flow-node.is-active::before {
  width: 26px;
  height: 2px;
  border-radius: 0;
}

body[data-page="home"] .hero-orchestration::after {
  opacity: 0.18;
  filter: blur(12px);
}

body[data-page="home"] .hud-module {
  grid-template-rows: auto minmax(104px, 1fr) auto;
  gap: 20px;
}

body[data-page="home"] .hud-module::before {
  opacity: 0.52;
}

body[data-page="home"] .hud-module::after {
  height: 1px;
  opacity: 0.16;
  background:
    linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.42), rgba(247, 251, 255, 0.14), transparent);
}

body[data-page="home"] .hud-topline span,
body[data-page="home"] .persona-core small,
body[data-page="home"] .hud-module .nfc-token small,
body[data-page="home"] .voice-orb span,
body[data-page="home"] .handoff-card span,
body[data-page="home"] .light-pulse-card span,
body[data-page="home"] .intel-dashboard span,
body[data-page="home"] .voice-script span {
  color: rgba(255, 138, 61, 0.82);
  font-size: 10px;
  font-weight: 760;
}

body[data-page="home"] .hud-topline strong {
  max-width: 440px;
  font-size: clamp(31px, 2.8vw, 42px);
  line-height: 0.96;
}

body[data-page="home"] .persona-map {
  min-height: 128px;
  display: grid !important;
  place-items: start;
  align-content: center;
}

body[data-page="home"] .persona-core,
body[data-page="home"] .voice-orb,
body[data-page="home"] .hud-module .nfc-token {
  width: auto;
  height: auto;
  display: grid;
  place-items: start;
  gap: 7px;
  background: transparent !important;
  animation: none !important;
}

body[data-page="home"] .persona-core strong,
body[data-page="home"] .hud-module .nfc-token strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 0.98;
  text-transform: none;
}

body[data-page="home"] .persona-core::after,
body[data-page="home"] .hud-module .nfc-token::after,
body[data-page="home"] .voice-orb::after {
  content: "";
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--module-color, var(--v2-gold)) 56%, var(--v2-gold)), transparent);
}

body[data-page="home"] .voice-orb {
  display: none;
}

body[data-page="home"] .voice-hud-grid {
  grid-template-columns: 1fr;
  grid-template-rows: 34px auto;
  gap: 16px;
  align-content: center;
}

body[data-page="home"] .hud-module--voice .voice-hud-grid {
  grid-template-columns: 1fr;
  grid-template-rows: 34px auto;
}

body[data-page="home"] .voice-wave {
  position: relative;
  width: min(330px, 100%);
  height: 24px;
  display: block;
  opacity: 0.9;
}

body[data-page="home"] .voice-wave i {
  display: none !important;
}

body[data-page="home"] .voice-wave::before {
  content: "";
  position: absolute;
  left: 0;
  right: 12%;
  top: 50%;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(96, 245, 255, 0.5), rgba(255, 138, 61, 0.58), transparent);
  transform: translateY(-50%);
}

body[data-page="home"] .voice-script strong,
body[data-page="home"] .handoff-card strong,
body[data-page="home"] .light-pulse-card strong,
body[data-page="home"] .intel-dashboard strong {
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1;
}

body[data-page="home"] .nfc-handoff {
  grid-template-columns: minmax(84px, 0.46fr) minmax(72px, 0.4fr) minmax(0, 1fr);
  gap: 24px;
}

body[data-page="home"] .hud-module--nfc .nfc-handoff {
  grid-template-columns: minmax(84px, 0.46fr) minmax(72px, 0.4fr) minmax(0, 1fr);
  gap: 24px;
}

body[data-page="home"] .nfc-signal {
  gap: 8px;
}

body[data-page="home"] .nfc-signal i {
  height: 1px;
  animation: none !important;
}

body[data-page="home"] .nfc-signal span {
  color: rgba(247, 251, 255, 0.48);
  font-size: 10px;
  line-height: 1.2;
  text-transform: none;
}

body[data-page="home"] .light-stage-map {
  grid-template-columns: minmax(0, 1fr);
  min-height: 108px;
  align-content: center;
}

body[data-page="home"] .light-pulse-card {
  width: min(360px, 100%);
}

body[data-page="home"] .hud-module--light .light-pulse-card strong {
  font-size: clamp(27px, 2.35vw, 36px);
}

body[data-page="home"] .intel-dashboard {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 20px 30px;
}

body[data-page="home"] .hud-module--intel .intel-dashboard {
  gap: 14px 30px;
}

body[data-page="home"] .hud-module--intel .intel-dashboard strong {
  font-size: clamp(22px, 1.8vw, 27px);
}

body[data-page="home"] .hud-module--intel .intel-dashboard .intel-panel--wide strong {
  font-size: clamp(25px, 2.1vw, 31px);
}

body[data-page="home"] .hud-module--intel .intel-dashboard em {
  display: none;
}

body[data-page="home"] .hud-dock,
body[data-page="home"] .hud-metrics,
body[data-page="home"] .hud-module .light-timeline {
  gap: 18px;
}

body[data-page="home"] .hud-dock span,
body[data-page="home"] .hud-metrics span,
body[data-page="home"] .hud-module .light-timeline span {
  color: rgba(247, 251, 255, 0.56);
  font-size: 11px;
}

body[data-page="home"] .hud-dock span::before,
body[data-page="home"] .hud-metrics span::before,
body[data-page="home"] .hud-module .light-timeline span::before,
body[data-page="home"] .voice-script::before,
body[data-page="home"] .handoff-card::before,
body[data-page="home"] .light-pulse-card::before,
body[data-page="home"] .intel-dashboard .intel-panel::before {
  width: 18px;
  height: 1px;
  box-shadow: none;
}

@media (min-width: 1121px) and (max-height: 820px) {
  body[data-page="home"] .hud-module {
    grid-template-rows: auto minmax(88px, 1fr) auto;
  }

  body[data-page="home"] .hud-topline strong,
  body[data-page="home"] .hud-module--intel .hud-topline strong,
  body[data-page="home"] .hud-module--voice .hud-topline strong,
  body[data-page="home"] .hud-module--light .hud-topline strong {
    font-size: clamp(28px, 2.35vw, 34px);
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .hud-module {
    min-height: 300px;
    grid-template-rows: auto minmax(90px, 1fr) auto;
  }

  body[data-page="home"] .hud-topline strong {
    font-size: 30px;
  }

  body[data-page="home"] .persona-map {
    min-height: 112px;
  }

  body[data-page="home"] .nfc-handoff,
  body[data-page="home"] .hud-module--nfc .nfc-handoff,
  body[data-page="home"] .intel-dashboard {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-page="home"] .nfc-signal {
    display: none;
  }
}

/* Subpage premium editorial pass: quiet surfaces, precise rules, image-led pages. */
body.v2-page:not([data-page="home"]) {
  background: #05070a;
}

body.v2-page:not([data-page="home"]) main {
  background:
    linear-gradient(180deg, #05070a 0, #05070a 34%, #06090d 100%);
}

body.v2-page:not([data-page="home"]) .page-hero,
body.v2-page:not([data-page="home"]) .case-hero-v2 {
  min-height: clamp(640px, 86svh, 900px);
  align-items: end;
  background: #05070a;
}

body.v2-page:not([data-page="home"]) .page-hero-bg img,
body.v2-page:not([data-page="home"]) .page-hero-bg video,
body.v2-page:not([data-page="home"]) .case-hero-bg img,
body.v2-page:not([data-page="home"]) .case-hero-bg video,
body[data-page="brief"] .brief-bg img,
body[data-page="brief"] .brief-bg video {
  transform: scale(1.03);
  filter: saturate(0.96) contrast(1.06) brightness(0.84);
}

body.v2-page:not([data-page="home"]) .cinematic-vignette {
  background:
    linear-gradient(90deg, rgba(1, 2, 4, 0.94) 0%, rgba(3, 5, 8, 0.7) 34%, rgba(3, 4, 7, 0.24) 64%, rgba(3, 4, 7, 0.72) 100%),
    linear-gradient(180deg, rgba(3, 4, 6, 0.12) 0%, rgba(3, 4, 6, 0.3) 45%, #05070a 100%),
    linear-gradient(128deg, rgba(255, 138, 61, 0.12), transparent 28%, rgba(96, 245, 255, 0.07) 58%, transparent 78%);
}

body[data-page="brief"] .brief-stage::after {
  background:
    linear-gradient(90deg, rgba(1, 2, 4, 0.94), rgba(3, 5, 8, 0.7) 46%, rgba(3, 4, 7, 0.9)),
    linear-gradient(180deg, rgba(5, 7, 10, 0.24), #05070a 100%);
}

body.v2-page:not([data-page="home"]) .page-hero::after,
body.v2-page:not([data-page="home"]) .case-hero-v2::after,
body[data-page="brief"] .brief-stage::before {
  opacity: 0 !important;
  animation: none !important;
}

body.v2-page:not([data-page="home"]) .page-hero-copy,
body.v2-page:not([data-page="home"]) .case-hero-copy {
  padding: clamp(148px, 17svh, 190px) 0 clamp(128px, 16svh, 176px);
}

body.v2-page:not([data-page="home"]) .page-hero-copy::before,
body.v2-page:not([data-page="home"]) .case-hero-copy::before,
body[data-page="brief"] .brief-intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(146px, 17svh, 188px);
  width: 1px;
  height: 112px;
  background:
    linear-gradient(180deg, rgba(255, 138, 61, 0), rgba(255, 138, 61, 0.78), rgba(96, 245, 255, 0.22), rgba(255, 138, 61, 0));
  opacity: 0.72;
  pointer-events: none;
}

body.v2-page:not([data-page="home"]) .page-hero--right .page-hero-copy::before {
  left: auto;
  right: 0;
}

body.v2-page:not([data-page="home"]) .page-hero--center .page-hero-copy::before {
  left: 50%;
  top: clamp(132px, 15svh, 170px);
  height: 72px;
  transform: translateX(-50%);
}

body.v2-page:not([data-page="home"]) .page-hero-copy h1,
body.v2-page:not([data-page="home"]) .case-hero-copy h1,
body[data-page="brief"] .brief-intro h1 {
  max-width: 900px;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 0.98;
  text-shadow:
    0 20px 54px rgba(0, 0, 0, 0.58),
    0 1px 0 rgba(255, 255, 255, 0.035);
}

body[data-page="realizacja"] .case-hero-copy h1 {
  max-width: 980px;
  font-size: clamp(42px, 5vw, 64px);
}

body.v2-page:not([data-page="home"]) .hero-line,
body[data-page="brief"] .brief-intro p:not(.kicker) {
  max-width: 680px;
  color: rgba(247, 251, 255, 0.74);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.52);
  hyphens: none;
  overflow-wrap: break-word;
}

body.v2-page:not([data-page="home"]) .page-hero--right .hero-line {
  max-width: 760px;
  justify-self: end;
}

body.v2-page:not([data-page="home"]) .kicker {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  color: rgba(255, 138, 61, 0.92);
  font-weight: 740;
}

body.v2-page:not([data-page="home"]) .kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: min(112px, 62%);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 138, 61, 0.72), rgba(96, 245, 255, 0.22), transparent);
  opacity: 0.72;
}

body.v2-page:not([data-page="home"]) .page-hero--right .kicker::after {
  left: auto;
  right: 0;
}

body.v2-page:not([data-page="home"]) .page-hero--center .kicker::after {
  left: 50%;
  transform: translateX(-50%);
}

body.v2-page:not([data-page="home"]) .hero-support {
  gap: 16px 22px;
  margin-top: clamp(30px, 4svh, 48px);
}

body.v2-page:not([data-page="home"]) .hero-support span {
  position: relative;
  min-height: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  color: rgba(247, 251, 255, 0.7);
  padding: 0 0 0 26px;
  box-shadow: none !important;
  text-align: left;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  text-transform: none;
}

body.v2-page:not([data-page="home"]) .hero-support span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 138, 61, 0.84), rgba(96, 245, 255, 0.24));
  transform: translateY(-50%);
}

body.v2-page:not([data-page="home"]) .page-hero--center .hero-support span {
  text-align: center;
}

body.v2-page:not([data-page="home"]) .cinematic-band,
body.v2-page:not([data-page="home"]) .system-map,
body.v2-page:not([data-page="home"]) .tech-pitch,
body.v2-page:not([data-page="home"]) .case-vision,
body.v2-page:not([data-page="home"]) .usecase-wall,
body.v2-page:not([data-page="home"]) .timeline-cinema,
body.v2-page:not([data-page="home"]) .case-sequence,
body.v2-page:not([data-page="home"]) .gallery-experience,
body.v2-page:not([data-page="home"]) .video-gallery,
body.v2-page:not([data-page="home"]) .voice-stage,
body.v2-page:not([data-page="home"]) .music-stage,
body.v2-page:not([data-page="home"]) .media-cta-band,
body.v2-page:not([data-page="home"]) .case-conference-reel {
  position: relative;
  isolation: isolate;
}

body.v2-page:not([data-page="home"]) .cinematic-band::before,
body.v2-page:not([data-page="home"]) .tech-pitch::before,
body.v2-page:not([data-page="home"]) .case-vision::before,
body.v2-page:not([data-page="home"]) .gallery-experience::before,
body.v2-page:not([data-page="home"]) .video-gallery::before,
body.v2-page:not([data-page="home"]) .voice-stage::before,
body.v2-page:not([data-page="home"]) .music-stage::before,
body.v2-page:not([data-page="home"]) .case-conference-reel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.22), rgba(96, 245, 255, 0.14), transparent);
  opacity: 0.72;
  pointer-events: none;
}

body.v2-page:not([data-page="home"]) .signal-card,
body.v2-page:not([data-page="home"]) .system-node,
body.v2-page:not([data-page="home"]) .tech-stack-card,
body.v2-page:not([data-page="home"]) .usecase-tile,
body.v2-page:not([data-page="home"]) .timeline-step,
body.v2-page:not([data-page="home"]) .sequence-panel,
body.v2-page:not([data-page="home"]) .case-vision__cards article,
body.v2-page:not([data-page="home"]) .media-cta-card,
body.v2-page:not([data-page="home"]) .media-rights-card,
body.v2-page:not([data-page="home"]) .gallery-toolbar,
body.v2-page:not([data-page="home"]) .gallery-section-head,
body.v2-page:not([data-page="home"]) .video-gallery__head,
body.v2-page:not([data-page="home"]) .voice-console,
body.v2-page:not([data-page="home"]) .sound-console,
body.v2-page:not([data-page="home"]) .sound-state-grid,
body.v2-page:not([data-page="home"]) .transcript-panel,
body.v2-page:not([data-page="home"]) .aurea-conference-card,
body.v2-page:not([data-page="home"]) .split-panel,
body[data-page="brief"] .wizard-form {
  overflow: visible;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
}

body.v2-page:not([data-page="home"]) .signal-card,
body.v2-page:not([data-page="home"]) .system-node,
body.v2-page:not([data-page="home"]) .tech-stack-card,
body.v2-page:not([data-page="home"]) .usecase-tile,
body.v2-page:not([data-page="home"]) .timeline-step,
body.v2-page:not([data-page="home"]) .sequence-panel,
body.v2-page:not([data-page="home"]) .case-vision__cards article,
body.v2-page:not([data-page="home"]) .media-cta-card {
  min-height: 0;
  padding: clamp(22px, 2.6vw, 34px) clamp(18px, 2.4vw, 30px) clamp(24px, 2.8vw, 38px);
}

body.v2-page:not([data-page="home"]) .signal-card::before,
body.v2-page:not([data-page="home"]) .system-node::before,
body.v2-page:not([data-page="home"]) .tech-stack-card::before,
body.v2-page:not([data-page="home"]) .usecase-tile::before,
body.v2-page:not([data-page="home"]) .timeline-step::before,
body.v2-page:not([data-page="home"]) .sequence-panel::before,
body.v2-page:not([data-page="home"]) .case-vision__cards article::before,
body.v2-page:not([data-page="home"]) .media-cta-card::before,
body[data-page="brief"] .wizard-form::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 138, 61, 0.5), rgba(96, 245, 255, 0.16), transparent);
  opacity: 0.76;
}

body.v2-page:not([data-page="home"]) .signal-card::after,
body.v2-page:not([data-page="home"]) .system-node::after,
body.v2-page:not([data-page="home"]) .usecase-tile::after,
body.v2-page:not([data-page="home"]) .timeline-step::after,
body.v2-page:not([data-page="home"]) .sequence-panel::after {
  right: auto;
  left: clamp(18px, 2.4vw, 30px);
  top: auto;
  bottom: 0;
  color: rgba(255, 138, 61, 0.24);
  font-family: var(--font-display);
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 760;
  line-height: 0.8;
  pointer-events: none;
}

body.v2-page:not([data-page="home"]) .tech-stack-card::after {
  content: attr(data-motion-counter);
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(255, 138, 61, 0.28);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
}

body.v2-page:not([data-page="home"]) .signal-card:hover,
body.v2-page:not([data-page="home"]) .system-node:hover,
body.v2-page:not([data-page="home"]) .tech-stack-card:hover,
body.v2-page:not([data-page="home"]) .usecase-tile:hover,
body.v2-page:not([data-page="home"]) .sequence-panel:hover,
body.v2-page:not([data-page="home"]) .timeline-step.is-motion-active,
body.v2-page:not([data-page="home"]) .split-panel:hover,
body.v2-page:not([data-page="home"]) .media-cta-card:hover {
  border-color: transparent;
  box-shadow: none !important;
  transform: translateY(-2px);
}

body.v2-page:not([data-page="home"]) .signal-card span,
body.v2-page:not([data-page="home"]) .system-node span,
body.v2-page:not([data-page="home"]) .tech-stack-card span,
body.v2-page:not([data-page="home"]) .usecase-tile span,
body.v2-page:not([data-page="home"]) .timeline-step span,
body.v2-page:not([data-page="home"]) .sequence-panel span,
body.v2-page:not([data-page="home"]) .case-vision__cards span,
body.v2-page:not([data-page="home"]) .media-cta-card span,
body.v2-page:not([data-page="home"]) .media-rights-card span {
  color: rgba(255, 138, 61, 0.86);
}

body.v2-page:not([data-page="home"]) .signal-card h3,
body.v2-page:not([data-page="home"]) .system-node h3,
body.v2-page:not([data-page="home"]) .tech-stack-card h3,
body.v2-page:not([data-page="home"]) .usecase-tile h2,
body.v2-page:not([data-page="home"]) .timeline-step h2,
body.v2-page:not([data-page="home"]) .sequence-panel h2,
body.v2-page:not([data-page="home"]) .case-vision__cards strong,
body.v2-page:not([data-page="home"]) .media-cta-card h2 {
  max-width: 680px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.04;
}

body.v2-page:not([data-page="home"]) .signal-card p,
body.v2-page:not([data-page="home"]) .system-node p,
body.v2-page:not([data-page="home"]) .tech-stack-card p,
body.v2-page:not([data-page="home"]) .usecase-tile p,
body.v2-page:not([data-page="home"]) .timeline-step p,
body.v2-page:not([data-page="home"]) .sequence-panel p,
body.v2-page:not([data-page="home"]) .case-vision__cards p,
body.v2-page:not([data-page="home"]) .media-cta-card p {
  max-width: 620px;
  color: rgba(247, 251, 255, 0.66);
}

body.v2-page:not([data-page="home"]) .timeline-step,
body.v2-page:not([data-page="home"]) .sequence-panel {
  grid-template-columns: 86px minmax(0, 0.84fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
}

body.v2-page:not([data-page="home"]) .split-cinema::after {
  background:
    linear-gradient(90deg, rgba(3, 4, 6, 0.18), rgba(3, 4, 6, 0.86)),
    linear-gradient(180deg, transparent 0, #05070a 100%);
}

body.v2-page:not([data-page="home"]) .split-panel {
  padding-left: 22px;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

body.v2-page:not([data-page="home"]) .split-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  display: block;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 138, 61, 0), rgba(255, 138, 61, 0.72), rgba(96, 245, 255, 0.18), rgba(255, 138, 61, 0));
}

body.v2-page:not([data-page="home"]) .cinema-list {
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

body.v2-page:not([data-page="home"]) .cinema-list li {
  position: relative;
  padding-left: 22px;
}

body.v2-page:not([data-page="home"]) .cinema-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 12px;
  height: 1px;
  background: rgba(255, 138, 61, 0.68);
}

body.v2-page:not([data-page="home"]) .gallery-toolbar,
body.v2-page:not([data-page="home"]) .video-gallery__head {
  padding: 0 0 28px;
}

body.v2-page:not([data-page="home"]) .gallery-mode-tabs a,
body.v2-page:not([data-page="home"]) .gallery-filters button,
body.v2-page:not([data-page="home"]) .voice-pack-switch button,
body.v2-page:not([data-page="home"]) .voice-actions button,
body.v2-page:not([data-page="home"]) .voice-question-stack button,
body.v2-page:not([data-page="home"]) .sound-states button,
body.v2-page:not([data-page="home"]) .sound-tracks button {
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  color: rgba(247, 251, 255, 0.62);
  box-shadow: none !important;
  padding-left: 0;
  padding-right: 0;
  text-transform: none;
}

body.v2-page:not([data-page="home"]) .gallery-mode-tabs a::after,
body.v2-page:not([data-page="home"]) .gallery-filters button::after,
body.v2-page:not([data-page="home"]) .voice-pack-switch button::after,
body.v2-page:not([data-page="home"]) .voice-actions button::after,
body.v2-page:not([data-page="home"]) .voice-question-stack button::after,
body.v2-page:not([data-page="home"]) .sound-states button::after,
body.v2-page:not([data-page="home"]) .sound-tracks button::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 9px;
  background: linear-gradient(90deg, rgba(255, 138, 61, 0.5), rgba(96, 245, 255, 0.14), transparent);
  opacity: 0.42;
}

body.v2-page:not([data-page="home"]) .gallery-mode-tabs a:hover,
body.v2-page:not([data-page="home"]) .gallery-mode-tabs a:focus-visible,
body.v2-page:not([data-page="home"]) .gallery-mode-tabs a[aria-current="page"],
body.v2-page:not([data-page="home"]) .gallery-filters button:hover,
body.v2-page:not([data-page="home"]) .gallery-filters button.is-active,
body.v2-page:not([data-page="home"]) .voice-pack-switch button:hover,
body.v2-page:not([data-page="home"]) .voice-pack-switch button.is-active,
body.v2-page:not([data-page="home"]) .voice-actions button:hover,
body.v2-page:not([data-page="home"]) .voice-actions button.is-active,
body.v2-page:not([data-page="home"]) .voice-question-stack button:hover,
body.v2-page:not([data-page="home"]) .voice-question-stack button.is-active,
body.v2-page:not([data-page="home"]) .sound-states button:hover,
body.v2-page:not([data-page="home"]) .sound-states button.is-active,
body.v2-page:not([data-page="home"]) .sound-tracks button:hover,
body.v2-page:not([data-page="home"]) .sound-tracks button.is-active {
  color: var(--v2-ink);
  transform: translateY(-1px);
}

body.v2-page:not([data-page="home"]) .gallery-card,
body.v2-page:not([data-page="home"]) .video-gallery-card,
body.v2-page:not([data-page="home"]) .aurea-reel-card {
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}

body.v2-page:not([data-page="home"]) .gallery-card strong,
body.v2-page:not([data-page="home"]) .video-gallery-card__copy,
body.v2-page:not([data-page="home"]) .aurea-reel-card__copy {
  padding-left: 0;
  padding-right: 0;
}

body.v2-page:not([data-page="home"]) .gallery-card:hover,
body.v2-page:not([data-page="home"]) .gallery-card:focus-visible,
body.v2-page:not([data-page="home"]) .video-gallery-card:hover,
body.v2-page:not([data-page="home"]) .video-gallery-card:focus-visible,
body.v2-page:not([data-page="home"]) .aurea-reel-card:hover,
body.v2-page:not([data-page="home"]) .aurea-reel-card:focus-visible {
  border-color: transparent;
  box-shadow: none !important;
  transform: translateY(-2px);
}

body.v2-page:not([data-page="home"]) .voice-waveform {
  position: relative;
  height: 122px;
  border: 0;
  border-radius: 0;
  background: transparent;
  margin: 24px 0;
}

body.v2-page:not([data-page="home"]) .voice-waveform::before,
body.v2-page:not([data-page="home"]) .voice-waveform::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  pointer-events: none;
}

body.v2-page:not([data-page="home"]) .voice-waveform::before {
  background: linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.68), rgba(96, 245, 255, 0.26), rgba(255, 138, 61, 0.44), transparent);
}

body.v2-page:not([data-page="home"]) .voice-waveform::after {
  width: 34%;
  right: auto;
  background: linear-gradient(90deg, transparent, rgba(247, 251, 255, 0.72), transparent);
  opacity: 0.5;
  animation: editorialLineScan 5.4s ease-in-out infinite;
}

body.v2-page:not([data-page="home"]) .voice-waveform i {
  display: none;
}

body.v2-page:not([data-page="home"]) .voice-status,
body.v2-page:not([data-page="home"]) .media-status,
body.v2-page:not([data-page="home"]) .voice-time,
body.v2-page:not([data-page="home"]) .range-label {
  color: rgba(247, 251, 255, 0.56);
  font-family: var(--font-sans);
  text-transform: none;
}

body.v2-page:not([data-page="home"]) .voice-status {
  border: 0;
  border-bottom: 1px solid rgba(255, 138, 61, 0.44);
  border-radius: 0;
  padding: 0 0 8px;
}

body.v2-page:not([data-page="home"]) .voice-progress,
body.v2-page:not([data-page="home"]) .wizard-progress {
  height: 1px;
  border-radius: 0;
  background: rgba(247, 251, 255, 0.14);
}

body.v2-page:not([data-page="home"]) .voice-progress span,
body.v2-page:not([data-page="home"]) .wizard-progress span {
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255, 138, 61, 0.78), rgba(96, 245, 255, 0.24));
  box-shadow: none;
}

body.v2-page:not([data-page="home"]) .sound-core {
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.v2-page:not([data-page="home"]) .sound-core::before,
body.v2-page:not([data-page="home"]) .sound-core::after {
  display: none !important;
}

body.v2-page:not([data-page="home"]) .sound-core canvas {
  opacity: 0.46;
  mix-blend-mode: screen;
}

body.v2-page:not([data-page="home"]) .sound-core-label {
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.56);
}

body.v2-page:not([data-page="home"]) .media-rights-card {
  grid-template-columns: minmax(150px, 0.3fr) minmax(220px, 0.42fr) minmax(0, 1fr);
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 138, 61, 0.22) !important;
}

body[data-page="brief"] .brief-shell {
  gap: clamp(32px, 5vw, 78px);
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
}

body[data-page="brief"] .brief-intro {
  position: relative;
  padding-left: 22px;
}

body[data-page="brief"] .brief-intro::before {
  top: 4px;
}

body[data-page="brief"] .wizard-form {
  position: relative;
  padding: clamp(24px, 3vw, 36px) 0 0 24px;
}

body[data-page="brief"] .wizard-form::before {
  left: 24px;
  right: 0;
}

body[data-page="brief"] .wizard-form input,
body[data-page="brief"] .wizard-form select,
body[data-page="brief"] .wizard-form textarea {
  border: 0;
  border-bottom: 1px solid rgba(247, 251, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
  color: var(--v2-ink);
  box-shadow: none;
}

body[data-page="brief"] .wizard-form input:focus,
body[data-page="brief"] .wizard-form select:focus,
body[data-page="brief"] .wizard-form textarea:focus {
  outline: 0;
  border-bottom-color: rgba(255, 138, 61, 0.72);
  background: rgba(255, 255, 255, 0.055);
}

body[data-page="brief"] .checkbox-label input {
  accent-color: var(--v2-gold);
}

body.v2-page:not([data-page="home"]) .v2-button,
body.v2-page:not([data-page="home"]) .command-cta {
  clip-path: none;
  border-radius: 4px;
}

body.v2-page:not([data-page="home"]) .v2-button::after,
body.v2-page:not([data-page="home"]) .command-cta::after {
  display: none;
}

body.v2-page:not([data-page="home"]) .v2-button--ghost {
  border-color: rgba(247, 251, 255, 0.16);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.v2-page:not([data-page="home"]) .v2-footer a {
  border: 0;
  border-bottom: 1px solid rgba(247, 251, 255, 0.12);
  border-radius: 0;
  background: transparent;
  padding-inline: 0;
}

@keyframes editorialLineScan {
  0%,
  42% {
    opacity: 0;
    transform: translateX(-12%);
  }

  58% {
    opacity: 0.56;
  }

  100% {
    opacity: 0;
    transform: translateX(210%);
  }
}

@media (max-width: 1120px) {
  body.v2-page:not([data-page="home"]) .page-hero-copy,
  body.v2-page:not([data-page="home"]) .case-hero-copy {
    padding-top: clamp(136px, 15svh, 168px);
  }

  body.v2-page:not([data-page="home"]) .timeline-step,
  body.v2-page:not([data-page="home"]) .sequence-panel {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  body.v2-page:not([data-page="home"]) .timeline-step p,
  body.v2-page:not([data-page="home"]) .sequence-panel p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  body.v2-page:not([data-page="home"]) .page-hero,
  body.v2-page:not([data-page="home"]) .case-hero-v2 {
    min-height: clamp(600px, 86svh, 760px);
  }

  body.v2-page:not([data-page="home"]) .page-hero-copy,
  body.v2-page:not([data-page="home"]) .case-hero-copy {
    width: min(100% - 32px, 1180px);
    padding: 146px 0 108px;
  }

  body.v2-page:not([data-page="home"]) .page-hero-copy::before,
  body.v2-page:not([data-page="home"]) .case-hero-copy::before {
    top: 140px;
    height: 72px;
  }

  body.v2-page:not([data-page="home"]) .page-hero-copy h1,
  body.v2-page:not([data-page="home"]) .case-hero-copy h1,
  body[data-page="brief"] .brief-intro h1,
  body[data-page="realizacja"] .case-hero-copy h1 {
    max-width: min(100%, 390px);
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
    text-wrap: balance;
  }

  body.v2-page:not([data-page="home"]) .hero-line,
  body[data-page="brief"] .brief-intro p:not(.kicker) {
    max-width: min(100%, 380px);
  }

  body.v2-page:not([data-page="home"]) .hero-support {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.v2-page:not([data-page="home"]) .hero-support span {
    justify-content: flex-start;
    text-align: left;
  }

  body.v2-page:not([data-page="home"]) .timeline-step,
  body.v2-page:not([data-page="home"]) .sequence-panel {
    grid-template-columns: 1fr;
  }

  body.v2-page:not([data-page="home"]) .timeline-step p,
  body.v2-page:not([data-page="home"]) .sequence-panel p {
    grid-column: auto;
  }

  body.v2-page:not([data-page="home"]) .signal-card,
  body.v2-page:not([data-page="home"]) .system-node,
  body.v2-page:not([data-page="home"]) .tech-stack-card,
  body.v2-page:not([data-page="home"]) .usecase-tile,
  body.v2-page:not([data-page="home"]) .timeline-step,
  body.v2-page:not([data-page="home"]) .sequence-panel,
  body.v2-page:not([data-page="home"]) .case-vision__cards article,
  body.v2-page:not([data-page="home"]) .media-cta-card {
    padding: 22px 0 28px;
  }

  body.v2-page:not([data-page="home"]) .media-rights-card {
    grid-template-columns: 1fr;
  }

  body[data-page="brief"] .brief-stage {
    padding-top: 156px;
  }

  body[data-page="brief"] .brief-intro,
  body[data-page="brief"] .wizard-form {
    padding-left: 0;
  }

  body[data-page="brief"] .brief-intro::before {
    display: none;
  }

  body[data-page="brief"] .wizard-form::before {
    left: 0;
  }
}

/* Legal pages premium editorial pass: calm reading surfaces, no decorative HUD. */
body.legal-page,
body.interaction-legal-page {
  background: #05070a;
  color: rgba(247, 251, 255, 0.9);
}

body.legal-page main,
body.interaction-legal-page main {
  background:
    linear-gradient(180deg, #05070a 0, #05070a 38%, #06090d 100%),
    radial-gradient(circle at 72% 24%, rgba(96, 245, 255, 0.08), transparent 36%);
}

body.legal-page .site-header,
body.interaction-legal-page .site-header {
  background: rgba(5, 7, 10, 0.84);
  border-bottom: 1px solid rgba(255, 138, 61, 0.14);
  color: rgba(247, 251, 255, 0.88);
  backdrop-filter: blur(18px);
}

body.legal-page .brand-logo,
body.interaction-legal-page .brand-logo {
  filter: invert(1) brightness(1.18);
}

body.legal-page .site-nav,
body.interaction-legal-page .site-nav {
  gap: 16px;
}

body.legal-page .site-nav a,
body.interaction-legal-page .site-nav a {
  min-height: 34px;
  border-radius: 0;
  padding: 0;
  color: rgba(247, 251, 255, 0.66);
  white-space: nowrap;
}

body.legal-page .site-nav a:hover,
body.interaction-legal-page .site-nav a:hover,
body.legal-page .site-nav a[aria-current="page"],
body.interaction-legal-page .site-nav a[aria-current="page"] {
  background: transparent;
  color: var(--v2-ink, #f7fbff);
}

body.legal-page .site-nav a[aria-current="page"],
body.interaction-legal-page .site-nav a[aria-current="page"] {
  border-bottom: 1px solid rgba(255, 138, 61, 0.68);
}

body.legal-page .hero,
body.interaction-legal-page .hero,
body.legal-page .legal-hero {
  min-height: clamp(620px, calc(100svh - 72px), 860px);
  align-items: end;
  background: #05070a;
}

body.legal-page .hero-canvas,
body.interaction-legal-page .hero-canvas {
  display: none;
}

body.legal-page .hero-shade,
body.interaction-legal-page .hero-shade {
  background:
    linear-gradient(90deg, rgba(1, 2, 4, 0.96) 0%, rgba(3, 5, 8, 0.78) 42%, rgba(3, 4, 7, 0.42) 74%, rgba(3, 4, 7, 0.8) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.2) 0%, rgba(5, 7, 10, 0.38) 48%, #05070a 100%),
    linear-gradient(128deg, rgba(255, 138, 61, 0.1), transparent 30%, rgba(96, 245, 255, 0.07) 58%, transparent 80%);
}

body.legal-page .hero::after,
body.interaction-legal-page .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.28), rgba(96, 245, 255, 0.16), transparent);
}

body.legal-page .hero-content,
body.interaction-legal-page .hero-content {
  width: min(1180px, calc(100% - 48px));
  padding: clamp(148px, 18svh, 190px) 0 clamp(96px, 12svh, 138px);
}

body.legal-page .hero-content::before,
body.interaction-legal-page .hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(148px, 18svh, 190px);
  width: 1px;
  height: 106px;
  background: linear-gradient(180deg, transparent, rgba(255, 138, 61, 0.78), rgba(96, 245, 255, 0.2), transparent);
  opacity: 0.76;
}

body.legal-page .eyebrow,
body.interaction-legal-page .eyebrow {
  position: relative;
  width: max-content;
  max-width: 100%;
  color: rgba(255, 138, 61, 0.9);
  font-weight: 760;
}

body.legal-page .eyebrow::after,
body.interaction-legal-page .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: min(112px, 64%);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 138, 61, 0.72), rgba(96, 245, 255, 0.2), transparent);
}

body.legal-page .hero h1,
body.interaction-legal-page .hero h1 {
  max-width: 860px;
  margin-top: 26px;
  font-size: clamp(48px, 5.8vw, 76px);
  line-height: 0.98;
  color: var(--v2-ink, #f7fbff);
  text-shadow:
    0 22px 58px rgba(0, 0, 0, 0.58),
    0 1px 0 rgba(255, 255, 255, 0.035);
}

body.legal-page .hero-lead,
body.interaction-legal-page .hero-lead {
  max-width: 760px;
  color: rgba(247, 251, 255, 0.72);
  font-size: clamp(18px, 1.5vw, 23px);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.52);
}

body.legal-page .hero-actions,
body.interaction-legal-page .hero-actions {
  gap: 14px;
}

body.legal-page .button,
body.interaction-legal-page .button {
  border-radius: 4px;
  background: transparent;
  color: rgba(247, 251, 255, 0.82);
  box-shadow: none;
}

body.legal-page .button.primary,
body.interaction-legal-page .button.primary {
  border-color: rgba(65, 221, 224, 0.86);
  background: linear-gradient(180deg, #55f0f2 0%, #31c6ca 100%);
  color: #031012;
  box-shadow: 0 18px 46px rgba(65, 221, 224, 0.16);
}

body.legal-page .button.secondary,
body.interaction-legal-page .button.secondary {
  border-color: rgba(247, 251, 255, 0.2);
  background: transparent;
  color: rgba(247, 251, 255, 0.82);
  backdrop-filter: none;
}

body.interaction-legal-page .hero-facts {
  gap: clamp(18px, 2vw, 28px);
}

body.interaction-legal-page .hero-facts div {
  min-height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(255, 138, 61, 0.24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 18px 0 0;
  backdrop-filter: none;
}

body.interaction-legal-page .hero-facts div::before {
  display: none;
}

body.interaction-legal-page .hero-facts dt {
  color: rgba(255, 138, 61, 0.9);
}

body.interaction-legal-page .hero-facts dd {
  color: rgba(247, 251, 255, 0.66);
}

body.legal-page .status-strip,
body.interaction-legal-page .status-strip {
  border-top: 1px solid rgba(255, 138, 61, 0.18);
  border-bottom: 1px solid rgba(247, 251, 255, 0.09);
  background: rgba(247, 251, 255, 0.035);
  color: rgba(247, 251, 255, 0.68);
}

body.legal-page .status-strip div,
body.interaction-legal-page .status-strip div {
  border-right: 1px solid rgba(247, 251, 255, 0.08);
}

body.legal-page .status-strip strong,
body.interaction-legal-page .status-strip strong {
  color: rgba(255, 138, 61, 0.86);
}

body.legal-page .section,
body.interaction-legal-page .section,
body.legal-page .section:nth-of-type(2n + 1),
body.interaction-legal-page .section:nth-of-type(2n + 1),
body.legal-page .section.summary-section,
body.interaction-legal-page .section.summary-section,
body.legal-page .section.legal-page-section,
body.legal-page .section.privacy-www-section,
body.legal-page .section.acceptance-section,
body.legal-page .section.sources-section,
body.interaction-legal-page .section.legal-section,
body.interaction-legal-page .section.privacy-section,
body.interaction-legal-page .section.ai-section,
body.interaction-legal-page .section.realization-teaser-section,
body.interaction-legal-page .section.service-section {
  --section-bg: transparent;
  position: relative;
  background: #05070a;
  border-bottom: 1px solid rgba(247, 251, 255, 0.08);
  color: rgba(247, 251, 255, 0.86);
}

body.legal-page .section::before,
body.interaction-legal-page .section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.2), rgba(96, 245, 255, 0.13), transparent);
  pointer-events: none;
}

body.legal-page .section h2,
body.interaction-legal-page .section h2,
body.legal-page .section h3,
body.interaction-legal-page .section h3,
body.legal-page .legal-block h3,
body.legal-page .privacy-table h3,
body.legal-page .source-panel h3,
body.interaction-legal-page .legal-block h3,
body.interaction-legal-page .privacy-table h3,
body.interaction-legal-page .source-panel h3,
body.interaction-legal-page .service-card h3 {
  color: var(--v2-ink, #f7fbff);
}

body.legal-page .section p,
body.interaction-legal-page .section p,
body.legal-page .lead,
body.interaction-legal-page .lead {
  color: rgba(247, 251, 255, 0.66);
}

body.legal-page .section li,
body.interaction-legal-page .section li,
body.legal-page .source-panel li,
body.interaction-legal-page .source-panel li {
  color: rgba(247, 251, 255, 0.66);
}

body.legal-page .section a,
body.interaction-legal-page .section a {
  color: rgba(247, 251, 255, 0.88);
  text-decoration-color: rgba(255, 138, 61, 0.42);
}

body.legal-page .legal-block,
body.legal-page .copy-panel,
body.legal-page .source-panel,
body.legal-page .service-card,
body.legal-page .notice-panel,
body.interaction-legal-page .step-card,
body.interaction-legal-page .legal-block,
body.interaction-legal-page .copy-panel,
body.interaction-legal-page .source-panel,
body.interaction-legal-page .teaser-panel,
body.interaction-legal-page .service-card,
body.interaction-legal-page .notice-panel {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 24px 0 0;
}

body.legal-page .legal-block::before,
body.legal-page .copy-panel::before,
body.legal-page .source-panel::before,
body.legal-page .service-card::before,
body.legal-page .notice-panel::before,
body.interaction-legal-page .step-card::before,
body.interaction-legal-page .legal-block::before,
body.interaction-legal-page .copy-panel::before,
body.interaction-legal-page .source-panel::before,
body.interaction-legal-page .teaser-panel::before,
body.interaction-legal-page .service-card::before,
body.interaction-legal-page .notice-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 138, 61, 0.46), rgba(96, 245, 255, 0.14), transparent);
}

body.legal-page .privacy-table,
body.interaction-legal-page .privacy-table {
  gap: 18px;
  border: 0;
  background: transparent;
}

body.legal-page .privacy-table > div,
body.interaction-legal-page .privacy-table > div {
  position: relative;
  background: transparent;
  padding: 24px 0 0;
}

body.legal-page .privacy-table > div::before,
body.interaction-legal-page .privacy-table > div::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 138, 61, 0.36), rgba(96, 245, 255, 0.12), transparent);
}

body.interaction-legal-page .step-index {
  width: auto;
  height: auto;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  color: rgba(255, 138, 61, 0.9);
  font-family: var(--font-mono);
}

body.interaction-legal-page .safety-list li {
  border: 0;
  border-left: 1px solid rgba(196, 77, 97, 0.72);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(247, 251, 255, 0.78);
}

body.interaction-legal-page details {
  border: 0;
  border-top: 1px solid rgba(255, 138, 61, 0.24);
  border-radius: 0;
  background: transparent;
}

body.interaction-legal-page summary {
  padding: 0;
  color: var(--v2-ink, #f7fbff);
}

body.interaction-legal-page details p {
  padding: 0 0 22px;
  color: rgba(247, 251, 255, 0.66);
}

body.legal-page .site-footer,
body.interaction-legal-page .site-footer {
  background: #05070a;
  border-top: 1px solid rgba(255, 138, 61, 0.16);
  color: rgba(247, 251, 255, 0.64);
}

body.legal-page .footer-symbol,
body.interaction-legal-page .footer-symbol {
  filter: invert(1);
  opacity: 0.64;
}

@media (max-width: 1040px) {
  body.legal-page .site-header,
  body.interaction-legal-page .site-header {
    flex-direction: row;
    align-items: center;
  }

  body.legal-page .site-nav,
  body.interaction-legal-page .site-nav {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body.legal-page .site-nav::-webkit-scrollbar,
  body.interaction-legal-page .site-nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 760px) {
  body.legal-page .site-header,
  body.interaction-legal-page .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  body.legal-page .site-nav,
  body.interaction-legal-page .site-nav {
    width: 100%;
    flex: 0 0 auto;
  }

  body.legal-page .brand-link,
  body.legal-page .brand-logo,
  body.interaction-legal-page .brand-link,
  body.interaction-legal-page .brand-logo {
    width: 122px;
  }

  body.legal-page .hero,
  body.interaction-legal-page .hero,
  body.legal-page .legal-hero {
    min-height: clamp(560px, 84svh, 720px);
  }

  body.legal-page .hero-content,
  body.interaction-legal-page .hero-content {
    width: min(100% - 32px, 1180px);
    padding: 136px 0 92px;
  }

  body.legal-page .hero-content::before,
  body.interaction-legal-page .hero-content::before {
    top: 134px;
    height: 72px;
  }

  body.legal-page .hero h1,
  body.interaction-legal-page .hero h1 {
    max-width: min(100%, 390px);
    font-size: clamp(37px, 10.4vw, 48px);
    line-height: 1.01;
    text-wrap: balance;
  }

  body.legal-page .hero-lead,
  body.interaction-legal-page .hero-lead {
    max-width: min(100%, 390px);
  }

  body.legal-page .button,
  body.interaction-legal-page .button {
    width: auto;
  }

  body.legal-page .hero-actions,
  body.interaction-legal-page .hero-actions {
    width: 100%;
  }

  body.legal-page .status-strip,
  body.interaction-legal-page .status-strip {
    grid-template-columns: 1fr;
  }

  body.legal-page .status-strip div,
  body.interaction-legal-page .status-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(247, 251, 255, 0.08);
  }
}

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

  .cinematic-bg img,
  .cinematic-bg video,
  .page-hero-bg img,
  .page-hero-bg video,
  .case-hero-bg img,
  .case-hero-bg video,
  .statement-bg img,
  .brief-bg img,
  .brief-bg video,
  .gateway-card img,
  .split-cinema > picture img,
  .aurea-video-head-card__media video,
  .aurea-reel-card__media video,
  .video-gallery-card__media video {
    transform: none !important;
  }

  .page-transition {
    display: none;
  }

  .gallery-card img,
  .gallery-card:hover img,
  .gallery-card:focus-visible img,
  .gallery-card:hover,
  .gallery-card:focus-visible,
  .aurea-reel-card:hover,
  .aurea-reel-card:focus-visible,
  button.video-gallery-card:hover,
  button.video-gallery-card:focus-visible,
  .sound-core::before,
  .sound-core::after,
  .voice-waveform i,
  .hud-particle-field span,
  .hud-module,
  .hud-module::after,
  .persona-map::before,
  .voice-hud-grid::before,
  .nfc-handoff::before,
  .light-stage-map::before,
  .intel-dashboard::before,
  .persona-core,
  .voice-orb,
  .hud-module .nfc-token,
  .voice-wave::after,
  .nfc-signal::after,
  .intel-dashboard .intel-panel::after {
    transform: none !important;
    animation: none !important;
  }
}

/* Effective Case refinement layer: placed late to win over historical Case styles. */
body[data-page="realizacja"].v2-page .aurea-conference-card.aurea-conference-card--featured.case-signature-card {
  width: min(100%, 1260px);
  max-width: 1260px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr) !important;
  grid-template-rows: minmax(0, auto) auto;
  align-items: start;
  gap: 0 !important;
  overflow: hidden;
  padding: 0 !important;
}

body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__copy {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: clamp(13px, 1.35vw, 18px);
  border-left: 1px solid rgba(96, 245, 255, 0.14);
  border-right: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 79, 216, 0.13), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(96, 245, 255, 0.1), transparent 44%),
    linear-gradient(180deg, rgba(3, 7, 10, 0.62), rgba(3, 7, 10, 0.3));
  padding: clamp(24px, 2.8vw, 38px);
}

body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__media {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: start;
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 0;
}

body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__copy h2 {
  max-width: 440px;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.02;
}

body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__copy p:not(.kicker) {
  max-width: 440px;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.54;
}

body[data-page="realizacja"].v2-page .case-signature-proof {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(247, 251, 255, 0.08);
  background: rgba(3, 7, 10, 0.34);
}

body[data-page="realizacja"].v2-page .case-signature-proof li {
  min-height: 92px;
  border: 0;
  border-right: 1px solid rgba(247, 251, 255, 0.08);
  border-radius: 0;
  background: transparent;
  padding: clamp(18px, 2vw, 24px);
}

body[data-page="realizacja"].v2-page .case-signature-proof li:last-child {
  border-right: 0;
}

body[data-page="realizacja"].v2-page .case-layer-board__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  body[data-page="realizacja"].v2-page .aurea-conference-card.aurea-conference-card--featured.case-signature-card {
    grid-template-columns: 1fr !important;
  }

  body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(96, 245, 255, 0.14);
  }

  body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__media {
    grid-column: 1 !important;
    grid-row: 2 !important;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  body[data-page="realizacja"].v2-page .case-signature-proof {
    grid-row: 3;
  }

  body[data-page="realizacja"].v2-page .case-layer-board__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__copy {
    padding: 24px 20px;
  }

  body[data-page="realizacja"].v2-page .case-signature-proof,
  body[data-page="realizacja"].v2-page .case-layer-board__grid {
    grid-template-columns: 1fr;
  }

  body[data-page="realizacja"].v2-page .case-signature-proof li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 251, 255, 0.08);
  }

  body[data-page="realizacja"].v2-page .case-signature-proof li:last-child {
    border-bottom: 0;
  }

  body[data-page="realizacja"].v2-page .case-layer-card,
  body[data-page="realizacja"].v2-page .case-layer-card--wide,
  body[data-page="realizacja"].v2-page .case-layer-card--tall {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Effective Realizacja GUI layer: stable grids, readable cards and no decorative lines over text. */
body[data-page="realizacja"].v2-page {
  --case-shell: min(100% - 48px, 1240px);
  --case-card-radius: 8px;
}

body[data-page="realizacja"].v2-page .case-vision,
body[data-page="realizacja"].v2-page .case-layer-board,
body[data-page="realizacja"].v2-page .case-delivery,
body[data-page="realizacja"].v2-page .case-sequence,
body[data-page="realizacja"].v2-page .case-proof-mosaic {
  width: var(--case-shell);
}

body[data-page="realizacja"].v2-page .case-layer-board {
  gap: 22px;
  padding: 72px 0 92px;
}

body[data-page="realizacja"].v2-page .case-layer-board__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 820px;
  align-items: start;
}

body[data-page="realizacja"].v2-page .case-layer-board__head h2 {
  max-width: 760px;
  font-size: 42px;
  line-height: 1.05;
}

body[data-page="realizacja"].v2-page .case-layer-board__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-auto-rows: auto;
  grid-auto-flow: row;
  gap: 16px;
}

body[data-page="realizacja"].v2-page .case-layer-card,
body[data-page="realizacja"].v2-page .case-layer-card--wide,
body[data-page="realizacja"].v2-page .case-layer-card--tall {
  grid-column: auto !important;
  grid-row: auto !important;
  min-height: 0;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(247, 251, 255, 0.1);
  border-radius: var(--case-card-radius);
  background: #05070a;
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.28);
}

body[data-page="realizacja"].v2-page .case-layer-card picture,
body[data-page="realizacja"].v2-page .case-layer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body[data-page="realizacja"].v2-page .case-layer-card img {
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

body[data-page="realizacja"].v2-page .case-layer-card::after {
  background:
    linear-gradient(180deg, rgba(3, 7, 10, 0.02) 0%, rgba(3, 7, 10, 0.18) 36%, rgba(3, 7, 10, 0.88) 100%),
    linear-gradient(135deg, rgba(96, 245, 255, 0.06), rgba(255, 79, 216, 0.06));
}

body[data-page="realizacja"].v2-page .case-layer-card div {
  left: 14px;
  right: 14px;
  bottom: 14px;
  gap: 7px;
  border: 1px solid rgba(247, 251, 255, 0.08);
  border-radius: 7px;
  background: rgba(3, 7, 10, 0.48);
  padding: 14px;
  backdrop-filter: blur(14px) saturate(130%);
}

body[data-page="realizacja"].v2-page .case-layer-card span {
  font-size: 11px;
  line-height: 1.2;
}

body[data-page="realizacja"].v2-page .case-layer-card strong {
  max-width: none;
  font-size: 22px;
  line-height: 1.08;
  text-wrap: balance;
}

body[data-page="realizacja"].v2-page .case-delivery {
  padding: 76px 0 98px;
}

body[data-page="realizacja"].v2-page .case-delivery .tech-pitch__intro {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 46px;
  align-items: start;
  margin-bottom: 28px;
}

body[data-page="realizacja"].v2-page .case-delivery .tech-pitch__intro h2 {
  max-width: 760px;
  font-size: 44px;
  line-height: 1.05;
}

body[data-page="realizacja"].v2-page .case-delivery .tech-pitch__intro p:not(.kicker) {
  max-width: 560px;
  border-left: 1px solid rgba(96, 245, 255, 0.22);
  color: rgba(247, 251, 255, 0.68);
  font-size: 17px;
  line-height: 1.58;
  padding-left: 18px;
}

body[data-page="realizacja"].v2-page .case-stack-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

body[data-page="realizacja"].v2-page .case-stack-grid .tech-stack-card {
  min-height: 230px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(247, 251, 255, 0.1) !important;
  border-radius: var(--case-card-radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 79, 216, 0.08), transparent 42%),
    linear-gradient(145deg, rgba(96, 245, 255, 0.055), rgba(247, 251, 255, 0.018)),
    rgba(5, 9, 13, 0.72) !important;
  padding: 22px;
  box-shadow: none !important;
}

body[data-page="realizacja"].v2-page .case-stack-grid .tech-stack-card::before {
  content: none !important;
  display: none !important;
}

body[data-page="realizacja"].v2-page .case-stack-grid .tech-stack-card::after {
  content: attr(data-motion-counter);
  right: 14px;
  top: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 138, 61, 0.18);
  border-radius: 999px;
  background: rgba(3, 7, 10, 0.44);
  color: rgba(255, 138, 61, 0.84);
  font-size: 11px;
  line-height: 1;
  padding: 6px 7px;
}

body[data-page="realizacja"].v2-page .case-stack-grid .tech-stack-card .motion-meter {
  display: none !important;
}

body[data-page="realizacja"].v2-page .case-stack-grid .tech-stack-card span {
  padding-right: 42px;
  color: rgba(255, 138, 61, 0.92);
  font-size: 12px;
  line-height: 1.2;
}

body[data-page="realizacja"].v2-page .case-stack-grid .tech-stack-card h3 {
  max-width: none;
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

body[data-page="realizacja"].v2-page .case-stack-grid .tech-stack-card p {
  max-width: none;
  margin: 0;
  color: rgba(247, 251, 255, 0.65);
  font-size: 15px;
  line-height: 1.52;
}

body[data-page="realizacja"].v2-page .case-delivery .tech-pitch__summary {
  max-width: none;
  margin-top: 16px;
  border: 1px solid rgba(96, 245, 255, 0.13);
  border-radius: var(--case-card-radius);
  background:
    linear-gradient(90deg, rgba(96, 245, 255, 0.06), rgba(255, 79, 216, 0.045)),
    rgba(247, 251, 255, 0.025);
  color: rgba(247, 251, 255, 0.9);
  font-size: 25px;
  line-height: 1.22;
  padding: 22px 24px;
}

body[data-page="realizacja"].v2-page .case-proof-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  grid-auto-flow: row;
  gap: 16px;
  align-items: stretch;
  background: transparent;
  margin: 0 auto;
  padding: 76px 0 112px;
}

body[data-page="realizacja"].v2-page .case-proof-mosaic .case-gallery-caption {
  grid-column: 1 / span 5 !important;
  grid-row: auto !important;
  min-height: 420px;
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 16px;
  border: 1px solid rgba(96, 245, 255, 0.14);
  border-radius: var(--case-card-radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(96, 245, 255, 0.13), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(255, 79, 216, 0.08), transparent 36%),
    rgba(247, 251, 255, 0.026);
  padding: 34px;
  text-align: left;
}

body[data-page="realizacja"].v2-page .case-proof-mosaic .case-gallery-caption h2 {
  max-width: 500px;
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
}

body[data-page="realizacja"].v2-page .case-proof-mosaic .case-gallery-caption p:not(.kicker) {
  max-width: 470px;
  margin: 0;
  color: rgba(247, 251, 255, 0.68);
  font-size: 17px;
  line-height: 1.55;
}

body[data-page="realizacja"].v2-page .case-proof-mosaic .case-gallery-caption .v2-button {
  margin-top: 4px;
}

body[data-page="realizacja"].v2-page .case-proof-card,
body[data-page="realizacja"].v2-page .case-proof-card--wide,
body[data-page="realizacja"].v2-page .case-proof-card--tall {
  grid-row: auto !important;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(247, 251, 255, 0.1);
  border-radius: var(--case-card-radius);
  background: #05070a;
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.28);
}

body[data-page="realizacja"].v2-page .case-proof-card--wide {
  grid-column: 6 / span 7 !important;
  min-height: 420px;
}

body[data-page="realizacja"].v2-page .case-proof-card:not(.case-proof-card--wide) {
  grid-column: span 4 !important;
}

body[data-page="realizacja"].v2-page .case-proof-card picture,
body[data-page="realizacja"].v2-page .case-proof-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body[data-page="realizacja"].v2-page .case-proof-card img {
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

body[data-page="realizacja"].v2-page .case-proof-card::after {
  background:
    linear-gradient(180deg, rgba(3, 7, 10, 0.02) 0%, rgba(3, 7, 10, 0.18) 36%, rgba(3, 7, 10, 0.88) 100%),
    linear-gradient(135deg, rgba(96, 245, 255, 0.04), rgba(255, 79, 216, 0.055));
}

body[data-page="realizacja"].v2-page .case-proof-card div {
  left: 16px;
  right: 16px;
  bottom: 16px;
  gap: 7px;
  border: 1px solid rgba(247, 251, 255, 0.08);
  border-radius: 7px;
  background: rgba(3, 7, 10, 0.52);
  padding: 14px;
  backdrop-filter: blur(14px) saturate(130%);
}

body[data-page="realizacja"].v2-page .case-proof-card span {
  color: var(--v2-orange);
  font-size: 12px;
  line-height: 1.2;
}

body[data-page="realizacja"].v2-page .case-proof-card strong {
  max-width: none;
  font-size: 23px;
  line-height: 1.08;
  text-wrap: balance;
}

@media (max-width: 1100px) {
  body[data-page="realizacja"].v2-page {
    --case-shell: min(100% - 40px, 920px);
  }

  body[data-page="realizacja"].v2-page .case-layer-board__grid,
  body[data-page="realizacja"].v2-page .case-stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-page="realizacja"].v2-page .case-layer-card,
  body[data-page="realizacja"].v2-page .case-layer-card--wide,
  body[data-page="realizacja"].v2-page .case-layer-card--tall {
    aspect-ratio: 16 / 13;
  }

  body[data-page="realizacja"].v2-page .case-delivery .tech-pitch__intro {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  body[data-page="realizacja"].v2-page .case-delivery .tech-pitch__intro p:not(.kicker) {
    border-left: 0;
    padding-left: 0;
  }

  body[data-page="realizacja"].v2-page .case-proof-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body[data-page="realizacja"].v2-page .case-proof-mosaic .case-gallery-caption,
  body[data-page="realizacja"].v2-page .case-proof-card--wide {
    grid-column: 1 / -1 !important;
  }

  body[data-page="realizacja"].v2-page .case-proof-card--wide {
    min-height: 360px;
    aspect-ratio: 16 / 9;
  }

  body[data-page="realizacja"].v2-page .case-proof-card:not(.case-proof-card--wide) {
    grid-column: span 1 !important;
  }
}

@media (max-width: 760px) {
  body[data-page="realizacja"].v2-page {
    --case-shell: min(100% - 32px, 640px);
  }

  body[data-page="realizacja"].v2-page .case-layer-board,
  body[data-page="realizacja"].v2-page .case-delivery,
  body[data-page="realizacja"].v2-page .case-proof-mosaic {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  body[data-page="realizacja"].v2-page .case-layer-board__head h2,
  body[data-page="realizacja"].v2-page .case-delivery .tech-pitch__intro h2,
  body[data-page="realizacja"].v2-page .case-proof-mosaic .case-gallery-caption h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  body[data-page="realizacja"].v2-page .case-layer-board__grid,
  body[data-page="realizacja"].v2-page .case-stack-grid,
  body[data-page="realizacja"].v2-page .case-proof-mosaic {
    grid-template-columns: 1fr !important;
  }

  body[data-page="realizacja"].v2-page .case-layer-card,
  body[data-page="realizacja"].v2-page .case-layer-card--wide,
  body[data-page="realizacja"].v2-page .case-layer-card--tall,
  body[data-page="realizacja"].v2-page .case-proof-card,
  body[data-page="realizacja"].v2-page .case-proof-card--wide,
  body[data-page="realizacja"].v2-page .case-proof-card--tall {
    grid-column: 1 / -1 !important;
    min-height: 300px;
    aspect-ratio: auto;
  }

  body[data-page="realizacja"].v2-page .case-proof-mosaic .case-gallery-caption {
    padding: 26px;
  }

  body[data-page="realizacja"].v2-page .case-layer-card div,
  body[data-page="realizacja"].v2-page .case-proof-card div {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 13px;
  }

  body[data-page="realizacja"].v2-page .case-layer-card strong,
  body[data-page="realizacja"].v2-page .case-proof-card strong {
    font-size: 21px;
  }
}

/* Effective heading scale layer: calmer premium hierarchy across subpages. */
body.v2-page {
  --type-page-title: 52px;
  --type-section-title: 40px;
  --type-panel-title: 30px;
  --type-card-title: 24px;
}

body.v2-page:not([data-page="home"]) .page-hero-copy h1,
body.v2-page:not([data-page="home"]) .case-hero-copy h1,
body[data-page="brief"] .brief-intro h1 {
  max-width: 980px;
  font-size: var(--type-page-title) !important;
  line-height: 1.02;
  text-wrap: balance;
}

body[data-page="realizacja"].v2-page .case-hero-copy h1 {
  max-width: 940px;
  font-size: 50px !important;
  line-height: 1.03;
}

body.v2-page:not([data-page="home"]) .statement-copy h2,
body.v2-page:not([data-page="home"]) .band-copy h2,
body.v2-page:not([data-page="home"]) .company-proof__intro h2,
body.v2-page:not([data-page="home"]) .case-vision__copy h2,
body.v2-page:not([data-page="home"]) .case-gallery-caption h2,
body.v2-page:not([data-page="home"]) .split-panel h2,
body.v2-page:not([data-page="home"]) .tech-pitch__intro h2,
body.v2-page:not([data-page="home"]) .case-layer-board__head h2,
body.v2-page:not([data-page="home"]) .case-delivery .tech-pitch__intro h2,
body.v2-page:not([data-page="home"]) .case-proof-mosaic .case-gallery-caption h2,
body.v2-page:not([data-page="home"]) .aurea-video-head-card__text h2,
body.v2-page:not([data-page="home"]) .gallery-toolbar h2,
body.v2-page:not([data-page="home"]) .gallery-section-head h3,
body.v2-page:not([data-page="home"]) .video-gallery__head h2,
body.v2-page:not([data-page="home"]) .voice-head h2,
body.v2-page:not([data-page="home"]) .sound-controls h2,
body.v2-page:not([data-page="home"]) .media-cta-card h2 {
  font-size: var(--type-section-title) !important;
  line-height: 1.07;
  text-wrap: balance;
}

body.v2-page:not([data-page="home"]) .usecase-tile h2,
body.v2-page:not([data-page="home"]) .timeline-step h2,
body.v2-page:not([data-page="home"]) .sequence-panel h2,
body.v2-page:not([data-page="home"]) .tech-stack-card h3,
body.v2-page:not([data-page="home"]) .case-vision__cards strong,
body.v2-page:not([data-page="home"]) .aurea-conference-card__copy h2,
body.v2-page:not([data-page="home"]) .aurea-conference-card__copy h3 {
  font-size: var(--type-card-title) !important;
  line-height: 1.1;
  text-wrap: balance;
}

body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__copy h2 {
  font-size: 34px !important;
  line-height: 1.04;
}

body[data-page="realizacja"].v2-page .case-proof-card strong,
body[data-page="realizacja"].v2-page .case-layer-card strong {
  font-size: 21px !important;
  line-height: 1.1;
}

body.legal-page .hero h1,
body.interaction-legal-page .hero h1 {
  max-width: 940px;
  font-size: 54px !important;
  line-height: 1.04;
  text-wrap: balance;
}

body.legal-page .section h2,
body.interaction-legal-page .section h2 {
  font-size: 34px !important;
  line-height: 1.08;
  text-wrap: balance;
}

@media (max-width: 900px) {
  body.v2-page {
    --type-page-title: 44px;
    --type-section-title: 34px;
    --type-panel-title: 28px;
    --type-card-title: 23px;
  }

  body[data-page="realizacja"].v2-page .case-hero-copy h1,
  body.legal-page .hero h1,
  body.interaction-legal-page .hero h1 {
    font-size: 42px !important;
  }
}

@media (max-width: 760px) {
  body.v2-page {
    --type-page-title: 38px;
    --type-section-title: 31px;
    --type-panel-title: 27px;
    --type-card-title: 22px;
  }

  body[data-page="realizacja"].v2-page .case-hero-copy h1,
  body.legal-page .hero h1,
  body.interaction-legal-page .hero h1 {
    font-size: 37px !important;
    line-height: 1.05;
  }

  body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__copy h2,
  body.legal-page .section h2,
  body.interaction-legal-page .section h2 {
    font-size: 31px !important;
    line-height: 1.08;
  }
}

@media (max-width: 360px) {
  body.v2-page {
    --type-page-title: 34px;
    --type-section-title: 29px;
    --type-panel-title: 25px;
    --type-card-title: 21px;
  }

  body[data-page="realizacja"].v2-page .case-hero-copy h1,
  body.legal-page .hero h1,
  body.interaction-legal-page .hero h1 {
    font-size: 34px !important;
  }

  body[data-page="realizacja"].v2-page .case-signature-card .aurea-conference-card__copy h2,
  body.legal-page .section h2,
  body.interaction-legal-page .section h2 {
    font-size: 29px !important;
  }
}

/* Last header layer: kept at EOF because this stylesheet has older header overrides above. */
/* Effective footer layer: placed late to win over historical footer styles. */
.v2-footer[data-motion-scene],
body.legal-page .site-footer[data-motion-scene],
body.interaction-legal-page .site-footer[data-motion-scene] {
  position: relative;
  isolation: isolate;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(390px, 1.2fr) minmax(220px, 0.72fr);
  gap: clamp(30px, 4.4vw, 74px);
  align-items: start;
  justify-items: stretch;
  overflow: hidden;
  border-top: 1px solid rgba(247, 251, 255, 0.1);
  background:
    radial-gradient(circle at 16% 0%, rgba(96, 245, 255, 0.12), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(255, 138, 61, 0.08), transparent 29%),
    linear-gradient(180deg, rgba(3, 7, 10, 0.98), #05070a 74%);
  color: rgba(247, 251, 255, 0.66);
  padding: clamp(58px, 6.2vw, 86px) max(24px, calc((100vw - 1180px) / 2)) clamp(44px, 5vw, 70px);
  text-align: left;
}

.v2-footer[data-motion-scene]::before,
body.legal-page .site-footer[data-motion-scene]::before,
body.interaction-legal-page .site-footer[data-motion-scene]::before {
  content: "";
  position: absolute;
  display: block;
  left: max(24px, calc((100vw - 1180px) / 2));
  right: max(24px, calc((100vw - 1180px) / 2));
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 245, 255, 0.64), rgba(255, 138, 61, 0.48), transparent);
  opacity: 0.78;
}

.v2-footer[data-motion-scene]::after,
body.legal-page .site-footer[data-motion-scene]::after,
body.interaction-legal-page .site-footer[data-motion-scene]::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  left: 10%;
  width: min(420px, 42vw);
  height: 1px;
  background: rgba(96, 245, 255, 0.9);
  box-shadow: 0 0 28px rgba(96, 245, 255, 0.28);
  opacity: 0;
  transform: translateX(-36%);
}

.v2-footer[data-motion-scene].is-scene-visible::after,
body.legal-page .site-footer[data-motion-scene].is-scene-visible::after,
body.interaction-legal-page .site-footer[data-motion-scene].is-scene-visible::after {
  animation: footerLineScan 2.8s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.v2-footer[data-motion-scene] p,
body.legal-page .site-footer[data-motion-scene] p,
body.interaction-legal-page .site-footer[data-motion-scene] p {
  margin: 0;
}

.v2-footer[data-motion-scene] .v2-footer__brand,
body.legal-page .site-footer[data-motion-scene] .site-footer__brand,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__brand {
  min-width: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px 18px;
  align-items: start;
}

.v2-footer[data-motion-scene] .v2-footer__brand img,
body.legal-page .site-footer[data-motion-scene] .site-footer__brand .footer-symbol,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__brand .footer-symbol {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(96, 245, 255, 0.16));
  opacity: 0.9;
}

.v2-footer[data-motion-scene] .v2-footer__brand p:first-of-type,
body.legal-page .site-footer[data-motion-scene] .site-footer__brand p:first-of-type,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__brand p:first-of-type {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.v2-footer[data-motion-scene] .v2-footer__brand strong,
body.legal-page .site-footer[data-motion-scene] .site-footer__brand strong,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__brand strong {
  max-width: 440px;
  color: var(--v2-ink, #f7fbff);
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.v2-footer[data-motion-scene] .v2-footer__brand span,
body.legal-page .site-footer[data-motion-scene] .site-footer__brand span,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__brand span {
  color: rgba(96, 245, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}

.v2-footer[data-motion-scene] .v2-footer__meta,
body.legal-page .site-footer[data-motion-scene] .site-footer__meta,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__meta {
  grid-column: 2;
  color: rgba(247, 251, 255, 0.46);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
}

.v2-footer[data-motion-scene] .v2-footer__links,
body.legal-page .site-footer[data-motion-scene] .site-footer__links,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__links {
  grid-column: auto;
  grid-row: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
  justify-content: stretch;
}

.v2-footer[data-motion-scene] .v2-footer__links div,
body.legal-page .site-footer[data-motion-scene] .site-footer__links div,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__links div,
.v2-footer[data-motion-scene] .v2-footer__contact,
body.legal-page .site-footer[data-motion-scene] .site-footer__contact,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__contact {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: start;
}

.v2-footer[data-motion-scene] .v2-footer__links span,
body.legal-page .site-footer[data-motion-scene] .site-footer__links span,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__links span,
.v2-footer[data-motion-scene] .v2-footer__contact > span,
body.legal-page .site-footer[data-motion-scene] .site-footer__contact > span,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__contact > span {
  color: rgba(255, 138, 61, 0.88);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.v2-footer[data-motion-scene] a,
body.v2-page:not([data-page="home"]) .v2-footer[data-motion-scene] a,
body.legal-page .site-footer[data-motion-scene] a,
body.interaction-legal-page .site-footer[data-motion-scene] a {
  width: fit-content;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: rgba(247, 251, 255, 0.7);
  box-shadow: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  padding: 0 0 3px;
  text-decoration: none;
  text-transform: none;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.v2-footer[data-motion-scene] a:hover,
.v2-footer[data-motion-scene] a:focus-visible,
body.legal-page .site-footer[data-motion-scene] a:hover,
body.legal-page .site-footer[data-motion-scene] a:focus-visible,
body.interaction-legal-page .site-footer[data-motion-scene] a:hover,
body.interaction-legal-page .site-footer[data-motion-scene] a:focus-visible {
  border-color: rgba(96, 245, 255, 0.38);
  background: transparent;
  color: var(--v2-ink, #f7fbff);
  transform: translateX(3px);
}

.v2-footer[data-motion-scene] .v2-footer__cta,
body.legal-page .site-footer[data-motion-scene] .site-footer__cta,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__cta {
  min-height: 40px;
  border: 1px solid rgba(96, 245, 255, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.16), rgba(255, 79, 216, 0.09)),
    rgba(247, 251, 255, 0.04);
  color: var(--v2-ink, #f7fbff);
  padding: 0 14px;
  box-shadow: 0 14px 34px rgba(255, 79, 216, 0.08);
}

.v2-footer[data-motion-scene] .v2-footer__cta:hover,
.v2-footer[data-motion-scene] .v2-footer__cta:focus-visible,
body.legal-page .site-footer[data-motion-scene] .site-footer__cta:hover,
body.legal-page .site-footer[data-motion-scene] .site-footer__cta:focus-visible,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__cta:hover,
body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__cta:focus-visible {
  border-color: rgba(255, 138, 61, 0.58);
  background: linear-gradient(135deg, var(--v2-cyan, #60f5ff), var(--v2-magenta, #ff4fd8) 72%, var(--v2-orange, #ff8a3d));
  color: #031010;
  transform: translateY(-1px);
}

@media (max-width: 1040px) {
  .v2-footer[data-motion-scene],
  body.legal-page .site-footer[data-motion-scene],
  body.interaction-legal-page .site-footer[data-motion-scene] {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  }

  .v2-footer[data-motion-scene] .v2-footer__links,
  body.legal-page .site-footer[data-motion-scene] .site-footer__links,
  body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__links {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 720px) {
  .v2-footer[data-motion-scene],
  body.legal-page .site-footer[data-motion-scene],
  body.interaction-legal-page .site-footer[data-motion-scene] {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 18px 42px;
  }

  .v2-footer[data-motion-scene]::before,
  body.legal-page .site-footer[data-motion-scene]::before,
  body.interaction-legal-page .site-footer[data-motion-scene]::before {
    left: 18px;
    right: 18px;
  }

  .v2-footer[data-motion-scene] .v2-footer__links,
  body.legal-page .site-footer[data-motion-scene] .site-footer__links,
  body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__links {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .v2-footer[data-motion-scene] .v2-footer__brand,
  body.legal-page .site-footer[data-motion-scene] .site-footer__brand,
  body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__brand {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px 14px;
  }

  .v2-footer[data-motion-scene] .v2-footer__brand img,
  body.legal-page .site-footer[data-motion-scene] .site-footer__brand .footer-symbol,
  body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__brand .footer-symbol {
    width: 44px;
    height: 44px;
  }

  .v2-footer[data-motion-scene] .v2-footer__meta,
  body.legal-page .site-footer[data-motion-scene] .site-footer__meta,
  body.interaction-legal-page .site-footer[data-motion-scene] .site-footer__meta {
    grid-column: 1 / -1;
    max-width: 280px;
  }
}

@media (max-width: 360px) {
  .v2-footer[data-motion-scene],
  body.legal-page .site-footer[data-motion-scene],
  body.interaction-legal-page .site-footer[data-motion-scene] {
    padding-inline: 15px;
  }

  .v2-footer[data-motion-scene] a,
  body.v2-page:not([data-page="home"]) .v2-footer[data-motion-scene] a,
  body.legal-page .site-footer[data-motion-scene] a,
  body.interaction-legal-page .site-footer[data-motion-scene] a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-footer[data-motion-scene].is-scene-visible::after,
  body.legal-page .site-footer[data-motion-scene].is-scene-visible::after,
  body.interaction-legal-page .site-footer[data-motion-scene].is-scene-visible::after {
    animation: none;
  }

  .v2-footer[data-motion-scene] a,
  body.legal-page .site-footer[data-motion-scene] a,
  body.interaction-legal-page .site-footer[data-motion-scene] a {
    transition: none;
  }
}

/* Header dropdown breathing pass. */
.nav-menu {
  width: min(468px, calc(100vw - 32px)) !important;
}

.nav-menu-shell {
  gap: 11px !important;
  padding: 13px !important;
}

.nav-menu-card {
  min-height: 82px !important;
  grid-template-columns: 94px minmax(0, 1fr) !important;
  gap: 15px !important;
  align-items: center !important;
  border-color: rgba(247, 251, 255, 0.09) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025) !important;
  padding: 10px 12px !important;
}

.nav-menu-card:hover,
.nav-menu-card:focus-visible,
.nav-menu-card.is-active {
  border-color: rgba(96, 245, 255, 0.3) !important;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.12), rgba(255, 79, 216, 0.055)),
    rgba(255, 255, 255, 0.048) !important;
}

.nav-menu-thumb {
  height: 60px !important;
}

.nav-menu-copy {
  gap: 6px !important;
  align-content: center !important;
  padding-block: 2px !important;
}

.nav-menu-copy strong {
  font-size: 18px !important;
  line-height: 1.06 !important;
}

.nav-menu-copy small {
  max-width: 270px !important;
  font-size: 12px !important;
  line-height: 1.38 !important;
}

@media (max-width: 900px) {
  .nav-menu-shell {
    gap: 10px !important;
    padding: 10px !important;
  }

  .nav-menu-card {
    min-height: 78px !important;
    grid-template-columns: 82px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 9px !important;
  }

  .nav-menu-thumb {
    height: 58px !important;
  }

  .nav-menu-copy {
    gap: 5px !important;
    padding-block: 0 !important;
  }

  .nav-menu-copy strong {
    font-size: 16px !important;
    line-height: 1.08 !important;
  }

  .nav-menu-copy small {
    max-width: none !important;
    font-size: 12px !important;
    line-height: 1.32 !important;
  }
}

@media (max-width: 420px) {
  .nav-menu-shell {
    gap: 9px !important;
    padding: 9px !important;
  }

  .nav-menu-card {
    min-height: 74px !important;
    grid-template-columns: 76px minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 8px !important;
  }

  .nav-menu-thumb {
    height: 54px !important;
  }
}

.command-menu-toggle {
  display: none;
}

.command-bar {
  min-height: 64px;
  grid-template-columns: minmax(178px, 0.9fr) minmax(470px, 1.35fr) minmax(286px, 0.9fr);
  gap: clamp(16px, 2vw, 30px);
  padding: 8px max(18px, calc((100vw - 1320px) / 2 + 18px));
  border-bottom-color: rgba(96, 245, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(3, 7, 10, 0.86), rgba(3, 7, 10, 0.68)),
    linear-gradient(90deg, rgba(96, 245, 255, 0.075), transparent 34%, rgba(255, 79, 216, 0.05));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px) saturate(150%);
}

.command-bar.is-scrolled {
  min-height: 60px;
  background:
    linear-gradient(180deg, rgba(3, 7, 10, 0.96), rgba(3, 7, 10, 0.84)),
    linear-gradient(90deg, rgba(96, 245, 255, 0.09), transparent 34%, rgba(255, 79, 216, 0.06));
  border-bottom-color: rgba(96, 245, 255, 0.26);
}

.command-brand {
  min-height: 40px;
  gap: 12px;
  justify-self: start;
}

.command-brand img {
  width: clamp(128px, 10vw, 154px);
}

.command-brand span {
  max-width: 112px;
  color: rgba(247, 251, 255, 0.62);
  font-size: 11px;
  line-height: 1.15;
  white-space: normal;
}

.experience-deck {
  justify-self: center;
  width: min(100%, 590px);
  min-height: 46px;
  gap: 4px;
  overflow: visible;
}

.nav-top-link,
.nav-group-trigger {
  min-width: clamp(78px, 6.2vw, 96px);
  min-height: 44px;
  padding: 0 10px;
  line-height: 1.06;
}

.experience-deck a,
.nav-group-trigger {
  overflow: visible;
  font-size: 13px;
  letter-spacing: 0;
}

.nav-top-link > span,
.nav-group-trigger > span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-top-link small,
.nav-group-trigger small {
  max-width: 100%;
  color: rgba(96, 245, 255, 0.78);
  font-size: 10px;
  line-height: 1.05;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-group-trigger::after {
  right: 5px;
  top: 13px;
}

.nav-menu {
  width: min(440px, calc(100vw - 32px));
  padding-top: 10px;
}

.nav-group:first-of-type .nav-menu {
  left: 0;
  transform: translateX(-30%) translateY(12px) scale(0.985);
}

.nav-group:first-of-type.is-open .nav-menu,
.nav-group:first-of-type:hover .nav-menu,
.nav-group:first-of-type:focus-within .nav-menu {
  transform: translateX(-30%) translateY(0) scale(1);
}

.nav-group:last-of-type .nav-menu {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(12px) scale(0.985);
}

.nav-group:last-of-type.is-open .nav-menu,
.nav-group:last-of-type:hover .nav-menu,
.nav-group:last-of-type:focus-within .nav-menu {
  transform: translateX(0) translateY(0) scale(1);
}

.nav-menu-shell {
  gap: 9px;
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(135deg, rgba(96, 245, 255, 0.105), rgba(255, 79, 216, 0.055)),
    rgba(3, 7, 10, 0.97);
  padding: 10px;
}

.nav-menu-card {
  min-height: 74px;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  border-radius: 6px !important;
}

.nav-menu-thumb {
  height: 54px;
  border-radius: 5px;
}

.nav-menu-copy {
  min-width: 0;
  gap: 4px;
}

.nav-menu-copy strong {
  font-size: 17px;
  line-height: 1.08;
  white-space: normal;
}

.nav-menu-copy small {
  display: block;
  color: rgba(247, 251, 255, 0.66);
  font-size: 12px;
  line-height: 1.28;
  white-space: normal;
  overflow-wrap: anywhere;
}

.command-actions {
  justify-self: end;
  gap: 10px;
}

.command-phone {
  min-height: 40px;
  border-color: rgba(247, 251, 255, 0.14);
  border-radius: 6px;
  background: rgba(247, 251, 255, 0.045);
  color: rgba(247, 251, 255, 0.82);
  box-shadow: none;
  padding: 0 14px;
}

.command-bar .command-cta,
.command-cta {
  min-height: 42px;
  border-radius: 6px;
  clip-path: none;
  padding: 0 18px;
  background:
    radial-gradient(circle at 28% 0%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, var(--v2-cyan, #60f5ff), var(--v2-magenta, #ff4fd8) 72%, var(--v2-orange, #ff8a3d));
  color: #031010;
  box-shadow: 0 14px 36px rgba(48, 199, 181, 0.28);
  text-transform: none;
  white-space: nowrap;
}

.command-bar .command-cta::after,
.command-cta::after {
  display: none;
}

.command-phone:hover,
.command-phone:focus-visible {
  border-color: rgba(96, 245, 255, 0.36);
  background: rgba(96, 245, 255, 0.08);
  box-shadow: none;
}

.command-cta:hover,
.command-cta:focus-visible {
  border-color: rgba(255, 138, 61, 0.74);
  box-shadow: 0 18px 44px rgba(48, 199, 181, 0.34);
}

@media (max-width: 1180px) {
  .command-bar {
    grid-template-columns: minmax(150px, 0.75fr) minmax(420px, 1fr) auto;
    gap: 12px;
    padding-inline: 14px;
  }

  .command-brand span {
    display: none;
  }

  .experience-deck {
    width: min(100%, 520px);
  }

  .nav-top-link,
  .nav-group-trigger {
    min-width: 78px;
    padding-inline: 8px;
  }

  .command-phone {
    display: none;
  }
}

@media (max-width: 900px) {
  body.is-mobile-nav-open {
    overflow: hidden;
  }

  .command-bar {
    top: 0;
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
    padding: 9px 10px;
  }

  .command-brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    justify-content: flex-start;
    min-height: 40px;
  }

  .command-brand img {
    width: clamp(112px, 32vw, 142px);
  }

  .command-actions {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    justify-self: end;
  }

  .command-phone {
    display: none;
  }

  .command-bar .command-cta,
  .command-cta {
    min-height: 40px;
    padding-inline: clamp(11px, 3.2vw, 16px);
    font-size: clamp(12px, 3.15vw, 14px);
  }

  .command-menu-toggle {
    position: relative;
    z-index: 103;
    grid-column: 3;
    grid-row: 1;
    width: 42px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(247, 251, 255, 0.16);
    border-radius: 6px;
    background: rgba(247, 251, 255, 0.055);
    color: var(--v2-ink);
    padding: 0;
  }

  .command-menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .command-menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .command-menu-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .command-bar.is-mobile-open .command-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .experience-deck {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 62px;
    z-index: 102;
    grid-column: 1 / -1;
    width: auto;
    max-height: calc(100svh - 76px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid rgba(96, 245, 255, 0.2);
    border-radius: 0 0 8px 8px;
    background:
      linear-gradient(135deg, rgba(96, 245, 255, 0.11), rgba(255, 79, 216, 0.06)),
      rgba(3, 7, 10, 0.985);
    box-shadow: 0 28px 84px rgba(0, 0, 0, 0.54);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -10px, 0);
    visibility: hidden;
    mask-image: none;
    transition: opacity 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 220ms ease;
    backdrop-filter: blur(24px) saturate(150%);
  }

  .command-bar.is-mobile-open .experience-deck {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  .experience-deck .deck-indicator {
    display: none;
  }

  .nav-top-link,
  .nav-group,
  .nav-group-trigger {
    width: 100%;
    min-width: 0;
  }

  .experience-deck a,
  .nav-group-trigger {
    min-height: 52px;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid rgba(247, 251, 255, 0.1);
    border-radius: 6px;
    background: rgba(247, 251, 255, 0.045);
    padding: 0 12px;
    text-align: left;
    font-size: 15px;
  }

  .nav-top-link,
  .nav-group-trigger {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-top-link small,
  .nav-group-trigger small {
    margin-left: auto;
    margin-top: 0;
    font-size: 12px;
    text-align: right;
  }

  .nav-group-trigger::after {
    right: 14px;
    top: 21px;
  }

  .nav-menu,
  .nav-group:first-of-type .nav-menu,
  .nav-group:last-of-type .nav-menu,
  .nav-group:hover .nav-menu {
    position: static;
    left: auto;
    right: auto;
    width: 100%;
    max-height: 0;
    padding-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: none;
    visibility: hidden;
    transition: max-height 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease, visibility 180ms ease;
  }

  .nav-group.is-open .nav-menu,
  .nav-group:first-of-type.is-open .nav-menu,
  .nav-group:last-of-type.is-open .nav-menu,
  .nav-group:focus-within .nav-menu {
    max-height: 70svh;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-menu-shell {
    max-height: none;
    gap: 8px;
    overflow: visible;
    padding: 8px;
  }

  .nav-menu-card {
    min-height: 70px;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
    padding: 8px !important;
  }

  .nav-menu-thumb {
    height: 52px;
  }

  .nav-menu-copy strong {
    font-size: 16px;
  }

  .nav-menu-copy small {
    font-size: 12px;
    line-height: 1.25;
  }
}

@media (max-width: 420px) {
  .command-bar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 6px;
  }

  .command-brand img {
    width: 104px;
  }

  .command-bar .command-cta,
  .command-cta {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .command-menu-toggle {
    width: 40px;
    height: 38px;
  }

  .experience-deck {
    left: 8px;
    right: 8px;
    top: 58px;
    max-height: calc(100svh - 70px);
  }
}

@media (max-width: 340px) {
  .command-bar .command-cta,
  .command-cta {
    max-width: 104px;
    white-space: normal;
    line-height: 1.05;
  }
}

/* Final cascade guard for Twoja AI CTA. */
.command-bar .command-cta {
  min-width: 124px;
  min-height: 48px;
  flex-direction: column;
  gap: 2px;
  padding: 6px 16px 7px;
  line-height: 1;
  white-space: normal;
}

.command-bar .command-cta span,
.command-bar .command-cta small,
.v2-footer__cta span,
.v2-footer__cta small,
.site-footer__cta span,
.site-footer__cta small,
.ai-request-cta__button span,
.ai-request-cta__button small {
  display: block;
  letter-spacing: 0;
  line-height: 1;
}

.command-bar .command-cta span {
  font-size: 14px;
  font-weight: 760;
}

.command-bar .command-cta small {
  color: rgba(3, 16, 18, 0.76);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.v2-footer .v2-footer__cta,
.site-footer .site-footer__cta {
  min-height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  padding: 8px 14px;
}

.v2-footer__cta span,
.site-footer__cta span {
  font-size: 14px;
  font-weight: 760;
}

.v2-footer__cta small,
.site-footer__cta small {
  color: rgba(247, 251, 255, 0.66);
  font-size: 11px;
  font-weight: 650;
}

.v2-footer__cta:hover small,
.v2-footer__cta:focus-visible small,
.site-footer__cta:hover small,
.site-footer__cta:focus-visible small {
  color: rgba(3, 16, 18, 0.72);
}

@media (max-width: 900px) {
  .command-bar .command-cta {
    min-width: 112px;
    min-height: 42px;
    padding: 5px 12px 6px;
  }

  .command-bar .command-cta span {
    font-size: 13px;
  }

  .command-bar .command-cta small {
    font-size: 9px;
  }
}

@media (max-width: 560px) {
  .command-bar .command-cta {
    min-width: 96px;
    min-height: 40px;
    padding: 5px 9px;
  }

  .command-bar .command-cta span {
    font-size: 12px;
  }

  .command-bar .command-cta small {
    font-size: 8px;
  }
}
