﻿/* ═══ RESET & ROOT ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:    #0a1628;
  --bg2:   #0f1e38;
  --bg3:   #152445;
  --glass: rgba(10,22,40,0.65);
  --bdr:   rgba(64,224,208,0.12);
  --bdr2:  rgba(64,224,208,0.26);

  --cyan:    #06b6d4;
  --violet:  #48cae4;
  --fuchsia: #40e0d0;   /* turcoaz — accent primar */
  --amber:   #38bdf8;
  --orange:  #0ea5e9;
  --emerald: #0ea5e9;
  --pink:    #38bdf8;
  --gold:    #c9a84c;   /* auriu pal — accent secundar */

  /* Gradient principal: turcoaz → teal → albastru adânc */
  --gA: linear-gradient(135deg,#6366f1 0%,#4f46e5 50%,#3730a3 100%);
  /* Gradient auriu pal: folosit selectiv pe elemente speciale */
  --gGold: linear-gradient(135deg,#c9a84c 0%,#e8d48a 50%,#c9a84c 100%);
  --gB: linear-gradient(135deg,#38bdf8 0%,#0ea5e9 100%);
  --gC: linear-gradient(135deg,#06b6d4 0%,#48cae4 100%);
  --gD: linear-gradient(135deg,#40e0d0 0%,#38bdf8 100%);

  --text:  #e8f4ff;
  --text2: rgba(220,240,255,0.72);
  --text3: rgba(220,240,255,0.40);

  --nav-h: 68px;
  --sb-w:  320px;
  --r:    12px;
  --r-lg: 20px;
  --r-xl: 28px;
}

html { scroll-behavior: smooth; background: var(--bg); }
body { background: transparent; color: var(--text); font-family: 'Inter', sans-serif; overflow-x: hidden; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.gt-main { background: var(--gGold); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

.sec-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201,168,76,.08); border: 1px solid rgba(99,102,241,.35);
  border-radius: 100px; padding: 5px 14px; margin-bottom: 18px;
}
.sec-label::before { content:''; width:5px; height:5px; border-radius:50%; background:#c9a84c; box-shadow:0 0 8px rgba(201,168,76,.6); }

.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s cubic-bezier(.2,.8,.4,1), transform .7s cubic-bezier(.2,.8,.4,1); }
.reveal.visible { opacity:1; transform:none; }
.reveal[data-delay="100"] { transition-delay:.10s; }
.reveal[data-delay="200"] { transition-delay:.20s; }
.reveal[data-delay="300"] { transition-delay:.30s; }
.reveal[data-delay="400"] { transition-delay:.40s; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  height: var(--nav-h); padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(10,22,40,0);
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
}
.navbar.scrolled {
  background: rgba(10,22,40,0.90);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--bdr);
}
.nav-logo img { height: var(--nav-h); width: auto; filter: drop-shadow(0 0 16px rgba(64,224,208,.4)); }
.hero-badge { display: none; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  position: relative;
  font-family: 'Outfit', sans-serif; font-size: .84rem; font-weight: 500;
  letter-spacing: .10em; text-transform: uppercase;
  color: rgba(255,255,255,.65); padding: 7px 13px; border-radius: 8px;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
  transition: color .25s, transform .25s, text-shadow .25s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 3px; left: 13px; right: 13px; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.nav-links a i { font-size: .78rem; transition: color .25s; }
.nav-links a:hover { color: #fff; background: none; transform: scale(1.07); text-shadow: 0 0 4px #fff, 0 0 10px rgba(139,92,246,1), 0 0 22px rgba(139,92,246,1), 0 0 45px rgba(139,92,246,.75), 0 0 80px rgba(139,92,246,.40); filter: drop-shadow(0 0 6px rgba(139,92,246,.90)); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover i { color: var(--gold); }
.nav-cta {
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif; font-size: .85rem; font-weight: 600;
  color: #fff; background: var(--gA); padding: 9px 22px; border-radius: 100px;
  box-shadow: 0 4px 22px rgba(99,102,241,.35);
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 0 2px rgba(99,102,241,.40), 0 6px 28px rgba(99,102,241,.65), 0 16px 55px rgba(99,102,241,.45), 0 0 70px rgba(64,224,208,.18); filter: brightness(1.12); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; border-radius: 2px; transition: all .3s;
  background: linear-gradient(90deg, var(--gold), var(--cyan)); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none; flex-direction: column; gap: 6px;
  position: fixed; top: calc(var(--nav-h) + 10px); right: 16px; z-index: 999;
  min-width: 230px;
  background: rgba(8,16,36,.78);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--bdr2);
  border-radius: 18px;
  padding: 14px 12px 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 32px rgba(6,182,212,.07);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Space Grotesk', sans-serif; font-size: .92rem; font-weight: 600;
  color: var(--text2); padding: 10px 16px; border-radius: 10px;
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  border: 1px solid var(--bdr);
  background: rgba(255,255,255,.04);
  transition: color .2s, background .2s, border-color .2s, box-shadow .2s;
}
.mobile-menu a i { width: 18px; text-align: center; color: var(--cyan); font-size: .85rem; transition: color .2s; }
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.10); border-color: var(--bdr2); box-shadow: 0 0 14px rgba(6,182,212,.14); }
.mobile-menu a:hover i { color: var(--gold); }
.mobile-menu .mob-cta { margin-top: 4px; color: #fff; background: var(--gA); justify-content: center; border-radius: 100px; border-color: transparent; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr var(--sb-w);
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Video background full-screen */
.hero-video-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  pointer-events: none;
  transition: opacity .6s ease;
}
.hero-end-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  pointer-events: none;
  opacity: 0;
  transition: opacity .9s ease;
}
/* Overlay pentru lizibilitate text */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(10,22,40,.40) 0%, rgba(10,22,40,.10) 30%, rgba(10,22,40,.10) 65%, rgba(10,22,40,.70) 100%),
    radial-gradient(ellipse at center, rgba(10,22,40,.04) 0%, rgba(10,22,40,.32) 100%);
}

.hero-left {
  position: relative; z-index: 2;
  padding: 28px 52px 60px 72px;
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: flex-start; text-align: left;
}

/* Logo row */
.hero-logo-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
  animation: fdU .6s ease .05s both;
}
.hero-logo { height: 50px; width: auto; filter: drop-shadow(0 0 24px rgba(64,224,208,.55)); }
.hero-logo-sep { width: 1px; height: 32px; background: linear-gradient(180deg,transparent,rgba(64,224,208,.5),transparent); }
.hero-logo-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--fuchsia); opacity: .8;
}

