:root {
  --ring: rgba(251, 191, 36, 0.55);
}

html {
  scroll-behavior: smooth;
}

.navlink {
  color: rgba(244, 244, 245, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 150ms ease;
}
.navlink:hover {
  color: rgba(251, 191, 36, 0.95);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 10px 14px;
  font-weight: 800;
  letter-spacing: -0.2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, opacity 120ms ease;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.btn-primary {
  background: rgba(251, 191, 36, 0.95);
  color: rgb(9, 9, 11);
  border-color: rgba(251, 191, 36, 0.55);
}
.btn-primary:hover {
  opacity: 0.95;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(244, 244, 245, 0.92);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.95);
  color: rgb(9, 9, 11);
  font-size: 12px;
  font-weight: 900;
}

.input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(244, 244, 245, 0.95);
  padding: 10px 12px;
  outline: none;
}
.input:focus {
  box-shadow: 0 0 0 4px var(--ring);
  border-color: rgba(251, 191, 36, 0.35);
}

.label {
  display: block;
  font-size: 12px;
  color: rgba(244, 244, 245, 0.8);
  margin-bottom: 6px;
  font-weight: 700;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 400px at 20% 20%, rgba(251, 191, 36, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.25), rgba(9, 9, 11, 0.92));
}

.stat {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
}
.statTitle {
  font-size: 12px;
  color: rgba(244, 244, 245, 0.7);
  font-weight: 700;
}
.statValue {
  margin-top: 2px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
}
.cardTitle {
  font-weight: 900;
  font-size: 18px;
}
.cardText {
  margin-top: 8px;
  color: rgba(244, 244, 245, 0.75);
  line-height: 1.55;
}

.contactCard {
  display: flex;
  gap: 14px;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.contactCard:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(251, 191, 36, 0.25);
}
.contactTitle {
  font-weight: 900;
}
.contactText {
  color: rgba(244, 244, 245, 0.75);
  font-size: 14px;
}

.icon svg {
  width: 28px;
  height: 28px;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
}
.drawerBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.drawerPanel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(480px, 92vw);
  background: rgba(9, 9, 11, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .contactCard {
    transition: none;
  }
}