﻿:root {
  --bg: #070807;
  --bg-soft: #10130f;
  --ink: #f4f0e6;
  --muted: rgba(244, 240, 230, .74);
  --dim: rgba(244, 240, 230, .5);
  --line: rgba(242, 241, 233, .16);
  --accent: #d7c46a;
  --accent-soft: #aab65f;
  --green: #1e2a1d;
  --shadow: 0 28px 80px rgba(0,0,0,.48);
  --font-display: "Oswald", "Arial Narrow", "Helvetica Neue Condensed", "Franklin Gothic Condensed", sans-serif;
  --font-body: "Manrope", "Segoe UI", Roboto, Helvetica, Arial, system-ui, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --space-section: clamp(4rem, 8vw, 7rem);
  --space-card: clamp(2.2rem, 3vw, 3.25rem);
  --hero-image: url('/images/focus-light.webp');
  --lens-image: url('/images/focus-light.webp');
  --aperture-blur: 0px;
  --ring-rotation: 0deg;
  --pointer-angle: 0deg;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 10%, rgba(156, 168, 95, .13), transparent 28rem),
    radial-gradient(circle at 10% 72%, rgba(215, 196, 106, .10), transparent 32rem),
    var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: .01em;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button { font: inherit; }
::selection { background: var(--accent); color: #111; }

.skip-link {
  position: fixed; left: 1rem; top: 1rem; z-index: 1000;
  transform: translateY(-150%);
  padding: .75rem 1rem; background: var(--ink); color: var(--bg);
  border-radius: 999px; transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-shell {
  width: min(100%, 1560px);
  margin: 0 auto;
  background: #070807;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), var(--shadow);
  min-height: 100vh;
}

.hero {
  min-height: 920px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7,8,7,.94) 0%, rgba(7,8,7,.62) 32%, rgba(7,8,7,.13) 60%, rgba(7,8,7,.8) 100%),
    linear-gradient(180deg, rgba(7,8,7,.25) 0%, rgba(7,8,7,.76) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: 56% center;
  transform: scale(1.035);
  filter: saturate(.9) contrast(1.05);
  transition: background-image .45s ease, filter .35s ease, transform .45s ease;
  z-index: -3;
}
.hero__grain,
.hero__grain::before {
  position: absolute; inset: 0; content: ""; pointer-events: none;
}
.hero__grain {
  z-index: -1;
  opacity: .23;
  background-image:
    radial-gradient(circle at 25% 18%, transparent 0 18%, rgba(0,0,0,.55) 64%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 3px);
}
.hero__grain::before {
  opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.nav {
  position: relative;
  z-index: 5;
  min-height: 98px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 2.4vw, 2.9rem) clamp(1.4rem, 4.2vw, 4.5rem);
}
.brand {
  letter-spacing: .18em;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  font-weight: 500;
  text-transform: uppercase;
}
.nav__links { display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 3.4rem); }
.nav__links a {
  font-size: .8rem;
  letter-spacing: .12em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(244,240,230,.8);
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -.5rem;
  width: 0; height: 1px; background: var(--accent);
  transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }
.mode-dots {
  display: inline-flex; gap: .35rem; border: 0; background: transparent; padding: .4rem;
  cursor: default;
}
.mode-dots span {
  width: .62rem; height: .62rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.82);
}
.mode-dots span:last-child { background: var(--accent-soft); border-color: var(--accent-soft); }

.hero__content {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 1.34fr) 90px;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding: 0 clamp(1.4rem, 4.2vw, 4.6rem) clamp(4rem, 8vw, 7rem);
}
.kicker {
  display: flex; align-items: center; gap: .85rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(244,240,230,.86);
}
.kicker span { width: 1.8rem; height: 1.8rem; border-left: 1px solid var(--accent); border-top: 1px solid var(--accent); display: inline-block; }
.hero-title {
  margin: 1.4rem 0 1.9rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4.3rem, 9vw, 9.8rem);
  line-height: .9;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.hero__claim {
  margin: 0 0 2.8rem;
  color: rgba(244,240,230,.9);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.75;
  max-width: 30rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 1.6rem;
  min-width: 220px;
  padding: 1rem 1.4rem;
  border: 1px solid var(--accent);
  color: var(--ink);
  background: rgba(7,8,7,.32);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .76rem;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--accent); color: #0a0b09; }
.btn--ghost { min-width: 255px; background: transparent; }