/* ── BLOG SIDEBAR ── */
.blog-sidebar {
  position: absolute; right: 0; top: var(--nav-h);
  width: var(--sb-w); height: calc(100% - var(--nav-h));
  z-index: 2; display: flex; flex-direction: column; overflow: hidden;
}
.bs-top { padding: 14px 14px 12px; flex-shrink: 0; }
.bs-top-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: rgba(30,140,233,0.25); border: 1.5px solid rgba(110,180,255,0.5);
  border-radius: 30px;
  color: #fff; font-family: 'Space Grotesk', sans-serif;
  font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.bs-top-label i { color: #6eb4ff; font-size: .9rem; }

.bs-list { flex: 1; overflow-y: auto; padding: 10px 14px; display: flex; flex-direction: column; gap: 11px; }
.bs-list::-webkit-scrollbar { width: 3px; }
.bs-list::-webkit-scrollbar-track { background: transparent; }
.bs-list::-webkit-scrollbar-thumb { background: rgba(110,180,255,.25); border-radius: 2px; }

.bs-item {
  display: flex; flex-direction: column; gap: 8px;
  padding: 13px 15px;
  background: rgba(30,140,233,0.18); border: 1.5px solid rgba(110,180,255,0.35);
  border-radius: 16px; text-decoration: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}
.bs-item:hover {
  background: rgba(30,140,233,0.38); border-color: rgba(110,180,255,0.65);
  transform: translateX(-5px); box-shadow: 0 6px 18px rgba(30,140,233,0.28);
}
.bs-item-title { color: #fff; font-size: .83rem; font-weight: 700; line-height: 1.35; }
.bs-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bs-cat {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(110,180,255,0.18); padding: 3px 9px; border-radius: 12px;
  color: #6eb4ff; font-family: 'Space Grotesk', sans-serif; font-size: .68rem; font-weight: 600;
}
.bs-cat i { font-size: .62rem; }
.bs-date { display: flex; align-items: center; gap: 4px; font-size: .68rem; color: rgba(180,220,255,0.55); }
.bs-date i { font-size: .62rem; color: rgba(110,180,255,0.45); }

.bs-loading { padding: 20px 14px; font-size: .78rem; color: rgba(180,220,255,0.45); display: flex; align-items: center; gap: 8px; }
.bs-spinner { width: 14px; height: 14px; border: 2px solid rgba(110,180,255,.15); border-top-color: #6eb4ff; border-radius: 50%; animation: spin .7s linear infinite; flex-shrink: 0; }
.bs-footer { padding: 12px 14px; border-top: 1px solid rgba(110,180,255,.12); flex-shrink: 0; }
.bs-all {
  font-family: 'Space Grotesk', sans-serif; font-size: .74rem; font-weight: 600;
  color: rgba(180,220,255,0.65); display: flex; align-items: center; gap: 5px;
  transition: color .2s, gap .2s;
}
.bs-all:hover { color: #fff; gap: 9px; }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  background: rgba(251,191,36,.08); border: 1px solid rgba(251,191,36,.25);
  border-radius: 100px; padding: 5px 14px; margin-bottom: 22px;
  animation: fdU .6s ease .12s both;
}
.hero-badge::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--gold); box-shadow:0 0 8px var(--gold); }

/* Headline */
.hero-hl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.08;
  margin-bottom: 20px;
  animation: fdU .7s ease .20s both;
}
.hl-plain { display: block; color: #fff; }
.hl-grad  { display: block; background: var(--gA); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* Tagline */
.hero-tagline {
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  color: var(--text2); line-height: 1.8;
  max-width: 500px; margin-bottom: 32px;
  animation: fdU .7s ease .30s both;
}

/* Category pills */
.hero-cats {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fdU .7s ease .40s both;
}
.hcat {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Space Grotesk', sans-serif; font-size: .74rem; font-weight: 600;
  padding: 6px 15px; border-radius: 100px; border: 1px solid;
  transition: all .25s; cursor: pointer;
}
.hcat-t { color:var(--cyan);    border-color:rgba(6,182,212,.60);   background:rgba(6,182,212,.22); }
.hcat-t:hover { background:rgba(6,182,212,.35);   border-color:var(--cyan);   transform:translateY(-2px); box-shadow:0 0 16px rgba(139,92,246,.60),0 0 42px rgba(139,92,246,.28),0 0 70px rgba(139,92,246,.14); }
.hcat-i { color:var(--amber);   border-color:rgba(56,189,248,.60);  background:rgba(56,189,248,.18); }
.hcat-i:hover { background:rgba(56,189,248,.32);  border-color:var(--amber);  transform:translateY(-2px); box-shadow:0 0 16px rgba(139,92,246,.60),0 0 42px rgba(139,92,246,.28),0 0 70px rgba(139,92,246,.14); }
.hcat-a { color:#48cae4;        border-color:rgba(64,224,208,.60);  background:rgba(64,224,208,.24); }
.hcat-a:hover { background:rgba(64,224,208,.38);  border-color:#48cae4;       transform:translateY(-2px); box-shadow:0 0 16px rgba(139,92,246,.60),0 0 42px rgba(139,92,246,.28),0 0 70px rgba(139,92,246,.14); }
.hcat-v { color:var(--fuchsia); border-color:rgba(64,224,208,.60);  background:rgba(64,224,208,.22); }
.hcat-v:hover { background:rgba(64,224,208,.38);  border-color:var(--fuchsia); transform:translateY(-2px); box-shadow:0 0 16px rgba(139,92,246,.60),0 0 42px rgba(139,92,246,.28),0 0 70px rgba(139,92,246,.14); }

/* CTA buttons */
.hero-ctas {
  position: absolute; z-index: 5;
  bottom: 18%; left: 0; right: 0;
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; align-items: center;
  animation: fdU .7s ease .50s both;
}
/* ── HERO SOCIAL LINKS ── */
.hero-socials {
  display: flex; flex-direction: row; gap: 20px;
  justify-content: center; align-items: center;
  width: 100%; order: 3; z-index: 2; margin-top: 4px;
}
.hero-soc-link {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,.72); font-family: 'Space Grotesk', sans-serif;
  font-size: .80rem; font-weight: 500; text-decoration: none;
  transition: color .2s, transform .2s;
}
.hero-soc-link i {
  font-size: 1.15rem; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px; transition: background .2s, border-color .2s;
}
.hero-soc-link:hover { color: #fff; transform: translateX(3px); }
.hero-soc-link:hover i { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.38); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: .9rem; font-weight: 600;
  color: #fff; background: var(--gA); padding: 12px 28px; border-radius: 100px;
  box-shadow: 0 6px 24px rgba(99,102,241,.35);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 0 2px rgba(99,102,241,.45), 0 8px 32px rgba(99,102,241,.70), 0 20px 70px rgba(99,102,241,.50), 0 0 90px rgba(64,224,208,.22); filter: brightness(1.12); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: .9rem; font-weight: 600;
  color: #fff; background: rgba(4,13,26,.72); border: 1px solid rgba(255,255,255,.38);
  padding: 12px 28px; border-radius: 100px;
  transition: all .2s;
}
.btn-outline:hover { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.45); transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(64,224,208,.40), 0 8px 32px rgba(64,224,208,.45), 0 20px 65px rgba(64,224,208,.25); filter: brightness(1.10); }

/* ── VIDEO PLAYER (păstrat pentru utilizare ulterioară) ── */
.hero-video-wrap {
  width: 100%; max-width: 520px;
  animation: fdU .9s ease .28s both;
}
.video-outer {
  position: relative;
}
.video-glow-ring {
  position: absolute; inset: -28px; border-radius: 36px; z-index: -1;
  background: radial-gradient(ellipse at center, rgba(64,224,208,.22) 0%, rgba(6,182,212,.08) 55%, transparent 75%);
  filter: blur(16px);
}
.video-frame {
  position: relative;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 32px 80px rgba(0,0,0,.75),
    0 0 80px rgba(64,224,208,.22);
  aspect-ratio: 16/9; background: #000;
}
.video-frame video { width:100%; height:100%; object-fit:cover; display:block; }

.video-live-badge {
  position: absolute; top: 12px; left: 12px; z-index: 5;
  display: flex; align-items: center; gap: 6px;
  font-family: 'Space Grotesk', sans-serif; font-size: .62rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #fff; background: rgba(64,224,208,.85); border-radius: 6px; padding: 4px 10px;
  backdrop-filter: blur(8px);
  transition: opacity .5s;
}
.video-live-badge.ended { opacity: 0; }
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: #fff; animation: vbpulse 1.4s ease-in-out infinite; }

.video-chrome {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 4px 0;
}
.vdots { display: flex; gap: 5px; }
.vd { width: 10px; height: 10px; border-radius: 50%; }
.vd-r { background: #ff5f57; } .vd-y { background: #febc2e; } .vd-g { background: #28c840; }
.vlabel { font-family: 'Space Grotesk', sans-serif; font-size: .7rem; color: var(--text3); letter-spacing: .8px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: .5; animation: scrollBob 2.4s ease-in-out infinite;
}
@keyframes scrollBob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
.scroll-line { width: 1px; height: 30px; background: linear-gradient(180deg, rgba(255,255,255,.8), transparent); }
.scroll-txt { font-family: 'Space Grotesk', sans-serif; font-size: .58rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text3); }

/* ═══ TICKER STRIP ═══ */
.ticker-wrap {
  position: relative; z-index: 1; overflow: hidden;
  border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
  background: rgba(10,22,40,.92); padding: 12px 0;
}
.ticker-track { display: flex; white-space: nowrap; animation: tickerScroll 40s linear infinite; }
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px; padding: 0 24px;
  font-family: 'Space Grotesk', sans-serif; font-size: .72rem; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase; white-space: nowrap;
}
.ticker-sep { color: var(--bdr2); font-size: 1rem; padding: 0 4px; }
.t-t { color: var(--cyan); } .t-i { color: var(--gold); }
.t-a { color: #48cae4; }    .t-v { color: var(--fuchsia); }

/* ═══ DOMAINS ═══ */
.domains-sec {
  position: relative; z-index: 1;
  padding: 100px 0 110px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
}
.domains-sec::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg,transparent,var(--fuchsia),var(--cyan),transparent);
}
.domains-sec::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg,transparent,var(--violet),transparent);
}
.domains-glow {
  position: absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(64,224,208,.07) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.domains-head { text-align: center; margin-bottom: 64px; position: relative; z-index: 1; }
.domains-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem,3.5vw,2.9rem); font-weight: 700; line-height: 1.18; margin-bottom: 14px;
}
.domains-head p { color: var(--text2); font-size: .95rem; max-width: 460px; margin: 0 auto; }

