:root {
  color-scheme: dark;
  --bg: #020404;
  --panel: #07100f;
  --panel-soft: #0a1614;
  --line: rgba(120, 255, 238, 0.18);
  --line-quiet: rgba(232, 246, 242, 0.12);
  --text: #eaf8f4;
  --muted: rgba(234, 248, 244, 0.66);
  --quiet: rgba(234, 248, 244, 0.42);
  --brand: #42ffe8;
  --brand-soft: rgba(66, 255, 232, 0.14);
  --warm: #efe7d0;
  --max: 1180px;
  --duration: 16s;
  --mark-size: clamp(72px, 7vw, 118px);
  --motion-ease: cubic-bezier(0.22, 0, 0.16, 1);
  --motion-soft: cubic-bezier(0.32, 0, 0.18, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  animation: bodyEnter 960ms var(--motion-ease) forwards;
}

body.is-leaving {
  animation: bodyExit 320ms var(--motion-soft) forwards;
}

body.is-home {
  overflow-x: hidden;
}

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

.site-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 42%, rgba(66, 255, 232, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(4, 18, 16, 0.62), rgba(2, 4, 4, 0.98) 520px),
    var(--bg);
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(90deg, transparent 0%, rgba(66, 255, 232, 0.06) 50%, transparent 100%),
    radial-gradient(ellipse at 50% 28%, rgba(234, 248, 244, 0.08), transparent 38%);
  mask-image: linear-gradient(180deg, black 0%, transparent 72%);
}

.site-shell::after {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100svh;
  opacity: 0.26;
  background: linear-gradient(180deg, transparent, rgba(66, 255, 232, 0.32), transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 48px), var(--max));
  min-height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(232, 246, 242, 0.08);
  background: linear-gradient(180deg, rgba(2, 4, 4, 0.72), rgba(2, 4, 4, 0.28));
  backdrop-filter: blur(22px);
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  background-image: url("Brand/brand-master-opening.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 423px auto;
  filter: drop-shadow(0 0 8px rgba(66, 255, 232, 0.36));
}

.brand-name {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-name strong {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
}

.brand-name span {
  font-size: 9px;
  line-height: 1;
  color: var(--quiet);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 12px;
  color: rgba(234, 248, 244, 0.54);
}

.site-nav a {
  position: relative;
  padding: 34px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--brand);
  transition: transform 360ms var(--motion-ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.page-main {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(56px, 10vw, 140px);
  align-items: center;
  min-height: calc(100svh - 88px);
  padding: clamp(96px, 12vw, 158px) 0 clamp(92px, 11vw, 148px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 30px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 34px;
  font-size: clamp(56px, 8.5vw, 124px);
  font-weight: 400;
  line-height: 0.96;
}

.lead {
  max-width: 520px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: clamp(17px, 1.65vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: contentEnter 900ms var(--motion-ease) 360ms forwards;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(120, 255, 238, 0.22);
  color: var(--text);
  background: rgba(66, 255, 232, 0.035);
  font-size: 12px;
  transition: border-color 360ms var(--motion-ease), background 360ms var(--motion-ease), transform 360ms var(--motion-ease);
}

.button:hover {
  border-color: rgba(66, 255, 232, 0.48);
  background: rgba(66, 255, 232, 0.1);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--muted);
  background: transparent;
}

.signal-panel {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 26px 0 0 34px;
  border-top: 1px solid rgba(120, 255, 238, 0.16);
  opacity: 0.78;
}

.signal-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, rgba(66, 255, 232, 0.36), transparent);
}

.signal-panel p {
  margin: 0 0 28px;
  color: var(--quiet);
  font-size: 11px;
}

.signal-list {
  display: grid;
  gap: 22px;
}

.signal-item {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(232, 246, 242, 0.08);
}

.signal-item strong {
  font-size: 14px;
  font-weight: 500;
}

.signal-item span {
  color: rgba(234, 248, 244, 0.36);
  font-size: 11px;
}

.section {
  padding: 92px 0;
  border-top: 1px solid rgba(232, 246, 242, 0.08);
}

.section-head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
  margin-bottom: 56px;
}

.section-kicker {
  color: var(--brand);
  font-size: 11px;
}

.section-title {
  max-width: 720px;
  margin: 0;
  font-size: clamp(32px, 5.8vw, 78px);
  font-weight: 400;
  line-height: 0.98;
}

.section-head p {
  max-width: 480px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.72;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-quiet);
  border: 1px solid var(--line-quiet);
}

.tile {
  min-height: 220px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(66, 255, 232, 0.05), transparent),
    var(--panel);
}

.tile,
.row,
.contact-card,
.signal-panel {
  opacity: 0;
  transform: translateY(16px);
  animation: contentEnter 900ms var(--motion-ease) 260ms forwards;
}

.tile:nth-child(2),
.row:nth-child(2) {
  animation-delay: 360ms;
}

.tile:nth-child(3),
.row:nth-child(3) {
  animation-delay: 460ms;
}

.tile:nth-child(4),
.row:nth-child(4) {
  animation-delay: 560ms;
}

.tile:nth-child(5),
.row:nth-child(5) {
  animation-delay: 660ms;
}

.tile:nth-child(6),
.row:nth-child(6) {
  animation-delay: 760ms;
}

.tile h3 {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 400;
}

.tile p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  background: transparent;
  border: 0;
}

.solution-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 420px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(232, 246, 242, 0.09);
  background:
    radial-gradient(circle at 50% 32%, rgba(66, 255, 232, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(234, 248, 244, 0.035), transparent 58%),
    var(--panel);
  opacity: 0;
  transform: translateY(16px);
  animation: contentEnter 900ms var(--motion-ease) 260ms forwards;
}

