/* ═══════════════════════════════════════════════════════════════════
   INVESTORHOOD — Programul Gratuit · v3 „Editorial"
   Art direction: rafinament de tip premium fintech / editorial design
   (referință de ritm și motion: hashgraphvc.com — fără a copia nimic).
   65–75% alb & off-white · negru doar strategic · verde folosit chirurgical.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --bg: #FAFAF8;
  --bg-2: #EEF1EC;
  --white: #FFFFFF;
  --black: #090A09;
  --text: #0B0C0B;
  --text-2: #5F625F;
  --text-3: #9AA09A;
  --line: #DDE1DB;
  --line-soft: #E9ECE6;

  --green: #20C058;
  --green-deep: #1F7B21;
  --green-ink: #06130A;
  --up: #10B880;
  --danger: #E84040;

  /* insulele întunecate (aplicația) */
  --dark-bg: #0A0A0F;
  --dark-surface: #12121A;
  --dark-line: rgba(255, 255, 255, 0.07);
  --dark-text: #F8F8F8;
  --dark-muted: #A0A0A8;
  --dark-muted-2: #707078;
  --surface: var(--dark-surface); /* alias folosit de componentele din telefon */
  --muted: var(--dark-muted);
  --muted-2: var(--dark-muted-2);

  --font: "Space Grotesk", ui-sans-serif, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --container: 1240px;
  --header-height: 78px;
  --ease: cubic-bezier(.22, .72, .24, 1);
  --shadow-soft: 0 14px 40px rgba(9, 10, 9, .06);
  --shadow-lift: 0 26px 64px rgba(9, 10, 9, .1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.62;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ic-fill { fill: currentColor; stroke: none; }
::selection { color: var(--green-ink); background: var(--green); }

.container { width: min(calc(100% - 44px), var(--container)); margin-inline: auto; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000;
  padding: 10px 14px; color: var(--green-ink); background: var(--green);
  border-radius: 10px; transform: translateY(-160%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

#scroll-progress {
  position: fixed; inset: 0 0 auto; z-index: 300; height: 2px;
  transform-origin: 0 50%; transform: scaleX(0);
  background: var(--green); pointer-events: none;
}

/* ─────────────────────────────── SISTEM ─────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 9px; margin: 0;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--green-deep);
}
.eyebrow--green { color: var(--green); }
.eyebrow .dot, .app-label .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none; }
.dot--red { background: var(--danger) !important; box-shadow: 0 0 0 4px rgba(232,64,64,.12); }

.app-label {
  display: flex; align-items: center; gap: 8px; margin: 0;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--green);
}
.app-see { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--dark-muted-2); white-space: nowrap; }

h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -.035em; line-height: 1.02; }
h1 { font-weight: 600; }
h2 { font-size: clamp(36px, 4.6vw, 60px); }
h3 { font-size: 20px; letter-spacing: -.02em; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 27px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -.01em; cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}
.button svg { width: 17px; height: 17px; }
.button--primary {
  position: relative; overflow: hidden;
  color: var(--green-ink); background: var(--green);
  box-shadow: 0 12px 30px rgba(32, 192, 88, .28);
}
.button--primary:hover { background: #1CB250; box-shadow: 0 16px 38px rgba(32, 192, 88, .34); }
.button--primary::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.5) 46%, transparent 60%);
  transform: translateX(-135%); transition: transform .6s ease;
}
.button--primary:hover::after { transform: translateX(135%); }
.button--ghost { color: var(--text); border-color: var(--line); background: var(--white); }
.button--ghost:hover { border-color: #C3C9C0; box-shadow: var(--shadow-soft); }
.button--small { padding: 11px 20px; font-size: 14px; }
.button--large { padding: 17px 33px; font-size: 16px; }
[data-magnet] { will-change: transform; }

.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--green-deep); font-weight: 600; }
.text-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

/* ─────────────────────────────── RAIL //01–//04 ─────────────────────────────── */
.chapter-rail {
  position: fixed; left: 22px; top: 50%; translate: 0 -50%; z-index: 80;
  display: flex; flex-direction: column; gap: 20px;
  opacity: 0; pointer-events: none; transition: opacity .4s ease;
}
/* Discret în repaus (nu concurează cu titlurile), complet vizibil la hover. */
.chapter-rail.is-visible { opacity: .35; pointer-events: auto; }
.chapter-rail.is-visible:hover { opacity: 1; }
.chapter-rail a { display: flex; align-items: center; gap: 10px; color: var(--text-3); transition: color .25s ease; }
.chapter-rail span { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .06em; }
.chapter-rail em {
  font-style: normal; font-size: 11.5px; font-weight: 600;
  opacity: 0; transform: translateX(-6px);
  transition: opacity .25s ease, transform .25s ease;
}
.chapter-rail a:hover em { opacity: 1; transform: none; }
.chapter-rail a.is-active { color: var(--green-deep); }
.chapter-rail a.is-active em { opacity: 1; transform: none; }
.chapter-rail a.is-active span::before { content: ""; display: inline-block; width: 16px; height: 1.5px; margin-right: 7px; vertical-align: middle; background: var(--green); }

/* ─────────────────────────────── HEADER ─────────────────────────────── */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, transform .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 250, 248, .82);
  border-bottom-color: var(--line-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header.over-dark {
  background: rgba(9, 10, 9, .72);
  border-bottom-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header.over-dark .desktop-nav a { color: rgba(255,255,255,.72); }
.site-header.over-dark .desktop-nav a:hover { color: #fff; }
.site-header.over-dark .menu-toggle { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.site-header.over-dark .menu-toggle span { background: #fff; }
.site-header.is-hidden { transform: translateY(-110%); }

.header-inner { height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; }
.brand {
  display: inline-flex; align-items: center; width: 182px;
  padding: 9px 13px; border-radius: 13px;
  background: var(--black);
}
.brand img { width: 100%; height: auto; }

.desktop-nav { display: flex; justify-content: center; align-items: center; gap: 28px; }
.desktop-nav a {
  position: relative; font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: color .2s ease;
}
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1.5px;
  background: var(--green); transition: right .3s var(--ease);
}
.desktop-nav a:hover { color: var(--text); }
.desktop-nav a:hover::after { right: 0; }
.site-header.over-dark .desktop-nav a::after { background: var(--green); }

.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; padding: 10px;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
  transition: background .3s ease, border-color .3s ease;
}
.menu-toggle span { display: block; height: 1.8px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), background .3s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: var(--header-height) 0 auto; z-index: 90;
  display: none; flex-direction: column; gap: 4px; padding: 16px 22px 26px;
  background: rgba(250, 250, 248, .98); border-bottom: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lift);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: 13px 4px; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--line-soft); }
.mobile-nav a.button { margin-top: 14px; border-bottom: 0; justify-content: center; }

/* ─────────────────────────────── HERO ─────────────────────────────── */
.hero { position: relative; padding: calc(var(--header-height) + 74px) 0 46px; overflow: hidden; background: var(--bg); }
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(90% 80% at 68% 40%, #000 0%, transparent 78%);
  mask-image: radial-gradient(90% 80% at 68% 40%, #000 0%, transparent 78%);
  opacity: .6;
}
.hero-layout { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(30px, 5vw, 76px); align-items: center; }

.hero h1 {
  max-width: 660px; margin: 26px 0 24px;
  font-size: clamp(46px, 5.6vw, 78px); line-height: .98; letter-spacing: -.045em;
}
.h1-accent { display: block; position: relative; width: fit-content; }
.h1-accent::after {
  content: ""; position: absolute; left: 2px; right: 6px; bottom: .06em; height: .1em;
  background: rgba(32, 192, 88, .32); z-index: -1; border-radius: 3px;
  transform-origin: left center;
}
.hero h1 .w { display: inline-block; overflow: hidden; vertical-align: top; }
.hero h1 .w > span {
  display: inline-block; transform: translateY(112%);
  animation: word-up .8s var(--ease) forwards;
  animation-delay: calc(.12s + var(--i, 0) * .055s);
}
@keyframes word-up { to { transform: none; } }

.hero-lead { max-width: 520px; margin: 0 0 30px; color: var(--text-2); font-size: 18px; }
.hero-lead strong { color: var(--text); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-micro { margin: 22px 0 0; font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--text-3); }

/* ── Obiectul principal: telefonul în ecosistem ── */
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
  min-height: 620px; will-change: transform;
}
.tie-watermark {
  position: absolute; width: 340px; opacity: .05; pointer-events: none;
  filter: grayscale(1);
}
.orbits { position: absolute; width: min(640px, 108%); height: auto; overflow: visible; }
.orbit-ring {
  fill: none; stroke: var(--line); stroke-width: 1; stroke-dasharray: 3 7;
  transform-origin: 320px 320px; animation: ring-spin 90s linear infinite;
}
.orbit-ring--inner { stroke: #CFD5CD; animation-duration: 60s; animation-direction: reverse; }
@keyframes ring-spin { to { transform: rotate(360deg); } }
.orbit-dots circle { fill: var(--green); stroke: none; }
.orbit-dots { transform-origin: 320px 320px; animation: ring-spin 90s linear infinite; }
.orbit-dots--inner { animation-duration: 60s; animation-direction: reverse; }
.orbit-dots--inner circle { fill: #B9C1B7; }
.market-path {
  fill: none; stroke: var(--green); stroke-width: 1.6; opacity: .55;
  stroke-dasharray: 100; stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.6s var(--ease);
}
[data-draw].is-drawn { stroke-dashoffset: 0; }

.tick-chip {
  position: absolute; z-index: 6;
  display: flex; align-items: baseline; gap: 7px;
  padding: 9px 13px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; color: var(--text-2);
  animation: float-card 7s ease-in-out infinite;
}
.tick-chip b { color: var(--text); font-weight: 700; }
.tick-chip em { font-style: normal; font-weight: 700; }
.tick-chip--1 { top: 12%; left: -3%; }
.tick-chip--2 { bottom: 16%; right: -5%; animation-delay: 1.4s; }
@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.free-chip {
  position: absolute; z-index: 6; top: 3%; right: 4%;
  display: flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: 999px;
  color: var(--green-ink); background: var(--green);
  font-family: var(--font-mono); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(32, 192, 88, .3);
  animation: float-card 7s ease-in-out infinite; animation-delay: .6s;
}
.free-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--green-ink); }

.object-spin {
  position: relative; z-index: 4;
  animation: object-sway 13s ease-in-out infinite;
  transform: rotateY(calc(var(--sr, 0deg))) rotate(1.6deg);
  transform-style: preserve-3d;
  will-change: transform;
}
@keyframes object-sway {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
/* ═══ TELEFONUL: replică a aplicației reale (insulă întunecată) ═══ */
/* ─── Telefonul: replică a aplicației reale ─── */
.phone-shell {
  position: relative; z-index: 3;
  width: 300px; padding: 9px;
  border: 1px solid rgba(255,255,255,.24); border-radius: 48px;
  background: linear-gradient(145deg, #2C2E33, #0B0C0F 36%, #303237);
  box-shadow: 0 50px 110px rgba(0,0,0,.6), 0 0 0 5px rgba(255,255,255,.035), inset 0 0 0 1px rgba(255,255,255,.14);
  transform: rotate(2deg);
}
.phone-screen {
  position: relative; overflow: hidden; border-radius: 40px;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0, rgba(32, 192, 88, .13), transparent 32%),
    linear-gradient(180deg, #0D0D13, var(--bg) 55%);
  padding-bottom: 58px;
}
.phone-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 24px 5px;
}
.ps-time { font-family: var(--font-mono); font-size: 12px; font-weight: 700; }
.ps-icons { display: flex; align-items: center; gap: 6px; color: var(--text); }
.ps-icons svg { height: 11px; width: auto; }

.app-top { display: flex; align-items: center; gap: 9px; padding: 9px 17px 11px; }
.app-avatar {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 30%, var(--green-deep), #0B160C 80%);
  border: 1.5px solid rgba(32, 192, 88, .55);
}
.app-avatar img { width: 17px; height: 18px; object-fit: contain; }
.app-hello { display: flex; flex-direction: column; line-height: 1.18; margin-right: auto; }
.app-hello small { color: var(--muted); font-size: 9px; }
.app-hello b { font-size: 14px; font-weight: 700; letter-spacing: -.02em; }
.app-round {
  position: relative; width: 29px; height: 29px; flex: none;
  display: grid; place-items: center; color: #CFD3D8;
  border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.045);
}
.app-round svg { width: 13px; height: 13px; }
.app-ntf { position: absolute; top: 4px; right: 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

.app-tape { overflow: hidden; padding: 7px 0; border-block: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.015); }
.app-tape-track, .page-tape-track {
  display: flex; gap: 20px; width: max-content; white-space: nowrap;
  font-family: var(--font-mono); color: var(--muted);
  animation: tape-scroll 22s linear infinite;
}
.app-tape-track { font-size: 8.5px; }
.app-tape-track b, .page-tape-track b { color: var(--text); font-weight: 700; }
.app-tape-track em, .page-tape-track em { font-style: normal; font-weight: 700; }
em.up { color: var(--up); }
em.down { color: var(--danger); }
@keyframes tape-scroll { to { transform: translateX(calc(-50% - 10px)); } }

.app-row { display: flex; align-items: baseline; justify-content: space-between; padding: 12px 17px 0; }
.phone-screen .app-label { font-size: 8.5px; letter-spacing: .2em; gap: 6px; }
.phone-screen .app-label .dot { width: 5px; height: 5px; box-shadow: 0 0 0 3px rgba(232,64,64,.15); }
.phone-screen .app-see { font-size: 8.5px; }
.app-updated { margin: 3px 0 0; padding: 0 17px; font-family: var(--font-mono); font-size: 7.5px; color: var(--muted-2); }

.watch { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px 16px 0; }
.w-card {
  display: flex; flex-direction: column; gap: 6px; padding: 10px 11px;
  border: 1px solid var(--line); border-radius: 14px; background: var(--surface);
}
.w-top { display: flex; align-items: center; justify-content: space-between; gap: 4px; }
.w-sym { display: flex; align-items: center; gap: 5px; font-family: var(--font-mono); font-size: 8.5px; font-weight: 700; letter-spacing: .05em; }
.w-sym i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); }
.w-chg { font-family: var(--font-mono); font-size: 7.5px; font-weight: 700; font-style: normal; }
.w-chg.up { color: var(--up); }
.w-chg.down { color: var(--danger); }
.w-price { font-family: var(--font-mono); font-size: 15px; font-weight: 700; letter-spacing: .01em; }

