/* KaveLight — minimal, elevated. Small type, deep negative space, one cave. */

:root {
  --canvas: #05070c;
  --ink: #f2f3f5;
  --ink-60: rgba(242, 243, 245, 0.58);
  --ink-40: rgba(242, 243, 245, 0.38);
  --ink-25: rgba(242, 243, 245, 0.22);
  --line: rgba(242, 243, 245, 0.10);
  --fill: rgba(242, 243, 245, 0.035);
  --err: #fa9e70;
  --pad: clamp(28px, 6vw, 96px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

/* Honeypot — kept in the DOM (bots fill it) but off-screen for humans.
   NOT display:none, which some bots skip. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

html { height: 100%; }

body {
  min-height: 100%;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(237, 173, 77, 0.25); }

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

/* ---------- nav ---------- */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 44px);
  padding: 30px var(--pad);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 243, 245, 0.9);
}

.nav-brand img {
  width: 26px;
  height: 26px;
  -webkit-mask-image: radial-gradient(circle closest-side, #fff 55%, transparent 98%);
  mask-image: radial-gradient(circle closest-side, #fff 55%, transparent 98%);
}

.nav-tabs {
  display: flex;
  gap: clamp(20px, 3vw, 34px);
  margin-left: auto;
}

.nav-tabs a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 243, 245, 0.55);
  padding: 8px 2px;
  transition: color 0.2s ease;
}

.nav-tabs a:hover, .nav-tabs a.is-active { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  padding: 10px 19px;
  border: 1px solid rgba(242, 243, 245, 0.22);
  border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-cta span { transition: transform 0.2s ease; }
.nav-cta:hover { border-color: rgba(242, 243, 245, 0.55); background: rgba(242, 243, 245, 0.04); }
.nav-cta:hover span { transform: translateX(2px); }

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

.page { min-height: 100vh; min-height: 100dvh; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center; /* copy floats mid-frame, biased a touch high */
  overflow: hidden;
}

/* The cave: a figure carrying light into the dark — the brand, literally.
   Copy lives bottom-left in the black; the lit tunnel holds the right. */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, rgba(5, 7, 12, 0.72) 0%, rgba(5, 7, 12, 0.22) 26%, rgba(5, 7, 12, 0) 50%),
    url("/assets/hero-cave.jpg");
  background-repeat: no-repeat;
  background-size: auto, cover;
  background-position: center, 74% 48%;
}

.hero-copy {
  position: relative;
  padding: 0 var(--pad) 7vh; /* slight upward bias off true center */
  max-width: 900px;
}

.display {
  font-size: clamp(42px, 5.6vw, 84px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.028em;
  white-space: nowrap;
}

.lede {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(242, 243, 245, 0.78);
  max-width: 46ch;
}

.hero-legal {
  position: absolute;
  left: var(--pad);
  bottom: 32px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-25);
}

/* ---------- hero actions + CTA ---------- */

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #101319;
  background: rgba(242, 243, 245, 0.92);
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.1s ease;
  white-space: nowrap;
}

.cta:hover { background: #ffffff; }
.cta:active { transform: scale(0.97); }
.cta:disabled { background: rgba(242, 243, 245, 0.22); cursor: default; }

.cta-arrow { display: inline-block; transition: transform 0.2s ease; }
.cta:hover .cta-arrow { transform: translateX(2px); }

.note {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--ink-25);
  font-variant-numeric: tabular-nums;
}

/* The live counter earns more presence than a footnote. */
.hero-actions .note { color: var(--ink-60); }

/* The counter's live-tracker period. */
.blink-dot {
  display: inline-block;
  animation: blinkDot 1.2s steps(1, end) infinite;
}
@keyframes blinkDot {
  0%, 60% { opacity: 1; }
  61%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .blink-dot { animation: none; }
}

/* ---------- modal ---------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 4, 8, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeIn 0.22s ease both;
}

.modal {
  position: relative;
  width: min(400px, 100%);
  background: #090c12;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  animation: modalIn 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.99); }
  to { opacity: 1; transform: none; }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s ease;
}

.modal-close:hover { background: rgba(242, 243, 245, 0.06); }

.modal-close span::before, .modal-close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--ink-40);
  transition: background 0.15s ease;
}

.modal-close span::before { transform: translate(-50%, -50%) rotate(45deg); }
.modal-close span::after { transform: translate(-50%, -50%) rotate(-45deg); }
.modal-close:hover span::before, .modal-close:hover span::after { background: var(--ink); }

.modal-title {
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}

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

.field {
  display: block;
  margin-bottom: 13px;
}

.field span {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 7px;
}

.field input, .field select {
  width: 100%;
  font: inherit;
  font-size: 13.5px;
  color: var(--ink);
  background: var(--fill);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px 13px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
}

.field input:focus, .field select:focus {
  border-color: rgba(242, 243, 245, 0.4);
  background: rgba(242, 243, 245, 0.055);
}

.select-wrap { position: relative; }

.select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--ink-40);
  border-bottom: 1px solid var(--ink-40);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.field select { cursor: pointer; }
.field select:invalid { color: var(--ink-40); }
.field option { background: #090c12; color: var(--ink); }

.modal-error {
  font-size: 12px;
  color: var(--err);
  margin: -3px 0 12px;
}

.modal-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.joined { text-align: center; padding: 16px 0 8px; animation: fadeUp 0.4s ease both; }
.joined-title { font-size: 17px; font-weight: 600; letter-spacing: -0.005em; }
.joined-copy { margin-top: 7px; font-size: 13px; color: var(--ink-60); }

/* ---------- subpages (FAQ / The App) ---------- */