.solution-card:nth-child(2) { animation-delay: 340ms; }
.solution-card:nth-child(3) { animation-delay: 420ms; }
.solution-card:nth-child(4) { animation-delay: 500ms; }
.solution-card:nth-child(5) { animation-delay: 580ms; }
.solution-card:nth-child(6) { animation-delay: 660ms; }

.solution-card .meta {
  color: var(--brand);
  font-size: 11px;
  opacity: 0.74;
}

.solution-card h3 {
  margin: 0;
  font-size: clamp(23px, 3vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.solution-card p {
  margin: 0;
  max-width: 260px;
  color: rgba(234, 248, 244, 0.54);
  font-size: 13px;
  line-height: 1.68;
}

.solution-visual {
  display: block;
  aspect-ratio: 1 / 1;
  margin-bottom: 8px;
  border: 1px solid rgba(232, 246, 242, 0.08);
  background:
    radial-gradient(circle at 50% 52%, rgba(234, 248, 244, 0.42), rgba(66, 255, 232, 0.13) 13%, transparent 28%),
    linear-gradient(90deg, transparent 0%, rgba(66, 255, 232, 0.08) 48%, rgba(239, 231, 208, 0.14) 50%, rgba(66, 255, 232, 0.08) 52%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(234, 248, 244, 0.035) 100%),
    var(--panel-soft);
}

.solution-visual::after {
  content: "";
  display: block;
  width: 56%;
  height: 56%;
  margin: 22% auto 0;
  border: 1px solid rgba(66, 255, 232, 0.18);
  box-shadow: 0 0 42px rgba(66, 255, 232, 0.08);
}

.workflow-list {
  display: grid;
  gap: 1px;
  background: var(--line-quiet);
  border: 1px solid var(--line-quiet);
}

.workflow-step {
  display: grid;
  grid-template-columns: 160px minmax(0, 280px) minmax(0, 1fr);
  gap: 28px;
  padding: 28px;
  background: var(--panel);
  opacity: 0;
  transform: translateY(16px);
  animation: contentEnter 900ms var(--motion-ease) 260ms forwards;
}

.workflow-step:nth-child(2) { animation-delay: 340ms; }
.workflow-step:nth-child(3) { animation-delay: 420ms; }
.workflow-step:nth-child(4) { animation-delay: 500ms; }
.workflow-step:nth-child(5) { animation-delay: 580ms; }
.workflow-step:nth-child(6) { animation-delay: 660ms; }

.workflow-step span {
  color: var(--brand);
  font-size: 12px;
}

.workflow-step h3 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
}

.workflow-list-preview .workflow-step {
  grid-template-columns: 128px minmax(0, 260px) minmax(0, 1fr);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-quiet);
  border: 1px solid var(--line-quiet);
}

.faq-item {
  min-height: 170px;
  padding: 24px;
  background: var(--panel);
}

.faq-item h3 {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 400;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.inquiry-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-quiet);
  border: 1px solid var(--line-quiet);
}

.trust-list .signal-item {
  min-height: 190px;
  padding: 24px;
  border-bottom: 0;
  background: var(--panel);
}

.latest-experiments {
  padding-top: clamp(72px, 10vw, 116px);
}

.experiment-grid {
  display: grid;
  gap: 1px;
  background: rgba(232, 246, 242, 0.08);
  border: 1px solid rgba(232, 246, 242, 0.08);
}

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

.experiment-grid-featured {
  max-width: 620px;
  grid-template-columns: 1fr;
  background: transparent;
  border: 0;
}

.experiment-grid-featured .experiment-card {
  min-height: 430px;
  border: 1px solid rgba(232, 246, 242, 0.09);
  background:
    radial-gradient(circle at 50% 34%, rgba(66, 255, 232, 0.1), transparent 31%),
    linear-gradient(180deg, rgba(234, 248, 244, 0.04), transparent 62%),
    var(--panel);
}

.experiment-grid-full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experiment-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  min-height: 310px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(66, 255, 232, 0.045), transparent 58%),
    var(--panel);
  opacity: 0;
  transform: translateY(16px);
  animation: contentEnter 900ms var(--motion-ease) 260ms forwards;
  transition: background 420ms var(--motion-ease), border-color 420ms var(--motion-ease), transform 420ms var(--motion-ease);
}

.experiment-card:nth-child(2) { animation-delay: 340ms; }
.experiment-card:nth-child(3) { animation-delay: 420ms; }
.experiment-card:nth-child(4) { animation-delay: 500ms; }
.experiment-card:nth-child(5) { animation-delay: 580ms; }
.experiment-card:nth-child(6) { animation-delay: 660ms; }
.experiment-card:nth-child(7) { animation-delay: 740ms; }
.experiment-card:nth-child(8) { animation-delay: 820ms; }
.experiment-card:nth-child(9) { animation-delay: 900ms; }
.experiment-card:nth-child(10) { animation-delay: 980ms; }
.experiment-card:nth-child(11) { animation-delay: 1060ms; }
.experiment-card:nth-child(12) { animation-delay: 1140ms; }

.experiment-card:hover {
  background:
    linear-gradient(180deg, rgba(66, 255, 232, 0.08), transparent 62%),
    var(--panel-soft);
  transform: translateY(-2px);
}

.experiment-card[aria-current="true"] {
  outline: 1px solid rgba(66, 255, 232, 0.34);
  outline-offset: -1px;
}

.experiment-visual {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(232, 246, 242, 0.08);
  background:
    radial-gradient(circle at 52% 46%, rgba(220, 255, 250, 0.68), rgba(66, 255, 232, 0.16) 13%, transparent 34%),
    linear-gradient(90deg, transparent 0%, rgba(66, 255, 232, 0.16) 46%, rgba(239, 231, 208, 0.24) 50%, rgba(66, 255, 232, 0.16) 54%, transparent 100%),
    linear-gradient(180deg, rgba(66, 255, 232, 0.08), transparent),
    #020706;
}

