:root {
  --bg: #050708;
  --card: #0b0f10;
  --text: #eaffea;
  --muted: #a6b1a6;
  --accent: #19ff2f;
  --accent2: #a8ff27;
  --yellow: #ffd84d;
  --border: rgba(255, 255, 255, .08);
  --shadow: 0 18px 70px rgba(0, 0, 0, .55);
}

* { box-sizing: border-box; }
html, body { height: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container { width: min(1120px, 92vw); margin: 0 auto; }

/* --- FUNDALUL MODIFICAT --- */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('assets/background.png') no-repeat center center;
  background-size: cover;
  filter: blur(10px);
  transform: scale(1.05);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 8, 0.65);
}

.glow {
  position: absolute;
  inset: -30%;
  background: 
    radial-gradient(closest-side at 20% 15%, rgba(25, 255, 47, .20), transparent 60%),
    radial-gradient(closest-side at 90% 10%, rgba(168, 255, 39, .12), transparent 55%);
  z-index: -1;
}

.noise {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .04;
  pointer-events: none;
}

/* --- COMPONENTE --- */
.header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 7, 8, .4);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 75px; height: 75px; border-radius: 12px; }
.brand__text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.5px; }

/* --- EFECT ZOOM PE NAVIGATIE --- */
.nav { display: flex; gap: 30px; font-weight: 500; color: var(--muted); }

.nav a {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
  transform: scale(1.2); /* Mărire 20% */
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  border: none;
  font-family: inherit;
}

.btn--primary { background: var(--accent); color: #000; box-shadow: 0 4px 20px rgba(25, 255, 47, .3); }
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.1); }

.btn--ghost { background: rgba(255, 255, 255, .05); color: #fff; border: 1px solid var(--border); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); }

.btn--full { width: 100%; }

/* --- HERO SECTION --- */
.hero { padding: 80px 0 100px; }
.hero__inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(25, 255, 47, 0.1);
  border: 1px solid rgba(25, 255, 47, 0.2);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(25, 255, 47, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(25, 255, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(25, 255, 47, 0); }
}

h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(40px, 6vw, 64px); font-weight: 900; line-height: 1.1; margin: 20px 0; }
.accent { color: var(--accent); }

.lead { font-size: 20px; color: var(--muted); line-height: 1.6; max-width: 540px; margin-bottom: 40px; }

.hero__actions { display: flex; gap: 16px; margin-bottom: 60px; }

.stats { display: flex; gap: 40px; }
.stat__num { font-size: 28px; font-weight: 800; color: #fff; }
.stat__label { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* --- CARDS --- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-5px); }

.server { display: flex; flex-direction: column; gap: 24px; }
.server__top { display: flex; align-items: center; gap: 16px; }
.server__logo { width: 56px; height: 56px; border-radius: 16px; }
.server__name { font-weight: 800; font-size: 18px; }
.server__sub { color: var(--muted); font-size: 13px; }

.pill { background: rgba(25, 255, 47, .1); color: var(--accent); padding: 4px 10px; border-radius: 8px; font-size: 12px; font-weight: 800; margin-left: auto; }

.row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); }
.row:last-child { border: none; }
.row span:first-child { color: var(--muted); font-size: 14px; }

.copy { background: none; border: none; color: #fff; cursor: pointer; display: flex; gap: 8px; font-family: inherit; font-size: 14px; font-weight: 600; }
.copy:hover { color: var(--accent); }

.link { color: var(--accent); font-weight: 600; font-size: 14px; transition: 0.2s; }
.link:hover { opacity: 0.8; text-decoration: underline; }

/* --- FEATURES --- */
.section { padding: 100px 0; }
.section__head { text-align: center; margin-bottom: 60px; max-width: 800px; margin-inline: auto; }
.section__head h2 { font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 900; margin-bottom: 16px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature { text-align: left; }
.feature__icon { font-size: 32px; margin-bottom: 20px; }
.feature h3 { margin-bottom: 12px; font-size: 20px; }
.feature p { color: var(--muted); line-height: 1.6; }

/* --- TOAST --- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 800;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}

/* --- FOOTER --- */
.footer { padding: 40px 0; border-top: 1px solid var(--border); margin-top: 60px; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; }
.footer__left { display: flex; align-items: center; gap: 15px; }
.footer__logo { width: 50px; height: 50px; border-radius: 10px; }
.footer__right { display: flex; gap: 24px; color: var(--muted); font-size: 14px; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__left { display: flex; flex-direction: column; align-items: center; }
  .lead { margin-inline: auto; }
  .features { grid-template-columns: 1fr; }
  .nav { display: none; }
  .header__cta .btn--ghost { display: none; }
  .burger { display: flex; }
}

.burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 5px; }
.burger span { width: 28px; height: 3px; background: #fff; border-radius: 4px; transition: 0.3s; }

.mobile {
  position: fixed; inset: 0; top: 116px; background: var(--bg); z-index: 90; padding: 40px 0;
  border-top: 1px solid var(--border);
}
.mobile__inner { display: flex; flex-direction: column; gap: 24px; font-size: 20px; font-weight: 700; text-align: center; }