:root {
  --bg: #000;
  --text: #fff;
  --accent: #c9c9c9;
  --muted: #999;
  --menu-bg: rgba(5,5,5,0.97);
  --card-bg: #111;
  --section-dark: #050505;
  --section-soft: #080808;
  --primary: #f5c15b;
  --primary-soft: rgba(245,193,91,0.12);
}

/* GENERAL */
html, body {
  margin: 0;
  height: 100%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ✨ GLOBAL PREMIUM HEADLINE GLOW */
h1, h2, h3 {
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow:
    0 0 6px rgba(255,255,255,0.35),
    0 0 12px rgba(255,255,255,0.20),
    0 0 18px rgba(255,255,255,0.12);
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo img {
  height: 48px;
  margin-top: 10px;
}

/* HAMBURGER (mobile) */
.menu-icon {
  position: absolute;
  right: 20px;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-icon div {
  height: 3px;
  width: 100%;
  background: var(--text);
  border-radius: 100px;
  transition: all 0.3s ease;
}

/* MOBILE MENU – FULL-SCREEN OVERLAY */
.mobile-menu {
  position: fixed;
  inset: 0;                  /* top:0 right:0 bottom:0 left:0 */
  width: 100vw;
  height: 100vh;
  background: var(--menu-bg);
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 200;
  padding: 24px 22px 32px;
  box-sizing: border-box;

  /* ascuns complet */
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* MENU HEADER (LOGO + EMAIL ÎN MENIU) */
.menu-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 18px;
}

.menu-logo {
  width: 100%;
  display: flex;
  justify-content: center;
}

.menu-logo img {
  max-width: 80%;
  max-height: 42px;
  height: auto;
  object-fit: contain;
}

.menu-email {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.2s ease;
}

.menu-email:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}

/* MENU LINKS */
.menu-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.menu-links a {
  font-size: 18px;
  color: var(--accent);
  text-decoration: none;
  transition: 0.2s ease;
}

.menu-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--text);
  opacity: 0.9;
  transition: 0.2s ease;
}

.close-btn:hover {
  opacity: 1;
  transform: translateX(3px);
}

/* MAIN */
main {
  padding-top: 85px; /* = înălțimea header-ului pe desktop */
}

/* SECTIONS */
.content-section {
  padding: 80px 18px;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-inner h2 {
  font-size: 30px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.section-intro {
  font-size: 17px;
  color: var(--accent);
  margin-bottom: 22px;
}

.section-inner p {
  font-size: 15px;
  color: var(--accent);
}

/* HERO */
.hero {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 18px 80px;
  background: radial-gradient(circle at top, #1a1a1a 0, #000 52%);
}

.hero-label {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--accent);
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* BUTTONS */
.btn {
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn:active {
  transform: scale(0.96);
}

.primary-btn {
  background: var(--primary);
  color: #000;
  font-weight: 600;
}

.primary-btn:hover {
  background: #ffda80;
}

.ghost-btn {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(255,255,255,0.2);
}

.ghost-btn:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* ABOUT */
.about {
  background: var(--section-dark);
}

/* DOMAINS */
.domains {
  background: var(--section-soft);
}

.domains-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}

.domain-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 32px rgba(0,0,0,0.55);
}

.domain-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.domain-card p {
  font-size: 14px;
  color: var(--accent);
}

/* MISSION */
.mission {
  background: #000;
}

.mission-box {
  margin-top: 12px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245,193,91,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(245,193,91,0.4);
}

/* INVESTMENTS & CAREERS */
.investments {
  background: var(--section-soft);
}

.careers {
  background: var(--section-dark);
}

.highlight-text {
  margin-top: 16px;
  padding: 14px;
  background: var(--primary-soft);
  border-radius: 14px;
  border: 1px dashed rgba(245,193,91,0.6);
  font-size: 15px;
  color: #fff;
}

.highlight-text a {
  color: var(--primary);
  text-decoration: none;
}

/* CONTACT */
.contact {
  background: #000;
}

.contact-email {
  font-size: 19px;
  margin: 12px 0 18px;
}

.contact-email a {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  text-decoration: none;
}

.contact-email a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* FOOTER */
.site-footer {
  background: #000;
  padding: 25px 15px 32px;
  color: #aaa;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.site-footer p {
  margin: 4px 0;
  max-width: 90vw;
}

/* ✨ PREMIUM COPYRIGHT GLOW */
.site-footer p:first-child {
  color: #e6e6e6;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-shadow:
    0 0 4px rgba(255,255,255,0.40),
    0 0 8px rgba(255,255,255,0.25),
    0 0 12px rgba(255,255,255,0.15);
}

/* ✨ PREMIUM WARNING GLOW */
.site-footer .warning {
  font-size: 12px;
  color: #ff5e2f;
  font-weight: 600;
  margin-top: 6px;
  text-shadow:
    0 0 6px rgba(255,94,47,0.7),
    0 0 10px rgba(255,94,47,0.4),
    0 0 14px rgba(255,94,47,0.25);
}

/* RESPONSIVE */
/* Desktop / laptop */
@media (min-width: 900px) {
  .mobile-menu,
  .menu-icon {
    display: none;
  }

  .site-header {
    justify-content: center;
    padding: 0 40px;
    position: relative;
  }

  .logo {
    margin: 0 auto;
  }

  .hero {
    padding: 150px 40px 110px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .domains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile small / phones */
@media (max-width: 600px) {
  .site-header {
    height: 75px;
    padding-top: env(safe-area-inset-top);
  }

  .logo img {
    height: 34px;
    margin-top: 4px;
  }

  /* padding-ul main = înălțimea header-ului pe mobil */
  main {
    padding-top: 75px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .menu-logo img {
    max-width: 75%;
    max-height: 38px;
  }
}