:root {
  --teal: #00828f;
  --teal-dark: #005a63;
  --teal-light: #e6f4f5;
  --teal-muted: rgba(0, 130, 143, 0.12);
  --text: #1a2b2e;
  --muted: #5a6b6e;
  --white: #ffffff;
  --bg: #fafcfc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  line-height: 1.5;
}

.bg-arc {
  position: fixed;
  top: -18%;
  left: -8%;
  width: 116%;
  height: 55%;
  border: 2px solid var(--teal-muted);
  border-bottom: none;
  border-radius: 50% 50% 0 0;
  pointer-events: none;
  z-index: 0;
}

.bg-spine {
  position: fixed;
  bottom: -120px;
  right: -80px;
  width: 280px;
  height: 280px;
  border: 1px solid var(--teal-muted);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.container {
  position: relative;
  z-index: 1;
  width: min(920px, 92%);
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 1.5rem);
}

.hero {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.logo {
  max-width: min(340px, 88vw);
  height: auto;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  display: inline-block;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.tagline {
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.countdown-section {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.launch-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.launch-label time {
  color: var(--teal);
  font-weight: 600;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(0.6rem, 2.5vw, 1.25rem);
  flex-wrap: wrap;
}

.time-box {
  background: var(--white);
  border: 1px solid var(--teal-light);
  border-radius: 14px;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3.5vw, 1.75rem);
  min-width: clamp(72px, 17vw, 96px);
  box-shadow: 0 4px 24px rgba(0, 130, 143, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.time-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 130, 143, 0.14);
}

.time-value {
  font-size: clamp(1.75rem, 6vw, 2.75rem);
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.time-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.55rem;
}

.contact {
  max-width: 460px;
  margin: 0 auto clamp(2rem, 4vw, 2.5rem);
}

.contact-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 4vw, 1.75rem);
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.contact-subtitle {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--teal-light);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: clamp(0.82rem, 2.5vw, 0.92rem);
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 14px rgba(0, 130, 143, 0.06);
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 130, 143, 0.12);
  outline: none;
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
}

.site-footer {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.site-footer p {
  opacity: 0.85;
}

@media (max-width: 480px) {
  .countdown {
    gap: 0.5rem;
  }

  .time-box {
    min-width: 68px;
    padding: 0.85rem 0.65rem;
    border-radius: 10px;
  }

  .contact-link {
    padding: 0.9rem 1rem;
  }

  .contact-link span {
    word-break: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  .time-box,
  .contact-link {
    transition: none;
  }

  .time-box:hover,
  .contact-link:hover {
    transform: none;
  }
}