.vid {
  position: relative; margin: 10px 16px 0; height: 128px;
  display: flex; align-items: flex-end; overflow: hidden;
  border: 1px solid var(--line); border-radius: 15px;
  background: linear-gradient(160deg, #232028, #101017 55%, #17141C);
}
.vid::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120px 70px at 76% 14%, rgba(255, 176, 80, .24), transparent 70%),
    radial-gradient(150px 90px at 8% 92%, rgba(32, 192, 88, .18), transparent 70%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 5px, transparent 5px 15px);
  -webkit-mask-image: linear-gradient(#000 55%, transparent);
  mask-image: linear-gradient(#000 55%, transparent);
}
.vid-live {
  position: absolute; top: 9px; left: 9px; z-index: 1;
  padding: 3px 7px; border-radius: 5px;
  color: #fff; background: var(--danger);
  font-family: var(--font-mono); font-size: 7px; font-weight: 800; letter-spacing: .1em;
}
.vid-play {
  position: absolute; top: 9px; right: 9px; z-index: 1;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green-ink); background: var(--green);
  box-shadow: 0 8px 18px rgba(32, 192, 88, .4);
}
.vid-play svg { width: 12px; height: 12px; margin-left: 1px; }
.vid-play--sm { width: 26px; height: 26px; }
.vid-play--sm svg { width: 10px; height: 10px; }
.vid-body { position: relative; width: 100%; padding: 10px 12px 12px; background: linear-gradient(transparent, rgba(6, 6, 10, .92) 46%); }
.vid-title { margin: 0; font-size: 10.5px; font-weight: 700; line-height: 1.3; letter-spacing: -.01em; }
.vid-meta { display: flex; align-items: center; gap: 10px; margin: 5px 0 0; font-family: var(--font-mono); font-size: 7.5px; color: var(--muted); }
.vid-meta .m { display: inline-flex; align-items: center; gap: 4px; }
.vid-meta svg { width: 10px; height: 10px; }
.vid-meta .v-live { color: var(--up); }
.vid-bar { display: block; height: 2px; margin-top: 8px; border-radius: 2px; background: rgba(255,255,255,.16); position: relative; overflow: hidden; }
.vid-bar::after { content: ""; position: absolute; inset: 0 62% 0 0; border-radius: 2px; background: rgba(255,255,255,.65); }

