:root {
  --accent: #00c050;
  --accent-bright: #00c050;
  --accent-soft: color-mix(in oklab, var(--accent) 22%, transparent);
  --accent-tint: color-mix(in oklab, var(--accent) 12%, var(--bg, #f4f7f2));
  --accent-tint-strong: color-mix(in oklab, var(--accent) 22%, var(--bg, #f4f7f2));
  --bg: #f4f7f2;
  --bg-2: #ffffff;
  --bg-3: #e8efe5;
  --fg: #15151a;
  --fg-2: #3a3a44;
  --fg-3: #6c6c78;
  --fg-4: #a3a3ad;
  --line: rgba(0,0,0,0.08);
  --line-strong: rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 14px;
  --section-py: clamp(80px, 9vw, 140px);
  --section-head-mb: clamp(48px, 6vw, 80px);
}
:root[data-mode="dark"] {
  --bg: #0c0f0d;
  --bg-2: #131815;
  --bg-3: #1a2019;
  --accent-tint: color-mix(in oklab, var(--accent) 16%, var(--bg));
  --accent-tint-strong: color-mix(in oklab, var(--accent) 24%, var(--bg));
  --fg: #f4f3ef;
  --fg-2: #c8c8d0;
  --fg-3: #9a9aa6;
  --fg-4: #6c6c78;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
  position: relative;
}

/* Decorative background — soft green blobs + dot grid (visible on hero only) */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 700px at -5% -10%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 55%),
    radial-gradient(ellipse 700px 600px at 105% 25%, color-mix(in oklab, var(--accent) 10%, transparent), transparent 60%);
}
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, color-mix(in oklab, var(--fg) 8%, transparent) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.45;
  mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
}
:root[data-mode="dark"] body::after { opacity: 0.3; }

/* ===== Section rhythm — stacking layout with rounded tops ===== */
section, footer { position: relative; background: var(--bg); }
section.hero { background: transparent; }
section:not(.hero):not(#fbt), footer {
  border-radius: 36px 36px 0 0;
  margin-top: -32px;
}
footer { padding-top: 80px; }

/* DARK theme */
section[data-theme="dark"] {
  --bg: #0c0f0d;
  --bg-2: #161b18;
  --bg-3: #1f2520;
  --fg: #f4f5f0;
  --fg-2: #c8ccc4;
  --fg-3: #8e948b;
  --fg-4: #5a605a;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.2);
  --accent-tint: color-mix(in oklab, var(--accent) 18%, var(--bg));
  --accent-tint-strong: color-mix(in oklab, var(--accent) 32%, var(--bg));
  background: var(--bg);
  color: var(--fg);
  overflow: hidden;
}
section[data-theme="dark"]::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none; z-index: 0; border-radius: inherit;
  background:
    radial-gradient(ellipse 800px 500px at 15% 0%, color-mix(in oklab, var(--accent) 22%, transparent), transparent 55%),
    radial-gradient(ellipse 700px 500px at 90% 100%, color-mix(in oklab, var(--accent) 16%, transparent), transparent 55%);
}
section[data-theme="dark"] > * { position: relative; z-index: 1; }

/* GREEN theme — bright bg, dark text, accent flips dark */
section[data-theme="green"] {
  background: var(--accent-bright);
  --bg: var(--accent-bright);
  --bg-2: #ffffff;
  --bg-3: rgba(255,255,255,0.85);
  --fg: #0a1408;
  --fg-2: rgba(10,20,8,0.82);
  --fg-3: rgba(10,20,8,0.62);
  --fg-4: rgba(10,20,8,0.42);
  --line: rgba(0,0,0,0.14);
  --line-strong: rgba(0,0,0,0.32);
  --accent: #082612;
  --accent-soft: rgba(0,0,0,0.18);
  --accent-tint: rgba(255,255,255,0.55);
  --accent-tint-strong: rgba(255,255,255,0.78);
  color: var(--fg);
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* label — ascunse */
.label { display: none !important; }

/* NAV */
.nav {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  /* Lat la început — aproape full width */
  width: calc(100% - 24px);
  max-width: 1500px;
  z-index: 50;
  padding: 12px 20px 12px 10px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid color-mix(in oklab, var(--fg) 8%, transparent);
  border-radius: 999px;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 12px 36px rgba(0,0,0,0.10), inset 0 1px 0 color-mix(in oklab, white 28%, transparent);
  transition:
    max-width .5s cubic-bezier(0.23,1,0.32,1),
    width .5s cubic-bezier(0.23,1,0.32,1),
    background .4s ease,
    box-shadow .4s ease;
}
/* Scrolled — se strânge puțin */
.nav.scrolled {
  width: calc(100% - 80px);
  max-width: 1060px;
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  border-color: color-mix(in oklab, var(--fg) 8%, transparent);
  box-shadow:
    0 2px 8px rgba(0,0,0,0.06),
    0 12px 36px rgba(0,0,0,0.10),
    inset 0 1px 0 color-mix(in oklab, white 28%, transparent);
}

/* Navbar mereu solid — fără stare transparentă */

/* Tranzitii pe link-uri și logo */
.nav__links a { transition: color .25s ease, background .25s ease; }
.nav__logo img { transition: filter .4s ease; }
.nav__cta { transition: transform .22s cubic-bezier(0.23,1,0.32,1), box-shadow .22s cubic-bezier(0.23,1,0.32,1); }

@media (max-width: 860px) {
  .nav { width: calc(100% - 24px); top: 12px; padding: 12px 14px; }
  .nav.scrolled { top: 12px; padding: 8px 12px 8px 10px; }
}
.nav__logo {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 36px; width: auto;
  display: block;
  object-fit: contain;
}
:root[data-mode="dark"] .nav__logo img {
  filter: brightness(0) invert(1) saturate(2) hue-rotate(60deg);
}
.nav__links { display: flex; gap: 4px; font-size: 14.5px; flex: 1; justify-content: center; }
.nav__links a {
  color: var(--fg-3); transition: color .2s, background .2s;
  padding: 6px 14px; border-radius: 999px;
}
.nav__links a:hover { color: var(--fg); background: color-mix(in oklab, var(--fg) 6%, transparent); }
.nav__cta {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  background: var(--fg);
  color: var(--bg);
  border: none;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.14), 0 1px 2px rgba(0,0,0,0.10);
  transition:
    transform .22s cubic-bezier(0.23,1,0.32,1),
    box-shadow .22s cubic-bezier(0.23,1,0.32,1),
    background .22s ease;
}
/* Shimmer interior — efect Apple */
.nav__cta::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, transparent 60%);
  opacity: 1; transition: opacity .22s ease;
}
.nav__cta::after {
  content: '';
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left .55s cubic-bezier(0.23,1,0.32,1);
}
.nav__cta:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 18px rgba(0,0,0,0.22), 0 1px 4px rgba(0,0,0,0.12);
}
.nav__cta:hover::after { left: 140%; }
.nav__cta:active { transform: scale(0.97); box-shadow: 0 1px 4px rgba(0,0,0,0.12); transition-duration: .1s; }
/* ── Nav auth user ── */
#nav-auth, #mobile-auth { display: flex; align-items: center; gap: 8px; }
.nav-user {
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px; padding: 5px 14px 5px 6px; cursor: pointer;
  transition: background .2s;
}
.nav-user:hover { background: rgba(0,0,0,0.09); }
.nav-user__avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: #19c36a; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; overflow: hidden; flex-shrink: 0;
}
.nav-user__avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.nav-user__name { font-size: 13px; font-weight: 500; color: #15151a; max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-dash-btn {
  font-size: 13px; font-weight: 600; color: #19c36a;
  background: transparent; border: 1.5px solid #19c36a; border-radius: 999px;
  padding: 6px 14px; cursor: pointer; transition: background .2s, color .2s;
  text-decoration: none; display: inline-flex; align-items: center;
}
.nav-dash-btn:hover { background: #19c36a; color: #fff; }
.nav-logout-btn {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5);
  background: transparent; border: none; cursor: pointer; padding: 6px 8px;
  transition: color .2s;
}
.nav-logout-btn:hover { color: #f2f2f2; }
/* Mobile auth user */
.mobile-auth-user { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 10px 0; }
.mobile-dash-btn { font-size: 20px; font-weight: 500; color: #19c36a; text-decoration: none; }
.mobile-logout-btn { font-size: 16px; color: rgba(0,0,0,0.4); background: none; border: none; cursor: pointer; }
/* ── Hamburger ── */
.nav__hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px;
  background: transparent; border: none; cursor: pointer; flex-shrink: 0; padding: 0;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--fg); border-radius: 2px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .25s ease;
  transform-origin: center;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Logo și hamburger rămân dark (hero luminos) */

/* ── Mobile menu overlay ── */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  min-height: 100dvh; z-index: 48;
  padding-top: env(safe-area-inset-top, 0px);
  background: color-mix(in oklab, var(--bg) 97%, transparent);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  padding: 24px 0;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-size: clamp(20px, 7dvh, 34px); font-weight: 500; letter-spacing: -0.03em;
  color: var(--fg-2); padding: clamp(4px, 1.2dvh, 10px) 28px; border-radius: 14px;
  transition: color .2s, background .2s;
  transform: translateY(16px); opacity: 0;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s ease, color .2s, background .2s;
}
.mobile-menu.is-open img { opacity: 1 !important; }
.mobile-menu.is-open a { transform: translateY(0); opacity: 1; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: .06s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: .10s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: .14s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: .18s; }
.mobile-menu.is-open a:nth-child(6) { transition-delay: .22s; }
.mobile-menu.is-open a:nth-child(7) { transition-delay: .26s; }
.mobile-menu a:hover { color: var(--accent); background: var(--accent-tint); }
.mobile-menu__cta {
  margin-top: 28px; padding: 14px 36px;
  border-radius: 999px; background: var(--fg); color: var(--bg-2);
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  border: none; cursor: pointer;
  opacity: 0; transform: translateY(16px);
  transition: transform .4s cubic-bezier(.2,.8,.2,1) .28s, opacity .4s ease .28s, background .2s;
}
.mobile-menu.is-open .mobile-menu__cta { opacity: 1; transform: translateY(0); }
.mobile-menu__cta:hover { background: var(--accent); }

.nav-lang-mobile { display: none !important; }
.home-lang-mobile { display: none !important; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  /* Pe mobil: ascunde complet nav-auth din bara de sus */
  #nav-auth { display: none !important; }
  .nav-lang-desktop { display: none !important; }
  .nav-lang-mobile { display: inline-flex !important; }
  .home-lang-desktop { display: none !important; }
  .home-lang-mobile { display: inline-flex !important; }
}

/* ── HERO — cinema design ── */
.hero {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  background: #050708;
  color: #f2f2f2;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050708;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(9,10,11,.92) 0%,
      rgba(9,10,11,.78) 22%,
      rgba(9,10,11,.45) 45%,
      rgba(9,10,11,.20) 65%,
      rgba(9,10,11,.30) 100%),
    linear-gradient(180deg,
      rgba(9,10,11,.65) 0%,
      rgba(9,10,11,.10) 14%,
      rgba(9,10,11,.0)  50%,
      rgba(9,10,11,.55) 88%,
      rgba(9,10,11,.92) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 80%, transparent 100%);
  opacity: .5;
  pointer-events: none;
}
/* ── Content overlay ── */
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 56px 140px;
  gap: 28px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(242,242,242,.65);
}
.he-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: heDotPulse 2.4s ease-in-out infinite;
}
@keyframes heDotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-headline {
  font-size: clamp(56px, 8vw, 132px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .92;
  color: #f2f2f2;
  margin: 0;
  text-wrap: balance;
}
.hh-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: hhIn .9s cubic-bezier(.2,.8,.2,1) forwards;
}
.hh-line:nth-child(1) { animation-delay: .15s; }
.hh-line:nth-child(2) { animation-delay: .28s; }
.hh-line:nth-child(3) { animation-delay: .42s; }
.hh-accent { letter-spacing: -.035em; color: var(--accent); }
@keyframes hhIn { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  margin: 0;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  color: rgba(242,242,242,.60);
  max-width: 480px;
  text-wrap: pretty;
  opacity: 0;
  animation: hhIn .9s cubic-bezier(.2,.8,.2,1) .55s forwards;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hhIn .9s cubic-bezier(.2,.8,.2,1) .68s forwards;
}
.cta-primary, .cta-ghost {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .2s, border-color .2s;
  letter-spacing: -.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
}
.cta-primary {
  background: var(--accent);
  color: #0a0f0c;
  box-shadow: 0 12px 40px color-mix(in oklch, var(--accent) 30%, transparent);
}
.cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 50px color-mix(in oklch, var(--accent) 45%, transparent);
}
.cta-arrow { display: inline-block; transition: transform .25s; }
.cta-primary:hover .cta-arrow { transform: translateX(3px); }
.cta-ghost {
  background: rgba(255,255,255,.06);
  color: #f2f2f2;
  border: 1px solid rgba(255,255,255,.14) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.cta-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22) !important; }

/* ── Marquee ── */
.hero-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, transparent, rgba(9,10,11,.6));
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: #f2f2f2;
  white-space: nowrap;
}
.marquee-sep { color: rgba(242,242,242,.4); font-weight: 400; }
.marquee-item:nth-child(even) .marquee-text { color: var(--accent); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 92px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(242,242,242,.55);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
}
.hs-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, rgba(255,255,255,.4), transparent);
  position: relative;
  overflow: hidden;
}
.hs-line::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, #f2f2f2, transparent);
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(-100%); opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: translateY(220%); opacity: 0; }
}