.hero__lens-wrap {
  justify-self: center;
  align-self: center;
  width: min(37vw, 470px);
  display: grid;
  place-items: center;
  gap: clamp(.45rem, .8vw, .7rem);
  position: relative;
  margin-top: -1.6rem;
}
.hero__lens {
  width: min(100%, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 34%, rgba(0,0,0,.08) 38%, rgba(0,0,0,.92) 47% 57%, rgba(255,255,255,.04) 58%, rgba(0,0,0,.98) 60% 64%, rgba(0,0,0,.96) 65%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.09),
    inset 0 0 0 18px #030403,
    inset 0 0 0 30px rgba(255,255,255,.03),
    inset 0 0 0 46px rgba(0,0,0,.9),
    0 40px 100px rgba(0,0,0,.58);
  transform: translate3d(0, 0, 0);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  transition: box-shadow .28s ease, filter .28s ease;
}
.hero__lens:hover,
.hero__lens:focus-visible {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.16),
    inset 0 0 0 18px #030403,
    inset 0 0 0 30px rgba(255,255,255,.045),
    inset 0 0 0 46px rgba(0,0,0,.88),
    0 44px 110px rgba(0,0,0,.62),
    0 0 42px rgba(215,196,106,.13);
}
.hero__lens.is-dragging { cursor: grabbing; }
.lens__image,
.lens__ring {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  pointer-events: none;
}
.lens__image {
  background-image:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.28), transparent 18%),
    linear-gradient(145deg, rgba(0,0,0,.05), rgba(0,0,0,.48)),
    var(--lens-image);
  background-size: cover;
  background-position: center;
  filter: saturate(.95) contrast(1.08);
  transition: background-image .45s ease, transform .45s ease, filter .45s ease;
  z-index: 0;
}
.hero__lens.is-focusing .lens__image {
  animation: focusPull .72s cubic-bezier(.18,.82,.22,1) both;
}
.lens__iris {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  overflow: hidden;
  transform: scale(1.06) rotate(0deg);
  filter: drop-shadow(0 0 18px rgba(0,0,0,.72));
}
.lens__iris::before,
.lens__iris::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.lens__iris::before {
  background:
    radial-gradient(circle, transparent 0 18%, rgba(0,0,0,.88) 19% 30%, transparent 31%),
    radial-gradient(circle, rgba(0,0,0,.78) 0 28%, transparent 29%),
    radial-gradient(circle, transparent 0 48%, rgba(255,255,255,.1) 49%, transparent 52%);
  z-index: 4;
}
.lens__iris::after {
  background: radial-gradient(circle at 42% 32%, rgba(255,255,255,.16), transparent 16%);
  mix-blend-mode: screen;
  z-index: 5;
}
.hero__lens.is-focusing .lens__iris {
  animation: irisPulse .72s cubic-bezier(.18,.82,.22,1) both;
}
.lens__ring {
  inset: 3%;
  border: 1px solid rgba(215,196,106,.22);
  background:
    radial-gradient(circle, transparent 0 54%, rgba(0,0,0,.42) 55% 64%, transparent 65%),
    repeating-radial-gradient(circle, transparent 0 37%, rgba(215,196,106,.2) 37.2% 37.45%, transparent 37.7% 44%),
    conic-gradient(from var(--ring-rotation), transparent 0 92deg, rgba(255,255,255,.07) 112deg 118deg, transparent 136deg 360deg);
  opacity: .68;
  transform: rotate(var(--ring-rotation));
  transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
  z-index: 1;
}
.hero__lens.is-dragging .lens__ring { opacity: .78; }
.hero__lens.is-dragging .lens__ring { transition: opacity .18s ease; }
.hero__lens.is-snapping .lens__ring {
  transition: transform .82s cubic-bezier(.16,1.42,.28,1), opacity .22s ease;
}
.lens__ring::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(3.2rem, 5vw, 4.9rem);
  aspect-ratio: 584 / 671;
  background: url('/images/schalter-clean.avif') center / contain no-repeat;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.58)) drop-shadow(0 0 18px rgba(215,196,106,.38));
  opacity: 1;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--pointer-angle) - var(--ring-rotation)))
    translateY(-255%);
  transform-origin: center;
}
.lens__engraving {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}
.lens__engraving text {
  fill: rgba(215,196,106,.64);
  font-family: var(--font-body);
  font-size: 2.35px;
  font-weight: 800;
  letter-spacing: .42em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0,0,0,.85);
}
.hero__lens::before,
.hero__lens::after {
  content: ""; position: absolute; inset: 8%; border-radius: 50%; pointer-events: none; z-index: 2;
}
.hero__lens::before {
  border: 1px solid rgba(215,196,106,.22);
  box-shadow: inset 0 0 34px rgba(215,196,106,.05);
}
.hero__lens::after {
  inset: 19%;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 64% 24%, rgba(255,255,255,.12), transparent 12%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.12));
  mix-blend-mode: screen;
}
.lens__crosshair {
  position: absolute; left: 50%; top: 50%; width: 58px; height: 58px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(215,196,106,.18);
  border-radius: 50%;
  opacity: .72;
  z-index: 4;
}
.lens__crosshair::before,
.lens__crosshair::after { content: ""; position: absolute; background: rgba(215,196,106,.35); }
.lens__crosshair::before { left: 50%; top: -14px; bottom: -14px; width: 1px; }
.lens__crosshair::after { top: 50%; left: -14px; right: -14px; height: 1px; }
.lens__label {
  position: absolute;
  left: 50%;
  font-size: clamp(.55rem, .7vw, .68rem);
  color: rgba(215,196,106,.58);
  letter-spacing: .24em;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-50%) translateY(4px);
  transition: opacity .24s ease, transform .24s ease;
  z-index: 5;
  text-shadow: 0 1px 12px rgba(0,0,0,.8);
}
.lens__label { display: none; }
.hero__lens:hover .lens__label,
.hero__lens:focus-visible .lens__label,
.hero__lens.is-dragging .lens__label { opacity: 1; transform: translateX(-50%) translateY(0); }
.lens__label--top { top: 9%; }
.lens__label--bottom { bottom: 9%; }
.lens__label--left { left: 9%; top: 50%; transform: translateY(-50%) rotate(-90deg); transform-origin: center; }
.lens__label--right { left: auto; right: 9%; top: 50%; transform: translateY(-50%) rotate(90deg); transform-origin: center; }
.hero__lens:hover .lens__label--left,
.hero__lens:focus-visible .lens__label--left,
.hero__lens.is-dragging .lens__label--left { transform: translateY(-50%) rotate(-90deg); }
.hero__lens:hover .lens__label--right,
.hero__lens:focus-visible .lens__label--right,
.hero__lens.is-dragging .lens__label--right { transform: translateY(-50%) rotate(90deg); }

