:root {
  --bg: #030303;
  --bg-soft: #0d0d0d;
  --bg-card: rgba(255, 255, 255, 0.055);

  --text: #ffffff;
  --muted: #b7b7b7;

  --orange: #ff7a00;
  --orange-soft: rgba(255, 122, 0, 0.18);

  --border: rgba(255, 255, 255, 0.12);

  --font-main: "Outfit", sans-serif;
  --font-title: "Space Grotesk", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(255, 122, 0, 0.18),
      transparent 35%
    ),
    radial-gradient(circle at 20% 80%, rgba(255, 122, 0, 0.08), transparent 35%);
  pointer-events: none;
  z-index: -1;
}

.hero {
  min-height: 100vh;
  padding: 28px 8%;
  position: relative;
}

.navbar {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-weight: 800;
}

.brand-name {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-actions {
  display: flex;
  gap: 8px;
}

.lang-btn {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 9px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}

.hero-content {
  min-height: calc(100vh - 140px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 22px;
}

h1 {
  font-family: var(--font-title);
  font-size: clamp(3rem, 7vw, 7.8rem);
  line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 28px;
}

h1 strong {
  color: var(--orange);
  font-weight: 700;
}

.hero-description {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary {
  background: var(--orange);
  color: #000;
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn:hover {
  transform: translateY(-4px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  background: var(--orange-soft);
  filter: blur(70px);
  border-radius: 50%;
}

.profile-card {
  position: relative;
  width: min(390px, 100%);
  padding: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
  border-radius: 34px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  animation: floatCard 5s ease-in-out infinite;
}

.profile-image {
  height: 470px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(145deg, #1b1b1b, #050505);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.profile-info strong {
  color: var(--text);
}

.scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 8%;
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.scroll-indicator .line {
  width: 80px;
  height: 1px;
  background: var(--orange);
}

.section {
  padding: 110px 8%;
}

.section-label {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.section h2 {
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 4vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 1000px;
  margin-bottom: 28px;
}

.section p {
  color: var(--muted);
  max-width: 850px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.card {
  min-height: 280px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
}

.card span {
  color: var(--orange);
  font-weight: 800;
}

.card h3 {
  font-size: 1.5rem;
  margin: 34px 0 16px;
}

.card p {
  font-size: 1rem;
}

.contact-section {
  background: linear-gradient(
    135deg,
    rgba(255, 122, 0, 0.12),
    rgba(255, 255, 255, 0.025)
  );
  text-align: center;
}

.contact-section h2,
.contact-section p {
  margin-left: auto;
  margin-right: auto;
}

.contact-section .btn {
  margin-top: 32px;
}

.footer {
  padding: 32px 8%;
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 22px 6%;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 50px;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .profile-image {
    height: 390px;
  }

  .scroll-indicator {
    display: none;
  }

  .brand-name {
    display: none;
  }
}