/* ── Hero responsive ── */
@media (max-width: 1100px) { .hero-content { padding: 60px 40px 120px; } }
@media (max-width: 900px) {
  .hero-content { padding: 60px 24px 120px; gap: 22px; }
  .hero-scroll { display: none; }
  .hero-headline { font-size: clamp(44px, 14vw, 80px); }
}
@media (max-width: 480px) {
  .hero { min-height: 70dvh; }
  .hero-content { padding: 140px 20px 80px; gap: 18px; }
  .hero-headline { font-size: clamp(40px, 16vw, 64px); }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
  .cta-primary, .cta-ghost { justify-content: center; }
}
@media (max-width: 900px) {
  section { scroll-margin-top: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  .hh-line, .hero-sub, .hero-ctas { animation: none; opacity: 1; transform: none; }
}




.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  border: 1px solid var(--line-strong);
  background: var(--bg-2); color: var(--fg);
  transition: all .2s;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn--solid { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--solid:hover { filter: brightness(1.08); color: #fff; border-color: var(--accent); }
.btn .arr { transition: transform .25s; display: inline-block; }
.btn:hover .arr { transform: translateX(3px); }

/* Ticker */
.ticker {
  margin-top: 100px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden; white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track { display: inline-flex; gap: 48px; animation: ticker 80s linear infinite; }
.ticker__item {
  font-size: 15px; color: var(--fg-3);
  display: inline-flex; align-items: center; gap: 20px;
}
.ticker__item .sep { width: 4px; height: 4px; border-radius: 999px; background: var(--accent); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: .08s; }
.reveal--d2 { transition-delay: .16s; }
.reveal--d3 { transition-delay: .24s; }

/* MANIFEST */
.manifest { padding: var(--section-py) 0; border-top: 1px solid var(--line); }
.manifest__grid { display: grid; grid-template-columns: 1fr 2.4fr; gap: 0; align-items: center; }
@media (max-width: 900px) {
  .manifest__grid {
    grid-template-columns: 60px 1fr;
    gap: 0 16px;
    align-items: start;
  }
  .manifest__side {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    align-self: stretch;
  }
  .manifest__side img {
    height: 60px !important;
    width: 60px !important;
    object-fit: contain;
    border-radius: 999px;
    border: 1.5px solid rgba(0,0,0,0.18);
    padding: 8px;
    background: #fff;
    flex-shrink: 0;
  }
  /* Linia care coboară din cerc */
  .manifest__side::after {
    content: '';
    flex: 1;
    width: 1.5px;
    background: rgba(0,0,0,0.45);
    margin-top: 10px;
    border-radius: 2px;
  }
  .manifest__mobile-name {
    display: flex !important;
    align-items: center;
    height: 60px;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0a0a0a;
    margin-bottom: 14px;
  }
  .manifest__quote {
    border-left: none !important;
    padding-left: 0 !important;
    padding-top: 4px;
    font-size: clamp(22px, 6.5vw, 34px);
  }
}
.manifest__side p { color: var(--fg-3); font-size: 15px; max-width: 280px; margin-top: 24px; }
.manifest__sign { display: flex; align-items: center; gap: 12px; margin-top: 40px; }
.manifest__avatar { width: 40px; height: 40px; border-radius: 999px; background: var(--accent-tint); border: 1px solid var(--line); }
.manifest__sign b { font-weight: 500; font-size: 14px; display: block; }
.manifest__sign span { font-size: 12px; color: var(--fg-4); }

.manifest__quote {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--fg-2); text-wrap: balance;
  border-left: 1.5px solid rgba(0,0,0,0.45);
  padding-left: 80px;
}
.manifest__mobile-name { display: none; }
.manifest__quote strong { color: var(--fg); font-weight: 500; }
.manifest__quote .hi { position: relative; color: var(--fg); font-weight: 500; }
.manifest__quote .hi::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 8px;
  background: var(--accent); opacity: 0.32;
  transform: scaleX(0); transform-origin: left;
  transition: transform .8s cubic-bezier(.2,.8,.2,1) .4s;
  z-index: -1;
}
.manifest__quote.in .hi::after { transform: scaleX(1); }

/* PENTRU CINE (two roles) */
.roles { padding: var(--section-py) 0; border-top: 1px solid var(--line); }
.roles__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 64px; flex-wrap: wrap; gap: 20px; }
.roles__head h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500; letter-spacing: -0.025em; line-height: 1.05;
  max-width: 620px; text-wrap: balance;
}
.roles__head h2 .accent { color: var(--accent); }
.roles__head p { max-width: 320px; color: var(--fg-3); font-size: 15px; }

.roles__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 900px) { .roles__grid { grid-template-columns: 1fr; } }

/* ===== ROLE CARDS ===== */
.role-card {
  border-radius: 22px;
  padding: 44px 44px 40px;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}

/* Player card — light */
.role-card--player {
  background:
    radial-gradient(120% 80% at 100% 100%, rgba(25,195,106,0.10) 0%, rgba(25,195,106,0) 60%),
    linear-gradient(180deg, #f6faf5 0%, #f3f7f1 100%);
  border: 1px solid #dfe7df;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 30px 60px -40px rgba(20,40,30,0.18);
  color: #1a2e22;
}
.role-card--player:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 40px 80px -40px rgba(20,40,30,0.26);
}

/* Scouter card — dark */
.role-card--scouter {
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(25,195,106,0.12) 0%, rgba(25,195,106,0) 55%),
    radial-gradient(70% 50% at 0% 100%, rgba(25,195,106,0.06) 0%, rgba(25,195,106,0) 60%),
    linear-gradient(180deg, #16191f 0%, #101216 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -40px rgba(0,0,0,0.55);
  color: #e7e9ec;
}
.role-card--scouter:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 40px 80px -40px rgba(0,0,0,0.68);
}

/* Decoration layer */
.role-card__deco {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; border-radius: 22px;
}

/* Pill tag */
.role-card__tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 28px;
}
.role-card--player .role-card__tag {
  background: rgba(25,195,106,0.12);
  border: 1px solid rgba(25,195,106,0.28);
  color: #167a3a;
}
.role-card--scouter .role-card__tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(231,233,236,0.88);
}

/* Body */
.role-card__body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; flex: 1;
}

/* Title */
.role-card h3 {
  font-size: 30px; font-weight: 500; letter-spacing: -0.028em; line-height: 1.12;
  margin-bottom: 14px;
}
.role-card--player h3 { color: #17271e; }
.role-card--scouter h3 { color: #f0f2f5; }

/* Description */
.role-card p {
  font-size: 15px; line-height: 1.62;
}
.role-card--player p { color: #4a6054; }
.role-card--scouter p { color: rgba(231,233,236,0.60); }

/* Divider */
.role-card__divider {
  border: none; border-top: 1px solid; margin: 26px 0;
}
.role-card--player .role-card__divider { border-color: rgba(25,195,106,0.18); }
.role-card--scouter .role-card__divider { border-color: rgba(255,255,255,0.08); }

/* Checklist */
.role-card__checks {
  list-style: none; display: flex; flex-direction: column; gap: 11px;
  margin-bottom: 36px; flex: 1;
}
.role-card__checks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; line-height: 1.45;
}
.role-card--player .role-card__checks li { color: #3a5044; }
.role-card--scouter .role-card__checks li { color: rgba(231,233,236,0.74); }

/* Check icon */
.role-card__check {
  flex: 0 0 18px; width: 18px; height: 18px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.role-card--player .role-card__check { background: rgba(25,195,106,0.15); color: #19c36a; }
.role-card--scouter .role-card__check { background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.65); }

/* CTA */
.role-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; text-decoration: none;
}
.role-card--player .role-card__cta { color: #19a355; }
.role-card--scouter .role-card__cta { color: rgba(25,195,106,0.88); }
.role-card__cta:hover .arr { transform: translateX(4px); }
.role-card__cta .arr { transition: transform .25s; display: inline-block; }

/* ===== BENTO (features) ===== */
.bento { padding: var(--section-py) 0; overflow: visible; }
.bento__head { text-align: center; margin-bottom: var(--section-head-mb); max-width: 720px; margin-left: auto; margin-right: auto; padding: 0 24px; }
.bento__head h2 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 500; line-height: 0.98; letter-spacing: -0.03em;
  margin-top: 20px; margin-bottom: 16px;
  text-wrap: balance;
}
.bento__head h2 .accent { color: var(--accent); }
.bento__head p { color: var(--fg-3); font-size: 17px; max-width: 540px; margin: 0 auto; }

/* ── Horizontal marquee ── */
.bento__scroll-wrap {
  position: relative;
  overflow: hidden;
  padding: 56px 0 100px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.bento__track {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: stretch;
  will-change: transform;
}

/* ── Card base ── */
.bento-card {
  flex-shrink: 0;
  width: 360px;
  height: 520px;
  border-radius: 24px;
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.05);
  background: var(--bg-2);
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.6s ease, box-shadow 0.4s ease;
}
.bento-card.is-visible { opacity: 1; }

/* hover */
.bento-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,192,80,0.18);
}
/* ambient glow spot on hover */
.bento-card::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,192,80,0.10) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }

/* dark variant */
.bento-card--dark {
  background: #0c0f0d; color: #f4f5f0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  --fg-3: #9aa19a; --line: rgba(255,255,255,0.1); --bg-3: #1f2520; --bg: #0c0f0d;
}
.bento-card--dark:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,192,80,0.25);
}

/* green variant */
.bento-card--green {
  background: var(--accent-bright); color: #0a1408;
  box-shadow: 0 2px 12px rgba(0,192,80,0.2);
  --fg-3: rgba(10,20,8,0.6);
}
.bento-card--green:hover {
  box-shadow: 0 20px 60px rgba(0,192,80,0.3);
}
.bento-card--green::before { display: none; }

/* all card children above glow layer */
.bento-card > * { position: relative; z-index: 1; }

/* typography */
.bento-card h3 {
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.022em; line-height: 1.12;
  margin-bottom: 8px; text-wrap: balance;
}
.bento-card p { color: var(--fg-3); font-size: 14px; line-height: 1.55; }
.bento-card__visual {
  margin-top: auto; padding-top: 24px;
}

.bento__scroll-wrap { position: relative; z-index: 1; }

/* ── MOBILE: swipe manual, fara marquee ── */
@media (max-width: 768px) {
  .bento__scroll-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    padding: 36px 0 72px;
  }
  .bento__track {
    animation: none !important;
    padding-left: 24px;
    padding-right: 24px;
    gap: 16px;
  }
  .bento-card {
    scroll-snap-align: center;
    width: calc(100vw - 64px);
    max-width: 380px;
    height: 420px;
    padding: 26px;
  }
  .bento-card h3 { font-size: 20px; }
  .bento-card p  { font-size: 13.5px; }
  .bento-card[aria-hidden="true"] { display: none; }
}

