/* HAVELL — Coming Soon */

:root {
  --bg: #fafafa;
  --ink: #0a0a0a;
  --ink-soft: #3f3f46;
  --muted: #71717a;
  --line: #e4e4e7;
  --gold: #b8963e;
  --gold-light: #e8d5a3;
  --gold-bg: #faf6ee;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.coming-soon__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.coming-soon__grid {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(228, 228, 231, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228, 228, 231, 0.35) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: rotate(-8deg);
  animation: grid-drift 40s linear infinite;
}

.coming-soon__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 213, 163, 0.25) 0%, transparent 70%);
  animation: glow-pulse 8s ease-in-out infinite;
}

.coming-soon__glow--2 {
  top: auto;
  bottom: -30%;
  left: -15%;
  right: auto;
  width: min(500px, 70vw);
  height: min(500px, 70vw);
  background: radial-gradient(circle, rgba(184, 150, 62, 0.12) 0%, transparent 70%);
  animation-delay: -4s;
}

@keyframes grid-drift {
  from { transform: rotate(-8deg) translate(0, 0); }
  to { transform: rotate(-8deg) translate(64px, 64px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.coming-soon__header {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--ink);
}

.coming-soon__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid rgba(184, 150, 62, 0.25);
  padding: 8px 16px;
  border-radius: 100px;
}

.coming-soon__main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 40px);
}

.coming-soon__copy {
  animation: fade-up 1s var(--ease) both;
}

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.coming-soon__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}

.coming-soon__title em {
  font-style: italic;
  color: var(--gold);
}

.coming-soon__text {
  font-size: clamp(15px, 1.8vw, 17px);
  max-width: 440px;
  margin-bottom: 36px;
}

.coming-soon__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 100px;
  transition: all 0.4s var(--ease);
}

.btn--primary {
  background: var(--ink);
  color: #fff;
}

.btn--primary:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.15);
}

.btn--outline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  border-color: var(--ink);
  background: #fff;
}

.coming-soon__visual {
  display: flex;
  justify-content: center;
  animation: fade-up 1s var(--ease) 0.2s both;
}

.hub-diagram {
  width: min(420px, 100%);
  aspect-ratio: 1;
}

.hub-diagram svg {
  width: 100%;
  height: 100%;
}

.hub-ring {
  transform-origin: 200px 200px;
  animation: ring-spin 60s linear infinite;
}

.hub-ring--reverse {
  animation-direction: reverse;
  animation-duration: 45s;
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.flow-dot {
  animation: flow-orbit 4s ease-in-out infinite;
}

.flow-dot--2 { animation-delay: -1.3s; }
.flow-dot--3 { animation-delay: -2.6s; }

@keyframes flow-orbit {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.coming-soon__footer {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.coming-soon__footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.coming-soon__footer-info span:not(:last-child)::after {
  content: '·';
  margin-left: 24px;
  color: var(--line);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .coming-soon__main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .coming-soon__text {
    margin-left: auto;
    margin-right: auto;
  }

  .coming-soon__contact {
    justify-content: center;
  }

  .coming-soon__visual {
    order: -1;
  }

  .hub-diagram {
    width: min(280px, 80vw);
  }

  .coming-soon__footer {
    flex-direction: column;
    text-align: center;
  }

  .coming-soon__footer-info {
    flex-direction: column;
    gap: 4px;
  }

  .coming-soon__footer-info span:not(:last-child)::after {
    content: none;
  }
}