.domains-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; position: relative; z-index: 1; }

.dc {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl); border: 1px solid var(--bdr);
  cursor: pointer; text-decoration: none;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  aspect-ratio: 3/4;
  transition: transform .35s cubic-bezier(.2,.8,.4,1), box-shadow .35s, border-color .35s;
}
.dc::before {
  content:''; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(10,22,40,.08) 0%, rgba(10,22,40,.80) 70%, rgba(10,22,40,.96) 100%);
  transition: background .35s;
}
.dc:hover::before { background: linear-gradient(180deg, rgba(10,22,40,.22) 0%, rgba(10,22,40,.88) 100%); }
.dc::after { content:''; position:absolute; top:0; left:0; right:0; height:3px; z-index:3; opacity:0; transition:opacity .35s; }
.dc:hover { transform: translateY(-10px); }
.dc:hover::after { opacity: 1; }

.dc-t::after { background: var(--gC); }
.dc-t:hover  { box-shadow: 0 20px 55px rgba(6,182,212,.28); border-color: rgba(6,182,212,.5); }
.dc-i::after { background: var(--gB); }
.dc-i:hover  { box-shadow: 0 20px 55px rgba(56,189,248,.26); border-color: rgba(56,189,248,.5); }
.dc-a::after { background: linear-gradient(135deg,#0d6efd,#0d6efd); }
.dc-a:hover  { box-shadow: 0 20px 55px rgba(64,224,208,.32); border-color: rgba(64,224,208,.55); }
.dc-v::after { background: var(--gD); }
.dc-v:hover  { box-shadow: 0 20px 55px rgba(64,224,208,.30); border-color: rgba(64,224,208,.55); }

.dc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; z-index: 2; }
.dc-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 12px;
  transition: background .3s, border-color .3s;
}
.dc:hover .dc-icon { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.40); }
.dc-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.12rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.dc-desc { font-size: .76rem; color: rgba(255,255,255,.50); line-height: 1.5; transition: color .3s; }
.dc:hover .dc-desc { color: rgba(255,255,255,.78); }

/* ═══ PREMIUM CARDS ═══ */
.pcard-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
  position: relative; z-index: 1;
}

.pcard {
  position: relative; overflow: hidden; display: block;
  border-radius: 16px; aspect-ratio: 3/1;
  background: var(--bg2); border: 1px solid var(--bdr);
  text-decoration: none; color: var(--text);
  transition: transform .42s cubic-bezier(.25,.46,.45,.94),
              box-shadow .42s cubic-bezier(.25,.46,.45,.94),
              border-color .42s;
}
.pcard:hover {
  transform: translateY(-7px);
  border-color: var(--bdr2);
  box-shadow: 0 30px 72px rgba(0,0,0,.60), 0 0 48px rgba(201,168,76,.10);
}

/* top accent bar (span element, frees up ::before/::after for sweeps) */
.pcard-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; z-index: 4; opacity: 0; pointer-events: none;
  transition: opacity .42s;
}
.pcard:hover .pcard-bar { opacity: 1; }
.pcard-t .pcard-bar { background: var(--gC); }
.pcard-i .pcard-bar { background: var(--gGold); }
.pcard-a .pcard-bar { background: linear-gradient(90deg,#0d6efd,#48cae4); }
.pcard-v .pcard-bar { background: var(--gD); }

/* LEFT sweep: slides from left edge to center, stays there on hover */
.pcard::before {
  content: ''; position: absolute;
  top: 0; left: -55%; width: 48%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
  transform: skewX(-8deg);
  z-index: 5; pointer-events: none;
  transition: left .60s cubic-bezier(.25,.46,.45,.94);
}
.pcard:hover::before { left: 26%; }

/* RIGHT sweep: slides from right edge to center, stays there on hover */
.pcard::after {
  content: ''; position: absolute;
  top: 0; right: -55%; width: 48%; height: 100%;
  background: linear-gradient(270deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
  transform: skewX(8deg);
  z-index: 5; pointer-events: none;
  transition: right .60s cubic-bezier(.25,.46,.45,.94);
}
.pcard:hover::after { right: 26%; }

/* full-cover image */
.pcard-img { position: absolute; inset: 0; }
.pcard-t .pcard-img { background: linear-gradient(135deg,#0a3d62 0%,#1a5276 50%,#0d5e44 100%); }
.pcard-i .pcard-img { background: linear-gradient(135deg,#1a2a1a 0%,#2d4a1e 50%,#1a3a2a 100%); }
.pcard-a .pcard-img { background: linear-gradient(135deg,#001d3d 0%,#023e8a 50%,#0077b6 100%); }
.pcard-v .pcard-img { background: linear-gradient(135deg,#10002b 0%,#3c096c 50%,#240046 100%); }
.pcard-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
}
.pcard:hover .pcard-img img { transform: scale(1.07); }
.pcard-img::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,22,40,.10) 0%, rgba(10,22,40,.80) 100%);
  transition: background .42s;
}
.pcard:hover .pcard-img::after {
  background: linear-gradient(180deg, rgba(10,22,40,.20) 0%, rgba(10,22,40,.88) 100%);
}

/* category badge */
.pcard-cat {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: 'Space Grotesk', sans-serif; font-size: .63rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px;
  background: rgba(10,22,40,.68); border: 1px solid var(--bdr2);
  backdrop-filter: blur(10px); display: flex; align-items: center; gap: 6px;
}

/* text body at bottom */
.pcard-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 22px 16px; z-index: 3;
  display: flex; flex-direction: column;
}
.pcard-desc { font-size: .82rem; color: rgba(255,255,255,.82); line-height: 1.5; }

/* ═══ WHY SECTION ═══ */
.why-sec { padding: 96px 0 100px; }
.why-head { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.why-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem,3.5vw,2.9rem); font-weight: 700; line-height: 1.18;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  position: relative; z-index: 1;
}
.why-card {
  background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: 20px; padding: 36px 30px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform .38s cubic-bezier(.25,.46,.45,.94),
              box-shadow .38s, border-color .38s;
}
/* top shimmer line */
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg,transparent,var(--bdr2),transparent);
}
/* dark gradient overlay — keeps text readable, lets image breathe at bottom-right */
.why-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1; border-radius: 20px;
  background: linear-gradient(135deg, rgba(6,13,26,.60) 0%, rgba(6,13,26,.20) 50%, rgba(6,13,26,0) 100%);
  pointer-events: none;
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--bdr2);
  box-shadow: 0 24px 64px rgba(0,0,0,.50),
              0 0 40px rgba(201,168,76,.10),
              0 0 80px rgba(6,182,212,.06);
}
/* cinematic background image */
.why-bg-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: bottom right;
  opacity: .70; border-radius: 20px;
  transform: scale(1.0);
  transition: transform .70s cubic-bezier(.25,.46,.45,.94), opacity .45s;
  pointer-events: none; user-select: none;
}
.why-card:hover .why-bg-img {
  transform: scale(1.13);
  opacity: .72;
}
/* lift all content above overlays */
.why-icon-wrap, .why-title, .why-desc, .why-link {
  position: relative; z-index: 3;
}
.why-icon-wrap {
  width: 54px; height: 54px; border-radius: 15px;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--gold);
  transition: background .3s, border-color .3s, transform .3s;
}
.why-card:hover .why-icon-wrap {
  background: rgba(201,168,76,.16);
  border-color: rgba(201,168,76,.42);
  transform: scale(1.08);
}
.why-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.18rem; font-weight: 700;
  color: #fff; line-height: 1.25; transition: color .3s;
}
.why-card:hover .why-title { color: var(--gold); }
.why-desc { font-size: .88rem; color: var(--text2); line-height: 1.65; flex: 1; }
.why-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: .72rem; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gold); text-decoration: none; transition: gap .3s;
}
.why-card:hover .why-link { gap: 14px; }