/* Bento Visuals */
.viz-cab { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.viz-cab__hd { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.viz-cab__photo { width: 44px; height: 44px; border-radius: 10px; background: repeating-linear-gradient(135deg, transparent 0, transparent 6px, color-mix(in oklab, var(--fg) 6%, transparent) 6px, color-mix(in oklab, var(--fg) 6%, transparent) 7px), var(--bg-3); flex-shrink: 0; }
.viz-cab__id { flex: 1; min-width: 0; }
.viz-cab__id b { display: block; font-size: 14px; font-weight: 500; }
.viz-cab__id span { font-size: 11px; color: var(--fg-3); }
.viz-cab__badge { width: 26px; height: 26px; border-radius: 999px; background: var(--accent-bright); color: #0a1408; display: grid; place-items: center; font-size: 13px; font-weight: 600; flex-shrink: 0; }
.viz-cab__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding-top: 12px; border-top: 1px solid var(--line); }
.viz-cab__stats > div { display: flex; flex-direction: column; }
.viz-cab__stats b { font-size: 19px; font-weight: 500; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.viz-cab__stats span { font-size: 10px; color: var(--fg-4); }
.viz-cab__skills { display: flex; flex-direction: column; gap: 5px; padding-top: 10px; border-top: 1px solid var(--line); margin-top: 2px; }
.viz-cab__skill { display: flex; align-items: center; gap: 8px; }
.viz-cab__skill-label { font-size: 10px; color: var(--fg-4); width: 64px; flex-shrink: 0; }
.viz-cab__skill-bar { flex: 1; height: 3px; background: rgba(0,192,80,0.18); border-radius: 2px; overflow: hidden; }
.viz-cab__skill-fill { height: 100%; background: var(--accent-bright); border-radius: 2px; }
.viz-cab__skill-val { font-size: 10px; font-weight: 600; color: var(--accent-bright); width: 18px; text-align: right; flex-shrink: 0; font-variant-numeric: tabular-nums; }

/* Green card */
.bento-card--green {
  background: var(--accent-bright);
  color: #0a1408;
  box-shadow: 0 2px 12px rgba(0,192,80,0.2);
  --fg-3: rgba(10,20,8,0.6);
}
.bento-card--green:hover {
  box-shadow: 0 20px 60px rgba(0,192,80,0.3);
}
.bento-card--green::before { display: none; }

/* Green card — decorative rings background */
.viz-rings {
  position: absolute; inset: 0; pointer-events: none;
  z-index: 0; border-radius: inherit; overflow: hidden;
}
/* Rânduri verificare */
.viz-rows { display: flex; flex-direction: column; gap: 8px; width: 100%; position: relative; z-index: 1; }
.viz-row {
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.13);
  border-radius: 12px; padding: 10px 12px;
}
.viz-row__ico {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(0,0,0,0.12);
  display: grid; place-items: center; flex-shrink: 0;
}
.viz-row__ico svg { width: 16px; height: 16px; color: rgba(10,20,8,0.8); }
.viz-row__name { font-size: 13px; font-weight: 600; color: #0a1408; flex: 1; }
.viz-row__badge {
  display: flex; align-items: center; gap: 4px;
  background: #0a1408; color: #00c050;
  font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.viz-row__badge svg { width: 9px; height: 9px; }

/* Contact method rows */
.viz-contact { display: flex; flex-direction: column; gap: 7px; width: 100%; }
.viz-contact__row { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border: 1px solid var(--line); border-radius: 10px; }
.viz-contact__icon { width: 30px; height: 30px; border-radius: 8px; background: var(--accent-tint); display: grid; place-items: center; flex-shrink: 0; }
.viz-contact__icon svg { width: 14px; height: 14px; color: var(--accent); }
.viz-contact__info b { display: block; font-size: 12px; font-weight: 500; line-height: 1.2; }
.viz-contact__info span { font-size: 10px; color: var(--fg-3); }

.viz-chart { display: flex; align-items: flex-end; gap: 6px; height: 100px; overflow: visible; }
.viz-chart .bar {
  flex: 1; background: var(--accent-bright); border-radius: 4px 4px 0 0; min-height: 6px;
  transform-origin: bottom;
  animation: barA 2.8s ease-in-out infinite;
}
.viz-chart .bar:nth-child(odd) { background: color-mix(in oklab, var(--accent-bright) 60%, transparent); }
.viz-chart .bar:nth-child(1) { animation: barA 3.1s ease-in-out infinite; animation-delay: 0s; }
.viz-chart .bar:nth-child(2) { animation: barB 2.6s ease-in-out infinite; animation-delay: 0.3s; }
.viz-chart .bar:nth-child(3) { animation: barC 3.4s ease-in-out infinite; animation-delay: 0.7s; }
.viz-chart .bar:nth-child(4) { animation: barD 2.9s ease-in-out infinite; animation-delay: 0.1s; }
.viz-chart .bar:nth-child(5) { animation: barB 2.4s ease-in-out infinite; animation-delay: 1.0s; }
.viz-chart .bar:nth-child(6) { animation: barE 3.2s ease-in-out infinite; animation-delay: 0.5s; }
.viz-chart .bar:nth-child(7) { animation: barA 2.7s ease-in-out infinite; animation-delay: 1.3s; }
.viz-chart .bar:nth-child(8) { animation: barC 3.0s ease-in-out infinite; animation-delay: 0.8s; }

@keyframes barA { 0%,100%{transform:scaleY(1)}   45%{transform:scaleY(.42)} }
@keyframes barB { 0%,100%{transform:scaleY(.65)}  40%{transform:scaleY(1.3)} }
@keyframes barC { 0%,100%{transform:scaleY(1)}    28%{transform:scaleY(.38)} 68%{transform:scaleY(1.25)} }
@keyframes barD { 0%,100%{transform:scaleY(.75)}  55%{transform:scaleY(1.35)} }
@keyframes barE { 0%,100%{transform:scaleY(1.1)}  20%{transform:scaleY(1.4)}  65%{transform:scaleY(.45)} }

.viz-check { display: grid; place-items: center; height: 80px; }
.viz-check svg { width: 56px; height: 56px; color: #0a1408; }

.viz-chat { display: flex; flex-direction: column; gap: 8px; }
.bubble { padding: 9px 13px; border-radius: 14px; font-size: 12.5px; line-height: 1.35; max-width: 85%; }
.bubble--in { background: var(--bg-3); border-bottom-left-radius: 3px; align-self: flex-start; }
.bubble--out { background: var(--accent-bright); color: #0a1408; border-bottom-right-radius: 3px; align-self: flex-end; }

.viz-list { display: flex; flex-direction: column; gap: 6px; }
.viz-list .row { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 10px; }
.viz-list .ph { width: 28px; height: 28px; border-radius: 6px; background: var(--bg-3); border: 1px solid var(--line); }
.viz-list .row > div b { display: block; font-size: 12px; font-weight: 500; line-height: 1.2; }
.viz-list .row > div span { font-size: 10px; color: var(--fg-3); }
.viz-list .pct { font-size: 11px; font-weight: 500; color: var(--accent-bright); font-variant-numeric: tabular-nums; }
.bento-card--dark .viz-list .row { border-color: rgba(255,255,255,0.1); }

.viz-devices { display: flex; align-items: flex-end; justify-content: center; gap: 18px; height: 90px; }
.viz-devices .phone { width: 32px; height: 60px; border-radius: 6px; border: 1.5px solid currentColor; position: relative; opacity: 0.9; }
.viz-devices .phone::after { content: ""; position: absolute; left: 50%; top: 4px; transform: translateX(-50%); width: 8px; height: 2px; background: currentColor; border-radius: 1px; }
.viz-devices .laptop { width: 76px; height: 50px; border-radius: 5px 5px 1px 1px; border: 1.5px solid currentColor; position: relative; opacity: 0.9; }
.viz-devices .laptop::after { content: ""; position: absolute; left: -10px; right: -10px; bottom: -3px; height: 3px; background: currentColor; border-radius: 2px; }

/* CABINET PREVIEW */
.preview {
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  background: #ffffff;
  position: relative;
}
.preview > .container { position: relative; z-index: 1; }

/* ── Animated background shapes ── */
.preview__bg {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.pv-shape {
  position: absolute;
  background: #0f0f14;
  will-change: transform;
}
/* ── Floating balls ── */
.pv-ball { position: absolute; border-radius: 999px; }
.pv-b1 { width: 16px; height: 16px; background: rgba(15,15,20,0.18); top: 14%; left: 7%;  animation: bF1 11s ease-in-out infinite; }
.pv-b2 { width: 24px; height: 24px; border: 2px solid rgba(15,15,20,0.2); background: transparent; top: 68%; right: 9%;  animation: bF2 16s ease-in-out infinite; }
.pv-b3 { width: 11px; height: 11px; background: rgba(15,15,20,0.22); top: 42%; left: 2%;  animation: bF3 8s  ease-in-out infinite; }
.pv-b4 { width: 32px; height: 32px; background: rgba(15,15,20,0.1);  top: 18%; right: 3%; animation: bF4 19s ease-in-out infinite; }
.pv-b5 { width: 20px; height: 20px; border: 2px solid rgba(15,15,20,0.18); background: transparent; bottom: 22%; left: 14%; animation: bF5 13s ease-in-out infinite; }
.pv-b6 { width: 14px; height: 14px; background: rgba(15,15,20,0.16); bottom: 8%;  right: 22%; animation: bF1 9s  ease-in-out infinite reverse; }
.pv-b7 { width: 40px; height: 40px; border: 2px solid rgba(15,15,20,0.12); background: transparent; top: 55%; left: 35%; animation: bF2 24s ease-in-out infinite reverse; }
.pv-b8 { width: 10px; height: 10px; background: rgba(15,15,20,0.2); top: 30%; right: 20%; animation: bF3 7s  ease-in-out infinite; }
/* Large bg depth circles */
.pv-bg1 { position: absolute; width: 480px; height: 480px; border-radius: 999px; background: rgba(15,15,20,0.028); top: 50%; right: -140px; transform: translateY(-50%); animation: bgPulse 46s ease-in-out infinite; }
.pv-bg2 { position: absolute; width: 320px; height: 320px; border-radius: 999px; background: rgba(15,15,20,0.032); bottom: -90px; left: -90px; animation: bgDrift 38s ease-in-out infinite; }


@keyframes bF1 {
  0%,100% { transform: translate(0,0); }
  30% { transform: translate(20px,-28px); }
  65% { transform: translate(-14px,18px); }
}
@keyframes bF2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40% { transform: translate(-24px,-20px) scale(1.12); }
  72% { transform: translate(16px,12px) scale(0.9); }
}
@keyframes bF3 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(26px,32px); }
}
@keyframes bF4 {
  0%,100% { transform: translate(0,0) scale(1); }
  25% { transform: translate(-32px,22px) scale(1.08); }
  75% { transform: translate(22px,-28px) scale(0.94); }
}
@keyframes bF5 {
  0%,100% { transform: translate(0,0); }
  35% { transform: translate(22px,-34px); }
  70% { transform: translate(-16px,18px); }
}
@keyframes bgPulse {
  0%,100% { transform: translateY(-50%) scale(1);    opacity: 0.028; }
  50%      { transform: translateY(-50%) scale(1.18); opacity: 0.012; }
}
@keyframes bgDrift {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(28px,-18px); }
}

.preview__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.preview__head h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500; letter-spacing: -0.025em; line-height: 1.05;
  max-width: 700px; text-wrap: balance;
  animation: headFloat 7s ease-in-out infinite;
}
@keyframes headFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-6px); }
}
.preview__head h2 .accent { color: var(--accent); }
.preview__head p { color: var(--fg-3); font-size: 15px; max-width: 320px; }

.preview__tabs { display: inline-flex; gap: 4px; padding: 4px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 32px; }
.preview__tabs button {
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  background: transparent; border: 0; color: var(--fg-3);
  transition: all .25s;
}
.preview__tabs button.active { background: var(--fg); color: var(--bg); }

/* ── Laptop mockup — 90° MacBook on desk ── */
/* Scene wrapper — orbit SVG lives here, outside laptop-wrap to avoid clipping */
.laptop-scene {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 0;
}


.laptop-wrap {
  position: relative;
}

/* SCREEN — faces the viewer, slight shadow underneath */
.laptop-lid-section {
  position: relative;
  filter:
    drop-shadow(0 2px 6px rgba(0,0,0,0.18))
    drop-shadow(0 18px 48px rgba(0,0,0,0.28));
}

/* LAPTOP BODY EDGE — wider than the screen, like real MacBook base */
.laptop-base-section {
  margin-left: -48px;
  margin-right: -48px;
}

/* Chin: visible aluminum body strip — slim, wide */
.laptop-chin {
  height: 22px;
  background: linear-gradient(180deg, #333735 0%, #2a2d2b 60%, #252826 100%);
  border-radius: 0 0 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 32px rgba(0,0,0,0.45),
    0 28px 70px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.3);
}
/* Hinge mechanism slot in center — where the lid opens */
.laptop-hinge-slot {
  width: 96px; height: 7px;
  background: linear-gradient(180deg, #111411 0%, #1a1d1a 100%);
  border-radius: 4px;
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.7),
    0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}
/* Rubber feet */
.laptop-chin::before,
.laptop-chin::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 62px; height: 5px;
  background: #0f120f;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.laptop-chin::before { left: 48px; }
.laptop-chin::after  { right: 48px; }

/* LID outer shell */
.laptop-lid {
  background: linear-gradient(165deg, #3c4039 0%, #2c302d 40%, #252826 100%);
  border-radius: 22px 22px 6px 6px;
  padding: 4px 4px 0;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(0,0,0,0.3),
    inset 1px 0 0 rgba(255,255,255,0.06),
    inset -1px 0 0 rgba(255,255,255,0.06);
}

/* Inner bezel (dark frame around screen) */
.laptop-bezel {
  background: #141714;
  border-radius: 19px 19px 4px 4px;
  padding: 22px 14px 28px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* Camera bar */
.laptop-cam-bar {
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 5px;
}
.laptop-cam {
  width: 9px; height: 9px; border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #3a4040, #1e2220);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.laptop-cam::before {
  content: ""; position: absolute;
  top: 2px; left: 2px; width: 3px; height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}
.laptop-cam-led {
  width: 4px; height: 4px; border-radius: 999px;
  background: #00c050;
  box-shadow: 0 0 5px 1px rgba(0,192,80,0.6);
  opacity: 0.85;
}

/* Screen */
.laptop-display {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  /* Force light theme inside the screen */
  --bg: #f4f7f2;
  --bg-2: #ffffff;
  --bg-3: #e8efe5;
  --fg: #15151a;
  --fg-2: #3a3a44;
  --fg-3: #6c6c78;
  --fg-4: #a3a3ad;
  --line: rgba(0,0,0,0.08);
  --line-strong: rgba(0,0,0,0.18);
  --accent: #00c050;
  --accent-bright: #00c050;
  --accent-soft: rgba(0,192,80,0.22);
  --accent-tint: rgba(0,192,80,0.1);
  --accent-tint-strong: rgba(0,192,80,0.18);
  background: var(--bg-2);
}

/* Glare — subtle specular shine */
.laptop-glare {
  position: absolute; inset: 0; pointer-events: none; z-index: 100;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09) 0%, transparent 42%),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 0%, transparent 25%);
  border-radius: inherit;
}

/* Cabinet inside screen */
.laptop-display .cabinet {
  height: 100%; min-height: 0;
  grid-template-columns: 190px 1fr;
  border-radius: 0; border: none; box-shadow: none;
}
.laptop-display .cab-main { overflow: hidden; }
.laptop-display .cab-video { height: 100px; }

/* Cabinets stay structurally as before (no absolute stack) */

/* ── Screen cursor ── */
.screen-cursor {
  position: absolute; width: 16px; height: 20px;
  pointer-events: none; z-index: 50; opacity: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.55));
  transition: opacity 180ms ease;
}

/* ── Pages inside cab-main ── */
.laptop-display .cab-main { min-height: 0; min-width: 0; }
.cab-page {
  display: none;
  flex-direction: column; gap: 18px;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
}
.cab-page.is-active {
  display: flex;
  animation: pageIn 320ms cubic-bezier(0.23,1,0.32,1);
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Highlights grid */
.hl-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.hl-tile {
  aspect-ratio: 16/10; border-radius: 8px;
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 6px, rgba(0,0,0,0.04) 6px, rgba(0,0,0,0.04) 7px),
    linear-gradient(135deg, #d4ddd0 0%, #b9c5b3 100%);
  border: 1px solid var(--line); position: relative;
  display: flex; align-items: flex-end; padding: 6px 8px;
  overflow: hidden;
}
.hl-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 26px; height: 26px; border-radius: 999px;
  background: rgba(255,255,255,0.92); border: 1px solid rgba(0,0,0,0.15);
}
.hl-play::after {
  content: ''; position: absolute; top: 50%; left: 56%; transform: translate(-50%,-50%);
  border-left: 8px solid var(--accent); border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}
.hl-meta { font-size: 10px; color: #2a3a26; background: rgba(255,255,255,0.85); padding: 2px 6px; border-radius: 4px; font-weight: 500; }

/* Statistici chart */
.stat-chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 120px; padding: 8px 4px 22px;
  border-bottom: 1px solid var(--line); position: relative;
}
.stat-bar {
  flex: 1; height: var(--h, 40%); border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 35%, transparent), color-mix(in oklab, var(--accent) 18%, transparent));
  position: relative; transition: opacity 0.3s ease;
}
.stat-bar--up {
  background: linear-gradient(180deg, var(--accent), color-mix(in oklab, var(--accent) 55%, transparent));
}
.stat-bar span {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  font-size: 10px; color: var(--fg-4);
}

/* Mesaje */
.msg-list { display: flex; flex-direction: column; gap: 6px; }
.msg-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--bg-2);
  position: relative;
}
.msg-row--unread { background: color-mix(in oklab, var(--accent) 5%, var(--bg-2)); }
.msg-avatar {
  width: 32px; height: 32px; border-radius: 999px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #fff;
}
.msg-body { flex: 1; min-width: 0; }
.msg-head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.msg-head b { font-size: 12.5px; color: var(--fg); }
.msg-head span { font-size: 10px; color: var(--fg-4); }
.msg-body p { font-size: 11.5px; color: var(--fg-3); margin: 2px 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.msg-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); flex-shrink: 0; }

