/* ==========================================================================
   DEFNET.RO · v2 - concept cinematografic / club privat
   Traseu liniar: / (intro film) -> /acasa -> /contact
   Estetic: negru profund + auriu mat, Inter peste tot (greutăți contrastante)
   + JetBrains Mono pentru micro-eticheta. Aspect Aesop/Aman/Linear.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Paletă - negru + auriu mat */
  --v2-bg:        #0a0908;   /* negru cu nuanță caldă */
  --v2-bg-soft:   #15130f;   /* secțiuni alternate */
  --v2-bg-card:   #1a1812;   /* cards / containere */
  --v2-ink:       #ece8dc;   /* text principal - alb-crem mat */
  --v2-ink-soft:  #b8b3a3;
  --v2-muted:     #6e6a5e;
  --v2-line:      #2a2820;
  --v2-line-soft: #1f1d17;
  --v2-gold:      #a08b4f;   /* auriu mat, antic */
  --v2-gold-h:    #c2a85d;   /* auriu hover */
  --v2-gold-dim:  #5a4f2c;   /* auriu adâncit */

  /* Tipografie - Inter peste tot, JetBrains Mono pentru micro-eticheta */
  --v2-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --v2-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  /* Alias-uri: display/serif acum sunt Inter (variațiile vin din weight/size) */
  --v2-display: var(--v2-sans);
  --v2-serif:   var(--v2-sans);

  /* Layout */
  --v2-read:   680px;
  --v2-wide:   1100px;

  /* Easing */
  --v2-ease:   cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
html { scroll-behavior: smooth; background: var(--v2-bg); }
body {
  font-family: var(--v2-sans);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--v2-ink);
  background: var(--v2-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a {
  color: var(--v2-ink);
  text-decoration: none;
  transition: color .25s var(--v2-ease);
}
a:hover { color: var(--v2-gold); }
::selection { background: var(--v2-gold); color: var(--v2-bg); }

/* ========== Containers ========== */
.v2-read { max-width: var(--v2-read); margin: 0 auto; padding: 0 28px; }
.v2-wide { max-width: var(--v2-wide); margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) {
  .v2-read, .v2-wide { padding: 0 22px; }
  body { font-size: 16px; }
}

/* ========== Logo emblem (folosit pe intro + headers) ========== */
.v2-emblem {
  font-family: var(--v2-sans);
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--v2-ink);
  display: inline-block;
}
.v2-emblem-sub {
  font-family: var(--v2-mono);
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-top: 8px;
  display: block;
}

/* ==========================================================================
   PAGINA 1 - INTRO (/)
   Fullscreen negru. Logo centrat. Click → filmul pornește cu sunet.
   La finalul filmului → buton „intră în defnet"
   ========================================================================== */
.v2-intro {
  position: fixed; inset: 0;
  background: var(--v2-bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  overflow: hidden;
}
.v2-intro-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .8s var(--v2-ease);
  pointer-events: none;
  background: var(--v2-bg);
}
.v2-intro-video.playing {
  opacity: 1;
  pointer-events: auto;   /* permite click pe controls (play/pause/scrub/volume/fullscreen) */
}

/* Stadiul 1: gate de intrare */
.v2-intro-gate {
  position: relative;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  padding: 32px;
  user-select: none;
  transition: opacity .5s var(--v2-ease);
}
.v2-intro-gate.hidden { opacity: 0; pointer-events: none; }

.v2-intro-emblem {
  font-family: var(--v2-sans);
  font-weight: 300;
  letter-spacing: .5em;
  text-transform: uppercase;
  font-size: clamp(28px, 5vw, 52px);
  color: var(--v2-ink);
  line-height: 1;
  /* Compensare optică pentru letter-spacing pe ultima literă */
  text-indent: .5em;
}
.v2-intro-sub {
  font-family: var(--v2-mono);
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-top: 18px;
}
.v2-intro-rule {
  width: 60px; height: 1px;
  background: var(--v2-gold);
  margin: 36px auto;
  opacity: .6;
}
.v2-intro-enter {
  font-family: var(--v2-mono);
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--v2-ink-soft);
  position: relative;
  padding-bottom: 4px;
}
.v2-intro-enter::before {
  content: '';
  position: absolute; left: 50%; bottom: -16px;
  width: 6px; height: 6px;
  background: var(--v2-gold);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: v2pulse 2.4s ease-in-out infinite;
}
@keyframes v2pulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50%      { opacity: .35; transform: translateX(-50%) scale(.6); }
}

