/* Snap Photography — brand site
   Void, burgundy, gold, iris. A photographer's camera, not a brochure. */

:root {
  --void: #09090a;
  --void-2: #0e0c0d;
  --raised: #171416;
  --raised-2: #21191c;
  --burgundy: #8b2942;
  --burgundy-bright: #b83857;
  --gold: #d4af77;
  --gold-soft: #e8c994;
  --gold-ink: #1a140c;
  --iris: #f5f0e8;
  --iris-dim: rgba(245, 240, 232, 0.7);
  --muted: #9a8f86;
  --faint: #6a615c;
  --glacier: #c7dbe3;
  --peak: #59f29e;
  --hairline: rgba(212, 175, 119, 0.18);
  --hairline-strong: rgba(212, 175, 119, 0.38);
  --shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --header-h: 72px;
  --gutter: 22px;
  --max: 1180px;
  --max-narrow: 760px;
  --font-display: "Fraunces", "Iowan Old Style", Palatino, Georgia, serif;
  --font-sans: "Outfit", "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--void);
  color: var(--iris);
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold-soft);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: var(--gold);
  color: var(--gold-ink);
  padding: 8px 12px;
  font-weight: 600;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - (var(--gutter) * 2), var(--max-narrow));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--iris);
}

.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}

.lede {
  margin: 16px 0 0;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--iris-dim);
  max-width: 42rem;
}

.muted {
  color: var(--muted);
}

.mono {
  font-family: var(--font-mono);
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 40px;
}

.section-head .display {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
}

.page-hero {
  padding-top: calc(var(--header-h) + 48px);
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(9, 9, 10, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--hairline);
  background: rgba(9, 9, 10, 0.92);
}

.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--iris);
  text-decoration: none;
}

.brand:hover {
  color: var(--iris);
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.brand-name {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 13px;
}

.brand-name span {
  letter-spacing: 0.04em;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  margin-left: 6px;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--iris-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

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

.nav-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--iris);
  position: relative;
  margin: 0 auto;
  transition: transform 0.2s var(--ease);
}

.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after { top: 6px; }

.mobile-nav {
  display: none;
}

body.nav-open .nav-toggle .bars {
  background: transparent;
}

body.nav-open .nav-toggle .bars::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle .bars::after {
  top: 0;
  transform: rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.15s var(--ease);
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--iris);
}

.btn-primary:hover {
  background: var(--burgundy-bright);
  color: var(--iris);
}

.btn-ghost {
  background: transparent;
  color: var(--iris);
  border-color: var(--hairline-strong);
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(0.9) contrast(1.05);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 10, 0.92) 0%, rgba(9, 9, 10, 0.55) 48%, rgba(9, 9, 10, 0.78) 100%),
    linear-gradient(180deg, rgba(9, 9, 10, 0.2) 0%, rgba(9, 9, 10, 0.92) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy .display {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.hero-promise {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--gold);
}

.hero-pitch {
  margin: 16px 0 0;
  max-width: 38rem;
  color: var(--iris-dim);
  font-size: 1.08rem;
}

.hero-micro {
  margin: 18px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  min-width: 0;
}

.hero-copy {
  min-width: 0;
}

.hero-pitch {
  overflow-wrap: break-word;
}

/* ---------- phone ---------- */

.phone {
  --w: 292px;
  width: var(--w);
  aspect-ratio: 9 / 19.4;
  border-radius: 38px;
  padding: 9px;
  background: linear-gradient(160deg, #3a3034, #0b0b0c 55%);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(212, 175, 119, 0.28);
  position: relative;
}

.phone::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 92px;
  height: 18px;
  transform: translateX(-50%);
  background: #09090a;
  border-radius: 12px;
  z-index: 3;
}

.phone-screen {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: #09090a;
  color: var(--iris);
}

.vf-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vf-chrome {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 12px 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 18%, transparent 52%, rgba(0, 0, 0, 0.78) 100%);
}

.vf-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--gold);
}