.experiment-visual::after {
  content: "";
  position: absolute;
  inset: 28% 15%;
  border-top: 1px solid rgba(234, 248, 244, 0.34);
  border-bottom: 1px solid rgba(66, 255, 232, 0.12);
  opacity: 0.66;
}

.experiment-meta {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 11px;
}

.experiment-card strong {
  margin-bottom: 4px;
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 400;
  line-height: 1.02;
}

.experiment-card em {
  margin-bottom: 18px;
  color: var(--quiet);
  font-size: 13px;
  font-style: normal;
}

.experiment-card p {
  margin-bottom: 20px;
  color: rgba(234, 248, 244, 0.58);
  font-size: 13px;
}

.experiment-status {
  align-self: end;
  width: fit-content;
  padding-top: 12px;
  border-top: 1px solid var(--line-quiet);
  color: var(--quiet);
  font-size: 12px;
}

.priority-a .experiment-status {
  color: rgba(66, 255, 232, 0.72);
}

.status-badge {
  align-self: end;
  width: fit-content;
  padding-top: 12px;
  border-top: 1px solid var(--line-quiet);
  color: var(--quiet);
  font-size: 12px;
}

.status-research {
  color: rgba(66, 255, 232, 0.74);
}

.status-prototype {
  color: rgba(239, 231, 208, 0.78);
}

.status-commercial-delivery {
  color: rgba(234, 248, 244, 0.84);
}

.status-archived {
  color: var(--quiet);
}

.experiment-detail {
  padding-bottom: 118px;
}

.detail-hero {
  min-height: clamp(280px, 42vw, 520px);
  margin-bottom: 42px;
  border: 1px solid var(--line-quiet);
  background:
    radial-gradient(circle at 50% 48%, rgba(220, 255, 250, 0.52), rgba(66, 255, 232, 0.12) 16%, transparent 42%),
    linear-gradient(90deg, transparent 0%, rgba(66, 255, 232, 0.12) 45%, rgba(239, 231, 208, 0.2) 50%, rgba(66, 255, 232, 0.12) 55%, transparent 100%),
    var(--panel);
  opacity: 0;
  transform: translateY(16px);
  animation: contentEnter 900ms var(--motion-ease) 180ms forwards;
}

.detail-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(36px, 8vw, 96px);
}

.detail-meta {
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--quiet);
  font-size: 12px;
}

.detail-meta strong {
  color: var(--text);
  font-size: 22px;
  font-weight: 400;
}

.detail-meta em {
  color: var(--brand);
  font-style: normal;
}

.detail-copy {
  max-width: 760px;
}

.detail-copy h2 {
  margin-bottom: 38px;
  font-size: clamp(30px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.04;
}

.detail-block {
  padding: 28px 0;
  border-top: 1px solid var(--line-quiet);
}

.detail-block h3,
.related-experiments h3 {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
}

.detail-block p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
}

.related-experiments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
  border-top: 1px solid var(--line-quiet);
}

.related-experiments h3 {
  flex: 0 0 100%;
}

.related-experiments a {
  display: inline-flex;
  padding: 10px 12px;
  border: 1px solid var(--line-quiet);
  color: var(--muted);
  font-size: 12px;
  transition: border-color 360ms var(--motion-ease), color 360ms var(--motion-ease);
}

.related-experiments a:hover {
  border-color: var(--line);
  color: var(--text);
}

.related-group {
  display: contents;
}

.empty-state {
  grid-template-columns: 160px minmax(0, 1fr) minmax(180px, 260px);
}

.page-hero {
  padding: 120px 0 64px;
  border-bottom: 1px solid var(--line-quiet);
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p,
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-actions,
.section-head,
.contact-copy {
  opacity: 0;
  transform: translateY(18px);
  animation: contentEnter 920ms var(--motion-ease) forwards;
}

.page-hero h1,
.hero-copy h1 {
  animation-delay: 120ms;
}

.page-hero p,
.hero-copy .lead {
  animation-delay: 240ms;
}

.hero-actions {
  animation-delay: 360ms;
}

.section-head {
  animation-delay: 180ms;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 8vw, 96px);
}

.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.list {
  display: grid;
  gap: 1px;
  margin: 0 0 92px;
  background: var(--line-quiet);
  border: 1px solid var(--line-quiet);
}

.row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 180px;
  gap: 28px;
  padding: 28px;
  background: var(--panel);
}

.row .meta,
.row .status {
  color: var(--quiet);
  font-size: 12px;
}

.row h2 {
  margin-bottom: 8px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
}

.row p {
  margin-bottom: 0;
  color: var(--muted);
}

.project-queue .row {
  grid-template-columns: minmax(160px, 220px) 72px minmax(0, 1fr) minmax(112px, 140px);
  align-items: stretch;
  gap: 20px;
}

.project-queue h2 {
  margin-bottom: 10px;
}

.project-cover {
  position: relative;
  min-width: 0;
  min-height: 140px;
  overflow: hidden;
  border: 1px solid var(--line-quiet);
  background:
    linear-gradient(180deg, rgba(66, 255, 232, 0.08), transparent),
    var(--panel-soft);
}

.project-cover img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.project-cover span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: var(--quiet);
  font-size: 12px;
}