/* ═══ MANIFESTO ═══ */
.manifest {
  position: relative; z-index: 1; overflow: hidden;
  padding: 96px 0 90px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(12,16,52,.98) 50%, var(--bg) 100%);
}
.manifest::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg,transparent,var(--violet),transparent);
}
.manifest-glow {
  position: absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width: 600px; height: 380px;
  background: radial-gradient(ellipse, rgba(64,224,208,.09) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.manifest-inner { max-width: 820px; margin: 0 auto; padding: 0 32px; text-align: center; position: relative; z-index: 1; }
.m-overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text3); margin-bottom: 22px;
}
.m-overline::before, .m-overline::after { content:''; flex:1; height:1px; width:44px; background:var(--bdr2); }
.m-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem,3vw,2.7rem); font-weight: 600; line-height: 1.4; margin-bottom: 36px;
}
.m-quote em { font-style: normal; background: var(--gA); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.m-pills { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.m-pill {
  font-family: 'Space Grotesk', sans-serif; font-size: .74rem; font-weight: 600;
  padding: 7px 18px; border-radius: 100px;
  background: rgba(255,255,255,.04); border: 1px solid var(--bdr);
  color: var(--text2); transition: all .25s;
}
.m-pill:hover { color: #fff; background: rgba(255,255,255,.09); border-color: var(--bdr2); }

/* ═══ CONTACT ═══ */
.contact-sec {
  position: relative; z-index: 1; overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(12,16,52,.98) 50%, var(--bg) 100%);
}
.contact-sec::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg,transparent,var(--violet),var(--cyan),transparent);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 64px; align-items: start; }
.cl h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; line-height: 1.22; margin-bottom: 14px;
}
.cl > p { color: var(--text2); font-size: .92rem; line-height: 1.8; margin-bottom: 28px; }
.c-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.c-item { display: flex; align-items: center; gap: 14px; color: var(--text2); font-size: .88rem; }
.c-ico {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  background: rgba(255,255,255,.05); border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--fuchsia); transition: all .2s;
}
.c-item:hover .c-ico { background: rgba(64,224,208,.12); border-color: rgba(64,224,208,.38); }
.soc-row { display: flex; gap: 10px; flex-wrap: wrap; }
.soc {
  width: 44px; height: 44px; border-radius: 13px;
  background: rgba(255,255,255,.05); border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); font-size: 1rem; transition: all .25s;
}
.soc:hover { background: rgba(139,92,246,.15); color: #fff; border-color: rgba(139,92,246,.60); transform: translateY(-3px); box-shadow: 0 0 10px rgba(139,92,246,1), 0 0 24px rgba(139,92,246,.80), 0 0 50px rgba(139,92,246,.45), 0 0 90px rgba(139,92,246,.20); filter: drop-shadow(0 0 6px rgba(139,92,246,.85)); }
.cform {
  background: rgba(255,255,255,.04); border: 1px solid var(--bdr);
  border-radius: var(--r-xl); padding: 34px 32px; position: relative; overflow: hidden;
}
.cform::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--gA); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 14px; }
.fg label {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-size: .66rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(200,180,255,.65); margin-bottom: 7px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--bdr); border-radius: 10px;
  padding: 11px 14px; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: .88rem;
  outline: none; resize: none; transition: border-color .2s, background .2s;
}
.fg select option { background: #091232; }
.fg input::placeholder, .fg textarea::placeholder { color: var(--text3); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: rgba(64,224,208,.5); background: rgba(64,224,208,.04);
}
.fg textarea { min-height: 110px; }
.f-btn {
  width: 100%; padding: 13px; border: none; border-radius: 12px; cursor: pointer;
  background: var(--gA); color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-size: .94rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 22px rgba(64,224,208,.4); transition: transform .2s, box-shadow .2s, filter .2s;
}
.f-btn:hover { transform: translateY(-2px); box-shadow: 0 0 0 2px rgba(99,102,241,.40), 0 8px 30px rgba(99,102,241,.65), 0 20px 60px rgba(99,102,241,.45), 0 0 80px rgba(64,224,208,.20); filter: brightness(1.12); }
.f-ok { display: none; text-align: center; padding: 24px 16px; color: var(--text); }
.f-ok i { font-size: 2.5rem; color: var(--cyan); display: block; margin-bottom: 12px; }
.f-ok small { display: block; margin-top: 8px; font-size: .84rem; color: var(--text2); }

/* ── CFORM STACK (contact + newsletter side by side) ── */
.cform-stack { display: flex; flex-direction: column; gap: 10px; }
.cform-stack .cform { padding: 18px 22px; flex: 1; }
.cform-stack .cform .fg { margin-bottom: 9px; }
.cform-stack .cform .fg textarea { min-height: 52px; }
.cform-stack .cform .f-btn { margin-top: 2px; padding: 10px; }

/* ── NEWSLETTER FORM ── */
.nform {
  background: rgba(255,255,255,.04); border: 1px solid var(--bdr);
  border-radius: var(--r-xl); padding: 16px 22px 18px; position: relative; overflow: hidden;
  transition: box-shadow .4s;
}
.nform::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background: linear-gradient(90deg, var(--gold), var(--cyan)); }
.nform-top {
  font-family: 'Space Grotesk', sans-serif; font-size: .70rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 7px; margin-bottom: 6px;
}
.nform-desc { font-size: .80rem; color: var(--text2); line-height: 1.45; margin-bottom: 10px; }
.nform-inline { display: flex; gap: 8px; align-items: stretch; flex-wrap: nowrap; }
.nform-inline input {
  background: rgba(255,255,255,.04); border: 1px solid var(--bdr); border-radius: 10px;
  padding: 10px 12px; color: var(--text); font-family: 'Inter', sans-serif; font-size: .85rem;
  outline: none; transition: border-color .2s, background .2s; min-width: 0;
}
.nform-inline input[type="text"]  { flex: 0 0 26%; }
.nform-inline input[type="email"] { flex: 1; }
.nform-inline input::placeholder { color: var(--text3); }
.nform-inline input:focus { border-color: rgba(64,224,208,.5); background: rgba(64,224,208,.04); }
.nform-inline .n-btn { flex: 0 0 auto; width: auto; padding: 10px 18px; white-space: nowrap; font-size: .82rem; }
.n-btn { background: var(--gA); box-shadow: 0 6px 22px rgba(64,224,208,.35); }

/* pulse when navigated to */
@keyframes pulse-nform {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  30%  { box-shadow: 0 0 0 5px rgba(201,168,76,.50), 0 0 30px rgba(201,168,76,.28); }
  65%  { box-shadow: 0 0 0 10px rgba(201,168,76,.12); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}
.nform.pulse { animation: pulse-nform .85s ease 2; }

/* ═══ FOOTER ═══ */
.footer {
  position: relative; z-index: 1;
  padding: 36px 0;
  background: rgba(10,22,40,.98);
  border-top: 1px solid var(--bdr);
}
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo img { height: 26px; width: auto; opacity: .65; transition: opacity .2s; }
.footer-logo:hover img { opacity: 1; }
.visitor-bubble {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Space Grotesk', sans-serif; font-size: .78rem; font-weight: 600;
  color: var(--text2); background: rgba(64,224,208,.06);
  border: 1px solid rgba(64,224,208,.18); border-radius: 100px;
  padding: 5px 14px 5px 10px; flex-shrink: 0;
}
.vb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fuchsia); box-shadow: 0 0 6px var(--fuchsia); flex-shrink: 0; animation: vbpulse 2.5s ease-in-out infinite; }
@keyframes vbpulse { 0%,100%{opacity:1} 50%{opacity:.35} }
#vis-num { background: var(--gA); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { font-size: .8rem; color: var(--text3); transition: color .2s; }
.footer-nav a:hover { color: var(--text2); }
.footer-copy { font-size: .74rem; color: var(--text3); }

/* ═══ LOADER ═══ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #030a1e;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .75s ease;
}
#loader.fade-out { opacity: 0; pointer-events: none; }
#loader.gone     { display: none; }

#ldrCanvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

.ldr-system {
  position: relative; z-index: 2;
  width: 560px; height: 560px;
  display: flex; align-items: center; justify-content: center;
}

/* Orbit rings */
.ldr-orbit {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
  animation: ldrSpin linear infinite;
}
.ldr-o1 { width:320px; height:320px; margin:-160px 0 0 -160px; animation-duration: 4s; }
.ldr-o2 { width:430px; height:430px; margin:-215px 0 0 -215px; animation-duration: 8s; animation-direction: reverse; }
.ldr-o3 { width:545px; height:545px; margin:-272px 0 0 -272px; animation-duration: 13s; }
@keyframes ldrSpin { to { transform: rotate(360deg); } }

