:root {
  color-scheme: light;
  --bg: #fbfbfd;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-muted: #f4f1fb;
  --text: #17131f;
  --muted: #6f687a;
  --quiet: #9891a5;
  --line: rgba(38, 31, 54, 0.12);
  --line-strong: rgba(105, 75, 190, 0.26);
  --violet: #6f4bd8;
  --violet-soft: #efe9ff;
  --violet-faint: rgba(111, 75, 216, 0.1);
  --shadow: 0 24px 70px rgba(36, 28, 58, 0.12);
  --soft-shadow: 0 12px 34px rgba(36, 28, 58, 0.08);
  --radius: 8px;
  --header: 72px;
  --max: 1380px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(247, 244, 255, 0.92), rgba(251, 251, 253, 0.96) 32%, #fbfbfd),
    var(--bg);
  color: var(--text);
}

body.lightbox-open {
  overflow: hidden;
}

button,
input,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(111, 75, 216, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 75, 216, 0.045) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 70%);
}

.cursor-glow {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: var(--header);
  padding: 14px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 251, 253, 0.78);
  backdrop-filter: blur(22px);
}

.brand,
.top-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 760;
}

.brand-avatar {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 44%;
  box-shadow:
    0 0 0 1px rgba(111, 75, 216, 0.28),
    0 8px 20px rgba(31, 24, 50, 0.14);
}

.top-nav a,
.nav-button,
.chip-button,
.ghost-button,
.solid-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

.top-nav a,
.nav-button {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  font-size: 0.9rem;
}

.nav-button {
  appearance: none;
}

.top-nav a:hover,
.nav-button:hover,
.chip-button:hover,
.ghost-button:hover {
  border-color: var(--line-strong);
  background: #ffffff;
}

.solid-button,
.ghost-button,
.chip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  white-space: nowrap;
}

.solid-button {
  border-color: transparent;
  color: #ffffff;
  background: var(--violet);
  box-shadow: 0 12px 28px rgba(111, 75, 216, 0.22);
}

.solid-button:hover {
  background: #5f3cc6;
}

.app-shell {
  min-height: calc(100vh - var(--header));
}

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

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

h1 {
  max-width: 12ch;
  font-size: 4.8rem;
  line-height: 0.96;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 18px;
  color: var(--violet);
  font-size: 0.8rem;
  font-weight: 760;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.lead {
  max-width: 610px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(360px, 54svh, 620px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 251, 253, 0.9) 0 30%, rgba(251, 251, 253, 0.42) 54%, rgba(251, 251, 253, 0.08) 78%),
    linear-gradient(180deg, rgba(251, 251, 253, 0.01), rgba(251, 251, 253, 0.56)),
    var(--home-image) center right / cover no-repeat;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 22%;
  background: linear-gradient(to bottom, transparent, rgba(251, 251, 253, 0.74));
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.42fr);
  gap: 34px;
  align-items: center;
  min-height: clamp(360px, 54svh, 620px);
  padding: 54px 0 42px;
}

.home-copy {
  max-width: 720px;
}

.home-copy h1 {
  max-width: 16ch;
}

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

.signal-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.signal,
.stat {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.signal strong,
.stat strong {
  display: block;
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1;
}

.signal span,
.stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.8rem;
}

.portal-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  padding: 26px 0 64px;
}

.portal-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  background: var(--surface-strong);
  text-align: left;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.portal-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.portal-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.2) 64%);
}