.camera-panel {
  width: min(100%, 470px);
  padding: .62rem .78rem;
  border: 1px solid rgba(255,255,255,.12);
  border-left-color: rgba(215,196,106,.45);
  background: linear-gradient(135deg, rgba(7,8,7,.72), rgba(17,22,17,.38));
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(90px, .62fr) minmax(190px, 1.35fr) auto;
  align-items: center;
  gap: .55rem .8rem;
}
.camera-panel__eyebrow {
  margin: 0 0 .24rem;
  color: var(--accent);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.camera-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}
.camera-panel dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .45rem;
  margin: 0;
}
.camera-panel dt {
  color: rgba(244,240,230,.48);
  font-size: .58rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.camera-panel dd {
  margin: .12rem 0 0;
  color: rgba(244,240,230,.9);
  font-size: .78rem;
  font-weight: 700;
}
.camera-panel__mood {
  grid-column: 1 / 3;
  margin: 0;
  color: rgba(244,240,230,.76);
  font-size: .74rem;
  line-height: 1.45;
}
.camera-panel__mood,
.capture-note { max-width: 100%; }
.capture-btn {
  border: 1px solid rgba(215,196,106,.68);
  background: rgba(215,196,106,.1);
  color: var(--accent);
  cursor: pointer;
  padding: .62rem .8rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  font-weight: 800;
  grid-column: 3;
  grid-row: 1 / span 2;
}
.capture-note {
  position: absolute;
  right: 1rem;
  bottom: -2rem;
  max-width: 17rem;
  margin: 0;
  color: rgba(244,240,230,.8);
  font-size: .74rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.capture-note.is-visible { opacity: 1; transform: translateY(0); }
.hero.is-capturing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,250,225,.42);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: shutterFlash .42s ease-out both;
  z-index: 9;
}
@keyframes shutterFlash {
  0% { opacity: 0; }
  18% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes focusPull {
  0% { filter: blur(0) saturate(.95) contrast(1.08); transform: scale(1); }
  28% { filter: blur(8px) saturate(1.16) contrast(1.2); transform: scale(1.055); }
  58% { filter: blur(2px) saturate(1.08) contrast(1.14); transform: scale(1.018); }
  100% { filter: blur(0) saturate(.98) contrast(1.08); transform: scale(1); }
}
@keyframes irisPulse {
  0% { opacity: 0; clip-path: circle(48% at 50% 50%); transform: scale(1.08); }
  24% { opacity: .82; clip-path: circle(20% at 50% 50%); transform: scale(.98); }
  52% { opacity: .46; clip-path: circle(33% at 50% 50%); transform: scale(1.02); }
  100% { opacity: 0; clip-path: circle(48% at 50% 50%); transform: scale(1.08); }
}
.hero__index {
  justify-self: center;
  display: grid; gap: 1.25rem;
  color: rgba(242,241,233,.48);
  font-size: .78rem;
  position: relative;
  padding: .8rem 0;
}
.hero__index::before { content: ""; position: absolute; left: 50%; top: 1.55rem; bottom: 1.55rem; width: 1px; background: rgba(255,255,255,.14); }
.hero__index span {
  position: relative;
  z-index: 1;
  min-width: 2.75rem;
  text-align: center;
  letter-spacing: .12em;
}
.hero__index .is-active { color: var(--accent); font-size: .92rem; }
.scroll-note {
  position: absolute; right: clamp(2rem, 4vw, 4rem); bottom: 4rem;
  display: flex; gap: .65rem; align-items: center;
  text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: rgba(242,241,233,.72);
}
.scroll-note span { width: .56rem; height: 1.3rem; border: 1px solid var(--accent); border-radius: 999px; }

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.focus-card {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  padding: var(--space-card);
  display: flex; flex-direction: column; justify-content: flex-end;
  border-right: 1px solid rgba(255,255,255,.1);
  background: #111;
  isolation: isolate;
  cursor: pointer;
}
.focus-card:last-child { border-right: 0; }
.focus-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(7,8,7,.1), rgba(7,8,7,.82)), var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform .7s ease, filter .7s ease;
  z-index: -2;
}
.focus-card { --bg: linear-gradient(#222,#111); }
.focus-card::before { background-image: linear-gradient(180deg, rgba(7,8,7,.22), rgba(7,8,7,.9)), var(--bg); }
.focus-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 50% 18%, transparent, rgba(0,0,0,.68)); }
.focus-card:hover::before,
.focus-card.is-active::before { transform: scale(1.06); filter: saturate(1.08) contrast(1.04); }
.focus-card.is-active {
  box-shadow: inset 0 0 0 1px rgba(215,196,106,.42), inset 0 -120px 160px rgba(0,0,0,.32);
}
.focus-card__number {
  position: absolute; left: clamp(1.7rem, 3vw, 3rem); top: clamp(1.7rem, 3vw, 3rem);
  color: var(--accent); font-size: .9rem; letter-spacing: .16em;
}
.focus-card h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  line-height: 1;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.focus-card h2::after { content: ""; display: block; margin-top: .8rem; width: 2.1rem; height: 1px; background: var(--accent); }
.focus-card p {
  max-width: 310px;
  color: rgba(244,240,230,.78);
  margin: 0 0 2.9rem;
  font-size: clamp(.98rem, 1.05vw, 1.05rem);
  line-height: 1.72;
}
.focus-card a {
  width: 48px; height: 48px; border-radius: 999px;
  border: 1px solid var(--accent); color: var(--accent);
  display: grid; place-items: center;
  font-size: 1.35rem;
}