.project-summary {
  max-width: 100%;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.video-entry {
  display: inline-flex;
  color: var(--quiet);
  font-size: 12px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(32px, 7vw, 86px);
  padding: 92px 0 120px;
}

.contact-band.conversion {
  align-items: end;
  min-height: calc(100vh - 76px);
  padding: clamp(92px, 12vw, 150px) 0 120px;
}

.home-contact {
  border-top: 1px solid rgba(232, 246, 242, 0.08);
}

.home-reduced .hero {
  min-height: calc(100svh - 88px);
}

.home-reduced .hero::before,
.home-reduced .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.home-reduced .hero::before {
  left: 44%;
  top: 12%;
  width: min(720px, 62vw);
  height: min(720px, 62vw);
  transform: translateX(-8%);
  opacity: 0.58;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(230, 255, 252, 0.11) 0%, rgba(66, 255, 232, 0.062) 18%, rgba(66, 255, 232, 0.018) 42%, transparent 68%),
    linear-gradient(90deg, transparent 0%, rgba(66, 255, 232, 0.06) 50%, transparent 100%);
  filter: blur(7px);
  animation: anchorBreath 8.8s var(--motion-ease) infinite alternate;
}

.home-reduced .hero::after {
  left: min(62vw, 760px);
  top: 5%;
  width: 1px;
  height: 82%;
  opacity: 0.62;
  background:
    linear-gradient(180deg, transparent 0%, rgba(66, 255, 232, 0.08) 18%, rgba(238, 255, 252, 0.52) 48%, rgba(66, 255, 232, 0.12) 72%, transparent 100%);
  box-shadow:
    -34px 24vh 84px rgba(66, 255, 232, 0.08),
    42px 36vh 120px rgba(234, 248, 244, 0.05);
  animation: traceBreath 7.6s var(--motion-ease) infinite alternate;
}

.home-reduced .hero-copy::after {
  content: "";
  position: absolute;
  left: -9vw;
  right: min(18vw, 240px);
  bottom: -34px;
  height: 1px;
  opacity: 0.44;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(66, 255, 232, 0.18) 34%, rgba(234, 248, 244, 0.1) 54%, transparent 100%);
}

.home-reduced .signal-panel {
  border-top-color: rgba(120, 255, 238, 0.12);
  background:
    linear-gradient(180deg, rgba(234, 248, 244, 0.015), transparent 64%),
    linear-gradient(90deg, rgba(66, 255, 232, 0.034), transparent 38%);
}

.home-reduced .section {
  padding: clamp(96px, 12vw, 156px) 0;
}

.home-reduced .home-statement {
  padding-top: clamp(92px, 11vw, 142px);
}

.home-reduced .home-statement .section-head {
  margin-bottom: 0;
}

.home-reduced .solution-grid-core {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-reduced .solution-grid-core .solution-card {
  min-height: clamp(380px, 36vw, 500px);
  padding: clamp(18px, 2.2vw, 28px);
  border-color: rgba(232, 246, 242, 0.068);
  background:
    linear-gradient(180deg, rgba(234, 248, 244, 0.026), transparent 36%),
    linear-gradient(120deg, rgba(66, 255, 232, 0.038), transparent 34%),
    rgba(8, 14, 14, 0.34);
}

.home-reduced .solution-grid-core .solution-card::before,
.home-reduced .solution-grid-core .solution-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-reduced .solution-grid-core .solution-card::before {
  inset: 18px;
  opacity: 0.38;
  border: 1px solid rgba(66, 255, 232, 0.06);
  background:
    linear-gradient(90deg, transparent 0%, rgba(66, 255, 232, 0.07) 50%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(234, 248, 244, 0.038) 100%);
  transform: scaleY(0.94);
  transform-origin: 50% 50%;
  transition: opacity 420ms var(--motion-ease), transform 420ms var(--motion-ease);
}

.home-reduced .solution-grid-core .solution-card::after {
  left: 50%;
  top: 10%;
  width: 1px;
  height: 42%;
  opacity: 0.32;
  background: linear-gradient(180deg, transparent, rgba(238, 255, 252, 0.5), transparent);
  box-shadow: 0 0 48px rgba(66, 255, 232, 0.16);
  transition: opacity 420ms var(--motion-ease), transform 420ms var(--motion-ease);
}

.home-reduced .solution-grid-core .solution-card:hover::before {
  opacity: 0.58;
  transform: scaleY(1);
}

.home-reduced .solution-grid-core .solution-card:hover::after {
  opacity: 0.62;
  transform: translateY(10px);
}

.home-reduced .solution-grid-core .solution-visual {
  position: relative;
  z-index: 1;
  border-color: rgba(232, 246, 242, 0.055);
  background:
    radial-gradient(ellipse at 50% 62%, rgba(234, 248, 244, 0.26), rgba(66, 255, 232, 0.1) 16%, transparent 34%),
    linear-gradient(90deg, transparent 0%, rgba(66, 255, 232, 0.12) 49%, rgba(239, 231, 208, 0.16) 50%, rgba(66, 255, 232, 0.12) 51%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(66, 255, 232, 0.036) 100%),
    rgba(7, 12, 12, 0.48);
}

.home-reduced .solution-grid-core .solution-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8%;
  width: 1px;
  height: 84%;
  opacity: 0.44;
  background: linear-gradient(180deg, transparent 0%, rgba(238, 255, 252, 0.52) 48%, transparent 100%);
  box-shadow: 0 0 34px rgba(66, 255, 232, 0.18);
}

.home-reduced .solution-grid-core .solution-card .meta,
.home-reduced .solution-grid-core .solution-card h3,
.home-reduced .solution-grid-core .solution-card p {
  position: relative;
  z-index: 1;
}

.home-reduced .research-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.62fr);
  gap: clamp(54px, 9vw, 116px);
  align-items: center;
}

.home-reduced .research-preview .section-head {
  margin-bottom: 0;
}

.home-reduced .research-preview .section-actions {
  grid-column: 2;
  margin-top: 32px;
}

.home-reduced .home-contact {
  grid-template-columns: minmax(0, 760px);
  min-height: auto;
  padding: clamp(118px, 14vw, 180px) 0 clamp(118px, 14vw, 180px);
}

.home-reduced .home-contact .section-title {
  font-size: clamp(42px, 7vw, 92px);
}

