:root {
  --bg: #0d0d0f;
  --bg-deep: #070708;
  --text: #f6f2ec;
  --muted: #c2b8ad;
  --orange: #ff8a1f;
  --orange-soft: #ffb35c;
  --glass: rgba(15, 15, 18, 0.62);
  --glass-strong: rgba(15, 15, 18, 0.78);
  --border: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 138, 31, 0.16), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(255, 177, 92, 0.09), transparent 30%),
    linear-gradient(145deg, #16110d 0%, var(--bg) 45%, var(--bg-deep) 100%);
}

.background {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(5, 5, 6, 0.58), rgba(5, 5, 6, 0.78)),
    url("/assets/img/background.png") center / cover no-repeat;
  filter: blur(12px);
  transform: scale(1.06);
  opacity: 0.58;
}

.stars {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.75) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,0.45) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,0.35) 0 1px, transparent 1.5px);
  background-size: 260px 260px, 390px 390px, 520px 520px;
  background-position: 30px 80px, 120px 40px, 50px 150px;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 50;
  width: min(1120px, calc(100% - 32px));
  height: 74px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--glass-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  color: var(--text);
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-logo {
  display: block;
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  object-fit: cover;
  border-radius: 999px;
  flex: 0 0 28px;
  filter: drop-shadow(0 0 12px rgba(255, 138, 31, 0.75));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.18s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.lang-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  cursor: pointer;
  transition: 0.18s ease;
}

.lang-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 31, 0.45);
  background: rgba(255, 138, 31, 0.13);
}

/* HERO */

.hero {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 150px 0 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 9px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--orange-soft);
  background: rgba(255, 138, 31, 0.08);
  font-weight: 900;
  box-shadow: 0 0 35px rgba(255, 138, 31, 0.08);
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

h1 span {
  color: var(--orange);
  text-shadow: 0 0 34px rgba(255, 138, 31, 0.36);
}

.hero-content p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.7;
  font-weight: 650;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #150b04;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.avatar {
  position: relative;
  z-index: 2;
  display: block;
  width: min(430px, 88vw);
  max-height: 62vh;
  object-fit: contain;
  filter: drop-shadow(0 28px 80px rgba(0, 0, 0, 0.72));
  transition: transform 0.12s linear;
}

.avatar-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 138, 31, 0.30), rgba(255, 138, 31, 0.05) 58%, transparent 74%);
  filter: blur(20px);
}

/* SECTIONS */

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 80px;
  padding: 80px 0;
}

.section-header h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-header p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 650;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.card,
.gallery-placeholder,
.social-link {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.card {
  padding: 24px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}

.gallery-placeholder {
  min-height: 230px;
  margin-top: 32px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  padding: 16px 20px;
  transition: 0.18s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 31, 0.45);
  background: rgba(255, 138, 31, 0.10);
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 50px;
  color: var(--muted);
  text-align: center;
  font-weight: 750;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .navbar {
    top: 12px;
    height: auto;
    min-height: 72px;
    border-radius: 28px;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px;
  }

  .brand {
    min-width: auto;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .lang-toggle {
    width: 44px;
    height: 42px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 165px;
    gap: 8px;
  }

  .hero-visual {
    order: -1;
    min-height: 340px;
  }

  .avatar {
    width: min(330px, 80vw);
    max-height: 380px;
  }

  .avatar-glow {
    width: 280px;
    height: 280px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