.filmstrip {
  position: relative;
  padding: 2.4rem 0 2.8rem;
  background: #050605;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.filmstrip::before,
.filmstrip::after {
  content: ""; position: absolute; left: 0; right: 0; height: 20px;
  background: repeating-linear-gradient(90deg, #020202 0 16px, transparent 16px 28px, #020202 28px 44px);
  opacity: .85;
}
.filmstrip::before { top: .35rem; }
.filmstrip::after { bottom: .35rem; }
.filmstrip__rail {
  display: flex; gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2.6rem clamp(1.4rem, 4vw, 4.4rem);
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(177, 164, 99, .6) transparent;
}
.filmstrip__rail.is-dragging { cursor: grabbing; user-select: none; }
.filmstrip__rail::-webkit-scrollbar { height: 4px; }
.filmstrip__rail::-webkit-scrollbar-track { background: transparent; }
.filmstrip__rail::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(120,110,68,.5), rgba(181,165,100,.72));
  border-radius: 999px;
}
.frame {
  min-width: min(290px, 75vw);
  margin: 0;
  scroll-snap-align: start;
  position: relative;
  background: #111;
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.frame img { height: 250px; object-fit: cover; filter: contrast(1.06) saturate(.9); transition: transform .5s ease; }
.frame:hover img { transform: scale(1.045); }
.frame.is-active {
  border-color: rgba(215,196,106,.76);
  box-shadow: 0 0 0 1px rgba(215,196,106,.24), 0 18px 48px rgba(0,0,0,.34);
}
.frame.is-active img { filter: contrast(1.1) saturate(1.02); }
.frame figcaption {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .8rem .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  color: var(--accent);
}
.frame figcaption span { color: rgba(215,196,106,.56); }
.filmstrip__timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  padding: .1rem clamp(1.4rem, 4vw, 4rem) 0;
  color: rgba(242,241,233,.5);
  text-transform: uppercase;
}
.filmstrip__timeline p {
  margin: 0;
  font-size: .7rem;
  letter-spacing: .14em;
}
.filmstrip__timeline-line {
  width: min(18vw, 180px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(215,196,106,.52), rgba(255,255,255,.08));
}
.filmstrip__timeline-marker {
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.16);
}
.filmstrip__timeline-marker.is-active {
  background: rgba(215,196,106,.88);
  border-color: rgba(215,196,106,.88);
  box-shadow: 0 0 0 4px rgba(215,196,106,.08);
}