@keyframes anchorBreath {
  from {
    opacity: 0.44;
    transform: translateX(-10%) scale(0.98);
  }

  to {
    opacity: 0.68;
    transform: translateX(-6%) scale(1.025);
  }
}

@keyframes traceBreath {
  from {
    opacity: 0.4;
    transform: scaleY(0.92);
  }

  to {
    opacity: 0.7;
    transform: scaleY(1.02);
  }
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--line-quiet);
  background: var(--panel);
}

.contact-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.contact-intake {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-quiet);
}

.contact-line {
  display: grid;
  gap: 5px;
}

.contact-line strong {
  font-size: 13px;
  font-weight: 500;
}

.contact-line span {
  color: var(--quiet);
  font-size: 12px;
}

.people-reserve {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(32px, 7vw, 86px);
  align-items: end;
  padding-top: 48px;
  border-top: 1px solid var(--line-quiet);
}

.portrait-slot {
  min-height: 360px;
  border: 1px solid var(--line-quiet);
  background:
    linear-gradient(180deg, rgba(66, 255, 232, 0.08), transparent),
    var(--panel);
}

.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line-quiet);
  color: var(--quiet);
  font-size: 12px;
}

.opening-layer {
  position: fixed;
  inset: 0;
  z-index: 50;
  background:
    radial-gradient(circle at 50% 51%, rgba(160, 225, 226, 0.08), transparent 22%),
    radial-gradient(circle at 50% 54%, rgba(66, 255, 232, 0.045), transparent 38%),
    var(--bg);
  animation: openingExit 900ms ease 16.25s forwards;
  pointer-events: none;
}

.opening-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 255, 255, 0.62), rgba(155, 236, 245, 0.2) 4%, transparent 13%),
    linear-gradient(90deg, transparent 10%, rgba(154, 236, 245, 0.18) 34%, rgba(245, 255, 255, 0.55) 50%, rgba(154, 236, 245, 0.18) 66%, transparent 90%);
  filter: blur(0.8px);
  animation: openingField var(--duration) cubic-bezier(0.34, 0, 0.14, 1) forwards;
}

.opening-stage {
  position: fixed;
  left: 50vw;
  top: 50dvh;
  width: min(88vw, 1180px);
  height: min(68dvh, 620px);
  transform: translate(-50%, -50%);
  perspective: 900px;
  overflow: hidden;
}

.intro-beam {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78vw, 980px);
  height: 2px;
  transform: translate(-50%, -50%) scaleX(0);
  transform-origin: 50% 50%;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(116, 210, 218, 0.14) 12%, rgba(155, 236, 245, 0.72) 43%, rgba(245, 255, 255, 1) 50%, rgba(155, 236, 245, 0.72) 57%, rgba(116, 210, 218, 0.14) 88%, transparent 100%);
  filter: blur(0.4px);
  animation: introBeam var(--duration) cubic-bezier(0.42, 0, 0.12, 1) forwards;
}

.intro-explore {
  position: absolute;
  left: 7%;
  top: 50%;
  width: min(58vw, 760px);
  height: min(17vw, 190px);
  transform: translateY(-50%) scaleX(0.04);
  transform-origin: 0 50%;
  opacity: 0;
  clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 58%);
  background:
    radial-gradient(circle at 2% 50%, rgba(255, 255, 255, 1), rgba(196, 244, 250, 0.76) 8%, transparent 20%),
    linear-gradient(90deg, rgba(238, 255, 255, 0.96) 0%, rgba(172, 225, 231, 0.46) 36%, rgba(88, 160, 170, 0.2) 68%, transparent 100%);
  filter: blur(1px);
  animation: introExplore var(--duration) cubic-bezier(0.34, 0, 0.14, 1) forwards;
  z-index: 1;
}

.intro-space {
  position: absolute;
  inset: 8% 12%;
  opacity: 0;
  transform: translateZ(-160px) scale(0.92);
  animation: introSpace var(--duration) cubic-bezier(0.34, 0, 0.18, 1) forwards;
  z-index: 2;
}

.intro-space span {
  position: absolute;
  top: 10%;
  width: 1px;
  height: 80%;
  background: linear-gradient(180deg, transparent, rgba(236, 253, 255, 0.62), transparent);
  box-shadow: 0 0 22px rgba(116, 210, 218, 0.28);
  transform-origin: 50% 50%;
}

.intro-space span:nth-child(1) { left: 6%; transform: rotateY(42deg) scaleY(0.54); }
.intro-space span:nth-child(2) { left: 19%; transform: rotateY(34deg) scaleY(0.82); }
.intro-space span:nth-child(3) { left: 34%; transform: rotateY(22deg) scaleY(0.68); }
.intro-space span:nth-child(4) { left: 48%; transform: rotateY(8deg) scaleY(0.92); }
.intro-space span:nth-child(5) { right: 38%; transform: rotateY(-12deg) scaleY(0.72); }
.intro-space span:nth-child(6) { right: 23%; transform: rotateY(-26deg) scaleY(0.86); }
.intro-space span:nth-child(7) { right: 10%; transform: rotateY(-38deg) scaleY(0.58); }
.intro-space span:nth-child(8) { right: 2%; transform: rotateY(-46deg) scaleY(0.76); }

.intro-point {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.35);
  opacity: 0;
  background: rgba(215, 255, 249, 0.98);
  animation: introPoint var(--duration) cubic-bezier(0.38, 0, 0.16, 1) forwards;
  z-index: 4;
}

.intro-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--mark-size);
  height: var(--mark-size);
  transform: translate(-50%, -50%) scale(0.74);
  opacity: 0;
  background-image: url("Brand/brand-master-opening.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: calc(var(--mark-size) * 12.45) auto;
  filter: drop-shadow(0 0 9px rgba(74, 255, 235, 0.42));
  animation: introMark var(--duration) cubic-bezier(0.18, 0, 0.08, 1) forwards;
  z-index: 5;
}

