/* ==========================================================================
   Left Synapse Studio — design system v3 "world at night" (leftsynapse.com)
   Dark-first, accente electrice în gradient. Fără dependențe externe la runtime.
   ========================================================================== */

@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/baloo2-800-latin.woff2) format('woff2');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/space-grotesk-latin.woff2) format('woff2');
}

:root {
  /* Culori — electric, varianta de zi (dark-ul e mai jos, pe prefers-color-scheme) */
  --bg: #F7F9FC;
  --bg-deep: #EEF2F9;
  --surface: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.78);
  --border: #DCE4F2;
  --border-soft: rgba(13, 27, 54, 0.08);
  --ink: #0E1A2E;
  --ink-soft: #5A6B87;
  --primary: #2E6BFF;         /* azur electric — urmele, linkurile */
  --spark: #0090B8;           /* cyan — scânteia */
  --violet: #8B5CF6;
  --grad: linear-gradient(115deg, #00CFE8, #2E6BFF 48%, #9333EA);
  --glow-a: rgba(46, 107, 255, 0.18);
  --glow-b: rgba(147, 51, 234, 0.13);
  --shadow: 0 24px 60px rgba(14, 26, 46, 0.12);
  --shadow-glow: 0 8px 28px rgba(46, 107, 255, 0.40);
  --pop: #F59E0B;
  --dot: rgba(13, 27, 54, 0.07);
  --badge-ink: #2F5BD6;
  --tint: #E9F2FF;

  /* Tipografie */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: 'Space Grotesk', var(--font);
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --step-0: clamp(1.00rem, 0.96rem + 0.22vw, 1.13rem);
  --step-1: clamp(1.25rem, 1.17rem + 0.42vw, 1.50rem);
  --step-2: clamp(1.56rem, 1.42rem + 0.73vw, 2.00rem);
  --step-3: clamp(1.95rem, 1.71rem + 1.20vw, 2.66rem);
  --step-4: clamp(2.44rem, 2.05rem + 1.95vw, 3.55rem);
  --step-5: clamp(3.4rem, 2.2rem + 5.6vw, 7.4rem);   /* display hero */

  --radius: 18px;
  --container: 1080px;
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0A0E16;
    --bg-deep: #070B12;
    --surface: #121A2A;
    --glass: rgba(18, 26, 42, 0.72);
    --border: #223049;
    --border-soft: rgba(255, 255, 255, 0.08);
    --ink: #EDF2FB;
    --ink-soft: #8B9BB8;
    --primary: #6D9BFF;
    --spark: #22D3EE;
    --violet: #9D5CFF;
    --grad: linear-gradient(115deg, #22E0F5, #5B8CFF 48%, #B06BFF);
    --glow-a: rgba(77, 124, 254, 0.20);
    --glow-b: rgba(157, 92, 255, 0.14);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 8px 32px rgba(77, 124, 254, 0.45);
    --pop: #FFC24D;
    --dot: rgba(255, 255, 255, 0.045);
    --badge-ink: #9DB9FF;
    --tint: #0F1930;
  }
}

/* Reset minim */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light dark; }
body {
  overflow-x: clip;
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  /* graticulă fină — puncte de hartă în noapte */
  background-image: radial-gradient(var(--dot) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); }
h1, h2, h3, h4 { font-family: var(--font-display); }
::selection { background: rgba(77, 124, 254, 0.4); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);      /* fundal solid — zero backdrop-filter, zero flicker la scroll */
  border-bottom: 1px solid var(--border-soft);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: flex-end; gap: 0.6rem;
  text-decoration: none; color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em;
}
.brand {
  font-family: 'Baloo 2', var(--font-display);
  font-weight: 800; font-size: 1.5rem; letter-spacing: -0.01em;
  color: #2F363E;                    /* antracitul din logo, nu negrul cernelii */
}
.brand > span { line-height: 1; margin-bottom: 2px; }
@media (prefers-color-scheme: dark) { .brand { color: var(--ink); } }
.brand img, .brand picture { height: 38px; width: auto; }
.brand picture { display: inline-flex; }
.f-brand .brand img { height: 34px; }
.brand .accent { color: var(--primary); }
.site-nav { display: flex; gap: 1.4rem; }
.site-nav a {
  text-decoration: none; color: var(--ink-soft);
  font-size: var(--step--1); font-weight: 600;
  position: relative; padding: 0.25rem 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--grad); border-radius: 2px;
  transition: right 0.25s ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