.portal-card[data-disabled="true"] {
  background:
    linear-gradient(135deg, var(--violet-soft), #ffffff 58%),
    #ffffff;
}

.portal-card[data-disabled="true"]::before {
  background:
    linear-gradient(135deg, rgba(111, 75, 216, 0.1), transparent 55%),
    linear-gradient(to top, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
}

.portal-content {
  padding: 26px;
}

.portal-kicker,
.shoot-card-kicker,
.meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.portal-kicker span:last-child,
.shoot-index {
  color: var(--violet);
}

.portal-card h2 {
  max-width: 10ch;
  margin-top: 14px;
  font-size: 2.8rem;
  line-height: 0.98;
}

.portal-card p {
  max-width: 34ch;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.portal-card-project {
  background: #f7f5fc;
}

.portal-card-project::before {
  background: rgba(255, 255, 255, 0.42);
}

.portal-waveform {
  position: absolute;
  inset: 28px 28px auto;
  z-index: -1;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 170px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(111, 75, 216, 0.14);
  border-radius: var(--radius);
  background: #ffffff;
}

.portal-waveform span {
  width: 100%;
  height: var(--bar-height);
  max-width: 18px;
  border-radius: 2px;
  background: var(--violet);
  opacity: 0.72;
}

.project-index {
  min-height: calc(100vh - var(--header));
  padding: 72px 0 90px;
}

.project-index-hero {
  max-width: 850px;
  margin-bottom: 48px;
}

.project-index-hero h1 {
  max-width: 13ch;
}

.project-index-hero > p:last-child,
.section-heading > p:last-child {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-feature:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.project-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
}

.project-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: auto;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.project-feature-meta span:first-child {
  color: var(--violet);
  font-weight: 760;
}

.project-feature h2 {
  max-width: 12ch;
  margin-top: 86px;
  font-size: 3.4rem;
  line-height: 1;
}

.project-feature-copy > p {
  max-width: 530px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.project-open {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--violet);
  font-weight: 720;
}

.project-feature-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-width: 0;
  padding: 38px;
  color: #ffffff;
  background: #17151e;
}

.signal-score {
  position: absolute;
  top: 38px;
  left: 38px;
}

.signal-score span,
.monitor-readout span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.signal-score strong {
  display: inline-block;
  margin-top: 8px;
  font-size: 4.6rem;
  line-height: 1;
}

.signal-score em {
  color: rgba(255, 255, 255, 0.52);
  font-style: normal;
}

.signal-lines,
.monitor-wave {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 210px;
}

.signal-lines span,
.monitor-wave span {
  width: 100%;
  height: var(--signal-height);
  border-radius: 2px;
  background: #8b70e8;
}

.signal-lines span:nth-child(3n),
.monitor-wave span:nth-child(3n) {
  background: #45b9ad;
}

.project-detail-hero {
  min-height: 620px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.project-detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
  grid-template-rows: auto 1fr;
  gap: 40px 70px;
  min-height: 620px;
  padding-top: 38px;
  padding-bottom: 48px;
}

.project-back-row {
  grid-column: 1 / -1;
}

.project-detail-copy {
  align-self: end;
}

.project-detail-copy h1 {
  max-width: 11ch;
  font-size: 4.5rem;
}

.project-detail-copy > p:last-child {
  max-width: 590px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
}

.project-hero-monitor {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 32px;
  border-radius: var(--radius);
  color: #ffffff;
  background: #17151e;
}

.monitor-readout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.monitor-readout strong {
  color: #8fe0d7;
  font-size: 0.9rem;
}

.monitor-wave {
  height: 260px;
}

.project-story,
.project-process,
.project-demo,
.metric-guide {
  padding: 92px 0;
}

.project-story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
  gap: 70px;
}

.project-story h2,
.section-heading h2 {
  max-width: 14ch;
  font-size: 3.2rem;
  line-height: 1.04;
}

.project-prose {
  max-width: 760px;
}

.project-prose p {
  color: #4d4858;
  font-size: 1.08rem;
  line-height: 1.8;
}

.project-prose p + p {
  margin-top: 24px;
}

.project-process {
  border-block: 1px solid var(--line);
  background: #ffffff;
}

.section-heading {
  margin-bottom: 46px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.process-steps > div {
  min-height: 240px;
  padding: 28px 34px 18px 0;
  border-right: 1px solid var(--line);
}

.process-steps > div + div {
  padding-left: 34px;
}

.process-steps > div:last-child {
  border-right: 0;
}

.process-steps span {
  display: block;
  margin-bottom: 56px;
  color: var(--violet);
  font-size: 0.8rem;
  font-weight: 760;
}

.process-steps strong {
  display: block;
  font-size: 1.25rem;
}

.process-steps p {
  max-width: 33ch;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.project-demo {
  background: #f5f3fa;
}

.voice-lab {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.voice-prompt {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.voice-prompt > span {
  padding-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.voice-prompt blockquote {
  max-width: 850px;
  margin: 0;
  font-size: 1.55rem;
  font-weight: 660;
  line-height: 1.42;
}

.voice-waveform {
  display: block;
  width: 100%;
  height: 210px;
  margin-top: 34px;
  border-block: 1px solid var(--line);
  background: #fbfbfd;
}

.voice-controls,
.voice-review {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.voice-controls button:disabled,
.voice-review button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.record-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
}

.record-button.is-recording .record-dot {
  animation: recording-pulse 1.2s ease-in-out infinite;
}

.stop-square {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  background: currentColor;
}

.recording-timer {
  min-width: 64px;
  margin-left: auto;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.voice-review {
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.voice-review audio {
  width: min(540px, 100%);
}

.voice-status {
  min-height: 24px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.voice-privacy {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--quiet);
  font-size: 0.78rem;
  line-height: 1.55;
}

.voice-status[data-state="recording"],
.voice-status[data-state="error"] {
  color: #a2384d;
}

.voice-status[data-state="ready"] {
  color: #0f766e;
}

.analysis-results {
  scroll-margin-top: calc(var(--header) + 24px);
  padding: 54px 0 0;
}

.score-overview {
  display: grid;
  grid-template-columns: 1.35fr repeat(2, minmax(0, 1fr));
  align-items: end;
  border-block: 1px solid var(--line-strong);
}

.score-overview > div {
  min-height: 170px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.score-overview > div:last-child {
  border-right: 0;
}

.score-overview span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.score-overview strong {
  display: block;
  margin-top: 22px;
  font-size: 2rem;
}

.global-score strong {
  display: inline-block;
  color: var(--violet);
  font-size: 4.8rem;
  line-height: 0.9;
}

.global-score em {
  color: var(--muted);
  font-style: normal;
}

.analysis-transcription {
  margin-top: 28px;
  color: #4d4858;
  font-size: 1.05rem;
  line-height: 1.6;
}

.analysis-method-note {
  max-width: 900px;
  margin: 10px 0 0;
  color: var(--quiet);
  font-size: 0.82rem;
  line-height: 1.6;
}

.metric-results {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.metric-result {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(130px, 0.35fr) minmax(0, 1.5fr);
  gap: 24px;
  align-items: start;
  min-height: 100px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.metric-result span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.metric-result strong {
  display: block;
  font-size: 1.35rem;
}

.metric-result p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.metric-guide {
  background: #ffffff;
}

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

.metric-guide-item {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.metric-guide-item > span {
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 780;
}

.metric-guide-item h3 {
  margin-top: 46px;
  font-size: 1.25rem;
}

.metric-guide-item p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.project-disclaimer {
  padding: 34px 0;
  border-top: 1px solid rgba(15, 118, 110, 0.18);
  background: #eef8f6;
}

.project-disclaimer .section-wrap {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  gap: 28px;
}

.project-disclaimer strong {
  color: #0f766e;
}

.project-disclaimer p {
  color: #45615e;
  line-height: 1.6;
}

@keyframes recording-pulse {
  50% {
    opacity: 0.35;
    transform: scale(0.72);
  }
}

.photo-landing {
  padding: 48px 0 76px;
}

.photo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.5fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 30px;
}

.collection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.collection-tab {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.74);
}

.collection-tab:hover,
.collection-tab:focus-visible {
  border-color: var(--line-strong);
  color: var(--text);
}

.collection-tab.is-active {
  border-color: var(--violet);
  color: #ffffff;
  background: var(--violet);
  box-shadow: 0 10px 24px rgba(111, 75, 216, 0.18);
}

.collection-panel {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.collection-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.collection-heading h2 {
  font-size: 2rem;
}

.collection-heading span {
  color: var(--muted);
  font-size: 0.86rem;
}

.collection-panel .collection-shoot-grid {
  grid-template-columns: repeat(var(--shoot-columns), minmax(0, 1fr));
  width: 100%;
  max-width: calc(var(--shoot-columns) * 390px + (var(--shoot-columns) - 1) * 16px);
}

.photo-title h1,
.shoot-title h1 {
  max-width: 13ch;
  font-size: 4rem;
}

.photo-title p,
.shoot-title p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.signature-deck {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(380px, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  margin: 12px 0 30px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px);
}

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

.signature-copy h2 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: 3rem;
  line-height: 0.98;
}

.signature-copy p:not(.eyebrow) {
  margin: 14px 0 24px;
  color: var(--muted);
  line-height: 1.5;
}

.signature-stage {
  position: relative;
  min-height: 470px;
}

.signature-frame {
  position: absolute;
  inset: 0 0 58px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-muted);
  box-shadow: var(--shadow);
}

.signature-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-readout {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line-strong);
}

.signature-readout span {
  display: block;
  color: var(--quiet);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.signature-readout strong {
  display: block;
  margin-top: 7px;
  font-size: 1.28rem;
}

.signature-orbit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.orbit-node {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  min-height: 122px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(36, 28, 58, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.orbit-node:hover,
.orbit-node:focus-visible,
.orbit-node.is-active {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 36px rgba(111, 75, 216, 0.12);
}

.orbit-node img {
  width: 100%;
  height: 74px;
  border-radius: 6px;
  object-fit: cover;
}

.orbit-node strong,
.orbit-node em {
  display: block;
}

.orbit-node strong {
  font-size: 0.86rem;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.orbit-node em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
}

.toolbar {
  position: sticky;
  top: var(--header);
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin: 0 0 22px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.search-wrap {
  position: relative;
}

.search-wrap::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid var(--quiet);
  border-radius: 50%;
  transform: translateY(-58%);
}

.search-wrap::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 27px;
  width: 8px;
  height: 2px;
  background: var(--quiet);
  transform: rotate(45deg);
}

.search-wrap input {
  width: 100%;
  min-height: 48px;
  padding: 0 18px 0 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  color: var(--text);
  background: #ffffff;
}

.search-wrap input:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px var(--violet-faint);
}

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

.shoot-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shoot-card:hover,
.shoot-card:focus-visible {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-4px);
}

.shoot-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

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

.shoot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.52) 36%, rgba(255, 255, 255, 0.06));
}

.shoot-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 18px;
}

.shoot-card h2 {
  margin-top: 14px;
  font-size: 1.45rem;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.shoot-card .meta-line {
  margin-top: 16px;
  text-transform: none;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 240px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  background: #ffffff;
  text-align: center;
}

.shoot-view {
  padding-bottom: 72px;
}

.shoot-hero {
  position: relative;
  isolation: isolate;
  min-height: 470px;
  margin-bottom: 30px;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.shoot-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.shoot-hero[data-shoot="luce-manon"] img {
  inset: 0 auto 0 50%;
  width: min(100%, 980px);
  object-position: center 36%;
  transform: translateX(-50%);
}

.shoot-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 251, 253, 0.68), rgba(251, 251, 253, 0.4) 32%, rgba(251, 251, 253, 0.1) 58%, transparent 80%),
    linear-gradient(to top, rgba(251, 251, 253, 0.68), rgba(251, 251, 253, 0.18) 38%, transparent 70%);
}

.shoot-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 470px;
  padding-top: 54px;
  padding-bottom: 40px;
}

.back-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: auto;
}

.shoot-title {
  margin-top: 100px;
}

.shoot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 0.86rem;
}