/* Setări */
.set-field {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--line);
}
.set-field label { font-size: 12px; color: var(--fg-3); }
.set-input { font-size: 12.5px; color: var(--fg); font-weight: 500; }
.set-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.set-toggle span { font-size: 12px; color: var(--fg-2); }
.set-switch {
  width: 32px; height: 18px; border-radius: 999px;
  background: rgba(0,0,0,0.12); position: relative; transition: background 0.2s ease;
}
.set-switch i {
  position: absolute; top: 2px; left: 2px;
  width: 14px; height: 14px; border-radius: 999px; background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: left 0.2s ease;
}
.set-switch--on { background: var(--accent); }
.set-switch--on i { left: 16px; }

/* ── Laptop stage (positioning context for side arrow keys) ── */
.laptop-stage {
  position: relative;
}

/* ── Apple MacBook Pro dark keys (bigger, more distant, with attention pulse) ── */
.kbd-key {
  width: 76px;
  height: 76px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
/* High-specificity rule to ensure side positioning wins */
.kbd-key.kbd-key--side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
/* 480 (half laptop) + 76 (key width) + 100 (gap) = 656px from center */
.kbd-key.kbd-key--side#kbdLeft   { left:  max(16px, calc(50% - 656px)); }
.kbd-key.kbd-key--side#kbdRight  { right: max(16px, calc(50% - 656px)); }

/* Pulse halo — 2 expanding green rings (infinite "press me" signal) */
.kbd-key::before,
.kbd-key::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid var(--accent);
  opacity: 0;
  pointer-events: none;
  animation: kbdHalo 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.kbd-key::after { animation-delay: 1.3s; }
@keyframes kbdHalo {
  0%   { transform: scale(0.94); opacity: 0; }
  18%  { opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0; }
}

.kbd-key__cap {
  position: absolute;
  inset: 0;
  background:
    /* concave scoop — soft highlight near upper-center */
    radial-gradient(ellipse 75% 55% at 50% 22%, rgba(255,255,255,0.07) 0%, transparent 70%),
    /* subtle vertical bevels on left/right edges (light catches the chiclet rim) */
    linear-gradient(90deg,
      rgba(255,255,255,0.05) 0%,
      transparent 9%,
      transparent 91%,
      rgba(255,255,255,0.05) 100%),
    /* main key body — 3-stop dark grey gradient */
    linear-gradient(180deg,
      #3e3e40 0%,
      #2f2f31 48%,
      #1f1f21 100%);
  border-radius: 14px;
  box-shadow:
    /* top inner highlight (catches light) */
    inset 0 1px 0 rgba(255,255,255,0.18),
    /* bottom inner shadow (subtle depth) */
    inset 0 -1px 0 rgba(0,0,0,0.4),
    /* hairline edges — dark groove all around */
    inset 0 0 0 0.5px rgba(0,0,0,0.75),
    inset 0 0 0 1px rgba(255,255,255,0.04),
    /* layered base ledges for chunky 3D */
    0 2px 0 #141416,
    0 4px 0 #0c0c0e,
    0 6px 0 #050506,
    /* ambient drop shadow */
    0 14px 28px rgba(0,0,0,0.42),
    0 4px 10px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: bottom center;
  transition:
    transform 90ms cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow 90ms ease-out;
  /* Demo "auto-tap" — shows user the keys can be pressed */
  animation: kbdDemoTap 4.2s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}
.kbd-key__cap svg {
  color: #f5f5f7;
  opacity: 0.92;
  /* subtle text-shadow effect via filter */
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.4));
}
.kbd-key.pressed .kbd-key__cap,
.kbd-key:active   .kbd-key__cap {
  transform: translateY(6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    inset 0 0 0 0.5px rgba(0,0,0,0.75),
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 0.5px 0 #141416,
    0 1px 0 #0c0c0e,
    0 1.5px 0 #050506,
    0 5px 10px rgba(0,0,0,0.35),
    0 1.5px 4px rgba(0,0,0,0.2);
}
/* Demo auto-tap: subtle press-and-release every cycle */
@keyframes kbdDemoTap {
  0%, 78%, 100% { transform: translateY(0); }
  84%           { transform: translateY(5px); }
  90%           { transform: translateY(0); }
}
/* When user interacts, kill all idle animations */
.kbd-key.kbd-key--engaged::before,
.kbd-key.kbd-key--engaged::after { animation: none; opacity: 0; }
.kbd-key.kbd-key--engaged .kbd-key__cap { animation: none; }

.kbd-nav__hint {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--fg-3);
}
.kbd-nav__hint b {
  display: inline-block;
  padding: 3px 9px;
  margin: 0 3px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 25%, rgba(255,255,255,0.06) 0%, transparent 70%),
    linear-gradient(180deg, #3e3e40 0%, #2a2a2c 50%, #1f1f21 100%);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 -1px 0 rgba(0,0,0,0.35),
    inset 0 0 0 0.5px rgba(0,0,0,0.7),
    0 1px 0 #141416,
    0 2px 5px rgba(0,0,0,0.22);
  font-weight: 700;
  color: #f5f5f7;
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

/* Cursor "click" pulse on nav item */
.cab-side__nav li.is-clicking {
  animation: navClick 280ms ease-out;
}
@keyframes navClick {
  0%   { transform: scale(1); background: var(--accent-tint); }
  40%  { transform: scale(0.96); background: color-mix(in oklab, var(--accent) 28%, transparent); }
  100% { transform: scale(1); }
}

/* Below ~1220px: not enough room for side arrows → drop them in a row below */
@media (max-width: 1220px) {
  .laptop-stage { padding-bottom: 104px; }
  .kbd-key.kbd-key--side {
    top: auto;
    bottom: 0;
    transform: none;
  }
  .kbd-key.kbd-key--side#kbdLeft   { left: calc(50% - 86px); right: auto; }
  .kbd-key.kbd-key--side#kbdRight  { left: calc(50% + 12px); right: auto; }
}
@media (max-width: 600px) {
  .kbd-key { width: 64px; height: 64px; }
  .kbd-key.kbd-key--side#kbdLeft   { left: calc(50% - 74px); }
  .kbd-key.kbd-key--side#kbdRight  { left: calc(50% + 10px); }
}

/* HINGE */
.laptop-hinge {
  height: 9px;
  background: linear-gradient(90deg,
    #141614 0%, #202420 4%,
    #363a36 10%, #464a45 20%,
    #52564f 30%, #5a5e57 40%,
    #5e6259 50%, #5a5e57 60%,
    #52564f 70%, #464a45 80%,
    #363a36 90%, #202420 96%,
    #141614 100%
  );
  position: relative;
}
/* Hinge screws */
.laptop-hinge::before, .laptop-hinge::after {
  content: "";
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #5e625b, #2e322e);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}
.laptop-hinge::before { left: 40px; }
.laptop-hinge::after { right: 40px; }

/* BASE — palm rest + keyboard */
.laptop-base {
  background: linear-gradient(180deg,
    #393d3a 0%, #333735 30%,
    #2e3230 70%, #2a2d2b 100%
  );
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  padding: 20px 48px 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    inset 0 -2px 0 rgba(0,0,0,0.25);
}

/* Keyboard area — flat, clean */
.laptop-keyboard-area {
  height: 86px;
  border-radius: 6px;
  background: #272b28;
  margin-bottom: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    inset 0 -1px 0 rgba(0,0,0,0.35);
}

/* Trackpad */
.laptop-trackpad-area {
  display: flex; justify-content: center;
  padding-bottom: 22px;
}
.laptop-trackpad {
  width: 240px; height: 58px;
  background: linear-gradient(180deg, #262a27 0%, #222522 100%);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.4);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.2);
}

/* Bottom rim / foot */
.laptop-foot {
  height: 5px;
  background: linear-gradient(180deg, #1c1f1d 0%, #141614 100%);
  border-radius: 0 0 20px 20px;
  margin: 0 8px;
}

.cabinet {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: grid; grid-template-columns: 220px 1fr;
  min-height: 580px;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.18);
  transition: opacity .3s, transform .4s;
}
@media (max-width: 800px) { .cabinet { grid-template-columns: 1fr; } }
.cabinet[hidden] { display: none; }

.cab-side { padding: 24px; border-right: 1px solid var(--line); background: var(--bg); display: flex; flex-direction: column; }
@media (max-width: 800px) { .cab-side { border-right: 0; border-bottom: 1px solid var(--line); } }
.cab-side__brand { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; margin-bottom: 28px; }
.cab-side__brand .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }
.cab-side__nav { list-style: none; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.cab-side__nav li {
  font-size: 13px; padding: 8px 10px; border-radius: 6px;
  display: flex; align-items: center; gap: 10px; color: var(--fg-3);
}
.cab-side__nav li svg { color: var(--fg-4); flex: 0 0 14px; }
.cab-side__nav li.active { background: var(--accent-tint); color: var(--accent); font-weight: 500; }
.cab-side__nav li.active svg { color: var(--accent); }
.cab-side__plan {
  padding: 12px; border-radius: 10px; background: var(--bg-2); border: 1px solid var(--line);
  font-size: 12px; color: var(--fg-3);
}
.cab-side__plan b { color: var(--fg); display: block; font-size: 13px; margin-bottom: 2px; }
.cab-side__plan .green { color: var(--accent); font-weight: 500; }

.cab-main { padding: 32px; display: flex; flex-direction: column; gap: 24px; }
.cab-main__top { display: flex; gap: 24px; align-items: flex-start; }
.cab-photo {
  width: 120px; height: 140px;
  border-radius: 12px; flex: 0 0 120px;
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 8px, color-mix(in oklab, var(--fg) 5%, transparent) 8px, color-mix(in oklab, var(--fg) 5%, transparent) 9px),
    var(--bg-3);
  display: grid; place-items: center;
  color: var(--fg-4); font-size: 10px;
  border: 1px solid var(--line);
}
.cab-id { flex: 1; }
.cab-id__name { font-size: 26px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 4px; }
.cab-id__role { font-size: 14px; color: var(--fg-3); margin-bottom: 14px; }
.cab-id__badges { display: flex; gap: 6px; flex-wrap: wrap; }
.cab-id__badges span {
  font-size: 11px; padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--fg-3);
}
.cab-id__badges span.green { background: var(--accent-tint); color: var(--accent); border-color: var(--accent-soft); font-weight: 500; }

.cab-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: 10px; overflow: hidden; }
.cab-stat { padding: 16px; background: var(--bg-2); }
.cab-stat b { font-size: 22px; font-weight: 500; display: block; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.cab-stat span { font-size: 11px; color: var(--fg-4); }
.cab-stat.up b { color: var(--accent); }

.cab-section-label { font-size: 11px; font-weight: 500; color: var(--fg-4); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; }
.cab-video {
  aspect-ratio: 16/9; border-radius: 10px;
  background:
    radial-gradient(circle at 50% 50%, var(--accent-tint), transparent 60%),
    repeating-linear-gradient(135deg, transparent 0, transparent 8px, color-mix(in oklab, var(--fg) 5%, transparent) 8px, color-mix(in oklab, var(--fg) 5%, transparent) 9px),
    var(--bg-3);
  position: relative;
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.cab-video::after {
  content: ""; width: 48px; height: 48px; border-radius: 999px;
  background: var(--accent); display: block;
  box-shadow: 0 0 0 8px color-mix(in oklab, var(--accent) 25%, transparent);
}
.cab-video::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  border: 8px solid transparent; border-left: 14px solid #fff;
  transform: translate(-30%, -50%); z-index: 1;
}

/* Scouter cabinet (search results variant) */
.cab-search { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); font-size: 13px; color: var(--fg-3); }
.cab-search .pill { padding: 3px 8px; border-radius: 999px; background: var(--accent-tint); color: var(--accent); font-size: 11px; font-weight: 500; }
.cab-results { display: flex; flex-direction: column; gap: 8px; }
.cab-result { display: grid; grid-template-columns: 40px 1fr auto auto; gap: 14px; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 10px; }
.cab-result .ph { width: 40px; height: 40px; border-radius: 8px; background: var(--bg-3); border: 1px solid var(--line); }
.cab-result .meta b { font-size: 14px; font-weight: 500; display: block; }
.cab-result .meta span { font-size: 12px; color: var(--fg-4); }
.cab-result .match { font-size: 13px; font-weight: 500; color: var(--accent); }
.cab-result button { font-size: 12px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-strong); background: transparent; color: var(--fg); transition: all .2s; }
.cab-result button:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ===== CABINET PREVIEW v2 — image-based laptop ===== */
#preview {
  padding: 80px 0 100px;
  overflow: hidden;
  background: #fcfcfc;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(0,0,0,0.07);
}
#preview .pv-stage {
  width: 1672px;
  height: 1060px;
  position: relative;
  transform-origin: top center;
  flex-shrink: 0;
  margin-inline: auto;
  background: #fcfcfc;
}
#preview .pv-laptop-bg {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%; height: 941px;
  background-image: url("./pc-bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 2;
  transform: scale(1.28);
  transform-origin: 836px 229px;
}
#preview .pv-deco { position: absolute; z-index: 3; pointer-events: none; }
#preview .pv-deco-1 { left:124px;top:236px;width:10px;height:10px;border-radius:50%;background:#d4f1de; }
#preview .pv-deco-2 { left:1500px;top:130px;width:14px;height:14px;border-radius:50%;border:1.5px solid #c7ecd2; }
#preview .pv-deco-3 { left:1442px;top:330px;width:11px;height:11px;border-radius:50%;border:1.5px solid #cbeed6; }
#preview .pv-headline {
  position: absolute;
  left:184px; top:28px;
  max-width:900px;
  font-size:80px; font-weight:800; line-height:1.06; letter-spacing:-0.03em;
  color:#0d0f0d; z-index:3;
}
#preview .pv-headline .accent { color:#22c45a; }
#preview .pv-desc {
  position: absolute;
  left:1020px; top:70px; width:430px;
  font-size:21px; line-height:1.60; color:#3a3f3a; z-index:3;
}
#preview .pv-toggle {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: 268px;
  display: inline-flex;
  background: #fff; border-radius: 999px;
  padding: 5px;
  box-shadow: 0 1px 2px rgba(15,30,15,.04), 0 0 0 1px rgba(15,30,15,.06);
  z-index: 3;
}
#preview .pv-toggle-pill {
  position: absolute;
  top: 5px; bottom: 5px; left: 5px;
  border-radius: 999px;
  background: #22c45a;
  box-shadow: 0 6px 18px -4px rgba(34,196,90,.50);
  transition: left .38s cubic-bezier(0.23,1,0.32,1), width .38s cubic-bezier(0.23,1,0.32,1);
  pointer-events: none;
  z-index: 0;
}
#preview .pv-toggle button {
  appearance: none; border: 0; background: transparent;
  font-family: inherit; font-size: 14px; font-weight: 600; color: #5b625b;
  padding: 10px 22px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; white-space: nowrap;
  transition: color .2s ease;
  position: relative; z-index: 1;
}
#preview .pv-toggle button.active { color: #fff; }
#preview .pv-toggle button:not(.active):hover { color: #1a1d1a; }
#preview .pv-toggle svg { width: 15px; height: 15px; stroke-width: 1.8; }
/* floating feature cards */
@keyframes pvFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
#preview .pv-float-card {
  position:absolute; background:#fff; border-radius:22px;
  padding:22px 28px 22px 22px;
  display:flex; align-items:center; gap:18px;
  box-shadow:0 1px 2px rgba(15,30,15,.04),0 12px 30px -10px rgba(15,30,15,.10),0 30px 60px -20px rgba(15,30,15,.08);
  z-index:4; min-width:290px;
  animation: pvFloat 4s ease-in-out infinite;
}
#preview .pv-fc-tl { animation-delay: 0s; }
#preview .pv-fc-bl { animation-delay: -1s; }
#preview .pv-fc-tr { animation-delay: -2s; }
#preview .pv-fc-br { animation-delay: -3s; }
#preview .pv-fc-icon {
  width:52px; height:52px; border-radius:14px;
  background:#e9f8ee; display:flex; align-items:center; justify-content:center;
  color:#22c45a; flex-shrink:0;
}
#preview .pv-fc-icon svg { width:24px; height:24px; stroke-width:2; }
#preview .pv-fc-t { font-weight:700; font-size:19px; color:#0d0f0d; line-height:1.2; }
#preview .pv-fc-s { font-size:15px; color:#5b625b; line-height:1.4; margin-top:5px; }
#preview .pv-fc-tl { left:24px;  top:494px; }
#preview .pv-fc-bl { left:0px;   top:678px; }
#preview .pv-fc-tr { left:1400px; top:494px; }
#preview .pv-fc-br { left:1422px; top:678px; }
/* nav arrows */
#preview .pv-arrow {
  position:absolute; z-index:4;
  width:60px; height:60px; border-radius:50%;
  background:#fff; border:1px solid #e7eae7;
  display:flex; align-items:center; justify-content:center;
  color:#9aa19a;
  box-shadow:0 6px 18px -8px rgba(15,30,15,.10);
  cursor:pointer; transition:color .15s,border-color .15s;
}
#preview .pv-arrow:hover { color:#22c45a; border-color:#c7ecd2; }
#preview .pv-arrow svg { width:22px; height:22px; stroke-width:1.6; }
#preview .pv-arrow--left  { left:208px;  top:924px; }
#preview .pv-arrow--right { right:208px; top:924px; }
/* safety line */
#preview .pv-safety {
  position:absolute; left:0; right:0; top:1130px;
  display:flex; justify-content:center; align-items:center; gap:14px; z-index:3;
}
#preview .pv-lock {
  width:32px; height:32px; border-radius:50%;
  background:#e9f8ee; color:#22c45a;
  display:flex; align-items:center; justify-content:center;
}
#preview .pv-lock svg { width:15px; height:15px; stroke-width:2; }
#preview .pv-safety-text { font-size:18px; line-height:1.35; white-space:nowrap; }
#preview .pv-safety-text b { display:block; color:#0d0f0d; font-weight:700; margin-bottom:2px; }
#preview .pv-safety-text span { color:#5b625b; }
/* dashboard screen positioned inside laptop */
#preview .pv-screen {
  position:absolute; left:471px; top:366px;
  width:729px; height:474px;
  background:#fff; overflow:hidden;
  display:flex; z-index:1;
  font-size:11px;
  transform:scale(1.28);
  transform-origin:calc(836px - 471px) calc(348px - 366px);
}
/* sidebar */
#preview .pv-sb {
  width:172px; flex-shrink:0;
  background:#fafbfa; border-right:1px solid #eef0ee;
  padding:16px 12px 14px;
  display:flex; flex-direction:column;
}
#preview .pv-sb-logo { display:flex; align-items:center; gap:8px; padding:4px 6px 18px; }
#preview .pv-ball-logo {
  width:26px; height:26px; border-radius:7px;
  background:#0d0f0d; color:#22c45a;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:13px;
}
#preview .pv-ball-logo svg { width:14px; height:14px; }
#preview .pv-sb-name { font-weight:800; font-size:14px; letter-spacing:.02em; line-height:1; color:#0d0f0d; }
#preview .pv-sb-sub  { font-size:8.5px; letter-spacing:.18em; color:#7b827b; margin-top:3px; font-weight:600; }
#preview .pv-sb-nav  { display:flex; flex-direction:column; gap:2px; margin-top:4px; }
#preview .pv-sb-item {
  display:flex; align-items:center; gap:9px;
  padding:8px 10px; border-radius:8px;
  color:#5b625b; font-weight:500; font-size:11.5px; cursor:pointer;
}
#preview .pv-sb-item svg { width:14px; height:14px; stroke-width:1.8; flex-shrink:0; }
#preview .pv-sb-item.active { background:#eaf7ef; color:#0d0f0d; font-weight:600; }
#preview .pv-sb-item.active svg { color:#22c45a; }
#preview .pv-sb-badge {
  margin-left:auto; background:#22c45a; color:#fff;
  font-size:9px; font-weight:700;
  min-width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; padding:0 4px;
}
#preview .pv-sb-plan {
  margin-top:auto; border:1px solid #eaecea; border-radius:10px;
  padding:10px 11px; background:#fff;
}
#preview .pv-plan-row { display:flex; align-items:center; justify-content:space-between; }
#preview .pv-plan-t   { font-size:11.5px; font-weight:600; }
#preview .pv-plan-t b { color:#22c45a; font-weight:700; margin-left:2px; }
#preview .pv-plan-star {
  width:16px; height:16px; border-radius:50%;
  background:#22c45a; color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:9px;
}
#preview .pv-plan-star svg { width:9px; height:9px; fill:currentColor; stroke:none; }
#preview .pv-plan-days { font-size:9.5px; color:#7b827b; margin:4px 0 7px; }
#preview .pv-plan-bar  { height:4px; background:#eef0ee; border-radius:99px; overflow:hidden; }
#preview .pv-plan-bar i { display:block; width:40%; height:100%; background:#22c45a; border-radius:99px; }