.intro-identity {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(94vw, 1280px);
  height: min(53vw, 720px);
  transform: translate(-50%, -50%) translateY(12px);
  opacity: 0;
  animation: introIdentity var(--duration) cubic-bezier(0.24, 0, 0.1, 1) forwards;
  z-index: 6;
}

.intro-identity::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46%;
  height: 20%;
  transform: translate(-50%, -50%);
  opacity: 0.44;
  background: radial-gradient(ellipse at center, rgba(66, 255, 232, 0.32), rgba(66, 255, 232, 0.08) 42%, transparent 72%);
  filter: blur(18px);
}

.intro-identity img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.18) saturate(1.08);
}

.intro-rays {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(62vw, 720px);
  height: min(62vw, 720px);
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: introRays var(--duration) cubic-bezier(0.44, 0, 0.18, 1) forwards;
  z-index: 2;
}

.intro-rays span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(170px, 24vw, 340px);
  height: 2px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(235, 255, 255, 0.82), rgba(98, 255, 238, 0.46), transparent 76%);
  filter: blur(1.2px);
  opacity: 0.74;
}

.intro-rays span:nth-child(1) { transform: rotate(-24deg); }
.intro-rays span:nth-child(2) { transform: rotate(-14deg); }
.intro-rays span:nth-child(3) { transform: rotate(-6deg); }
.intro-rays span:nth-child(4) { transform: rotate(7deg); }
.intro-rays span:nth-child(5) { transform: rotate(17deg); }
.intro-rays span:nth-child(6) { transform: rotate(29deg); }

.intro-traces {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(88vw, 1080px);
  height: min(58vh, 480px);
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: introTraces var(--duration) cubic-bezier(0.24, 0, 0.12, 1) forwards;
  z-index: 3;
}

.intro-traces span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(72px, 16vw, 260px);
  height: 2px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(154, 236, 245, 0.5), transparent);
  filter: blur(0.4px);
}

.intro-traces span:nth-child(1) { transform: rotate(-42deg) translateX(18px); }
.intro-traces span:nth-child(2) { transform: rotate(-30deg) translateX(36px); }
.intro-traces span:nth-child(3) { transform: rotate(-20deg) translateX(12px); }
.intro-traces span:nth-child(4) { transform: rotate(-10deg) translateX(52px); }
.intro-traces span:nth-child(5) { transform: rotate(0deg) translateX(20px); }
.intro-traces span:nth-child(6) { transform: rotate(9deg) translateX(46px); }
.intro-traces span:nth-child(7) { transform: rotate(18deg) translateX(16px); }
.intro-traces span:nth-child(8) { transform: rotate(29deg) translateX(38px); }
.intro-traces span:nth-child(9) { transform: rotate(40deg) translateX(24px); }
.intro-traces span:nth-child(10) { transform: rotate(90deg) translateX(28px); }
.intro-traces span:nth-child(11) { transform: rotate(135deg) translateX(20px); }
.intro-traces span:nth-child(12) { transform: rotate(180deg) translateX(42px); }

.intro-crystal {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(70vw, 920px);
  height: min(46dvh, 420px);
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: introCrystal var(--duration) cubic-bezier(0.28, 0, 0.12, 1) forwards;
  z-index: 4;
}

.intro-crystal span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(54px, 10vw, 150px);
  height: 1px;
  transform-origin: 50% 50%;
  background: linear-gradient(90deg, transparent, rgba(180, 246, 255, 0.82), rgba(255, 255, 255, 0.95), rgba(124, 210, 255, 0.34), transparent);
  filter: blur(0.35px);
  mix-blend-mode: screen;
}

.intro-crystal span:nth-child(1) { transform: translate(-50%, -50%) rotate(48deg) translateX(-180px); }
.intro-crystal span:nth-child(2) { transform: translate(-50%, -50%) rotate(-36deg) translateX(160px); }
.intro-crystal span:nth-child(3) { transform: translate(-50%, -50%) rotate(14deg) translateX(72px); }
.intro-crystal span:nth-child(4) { transform: translate(-50%, -50%) rotate(76deg) translateX(116px); }
.intro-crystal span:nth-child(5) { transform: translate(-50%, -50%) rotate(-62deg) translateX(-92px); }

.is-home .site-header,
.is-home .hero,
.is-home .section,
.is-home .site-footer {
  opacity: 0;
  transform: translateY(18px);
  animation: pageReveal 900ms ease 16.55s forwards;
}

.is-home .section {
  animation-delay: 16.8s;
}

.is-home .site-footer {
  animation-delay: 16.95s;
}

@keyframes openingExit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pageReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bodyEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bodyExit {
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes contentEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes openingField {
  0%, 8% { opacity: 0; transform: scaleX(0.05); }
  16% { opacity: 0.36; transform: scaleX(0.28); }
  28% { opacity: 0.54; transform: scaleX(0.72); }
  42% { opacity: 0.42; transform: scaleX(1); }
  58% { opacity: 0.26; transform: scaleX(0.82); }
  72% { opacity: 0.2; transform: scaleX(0.48); }
  86%, 100% { opacity: 0; transform: scaleX(0.18); }
}

@keyframes introPoint {
  0%, 5% { opacity: 0; transform: translate(-50%, -50%) scale(0.22); box-shadow: 0 0 0 rgba(210, 255, 250, 0); }
  12% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.72); box-shadow: 0 0 5px rgba(235, 255, 255, 0.88), 0 0 22px rgba(145, 238, 245, 0.42); }
  25% { opacity: 1; transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 7px rgba(235, 255, 255, 0.96), 0 0 32px rgba(145, 238, 245, 0.56), 0 0 72px rgba(66, 255, 232, 0.12); }
  57% { opacity: 0.82; transform: translate(-50%, -50%) scale(0.82); }
  76% { opacity: 0.42; transform: translate(-50%, -50%) scale(0.46); }
  90%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.22); }
}

