/* ============================================================
   VANTA / Finish Lens — sistem vizual
   obsidian · crom · cobalt irizat · lumină controlată
   Fără resurse externe. Mobile-first, sigur de la 320 px în sus.
   ============================================================ */

:root {
  --bg: #05070b;
  --bg-2: #070a10;
  --panel: #0b0f17;
  --panel-2: #10151f;
  --line: rgba(151, 178, 222, 0.14);
  --line-strong: rgba(170, 196, 240, 0.28);
  --text: #eef2fa;
  --muted: #a8b4cc;
  --muted-2: #7e8aa4;
  --cobalt: #4a7dff;
  --cobalt-2: #8fb4ff;
  --ice: #dfe9ff;
  --wa: #35c78f;
  --radius: 18px;
  --radius-lg: 24px;
  --shell: 1120px;
  --font: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system,
    "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 85% -100px, rgba(74, 125, 255, 0.10), transparent 65%),
    radial-gradient(900px 420px at -10% 30%, rgba(122, 92, 255, 0.07), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

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

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 6.4vw, 3.6rem); font-weight: 650; }
h2 { font-size: clamp(1.55rem, 4.6vw, 2.4rem); }
p { margin: 0 0 1em; }

a { color: var(--cobalt-2); }

.shell {
  width: min(var(--shell), 100% - clamp(24px, 7vw, 64px));
  margin-inline: auto;
}
.shell.narrow { max-width: 780px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 60;
  background: var(--panel-2);
  color: var(--ice);
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  transition: top 160ms ease;
}
.skip-link:focus-visible { top: 12px; }

:focus-visible {
  outline: 2px solid var(--cobalt-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------- tipografie auxiliară ---------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cobalt-2);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cobalt-2));
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2.6vw, 1.13rem);
  max-width: 62ch;
}

.mini-title, legend.mini-title {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-head { margin-bottom: clamp(22px, 5vw, 40px); }

/* ---------------- butoane ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, border-color 140ms ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: linear-gradient(135deg, #9dbaff, #4a7dff 58%, #7a5cff);
  color: #051023;
  box-shadow: 0 10px 30px -12px rgba(74, 125, 255, 0.55);
}
.btn-primary:hover { box-shadow: 0 14px 34px -10px rgba(96, 145, 255, 0.7); transform: translateY(-1px); }

.btn-secondary {
  background: rgba(96, 140, 255, 0.10);
  border-color: rgba(143, 180, 255, 0.42);
  color: var(--ice);
}
.btn-secondary:hover { background: rgba(96, 140, 255, 0.2); }

.btn-wa {
  background: linear-gradient(135deg, #57e6b4, #23b47e 70%);
  color: #03271a;
  box-shadow: 0 10px 30px -12px rgba(53, 199, 143, 0.5);
}
.btn-wa:hover { transform: translateY(-1px); }

.btn-ghost-sm {
  min-height: 46px;
  padding: 9px 16px;
  background: transparent;
  border-color: var(--line-strong);
  color: var(--muted);
  font-size: 0.88rem;
}
.btn-ghost-sm:hover { color: var(--ice); border-color: rgba(170, 196, 240, 0.5); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 11, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  flex-wrap: wrap;
  padding-block: 8px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  text-decoration: none;
  color: var(--text);
}
.brand-mark { align-self: center; }
.brand-name {
  font-weight: 800;
  letter-spacing: 0.34em;
  font-size: 1.02rem;
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.header-note {
  margin: 0;
  margin-left: auto;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: clamp(10px, 3vw, 22px);
  margin-left: auto;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  padding: 8px 2px;
}
.site-nav a:hover { color: var(--ice); }

@media (max-width: 640px) {
  .header-note { display: none; }
}
@media (max-width: 380px) {
  .brand-sub { display: none; }
  .site-nav a { font-size: 0.8rem; }
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 11vw, 120px) clamp(48px, 9vw, 96px);
}

.hero-surface {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(720px 340px at 78% 8%, rgba(96, 145, 255, 0.16), transparent 70%),
    linear-gradient(180deg, transparent 55%, rgba(5, 7, 11, 0.9));
}
.hero-sheen {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 42%, rgba(214, 230, 255, 0.075) 50%, transparent 58%);
  animation: sheen 9s ease-in-out infinite;
}
.hero-swirl {
  position: absolute;
  right: -140px; top: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(150, 185, 255, 0.12);
  box-shadow: inset 0 0 80px rgba(96, 145, 255, 0.08);
}

@keyframes sheen {
  0%, 100% { transform: translateX(-18%); }
  50% { transform: translateX(18%); }
}

.hero-grid {
  position: relative;
  display: grid;
  gap: clamp(30px, 6vw, 56px);
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
}

.hero-copy .lead { margin-bottom: 26px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.chips li {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(11, 15, 23, 0.6);
}

.hero-figure { margin: 0; }

.hero-panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(165deg, #0d111b 0%, #0a0d15 55%, #07090f 100%);
  box-shadow: 0 40px 90px -40px rgba(2, 4, 10, 0.9), 0 0 0 1px rgba(151, 178, 222, 0.05);
  aspect-ratio: 16 / 11;
}
.hero-panel svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.hp-line {
  position: absolute;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 230, 255, 0.35), transparent);
}
.hp-a { top: 34%; width: 84%; }
.hp-b { top: 61%; width: 60%; opacity: 0.6; }
.hp-dot {
  position: absolute;
  top: 27%; right: 22%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #eaf1ff;
  box-shadow: 0 0 18px 4px rgba(190, 212, 255, 0.55);
}

/* ---------------- secțiuni generale ---------------- */

section { position: relative; }

.observe { padding-block: clamp(40px, 8vw, 90px); }
.observe p:last-child { color: var(--muted); max-width: 68ch; }

.lens-section {
  padding-block: clamp(40px, 8vw, 90px);
  background: linear-gradient(180deg, transparent, rgba(9, 12, 19, 0.85) 12%, rgba(9, 12, 19, 0.85) 88%, transparent);
  border-block: 1px solid var(--line);
}

.notes { padding-block: clamp(48px, 9vw, 110px); }

.concierge { padding-block: clamp(48px, 9vw, 110px); }

/* ---------------- fallback fără JavaScript ---------------- */

.nojs {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 4vw, 32px);
  background: var(--panel);
  margin-bottom: 40px;
}
.nojs-compare { margin: 0 0 18px; }
.nojs-compare figcaption {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.nojs-compare svg {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* Fără JS, interfața interactivă se ascunde; rămâne fallback-ul + restul paginii. */
html:not(.js) .lens-app { display: none; }

/* ---------------- Finish Lens: scenarii ---------------- */

.scenes, .finish-set {
  border: 0;
  padding: 0;
  margin: 0 0 clamp(24px, 5vw, 40px);
}

.scene-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 720px) {
  .scene-grid { grid-template-columns: repeat(3, 1fr); }
}

.scene-card {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 16px 16px 14px;
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease, transform 140ms ease;
}
.scene-card:hover { border-color: rgba(170, 196, 240, 0.4); }

.scene-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
  margin: 0;
}