/* ── Panels ── */
#preview .pv-panel {
  position:absolute; inset:0;
  padding:18px 20px 16px;
  display:flex; flex-direction:column;
  opacity:0; transform:translateY(7px);
  transition:opacity .38s ease-out, transform .38s cubic-bezier(0.23,1,0.32,1);
  pointer-events:none; overflow:hidden;
}
#preview .pv-panel.pv-active { opacity:1; transform:translateY(0); pointer-events:auto; }

/* ── Virtual cursor ── */
@keyframes pvClick { 0%,100%{transform:scale(1)} 45%{transform:scale(0.78)} }
#preview .pv-cursor {
  position:absolute; width:9px; height:13px;
  pointer-events:none; z-index:10; transform-origin:1px 1px;
  transition:left 1.2s cubic-bezier(0.25,0.46,0.45,0.94), top 1.2s cubic-bezier(0.25,0.46,0.45,0.94);
}
#preview .pv-cursor.pv-clicking { animation:pvClick .22s ease-out forwards; }

/* ── Skill bars ── */
#preview .pv-skill-row { display:flex; align-items:center; gap:8px; font-size:10.5px; }
#preview .pv-skill-label { width:64px; color:#5b625b; font-weight:500; }
#preview .pv-skill-track { flex:1; height:5px; background:#eef0ee; border-radius:99px; overflow:hidden; }
#preview .pv-skill-fill  { height:100%; border-radius:99px; background:#22c45a; }
#preview .pv-skill-pct   { width:28px; text-align:right; font-weight:700; color:#22c45a; font-size:10px; }

/* ── Message rows ── */
#preview .pv-msg-row { display:flex; align-items:center; gap:10px; padding:8px 0; border-bottom:1px solid #eef0ee; }
#preview .pv-msg-av  { width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:700; flex-shrink:0; }
#preview .pv-msg-body { flex:1; min-width:0; }
#preview .pv-msg-name { font-size:11px; font-weight:600; color:#0d0f0d; }
#preview .pv-msg-prev { font-size:10px; color:#7b827b; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; margin-top:1px; }
#preview .pv-msg-time { font-size:9.5px; color:#a0a7a0; flex-shrink:0; }

/* ── Settings rows ── */
#preview .pv-set-row { display:flex; align-items:center; justify-content:space-between; padding:9px 0; border-bottom:1px solid #f0f2f0; }
#preview .pv-set-label { font-size:11px; font-weight:600; color:#0d0f0d; }
#preview .pv-set-hint  { font-size:10px; color:#7b827b; margin-top:2px; }
#preview .pv-sw { width:30px; height:17px; border-radius:99px; position:relative; flex-shrink:0; }
#preview .pv-sw i { position:absolute; top:2px; width:13px; height:13px; border-radius:50%; background:#fff; box-shadow:0 1px 3px rgba(0,0,0,.2); }
#preview .pv-sw.on  { background:#22c45a; } #preview .pv-sw.on  i { right:2px; }
#preview .pv-sw.off { background:#d1d5db; } #preview .pv-sw.off i { left:2px; }

/* main area */
#preview .pv-mn { flex:1; position:relative; overflow:hidden; min-width:0; }
#preview .pv-mn-top { display:flex; gap:16px; align-items:flex-start; }
#preview .pv-mn-photo {
  width:92px; height:92px; border-radius:10px;
  background:#1e2a26; overflow:hidden; flex-shrink:0; position:relative;
}
#preview .pv-mn-photo .pv-ok {
  position:absolute; left:6px; bottom:6px;
  width:16px; height:16px; border-radius:50%;
  background:#22c45a; color:#fff;
  display:flex; align-items:center; justify-content:center; border:2px solid #fff;
}
#preview .pv-mn-photo .pv-ok svg { width:8px; height:8px; stroke-width:3; }
#preview .pv-mn-info { flex:1; min-width:0; padding-top:2px; }
#preview .pv-mn-name { font-size:21px; font-weight:700; letter-spacing:-.01em; color:#0d0f0d; }
#preview .pv-mn-meta { font-size:11.5px; color:#5b625b; margin-top:4px; }
#preview .pv-mn-dot  { display:inline-block; width:3px; height:3px; border-radius:50%; background:#b6bcb6; vertical-align:middle; margin:0 6px 2px; }
#preview .pv-mn-chips { display:flex; gap:6px; margin-top:9px; flex-wrap:nowrap; }
#preview .pv-chip {
  font-size:10.5px; font-weight:500;
  padding:5px 9px; border-radius:99px;
  background:#fff; border:1px solid #e7eae7; color:#3a3f3a;
  display:inline-flex; align-items:center; gap:5px; white-space:nowrap;
}
#preview .pv-chip.ok { background:#eaf7ef; border-color:#cdeed8; color:#1aa14b; font-weight:600; }
#preview .pv-chip.ok svg { width:11px; height:11px; stroke-width:2.4; }
#preview .pv-stats-label { font-size:9.5px; font-weight:700; letter-spacing:.14em; color:#7b827b; margin:16px 0 7px; }
#preview .pv-stats {
  display:grid; grid-template-columns:repeat(4,1fr);
  background:#fafbfa; border:1px solid #eef0ee; border-radius:10px; padding:12px 4px;
}
#preview .pv-stats .pv-cell { text-align:center; border-right:1px solid #eef0ee; padding:0 6px; }
#preview .pv-stats .pv-cell:last-child { border-right:0; }
#preview .pv-stats .pv-v { font-size:22px; font-weight:700; color:#22c45a; line-height:1; letter-spacing:-.01em; }
#preview .pv-stats .pv-cell:first-child .pv-v { color:#0d0f0d; }
#preview .pv-stats .pv-l { font-size:10px; color:#5b625b; margin-top:5px; }
#preview .pv-hl-label { font-size:9.5px; font-weight:700; letter-spacing:.14em; color:#7b827b; margin:15px 0 7px; }
#preview .pv-hl {
  height:118px; border-radius:10px; position:relative; overflow:hidden;
  background-image:
    radial-gradient(ellipse at 30% 35%, rgba(255,255,255,.08) 0%, transparent 50%),
    linear-gradient(180deg,#86b66f 0%,#5d8b55 55%,#3f6d3a 100%);
}
#preview .pv-hl-stripes {
  position:absolute; inset:0;
  background-image:repeating-linear-gradient(90deg,transparent 0,transparent 36px,rgba(255,255,255,.06) 36px,rgba(255,255,255,.06) 72px);
}
#preview .pv-hl-player {
  position:absolute; left:24%; bottom:6px; width:52px; height:78px;
  background:radial-gradient(circle at 50% 18%, #f1c69e 0 9px, transparent 10px),
    linear-gradient(180deg,#0d0f0d 0 38%, #fff 38% 50%, #0d0f0d 50% 78%, #f1c69e 78% 100%);
  border-radius:6px 6px 4px 4px / 12px 12px 4px 4px;
  filter:drop-shadow(0 4px 6px rgba(0,0,0,.18));
}
#preview .pv-hl-number { position:absolute; left:30%; bottom:48px; color:#fff; font-size:11px; font-weight:800; }
#preview .pv-hl-ball   { position:absolute; left:18%; bottom:14px; width:10px; height:10px; border-radius:50%; background:#fff; box-shadow:0 2px 3px rgba(0,0,0,.2); }
#preview .pv-hl-play {
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.92);
  display:flex; align-items:center; justify-content:center; color:#0d0f0d;
  box-shadow:0 6px 16px rgba(0,0,0,.18);
}
#preview .pv-hl-play svg { width:14px; height:14px; fill:currentColor; }