.subpage {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(130px, 20vh, 200px) var(--pad) clamp(64px, 12vh, 128px);
}

.display-sm {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 500;
  letter-spacing: -0.018em;
}

.subpage-lede { margin-top: 14px; }

.subpage-wide { max-width: 1300px; }

/* ---------- The App — the reveal reel ---------- */

.app-head { max-width: 720px; }

/* Status line — plain uppercase with a live blinking dot at the end. */
.soon-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.soon-blink {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  animation: blinkDot 1.2s steps(1, end) infinite;
}

@media (prefers-reduced-motion: reduce) {
  .soon-blink { animation: none; }
}

.app-display {
  margin-top: 18px;
  font-size: clamp(48px, 7.4vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.app-lede {
  margin-top: 24px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--ink-60);
  max-width: 46ch;
}

/* Moments — floating images that drift as you scroll (ol.studio-style):
   each moment places its image at a distinct width/offset; the [data-drift]
   wrapper gets a scroll-parallax translate from app.js, the inner figure
   keeps the reveal transition, so the two transforms never fight. */

.moment { position: relative; }

.m-1 { margin-top: clamp(72px, 11vh, 128px); }
.m-1 .float { width: min(86%, 1020px); }

.m-2 { margin-top: clamp(96px, 14vh, 176px); }
.m-2 .float { width: min(60%, 680px); margin-left: auto; }

.m-3 { margin-top: clamp(96px, 14vh, 176px); }
.m-3 .float { width: min(64%, 720px); }

.m-4 { margin-top: clamp(96px, 14vh, 176px); }
.m-4 .float { width: min(88%, 1060px); margin-left: auto; }

.m-5 { margin-top: clamp(96px, 14vh, 176px); padding-bottom: clamp(120px, 18vh, 200px); }
.m-5 > .float:first-child { width: min(62%, 760px); }
.m-5 .fig { max-width: 58%; }

.float { will-change: transform; }

/* Small UI cards live in m-5's empty right column — never over captions */
.float-card { position: absolute; }
.float-card .ui-card { transform: rotate(-1.6deg); }
.float-card-a { width: min(30%, 320px); right: 0; top: 4%; }
.float-card-a .ui-card { transform: rotate(1.8deg); }
.float-card-b { width: min(26%, 270px); right: 4%; top: 58%; }

.m-5 .ui-note {
  position: absolute;
  left: 0;
  bottom: 5%;
  max-width: 24ch;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-60);
}

.shot { margin: 0; }

.shot-frame {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #090c12;
}

.shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.015);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.shot:hover .shot-frame img { transform: scale(1.035); }

/* Reveal choreography: frame rises, image settles from a slight zoom */
.shot.reveal .shot-frame img { transform: scale(1.07); }
.shot.reveal.is-in .shot-frame img { transform: scale(1.015); }

.ui-card {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #090c12;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.ui-card img { display: block; width: 100%; height: auto; }

/* FIG captions — floating editorial labels (always above floating cards) */
.fig {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 14px;
}

.fig-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #edad4d;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.fig-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.fig-text {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-60);
}

/* Interludes — big casual statements between moments */
.interlude {
  margin-top: clamp(88px, 15vh, 168px);
  font-size: clamp(30px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.025em;
  max-width: 16ch;
}

.m-4 + .moment .float,
.interlude + .moment { margin-top: clamp(64px, 10vh, 120px); }

/* Features — numbered editorial rows */

.feature-list {
  margin-top: clamp(88px, 15vh, 160px);
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(18px, 3vw, 48px);
  align-items: baseline;
  padding: clamp(28px, 4.5vh, 44px) 0;
  border-bottom: 1px solid var(--line);
}

.feature-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #edad4d;
  font-variant-numeric: tabular-nums;
}

.feature-title {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: -0.018em;
  transition: color 0.25s ease;
}

.feature-copy {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-60);
}

/* Closing CTA */

