:root {
  --navy: #1b2a4a;
  --navy-dark: #121d35;
  --gold: #c9a45c;
  --gold-light: #e4c88a;
  --white: #ffffff;
  --gray-100: #f7f8fb;
  --gray-300: #d8dde8;
  --gray-600: #5a6478;
  --shadow: 0 24px 60px rgba(27, 42, 74, 0.12);
  --font: "Montserrat", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.swoosh {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.swoosh--bottom-right {
  /* right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50% 0 0 0;
  background: var(--navy);
  border: 6px solid var(--gold);
  transform: rotate(-8deg);
  opacity: 0.95; */

  right: -180px;
  bottom: -180px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid rgba(201, 164, 92, 0.25);
  transform: rotate(-8deg);
}

.swoosh--top-left {
  left: -180px;
  top: -180px;
  width: 320px;
  height: 320px;
  border-radius: 0 0 50% 0;
  background: transparent;
  border: 3px solid rgba(201, 164, 92, 0.25);
  transform: rotate(12deg);
}

.page {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  text-align: center;
}

.hero {
  margin-bottom: 3rem;
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 2rem;
  text-align: center;
}

.logo {
  display: block;
  width: min(320px, 85vw);
  height: auto;
  margin: 0 auto 1.25rem;
}

.badge {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  margin: 0;
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(201, 164, 92, 0.15);
  border: 1px solid rgba(201, 164, 92, 0.45);
  border-radius: 999px;
}

.headline {
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.highlight {
  color: var(--gold);
}

.message {
  max-width: 680px;
  margin: 0 auto 1.25rem;
  font-size: 1rem;
  color: var(--gray-600);
  font-weight: 500;
}

.tagline {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.countdown-section {
  margin-bottom: 3rem;
  padding: 2rem 1.25rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.countdown-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.25rem;
}

.countdown-item {
  min-width: 72px;
  padding: 0.75rem 0.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-300);
}

.countdown-value {
  display: block;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
}

.countdown-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.countdown-separator {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  padding-bottom: 1rem;
}

.countdown-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.countdown-section.is-live .countdown-title {
  color: var(--navy);
}

.countdown-section.is-live .countdown-value {
  color: var(--gold);
}

.contact-section {
  margin-bottom: 2.5rem;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-text {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.contact-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.contact-link,
.contact-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
}

.contact-link {
  padding: 0.75rem 1rem;
  background: rgba(201, 164, 92, 0.12);
  border: 1px solid rgba(201, 164, 92, 0.45);
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
  background: rgba(201, 164, 92, 0.22);
  transform: translateY(-1px);
}

.contact-link--secondary {
  background: transparent;
}

.contact-link--secondary:hover {
  background: var(--gray-100);
}

.contact-location {
  margin-bottom: 0;
  color: var(--gray-600);
  font-weight: 500;
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer {
  padding-top: 1rem;
  border-top: 1px solid var(--gray-300);
  font-size: 0.78rem;
  color: var(--gray-600);
}

.footer-domain {
  margin-top: 0.25rem;
  font-weight: 600;
  color: var(--gold);
}

@media (max-width: 520px) {
  .page {
    padding: 2rem 1rem 3rem;
  }

  .logo {
    width: min(280px, 90vw);
    margin-bottom: 1rem;
  }

  .badge {
    padding: 0.65rem 1.35rem;
    letter-spacing: 0.1em;
  }

  .headline {
    font-size: clamp(1.35rem, 6vw, 1.6rem);
  }

  .message {
    font-size: 0.95rem;
  }

  .countdown-section {
    padding: 1.5rem 1rem;
  }

  .countdown-separator {
    display: none;
  }

  .countdown {
    gap: 0.65rem;
  }

  .countdown-item {
    min-width: calc(50% - 0.5rem);
  }

  .contact-card {
    padding: 1.5rem 1.15rem;
  }

  .swoosh--bottom-right {
    width: 280px;
    height: 280px;
    right: -120px;
    bottom: -12a0px;
    /* visibility: hidden;
    opacity: 0; */
  }

  .swoosh--top-left {
    width: 220px;
    height: 220px;
    left: -120px;
    top: -120px;
  }
}