/* Login — pill discret în meniu */
.site-nav a.nav-login {
  padding: 0.4rem 1rem; border: 1px solid var(--border-soft); border-radius: 999px;
  color: var(--ink); background: transparent; transition: border-color 0.2s ease, background 0.2s ease;
}
.site-nav a.nav-login::after { content: none; }
.site-nav a.nav-login:hover { border-color: transparent; background: var(--grad); color: #fff; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2.5px; border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 18px 30px rgba(14, 26, 46, 0.10);
    padding: 0.5rem 1.25rem 1rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    font-size: var(--step-0); padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-soft);
  }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a.nav-login { align-self: flex-start; margin-top: 0.7rem; padding: 0.55rem 1.3rem; }
  .play-badge img { height: 64px; }
}

/* ==========================================================================
   Hero — tipografie mare, glow-uri în drift, pași care se aprind
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(4.5rem, 12vh, 8.5rem) 0 clamp(4rem, 10vh, 6.5rem);
}
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: -1;
  width: 60vmax; height: 60vmax; border-radius: 50%;
  filter: blur(80px);
}
.hero::before {
  background: radial-gradient(circle, var(--glow-a), transparent 60%);
  top: -28vmax; right: -18vmax;
  animation: drift 26s ease-in-out infinite alternate;
}
.hero::after {
  background: radial-gradient(circle, var(--glow-b), transparent 60%);
  bottom: -32vmax; left: -22vmax;
  animation: drift 32s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(6vmax, 4vmax) scale(1.15); }
}

.hero h1 {
  font-size: clamp(2.5rem, 1.5rem + 3.2vw, 4.3rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.04;
  max-width: 11em;
}
.hero h1 .line { display: block; }
.hero h1 .line1 {
  opacity: 0; translate: 0 20px;
  animation: rise 0.55s ease 0.1s forwards;
}
.hero h1 .line2 {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0; translate: 0 20px;
  animation: rise 0.55s ease 1.15s forwards;
  padding-bottom: 0.08em;   /* descendentele nu se taie la clip */
}
@keyframes rise { to { opacity: 1; translate: 0 0; } }

.hero .sub {
  max-width: 30em; margin: 1.75rem 0 2.25rem;
  color: var(--ink-soft); font-size: var(--step-1); font-weight: 500;
  text-wrap: pretty;
  opacity: 0; translate: 0 14px;
  animation: rise 0.55s ease 1.45s forwards;
}
.hero .cta {
  opacity: 0; translate: 0 14px;
  animation: rise 0.55s ease 1.65s forwards;
}

.button {
  display: inline-block; padding: 0.85rem 1.9rem;
  background: var(--grad); border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700; font-size: var(--step-0); text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s var(--ease-pop), box-shadow 0.2s ease;
}
.button:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 40px rgba(77, 124, 254, 0.5); }
.button:active { transform: translateY(1px) scale(0.98); }

.fp.right svg { transform: scaleX(-1); }


/* ==========================================================================
   Sloturi de imagine (până sosesc pozele reale) + componente noi
   ========================================================================== */
.ph {
  display: grid; place-items: center;
  border: 1.5px dashed var(--border); border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 55%, transparent);
  color: var(--ink-soft);
}
.ph span {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.8;
  padding: 0.5rem 1rem; text-align: center;
}

/* Hero: două coloane */
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero-visual { position: relative; }
.ph-hero { aspect-ratio: 4 / 3; width: 100%; }
.hero-img {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 18px; box-shadow: var(--shadow);
}
.ph-detail, .hero-detail-img {
  position: absolute; right: -6%; bottom: -10%;
  width: 38%; aspect-ratio: 1;
  background: var(--surface); border-style: solid;
  border-color: var(--border); box-shadow: var(--shadow);
}
.hero-detail-img {
  object-fit: cover; border-radius: 16px;
  border: 6px solid var(--surface);
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
.cta { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.link-arrow {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-soft); text-decoration: none;
}
.link-arrow:hover { color: var(--primary); }

/* From the build */
.row-kicker {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-soft); margin-bottom: 1rem;
}
.build-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin: 0 auto 2.5rem; max-width: 660px;
}
@media (max-width: 560px) { .build-grid { gap: 0.6rem; } }
.build-tile { position: relative; border-radius: 18px; overflow: hidden; margin: 0; border: 1px solid rgba(255,255,255,0.25); }
.build-tile img { width: 100%; height: auto; display: block; }
.band-vivid .ph { border-color: rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.10); color: rgba(255, 255, 255, 0.85); }