/* Planets at top of each ring */
.ldr-planet {
  position: absolute; border-radius: 50%;
  top: 0; left: 50%; transform: translate(-50%, -50%);
}
.ldr-p-cyan    { width:10px; height:10px; background:#06b6d4; box-shadow:0 0 10px #06b6d4, 0 0 22px rgba(6,182,212,.5); }
.ldr-p-fuchsia { width:14px; height:14px; background:#40e0d0; box-shadow:0 0 12px #40e0d0, 0 0 28px rgba(64,224,208,.5); top:0; }
.ldr-p-amber   { width: 8px; height: 8px; background:#38bdf8; box-shadow:0 0  8px #38bdf8, 0 0 18px rgba(56,189,248,.5); }

/* Logo */
.ldr-logo {
  width: 270px; height: auto; z-index: 3;
  filter: drop-shadow(0 0 24px rgba(64,224,208,.6));
  animation: ldrBreathe 2.8s ease-in-out infinite;
}
@keyframes ldrBreathe {
  0%,100% { filter: drop-shadow(0 0 24px rgba(64,224,208,.55)); transform: scale(1); }
  50%      { filter: drop-shadow(0 0 40px rgba(201,168,76,.65));  transform: scale(1.06); }
}

/* Comets */
.ldr-comet {
  position: fixed; height: 2px; border-radius: 100px; opacity: 0; pointer-events: none;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.92) 55%, rgba(180,230,255,.35));
}
.ldr-c1 { width:140px; top:20%; animation: ldrC1 3.3s ease-in infinite; animation-delay:.5s; }
.ldr-c2 { width: 90px; top:50%; animation: ldrC2 2.6s ease-in infinite; animation-delay:1.5s; }
.ldr-c3 { width:170px; top:74%; animation: ldrC3 4.0s ease-in infinite; animation-delay:2.2s; }
.ldr-c4 { width: 70px; top:38%; animation: ldrC4 2.1s ease-in infinite; animation-delay:3.0s; }

@keyframes ldrC1 { 0%{transform:translate(-200px,0) rotate(-16deg);opacity:0} 12%{opacity:1} 88%{opacity:.8} 100%{transform:translate(110vw,55px) rotate(-16deg);opacity:0} }
@keyframes ldrC2 { 0%{transform:translate(-160px,0) rotate(-9deg); opacity:0} 15%{opacity:1} 85%{opacity:.6} 100%{transform:translate(110vw,25px) rotate(-9deg); opacity:0} }
@keyframes ldrC3 { 0%{transform:translate(-240px,0) rotate(-22deg);opacity:0} 10%{opacity:1} 90%{opacity:.9} 100%{transform:translate(110vw,90px) rotate(-22deg);opacity:0} }
@keyframes ldrC4 { 0%{transform:translate(-130px,0) rotate(-5deg); opacity:0} 18%{opacity:1} 82%{opacity:.5} 100%{transform:translate(110vw,15px) rotate(-5deg); opacity:0} }

/* Loading text */
.ldr-label {
  margin-top: 52px; z-index: 2;
  font-family: 'Space Grotesk', sans-serif; font-size: .82rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: rgba(99,102,241,.55);
}
.ldr-dots span { display: inline-block; animation: ldrBlink 1.4s ease-in-out infinite; }
.ldr-dots span:nth-child(2) { animation-delay: .28s; }
.ldr-dots span:nth-child(3) { animation-delay: .56s; }
@keyframes ldrBlink { 0%,60%,100%{opacity:0} 30%{opacity:1} }

/* ═══ KEYFRAMES ═══ */
@keyframes fdU { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
@keyframes spin { to{transform:rotate(360deg)} }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .hero-left { padding: 70px 28px 90px; }
  .blog-sidebar { display: none; }
  .hero { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 100dvh; }
  .blog-sidebar { display: none; }
  .hero-left {
    padding: 12px 28px 48px;
    align-items: flex-start; text-align: left;
    height: calc(100svh - var(--nav-h));
    justify-content: flex-start;
  }
  .hero-badge {
    display: inline-flex;
    margin-bottom: 14px;
  }
  .hero-cats {
    flex-direction: column; align-items: flex-start;
    gap: 10px; margin-bottom: 0;
  }
  .hcat { width: auto; }
  .hero-ctas {
    bottom: 12%;
    gap: 12px;
    flex-wrap: wrap; justify-content: center;
  }
  .hero-socials { margin-top: 0; }
  /* Logo: smaller, hidden until navbar turns opaque on scroll */
  .nav-logo { opacity: 0; transition: opacity .35s; pointer-events: none; }
  .navbar.scrolled .nav-logo { opacity: 1; pointer-events: auto; }
  .nav-logo img { height: 40px; }
  .domains-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-bg-img { opacity: .80; }
  .pcard-grid { grid-template-columns: 1fr; gap: 14px; }
  .pcard { aspect-ratio: 2/1; }
  .pcard-body { padding: 8px 16px 14px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .f-row { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-top { justify-content: center; text-align: center; }
  .footer-nav { justify-content: center; }
  .ticker-wrap { display: none; }
  .hero-scroll { display: none; }
}
/* ═══════════════════════════════════════════════════════════
   PAGINI SECUNDARE — stiluri comune
═══════════════════════════════════════════════════════════ */

/* Nav link activ pe pagina curentă */
.nav-links a.nav-active { color: var(--cyan) !important; }
.mobile-menu a.nav-active { color: var(--cyan) !important; border-color: var(--bdr2) !important; }

/* ── MINI-HERO ── */
.page-hero {
  position: relative; height: 55vh; min-height: 360px;
  display: flex; align-items: flex-end; overflow: visible;
  margin-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: top; z-index: 0;
  clip-path: inset(0);
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(3,10,30,.88) 0%, rgba(3,10,30,.38) 55%, rgba(3,10,30,.10) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding-bottom: 52px; width: 100%;
}
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .76rem; color: rgba(255,255,255,.48); margin-bottom: 14px;
}
.page-breadcrumb a { color: inherit; text-decoration: none; transition: color .2s; }
.page-breadcrumb a:hover { color: var(--cyan); }
.page-breadcrumb i { font-size: .58rem; }
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 700;
  line-height: 1.1; color: #fff; margin: 0 0 12px;
}
.page-hero-tagline {
  font-size: clamp(.9rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,.68); max-width: 520px; margin: 0;
}

/* ── PAGE INTRO ── */
.page-intro { padding: 64px 0 48px; text-align: center; }
.page-intro-text {
  font-size: clamp(.97rem, 1.4vw, 1.1rem); color: var(--text2);
  max-width: 600px; margin: 0 auto 48px; line-height: 1.7;
}
.page-stats { display: flex; gap: 56px; justify-content: center; align-items: center; }
.pstat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pstat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: var(--cyan); line-height: 1;
}
.pstat small {
  font-size: .74rem; color: var(--text3);
  text-transform: uppercase; letter-spacing: 1.2px;
}
.pstat-divider { width: 1px; height: 48px; background: var(--bdr); }

/* ── SECTION HEADER ── */
.sec-header { margin-bottom: 28px; }
.sec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 700;
  color: var(--text); margin: 0 0 4px;
}
.sec-sub { font-size: .83rem; color: var(--text3); }