.app-cta {
  margin-top: clamp(72px, 12vh, 128px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}

.app-cta-line {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: -0.022em;
}

@media (max-width: 700px) {
  /* Floats stack full-width on phones; the drift parallax is disabled in JS */
  .m-1 .float, .m-2 .float, .m-3 .float, .m-4 .float,
  .m-5 > .float:first-child { width: 100%; margin-left: 0; }
  .m-3 { margin-top: clamp(40px, 7vh, 64px); }
  .float-card { position: static; width: 70%; margin: 18px auto 0; }
  .float-card .ui-card, .float-card-a .ui-card { transform: none; }
  .m-5 .ui-note { position: static; margin: 14px auto 0; text-align: center; }
  .fig { flex-wrap: wrap; }
  .feature-row { grid-template-columns: 40px 1fr; }
  .feature-copy { grid-column: 2; }
}

/* FAQ — animated accordion */

.faq-list { margin-top: clamp(34px, 6vh, 56px); border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  position: relative;
  width: 100%;
  text-align: left;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  padding: 21px 40px 21px 0;
  transition: color 0.15s ease;
}

.faq-q:hover { color: rgba(242, 243, 245, 0.72); }

.faq-x {
  position: absolute;
  right: 4px;
  top: 50%;
  width: 11px;
  height: 11px;
  transform: translateY(-50%);
}

.faq-x::before, .faq-x::after {
  content: "";
  position: absolute;
  background: var(--ink-40);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-x::before { left: 0; right: 0; top: 5px; height: 1px; }
.faq-x::after { top: 0; bottom: 0; left: 5px; width: 1px; }

.faq-item.is-open .faq-x::after { transform: scaleY(0); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-a { grid-template-rows: 1fr; }

.faq-a-inner { overflow: hidden; }

.faq-a-inner p {
  padding: 0 36px 22px 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-60);
  max-width: 60ch;
}

/* The App — updates */

.log { margin-top: clamp(34px, 6vh, 56px); border-top: 1px solid var(--line); }

.log-entry {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: clamp(14px, 3vw, 32px);
  padding: clamp(26px, 4vh, 36px) 0;
  border-bottom: 1px solid var(--line);
}

.log-date {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-25);
  padding-top: 4px;
  white-space: nowrap;
}

.log-body h2 { font-size: 15.5px; font-weight: 600; letter-spacing: -0.005em; }

.log-body p {
  margin-top: 7px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-60);
  max-width: 56ch;
}

/* ---------- footer (subpages only) ---------- */

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 640px;
  margin: 0 auto;
  padding: 22px var(--pad) 40px;
}

.foot-legal { font-size: 11px; letter-spacing: 0.04em; color: var(--ink-25); }

.foot-tabs { display: flex; gap: 20px; }

.foot-tabs a {
  font-size: 11.5px;
  color: var(--ink-40);
  transition: color 0.15s ease;
}

.foot-tabs a:hover { color: var(--ink); }

/* ---------- reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-in { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .faq-a { transition: none; }
}

/* ---------- small screens ---------- */

@media (max-width: 760px) {
  .nav { padding: 20px 22px; gap: 14px; }
  .nav-brand span { display: none; }
  .nav-cta { display: none; }

  .hero { align-items: center; }
  .hero-bg {
    background-image:
      linear-gradient(0deg, rgba(5, 7, 12, 0.88) 6%, rgba(5, 7, 12, 0.32) 42%, rgba(5, 7, 12, 0) 68%),
      url("/assets/hero-cave.jpg");
    background-size: auto, cover;
    background-position: center, 71% 42%;
  }
  .hero-copy { padding-bottom: 8vh; }
  .display { font-size: clamp(34px, 9.6vw, 46px); white-space: normal; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-legal { bottom: 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .modal { padding: 26px 22px; }
  .log-entry { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- legal pages (privacy / terms) ---------- */

.legal { padding-bottom: 40px; }

.legal-date {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-40);
}

.legal p {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-60);
}

.legal-summary {
  margin-top: 22px !important;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink) !important;
}

.legal h2 {
  margin-top: 40px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.legal ul {
  margin-top: 12px;
  padding-left: 20px;
}

.legal li {
  margin-top: 7px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-60);
}

.legal strong { color: var(--ink); font-weight: 500; }

.legal a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ink-25);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s ease;
}

.legal a:hover { text-decoration-color: var(--ink); }

/* consent line inside the join modal */
.modal-consent {
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  color: var(--ink-40);
}

.modal-consent a {
  color: var(--ink-60);
  text-decoration: underline;
  text-decoration-color: var(--ink-25);
  text-underline-offset: 2px;
}

.modal-consent a:hover { color: var(--ink); }

/* ---------- download button (App page) ---------- */

.dl-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.dl-row-center {
  justify-content: center;
  margin-top: 4px;
}

.app-cta .dl-note { margin-top: 14px; }

.cta-ghost {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(242, 243, 245, 0.28);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.1s ease;
}

.cta-ghost:hover {
  background: rgba(242, 243, 245, 0.06);
  border-color: rgba(242, 243, 245, 0.5);
}

@media (max-width: 700px) {
  .dl-row { gap: 12px; }
  .dl-row-center { flex-direction: column; }
}

/* ---------- feature index (App page) ---------- */

.feature-index {
  margin-top: clamp(88px, 14vh, 160px);
}

.fi-head {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.fi-group { margin-top: 44px; }

.fi-cat {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.fi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  margin-top: 24px;
}

.fi-card h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.fi-card p {
  margin-top: 7px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-60);
}

@media (max-width: 700px) {
  .fi-grid { grid-template-columns: 1fr; gap: 22px; }
  .fi-group { margin-top: 36px; }
}

/* ---------- lightbox (click any shot for full size) ---------- */

.shot-frame img, .ui-card img { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(3, 4, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: zoom-out;
  animation: fadeIn 0.18s ease both;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.6);
}