/* Stadiul 2: outro după film - buton spre /acasa */
.v2-intro-outro {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 3;
  background: linear-gradient(180deg, rgba(10,9,8,.0) 0%, rgba(10,9,8,.55) 60%, rgba(10,9,8,.92) 100%);
  opacity: 0; pointer-events: none;
  transition: opacity 1.2s var(--v2-ease);
  text-align: center;
  padding: 32px;
}
.v2-intro-outro.show { opacity: 1; pointer-events: auto; }
.v2-intro-outro-mark {
  font-family: var(--v2-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--v2-gold);
  margin-bottom: 28px;
  letter-spacing: .02em;
}

/* Skip - mereu vizibil sus dreapta */
.v2-intro-skip {
  position: absolute; top: 24px; right: 28px; z-index: 5;
  font-family: var(--v2-mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--v2-ink-soft);
  background: rgba(10, 9, 8, 0.55);
  border: 1px solid rgba(160, 139, 79, 0.4);
  cursor: pointer;
  padding: 9px 16px;
  text-decoration: none;
  transition: all .25s var(--v2-ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.v2-intro-skip:hover {
  color: var(--v2-bg);
  background: var(--v2-gold);
  border-color: var(--v2-gold);
}
@media (max-width: 640px) {
  .v2-intro-skip { top: 16px; right: 16px; padding: 7px 12px; font-size: 10px; }
}

/* Video controls native - stil în armonie cu paleta (Chrome/Safari) */
.v2-intro-video::-webkit-media-controls-panel {
  background: linear-gradient(to top, rgba(10,9,8,.92) 0%, rgba(10,9,8,0) 100%);
}

/* ==========================================================================
   PAGINI INTERIOARE (acasă, contact)
   Header minimal sus, conținut centrat, buton final jos.
   ========================================================================== */
.v2-page-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--v2-line);
}
.v2-page-header-inner {
  max-width: var(--v2-wide); margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.v2-page-header .v2-emblem {
  font-size: 14px; letter-spacing: .42em;
}
.v2-page-header-meta {
  font-family: var(--v2-mono);
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--v2-muted);
}

/* ========== Hero pagini interioare ========== */
.v2-page-hero {
  padding: 120px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--v2-line);
}
.v2-page-hero-eyebrow {
  font-family: var(--v2-mono);
  font-size: 10.5px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-bottom: 28px;
}
.v2-page-hero h1 {
  font-family: var(--v2-sans);
  font-weight: 300;
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--v2-ink);
  max-width: 920px;
  margin: 0 auto 32px;
}
.v2-page-hero h1 em {
  font-style: normal;
  color: var(--v2-gold);
  font-weight: 400;
}
.v2-page-hero-sub {
  font-family: var(--v2-sans);
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--v2-ink-soft);
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .v2-page-hero { padding: 72px 0 56px; }
}

/* ========== Video iframe frame (testimoniale) ========== */
.v2-video-frame {
  position: relative;
  max-width: 920px;
  margin: 56px auto 0;
  aspect-ratio: 16 / 9;
  background: var(--v2-bg);
  border: 1px solid var(--v2-line);
  overflow: hidden;
}
.v2-video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ========== SLOGAN DEFNET - element de brand reutilizabil ==========
   "Explorăm. Conectăm. Livrăm."
   Folosit pe: hero Acasă, outro intro, footer, social/meta.
   ================================================================== */