/* ── ARTICLE CARDS ── */
.featured-sec { padding: 0 0 80px; }
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.articles-sec { padding: 0 0 80px; }
.acard-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-bottom: 36px;
}
.acard {
  background: rgba(255,255,255,.03); border: 1px solid var(--bdr);
  border-radius: var(--r-xl); overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.acard:hover {
  transform: translateY(-5px);
  border-color: rgba(64,224,208,.28);
  box-shadow: 0 16px 48px rgba(64,224,208,.10);
}
.acard-img { aspect-ratio: 16/9; overflow: hidden; }
.acard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.acard:hover .acard-img img { transform: scale(1.07); }
.acard-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.acard-cat {
  font-size: .70rem; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1.3px; color: var(--cyan);
}
.acard-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(.9rem, 1.3vw, 1.05rem); font-weight: 600;
  color: var(--text); line-height: 1.38; margin: 0;
}
.acard-excerpt {
  font-size: .82rem; color: var(--text2); line-height: 1.5; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.acard-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.acard-date { font-size: .73rem; color: var(--text3); }
.acard-arrow { font-size: .75rem; color: var(--cyan); opacity: 0; transition: opacity .2s, transform .2s; }
.acard:hover .acard-arrow { opacity: 1; transform: translateX(3px); }

/* ── FEED FILTERS ── */
.feed-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.ff-btn {
  padding: 7px 18px; border: 1px solid var(--bdr); border-radius: 100px;
  background: transparent; color: var(--text2);
  font-family: 'Space Grotesk', sans-serif; font-size: .79rem; font-weight: 500;
  cursor: pointer; transition: all .2s;
}
.ff-btn:hover { border-color: rgba(64,224,208,.40); color: var(--cyan); }
.ff-btn.active { background: var(--gA); border-color: transparent; color: #fff; box-shadow: 0 4px 16px rgba(64,224,208,.25); }

/* ── LOAD MORE ── */
.load-more-wrap { text-align: center; padding: 8px 0; }
.load-more-btn { display: inline-flex; align-items: center; gap: 9px; }
.load-more-btn.loading { opacity: .6; pointer-events: none; }

/* ── SKELETON LOADING ── */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.09) 50%, rgba(255,255,255,.04) 100%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 6px;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.skel-card {
  background: rgba(255,255,255,.03); border: 1px solid var(--bdr);
  border-radius: var(--r-xl); overflow: hidden;
}
.skel-img { aspect-ratio: 16/9; }
.skel-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.skel-line { height: 11px; }

/* ── DESTINATIONS GRID ── */
.dest-sec {
  padding: 80px 0; background: rgba(255,255,255,.014);
  border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
}
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.dest-card {
  position: relative; aspect-ratio: 3/2; border-radius: var(--r-xl);
  overflow: hidden; text-decoration: none; display: block;
}
.dest-card-bg {
  position: absolute; inset: 0; transition: transform .45s;
  border-radius: inherit;
}
.dest-card:hover .dest-card-bg { transform: scale(1.09); }
.dest-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(3,10,30,.82) 0%, rgba(3,10,30,.08) 65%);
}
.dest-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 14px; z-index: 2; }
.dest-card-flag { font-size: 1.35rem; line-height: 1; margin-bottom: 2px; }
.dest-card-name {
  font-family: 'Space Grotesk', sans-serif; font-size: .97rem;
  font-weight: 700; color: #fff; margin: 0 0 6px;
}
.dest-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.dest-tag {
  font-size: .65rem; color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.10); border-radius: 4px; padding: 2px 7px;
}

