:root {
  --bg: #05060b;
  --surface: #111725;
  --surface-hover: #192131;
  --text: #f8f7fb;
  --muted: #a8adba;
  --line: rgba(255, 255, 255, 0.12);
  --purple: #b568f0;
  --pink: #f05fb7;
  --whatsapp: #25d366;
  --instagram: #e95ca8;
  --font-display: "Space Grotesk", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

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

a:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 6px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--bg);
  background: #ffffff;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.coming-soon {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 88px 24px 72px;
  isolation: isolate;
}

.brand {
  position: absolute;
  top: 34px;
  left: clamp(24px, 4vw, 64px);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.brand span { color: var(--pink); }

.content {
  width: min(100%, 980px);
  text-align: center;
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 7.4vw, 112px);
  font-weight: 700;
  line-height: 0.96;
}

h1 span { display: block; }

h1 em {
  color: var(--pink);
  font-style: normal;
  text-shadow: 0 0 28px rgba(240, 95, 183, 0.22);
}

h2 {
  margin: clamp(30px, 5vh, 52px) 0 24px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.1;
}

.social-panel {
  display: flex;
  justify-content: center;
  width: min(100%, 500px);
  margin: 0 auto;
  padding: 28px 34px;
  gap: clamp(48px, 8vw, 92px);
  background: rgba(17, 23, 37, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.44), 0 0 42px rgba(136, 67, 219, 0.24);
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 96px;
  gap: 10px;
  cursor: pointer;
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  color: #ffffff;
  background: #202838;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.icon-wrap svg {
  width: 34px;
  height: 34px;
}

.whatsapp .icon-wrap svg { fill: currentColor; }

.instagram .icon-wrap svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram .icon-wrap .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.social-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.social-link:hover .icon-wrap { transform: translateY(-6px) scale(1.04); }
.social-link:hover .social-label { color: #ffffff; }

.whatsapp:hover .icon-wrap {
  background: var(--whatsapp);
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.32);
}

.instagram:hover .icon-wrap {
  background: var(--instagram);
  box-shadow: 0 12px 34px rgba(233, 92, 168, 0.32);
}

.footer-note {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: 28px;
  margin: 0;
  color: #777d8b;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .coming-soon {
    align-items: center;
    padding: 86px 20px 78px;
  }

  .brand { top: 28px; left: 20px; }

  .content {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(44px, 12vw, 54px);
    line-height: 1;
  }

  h1 em { display: block; }

  h2 { margin-top: 34px; font-size: clamp(25px, 8vw, 34px); }

  .social-panel {
    max-width: calc(100vw - 40px);
    padding: 24px 20px;
    gap: clamp(34px, 12vw, 62px);
  }

  .icon-wrap { width: 72px; height: 72px; }
  .icon-wrap svg { width: 30px; height: 30px; }

  .footer-note {
    right: auto;
    bottom: 22px;
    left: 20px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  h1 { font-size: 42px; }
  .social-panel { gap: 24px; padding-inline: 14px; }
}

@media (max-height: 680px) and (min-width: 641px) {
  .coming-soon { padding-top: 76px; padding-bottom: 54px; }
  h1 { font-size: clamp(52px, 9vh, 72px); }
  h2 { margin-top: 26px; }
  .social-panel { padding-block: 20px; }
  .icon-wrap { width: 68px; height: 68px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .icon-wrap { will-change: auto; }
}