.vf-top .fmt {
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.vf-tools {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.scope {
  width: 108px;
  height: 42px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.45);
  padding: 6px 7px 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.scope svg {
  width: 100%;
  height: 100%;
}

.level {
  width: 70px;
  height: 18px;
  margin-top: 4px;
  position: relative;
}

.level span {
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 1.5px;
  background: var(--peak);
}

.vf-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vf-tele {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.vf-ring {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vf-ring .f {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  min-width: 52px;
}

.vf-track {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--burgundy-bright), var(--gold));
  position: relative;
}

.vf-track i {
  position: absolute;
  top: 50%;
  left: 22%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.vf-lenses {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}

.vf-lenses span {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

.vf-lenses span b {
  font-size: 10px;
  font-weight: 600;
  color: inherit;
}

.vf-lenses .on {
  background: var(--gold);
  color: var(--gold-ink);
  border-color: var(--gold);
}

.vf-modes {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.vf-modes .on {
  color: var(--gold);
  font-weight: 700;
}

.vf-shutter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.thumb {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.shutter {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #fff;
  display: grid;
  place-items: center;
}

.shutter i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
}

.flip {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.vf-deck {
  background: rgba(20, 16, 18, 0.72);
  border: 1px solid rgba(212, 175, 119, 0.22);
  border-radius: 16px;
  padding: 10px 12px;
  backdrop-filter: blur(10px);
}

.vf-deck .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
}

.vf-deck .progs {
  display: flex;
  gap: 6px;
}

.vf-deck .progs span {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.vf-deck .progs .on {
  background: var(--burgundy);
}

.vf-deck p {
  margin: 6px 0 0;
  font-size: 10px;
  color: rgba(245, 240, 232, 0.6);
}

.hero-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(100%, 292px);
}

.chip {
  background: rgba(23, 20, 22, 0.88);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 10px 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.chip .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.chip strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}

.chip span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

/* ---------- strip ---------- */

.strip {
  border-block: 1px solid var(--hairline);
  background: var(--void-2);
  padding: 16px 0;
}

.strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.strip-row b {
  color: var(--gold);
  font-weight: 600;
  margin-right: 6px;
}

/* ---------- manifesto / why ---------- */

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.why-list {
  display: grid;
  gap: 18px;
}

.why-list article {
  padding: 18px 20px;
  background: var(--raised);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.why-list h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
}

.why-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.iris-portrait {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
}

.iris-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

/* ---------- comparison ---------- */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compare article {
  background: var(--raised);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 24px 22px 8px;
}

.compare h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
}

.compare.snap-col h3,
.compare article:last-child h3 {
  color: var(--gold);
}

.compare ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.compare li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--hairline);
  color: var(--iris-dim);
  font-size: 0.95rem;
}

.compare li::before {
  content: "–";
  color: var(--faint);
  font-family: var(--font-mono);
}

.compare article:last-child li::before {
  content: "+";
  color: var(--gold);
}

/* ---------- iris ring ---------- */

.iris-panel {
  background: var(--raised);
  border: 1px solid var(--hairline);
  border-radius: 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
}

.iris-graphic {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  --open: 0.72;
}

.iris-graphic svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 28px rgba(184, 56, 87, 0.35));
}

.iris-graphic .pupil {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(calc(0.42 + (var(--open, 0.72) * 0.7)));
  transition: transform 0.16s var(--ease);
}

.iris-controls .live {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  margin: 0;
  line-height: 1;
}

.iris-controls .stop-title {
  margin: 8px 0 0;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--iris);
}

.iris-controls .stop-copy {
  margin: 8px 0 18px;
  color: var(--muted);
}

.iris-controls input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
  height: 4px;
}

.stop-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.stop-chips button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hairline);
  color: var(--iris-dim);
  border-radius: var(--radius-pill);
  padding: 7px 12px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
}

.stop-chips button.is-active {
  background: var(--gold);
  color: var(--gold-ink);
  border-color: var(--gold);
}

/* ---------- stops gallery ---------- */

.stops {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stop-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  isolation: isolate;
  border: 1px solid var(--hairline);
}

.stop-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stop-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(9, 9, 10, 0.88) 100%);
}

.stop-card .cap {
  position: relative;
  z-index: 1;
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.stop-card .f {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 13px;
}

.stop-card h3 {
  margin: 4px 0 6px;
  font-size: 1.2rem;
}

.stop-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--iris-dim);
}