.gallery-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.gallery-actions p {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-summary {
  position: sticky;
  top: calc(var(--header) + 10px);
  z-index: 24;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 34px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.summary-label {
  display: grid;
  gap: 3px;
  min-width: 150px;
  padding: 0 8px;
}

.summary-label span {
  color: var(--quiet);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.summary-label strong {
  font-size: 0.95rem;
}

.summary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow-x: visible;
  scrollbar-width: thin;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: #ffffff;
  white-space: nowrap;
}

.section-link span {
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 760;
}

.section-link:hover,
.section-link:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px var(--violet-faint);
}

.category-stack {
  display: grid;
  gap: 58px;
}

.gallery-section {
  scroll-margin-top: calc(var(--header) + 92px);
}

.gallery-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.gallery-section-heading h2 {
  margin-top: 6px;
  font-size: 2rem;
  line-height: 1.05;
}

.section-count {
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.photo-grid {
  display: block;
  column-count: 4;
  column-gap: 12px;
}

.photo-tile {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 12px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  break-inside: avoid;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.photo-tile:hover,
.photo-tile:focus-visible {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.photo-tile img {
  width: 100%;
  height: auto;
  transition: transform 500ms ease;
}

.photo-tile:hover img,
.photo-tile:focus-visible img {
  transform: scale(1.035);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  max-width: 320px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 10px;
  padding: 28px;
}

.lightbox[hidden],
.toast[hidden] {
  display: none;
}

.lightbox-scrim {
  position: absolute;
  inset: 0;
  background: rgba(14, 10, 24, 0.86);
  backdrop-filter: blur(18px);
}

.lightbox-frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  width: 100%;
  height: calc(100vh - 56px);
  margin: 0;
}

.lightbox-frame img {
  align-self: center;
  justify-self: center;
  max-width: 100%;
  max-height: calc(100vh - 112px);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.46);
}

.lightbox-frame figcaption {
  min-height: 28px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-size: 0.88rem;
}

.icon-button {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.icon-button span {
  display: block;
  font-size: 2rem;
  line-height: 0.8;
}

.icon-button:hover {
  transform: scale(1.06);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
}

.lightbox-prev {
  grid-column: 1;
}

.lightbox-next {
  grid-column: 3;
}

.loading {
  min-height: 60vh;
  display: grid;
  place-items: center;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .home-hero-inner,
  .photo-hero,
  .signature-deck {
    grid-template-columns: 1fr;
  }

  .home-hero {
    background:
      linear-gradient(180deg, rgba(251, 251, 253, 0.82), rgba(251, 251, 253, 0.5) 44%, rgba(251, 251, 253, 0.28)),
      var(--home-image) center / cover no-repeat;
  }

  .signal-row,
  .photo-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .signature-stage {
    min-height: 430px;
  }

  .signature-orbit {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 16px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .photo-grid {
    column-count: 3;
  }
}

@media (max-width: 860px) {
  :root {
    --header: 64px;
  }

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

  .brand span:last-child {
    display: none;
  }

  .top-nav {
    gap: 8px;
  }

  .top-nav a,
  .nav-button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .section-wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  h1,
  .photo-title h1,
  .shoot-title h1 {
    font-size: 3rem;
  }

  .lead,
  .photo-title p,
  .shoot-title p {
    font-size: 1rem;
  }

  .home-hero-inner {
    padding: 44px 0 34px;
  }

  .signal-row,
  .photo-stats,
  .portal-strip {
    grid-template-columns: 1fr;
  }

  .signature-deck {
    padding: 20px;
  }

  .signature-copy h2 {
    font-size: 2.5rem;
  }

  .signature-stage {
    min-height: 380px;
  }

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

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

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

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

  .gallery-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .summary-label {
    padding: 0;
  }

  .photo-grid {
    column-count: 2;
  }

  .lightbox {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    padding: 16px;
  }

  .icon-button {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 12px;
  }

  h1,
  .photo-title h1,
  .shoot-title h1,
  .signature-copy h2 {
    font-size: 2.35rem;
  }

  .home-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .portal-card {
    min-height: 320px;
  }

  .photo-landing {
    padding-top: 32px;
  }

  .signature-deck {
    padding: 18px 14px;
  }

  .signature-stage {
    min-height: 350px;
  }

  .signature-frame {
    inset: 0 0 58px;
  }

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

  .orbit-node {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 88px;
  }

  .orbit-node img {
    width: 72px;
    height: 70px;
  }

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

  .collection-panel .collection-shoot-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .shoot-card {
    min-height: 410px;
  }

  .shoot-hero,
  .shoot-hero-inner {
    min-height: 390px;
  }

  .shoot-title {
    margin-top: 60px;
  }

  .section-summary {
    top: calc(var(--header) + 6px);
    margin-bottom: 28px;
  }

  .section-link {
    justify-content: flex-start;
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.86rem;
    width: 100%;
  }

  .gallery-section-heading h2 {
    font-size: 1.55rem;
  }

  .category-stack {
    gap: 44px;
  }

  .photo-grid {
    column-count: 1;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
  }

  .lightbox-frame {
    grid-column: 1 / -1;
    grid-row: 1;
    height: calc(100vh - 120px);
  }

  .lightbox-frame img {
    max-height: calc(100vh - 170px);
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
    justify-self: center;
  }

  .lightbox-prev {
    grid-column: 1;
  }

  .lightbox-next {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .project-feature {
    grid-template-columns: 1fr;
  }

  .project-feature-copy {
    min-height: 410px;
  }

  .project-feature-visual {
    min-height: 380px;
  }

  .project-detail-hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .project-back-row {
    grid-column: auto;
  }

  .project-hero-monitor {
    min-height: 360px;
  }

  .project-story-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .process-steps > div,
  .process-steps > div + div {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-steps > div:last-child {
    border-bottom: 0;
  }

  .process-steps span {
    margin-bottom: 26px;
  }

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

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

  .score-overview > div {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .score-overview > div:last-child {
    border-bottom: 0;
  }

  .metric-result {
    grid-template-columns: minmax(120px, 0.4fr) minmax(110px, 0.35fr) minmax(0, 1.2fr);
    padding: 20px 0;
  }

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

  .project-disclaimer .section-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .project-index {
    padding: 42px 0 64px;
  }

  .project-feature-copy {
    min-height: 370px;
    padding: 24px;
  }

  .project-feature h2 {
    margin-top: 58px;
    font-size: 2.4rem;
  }

  .project-feature-visual {
    min-height: 320px;
    padding: 24px;
  }

  .signal-score {
    top: 24px;
    left: 24px;
  }

  .signal-score strong {
    font-size: 3.7rem;
  }

  .signal-lines {
    gap: 5px;
    height: 150px;
  }

  .project-detail-hero,
  .project-detail-hero-inner {
    min-height: 0;
  }

  .project-detail-hero-inner {
    gap: 32px;
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .project-detail-copy h1 {
    font-size: 2.8rem;
  }

  .project-detail-copy > p:last-child {
    font-size: 1rem;
  }

  .project-hero-monitor {
    min-height: 280px;
    padding: 22px;
  }

  .monitor-wave {
    gap: 5px;
    height: 170px;
  }

  .project-story,
  .project-process,
  .project-demo,
  .metric-guide {
    padding: 64px 0;
  }

  .project-story h2,
  .section-heading h2 {
    font-size: 2.3rem;
  }

  .project-prose p {
    font-size: 1rem;
  }

  .voice-lab {
    padding: 18px;
  }

  .voice-prompt blockquote {
    font-size: 1.18rem;
  }

  .voice-waveform {
    height: 150px;
    margin-top: 24px;
  }

  .voice-controls {
    flex-wrap: wrap;
  }

  .voice-controls button {
    flex: 1 1 130px;
  }

  .recording-timer {
    width: 100%;
    margin: 4px 0 0;
    text-align: left;
  }

  .voice-review {
    align-items: stretch;
    flex-direction: column;
  }

  .voice-review audio {
    width: 100%;
  }

  .global-score strong {
    font-size: 4rem;
  }

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

  .metric-result {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 18px;
    padding: 20px 0;
  }

  .metric-result p {
    grid-column: 1 / -1;
  }

  .metric-guide-item {
    min-height: 220px;
  }
}

@media (max-width: 360px) {
  .project-detail-copy h1 {
    font-size: 2.45rem;
  }
}

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