@keyframes introBeam {
  0%, 8% { opacity: 0; transform: translate(-50%, -50%) scaleX(0); filter: blur(0.8px); }
  16% { opacity: 0.56; transform: translate(-50%, -50%) scaleX(0.24); filter: blur(0.4px); }
  28% { opacity: 0.78; transform: translate(-50%, -50%) scaleX(0.72); }
  45% { opacity: 0.66; transform: translate(-50%, -50%) scaleX(0.96); }
  62% { opacity: 0.52; transform: translate(-50%, -50%) scaleX(0.58); }
  75% { opacity: 0.38; transform: translate(-50%, -50%) scaleX(0.22); }
  91%, 100% { opacity: 0; transform: translate(-50%, -50%) scaleX(0.04); }
}

@keyframes introExplore {
  0%, 12% { opacity: 0; transform: translateY(-50%) scaleX(0.04); filter: blur(2px); }
  22% { opacity: 0.6; transform: translateY(-50%) scaleX(0.42); }
  34% { opacity: 0.74; transform: translateY(-50%) scaleX(0.86); filter: blur(1.1px); }
  46% { opacity: 0.5; transform: translateY(-50%) scaleX(1); }
  58% { opacity: 0.18; transform: translateY(-50%) scaleX(0.62); filter: blur(2px); }
  70%, 100% { opacity: 0; transform: translateY(-50%) scaleX(0.18); }
}

@keyframes introSpace {
  0%, 24% { opacity: 0; transform: translateZ(-220px) scale(0.9); }
  34% { opacity: 0.24; transform: translateZ(-130px) scale(0.94); }
  46% { opacity: 0.54; transform: translateZ(-40px) scale(1); }
  58% { opacity: 0.4; transform: translateZ(0) scale(1.03); }
  68% { opacity: 0.22; transform: translateZ(60px) scale(1.06); }
  80%, 100% { opacity: 0; transform: translateZ(120px) scale(1.1); }
}

@keyframes introRays {
  0%, 52% { opacity: 0; transform: translate(-50%, -50%) scale(0.34) rotate(0deg); }
  62% { opacity: 0.48; transform: translate(-50%, -50%) scale(0.92) rotate(3deg); }
  72% { opacity: 0.58; transform: translate(-50%, -50%) scale(1.12) rotate(6deg); }
  82% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.62) rotate(9deg); }
  92%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.24) rotate(11deg); }
}

@keyframes introTraces {
  0%, 38% { opacity: 0; transform: translate(-50%, -50%) scale(0.68); }
  50% { opacity: 0.28; transform: translate(-50%, -50%) scale(0.88); }
  63% { opacity: 0.62; transform: translate(-50%, -50%) scale(1.1); }
  73% { opacity: 0.74; transform: translate(-50%, -50%) scale(0.78); }
  82% { opacity: 0.26; transform: translate(-50%, -50%) scale(0.38); }
  93%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.18); }
}

@keyframes introCrystal {
  0%, 34% { opacity: 0; transform: translate(-50%, -50%) scale(0.62) rotate(0deg); }
  44% { opacity: 0.18; transform: translate(-50%, -50%) scale(0.82) rotate(1deg); }
  56% { opacity: 0.46; transform: translate(-50%, -50%) scale(1.02) rotate(2deg); }
  66% { opacity: 0.62; transform: translate(-50%, -50%) scale(1.08) rotate(4deg); }
  76% { opacity: 0.22; transform: translate(-50%, -50%) scale(0.74) rotate(6deg); }
  86%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.38) rotate(8deg); }
}

@keyframes introMark {
  0%, 66% { opacity: 0; transform: translate(-50%, -50%) scale(0.42); filter: drop-shadow(0 0 2px rgba(74, 255, 235, 0)); }
  74% { opacity: 0.38; transform: translate(-50%, -50%) scale(0.72); filter: drop-shadow(0 0 18px rgba(230, 255, 255, 0.38)); }
  83% { opacity: 0.84; transform: translate(-50%, -50%) scale(0.96); filter: drop-shadow(0 0 12px rgba(230, 255, 255, 0.32)); }
  90% { opacity: 1; transform: translate(-50%, -50%) scale(1); filter: drop-shadow(0 0 9px rgba(74, 255, 235, 0.42)); }
  94%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.96); filter: drop-shadow(0 0 4px rgba(74, 255, 235, 0.12)); }
}

@keyframes introIdentity {
  0%, 80% { opacity: 0; transform: translate(-50%, -50%) translateY(14px); }
  88% { opacity: 0.38; transform: translate(-50%, -50%) translateY(6px); }
  96%, 100% { opacity: 1; transform: translate(-50%, -50%) translateY(0); }
}

@media (max-width: 1120px) {
  .experiment-grid-home,
  .experiment-grid-full,
  .solution-grid,
  .faq-grid,
  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-queue .row {
    grid-template-columns: minmax(160px, 34vw) minmax(0, 1fr);
  }

  .project-queue .row .meta,
  .project-queue .row .status {
    align-self: start;
  }
}