.v2-slogan {
  font-family: var(--v2-sans);
  font-weight: 300;
  color: var(--v2-gold);
  letter-spacing: .01em;
  line-height: 1.3;
}
/* În hero Acasă - mare, central */
.v2-slogan-hero {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  letter-spacing: -.005em;
  margin: 38px auto 12px;
}
/* În outro intro - mediu, deasupra butonului */
.v2-slogan-outro {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  letter-spacing: .02em;
  margin-bottom: 32px;
}
/* În footer - mic, discret */
.v2-slogan-footer {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

/* Alias backwards-compat: vechiul .v2-hero-tagline → .v2-slogan-hero */
.v2-hero-tagline {
  font-family: var(--v2-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  color: var(--v2-gold);
  margin: 38px auto 12px;
  letter-spacing: .005em;
}
.v2-hero-cta {
  margin-top: 36px;
}

/* ========== Echipă ========== */
.v2-team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 36px;
  margin-top: 64px;
  text-align: left;
}
.v2-member {
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-line);
  padding: 28px;
  transition: border-color .35s var(--v2-ease), background .35s var(--v2-ease);
}
.v2-member:hover {
  border-color: var(--v2-gold-dim);
  background: var(--v2-bg-card);
}
.v2-member-photo {
  width: 100%;
  aspect-ratio: 1 / 1;     /* pătrat - identic cu poza reală 1080x1080 */
  overflow: hidden;
  background: var(--v2-bg);
  border: 1px solid var(--v2-line);
  margin-bottom: 24px;
  position: relative;
}
.v2-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* NU taie nimic - scrisul din poză rămâne 100% vizibil */
  display: block;
  transition: transform .5s var(--v2-ease);
}
.v2-member:hover .v2-member-photo img {
  transform: scale(1.02);
}
.v2-member-body { padding: 0; }
.v2-member-name {
  font-family: var(--v2-sans);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--v2-ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.v2-member-role {
  font-family: var(--v2-mono);
  font-size: 10.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-bottom: 20px;
  line-height: 1.5;
}
.v2-member-bio {
  font-family: var(--v2-sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--v2-ink-soft);
  font-weight: 300;
  margin-bottom: 14px;
}
.v2-member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--v2-line);
}
.v2-member-tags span {
  font-family: var(--v2-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--v2-ink-soft);
  padding: 5px 10px;
  border: 1px solid var(--v2-line);
}
@media (max-width: 860px) {
  .v2-team { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== Block - text editorial cinematografic ========== */
.v2-block {
  padding: 96px 0;
  border-bottom: 1px solid var(--v2-line);
}
.v2-block-alt { background: var(--v2-bg-soft); }
.v2-block-tight { padding: 64px 0; }
.v2-block-center { text-align: center; }

.v2-block p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--v2-ink-soft);
  margin-bottom: 22px;
  max-width: var(--v2-read);
  font-weight: 300;
}
.v2-block-center p { margin-left: auto; margin-right: auto; }
.v2-block p.v2-lede {
  font-size: 21px;
  line-height: 1.5;
  color: var(--v2-ink);
  margin-bottom: 32px;
  font-weight: 400;
}
.v2-block h2 {
  font-family: var(--v2-sans);
  font-weight: 300;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  max-width: var(--v2-read);
  color: var(--v2-ink);
}
.v2-block-center h2 { margin-left: auto; margin-right: auto; }
.v2-block h2 em {
  font-style: normal;
  color: var(--v2-gold);
  font-weight: 400;
}

/* Rule (linie aurie ornamentală) */
.v2-rule {
  width: 80px; height: 1px;
  background: var(--v2-gold);
  margin: 48px auto;
  opacity: .5;
}

/* ========== Pull-quote elegant ========== */
.v2-pull {
  font-family: var(--v2-sans);
  font-weight: 200;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.3;
  color: var(--v2-ink);
  max-width: 820px;
  margin: 56px auto;
  text-align: center;
  letter-spacing: -0.025em;
}
.v2-pull::before, .v2-pull::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--v2-gold);
  margin: 28px auto;
  opacity: .6;
}

/* ========== Buton final pagini (CTA cinematografic) ========== */
.v2-cta-section {
  padding: 112px 0 128px;
  text-align: center;
}
.v2-cta-eyebrow {
  font-family: var(--v2-mono);
  font-size: 10.5px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-bottom: 28px;
}
.v2-cta-text {
  font-family: var(--v2-sans);
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--v2-ink);
  max-width: 620px;
  margin: 0 auto 44px;
  letter-spacing: -0.015em;
}

/* ========== Buton (single - folosit pe intro outro + CTA pagini) ========== */
.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--v2-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--v2-ink);
  background: transparent;
  border: 1px solid var(--v2-gold);
  padding: 18px 32px;
  text-decoration: none;
  cursor: pointer;
  transition: all .35s var(--v2-ease);
  position: relative;
  overflow: hidden;
}
.v2-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--v2-gold);
  transform: translateX(-101%);
  transition: transform .45s var(--v2-ease);
  z-index: 0;
}
.v2-btn > * { position: relative; z-index: 1; }
.v2-btn span { position: relative; z-index: 1; }
.v2-btn:hover {
  color: var(--v2-bg);
  border-color: var(--v2-gold);
}
.v2-btn:hover::before { transform: translateX(0); }
.v2-btn-arrow {
  display: inline-block;
  position: relative; z-index: 1;
  transition: transform .35s var(--v2-ease);
}
.v2-btn:hover .v2-btn-arrow { transform: translateX(4px); }