.app-row--live { padding-top: 13px; }

.phone-navigation {
  position: absolute; inset: auto 0 0; height: 58px;
  display: grid; grid-template-columns: repeat(4, 1fr); align-items: center;
  padding: 5px 10px 9px;
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 12, .92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.phone-navigation span {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 6.5px; font-weight: 600; color: var(--muted-2);
}
.phone-navigation svg { width: 15px; height: 15px; }
.phone-navigation span.active { color: var(--green); }
.nav-pill {
  display: grid; place-items: center; width: 26px; height: 22px;
  background: var(--green); border-radius: 8px; color: var(--green-ink);
}
.nav-pill svg { width: 13px; height: 13px; stroke-width: 2.1; }

/* ─────────────────────────────── BANDA DE DATE ─────────────────────────────── */
.page-tape {
  overflow: hidden; margin-top: 42px; padding: 13px 0;
  background: var(--black); color: var(--dark-muted);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.page-tape .page-tape-track { font-size: 13px; gap: 0; animation-name: tape-scroll-page; animation-duration: 30s; }
.page-tape-track > span { display: flex; gap: 9px; align-items: baseline; margin-right: 34px; }
/* Bucla e perfectă la exact -50% pentru că JS umple banda cu un număr PAR de
   copii ale setului de instrumente, iar spațierea e inclusă în fiecare item. */
@keyframes tape-scroll-page { to { transform: translateX(-50%); } }
.page-tape:hover .page-tape-track { animation-play-state: paused; }

/* ─────────────────────────────── SECȚIUNI & CAPITOLE ─────────────────────────────── */
.section { padding: clamp(84px, 10vw, 150px) 0; }
.chapter--white { background: var(--white); border-block: 1px solid var(--line-soft); }

.chapter-head { display: grid; grid-template-columns: 130px 1fr; gap: 26px; align-items: start; margin-bottom: clamp(44px, 5vw, 68px); }
.chapter-head--stack { grid-template-columns: 1fr; max-width: 560px; }
.chapter-head--stack .chapter-num { margin-bottom: 14px; }
.chapter-num {
  font-family: var(--font-mono); font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  letter-spacing: -.02em; color: transparent;
  -webkit-text-stroke: 1.2px var(--text-3);
  line-height: 1;
}
.chapter-head h2 { margin: 12px 0 16px; }
.chapter-sub { max-width: 560px; margin: 0; color: var(--text-2); font-size: 17px; }

/* ─── Manifesto ─── */
.manifesto { background: var(--white); border-block: 1px solid var(--line-soft); }
.manifesto-inner { max-width: 900px; }
.manifesto-title { font-size: clamp(38px, 5vw, 66px); letter-spacing: -.04em; }
.manifesto-title .line, .manifesto-highlight .line, .free-list .line, .cine-card h3 .line { display: block; }
.manifesto-text { max-width: 640px; margin: 28px 0 40px; color: var(--text-2); font-size: 19px; }
.manifesto-highlight { margin: 0; font-size: clamp(26px, 3.2vw, 40px); font-weight: 600; letter-spacing: -.03em; line-height: 1.18; }
.manifesto-highlight .accent { color: var(--green-deep); }

/* ─── //01 Aplicația: layout sticky ─── */
.app-sticky { display: grid; grid-template-columns: 1fr 420px; gap: clamp(40px, 6vw, 100px); align-items: start; }
.app-features { display: flex; flex-direction: column; }
.app-feature {
  min-height: 62vh; display: flex; flex-direction: column; justify-content: center;
  padding: 40px 0; border-bottom: 1px solid var(--line-soft);
}
.app-feature:last-child { border-bottom: 0; }
.feat-num {
  width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 20px;
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  color: var(--green-deep); border: 1px solid var(--line); border-radius: 12px; background: var(--white);
}
.app-feature h3 { font-size: 26px; margin-bottom: 12px; }
.app-feature p { margin: 0; max-width: 440px; color: var(--text-2); }
.app-feature.is-current .feat-num { color: var(--green-ink); background: var(--green); border-color: var(--green); }

.sticky-col { position: sticky; top: calc(var(--header-height) + 34px); display: flex; justify-content: center; }
.phone-shell--sticky { transform: rotate(0deg); }
.app-screens { position: relative; height: 402px; }
.app-screen {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(14px) scale(.985);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.app-screen.is-active { opacity: 1; transform: none; pointer-events: auto; }

.lesson-card {
  margin: 8px 16px 0; padding: 13px 14px;
  border: 1px solid var(--dark-line); border-radius: 14px; background: var(--dark-surface);
}
.lesson-card b { display: block; font-size: 12px; letter-spacing: -.01em; }
.lesson-bar { display: block; height: 5px; margin: 10px 0 7px; border-radius: 99px; background: rgba(255,255,255,.1); overflow: hidden; }
.lesson-bar i { display: block; height: 100%; width: 38%; border-radius: 99px; background: var(--green); }
.lesson-card small { font-family: var(--font-mono); font-size: 8px; color: var(--dark-muted-2); }

.cal-list { display: flex; flex-direction: column; gap: 8px; padding: 8px 16px 0; }
.cal-row {
  display: grid; grid-template-columns: 44px 1fr 10px; gap: 10px; align-items: center;
  padding: 10px 12px; border: 1px solid var(--dark-line); border-radius: 13px; background: var(--dark-surface);
}
.cal-time { font-family: var(--font-mono); font-size: 10px; font-weight: 700; color: var(--dark-text); }
.cal-row b { display: block; font-size: 11px; }
.cal-row small { display: block; margin-top: 1px; font-size: 9px; color: var(--dark-muted); }
.cal-imp { width: 8px; height: 8px; border-radius: 50%; background: #E0A83C; }
.cal-imp--hi { background: var(--danger); }
.cal-imp--lo { background: var(--dark-muted-2); }

.saved-list { display: flex; flex-direction: column; gap: 8px; padding: 8px 16px 0; }
.saved-row {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 12px; border: 1px solid var(--dark-line); border-radius: 13px; background: var(--dark-surface);
}
.saved-ic {
  width: 30px; height: 30px; flex: none; display: grid; place-items: center;
  color: var(--green); background: rgba(32,192,88,.12); border-radius: 9px;
}
.saved-ic svg { width: 14px; height: 14px; }
.saved-row b { display: block; font-size: 11px; letter-spacing: -.01em; }
.saved-row small { display: block; margin-top: 1px; font-family: var(--font-mono); font-size: 8px; color: var(--dark-muted-2); }
.ntf-row {
  display: flex; align-items: center; gap: 10px; margin: 8px 16px 0;
  padding: 11px 12px; border: 1px solid rgba(32,192,88,.3); border-radius: 13px; background: rgba(32,192,88,.07);
}
.ntf-row i { width: 7px; height: 7px; flex: none; border-radius: 50%; background: var(--green); }
.ntf-row b { display: block; font-size: 11px; }
.ntf-row small { display: block; font-family: var(--font-mono); font-size: 8px; color: var(--dark-muted); }

/* ─── //02 Cursul: cinematic ─── */
.trainers-cine { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.cine-card { margin: 0; }
.cine-card--offset { margin-top: clamp(30px, 5vw, 84px); }
.cine-photo {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--bg-2), #F7F9F5);
  border: 1px solid var(--line-soft);
  aspect-ratio: 4 / 4.6;
  will-change: transform;
}
.cine-photo img { width: 100%; height: 104%; object-fit: cover; object-position: center top; }
.cine-card:nth-child(2) .cine-photo img { object-fit: contain; padding: 24px 10px 0; }
.cine-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 70%, rgba(250, 250, 248, .0));
}
.cine-card figcaption { padding: 22px 6px 0; }
.cine-line { display: block; width: 44px; height: 2px; margin-bottom: 16px; background: var(--green); }
.cine-card h3 { font-size: clamp(28px, 3vw, 40px); letter-spacing: -.035em; }
.cine-card h3 .line { display: inline-block; }
.cine-role { margin: 10px 0 0; font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-deep); }
.cine-desc {
  margin: 12px 0 0; max-width: 460px; color: var(--text-2); font-size: 15.5px;
  opacity: .85; transition: opacity .3s ease;
}
.cine-card:hover .cine-desc { opacity: 1; }
.cine-note {
  display: flex; align-items: center; gap: 10px; margin: clamp(36px, 4vw, 56px) 0 0;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--text);
}

