*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy-950: #0b1628;
  --navy-900: #101f35;
  --navy-800: #1a3454;
  --gold-500: #c9a227;
  --gold-400: #dbb84a;
  --gold-300: #e8cc6a;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.82);
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  color: var(--white);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 4rem) 1.5rem;
  background-color: var(--navy-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/bg.jpg") center center / cover no-repeat;
  filter: blur(8px);
  transform: scale(1.1);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(11, 22, 40, 0.83) 0%,
      rgba(16, 31, 53, 0.89) 45%,
      rgba(11, 22, 40, 0.95) 100%
    ),
    radial-gradient(circle at 50% 20%, rgba(201, 162, 39, 0.1), transparent 40%);
}

.content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fade-up 0.9s ease both;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(7rem, 18vw, 9rem);
  height: clamp(7rem, 18vw, 9rem);
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 0 0 3px var(--gold-500),
    0 20px 50px rgba(0, 0, 0, 0.35);
  animation: fade-up 0.9s ease 0.1s both;
}

.logo {
  display: block;
  width: 72%;
  height: auto;
}

.accent {
  color: var(--gold-400);
}

.title {
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  animation: fade-up 0.9s ease 0.15s both;
}

.tagline {
  max-width: 34rem;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 400;
  line-height: 1.55;
  animation: fade-up 0.9s ease 0.2s both;
}

@media (max-width: 640px) {
  .tagline .accent {
    display: block;
    margin-top: 0.2em;
  }
}

.divider {
  width: min(5rem, 18vw);
  height: 3px;
  margin: clamp(1.25rem, 3vw, 1.75rem) 0 clamp(0.25rem, 1vw, 0.5rem);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  animation: fade-up 0.9s ease 0.25s both;
}

.status-card {
  position: relative;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  padding: 1.15rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(11, 22, 40, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  animation: fade-up 0.9s ease 0.3s both;
}

.status {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.status-highlight {
  margin-top: 0.35em;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: var(--gold-400);
}

.contact {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold-300);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 500;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-color: rgba(201, 162, 39, 0.55);
  text-underline-offset: 0.2em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  animation: fade-up 0.9s ease 0.4s both;
}

.contact-label {
  color: var(--white);
}

.contact:hover,
.contact:focus-visible {
  color: var(--white);
  text-decoration-color: var(--gold-400);
}

.contact:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 4px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .content,
  .logo-wrap,
  .title,
  .tagline,
  .divider,
  .status-card,
  .contact {
    animation: none;
  }

  .hero-bg {
    transform: none;
  }
}