/* ---------- feature splits ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.media-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  position: relative;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.feature-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.feature-list li {
  padding: 10px 0;
  border-top: 1px solid var(--hairline);
  color: var(--iris-dim);
}

.feature-list strong {
  color: var(--iris);
  display: block;
  margin-bottom: 2px;
}

.dof-barrel {
  background: #0b0b0c;
  border-radius: 24px;
  border: 1px solid var(--hairline);
  padding: 28px 24px;
}

.dof-scale {
  position: relative;
  height: 64px;
  margin: 28px 0 12px;
}

.dof-scale .bar {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 12%, var(--gold) 70%, transparent);
}

.dof-scale .zone {
  position: absolute;
  top: 20px;
  left: 18%;
  width: 48%;
  height: 18px;
  background: rgba(184, 56, 87, 0.28);
  border: 1px solid rgba(212, 175, 119, 0.4);
  border-radius: 4px;
}

.mark {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
}

.mark i {
  display: block;
  width: 1px;
  height: 18px;
  background: var(--gold);
  margin: 10px auto 6px;
}

.mark.near { left: 18%; }
.mark.subj { left: 42%; color: var(--iris); }
.mark.far { left: 66%; }
.mark.hyper { left: 88%; color: var(--muted); }

.evf-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.evf-tools article {
  background: var(--raised);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 16px;
}

.evf-tools h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.evf-tools p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- negatives ---------- */

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

.neg {
  background: var(--raised);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--hairline);
}

.neg img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 22%;
}

.neg figcaption {
  padding: 12px 14px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  display: flex;
  justify-content: space-between;
}

.neg figcaption span {
  color: var(--muted);
}

/* ---------- watch ---------- */

.watch-stage {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  min-height: 420px;
}

.watch-stage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  filter: brightness(0.55);
}

.watch-card {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: min(320px, 86%);
  background: rgba(14, 12, 13, 0.88);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(16px);
}

.watch-face {
  width: 168px;
  height: 168px;
  margin: 0 auto 16px;
  border-radius: 38px;
  background: #050505;
  border: 6px solid #1a1a1a;
  box-shadow: inset 0 0 0 1px #3a3a3a, 0 12px 30px rgba(0, 0, 0, 0.4);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.watch-face .f {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
}

.watch-face .meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.watch-face .btn-shutter {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin: 0 auto;
}

.watch-card h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.watch-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- deck / lenses ---------- */

.lenses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.lenses article {
  background: var(--raised);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 16px;
}

.lenses .mm {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 12px;
}

.lenses h3 {
  margin: 4px 0 6px;
  font-size: 1.05rem;
}

.lenses p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.pro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pro-pills span {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  color: var(--iris-dim);
}

/* ---------- faq / form ---------- */

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  background: var(--raised);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-item button::after {
  content: "+";
  color: var(--gold);
  font-family: var(--font-mono);
}

.faq-item.is-open button::after {
  content: "–";
}

.faq-item .answer {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-item.is-open .answer {
  display: block;
}

.beta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.beta-card {
  background: var(--raised);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 24px;
}

label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

input[type="email"] {
  width: 100%;
  background: #0b0b0c;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.form-status {
  min-height: 1.4em;
  font-size: 0.92rem;
  color: var(--muted);
}

.form-status[data-state="ok"] { color: var(--peak); }
.form-status[data-state="err"] { color: #f0a070; }

.honeypot {
  position: absolute;
  left: -9999px;
}

/* ---------- footer / legal ---------- */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.prose h1 {
  margin-top: 0;
}

.prose h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 36px 0 10px;
}

.prose p,
.prose li {
  color: var(--iris-dim);
}

.prose ul {
  padding-left: 1.1rem;
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .hero-grid,
  .why-grid,
  .split,
  .split.reverse,
  .iris-panel,
  .beta,
  .compare {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .stops,
  .neg-grid,
  .lenses {
    grid-template-columns: 1fr 1fr;
  }

  .hero-chips {
    width: min(100%, 292px);
    flex-direction: column;
  }

  .watch-card {
    position: static;
    transform: none;
    width: auto;
    margin: 18px;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: 39;
    background: #09090a;
    padding: 28px 24px;
    flex-direction: column;
    gap: 18px;
  }

  body.nav-open .mobile-nav {
    display: flex;
  }

  .mobile-nav a {
    color: var(--iris);
    text-decoration: none;
    font-size: 1.2rem;
  }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .stops,
  .neg-grid,
  .lenses,
  .evf-tools {
    grid-template-columns: 1fr;
  }
  .phone { --w: 260px; }
  .hero-chips { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
  .site-footer .wrap { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