/* ─── //03 Webinarii ─── */
.webinar-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.webinar-layout .chapter-head { margin-bottom: 0; }
.webinar-visuals { position: relative; display: grid; gap: 18px; }
.webinar-screen {
  position: relative; padding: 18px 18px 16px;
  border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(165deg, #101016, var(--dark-bg));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: var(--shadow-lift);
  color: var(--dark-text);
}
.webinar-screen .vid-live { position: absolute; top: 16px; right: 16px; left: auto; }
.ws-head { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; }
.ws-head img { width: 17px; height: 18px; object-fit: contain; }
.ws-chart { width: 100%; height: auto; margin-top: 14px; overflow: visible; }
.ws-grid-line { stroke: rgba(255,255,255,.07); stroke-width: 1; }
.ws-line {
  stroke: var(--up); stroke-width: 2.2; fill: none;
  filter: drop-shadow(0 0 7px rgba(16, 184, 128, .45));
  stroke-dasharray: 100; stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.8s var(--ease) .2s;
}
.ws-foot { display: flex; justify-content: space-between; margin-top: 12px; font-family: var(--font-mono); font-size: 10.5px; color: var(--dark-muted); }
.ws-foot .m { display: flex; align-items: center; gap: 7px; color: var(--dark-text); }

.webinar-topics {
  display: grid; gap: 12px; padding: 22px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}
.webinar-topics-label { margin-bottom: 4px; }
.topic-chip { display: grid; grid-template-columns: 40px 1fr; gap: 13px; align-items: start; padding: 12px 4px; border-bottom: 1px solid var(--line-soft); }
.topic-chip:last-child { border-bottom: 0; }
.tc-num { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--text-3); padding-top: 3px; }
.topic-chip b { display: block; font-size: 16px; letter-spacing: -.015em; }
.topic-chip small { display: block; margin-top: 3px; color: var(--text-2); font-size: 13.5px; }