.scene-card input[type="radio"]:focus-visible + .scene-body {
  outline: 2px solid var(--cobalt-2);
  outline-offset: 4px;
  border-radius: 8px;
}

.scene-body { display: block; }
.scene-name {
  display: block;
  font-weight: 650;
  letter-spacing: 0.01em;
  margin-bottom: 3px;
}
.scene-tag {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cobalt-2);
  margin-bottom: 8px;
}
.scene-blurb {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.scene-card:has(input:checked),
.finish-card:has(input:checked) {
  border-color: rgba(126, 168, 255, 0.75);
  background: linear-gradient(160deg, rgba(74, 125, 255, 0.14), rgba(11, 15, 23, 0.9) 55%);
  box-shadow: 0 0 0 1px rgba(126, 168, 255, 0.35), 0 14px 40px -22px rgba(74, 125, 255, 0.5);
}
.scene-card:has(input:checked)::after {
  content: "selectat";
  position: absolute;
  top: 10px; right: 12px;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt-2);
}
/* Fallback pentru browsere fără :has() */
.no-has .scene-card input:checked ~ .scene-body .scene-name { color: var(--cobalt-2); }

.finish-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 720px) {
  .finish-grid { grid-template-columns: repeat(2, 1fr); }
}
.finish-card { padding: 14px 16px 12px; }

/* ---------------- panoul lentilei ---------------- */

.lens-layout { margin-top: 4px; }

.stage-col { max-width: 860px; }

.mini-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hud {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.hud #found-count { color: var(--cobalt-2); font-weight: 700; }

.lens-stage {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  background: #07090f;
  aspect-ratio: 5 / 4;
  cursor: grab;
  touch-action: none;
  box-shadow: 0 34px 80px -38px rgba(2, 4, 10, 0.95), inset 0 0 0 1px rgba(151, 178, 222, 0.05);
}
.lens-stage:focus-visible {
  outline: 2px solid var(--cobalt-2);
  outline-offset: 4px;
}
.lens-stage:active { cursor: grabbing; }

#lens-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stage-hint {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  margin: 0;
  width: max-content;
  max-width: calc(100% - 24px);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(226, 235, 250, 0.85);
  background: rgba(6, 9, 15, 0.72);
  border: 1px solid rgba(151, 178, 222, 0.22);
  border-radius: 999px;
  padding: 6px 14px;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.lens-touched .stage-hint { opacity: 0; }

@media (min-width: 760px) {
  .lens-stage { aspect-ratio: 16 / 10; }
}

.stage-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 14px;
}

.range-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 220px;
  min-width: 210px;
}
.range-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

input[type="range"] {
  flex: 1;
  min-height: 44px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: ew-resize;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(143, 180, 255, 0.5), rgba(143, 180, 255, 0.15));
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 26px; height: 26px;
  margin-top: -11px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #f0f5ff, #8fb4ff 62%, #4a7dff);
  border: 1px solid rgba(226, 236, 255, 0.8);
  box-shadow: 0 4px 14px -4px rgba(74, 125, 255, 0.8);
}
input[type="range"]::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(143, 180, 255, 0.5), rgba(143, 180, 255, 0.15));
}
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #f0f5ff, #8fb4ff 62%, #4a7dff);
  border: 1px solid rgba(226, 236, 255, 0.8);
}

