:root {
  --bg-black: #090909;
  --bg-deep: #141414;
  --brand-gold: #ecb918;
  --brand-gold-strong: #d8a80f;
  --text-light: #f2f2f2;
  --text-dark: #1a1a1a;
  --muted: #6e6e6e;
  --card: #f7f7f7;
  --line: #d8d8d8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #0b0b0b 0%, #151515 20%, #1b1508 70%, #100d05 100%);
}

.topbar {
  min-height: 92px;
  padding: 18px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border-bottom: 1px solid rgba(236, 185, 24, 0.2);
}

.brand-logo {
  width: min(290px, 80vw);
  height: auto;
}

.hero {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 42px 16px;
  background:
    radial-gradient(circle at 50% 50%, rgba(236, 185, 24, 0.16) 0%, rgba(236, 185, 24, 0.04) 35%, rgba(0, 0, 0, 0) 60%);
}

.login-card {
  width: min(100%, 410px);
  background: var(--card);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  padding: 26px;
}

.login-card h1 {
  margin: 0 0 20px;
  text-align: center;
  font-size: 2rem;
  color: #111;
}

.login-form input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  margin-bottom: 14px;
  padding: 0 12px;
  font: inherit;
  border-radius: 4px;
  background: #fff;
}

.login-form input:focus {
  outline: 2px solid rgba(236, 185, 24, 0.35);
  border-color: var(--brand-gold);
}

.btn {
  width: 100%;
  min-height: 44px;
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  display: grid;
  place-items: center;
}

.btn-primary {
  margin-top: 8px;
  border: 0;
  background: #101010;
  color: #fff;
  cursor: pointer;
}

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

.btn-secondary {
  margin-top: 12px;
  background: #131313;
  color: #fff;
  border: 1px solid #000;
  font-size: 0.78rem;
  animation: supportBlink 1.2s ease-in-out infinite;
}

.btn-secondary:hover {
  background: #000;
  animation-play-state: paused;
}

.reg-support-btn {
  font-size: 0.72rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

@keyframes supportBlink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 rgba(236, 185, 24, 0);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 16px rgba(236, 185, 24, 0.45);
  }
}

.small-text {
  margin: 14px 0 0;
  text-align: center;
}

.small-text a,
.captcha-note a {
  color: #0048ba;
}

.captcha-note {
  margin: 18px auto 0;
  max-width: 320px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #303030;
}

.copyright-mark {
  text-align: center;
  color: #303030;
  margin: 18px 0 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.keyword-strip {
  color: #fff;
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 600;
  padding: 24px 16px;
  background: linear-gradient(90deg, #8b6708 0%, #d9a813 48%, #9d7608 100%);
}

.footer-main {
  background: #f0f0f0;
  border-top: 1px solid #d7d7d7;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 42px 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: min(260px, 80%);
  height: auto;
}

.footer-column h2 {
  margin: 0 0 12px;
  font-size: 1.8rem;
  color: #2d2d2d;
}

.footer-column p {
  color: #4d4d4d;
  line-height: 1.6;
  margin-top: 12px;
}

.social-links {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-column .social-links a {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: #3a3a3a;
  color: #ffffff;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.footer-column .social-links a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
}

.footer-column .social-links a[aria-label="Facebook"] svg,
.footer-column .social-links a[aria-label="Google"] svg,
.footer-column .social-links a[aria-label="LinkedIn"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-column .social-links a[aria-label="Twitter"] svg,
.footer-column .social-links a[aria-label="Instagram"] svg {
  fill: none;
  stroke: currentColor;
}

.footer-column .social-links a:hover {
  background: var(--brand-gold);
  color: #111;
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li + li {
  margin-top: 9px;
}

.footer-column a {
  color: #4a4a4a;
  text-decoration: none;
}

.footer-column a:hover {
  color: #151515;
  text-decoration: underline;
}

.site-footer {
  background: #242424;
  color: #f0f0f0;
  min-height: 120px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer p {
  margin: 0;
}

.whatsapp-pill {
  background: var(--brand-gold);
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  white-space: nowrap;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-pill:hover {
  background: var(--brand-gold-strong);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.36);
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-column h2 {
    font-size: 1.3rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-pill {
    left: auto;
    right: 12px;
    bottom: 12px;
    max-width: min(250px, calc(100vw - 24px));
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .reg-support-btn {
    white-space: normal;
    font-size: 0.7rem;
  }
}