/* ─── //04 Ghiduri ─── */
.guides-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.guides-layout .chapter-head { margin-bottom: 0; }
.guides-stack { position: relative; height: 420px; max-width: 500px; margin-inline: auto; }
.guide-cover {
  position: absolute; width: 264px; min-height: 340px; padding: 24px;
  border-radius: 18px; background: var(--white); border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.guide-cover img { width: 30px; height: 33px; object-fit: contain; }
.guide-cover small { display: block; margin-top: 16px; font-family: var(--font-mono); font-size: 9px; font-weight: 800; letter-spacing: .16em; color: var(--green-deep); }
.guide-cover strong { display: block; margin-top: 7px; font-size: 21px; font-weight: 600; letter-spacing: -.03em; line-height: 1.12; }
.gc-line { display: block; height: 7px; margin-top: 10px; border-radius: 4px; background: var(--bg-2); }
.guide-cover .gc-line:nth-of-type(2) { width: 76%; }
.guide-cover .gc-line:nth-of-type(3) { width: 54%; }
.guide-cover--front { left: 6%; top: 24px; z-index: 3; transform: rotate(-3deg); }
.guide-cover--mid { left: 34%; top: 56px; z-index: 2; transform: rotate(3.5deg); background: #FDFDFB; }
.guide-cover--back { left: 58%; top: 96px; z-index: 1; transform: rotate(9deg); min-height: 300px; width: 230px; background: var(--bg-2); border-color: var(--line); }
.guides-stack:hover .guide-cover--front { transform: rotate(-6deg) translate(-22px, -10px); }
.guides-stack:hover .guide-cover--mid { transform: rotate(2deg) translate(4px, -4px); }
.guides-stack:hover .guide-cover--back { transform: rotate(13deg) translate(20px, 4px); }
.gc-progress { display: block; margin-top: 22px; }
.gc-progress i { display: block; height: 4px; border-radius: 99px; background: var(--bg-2); position: relative; overflow: hidden; }
.gc-progress i::after { content: ""; position: absolute; inset: 0 58% 0 0; background: var(--green); border-radius: 99px; }
.gc-progress em { display: block; margin-top: 8px; font-style: normal; font-family: var(--font-mono); font-size: 9px; letter-spacing: .06em; color: var(--text-3); }

/* ─── TOTUL GRATUIT: momentul negru ─── */
.free-moment { background: var(--black); color: #fff; }
.free-inner { max-width: 900px; }
.free-list { font-size: clamp(52px, 8.4vw, 118px); font-weight: 600; letter-spacing: -.05em; line-height: .98; margin: 26px 0 30px; }
.free-list .line { display: block; }
.free-zero { color: var(--green); }
.free-sub { max-width: 520px; margin: 0 0 34px; color: rgba(255,255,255,.62); font-size: 18px; }

/* ─── Cum funcționează ─── */
.how-section { background: var(--white); border-block: 1px solid var(--line-soft); }
.how-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.how-layout .chapter-head { margin-bottom: 0; }
.how-steps { position: relative; display: flex; flex-direction: column; gap: 22px; padding-left: 44px; }
.how-line { position: absolute; left: 19px; top: 26px; bottom: 26px; width: 4px; height: calc(100% - 52px); }
.how-line path {
  stroke: var(--line); stroke-width: 2;
  stroke-dasharray: 100; stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.how-line path.is-drawn { stroke-dashoffset: 0; stroke: var(--green); }
.how-step {
  position: relative;
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center;
  padding: 24px 26px; border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--bg); box-shadow: var(--shadow-soft);
}
.how-step::before {
  content: ""; position: absolute; left: -32px; top: 50%; translate: 0 -50%;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--green);
}
.how-num { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--green-deep); }
.how-step h3 { margin: 0 0 4px; font-size: 18px; }
.how-step p { margin: 0; color: var(--text-2); font-size: 14.5px; }

/* ─── Înscriere ─── */
.enrollment-card {
  display: grid; grid-template-columns: .95fr 1.05fr;
  border: 1px solid var(--line); border-radius: var(--r-xl);
  background: var(--white); overflow: hidden; box-shadow: var(--shadow-lift);
}
.enrollment-copy {
  position: relative; padding: clamp(34px, 5vw, 60px); overflow: hidden;
  background: linear-gradient(180deg, #F0F8F1, var(--white) 78%);
}
.enrollment-copy h2 { margin: 16px 0 14px; font-size: clamp(30px, 3.3vw, 40px); }
.enrollment-copy > p { margin: 0; color: var(--text-2); }

.enrollment-benefits { display: grid; gap: 16px; margin-top: 32px; }
.enrollment-benefits > div { display: grid; grid-template-columns: 31px 1fr; gap: 13px; align-items: start; }
.enrollment-benefits > div > span {
  width: 29px; height: 29px; display: grid; place-items: center;
  border-radius: 50%; color: var(--green-ink); background: var(--green);
}
.enrollment-benefits svg { width: 14px; height: 14px; stroke-width: 2.8; }
.enrollment-benefits p { display: flex; flex-direction: column; margin: 0; line-height: 1.35; }
.enrollment-benefits strong { font-size: 15px; }
.enrollment-benefits small { margin-top: 3px; color: var(--text-3); font-size: 12.5px; }

.bonus-box {
  display: flex; gap: 15px; align-items: flex-start;
  margin-top: 26px; padding: 16px 18px;
  border: 1px solid #CFE9D6; border-radius: var(--r-md);
  background: var(--white); box-shadow: var(--shadow-soft);
}
.bonus-icon { width: 40px; height: 40px; flex: none; display: grid; place-items: center; color: var(--green-ink); background: var(--green); border-radius: 12px; }
.bonus-icon svg { width: 19px; height: 19px; }
.bonus-box small { display: block; font-family: var(--font-mono); font-size: 9.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--green-deep); }
.bonus-box strong { display: block; margin-top: 4px; font-size: 15.5px; letter-spacing: -.01em; }
.bonus-box p { margin: 4px 0 0; color: var(--text-2); font-size: 13px; line-height: 1.5; }

.zero-price { display: flex; align-items: center; margin-top: 32px; }
.zero-price > span { font-family: var(--font-mono); font-size: 68px; line-height: .8; font-weight: 800; letter-spacing: -.06em; color: var(--green-deep); }
.zero-price div { display: flex; flex-direction: column; margin-left: 13px; line-height: 1.1; }
.zero-price strong { font-family: var(--font-mono); font-size: 13px; letter-spacing: .14em; }
.zero-price small { margin-top: 5px; color: var(--text-3); font-size: 11px; }

.form-card { position: relative; padding: clamp(30px, 4.4vw, 52px); background: var(--white); border-left: 1px solid var(--line-soft); }
.form-heading h3 { margin: 13px 0 6px; font-size: 25px; }
.form-heading p { margin: 0 0 26px; color: var(--text-2); font-size: 14.5px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 8px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2); }
.field input[type="text"], .field input[type="email"], .phone-field {
  width: 100%; padding: 14px 16px;
  color: var(--text); background: var(--bg);
  border: 1px solid var(--line); border-radius: 13px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input::placeholder { color: var(--text-3); }
.field input:focus, .phone-field:focus-within {
  outline: none; border-color: var(--green); background: var(--white);
  box-shadow: 0 0 0 3px rgba(32,192,88,.14);
}
.phone-field { display: flex; align-items: center; gap: 11px; padding: 0 0 0 16px; }
.phone-field > span { font-family: var(--font-mono); font-size: 14px; font-weight: 700; color: var(--text-2); }
.phone-field input { flex: 1; padding: 14px 16px 14px 0; color: var(--text); background: transparent; border: 0; }
.phone-field input:focus { outline: none; box-shadow: none; }
.field.has-error input, .field.has-error .phone-field { border-color: var(--danger); }
.field-error { display: block; margin-top: 6px; color: #C43A3A; font-size: 12.5px; }
.field-error:empty { display: none; }
.consent-error { margin: -6px 0 14px; }

.consent-field { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; margin: 6px 0 16px; font-size: 13px; color: var(--text-2); cursor: pointer; }
.consent-field input { position: absolute; opacity: 0; pointer-events: none; }
.custom-check {
  width: 22px; height: 22px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 7px; background: var(--bg);
  color: var(--green-ink); transition: background .2s ease, border-color .2s ease;
}
.custom-check svg { width: 13px; height: 13px; stroke-width: 3; opacity: 0; transition: opacity .15s ease; }
.consent-field input:checked + .custom-check { background: var(--green); border-color: var(--green); }
.consent-field input:checked + .custom-check svg { opacity: 1; }
.consent-field input:focus-visible + .custom-check { box-shadow: 0 0 0 3px rgba(32,192,88,.22); }
.consent-field a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 3px; }

.button--submit { width: 100%; position: relative; }
.button-loader {
  position: absolute; width: 19px; height: 19px;
  border: 2.5px solid rgba(6,19,10,.3); border-top-color: var(--green-ink);
  border-radius: 50%; opacity: 0; animation: spin 0.8s linear infinite paused;
}
@keyframes spin { to { transform: rotate(360deg); } }
.button--submit.is-loading .button-label, .button--submit.is-loading .button-arrow { opacity: 0; }
.button--submit.is-loading .button-loader { opacity: 1; animation-play-state: running; }

.form-security { display: flex; align-items: center; gap: 8px; margin: 16px 0 0; color: var(--text-3); font-size: 12.5px; }
.form-security svg { width: 14px; height: 14px; flex: none; }

.form-message { display: none; margin-top: 16px; padding: 13px 15px; border-radius: 12px; font-size: 13.5px; }
.form-message--error { color: #B23333; background: #FDF1F1; border: 1px solid #F2CFCF; }
.form-message.is-visible { display: block; }

.success-state { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.success-icon {
  width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 8px;
  border-radius: 50%; color: var(--green-ink); background: var(--green);
  box-shadow: 0 14px 32px rgba(32,192,88,.32);
}
.success-icon svg { width: 26px; height: 26px; stroke-width: 2.6; }
.success-state h3 { font-size: 25px; }
.success-state p { margin: 4px 0 16px; color: var(--text-2); }

/* ─── Încredere ─── */
.proof-section { text-align: center; }
.review-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.review-card {
  display: flex; align-items: center; gap: 15px;
  padding: 19px 26px; border-radius: var(--r-md);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  text-align: left;
}
.review-logo { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 13px; }
.review-logo--tp { background: #00B67A; color: #fff; }
.review-logo--tp svg { width: 24px; height: 24px; }
.review-logo--g { background: var(--white); border: 1px solid var(--line); }
.review-logo--g svg { width: 26px; height: 26px; }
.review-stars { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 17px; font-weight: 800; }
.review-stars i { font-style: normal; font-size: 12px; letter-spacing: 2px; }
.review-card--tp .review-stars i { color: #00B67A; }
.review-card--g .review-stars i { color: #FBBC04; }
.review-body small { display: block; margin-top: 4px; color: var(--text-2); font-size: 13px; }

.proof-label { justify-content: center; margin: 46px 0 20px; color: var(--text-3); }
.partners-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.partner-card {
  display: grid; place-items: center;
  width: 216px; height: 90px; padding: 16px 22px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm);
  box-shadow: var(--shadow-soft);
  transition: box-shadow .25s ease, transform .25s ease;
}
.partner-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.partner-card img { max-height: 50px; width: auto; max-width: 100%; object-fit: contain; }

.media-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px;
  font-size: 18px; font-weight: 600; letter-spacing: -.015em; color: var(--text-2);
}

/* ─── FAQ ─── */
.faq-section { background: var(--white); border-top: 1px solid var(--line-soft); }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 5vw, 90px); align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading h2 { margin: 14px 0 14px; }
.faq-heading p { margin: 0; color: var(--text-2); }
.faq-heading a { color: var(--green-deep); font-weight: 600; }

.accordion-item { border-bottom: 1px solid var(--line-soft); }
.accordion-item:first-child { border-top: 1px solid var(--line-soft); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 4px; text-align: left;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font); font-size: 17px; font-weight: 600; letter-spacing: -.015em;
  transition: color .2s ease;
}
.accordion-trigger:hover { color: var(--green-deep); }
.accordion-trigger:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 6px; }
.accordion-trigger i { position: relative; width: 20px; height: 20px; flex: none; }
.accordion-trigger i::before, .accordion-trigger i::after {
  content: ""; position: absolute; inset: 50% auto auto 50%; translate: -50% -50%;
  background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), background .2s ease;
}
.accordion-trigger:hover i::before, .accordion-trigger:hover i::after { background: var(--green-deep); }
.accordion-trigger i::before { width: 14px; height: 1.8px; }
.accordion-trigger i::after { width: 1.8px; height: 14px; }
.accordion-trigger[aria-expanded="true"] i::after { transform: rotate(90deg); }
.accordion-panel { padding: 0 44px 20px 4px; }
.accordion-panel p { margin: 0; color: var(--text-2); font-size: 15px; }

