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

html, body {
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ─── Grid Pattern ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

/* ─── Particles Canvas ─── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── Overlay Glow ─── */
.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, var(--overlay-light, rgba(233,69,96,0.12)) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, var(--overlay-lighter, rgba(233,69,96,0.10)) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Container ─── */
.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 24px;
  max-width: 680px;
  width: 100%;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Logo Row ─── */
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.logo {
  max-width: 220px;
  max-height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.08));
  transition: filter 0.5s ease, transform 0.5s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 30px var(--accent));
  transform: translateY(-2px);
}

.logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0.7;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* ─── Site Title ─── */
.site-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  color: var(--text-title);
  background: linear-gradient(135deg, var(--text-title) 0%, var(--accent) 50%, var(--text-title) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-subtitle {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-subtitle);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ─── Coming Soon Box ─── */
.coming-soon-box-wrapper {
  position: relative;
  margin-bottom: 32px;
}

.coming-soon-box-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), transparent 40%, transparent 60%, var(--accent));
  z-index: -1;
  opacity: 0.3;
  animation: borderRotate 6s linear infinite;
}

@keyframes borderRotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.coming-soon-box {
  background: var(--box-bg);
  border: 1px solid var(--box-border);
  border-radius: 20px;
  padding: 36px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.coming-soon-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.coming-soon-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--box-title);
  margin-bottom: 14px;
  text-shadow: 0 0 30px var(--box-title);
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { text-shadow: 0 0 20px var(--box-title); }
  50% { text-shadow: 0 0 40px var(--box-title), 0 0 80px var(--box-title); }
}

.coming-soon-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--box-text);
  max-width: 520px;
  margin: 0 auto;
}

/* ─── Divider ─── */
.divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 24px;
  border-radius: 1px;
  opacity: 0.6;
}

/* ─── Countdown Placeholder (optional) ─── */
.countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown-number {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent);
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-subtitle);
  margin-top: 4px;
}

/* ─── Tagline ─── */
.tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-tagline);
  margin-bottom: 32px;
}

/* ─── Contact Card ─── */
.contact-info {
  margin-bottom: 32px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--card-text);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 12px 22px;
  border: 1px solid var(--card-border);
  border-radius: 50px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.contact-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--card-hover-bg);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
}

.contact-link:hover {
  border-color: var(--card-hover-border);
  color: var(--card-hover-text);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.contact-link:hover::before {
  opacity: 1;
}

.contact-link svg {
  position: relative;
  z-index: 1;
}

.contact-link span {
  position: relative;
  z-index: 1;
}

.contact-link span {
  position: relative;
  z-index: 1;
}

/* ─── Footer ─── */
.footer {
  margin-top: 16px;
}

.footer p {
  font-size: 0.8rem;
  color: var(--footer-text);
  letter-spacing: 0.04em;
}

/* ─── Floating orbs (decorative) ─── */
.orb {
  position: fixed;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
}

.orb-1 {
  width: 280px; height: 280px;
  background: var(--accent);
  top: -140px; left: -140px;
  animation: float1 20s ease-in-out infinite;
}

.orb-2 {
  width: 200px; height: 200px;
  background: var(--overlay-light);
  bottom: -100px; right: -100px;
  animation: float2 25s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.1); }
  66% { transform: translate(-30px, -20px) scale(0.9); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, -30px) scale(1.15); }
  66% { transform: translate(20px, 40px) scale(0.85); }
}