/* ===== MOBILE PHONE PREVIEW ===== */
#mob-preview { display: none; overflow-x: hidden; }
@media (max-width: 900px) {
  #preview { display: none !important; }
  #mob-preview { display: block; }
}
#mob-preview {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --muted: #5a6068;
  --green: #16c46a;
  --green-2: #22d27a;
  --line: #dde2dd;
}
/* Section wrapper */
#mob-preview .section {
  position: relative; width: 100%; max-width: none; height: auto;
  min-height: calc(100vw * 1.67 + 140px); margin: 0;
  padding: clamp(22px, 3.5vh, 36px) max(16px, calc((100vw - 430px) / 2)) 0;
  overflow-x: hidden; overflow-y: visible;
  display: block; isolation: isolate;
  background: #fdfdfd;
}
#mob-preview .section::before { display: none; }

#mob-preview .section .dots-deco {
  position: absolute;
  right: max(14px, calc((100vw - 430px) / 2 + 8px));
  top: 29%; width: 86px; height: 86px;
  background-image: radial-gradient(rgba(34,210,122,0.55) 1.1px, transparent 1.3px);
  background-size: 14px 14px;
  -webkit-mask-image: radial-gradient(closest-side at 50% 50%, #000 40%, transparent 80%);
          mask-image: radial-gradient(closest-side at 50% 50%, #000 40%, transparent 80%);
  opacity: 0.78; pointer-events: none; z-index: 1;
}
#mob-preview .head { width: min(100%, 328px); margin: 0 auto; padding: 0; text-align: center; position: relative; z-index: 4; margin-top: clamp(28px,5vh,44px); font-family: 'DM Sans', system-ui, sans-serif; }
#mob-preview .eyebrow { color: var(--green); font-size: clamp(11px,2.8vw,14px); font-weight: 600; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 7px; }
#mob-preview .headline { font-size: clamp(27px, 6vw, 34px); line-height: 1.08; letter-spacing: -.03em; font-weight: 500; margin: 0 auto; }
#mob-preview .headline .accent { color: var(--green); }
#mob-preview .lede { max-width: min(100%,276px); margin: 7px auto 0; font-size: clamp(9px,2.25vw,12px); line-height: 1.45; color: var(--muted); }
#mob-preview .phone-wrap {
  position: absolute; z-index: 2; left: 50%; top: clamp(8px,2vh,20px);
  width: clamp(390px, 102vw, 480px); transform: translateX(-56%);
  aspect-ratio: 941 / 1672;
}
#mob-preview .phone-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; z-index: 3; pointer-events: none; user-select: none; }
#mob-preview .screen {
  position: absolute; left: 27%; top: 24%; width: 45%; height: 59%;
  background: #ffffff; color: #111; overflow: hidden; z-index: 2;
  border-radius: 6%; font-family: 'Inter', sans-serif; display: flex; flex-direction: column;
}
#mob-preview .screen-header { flex: 0 0 auto; position: relative; z-index: 10; }
#mob-preview .screen-pages { flex: 1 1 auto; position: relative; overflow: hidden; }
#mob-preview .screen-inner { position: absolute; inset: 0; display: flex; flex-direction: column; opacity: 0; pointer-events: none; }
#mob-preview .screen-inner.active { opacity: 1; pointer-events: auto; }
@keyframes mob-si-exit { from{opacity:1} to{opacity:0} }
#mob-preview .screen-inner.s-exit { animation: mob-si-exit 0.2s ease both; }
@keyframes mob-el-enter { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
#mob-preview .screen-inner.s-enter .page > * { animation: mob-el-enter 0.38s cubic-bezier(0.4,0,0.2,1) both; }
#mob-preview .screen-inner.s-enter .page > *:nth-child(1){animation-delay:.04s}
#mob-preview .screen-inner.s-enter .page > *:nth-child(2){animation-delay:.11s}
#mob-preview .screen-inner.s-enter .page > *:nth-child(3){animation-delay:.18s}
#mob-preview .screen-inner.s-enter .page > *:nth-child(4){animation-delay:.25s}
#mob-preview .screen-inner.s-enter .page > *:nth-child(5){animation-delay:.32s}
#mob-preview .screen-inner.s-enter .page > *:nth-child(6){animation-delay:.39s}
#mob-preview .statusbar { height: 32px; display: flex; align-items: flex-end; justify-content: space-between; padding: 0 3% 4px; font-size: 9px; font-weight: 600; color: #0a0a0a; flex: 0 0 auto; }
#mob-preview .statusbar .right { display: flex; gap: 4px; align-items: center; }
#mob-preview .statusbar svg { width: 12px; height: 12px; }
#mob-preview .appbar { display: flex; align-items: center; justify-content: space-between; padding: 6px 7% 8px; flex: 0 0 auto; }
#mob-preview .logo { font-weight: 800; font-size: 17px; letter-spacing: -.04em; }
#mob-preview .logo .g { color: var(--green); }
#mob-preview .menu-btn { width:22px; height:16px; display:flex; flex-direction:column; justify-content:space-between; }
#mob-preview .menu-btn span { display:block; height:1.6px; background:#111; border-radius:2px; }
#mob-preview .menu-btn span:nth-child(2){width:70%}
#mob-preview .menu-btn span:nth-child(3){width:50%}
#mob-preview .screen .page { flex:1 1 auto; overflow:hidden; padding:5px 6% 10px; }
#mob-preview .screen .page h1 { font-size:16px; line-height:1.08; font-weight:700; text-align:center; letter-spacing:-.02em; margin:5px 0 5px; color:#0a0a0a; white-space:nowrap; }
#mob-preview .screen .page h1 .g { color: var(--green); }
#mob-preview .screen .page .para { font-size:9.2px; line-height:1.35; color:#6b7079; text-align:center; margin:0 auto 9px; max-width:96%; }
#mob-preview .tabs { display:grid; grid-template-columns:1fr 1fr; background:#f2f4f6; border-radius:999px; padding:3px; margin:0 auto 9px; font-size:9.3px; font-weight:500; }
#mob-preview .tabs button { border:0; background:transparent; color:#5b6168; padding:6px 4px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; gap:3px; cursor:pointer; font-family:inherit; font-size:inherit; font-weight:500; line-height:1; }
#mob-preview .tabs button.is-active { background:#fff; color:#0a0a0a; box-shadow:0 1px 2px rgba(0,0,0,.08); }
#mob-preview .tabs button .ic { width:11px; height:11px; }
#mob-preview .card { border-radius:10px; padding:9px 11px; margin-bottom:7px; }
#mob-preview .card-green { background:var(--green); color:#fff; position:relative; }
#mob-preview .card-green .row { display:flex; align-items:center; justify-content:space-between; }
#mob-preview .card-green .row-1 .label { font-size:9px; opacity:.85; letter-spacing:.08em; }
#mob-preview .card-green .row-1 .label b { font-weight:700; }
#mob-preview .card-green .pill-active { display:inline-flex; align-items:center; gap:4px; background:rgba(255,255,255,.18); border-radius:999px; padding:3px 8px; font-size:9.5px; font-weight:500; }
#mob-preview .card-green h2 { font-size:22px; font-weight:700; margin:2px 0 10px; letter-spacing:-.01em; }
#mob-preview .card-green .meta { display:flex; justify-content:space-between; align-items:center; font-size:9.5px; margin-bottom:5px; }
#mob-preview .card-green .bar { height:4px; background:rgba(255,255,255,.25); border-radius:999px; overflow:hidden; }
#mob-preview .card-green .bar > i { display:block; height:100%; background:#fff; width:80%; border-radius:999px; }
#mob-preview .card-white { background:#fff; border:1px solid #ececec; }
#mob-preview .card-white .top { display:flex; justify-content:space-between; align-items:center; font-size:9px; letter-spacing:.08em; color:#6b7079; margin-bottom:6px; }
#mob-preview .card-white .top .count { color:#0a0a0a; font-weight:600; letter-spacing:0; }
#mob-preview .card-white .name { font-size:11px; color:#0a0a0a; margin-bottom:6px; }
#mob-preview .card-white .bar { height:4px; background:#eef0f2; border-radius:999px; overflow:hidden; margin-bottom:7px; }
#mob-preview .card-white .bar > i { display:block; height:100%; background:var(--green); width:62%; border-radius:999px; }
#mob-preview .card-white .sub { display:flex; justify-content:space-between; font-size:9px; color:#8b9099; padding-top:6px; border-top:1px solid #f0f1f3; }
#mob-preview .card-white .sub b { color:#0a0a0a; font-weight:600; }
#mob-preview .section-label { font-size:9px; color:#8b9099; letter-spacing:.12em; text-transform:uppercase; margin:10px 0 8px; font-weight:500; }
#mob-preview .plans { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; }
#mob-preview .plan { border:1px solid #ececec; border-radius:10px; padding:9px 6px; text-align:center; background:#fff; }
#mob-preview .plan.is-active { border-color:#b8e4c6; background:#f1fbf4; }
#mob-preview .plan .name { font-size:10px; font-weight:600; color:#0a0a0a; margin-bottom:2px; }
#mob-preview .plan .price { font-size:11px; color:#0a0a0a; font-weight:600; }
#mob-preview .plan .price.o { color:#f59e0b; }
#mob-preview .plan .price.b { color:#2563eb; }
#mob-preview .plan .price.g { color:var(--green); }
#mob-preview .plan .badge { margin-top:4px; font-size:8.5px; color:var(--green); display:inline-flex; align-items:center; gap:2px; }
#mob-preview .profile-hero { text-align:center; margin:8px 0 10px; }
#mob-preview .avatar { width:56px; height:56px; border-radius:999px; background:linear-gradient(135deg,#d3e8d8,#b2dec1); margin:0 auto 8px; position:relative; overflow:hidden; }
#mob-preview .avatar::after { content:""; position:absolute; inset:0; background:radial-gradient(circle at 50% 38%,#f3d8b6 0 30%,transparent 31%),radial-gradient(ellipse at 50% 80%,#2a6b3a 0 35%,transparent 36%); }
#mob-preview .profile-name { font-size:14px; font-weight:700; color:#0a0a0a; }
#mob-preview .profile-meta { font-size:10px; color:#6b7079; margin-top:2px; }
#mob-preview .stats-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; margin:10px 0; }
#mob-preview .stat { background:#f7f8f9; border-radius:10px; padding:8px 4px; text-align:center; }
#mob-preview .stat .v { font-size:13px; font-weight:700; color:#0a0a0a; }
#mob-preview .stat .l { font-size:8.5px; color:#6b7079; margin-top:2px; letter-spacing:.04em; }
#mob-preview .row-list { display:flex; flex-direction:column; gap:5px; margin-top:8px; }
#mob-preview .row-item { display:flex; align-items:center; justify-content:space-between; padding:9px 11px; border:1px solid #ececec; border-radius:9px; font-size:10.5px; color:#0a0a0a; background:#fff; }
#mob-preview .row-item .l { display:flex; align-items:center; gap:7px; }
#mob-preview .row-item .dot { width:16px; height:16px; border-radius:999px; background:#e7f4ec; color:var(--green); display:inline-flex; align-items:center; justify-content:center; }
#mob-preview .row-item .dot svg { width:9px; height:9px; }
#mob-preview .row-item .chev { color:#b9bdc4; }
#mob-preview .search-bar { display:flex; align-items:center; gap:6px; background:#f2f4f6; border-radius:10px; padding:8px 10px; font-size:10.5px; color:#6b7079; margin-bottom:10px; }
#mob-preview .search-bar svg { width:12px; height:12px; }
#mob-preview .filters { display:flex; gap:5px; margin-bottom:10px; flex-wrap:wrap; }
#mob-preview .chip { font-size:9.5px; padding:4px 9px; border-radius:999px; background:#f2f4f6; color:#4b5158; }
#mob-preview .chip.is-on { background:var(--green); color:#fff; }
#mob-preview .player-card { display:flex; align-items:center; gap:9px; padding:8px; border:1px solid #ececec; border-radius:10px; margin-bottom:6px; background:#fff; }
#mob-preview .player-card .pic { width:32px; height:32px; border-radius:999px; background:linear-gradient(135deg,#cdd9e0,#a9bcc6); flex:0 0 32px; }
#mob-preview .player-card .info { flex:1; min-width:0; }
#mob-preview .player-card .nm { font-size:11px; font-weight:600; color:#0a0a0a; }
#mob-preview .player-card .sub { font-size:9.5px; color:#6b7079; margin-top:1px; }
#mob-preview .player-card .badge { font-size:9px; padding:3px 7px; background:#f1fbf4; color:var(--green); border-radius:999px; font-weight:500; }
#mob-preview .msg { display:flex; gap:8px; align-items:flex-start; padding:8px 4px; border-bottom:1px solid #f1f2f4; }
#mob-preview .msg .pic { width:30px; height:30px; border-radius:999px; background:linear-gradient(135deg,#d4ddc7,#aac398); flex:0 0 30px; }
#mob-preview .msg .body { flex:1; min-width:0; }
#mob-preview .msg .top { display:flex; justify-content:space-between; font-size:10.5px; color:#0a0a0a; font-weight:600; margin-bottom:2px; }
#mob-preview .msg .top .t { font-weight:400; color:#8b9099; font-size:9px; }
#mob-preview .msg .preview { font-size:9.5px; color:#6b7079; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
#mob-preview .msg.unread .preview { color:#0a0a0a; font-weight:500; }
#mob-preview .msg .unread-dot { width:6px; height:6px; border-radius:999px; background:var(--green); margin-top:6px; flex:0 0 6px; }
#mob-preview .bigstat { background:#0a0a0a; color:#fff; border-radius:12px; padding:12px; margin-bottom:9px; }
#mob-preview .bigstat .lbl { font-size:9px; opacity:.7; letter-spacing:.08em; text-transform:uppercase; }
#mob-preview .bigstat .v { font-size:28px; font-weight:700; letter-spacing:-.02em; margin-top:4px; }
#mob-preview .bigstat .delta { font-size:10px; color:var(--green-2); margin-top:4px; }
#mob-preview .chart { height:60px; margin-top:8px; background:linear-gradient(180deg,rgba(34,210,122,.25),transparent 80%); position:relative; border-radius:6px; }
#mob-preview .chart svg { width:100%; height:100%; display:block; }
#mob-preview .match-row { display:flex; align-items:center; justify-content:space-between; padding:9px 0; border-bottom:1px solid #f1f2f4; font-size:10px; color:#0a0a0a; }
#mob-preview .match-row .ds { color:#8b9099; font-size:9px; }
#mob-preview .match-row .sc { font-weight:700; font-size:11px; }
#mob-preview .controls {
  position: absolute; z-index: 5; left: 50%; top: calc(100vw * 1.67 + 12px);
  width: min(100%, 300px); padding-inline: 4px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px;
  transform: translateX(-50%);
}
#mob-preview .ctrl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: clamp(48px, 7svh, 58px); padding-inline: 10px;
  background: transparent; color: #1a2018; border: 1.5px solid #d0d5d0;
  border-radius: 999px; font-family: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: border-color .2s, background .2s, color .2s; width: 100%; min-width: 0;
}
#mob-preview .ctrl-btn.next { background: var(--green); color: #fff; border-color: var(--green); }
#mob-preview .ctrl-btn.next:hover:not(:disabled) { background: var(--green-2); border-color: var(--green-2); }
#mob-preview .ctrl-btn:hover:not(:disabled) { border-color: #aab5aa; }
#mob-preview .ctrl-btn:disabled { opacity: .35; cursor: not-allowed; }
#mob-preview .ctrl-btn svg { width: 17px; height: 17px; flex: 0 0 auto; display: block; }
#mob-preview .ctrl-btn .lbl { display: block; flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
#mob-preview .indicator { display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 64px; }
#mob-preview .counter { display: none; }
#mob-preview .counter .of { color: var(--muted); margin: 0 4px; }
#mob-preview .dots { display: flex; gap: 6px; }
#mob-preview .dots span { width: 6px; height: 6px; border-radius: 999px; background: #c0c8c0; transition: background .2s, width .2s; }
#mob-preview .dots span.is-on { background: var(--green); width: 8px; height: 8px; }
@media (max-width: 430px) {
  #mob-preview .head { width: min(100%, 286px); }
  #mob-preview .headline { font-size: clamp(27px, 6vw, 34px); }
  #mob-preview .lede { max-width: 258px; font-size: clamp(10px, 2.5vw, 12px); }
  #mob-preview .phone-wrap { top: clamp(6px,1.5vh,18px); width: 100vw; transform: translateX(-50%); }
  #mob-preview .controls { top: calc(100vw * 1.65); width: min(100%, 394px); }
}
@media (max-width: 360px) {
  #mob-preview .section { padding: clamp(20px,3vh,32px) 10px 16px; }
  #mob-preview .head { width: 100%; }
  #mob-preview .headline { font-size: 19px; }
  #mob-preview .phone-wrap { top: clamp(4px,1vh,14px); width: 98vw; transform: translateX(-50%); }
  #mob-preview .controls { top: calc(100vw * 1.65); width: min(100%, 394px); }
  #mob-preview .ctrl-btn { height: 44px; padding-inline: 8px; font-size: 9.5px; }
}
/* PRICING */
.pricing { padding: var(--section-py) 0; border-top: 1px solid var(--line); }
.pricing__head { text-align: center; margin-bottom: var(--section-head-mb); }
.pricing__head h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500; letter-spacing: -0.03em; line-height: 1;
  margin-top: 20px; margin-bottom: 16px;
  text-wrap: balance;
}
.pricing__head h2 .accent { color: var(--accent); }
.pricing__head p { color: var(--fg-3); font-size: 17px; max-width: 540px; margin: 0 auto; }