/* ─── CTA final ─── */
.final-cta { position: relative; padding: clamp(90px, 12vw, 150px) 0; text-align: center; background: var(--bg); overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; inset: auto 0 -340px;
  height: 560px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(32,192,88,.12), transparent);
  pointer-events: none;
}
.final-cta-inner { position: relative; }
.final-object { position: relative; display: inline-grid; place-items: center; margin-bottom: 26px; }
.final-object img {
  width: 74px; height: 74px; padding: 16px; object-fit: contain;
  border-radius: 22px; background: var(--black); box-shadow: var(--shadow-lift);
  position: relative; z-index: 1;
}
.final-orbit {
  position: absolute; width: 128px; height: 128px; border-radius: 50%;
  border: 1px dashed var(--line);
  animation: ring-spin 40s linear infinite;
}
.final-cta h2 { margin: 0 auto 16px; font-size: clamp(36px, 4.6vw, 62px); }
.final-cta h2 span { display: block; color: var(--text-3); }
.final-sub { max-width: 520px; margin: 0 auto 32px; color: var(--text-2); font-size: 17px; }
.final-cta .button { margin-inline: auto; }

/* ─── Footer (închidere instituțională, întunecată) ─── */
.site-footer { background: var(--black); color: var(--dark-text); }
.footer-main { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 40px; padding: 64px 0 44px; }
.footer-brand img { width: 206px; }
.footer-brand p { max-width: 260px; margin: 18px 0 0; color: var(--dark-muted-2); font-size: 13.5px; }
.footer-socials { display: flex; gap: 9px; margin-top: 20px; }
.footer-socials a {
  width: 37px; height: 37px; display: grid; place-items: center;
  color: var(--dark-muted); border: 1px solid var(--dark-line); border-radius: 50%;
  background: rgba(255,255,255,.03);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-socials a:hover { color: var(--green); border-color: rgba(32,192,88,.4); transform: translateY(-2px); }
.footer-socials svg { width: 15px; height: 15px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column h3 { margin: 0 0 6px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--dark-muted); }
.footer-column a, .footer-column p { margin: 0; color: var(--dark-muted-2); font-size: 13px; transition: color .2s ease; }
.footer-column a:hover { color: var(--green); }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding: 20px 0; border-top: 1px solid var(--dark-line); }
.footer-legal p { margin: 0; color: var(--dark-muted-2); font-size: 12px; }
.disclaimer { padding: 0 0 34px; color: #5B5B64; font-size: 11.5px; line-height: 1.65; }
.disclaimer strong { color: var(--dark-muted-2); }

/* ─── CTA sticky mobil ─── */
.mobile-sticky-cta {
  position: fixed; inset: auto 14px 14px; z-index: 95;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 12px 12px 18px;
  background: rgba(255, 255, 255, .97); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transform: translateY(130%); visibility: hidden;
  transition: transform .35s var(--ease), visibility .35s;
}
.mobile-sticky-cta.is-visible { transform: translateY(0); visibility: visible; }
.mobile-sticky-cta > div { display: flex; flex-direction: column; line-height: 1.3; }
.mobile-sticky-cta strong { font-size: 13px; }
.mobile-sticky-cta span { font-family: var(--font-mono); color: var(--text-3); font-size: 9px; }
.mobile-sticky-cta .button { min-width: 116px; }

/* ─── Reveal (intrări discrete) ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal--delay { --d: .16s; }
.reveal--delay-sm { --d: .08s; }
.reveal--delay-md { --d: .16s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.line.reveal { transform: translateY(30px); }
.line.reveal.is-visible { transform: translateY(0); }

/* ─── Tilt discret + scena hero, doar desktop cu mouse ─── */
@media (hover: hover) and (pointer: fine) {
  [data-tilt] {
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
    transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
    will-change: transform;
  }
  [data-tilt]:hover {
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-4px);
  }
  .hero-visual.reveal.is-visible {
    transform: perspective(1400px) rotateX(var(--hrx, 0deg)) rotateY(var(--hry, 0deg));
    transform-style: preserve-3d;
    transition: transform .35s var(--ease), opacity .8s var(--ease);
  }
}