/* ---------------- jurnal & preferințe ---------------- */

.log-wrap { margin-top: 22px; }

.discovery-log {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
}

.discovery-log li {
  border: 1px solid var(--line);
  border-left: 3px solid var(--cobalt);
  border-radius: 12px;
  background: var(--panel);
  padding: 12px 16px;
  animation: log-in 260ms ease;
}
@keyframes log-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.log-empty {
  border-left-color: var(--line-strong) !important;
  color: var(--muted);
  font-style: italic;
}

.log-label {
  display: block;
  font-weight: 650;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.log-copy {
  display: block;
  font-size: 0.87rem;
  color: var(--muted);
}
.log-index {
  color: var(--cobalt-2);
  font-variant-numeric: tabular-nums;
  margin-right: 6px;
}

.prefs-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 20px;
}
.prefs-status {
  font-size: 0.8rem;
  color: var(--muted-2);
  flex-basis: 100%;
}
@media (min-width: 620px) {
  .prefs-status { flex-basis: auto; }
}

/* ---------------- traseul ---------------- */

.route-block {
  margin-top: clamp(48px, 9vw, 96px);
  padding-top: clamp(28px, 6vw, 48px);
  border-top: 1px solid var(--line);
}

.finish-set { margin-bottom: 22px; }

.route-headline {
  font-size: clamp(0.95rem, 2.4vw, 1.08rem);
  color: var(--ice);
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--cobalt);
  border-radius: 12px;
  padding: 13px 18px;
  margin: 0 0 18px;
}

.stage-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}
@media (min-width: 760px) {
  .stage-grid { grid-template-columns: repeat(3, 1fr); }
}

.stage-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--panel-2), var(--panel) 70%);
  padding: 20px 20px 18px;
  overflow: hidden;
}
.stage-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(190, 212, 255, 0.5), transparent);
}
.stage-card.placeholder { opacity: 0.55; }

.stage-index {
  margin: 0;
  font-size: 2rem;
  font-weight: 250;
  letter-spacing: 0.06em;
  color: rgba(190, 212, 255, 0.5);
  font-variant-numeric: tabular-nums;
}
.stage-kicker {
  margin: 6px 0 2px;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cobalt-2);
  font-weight: 700;
}
.stage-card h3 { font-size: 1.06rem; margin-bottom: 10px; }
.stage-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  display: grid;
  gap: 6px;
}
.stage-card ul li::marker { color: var(--cobalt); }

.route-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------------- rezumat ---------------- */

.summary-panel {
  margin-top: 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(400px 160px at 90% 0%, rgba(74, 125, 255, 0.12), transparent 70%),
    var(--panel);
  padding: clamp(16px, 3.5vw, 26px);
}

.summary-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.summary-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.summary-text {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #06080d;
  color: var(--muted);
  font-family: Consolas, "Cascadia Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 380px;
  overflow-y: auto;
}

.copy-feedback {
  margin: 10px 0 0;
  font-size: 0.84rem;
  color: var(--wa);
  min-height: 1.3em;
}

/* ---------------- note de suprafață ---------------- */

.notes-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 720px) {
  .notes-grid { grid-template-columns: repeat(3, 1fr); }
}

.note-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(280px 130px at 12% 0%, rgba(122, 92, 255, 0.10), transparent 70%),
    var(--panel);
  padding: 22px 22px 16px;
}
.note-card p {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ice);
  margin-bottom: 14px;
}
.note-card footer {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ---------------- concierge ---------------- */

.concierge-inner, .concierge .narrow {
  position: relative;
}

.concierge .narrow > * { position: relative; z-index: 1; }

.concierge .narrow {
  border: 1px solid transparent;
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
    linear-gradient(135deg, rgba(143, 180, 255, 0.55), rgba(122, 92, 255, 0.25) 45%, rgba(74, 208, 255, 0.4)) border-box;
  padding: clamp(26px, 6vw, 52px);
  position: relative;
  overflow: hidden;
}
.concierge .narrow::before {
  content: "";
  position: absolute;
  inset: -60px -20% auto;
  height: 180px;
  background: radial-gradient(closest-side, rgba(96, 145, 255, 0.14), transparent);
  pointer-events: none;
}

.concierge p { color: var(--muted); max-width: 64ch; }

.concierge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.concierge-transparency {
  font-size: 0.83rem;
  color: var(--muted-2);
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  margin: 0;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 30px 40px;
  background: var(--bg-2);
}
.footer-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-row p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted-2);
  max-width: 76ch;
}
.footer-row strong { color: var(--muted); letter-spacing: 0.06em; }
.footer-meta { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.68rem !important; }

/* ---------------- reveal la scroll (doar cu JS activ) ---------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.js .reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ---------------- reduced motion: funcțional, nu declarativ ---------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero-sheen { display: none; }
}
