:root {
  --bg-base: #080a0e;
  --bg-panel: rgba(18, 21, 27, 0.86);
  --bg-elevated: rgba(255, 255, 255, 0.04);
  --border-soft: rgba(255, 255, 255, 0.22);
  --text-primary: #f6f5f2;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.52);
  --home-accent: #c7a35a;
  --home-accent-strong: #d89a33;
  --button-text: #0f1218;
  --button-bg: #fbfbfa;
  --button-bg-hover: #eceae6;
  --shadow-soft: rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  min-height: 100vh;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.72), rgba(8, 10, 14, 0.86)),
    url("vetters-baner2.jpg") center center / cover no-repeat;
}

body::before,
body::after {
  content: "";
  position: absolute;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
}

body::before {
  top: -10rem;
  right: -8rem;
  background: rgba(199, 163, 90, 0.55);
}

body::after {
  bottom: -12rem;
  left: -10rem;
  background: rgba(216, 154, 51, 0.35);
}

.page-shell {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.2) 0%, rgba(8, 10, 14, 0.7) 100%);
  pointer-events: none;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.14;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  text-align: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  line-height: 1;
}

h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(2.7rem, 6vw, 6.65rem);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.045em;
  text-transform: none;
  color: var(--text-primary);
  text-wrap: balance;
}

.subtitle {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.cta-wrap {
  margin-top: 0.35rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  background: var(--button-bg-hover);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.cta-button:active {
  transform: translateY(0);
}

.countdown {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: none;
  min-height: 1.4rem;
}

@media (max-width: 480px) {
  .page-shell {
    padding: 1.5rem 1rem;
  }

  .content {
    gap: 1rem;
  }

  .badge {
    letter-spacing: 0.22em;
    font-size: 0.62rem;
    padding: 0.6rem 0.9rem;
  }

  .cta-button {
    width: 100%;
    max-width: 18rem;
    letter-spacing: 0.14em;
  }

  .countdown {
    letter-spacing: 0.04em;
  }
}