/* ─────────────────────────────── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1320px) { .chapter-rail { display: none; } }

@media (max-width: 1080px) {
  .app-sticky { grid-template-columns: 1fr 380px; }
  .tick-chip--1 { left: 0; }
  .tick-chip--2 { right: 0; }
}

@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { min-height: 560px; margin-top: 4px; }
  .app-sticky { grid-template-columns: 1fr; }
  .sticky-col { position: relative; top: 0; order: -1; margin-bottom: 20px; }
  .app-feature { min-height: 0; padding: 30px 0; }
  .webinar-layout, .guides-layout, .how-layout, .faq-layout { grid-template-columns: 1fr; }
  .faq-heading { position: static; margin-bottom: 8px; }
  .trainers-cine { grid-template-columns: 1fr; }
  .cine-card--offset { margin-top: 0; }
  .enrollment-card { grid-template-columns: 1fr; }
  .form-card { border-left: 0; border-top: 1px solid var(--line-soft); }
  .chapter-head { grid-template-columns: 1fr; gap: 10px; }
  .guides-stack { height: 460px; }
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  :root { --header-height: 68px; }
  .brand { width: 158px; padding: 8px 11px; }
}

@media (max-width: 720px) {
  .mobile-sticky-cta { display: flex; }
  .page-tape .page-tape-track { font-size: 11.5px; }
  .guide-cover { width: 232px; min-height: 300px; }
  .guide-cover--mid { left: 22%; }
  .guide-cover--back { left: 40%; }
  .review-card { width: 100%; }
  .partner-card { width: calc(50% - 7px); }
  .free-list { font-size: clamp(46px, 13vw, 80px); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 42px; }
  h2 { font-size: 33px; }
  .phone-shell { width: 268px; }
  .tick-chip { display: none; }
  .free-chip { top: 0; left: 0; right: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; padding: 48px 0 34px; }
  .footer-legal { flex-direction: column; }
  .partner-card { width: 100%; }
  .guides-stack { height: 430px; max-width: 320px; }
  .guide-cover--front { left: 0; }
  .guide-cover--mid { left: 12%; top: 70px; }
  .guide-cover--back { display: none; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .line.reveal { opacity: 1; transform: none; }
  .hero h1 .w > span { transform: none; animation: none; }
  .site-header.is-hidden { transform: none; }
  .market-path, .ws-line, .how-line path { stroke-dashoffset: 0; }
  .app-screen { transition: none; }
}

/* ═══ v3.1 — asset-uri reale: formular în hero, screenshot oficial, fotografii traineri ═══ */

/* Hero cu formular */
.hero { padding-bottom: 36px; }
.hero-layout {
  grid-template-columns: .95fr 1.05fr;
  grid-template-areas: "copy side" "benefits side";
  align-items: start; row-gap: 40px;
}
.hero-copy { grid-area: copy; padding-top: 18px; }
.hero-side { grid-area: side; position: relative; display: flex; justify-content: flex-end; min-height: 620px; }
.hero-benefits {
  grid-area: benefits; align-self: end;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px;
  margin: 0; padding: 0 8px 6px 0; list-style: none; max-width: 480px;
}
.hero-benefits li { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 600; color: var(--text); }
.hero-benefits svg { width: 19px; height: 19px; flex: none; color: var(--green-deep); }

/* Telefonul cu screenshotul real */
.device {
  padding: 9px; border-radius: 42px;
  background: linear-gradient(145deg, #2C2E33, #0B0C0F 36%, #303237);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 44px 90px rgba(9, 10, 9, .35), inset 0 0 0 1px rgba(255, 255, 255, .12);
}
.device picture { display: block; }
.device img { width: 100%; height: auto; display: block; border-radius: 33px; }

.hero-phone {
  position: absolute; z-index: 1; left: -10px; top: 46px; width: 236px;
  animation: float-card 8s ease-in-out infinite;
}
.device--hero { transform: rotate(-5deg); }
.hero-phone .free-chip { position: absolute; z-index: 4; top: -14px; left: -18px; right: auto; animation: none; }

.form-card--hero {
  position: relative; z-index: 3;
  width: min(432px, 100%); margin-left: auto;
  padding: 28px 28px 24px;
  background: var(--white); border: 1px solid var(--line); border-left: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lift);
}
.form-card--hero .form-heading h3 { margin: 0 0 6px; font-size: 22px; }
.form-card--hero .form-heading p { margin: 0 0 20px; font-size: 13.5px; }
.form-card--hero .field { margin-bottom: 13px; }
.form-card--hero .field input[type="text"], .form-card--hero .field input[type="email"], .form-card--hero .phone-field { min-height: 48px; }
.form-card--hero .consent-field { font-size: 12px; margin: 4px 0 10px; }
.form-note { margin: 0 0 12px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .05em; color: var(--text-3); }
.form-card--hero .form-security { justify-content: center; text-align: center; }
.field input { font-size: 16px; }
.phone-field input { font-size: 16px; }

