:root {
  --wax-cream: #faf3e8;
  --wax-warm: #f2e4d0;
  --wick-brown: #6b4a34;
  --wick-dark: #4a3225;
  --ember: #c98a4b;
  --linen: #ffffff;
  --shadow: rgba(107, 74, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Quicksand', 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at 20% 15%, #fffaf1 0%, transparent 55%),
    radial-gradient(circle at 85% 85%, #f5e6cf 0%, transparent 50%),
    linear-gradient(160deg, var(--wax-cream) 0%, var(--wax-warm) 100%);
  color: var(--wick-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  overflow-x: hidden;
}

.page {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow {
  position: absolute;
  width: 480px;
  height: 480px;
  max-width: 90vw;
  max-height: 90vw;
  background: radial-gradient(circle, rgba(201, 138, 75, 0.18) 0%, rgba(201, 138, 75, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: flicker 6s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

.card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--linen);
  border-radius: 28px;
  padding: 56px 48px 44px;
  box-shadow: 0 20px 60px var(--shadow);
  max-width: 480px;
  width: 100%;
  border: 1px solid rgba(107, 74, 52, 0.08);
}

.logo-mark {
  width: 120px;
  height: auto;
  margin-bottom: 8px;
}

.logo-type {
  width: 200px;
  height: auto;
  margin-bottom: 28px;
}

.soon {
  margin: 0 0 22px;
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--wick-brown);
}

.follow-text {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--wick-dark);
  opacity: 0.85;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--wick-brown);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--wax-warm);
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--ember);
  color: var(--linen);
  transform: translateY(-2px);
}

.ig-icon {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .card {
    padding: 40px 24px 32px;
    border-radius: 20px;
  }

  .logo-mark {
    width: 96px;
  }

  .logo-type {
    width: 170px;
  }
}