/* ========== Pachete membership (Silver / Gold / Platinum) ========== */
.v2-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}
.v2-tier {
  padding: 56px 36px;
  border-right: 1px solid var(--v2-line);
  background: var(--v2-bg);
  transition: background .35s var(--v2-ease);
  position: relative;
}
.v2-tier:last-child { border-right: none; }
.v2-tier:hover { background: var(--v2-bg-soft); }
.v2-tier-name {
  font-family: var(--v2-sans);
  font-weight: 500;
  font-size: 30px;
  color: var(--v2-ink);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.v2-tier-tagline {
  font-family: var(--v2-sans);
  font-weight: 300;
  font-size: 15px;
  color: var(--v2-ink-soft);
  margin-bottom: 32px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  min-height: 110px;
}
.v2-tier-price {
  font-family: var(--v2-sans);
  font-weight: 400;
  font-size: 38px;
  color: var(--v2-gold);
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.v2-tier-features-title {
  font-family: var(--v2-mono);
  font-size: 10.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--v2-gold);
  margin: 28px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--v2-line);
  line-height: 1.5;
}
.v2-tier-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--v2-line);
}
.v2-tier-price-meta {
  font-family: var(--v2-mono);
  font-size: 10.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--v2-muted);
  margin-bottom: 32px;
}
.v2-tier ul {
  list-style: none;
  margin: 0; padding: 0;
}
.v2-tier li {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--v2-ink-soft);
  padding: 9px 0 9px 22px;
  position: relative;
}
.v2-tier li::before {
  content: '◆';
  position: absolute; left: 0; top: 13px;
  color: var(--v2-gold-dim);
  font-size: 7px;
}

/* Notă sub pachete */
.v2-tiers-note {
  max-width: 820px;
  margin: 40px auto 0;
  text-align: center;
  font-family: var(--v2-sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--v2-muted);
}

/* Buton mic, pentru CTA în carduri tier */
.v2-btn-sm {
  font-size: 10.5px;
  letter-spacing: .3em;
  padding: 12px 22px;
  gap: 12px;
}
.v2-tier-platinum {
  background: var(--v2-bg-soft);
}
.v2-tier-platinum::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--v2-gold);
}
@media (max-width: 860px) {
  .v2-tiers { grid-template-columns: 1fr; }
  .v2-tier { border-right: none; border-bottom: 1px solid var(--v2-line); }
  .v2-tier:last-child { border-bottom: none; }
  .v2-tier-tagline { min-height: 0; }
}

/* ========== Contact block ========== */
.v2-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
  padding: 64px 0;
}
.v2-contact-col h3 {
  font-family: var(--v2-mono);
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-bottom: 22px;
}
.v2-contact-col p, .v2-contact-col li {
  font-size: 18px;
  line-height: 1.7;
  color: var(--v2-ink-soft);
  margin-bottom: 8px;
}
.v2-contact-col a { color: var(--v2-ink); }
.v2-contact-col a:hover { color: var(--v2-gold); }
.v2-contact-col ul { list-style: none; padding: 0; }
@media (max-width: 760px) {
  .v2-contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ========== JotForm wrapper (formular oficial înscriere) ========== */
/* Iframe-ul își ajustează înălțimea automat prin assets/jotform-embed.js
   (ascultă postMessage 'setHeight' de la form.jotform.com).
   NU pune overflow:hidden - taie formularul când scriptul îl mărește. */
.v2-jotform-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--v2-gold-dim);
  padding: 8px;
}
.v2-jotform-wrap iframe {
  width: 100% !important;
  min-height: 1100px;
  border: 0 !important;
  display: block;
  background: #ffffff;
}

/* ========== Form local (legacy - păstrat pentru compatibilitate) ========== */
.v2-form {
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
}
.v2-form label {
  display: block;
  font-family: var(--v2-mono);
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-bottom: 10px;
  margin-top: 24px;
}
.v2-form label:first-child { margin-top: 0; }
.v2-form input, .v2-form textarea, .v2-form select {
  width: 100%;
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-line);
  color: var(--v2-ink);
  font-family: var(--v2-sans);
  font-size: 15.5px;
  padding: 14px 16px;
  transition: border-color .25s var(--v2-ease), background .25s var(--v2-ease);
}
.v2-form input:focus, .v2-form textarea:focus, .v2-form select:focus {
  outline: none;
  border-color: var(--v2-gold);
  background: var(--v2-bg-card);
}
.v2-form textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.v2-form-submit-row { margin-top: 36px; text-align: center; }

/* ========== Footer minimal ========== */
.v2-footer {
  border-top: 1px solid var(--v2-line);
  padding: 44px 0 36px;
  text-align: center;
  color: var(--v2-muted);
}
.v2-footer-meta {
  font-family: var(--v2-mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--v2-muted);
}
.v2-footer a { color: var(--v2-muted); transition: color .25s var(--v2-ease); }
.v2-footer a:hover { color: var(--v2-gold); }
.v2-footer-sep { margin: 0 14px; opacity: .5; }

/* ========== Reveal animation (fade-in la scroll) ========== */
.v2-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--v2-ease), transform 1s var(--v2-ease);
}
.v2-reveal.in {
  opacity: 1;
  transform: none;
}