/* //01 — scena aplicației */
.app-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.app-layout .chapter-head { margin-bottom: 0; }
.app-feature-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 11px 24px;
  margin: 26px 0 0; padding: 0; list-style: none; max-width: 460px;
}
.app-feature-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); }
.app-feature-list i { width: 7px; height: 7px; flex: none; border-radius: 50%; background: var(--green); }

.app-stage {
  position: relative; display: grid; place-items: center;
  padding: clamp(44px, 5vw, 64px) clamp(26px, 4vw, 56px);
  background: var(--black); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lift);
}
.stage-lines { position: absolute; inset: 6%; width: 88%; height: 88%; overflow: visible; pointer-events: none; }
.stage-lines path {
  fill: none; stroke: rgba(32, 192, 88, .5); stroke-width: 1.4;
  stroke-dasharray: 100; stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.8s var(--ease) .1s;
}
.stage-lines circle { fill: var(--green); stroke: none; opacity: .85; }
.device--stage { position: relative; z-index: 2; width: min(324px, 74%); }

.callouts { display: contents; }
.callout {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-lift);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .03em; color: var(--text);
  animation: float-card 7.5s ease-in-out infinite;
}
.callout i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none; }
.callout--1 { left: 2.5%; top: 21%; }
.callout--2 { right: 1.5%; top: 33%; animation-delay: .9s; }
.callout--3 { right: 3%; bottom: 30%; animation-delay: 1.7s; }
.callout--4 { left: 4%; bottom: 15%; animation-delay: 2.6s; }

/* //02 — cursul cu fotografiile reale */
.curs-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.curs-layout .chapter-head { margin-bottom: 0; }
.chapter-sub--secondary { margin-top: 12px !important; font-size: 15.5px !important; }
.curs-benefits {
  display: grid; grid-template-columns: 1fr 1fr; gap: 11px 22px;
  margin: 24px 0 28px; padding: 0; list-style: none; max-width: 470px;
}
.curs-benefits li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--text); }
.curs-benefits svg { width: 16px; height: 16px; flex: none; color: var(--green); stroke-width: 2.6; }

.duo-media {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); background: #0A0B0A;
  border: 1px solid rgba(255, 255, 255, .08); box-shadow: var(--shadow-lift);
  will-change: transform;
}
.duo-media img { width: 100%; height: auto; display: block; }
.duo-media::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, .38);
}
.duo-caption {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: flex; align-items: center; gap: 9px;
  padding: 9px 15px; border-radius: 999px;
  background: rgba(9, 10, 9, .74); color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
}

.profiles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3.4vw, 44px); margin-top: clamp(52px, 7vw, 92px); }
.profile { margin: 0; }
.profile--offset { margin-top: clamp(26px, 4vw, 66px); }
.profile-photo {
  overflow: hidden; border-radius: var(--r-lg);
  background: var(--black); border: 1px solid var(--line);
  aspect-ratio: 4 / 4.3; box-shadow: var(--shadow-soft);
  will-change: transform;
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 80% 26%; transition: transform .7s var(--ease); }
.profile:hover .profile-photo img { transform: scale(1.025); }
.profile figcaption { padding: 22px 6px 0; }
.profile h3 { font-size: clamp(28px, 3vw, 40px); letter-spacing: -.035em; }
.profile h3 .line { display: inline-block; }

/* Responsive pentru noile componente */
@media (max-width: 1100px) {
  .hero-phone { left: -22px; }
}
@media (max-width: 980px) {
  .hero-layout { grid-template-areas: "copy" "side" "benefits"; row-gap: 34px; }
  .hero-side { flex-direction: column; align-items: center; justify-content: flex-start; min-height: 0; }
  .form-card--hero { order: 1; margin: 0 auto; width: min(480px, 100%); }
  .hero-phone { order: 2; position: static; width: 232px; margin: 30px auto 0; }
  .hero-benefits { max-width: 520px; }
  .app-layout, .curs-layout { grid-template-columns: 1fr; }
  .app-stage { max-width: 560px; margin-inline: auto; }
  .profiles-grid { grid-template-columns: 1fr; }
  .profile--offset { margin-top: 0; }
}
@media (max-width: 720px) {
  .callouts { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 20px; }
  .callout { position: static; animation: none; box-shadow: var(--shadow-soft); }
  .app-stage { display: flex; flex-direction: column; }
  .hero-benefits { grid-template-columns: 1fr; }
  .profile-photo { aspect-ratio: 4 / 4; }
  .profile-photo img { object-position: 76% 24%; }
}
@media (max-width: 480px) {
  .hero-phone { width: 206px; }
  .form-card--hero { padding: 22px 18px 20px; }
  .device { border-radius: 36px; }
  .device img { border-radius: 28px; }
}

/* ═══ v3.2 — Hoody AI + portrete decupate ═══ */
.profile-photo { aspect-ratio: 4 / 4.5; }
.profile-photo img { object-position: 50% 16%; }

.feat-hoody { grid-column: 1 / -1; font-weight: 600; }
.feat-hoody i { background: var(--green); box-shadow: 0 0 0 4px rgba(32,192,88,.14); }

.hoody-note {
  display: flex; gap: 14px; align-items: flex-start;
  margin-top: 22px; padding: 16px 18px; max-width: 470px;
  background: var(--black); border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
}
.hoody-ic {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center;
  border-radius: 50%; background: radial-gradient(circle at 50% 30%, #1F7B21, #0B160C 80%);
  border: 1.5px solid rgba(32, 192, 88, .5);
}
.hoody-ic img { width: 18px; height: 20px; object-fit: contain; }
.hoody-note p { margin: 0; color: rgba(255, 255, 255, .82); font-size: 14px; line-height: 1.55; }
.hoody-note strong { color: #fff; }
.hoody-note small { display: block; margin-top: 6px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .04em; color: var(--dark-muted-2); }

.device--stage { transform: translateX(-9%); }
.device--stage-b {
  position: absolute; z-index: 3; right: 5%; bottom: 7%;
  width: min(198px, 44%); transform: rotate(6deg);
  box-shadow: 0 34px 70px rgba(0, 0, 0, .55);
  animation: float-card 8.5s ease-in-out infinite; animation-delay: 1.1s;
}
.callout--3 { right: auto; left: 3%; bottom: 30%; }
.callout--4 { left: 5%; bottom: 13%; }
.callout--5 { right: 3.5%; bottom: 51%; animation-delay: 2.1s; }

@media (max-width: 980px) {
  .device--stage { transform: none; }
}
@media (max-width: 720px) {
  .device--stage-b { position: static; width: 190px; margin-top: 16px; transform: rotate(0); animation: none; }
}

/* Rail-ul de capitole e gândit pentru ecrane late; sub 1360px se suprapune peste conținut. */
@media (max-width: 1359px) {
  .chapter-rail { display: none !important; }
}

/* ═══ Fix mobil — coloana hero revine la 1fr, stiva de ghiduri primește lățime reală ═══ */
@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; }
  .guides-stack { width: min(320px, 100%); margin-inline: auto; }
}

/* Atributul hidden trebuie să bată orice display din CSS (mesajul de succes stătea vizibil permanent). */
[hidden] { display: none !important; }