.pricing__controls { display: flex; align-items: center; justify-content: center; margin: 32px 0 0; }
.pricing__toggle {
  display: inline-flex; gap: 0; padding: 4px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px;
  position: relative;
}
/* Pill-ul negru care alunecă */
.toggle__pill {
  position: absolute; top: 4px; bottom: 4px; left: 4px;
  width: 72px; /* fallback — JS suprascrie cu valoarea exactă */
  border-radius: 999px; background: var(--fg);
  transition: left .38s cubic-bezier(0.23,1,0.32,1), width .38s cubic-bezier(0.23,1,0.32,1);
  pointer-events: none; z-index: 0;
}
.pricing__toggle button {
  position: relative; z-index: 1;
  padding: 9px 22px; border-radius: 999px; font-size: 13px; font-weight: 500;
  background: transparent; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--fg-3); transition: color .25s ease;
}
.pricing__toggle button.active { color: var(--bg); }
.pricing__save {
  display: inline-flex; align-items: center;
  padding: 2px 7px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  background: color-mix(in oklab,var(--accent) 18%,transparent); color: var(--accent);
  transition: opacity .25s;
}
#billingToggle button:not(.active) .pricing__save { opacity: .6; }

/* Animație preț la schimbare billing */
@keyframes priceSlideOut {
  to { opacity: 0; transform: translateY(-10px) scale(1.04); filter: blur(3px); }
}
@keyframes priceSlideIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); filter: blur(3px); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    filter: blur(0); }
}
.price-card__price b.p-out { animation: priceSlideOut 160ms cubic-bezier(0.4,0,1,1) forwards; }
.price-card__price b.p-in  { animation: priceSlideIn  220ms cubic-bezier(0.23,1,0.32,1) forwards; }

/* PRICING GRID — 4 planuri */
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
@media (max-width: 1100px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 580px)  { .pricing__grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 22px 24px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(0.23,1,0.32,1), box-shadow .35s ease, border-color .3s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(0,0,0,0.10); border-color: var(--line-strong); }

/* Premium — featured: solid green, exact same green ca secțiunea Contact */
.price-card.featured {
  background: var(--accent-bright);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
}
.price-card.featured:hover {
  box-shadow: 0 20px 56px color-mix(in oklab, var(--accent-bright) 40%, transparent);
  transform: translateY(-6px);
}
.price-card.featured .price-card__name { color: rgba(255,255,255,0.75); margin-top: 38px; }
.price-card.featured .price-card__price b,
.price-card.featured .price-card__price .sym { color: #fff; }
.price-card.featured .price-card__price .per { color: rgba(255,255,255,0.78); }
.price-card.featured .price-card__desc { color: #fff; }
.price-card.featured .price-card__sep { background: rgba(255,255,255,0.22); }
.price-card.featured li { color: #fff; }
.price-card.featured li.muted { color: rgba(255,255,255,0.52); }

/* VIP — card negru, simplu, premium */
.price-card.vip { background: var(--fg); border-color: var(--fg); color: var(--bg); }
.price-card.vip:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.24); }
.price-card.vip .price-card__name { color: rgba(255,255,255,0.45); }
.price-card.vip .price-card__price .per { color: rgba(255,255,255,0.45); }
.price-card.vip .price-card__desc { color: rgba(255,255,255,0.50); }
.price-card.vip .price-card__sep { background: rgba(255,255,255,0.10); }
.price-card.vip li { color: rgba(255,255,255,0.82); }
.price-card.vip li svg { color: rgba(255,255,255,0.50); }
.price-card.vip li.muted { color: rgba(255,255,255,0.28); }

/* Badge — rezervat spațiu pt aliniere */
.price-card__badge {
  display: inline-flex; align-items: center;
  height: 22px; padding: 0 9px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 16px; width: fit-content;
  opacity: 0; pointer-events: none; user-select: none;
}
.price-card.featured .price-card__badge,
.price-card.vip .price-card__badge { opacity: 1; pointer-events: auto; }
.price-card.featured .price-card__badge {
  position: absolute;
  top: 22px; left: 22px;
  margin-bottom: 0;
  background: #fff;
  color: var(--accent-bright);
  border: none;
  font-weight: 800;
}
.price-card.vip .price-card__badge { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.65); }

/* Nume plan */
.price-card__name { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-3); margin-bottom: 10px; }

/* Preț */
.price-card__price { display: flex; align-items: baseline; gap: 1px; margin-bottom: 4px; }
.price-card__price .sym { font-size: 20px; font-weight: 600; align-self: flex-start; margin-top: 9px; letter-spacing: -0.02em; }
.price-card__price b { font-size: 48px; font-weight: 700; letter-spacing: -0.05em; line-height: 1; }
.price-card__price .per { color: var(--fg-3); font-size: 13px; margin-left: 3px; }

/* Descriere scurtă */
.price-card__desc { color: var(--fg-3); font-size: 13px; line-height: 1.5; margin-top: 6px; }

/* Separator */
.price-card__sep { height: 1px; background: var(--line); margin: 20px 0; }

/* Features */
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.price-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: var(--fg-2); line-height: 1.45; }
.price-card li svg { flex: 0 0 14px; margin-top: 3px; color: var(--fg-4); }
.price-card.featured li:not(.muted) svg { color: rgba(255,255,255,0.70); }
.price-card li.muted { color: var(--fg-4); }
.price-card li.muted svg { opacity: .4; }

/* CTA */
.price-card__btn {
  margin-top: 24px; padding: 12px 18px; border-radius: 12px;
  font-size: 14px; font-weight: 500; cursor: pointer; width: 100%;
  border: 1px solid var(--line-strong); background: var(--bg); color: var(--fg);
  transition: background .2s ease, color .2s ease, filter .2s ease, transform .18s cubic-bezier(0.23,1,0.32,1);
}
.price-card__btn:hover { background: var(--fg); color: var(--bg); }
.price-card__btn:active { transform: scale(0.97); }
.price-card.featured .price-card__btn {
  background: #fff;
  color: var(--accent-bright);
  border-color: transparent;
  font-weight: 600;
  transition: background .28s cubic-bezier(0.23,1,0.32,1), color .28s ease, transform .18s cubic-bezier(0.23,1,0.32,1), box-shadow .28s ease;
}
.price-card.featured .price-card__btn:hover {
  background: #0a1408;
  color: #fff;
  filter: none;
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,0.30);
}
.price-card.featured .price-card__btn:active { transform: scale(0.97); }
.price-card.vip .price-card__btn { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.18); }
.price-card.vip .price-card__btn:hover { background: rgba(255,255,255,0.22); }

/* PROCESS */
.process { padding: var(--section-py) 0; border-top: 1px solid var(--line); }
.process__head { margin-bottom: var(--section-head-mb); max-width: 720px; }
.process__head h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500; line-height: 1; letter-spacing: -0.03em;
  margin-top: 24px; margin-bottom: 20px;
  text-wrap: balance;
}
.process__head h2 .accent { color: var(--accent); }
.process__head p { color: var(--fg-3); font-size: 17px; max-width: 540px; }

.timeline {
  position: relative; max-width: 800px; margin: 0 auto;
  padding-left: 48px;
}
.timeline__line { position: absolute; left: 13px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.timeline__line .fill { position: absolute; left: 0; top: 0; width: 100%; background: var(--accent); height: 0; transition: height .1s linear; }
.t-step { position: relative; padding: 0 0 64px 0; }
.t-step:last-child { padding-bottom: 0; }
.t-step__dot {
  position: absolute; left: -42px; top: 4px;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 500; color: var(--fg-3);
  font-variant-numeric: tabular-nums;
  transition: all .4s;
}
.t-step.in .t-step__dot { background: var(--accent); border-color: var(--accent); color: #fff; }
.t-step h3 { font-size: 24px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 10px; }
.t-step p { color: var(--fg-3); font-size: 15.5px; max-width: 560px; line-height: 1.5; }
.t-step__meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; font-size: 12px; color: var(--fg-4); }
.t-step__meta span { padding: 4px 8px; border: 1px solid var(--line); border-radius: 999px; }

/* CTA */
.cta { padding: var(--section-py) 0; text-align: center; position: relative; }
.cta__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 800px 500px at center top, rgba(255,255,255,0.35), transparent 60%);
}
.cta h2 {
  font-size: clamp(48px, 8vw, 128px);
  font-weight: 500; line-height: 0.95; letter-spacing: -0.04em;
  text-wrap: balance; margin-top: 24px;
}
.cta h2 .accent { color: var(--accent); display: block; }
.cta__actions { display: flex; justify-content: center; gap: 10px; margin-top: 40px; flex-wrap: wrap; }
.cta__sub { color: var(--fg-3); margin-top: 48px; font-size: 14px; }

/* FOOTER */
footer { padding: 80px 0 48px; border-top: 1px solid var(--line); background: var(--bg); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.footer__brand { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer__brand .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); }
.footer__col h4 { font-size: 12px; font-weight: 500; color: var(--fg-4); margin-bottom: 14px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--fg-3); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { margin-top: 64px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-size: 12px; color: var(--fg-4); flex-wrap: wrap; gap: 10px; }

/* ===== FBT HERO — React component (faithful port of standalone) ===== */
/* ════════════════════════════════════════════════════════════════════════
   CSS vars scoped on #fbt so they don't bleed into the rest of the page.
   The React component renders <div class="page"> inside #fbt-react-root.
   ════════════════════════════════════════════════════════════════════════ */
#fbt {
  --bg:          #090a0b;
  --bg-2:        #0b0c0d;
  --bg-3:        #0d0f10;
  --ink:         #f2f2f2;
  --ink-soft:    #a7a7a7;
  --ink-dim:     rgba(167,167,167,.55);
  --line:        #232525;
  --card:        #17191a;
  --card-highlight: #232525;
  --accent:      #3DDC84;

  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  position: relative;
  isolation: isolate;
  padding: 0;
  overflow: hidden;
  /* Override global section stacking card look */
  border-radius: 0 !important;
  margin-top: 0 !important;
}

/* .page inside #fbt is the React component root */
#fbt .page {
  position: relative;
  min-height: 100%;
  isolation: isolate;
}

/* Reset global section stacking for ANY <section> inside #fbt */
#fbt section {
  border-radius: 0 !important;
  margin-top: 0 !important;
}

/* ── Background glow ── */
#fbt .glow {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 80vh;
  background:
    radial-gradient(60% 70% at 20% 0%, color-mix(in oklch, var(--accent) 18%, transparent) 0%, transparent 60%),
    radial-gradient(50% 60% at 85% 10%, color-mix(in oklch, var(--accent) 8%, transparent) 0%, transparent 65%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  transition: opacity .6s ease;
}