/* ── INFO LIST ── */
.info-sec { padding: 80px 0; }
.info-list { display: flex; flex-direction: column; gap: 4px; }
.info-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 16px; border-radius: 12px; border: 1px solid transparent;
  text-decoration: none; transition: background .2s, border-color .2s;
}
.info-item:hover { background: rgba(255,255,255,.03); border-color: var(--bdr); }
.info-item-icon {
  flex: 0 0 38px; height: 38px; border-radius: 10px;
  background: rgba(64,224,208,.08); border: 1px solid rgba(64,224,208,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: .85rem; flex-shrink: 0;
}
.info-item-thumb {
  flex: 0 0 38px; height: 38px; border-radius: 8px;
  object-fit: cover; border: 1px solid rgba(255,255,255,.12); flex-shrink: 0;
}
.info-item-thumb--fallback {
  display: flex; align-items: center; justify-content: center;
  background: rgba(64,224,208,.08); color: var(--cyan); font-size: .85rem;
}
.info-item-body { flex: 1; min-width: 0; }
.info-item-title {
  font-family: 'Space Grotesk', sans-serif; font-size: .94rem;
  font-weight: 600; color: var(--text); margin: 0 0 3px;
}
.info-item-excerpt { font-size: .80rem; color: var(--text2); margin: 0; line-height: 1.4; }
.info-item-arrow { color: var(--text3); font-size: .78rem; flex-shrink: 0; transition: transform .2s, color .2s; }
.info-item:hover .info-item-arrow { color: var(--cyan); transform: translateX(3px); }

/* ── NEWSLETTER SECTION (pagini secundare) ── */
.nl-sec { padding: 64px 0 96px; }
.nl-sec .nform { max-width: 640px; margin: 0 auto; }

/* ── PAGINI SECUNDARE RESPONSIVE ── */
@media (max-width: 900px) {
  .page-hero { height: 44vh; min-height: 300px; }
  .feat-grid { grid-template-columns: 1fr; }
  .acard-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .page-stats { gap: 24px; }
  .pstat-divider { height: 32px; }
}
@media (max-width: 600px) {
  .page-hero h1 { font-size: 1.8rem; }
  .page-stats { gap: 16px; }
  .pstat-num { font-size: 2rem; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feat-grid { gap: 14px; }
  .acard-grid { gap: 14px; }
}

/* ── PLACEHOLDER CARD IMAGE (fără foto reală) ── */
.acard-ph {
  aspect-ratio: 16/9; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.acard-ph i { font-size: 3rem; color: rgba(255,255,255,.25); }
.acard-ph-warm    { background: linear-gradient(135deg, #8b001e 0%, #c95070 50%, #e8a0b0 100%); }
.acard-ph-tropics { background: linear-gradient(135deg, #145230 0%, #c87010 50%, #e8b830 100%); }
.acard-ph-ocean   { background: linear-gradient(135deg, #00489a 0%, #0090c0 55%, #30c8e0 100%); }

/* ── SECTION SOON BADGE ── */
.sec-title-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 4px;
}
.sec-title-row .sec-title { margin: 0; }
.sec-soon {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,.10); border: 1px solid rgba(201,168,76,.32);
  color: #d4ac3a; border-radius: 6px; padding: 4px 11px;
  font-size: .68rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase; letter-spacing: 1.4px; flex-shrink: 0;
}

/* ── RIBBON "În curând" ── */
.acard { position: relative; }
.ribbon-wrap {
  position: absolute; top: 0; right: 0;
  width: 88px; height: 88px;
  overflow: hidden; z-index: 5; pointer-events: none;
}
.ribbon {
  position: absolute; top: 22px; right: -28px;
  width: 122px; padding: 6px 0; text-align: center;
  background: linear-gradient(90deg, #a87c2a 0%, #e8c960 50%, #a87c2a 100%);
  color: #07120a;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .58rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.6px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,.45);
}

/* ── CONSTRUCTION BANNER ── */
.constr-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  background: #071410;
  border-top: 4px solid transparent;
  border-image: repeating-linear-gradient(
    90deg,
    #e8c042 0, #e8c042 22px,
    #071410 22px, #071410 44px
  ) 4;
  padding: 11px 20px 11px 24px;
  display: flex; align-items: center; gap: 16px;
  animation: constrSlideUp .5s cubic-bezier(.22,.68,0,1.2) both;
}
.constr-banner.hiding {
  animation: constrSlideDown .3s ease forwards;
}
@keyframes constrSlideUp   { from{transform:translateY(100%)} to{transform:translateY(0)} }
@keyframes constrSlideDown { from{transform:translateY(0)}    to{transform:translateY(110%)} }
.constr-plane {
  font-size: 1.5rem; flex-shrink: 0;
  display: inline-block;
  animation: constrBounce 2.2s ease-in-out infinite;
}
@keyframes constrBounce { 0%,100%{transform:translateY(0) rotate(-15deg)} 50%{transform:translateY(-6px) rotate(-15deg)} }
.constr-msg {
  flex: 1; font-size: .82rem; color: rgba(220,240,210,.82); line-height: 1.45;
}
.constr-msg strong { color: #e8c042; font-family: 'Space Grotesk', sans-serif; font-size: .88rem; }
.constr-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(232,192,66,.12); border: 1px solid rgba(232,192,66,.28);
  border-radius: 6px; padding: 2px 8px; margin-right: 8px;
  font-size: .68rem; font-weight: 700; color: #e8c042; font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase; letter-spacing: 1.2px; vertical-align: middle;
}
.constr-close {
  flex-shrink: 0; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5);
  border-radius: 8px; padding: 7px 12px; cursor: pointer;
  font-size: .8rem; transition: all .2s; line-height: 1; white-space: nowrap;
}
.constr-close:hover { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.25); }
@media (max-width: 600px) {
  .constr-banner { gap: 10px; padding: 10px 14px; }
  .constr-msg { font-size: .75rem; }
  .constr-plane { font-size: 1.2rem; }
}

/* ── TARI PAGE — navbar transparent ── */
body.page-tari .navbar.scrolled {
  background: rgba(6,24,38,.50);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom-color: rgba(6,182,212,.14);
}

/* ── TARI PAGE — fundal vesel ── */
body.page-tari {
  background:
    radial-gradient(ellipse 130% 40% at 50% -2%,  rgba(6,182,212,.18)  0%, transparent 60%),
    radial-gradient(ellipse  70% 55% at 88% 92%,  rgba(99,102,241,.11) 0%, transparent 55%),
    radial-gradient(ellipse  55% 40% at  8% 55%,  rgba(6,182,212,.07)  0%, transparent 50%),
    linear-gradient(170deg,  #061c2c 0%, #0b2236 45%, #071824 100%);
  background-attachment: fixed;
}
body.page-tari .articles-sec {
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(6,182,212,.06) 0%, transparent 65%);
}
body.page-tari .featured-sec {
  background: radial-gradient(ellipse 80% 100% at 70% 50%, rgba(201,168,76,.04) 0%, transparent 65%);
}
body.page-tari .dest-sec {
  background:
    linear-gradient(180deg, rgba(6,182,212,.06) 0%, rgba(3,10,30,.5) 50%, rgba(6,182,212,.04) 100%),
    rgba(255,255,255,.012);
  border-color: rgba(6,182,212,.18);
}
body.page-tari .info-sec {
  background: radial-gradient(ellipse 80% 100% at 30% 50%, rgba(6,182,212,.05) 0%, transparent 65%);
}
body.page-tari .nl-sec {
  background: radial-gradient(ellipse 65% 80% at 50% 50%, rgba(99,102,241,.08) 0%, transparent 70%);
}

/* ── INVESTITII PAGE — fundal financiar ── */
body.page-investitii {
  background:
    radial-gradient(ellipse 130% 42% at 50% -2%,  rgba(201,168,76,.16) 0%, transparent 60%),
    radial-gradient(ellipse  65% 50% at 88% 90%,  rgba(22,101,52,.20)  0%, transparent 55%),
    radial-gradient(ellipse  55% 40% at  8% 60%,  rgba(201,168,76,.07) 0%, transparent 50%),
    linear-gradient(170deg, #060f08 0%, #0a1a0e 45%, #060c08 100%);
  background-attachment: fixed;
}
body.page-investitii .navbar.scrolled {
  background: rgba(6,15,8,.52);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom-color: rgba(201,168,76,.15);
}
body.page-investitii .articles-sec {
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(201,168,76,.055) 0%, transparent 65%);
}
body.page-investitii .featured-sec {
  background: radial-gradient(ellipse 80% 100% at 30% 50%, rgba(22,101,52,.06) 0%, transparent 65%);
}
body.page-investitii .dest-sec {
  background:
    linear-gradient(180deg, rgba(201,168,76,.05) 0%, rgba(3,10,30,.5) 50%, rgba(22,101,52,.04) 100%),
    rgba(255,255,255,.012);
  border-color: rgba(201,168,76,.18);
}
body.page-investitii .info-sec {
  background: radial-gradient(ellipse 80% 100% at 70% 50%, rgba(22,101,52,.05) 0%, transparent 65%);
}
body.page-investitii .nl-sec {
  background: radial-gradient(ellipse 65% 80% at 50% 50%, rgba(201,168,76,.07) 0%, transparent 70%);
}

/* ── INVESTITII — placeholder card gradients ── */
.acard-ph-invest-green  { background: linear-gradient(135deg, #051f0a 0%, #0a5a1a 55%, #169030 100%); }
.acard-ph-invest-blue   { background: linear-gradient(135deg, #02071e 0%, #0a1e60 55%, #1638a0 100%); }
.acard-ph-invest-purple { background: linear-gradient(135deg, #180535 0%, #380e68 55%, #6820a8 100%); }

/* ── INVESTITII BANNER accent ── */
.constr-invest { border-image: repeating-linear-gradient(
    90deg,
    #c9a84c 0, #c9a84c 22px,
    #060f08 22px, #060f08 44px
  ) 4; background: #060f08; }

/* ── LUMEA-AI PAGE — fundal electric ── */
body.page-lumea-ai {
  background:
    radial-gradient(ellipse 130% 40% at 50% -2%,  rgba(139,92,246,.22)  0%, transparent 60%),
    radial-gradient(ellipse  70% 55% at 88% 92%,  rgba(59,130,246,.14)  0%, transparent 55%),
    radial-gradient(ellipse  55% 40% at  8% 55%,  rgba(236,72,153,.07)  0%, transparent 50%),
    linear-gradient(170deg,  #04021a 0%, #08042e 45%, #030218 100%);
  background-attachment: fixed;
}
body.page-lumea-ai .navbar.scrolled {
  background: rgba(4,2,26,.52);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom-color: rgba(139,92,246,.18);
}
body.page-lumea-ai .articles-sec {
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(139,92,246,.06) 0%, transparent 65%);
}
body.page-lumea-ai .featured-sec {
  background: radial-gradient(ellipse 80% 100% at 70% 50%, rgba(59,130,246,.05) 0%, transparent 65%);
}
body.page-lumea-ai .dest-sec {
  background:
    linear-gradient(180deg, rgba(139,92,246,.05) 0%, rgba(3,10,30,.5) 50%, rgba(59,130,246,.04) 100%),
    rgba(255,255,255,.012);
  border-color: rgba(139,92,246,.18);
}
body.page-lumea-ai .info-sec {
  background: radial-gradient(ellipse 80% 100% at 30% 50%, rgba(139,92,246,.05) 0%, transparent 65%);
}
body.page-lumea-ai .nl-sec {
  background: radial-gradient(ellipse 65% 80% at 50% 50%, rgba(59,130,246,.07) 0%, transparent 70%);
}

/* ── LUMEA-AI — placeholder card gradients ── */
.acard-ph-ai-purple { background: linear-gradient(135deg, #0d0224 0%, #2d0a60 55%, #5418a8 100%); }
.acard-ph-ai-blue   { background: linear-gradient(135deg, #010720 0%, #06205c 55%, #1040a8 100%); }
.acard-ph-ai-cyan   { background: linear-gradient(135deg, #001820 0%, #014050 55%, #0298a0 100%); }

/* ── LUMEA-AI BANNER accent ── */
.constr-ai {
  border-image: repeating-linear-gradient(
    90deg,
    #7c3aed 0, #7c3aed 22px,
    #04021a 22px, #04021a 44px
  ) 4;
  background: #04021a;
}

/* ── VIITOR PAGE — cosmic/space ── */
body.page-viitor {
  background:
    radial-gradient(ellipse 130% 40% at 50% -2%,  rgba(167,139,250,.20)  0%, transparent 60%),
    radial-gradient(ellipse  70% 55% at 88% 92%,  rgba(251,191,36,.10)   0%, transparent 55%),
    radial-gradient(ellipse  55% 40% at  8% 55%,  rgba(167,139,250,.07)  0%, transparent 50%),
    linear-gradient(170deg,  #060416 0%, #0c0630 45%, #060418 100%);
  background-attachment: fixed;
}
body.page-viitor .navbar.scrolled {
  background: rgba(6,4,22,.52);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom-color: rgba(167,139,250,.18);
}
body.page-viitor .articles-sec {
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(167,139,250,.06) 0%, transparent 65%);
}
body.page-viitor .featured-sec {
  background: radial-gradient(ellipse 80% 100% at 30% 50%, rgba(251,191,36,.04) 0%, transparent 65%);
}
body.page-viitor .dest-sec {
  background:
    linear-gradient(180deg, rgba(167,139,250,.05) 0%, rgba(3,10,30,.5) 50%, rgba(251,191,36,.04) 100%),
    rgba(255,255,255,.012);
  border-color: rgba(167,139,250,.18);
}
body.page-viitor .info-sec {
  background: radial-gradient(ellipse 80% 100% at 70% 50%, rgba(167,139,250,.05) 0%, transparent 65%);
}
body.page-viitor .nl-sec {
  background: radial-gradient(ellipse 65% 80% at 50% 50%, rgba(251,191,36,.07) 0%, transparent 70%);
}

/* ── VIITOR — placeholder card gradients ── */
.acard-ph-viitor-purple { background: linear-gradient(135deg, #0c0220 0%, #28086a 55%, #4810b8 100%); }
.acard-ph-viitor-gold   { background: linear-gradient(135deg, #201000 0%, #6a3800 55%, #c87200 100%); }
.acard-ph-viitor-teal   { background: linear-gradient(135deg, #001818 0%, #024848 55%, #088090 100%); }

/* ── VIITOR BANNER accent ── */
.constr-viitor {
  border-image: repeating-linear-gradient(
    90deg,
    #7c5af0 0, #7c5af0 22px,
    #060416 22px, #060416 44px
  ) 4;
  background: #060416;
}

/* ── DESPRE PAGE ── */
body.page-despre {
  background:
    radial-gradient(ellipse 130% 40% at 50% -2%,  rgba(6,182,212,.12)  0%, transparent 60%),
    radial-gradient(ellipse  70% 55% at 90% 90%,  rgba(99,102,241,.10) 0%, transparent 55%),
    linear-gradient(170deg, #030a1e 0%, #050f28 45%, #030a1e 100%);
  background-attachment: fixed;
}
body.page-despre .navbar.scrolled {
  background: rgba(3,10,30,.52);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom-color: rgba(6,182,212,.15);
}
.page-hero-gradient { background: transparent; }
.page-hero-gradient .page-hero-bg { display: none; }

/* ── MISSION SECTION ── */
.mission-sec { padding: 80px 0; }
.mission-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
.mission-text h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700;
  color: var(--text); margin: 0 0 20px; line-height: 1.2;
}
.mission-text p { color: var(--text2); line-height: 1.75; margin: 0 0 16px; font-size: .96rem; }
.mission-text p:last-child { margin: 0; }
.mstat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mstat-card {
  background: rgba(255,255,255,.025); border: 1px solid var(--bdr);
  border-radius: var(--r-xl); padding: 22px 18px; text-align: center;
}
.mstat-icon {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(6,182,212,.08); border: 1px solid rgba(6,182,212,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: .9rem; margin: 0 auto 10px;
}
.mstat-label { font-size: .73rem; color: var(--text3); margin: 0 0 5px; text-transform: uppercase; letter-spacing: .8px; }
.mstat-val { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 0; }

/* ── VALUES SECTION ── */
.values-sec { padding: 80px 0; background: rgba(255,255,255,.014); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card {
  padding: 28px 22px; background: rgba(255,255,255,.025);
  border: 1px solid var(--bdr); border-radius: var(--r-xl);
  transition: background .2s, border-color .2s;
}
.value-card:hover { background: rgba(255,255,255,.04); border-color: rgba(6,182,212,.25); }
.value-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(6,182,212,.08); border: 1px solid rgba(6,182,212,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 1rem; margin-bottom: 14px;
}
.value-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); margin: 0 0 8px; }
.value-card p { font-size: .83rem; color: var(--text2); line-height: 1.55; margin: 0; }

/* ── DOMAINS PREVIEW SECTION ── */
.dp-sec { padding: 80px 0; }
.dp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.dp-card {
  display: flex; align-items: flex-start; gap: 18px; padding: 22px 24px;
  background: rgba(255,255,255,.025); border: 1px solid var(--bdr);
  border-radius: var(--r-xl); text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}
.dp-card:hover { background: rgba(255,255,255,.04); border-color: rgba(6,182,212,.25); transform: translateY(-2px); }
.dp-card-icon { font-size: 2.2rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.dp-card-body { flex: 1; min-width: 0; }
.dp-card-body h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0 0 6px; }
.dp-card-body p { font-size: .83rem; color: var(--text2); line-height: 1.55; margin: 0 0 10px; }
.dp-card-link { font-size: .79rem; font-weight: 600; color: var(--cyan); display: inline-flex; align-items: center; gap: 6px; }

/* ── TEAM SECTION ── */
.team-sec { padding: 80px 0; background: rgba(255,255,255,.014); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card {
  position: relative; background: rgba(255,255,255,.025); border: 1px solid var(--bdr);
  border-radius: var(--r-xl); padding: 32px 24px; text-align: center; overflow: hidden;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(6,182,212,.15) 0%, rgba(99,102,241,.15) 100%);
  border: 2px solid rgba(6,182,212,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.9rem; line-height: 1;
}
.team-avatar-ph { color: rgba(6,182,212,.4); font-size: 1.5rem; }
.team-avatar-photo { background: none; }
.team-avatar-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.team-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.02rem; font-weight: 700; color: var(--text); margin: 0 0 4px; }
.team-role { font-size: .82rem; color: var(--cyan); margin: 0 0 10px; font-weight: 500; }
.team-bio { font-size: .8rem; color: var(--text2); line-height: 1.55; margin: 0; }

/* ── DESPRE RESPONSIVE ── */
@media (max-width: 900px) {
  .mission-grid { grid-template-columns: 1fr; gap: 36px; }
  .values-grid  { grid-template-columns: repeat(2, 1fr); }
  .dp-grid      { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .mstat-grid  { grid-template-columns: repeat(2, 1fr); }
  .dp-card     { flex-direction: column; gap: 10px; }
}

/* ═══ SFARSIT PAGINI SECUNDARE ═══ */

@media (max-width: 600px) {
  .hero-hl { font-size: 2.2rem; }
  .hero-tagline { font-size: .9rem; }
  .domains-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .dc { aspect-ratio: 2/3; }
  /* Compact forms on portrait mobile */
  .cform-stack .cform { padding: 12px 14px; }
  .cform-stack .cform .fg { margin-bottom: 6px; }
  .cform-stack .cform .fg textarea { min-height: 38px; }
  .cform-stack .cform .f-btn { padding: 9px; }
  .nform { padding: 12px 14px 14px; }
  .nform-desc { font-size: .75rem; margin-bottom: 6px; }
  .nform-inline { flex-direction: column; gap: 6px; }
  .nform-inline input[type="text"],
  .nform-inline input[type="email"] { flex: none; width: 100%; }
  .nform-inline .n-btn { width: 100%; flex: none; }
}

/* ── DAILY NEWS HERO BOX ── */
.daily-news-box {
  width: 320px;
  background: rgba(3,10,30,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 20px;
}
.page-hero .daily-news-box {
  position: absolute;
  right: 32px;
  top: 24px;
  z-index: 3;
}
.dn-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dn-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: opacity .2s;
}
.dn-item:last-child { border-bottom: none; }
.dn-item:hover { opacity: .72; }
.dn-title {
  font-size: .88rem;
  color: var(--text1);
  line-height: 1.45;
}
.dn-date {
  font-size: .75rem;
  color: var(--text3);
}
.dn-empty, .dn-loading {
  font-size: .82rem;
  color: var(--text3);
  text-align: center;
  padding: 20px 0;
}
@media (max-width: 900px) {
  .page-hero .daily-news-box {
    right: 12px;
    left: auto;
    width: 200px;
    top: 12px;
    bottom: auto;
    transform: none;
    padding: 11px 13px;
    border-radius: 12px;
  }
  .page-hero .daily-news-box .dn-header {
    font-size: .63rem;
    margin-bottom: 8px;
    padding-bottom: 7px;
    gap: 5px;
  }
  .page-hero .daily-news-box .dn-item {
    padding: 7px 0;
    gap: 3px;
  }
  .page-hero .daily-news-box .dn-title {
    font-size: .66rem;
    line-height: 1.35;
  }
  .page-hero .daily-news-box .dn-date {
    font-size: .57rem;
  }
  .page-hero .daily-news-box .dn-archive-btn {
    font-size: .58rem;
    margin-top: 8px;
    padding: 5px 0;
  }
}

/* ── "TOATE ARTICOLELE" PULSE BUTTON ── */
.btn-all-articles {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 28px; border-radius: 30px;
  background: rgba(6,182,212,.10); border: 1.5px solid rgba(6,182,212,.35);
  color: rgba(6,182,212,.9); font-size: .9rem; font-weight: 600;
  font-family: inherit; text-decoration: none; cursor: pointer;
  position: relative; transition: background .2s, border-color .2s, color .2s;
  animation: all-art-pulse 2.5s ease-in-out infinite;
}
.btn-all-articles:hover {
  background: rgba(6,182,212,.22); border-color: rgba(6,182,212,.65);
  color: #fff; animation: none; box-shadow: 0 0 22px rgba(6,182,212,.28);
}
.btn-all-articles::before {
  content: ''; position: absolute; inset: -10px; border-radius: 40px;
  background: radial-gradient(ellipse at center, rgba(6,182,212,.18) 0%, transparent 70%);
  animation: all-art-fog 2.5s ease-in-out infinite;
  pointer-events: none; z-index: -1;
}
@keyframes all-art-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6,182,212,0); }
  50%       { box-shadow: 0 0 18px 4px rgba(6,182,212,.18); }
}
@keyframes all-art-fog {
  0%, 100% { opacity: .5; transform: scale(.92); }
  50%       { opacity: 1;  transform: scale(1.08); }
}

/* ── DAILY NEWS ARCHIVE LINK ── */
.dn-archive-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 14px; padding: 8px 0; font-size: .8rem;
  color: rgba(6,182,212,.8); text-decoration: none;
  border-top: 1px solid rgba(255,255,255,.08); transition: color .2s;
}
.dn-archive-btn:hover { color: #fff; }
