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

:root {
  --navy: #0a1628;
  --gold: #c9a227;
  --gold-bright: #f0d264;
  --red: #b22234;
  --white: #f8f6f0;
  --overlay: rgba(10, 22, 40, 0.72);
}

html,
body {
  height: 100%;
}

body {
  font-family: "Oswald", system-ui, sans-serif;
  color: var(--white);
  background: var(--navy);
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 4rem;
  background: var(--navy) url("/welcome.png") center center / cover no-repeat fixed;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.55) 0%,
    var(--overlay) 35%,
    rgba(10, 22, 40, 0.88) 100%
  );
  pointer-events: none;
}

.hero__badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(6px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  width: 100%;
  text-align: center;
}

.hero__eyebrow {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(4rem, 18vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--gold-bright);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__tagline {
  margin-top: 1.25rem;
  font-size: clamp(1.1rem, 3.5vw, 1.45rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(248, 246, 240, 0.9);
}

.hero__tagline em {
  font-style: normal;
  color: var(--gold-bright);
  font-weight: 600;
}

.hero__timeline {
  list-style: none;
  margin: 2.5rem auto 2rem;
  max-width: 32rem;
  text-align: left;
}

.hero__timeline-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  border-left: 3px solid rgba(201, 162, 39, 0.4);
  background: rgba(10, 22, 40, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 0 8px 8px 0;
}

.hero__timeline-item--highlight {
  border-left-color: var(--red);
  background: rgba(178, 34, 52, 0.15);
  box-shadow: 0 0 24px rgba(178, 34, 52, 0.2);
}

.hero__year {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-bright);
}

.hero__event {
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(248, 246, 240, 0.85);
}

.hero__event strong {
  color: var(--white);
  font-weight: 700;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hero__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: rgba(10, 22, 40, 0.65);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-bright);
}

.social-link__icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.social-link:hover .social-link__icon {
  color: var(--gold-bright);
}

.hero__contract {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.hero__contract-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__contract-row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0.35rem;
  background: rgba(10, 22, 40, 0.65);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.hero__contract-value {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 0.85rem;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: clamp(0.65rem, 2.8vw, 0.8rem);
  line-height: 1.4;
  color: var(--gold-bright);
  word-break: break-all;
  overflow-wrap: anywhere;
}

.hero__contract-copy {
  flex-shrink: 0;
  align-self: center;
  margin-right: 0.25rem;
  padding: 0.65rem 1rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__contract-copy:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}

.hero__contract-feedback {
  min-height: 1.25rem;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

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

.btn--primary {
  color: var(--navy);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 6px 28px rgba(201, 162, 39, 0.55);
}

.btn--secondary {
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(248, 246, 240, 0.5);
}

.btn--secondary:hover {
  border-color: var(--white);
  background: rgba(248, 246, 240, 0.08);
}

.hero__disclaimer {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.45);
  max-width: 28rem;
  margin: 0 auto;
  line-height: 1.5;
}

.hero__footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.4);
}

.hero__stars {
  color: var(--gold);
  letter-spacing: 0.3em;
}

@media (max-width: 480px) {
  .hero {
    background-attachment: scroll;
  }

  .hero__timeline-item {
    grid-template-columns: 3.5rem 1fr;
    padding: 0.85rem 1rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .hero__social {
    flex-direction: column;
    align-items: stretch;
  }

  .social-link {
    justify-content: center;
  }

  .hero__contract-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__contract-copy {
    margin: 0 0.25rem 0.25rem;
    width: calc(100% - 0.5rem);
  }
}