/* subtle grain */
#fbt .page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
  opacity: .5;
}

/* ── Context hints ── */
#fbt .prev-hero-hint,
#fbt .next-section-hint {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 120px;
  opacity: .45;
  position: relative;
  z-index: 1;
}
#fbt .prev-hero-hint { padding-top: 32px; }
#fbt .next-section-hint { padding-bottom: 32px; }
#fbt .phh-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line) 40%, var(--line));
}
#fbt .next-section-hint .phh-line {
  background: linear-gradient(to left, transparent, var(--line) 40%, var(--line));
}
#fbt .phh-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}

/* ── Section shell ── */
#fbt .fbt-section {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 200px 40px 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
#fbt .fbt-section::before,
#fbt .fbt-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line) 15%, var(--line) 85%, transparent);
}
#fbt .fbt-section::before { top: 0; }
#fbt .fbt-section::after  { bottom: 0; }

#fbt .section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
#fbt .section-divider {
  width: 32px;
  height: 1px;
  background: var(--line);
}
#fbt .section-eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

#fbt .section-title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 12px;
  text-align: center;
  text-wrap: balance;
}

/* ── Stage ── */
#fbt .fbt-stage {
  margin-top: 24px;
  padding: 28px 24px;
  cursor: pointer;
  user-select: none;
  outline: none;
  width: 100%;
  display: flex;
  justify-content: center;
}
#fbt .fbt-stage:focus-visible {
  outline: 2px dashed color-mix(in oklch, var(--accent) 60%, transparent);
  outline-offset: 8px;
  border-radius: 8px;
}

#fbt .hero-hint {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 24px;
  transition: color .3s ease;
}
#fbt .hero-hint[data-open="1"] { color: var(--ink-soft); }

/* ── Variant A: Expand inline (F·ootball) ── */
#fbt .fbt-row {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
  transition: gap .8s cubic-bezier(.2,.8,.2,1);
}
#fbt .fbt-row[data-open="1"] { gap: clamp(28px, 5vw, 80px); }
#fbt .fbt-word {
  display: inline-flex;
  align-items: baseline;
  position: relative;
}
#fbt .fbt-big {
  font-size: clamp(96px, 13vw, 200px);
  line-height: .85;
  letter-spacing: -.05em;
  display: inline-block;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
#fbt .fbt-rest-wrap {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  transition: width .85s cubic-bezier(.2,.8,.2,1);
  align-self: flex-end;
  margin-bottom: clamp(14px, 2.2vw, 36px);
}
#fbt .fbt-rest {
  display: inline-block;
  font-size: clamp(26px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.025em;
  padding-left: clamp(4px, .8vw, 12px);
  padding-right: clamp(8px, 1.5vw, 24px);
  transform: translateX(-12px);
  opacity: 0;
  transition: transform .7s cubic-bezier(.2,.8,.2,1) .05s,
              opacity .55s ease .1s;
}
#fbt .fbt-row[data-open="1"] .fbt-rest { transform: translateX(0); opacity: 1; }
#fbt .fbt-row[data-open="1"] .fbt-word:nth-child(1) .fbt-rest { transition-delay: .05s, .08s; }
#fbt .fbt-row[data-open="1"] .fbt-word:nth-child(2) .fbt-rest { transition-delay: .15s, .18s; }
#fbt .fbt-row[data-open="1"] .fbt-word:nth-child(3) .fbt-rest { transition-delay: .25s, .28s; }

/* ── Variant B: Stack vertical ── */
#fbt .fbt-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: .82;
  font-weight: 900;
  letter-spacing: -.045em;
}
#fbt .fbt-stack-row {
  display: flex;
  align-items: baseline;
  font-size: clamp(64px, 9vw, 140px);
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i) * 80ms);
}
#fbt .fbt-stack-letter { display: inline-block; }
#fbt .fbt-stack-rest {
  display: inline-flex;
  overflow: hidden;
  height: 1em;
  align-items: baseline;
}
#fbt .fbt-stack-char {
  display: inline-block;
  transform: translateX(-1em);
  opacity: 0;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .4s ease;
}
#fbt .fbt-stack[data-open="1"] .fbt-stack-row:nth-child(1) .fbt-stack-char { transition-delay: calc(var(--j) * 30ms + 80ms); }
#fbt .fbt-stack[data-open="1"] .fbt-stack-row:nth-child(2) .fbt-stack-char { transition-delay: calc(var(--j) * 30ms + 220ms); }
#fbt .fbt-stack[data-open="1"] .fbt-stack-row:nth-child(3) .fbt-stack-char { transition-delay: calc(var(--j) * 30ms + 360ms); }
#fbt .fbt-stack[data-open="1"] .fbt-stack-char { transform: translateX(0); opacity: 1; }

/* ── Variant C: Typewriter ── */
#fbt .fbt-type {
  display: inline-flex;
  gap: clamp(20px, 4vw, 60px);
  align-items: flex-end;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .85;
}
#fbt .fbt-type-word { display: inline-flex; align-items: baseline; }
#fbt .fbt-type-big {
  font-size: clamp(96px, 13vw, 200px);
  line-height: .85;
  letter-spacing: -.05em;
}
#fbt .fbt-type-rest {
  font-size: clamp(26px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.025em;
  padding-left: clamp(4px, .8vw, 12px);
  text-transform: lowercase;
  align-self: flex-end;
  margin-bottom: clamp(14px, 2.2vw, 36px);
  position: relative;
  display: inline-block;
  min-width: .1em;
}
#fbt .fbt-caret {
  display: inline-block;
  width: 2px;
  height: .8em;
  margin-left: 2px;
  background: var(--accent);
  vertical-align: baseline;
  animation: fbtCaret .6s steps(2) infinite;
}
@keyframes fbtCaret { 50% { opacity: 0; } }

/* ── Below-fold area ── */
#fbt .below {
  margin-top: clamp(32px, 4vw, 56px);
  width: 100%;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#fbt .below.none { min-height: 80px; }

/* ── Cards ── */
#fbt .below.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1150px;
  width: 100%;
}
#fbt .acard {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(70,71,69,.22) 0%, transparent 55%),
    linear-gradient(135deg, #232525 0%, #17191a 45%, #0d0f10 100%);
  border: 1px solid #232525;
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 30px 70px -25px rgba(0,0,0,.75);
  animation: cardIn .7s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: calc(var(--i) * 110ms + 60ms);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .4s;
}
#fbt .acard::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 12%);
  pointer-events: none;
  z-index: 1;
}
#fbt .acard:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.08);
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
#fbt .acard-inner {
  position: relative;
  padding: 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 2;
  text-align: left;
}
#fbt .acard-num {
  position: absolute;
  display: block;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .8;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), filter .3s;
  transform-origin: center center;
  will-change: transform;
}
#fbt .acard:hover .acard-num { filter: brightness(1.3); }
#fbt .acard-title {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.15;
  position: relative;
  z-index: 2;
}
#fbt .acard-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
  position: relative;
  z-index: 2;
}

/* ── Stats ── */
#fbt .below.stats {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  max-width: 1100px;
}
#fbt .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  animation: statIn .6s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: calc(var(--i) * 80ms);
}
@keyframes statIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
#fbt .stat-v {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}
#fbt .stat-l {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}

/* ── Process ── */
#fbt .below.process { align-items: center; }
#fbt .process-line {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
#fbt .process-step {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: stepIn .55s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: calc(var(--i) * 120ms);
}
@keyframes stepIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}
#fbt .process-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px currentColor;
}
#fbt .process-label { font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
#fbt .process-bar {
  width: clamp(28px, 5vw, 64px);
  height: 1px;
  background: linear-gradient(to right, var(--line), color-mix(in oklch, var(--accent) 40%, transparent), var(--line));
}
#fbt .process-sub {
  margin-top: 28px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 540px;
  text-wrap: balance;
}

/* ── Mobile slide-in for cards ── */
@media (max-width: 720px) {
  #fbt .acard {
    animation: none !important;
    opacity: 0;
    transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
  }
  #fbt .acard[data-side="left"]  { transform: translateX(-80px); }
  #fbt .acard[data-side="right"] { transform: translateX(80px); }
  #fbt .acard[data-inview="1"]   { opacity: 1; transform: translateX(0); }

  #fbt .fbt-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(8px, 3vw, 24px) !important;
    width: 100%;
    padding: 0;
  }
  #fbt .fbt-word { width: auto; align-items: baseline; }
  #fbt .fbt-word:nth-child(1) { transform: none; padding-left: 0; }
  #fbt .fbt-big { font-size: clamp(60px, 20vw, 100px) !important; }
  #fbt .fbt-rest { font-size: clamp(16px, 5.5vw, 28px) !important; }

  #fbt .fbt-stack-row { font-size: clamp(56px, 18vw, 96px) !important; }

  #fbt .fbt-type { flex-direction: row; align-items: flex-end; justify-content: center; gap: clamp(8px, 3vw, 24px); width: 100%; padding: 0; }
  #fbt .fbt-type-word { display: flex; align-items: baseline; }
  #fbt .fbt-type-big  { font-size: clamp(60px, 20vw, 100px) !important; }
  #fbt .fbt-type-rest { font-size: clamp(16px, 5.5vw, 28px) !important; }
}

@media (max-width: 900px) {
  #fbt .below.cards { grid-template-columns: 1fr; gap: 14px; }
  #fbt .acard { height: 320px; min-height: unset; aspect-ratio: auto; border-radius: 28px; }
  #fbt .acard-num { font-size: 120px !important; top: auto !important; bottom: 20px !important; left: 20px !important; transform: none !important; }
  #fbt .acard-title { font-size: 24px; }
  #fbt .acard-body { font-size: 17px; line-height: 1.6; }
  #fbt .acard-inner { padding: 26px 26px 28px; }
}
@media (max-width: 720px) {
  #fbt .prev-hero-hint, #fbt .next-section-hint { padding: 0 20px; height: 80px; }
  #fbt .fbt-section { padding: 48px 20px 60px; }
  #fbt .section-title { font-size: clamp(22px, 6vw, 30px); }
  #fbt .fbt-stage { padding: 16px 8px; }
}

/* ===== HATTRICK ===== */
/* HATTRICK — redesigned: dark editorial, two-column, step rows */
.hattrick {
  padding: var(--section-py) 0;
  background: #0c0f0d;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hattrick__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hattrick__left { position: sticky; top: 100px; }
@media (max-width: 960px) {
  .hattrick__inner { grid-template-columns: 1fr; gap: 40px; }
  .hattrick__left { position: relative !important; top: auto !important; }
  .hattrick__left h2 { font-size: clamp(36px, 10vw, 52px); }
  .hattrick__left p { font-size: 17px; }
}
.hattrick__left .label { font-size: 14px; padding: 6px 14px; gap: 8px; }
.hattrick__left h2 {
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500; line-height: 0.96; letter-spacing: -0.03em;
  color: #f4f5f0;
  margin-top: 20px; margin-bottom: 24px;
  text-wrap: balance;
}
.hattrick__left h2 .accent { color: #00c050; }
.hattrick__left p { color: rgba(244,245,240,0.55); font-size: 19px; line-height: 1.65; max-width: 400px; }
.hattrick__steps { display: flex; flex-direction: column; }
.hattrick__step {
  display: grid; grid-template-columns: 40px 1fr; gap: 22px; align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: opacity .3s;
}
.hattrick__step:first-child { padding-top: 4px; }
.hattrick__step:last-child { border-bottom: none; padding-bottom: 0; }
.hattrick__step:hover { opacity: 0.92; }
.step-num {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid rgba(0,192,80,0.3);
  display: grid; place-items: center;
  color: #00c050;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  color: #00c050;
  background: rgba(0,192,80,0.08);
  flex-shrink: 0; margin-top: 3px;
}
.step-body h3 {
  font-size: 23px; font-weight: 500; letter-spacing: -0.022em;
  color: #f4f5f0; margin-bottom: 10px; line-height: 1.1;
}
.step-body p {
  font-size: 15px; color: rgba(244,245,240,0.48); line-height: 1.55; margin-bottom: 18px;
}
.step-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.step-tags span {
  font-size: 11.5px; color: rgba(244,245,240,0.4);
  padding: 4px 11px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; white-space: nowrap;
}
.hattrick__final {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 16px;
  color: rgba(244,245,240,0.45);
}
.hattrick__final b { color: #f4f5f0; font-weight: 500; }

/* scroll-to-top — liquid glass dark, Apple style */
@keyframes stb-arrow {
  0%   { transform: translateY(0);   opacity: 1; }
  35%  { transform: translateY(-7px); opacity: 0; }
  36%  { transform: translateY(5px);  opacity: 0; }
  100% { transform: translateY(0);   opacity: 1; }
}
.scroll-top-btn {
  position: fixed; bottom: 28px; right: 24px; z-index: 200;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(4, 4, 6, 0.88);
  backdrop-filter: blur(28px) saturate(180%) brightness(0.72);
  -webkit-backdrop-filter: blur(28px) saturate(180%) brightness(0.72);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  cursor: pointer;
  display: grid; place-items: center;
  opacity: 0; transform: translateY(14px) scale(0.88);
  transition:
    opacity .35s ease,
    transform .5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow .3s ease,
    background .15s ease;
  pointer-events: none;
  box-shadow:
    0 10px 36px rgba(0,0,0,0.55),
    0 2px 8px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(255,255,255,0.06);
}
.scroll-top-btn.is-visible {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.scroll-top-btn:hover {
  transform: scale(1.07);
  background: rgba(4,4,6,0.94);
  box-shadow:
    0 18px 52px rgba(0,0,0,0.6),
    0 4px 12px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.26),
    inset 0 -1px 0 rgba(255,255,255,0.08);
}
.scroll-top-btn:active {
  transform: scale(0.9) !important;
  transition: transform 0.08s ease !important;
  background: rgba(4,4,6,1);
}
.scroll-top-btn svg {
  width: 18px; height: 18px;
  transition: transform .4s cubic-bezier(0.34,1.56,0.64,1), opacity .25s ease;
}
.scroll-top-btn.is-clicked svg {
  animation: stb-arrow .5s cubic-bezier(0.2,0.8,0.2,1) forwards;
}

/* progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--accent);
  z-index: 100;
  transition: width 0.05s linear;
}