.showcase-proof {
  padding: clamp(3.6rem, 7vw, 6.5rem) clamp(1.4rem, 4vw, 4.4rem);
  background:
    radial-gradient(circle at 86% 18%, rgba(215,196,106,.09), transparent 26rem),
    linear-gradient(180deg, #050605, #080a08 48%, #070807);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.showcase-proof__header {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(300px, 1fr);
  align-items: end;
  gap: clamp(1.6rem, 4vw, 4rem);
  margin-bottom: clamp(1.8rem, 3.6vw, 3.2rem);
}
.showcase-proof__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.2vw, 5.6rem);
  line-height: .98;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.showcase-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.025);
}
.proof-card {
  min-height: 270px;
  padding: clamp(1.35rem, 2.2vw, 2.2rem);
  border-right: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), transparent 46%),
    radial-gradient(circle at 50% 0%, rgba(215,196,106,.08), transparent 16rem);
}
.proof-card:last-child { border-right: 0; }
.proof-card span {
  color: rgba(215,196,106,.72);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.proof-card h3 {
  margin: 2.4rem 0 1rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.proof-card p {
  margin: 0;
  color: rgba(244,240,230,.72);
  font-size: clamp(.9rem, 1vw, .98rem);
  line-height: 1.7;
}
.interface-status {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
  padding: .85rem;
  border: 1px solid rgba(215,196,106,.18);
  background: linear-gradient(90deg, rgba(7,8,7,.72), rgba(18,22,17,.42));
  color: rgba(244,240,230,.72);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .68rem;
}
.interface-status span {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  padding: .38rem .55rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}
.interface-status b {
  color: var(--accent);
  font-weight: 800;
}

.about {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(360px, 1.05fr);
  background:
    radial-gradient(circle at 72% 56%, rgba(122,151,124,.18), transparent 28rem),
    #070807;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.about__copy,
.about__lens { padding: var(--space-section) clamp(2rem, 6vw, 6rem); }
.about__copy { border-right: 1px solid rgba(255,255,255,.1); }
.about h2 {
  margin: 1.6rem 0 1.85rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.1vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.statement-title {
  max-width: 9ch;
  font-size: clamp(2.15rem, 4.55vw, 4.55rem) !important;
  line-height: 1.02 !important;
  letter-spacing: .05em !important;
}
.about p,
.statement-copy,
.cta-text {
  color: rgba(244,240,230,.78);
  max-width: 560px;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.82;
}
.statement-copy {
  max-width: 33rem;
  margin-bottom: 2.35rem;
}
.about__lens {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.about__lens::before {
  content: "";
  position: absolute;
  width: 760px; height: 760px;
  right: -260px; top: 50%; transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 49%, rgba(7,8,7,.12) 0 23%, rgba(7,8,7,.82) 25% 32%, rgba(56,75,52,.55) 33% 41%, rgba(5,6,5,.95) 42% 48%, rgba(255,255,255,.08) 48.5%, rgba(5,6,5,.98) 49%),
    conic-gradient(from 28deg, rgba(215,196,106,.12), rgba(110,148,126,.34), rgba(0,0,0,.1), rgba(215,196,106,.1));
  opacity: .8;
  filter: blur(.2px);
}
.about__lens > * { position: relative; z-index: 1; }
.coords {
  color: var(--accent)!important;
  letter-spacing: .18em;
  text-align: center;
  margin-bottom: 2.4rem;
  font-size: .76rem;
}
.about__lens h2 {
  max-width: 10ch;
  font-size: clamp(1.9rem, 3.1vw, 4rem);
}
.cta-text {
  max-width: 31rem;
  margin-bottom: 2.4rem;
}
.cta-lead {
  color: rgba(244,240,230,.92)!important;
  max-width: 31rem!important;
  margin: 0 0 .65rem;
  font-size: clamp(1.08rem, 1.4vw, 1.35rem)!important;
  line-height: 1.45!important;
}

.footer {
  min-height: 132px;
  display: grid;
  grid-template-columns: minmax(170px, .8fr) minmax(180px, 1fr) auto auto;
  gap: 2rem;
  align-items: center;
  padding: 2.4rem clamp(1.4rem, 4vw, 4.4rem);
  color: rgba(244,240,230,.68);
}
.footer p { margin: 0; font-size: .94rem; line-height: 1.7; }
.footer nav { display: flex; gap: 2rem; }
.footer nav a { text-transform: uppercase; letter-spacing: .15em; font-size: .75rem; font-weight: 600; }
.social { display: flex; gap: .9rem; }
.social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; display: grid; place-items: center; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero { min-height: auto; }
  .hero__content { grid-template-columns: 1fr; min-height: auto; padding-top: 2.5rem; }
  .hero__lens-wrap { width: min(76vw, 560px); order: -1; margin-top: 0; }
  .camera-panel {
    width: min(100%, 540px);
  }
  .hero-title { font-size: clamp(4rem, 16vw, 8rem); }
  .hero__index, .scroll-note { display: none; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-proof__header { grid-template-columns: 1fr; align-items: start; }
  .showcase-proof__grid { grid-template-columns: repeat(2, 1fr); }
  .proof-card:nth-child(2) { border-right: 0; }
  .proof-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .about { grid-template-columns: 1fr; }
  .about__copy { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { align-items: flex-start; }
  .nav__links { display: none; }
  .hero__content { padding: 2rem 1.2rem 4.5rem; }
  .hero__copy { max-width: 100%; }
  .hero__lens-wrap { width: min(88vw, 420px); }
  .lens__label { display: none; }
  .camera-panel {
    padding: .9rem;
    backdrop-filter: blur(12px);
    display: block;
  }
  .camera-panel dl { grid-template-columns: repeat(2, 1fr); }
  .capture-note {
    position: static;
    margin-top: .7rem;
  }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card { min-height: 360px; padding: 2rem 1.35rem; }
  .focus-card p { max-width: 100%; }
  .showcase-proof { padding: 3.4rem 1.25rem; }
  .showcase-proof__header { padding: 0; }
  .showcase-proof__header h2 { font-size: clamp(2.4rem, 12vw, 4.4rem); }
  .showcase-proof__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.25rem;
    border-left: 0;
    border-right: 0;
    gap: 0;
    padding: 0 1.25rem .35rem;
    margin-inline: -1.25rem;
    -webkit-overflow-scrolling: touch;
  }
  .proof-card {
    min-width: min(82vw, 330px);
    min-height: 245px;
    scroll-snap-align: start;
    border-bottom: 0!important;
    border-right: 1px solid rgba(255,255,255,.1);
  }
  .proof-card:nth-child(2) { border-right: 1px solid rgba(255,255,255,.1); }
  .proof-card:last-child { border-right: 0; }
  .interface-status {
    margin: 1rem 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
    padding: .75rem;
  }
  .interface-status span {
    min-height: 2.75rem;
    padding: .5rem .6rem;
    font-size: .62rem;
    letter-spacing: .1em;
    justify-content: center;
    text-align: center;
  }
  .about__copy, .about__lens { padding: 3.4rem 1.25rem; }
  .about__lens::before { right: -470px; opacity: .55; }
  .filmstrip__timeline { justify-content: flex-start; }
  .btn { width: 100%; min-width: 0; }
  .statement-title { max-width: 100%; }
}

@media (max-width: 400px) {
  .interface-status { grid-template-columns: 1fr; }
  .about__lens h2 { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero.is-capturing::after { display: none; }
}
.legal-page { min-height: 100vh; }
.legal-content { padding: clamp(3rem, 8vw, 8rem); max-width: 900px; }
.legal-content h1 { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 7rem); line-height: .9; text-transform: uppercase; }
.legal-content p { color: var(--muted); font-size: 1.05rem; }