/* About: mozaic + valori */
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-media { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-media .ph-wide { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.about-img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 16px;
}
.about-img.wide { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.about-media .ph { aspect-ratio: 4 / 3; }
.band-dark .ph { border-color: #2A3A5C; background: rgba(255, 255, 255, 0.04); color: var(--ink-soft); }
.values { list-style: none; margin: 1.5rem 0 1.75rem; }
.values li {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 1rem; align-items: baseline;
  padding: 0.8rem 0; border-top: 1px solid var(--border);
}
.values .v-num {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.values p { color: var(--ink-soft); margin: 0; }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.ph-postcard { aspect-ratio: 16 / 9; }
.contact-img {
  width: 100%; aspect-ratio: 12 / 7; object-fit: cover;
  border-radius: 16px; box-shadow: var(--shadow);
}

/* Social icons */
.social-row { display: flex; gap: 0.8rem; margin-top: 1.1rem; }
.footer-grid nav .social-row a,
.social-row a {
  color: #fff !important;
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff;
  transition: transform 0.2s var(--ease-pop), background 0.2s ease;
}
.social-row a:hover { transform: translateY(-2px); background: var(--violet); }

/* ==========================================================================
   Secțiuni
   ========================================================================== */
section { padding: clamp(3rem, 8vh, 5.5rem) 0; }
.section-title {
  font-size: var(--step-3); font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.section-title .dot {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-title::after {
  content: ""; display: block; width: 96px; height: 5px;
  margin-top: 0.55rem; border-radius: 3px;
  background: var(--grad);
}

html.js [data-reveal] {
  opacity: 0; translate: 0 26px;
  transition: opacity 0.6s ease, translate 0.6s ease;
  transition-delay: var(--rd, 0s);
}
html.js [data-reveal].in-view { opacity: 1; translate: 0 0; }


/* ==========================================================================
   Benzi de culoare pe secțiuni
   ========================================================================== */
.band-vivid {
  background: linear-gradient(135deg, #00B4D8 0%, #2E6BFF 55%, #7C3AED 100%);
  --ink: #FFFFFF;
  --ink-soft: rgba(255, 255, 255, 0.85);
  --border: rgba(255, 255, 255, 0.38);
  color: var(--ink);
}
.band-vivid .section-title .dot,
.band-vivid .show-kicker {
  background: rgba(255, 255, 255, 0.95);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.band-vivid .section-title::after { background: rgba(255, 255, 255, 0.9); }
.band-vivid .game-meta li { background: rgba(255, 255, 255, 0.12); color: #fff; }
.band-vivid .badge-soon {
  color: #fff; border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
}
.band-vivid .ghost-strip { border-color: rgba(255, 255, 255, 0.4); }
.band-vivid 
.band-tint { background: var(--tint); }

.band-dark {
  background: #0B1430;
  --ink: #F2F6FF;
  --ink-soft: #9FB0D0;
  --border: #2A3A5C;
  color: var(--ink);
}
.band-dark .band-dark .section-title .dot {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Butoane clare — variante */
.button-light { background: #fff; color: #1D4ED8; box-shadow: 0 10px 28px rgba(2, 8, 30, 0.25); }
.button-light:hover { box-shadow: 0 14px 36px rgba(2, 8, 30, 0.35); }
.button-ghost {
  background: transparent; color: var(--ink);
  border: 2px solid rgba(255, 255, 255, 0.65); box-shadow: none;
}
.button-ghost:hover { border-color: #fff; box-shadow: none; }

/* ==========================================================================
   Games — feature cu telefon + ghost strip
   ========================================================================== */
.game-feature {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 820px) {
  .game-feature { grid-template-columns: 1fr; }
}
.game-info h3 { font-size: var(--step-3); letter-spacing: -0.02em; margin-bottom: 0.25rem; }
.game-desc { color: var(--ink-soft); margin: 0.5rem 0 1.1rem; max-width: 34em; }
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: min(290px, 72vw);
  padding: 12px; border-radius: 46px;
  background: #0B0F1A;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 70px rgba(2, 8, 30, 0.45);
  position: relative;
}
.phone img { border-radius: 34px; width: 100%; height: auto; }

/* — stiluri istorice (vitrina full-bleed), înlocuite de .game-feature — */
.full-bleed { width: 100vw; margin-left: calc(50% - 50vw); }
.showcase { position: relative; }
.showcase > img {
  width: 100%; height: clamp(420px, 52vw, 620px);
  object-fit: cover; object-position: 32% 50%;
}
/* viniete ca art-ul luminos să se așeze în pagina întunecată */
.showcase::before, .showcase::after {
  content: ""; position: absolute; left: 0; right: 0; height: 70px;
  pointer-events: none; z-index: 1;
}
.showcase::before { top: 0; background: linear-gradient(var(--bg), transparent); }
.showcase::after { bottom: 0; background: linear-gradient(transparent, var(--bg)); }
.showcase-panel {
  position: absolute; z-index: 2; top: 50%;
  right: max(1.25rem, calc((100vw - var(--container)) / 2 + 1.25rem));
  transform: translateY(-50%);
  width: min(430px, calc(100vw - 2.5rem));
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.7rem 1.7rem;
}
.showcase-panel h3 { font-size: var(--step-2); letter-spacing: -0.02em; }
.showcase-panel > p:not(.show-kicker) { color: var(--ink-soft); margin: 0.5rem 0 1rem; }
.show-kicker {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 0.6rem;
}

.game-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  list-style: none; margin-bottom: 1.2rem;
}
.game-meta li {
  font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 600; color: var(--ink-soft);
  border: 1px solid var(--border); border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.15rem 0.7rem;
}
.card-foot {
  display: flex; align-items: center;
  gap: 1.25rem; flex-wrap: wrap;
}
.play-badge img { height: 80px; width: auto; display: block; }
.play-badge { transition: transform 0.2s var(--ease-pop); display: inline-block; }
.play-badge:hover { transform: translateY(-2px) scale(1.02); }
.badge-soon {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--badge-ink);
  background: rgba(77, 124, 254, 0.10);
  border: 1px solid rgba(109, 155, 255, 0.45);
  border-radius: 999px;
  padding: 0.45rem 1rem;
}

.ghost-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.9rem 1.4rem; text-align: center;
  max-width: var(--container); margin: 2rem auto 0;
  padding: 1rem 1.5rem;
  border: 1.5px dashed var(--border); border-radius: 14px;
  color: var(--ink-soft);
}
.ghost-kicker {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-soft);
}


/* ==========================================================================
   Contact — „the hunt”
   ========================================================================== */
.hunt-intro { max-width: 40em; color: var(--ink-soft); margin-bottom: 1.75rem; }
.hunt {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  max-width: 52em; margin-bottom: 1.5rem;
}
.hunt button {
  font-family: var(--font-display);
  font-size: var(--step--1); font-weight: 600;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 0.45rem 1rem; cursor: pointer;
  transition: transform 0.15s var(--ease-pop), border-color 0.15s ease,
              box-shadow 0.15s ease, color 0.2s ease;
}
.hunt button:hover {
  transform: translateY(-2px); border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(77, 124, 254, 0.25);
}
.hunt button.checked {
  color: var(--ink-soft); text-decoration: line-through;
  text-decoration-color: var(--primary); text-decoration-thickness: 2px;
  cursor: default; transform: none; box-shadow: none;
}
.hunt-more { padding: 0.55rem 1.2rem; font-size: var(--step--1); }
.hunt .more {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-size: var(--step--1); font-weight: 600;
  color: var(--ink-soft); text-decoration: none;
  border: 1px dashed var(--border); border-radius: 999px; padding: 0.45rem 1rem;
}
.hunt .more:hover { border-color: var(--primary); color: var(--ink); }
.hunt-status {
  min-height: 2.2em; font-size: var(--step-0); font-weight: 500;
  font-family: var(--font-mono);
}
.hunt-status .mark {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 700;
}

/* ==========================================================================
   The studio
   ========================================================================== */
#about { position: relative; overflow: clip; }
.about-wrap { position: relative; }
.about-wrap p { max-width: 46em; }
.about-wrap p { margin-bottom: 1rem; }
.about-wrap .wink { color: var(--ink-soft); font-style: italic; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-deep);
  padding: 3rem 0;
  color: var(--ink-soft); font-size: var(--step--1);
  font-family: var(--font);
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  padding-bottom: 2rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.f-brand .brand { margin-bottom: 0.75rem; }
.f-brand p { max-width: 18em; }
.footer-grid h4 {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0; color: var(--ink); margin-bottom: 0.85rem;
}
.footer-grid nav a {
  display: block; margin-bottom: 0.5rem;
  color: var(--ink-soft); font-weight: 600; text-decoration: none;
}
.footer-grid nav a:hover { color: var(--ink); text-decoration: underline; }
.site-footer a { color: var(--ink-soft); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.5rem 2rem;
  align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border-soft); padding-top: 1.5rem;
}
.footer-bottom a { font-weight: 600; }
.site-footer .tagline-echo { opacity: 0.75; font-style: italic; }

/* ==========================================================================
   Pagini de conținut (privacy) + 404
   ========================================================================== */
.prose { max-width: 720px; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
.prose header { margin-bottom: 2.5rem; }
.prose .kicker {
  font-family: var(--font-mono);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.prose h1 { font-size: var(--step-3); margin: 0.25rem 0 0.5rem; letter-spacing: -0.02em; }
.prose .date { color: var(--ink-soft); font-size: var(--step--1); }
.prose h2 {
  font-size: var(--step-1); margin: 2.25rem 0 0.75rem;
  padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.prose p, .prose li { margin-bottom: 0.75rem; }
.prose ul { padding-left: 1.4rem; }
.prose .card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem 1.25rem; margin: 1rem 0;
}

.error-page {
  min-height: 60vh; display: grid; place-items: center;
  text-align: center; padding: 4rem 1.25rem;
}
.error-page .fp-lost { margin: 0 auto 1.5rem; opacity: 0.9; }
.error-page h1 { font-size: var(--step-3); letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.error-page p { color: var(--ink-soft); margin-bottom: 2rem; }

/* ==========================================================================
   Reduced motion — oprește TOT ce se mișcă
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .hero h1 .line1, .hero h1 .line2, .hero .sub, .hero .cta { opacity: 1; translate: 0 0; }
  html.js [data-reveal] { opacity: 1; translate: 0 0; }
  .button, .hunt button { transition: none; }
}

/* ==========================================================================
   /woa — game page: features + how to play
   ========================================================================== */
.features {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.band-vivid .feature { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.28); }
.feature .fi {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 12px; margin-bottom: 0.9rem;
  background: var(--grad); color: #fff;
}
.band-vivid .feature .fi { background: rgba(255,255,255,0.18); }
.feature .fi svg { width: 22px; height: 22px; }
.feature h3 { font-size: var(--step-1); letter-spacing: -0.01em; margin-bottom: 0.3rem; }
.feature p { color: var(--ink-soft); font-size: var(--step--1); }
.band-vivid .feature p { color: rgba(255,255,255,0.85); }

.steps { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); counter-reset: step; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 3.4rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  color: #fff; background: var(--grad);
}
.step h3 { font-size: var(--step-1); letter-spacing: -0.01em; margin-bottom: 0.3rem; }
.step p { color: var(--ink-soft); }

.woa-cta-band {
  background: #0B1430; --ink:#F2F6FF; --ink-soft:#9FB0D0; color: var(--ink);
  text-align: center;
}
.woa-cta-band .section-title { justify-content: center; }
.woa-cta-band .section-title::after { margin-left: auto; margin-right: auto; }
.woa-cta-band .card-foot { justify-content: center; }
.pre-note { color: var(--ink-soft); font-size: var(--step--1); margin-top: 0.9rem; }