@media (max-width: 860px) {
  .site-header {
    width: min(calc(100% - 48px), var(--max));
    min-height: 68px;
    align-items: flex-start;
    padding: 16px 0;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .site-nav a {
    padding: 4px 0 8px;
    white-space: nowrap;
  }

  .site-nav a::after {
    bottom: 2px;
  }

  .page-main,
  .site-footer {
    width: min(calc(100% - 48px), var(--max));
  }

  .hero,
  .section-head,
  .home-reduced .research-preview,
  .contact-band,
  .people-reserve {
    grid-template-columns: 1fr;
  }

  .home-reduced .research-preview .section-actions {
    grid-column: auto;
  }

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

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

  .experiment-grid-home,
  .experiment-grid-full,
  .solution-grid,
  .faq-grid,
  .inquiry-list,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .workflow-list-preview .workflow-step,
  .workflow-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .experiment-card {
    min-height: 260px;
  }

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

  .row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .tile {
    min-height: 180px;
  }

  .contact-band.conversion {
    min-height: auto;
    padding-top: 72px;
  }

  .portrait-slot {
    min-height: 240px;
  }
}

@media (min-width: 721px) and (max-width: 1120px) {
  .experiment-grid-home,
  .experiment-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 112px;
    padding: 18px 0;
  }

  h1 {
    max-width: 340px;
    font-size: clamp(48px, 14vw, 64px);
    line-height: 0.98;
  }

  .lead {
    max-width: 300px;
    font-size: 17px;
  }

  .hero {
    gap: 54px;
    padding-top: 86px;
  }

  .home-reduced .hero {
    min-height: auto;
    padding-bottom: 92px;
  }

  .home-reduced .hero::before {
    left: 28%;
    top: 5%;
    width: 110vw;
    height: 110vw;
    opacity: 0.5;
    filter: blur(10px);
  }

  .home-reduced .hero::after {
    left: 74%;
    top: 10%;
    height: 58%;
    opacity: 0.42;
  }

  .home-reduced .hero-copy::after {
    left: 0;
    right: 12%;
    bottom: -28px;
  }

  .signal-panel {
    padding-left: 0;
  }

  .signal-panel::before {
    display: none;
  }

  .section-head {
    gap: 22px;
    margin-bottom: 38px;
  }

  .section-title {
    max-width: 340px;
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.02;
  }

  .home-reduced .section {
    padding: 86px 0;
  }

  .home-reduced .solution-grid-core {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution-card {
    min-height: 330px;
  }

  .home-reduced .solution-grid-core .solution-card {
    min-height: 320px;
  }

  .home-reduced .solution-grid-core .solution-card::before {
    inset: 14px;
  }

  .home-reduced .solution-grid-core .solution-card::after {
    top: 8%;
    height: 38%;
  }

  .solution-visual {
    aspect-ratio: 16 / 9;
  }

  .home-reduced .research-preview {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-reduced .research-preview .section-actions {
    grid-column: auto;
  }

  .experiment-grid-featured .experiment-card {
    min-height: 360px;
  }

  .home-reduced .home-contact {
    padding: 96px 0 118px;
  }

  .home-reduced .home-contact .section-title {
    font-size: clamp(42px, 12vw, 58px);
  }
}

.opening-layer {
  position: fixed;
  inset: 0;
  z-index: 50;
  overflow: hidden;
  background: #010303;
  animation: none;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 820ms var(--motion-ease), visibility 820ms var(--motion-ease);
}

.opening-layer::before {
  display: none;
}

.opening-layer.is-complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.opening-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.opening-logo {
  position: fixed;
  left: 50vw;
  top: 50dvh;
  width: min(54vw, 760px);
  transform: translate(-50%, -50%);
  opacity: 0;
  filter: drop-shadow(0 0 22px rgba(66, 255, 232, 0.34));
  transition: opacity 1600ms var(--motion-ease), filter 1800ms var(--motion-ease);
  z-index: 2;
}

.opening-layer.is-logo-visible .opening-logo {
  opacity: 1;
  filter: drop-shadow(0 0 18px rgba(66, 255, 232, 0.42));
}

.opening-logo::before,
.opening-logo::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
}

.opening-logo::before {
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(66, 255, 232, 0.24), rgba(66, 255, 232, 0.06) 36%, transparent 68%);
  filter: blur(18px);
  transition: opacity 1500ms var(--motion-ease);
}

.opening-logo::after {
  opacity: 0;
  background: linear-gradient(104deg, transparent 18%, rgba(235, 255, 255, 0.04) 42%, rgba(235, 255, 255, 0.22) 50%, rgba(66, 255, 232, 0.08) 57%, transparent 82%);
  transform: translateX(-42%);
  transition: opacity 1200ms var(--motion-ease), transform 1900ms var(--motion-ease);
  mix-blend-mode: screen;
}

.opening-layer.is-logo-visible .opening-logo::before {
  opacity: 1;
}

.opening-layer.is-logo-visible .opening-logo::after {
  opacity: 1;
  transform: translateX(42%);
}

.opening-logo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.opening-skip {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 3;
  padding: 8px 10px;
  border: 1px solid rgba(232, 246, 242, 0.14);
  color: rgba(234, 248, 244, 0.46);
  background: rgba(2, 4, 4, 0.24);
  font: inherit;
  font-size: 11px;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 300ms var(--motion-ease), border-color 300ms var(--motion-ease);
}

.opening-skip:hover {
  color: var(--text);
  border-color: rgba(66, 255, 232, 0.38);
}

.is-home .site-header,
.is-home .hero,
.is-home .section,
.is-home .home-contact,
.is-home .site-footer {
  opacity: 0;
  transform: translateY(18px);
  animation: none;
}

.is-home.is-opening-complete .site-header,
.is-home.is-opening-complete .hero,
.is-home.is-opening-complete .section,
.is-home.is-opening-complete .home-contact,
.is-home.is-opening-complete .site-footer {
  animation: pageReveal 900ms ease forwards;
}

.is-home.is-opening-complete .section,
.is-home.is-opening-complete .home-contact {
  animation-delay: 240ms;
}

.is-home.is-opening-complete .site-footer {
  animation-delay: 380ms;
}

@media (max-width: 860px) {
  .opening-logo {
    width: min(82vw, 460px);
  }

  .opening-skip {
    right: 16px;
    bottom: 16px;
  }
}
