﻿:root {
  --bg-dark: #070708;
  --bg-mid: #151417;
  --glow: #ff6a2e;
  --glow-soft: rgba(255, 106, 46, 0.28);
  --ink: #0b0b0b;
  --mist: rgba(255, 255, 255, 0.15);
  --paper: #f4f0e6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--paper);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 106, 46, 0.14), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.08), transparent 40%),
    radial-gradient(circle at 60% 90%, rgba(255, 210, 127, 0.14), transparent 40%),
    linear-gradient(160deg, #0c0c0f 0%, #060607 55%, #040405 100%);
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: screen;
  opacity: 0.3;
  z-index: 0;
}

.coming {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 4.5rem 1.5rem;
}

.coming-inner {
  max-width: 560px;
  text-align: center;
  display: grid;
  gap: 1.4rem;
  --content-width: min(340px, 86vw);
}

.coming-inner > * {
  opacity: 0;
  animation: rise 900ms ease forwards;
}

.coming-inner > :nth-child(1) { animation-delay: 0.1s; }
.coming-inner > :nth-child(2) { animation-delay: 0.2s; }
.coming-inner > :nth-child(3) { animation-delay: 0.3s; }
.coming-inner > :nth-child(4) { animation-delay: 0.4s; }
.coming-inner > :nth-child(5) { animation-delay: 0.5s; }
.coming-inner > :nth-child(6) { animation-delay: 0.6s; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.75rem;
  color: rgba(255, 210, 127, 0.85);
}

.logo-stack {
  position: relative;
  width: min(320px, 72vw);
  margin: 0 auto;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.halo {
  position: absolute;
  inset: -30% -20% auto -20%;
  height: 70%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 106, 46, 0.5) 0%, rgba(255, 106, 46, 0.05) 45%, transparent 70%);
  filter: blur(4px);
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  margin: 0;
  letter-spacing: 0.1rem;
  width: var(--content-width);
  justify-self: center;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0;
  letter-spacing: 0.08rem;
}

.tagline {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(244, 240, 230, 0.82);
  margin: 0;
  width: var(--content-width);
  justify-self: center;
}

.socials {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}

.social-link {
  width: var(--content-width);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem 1rem;
  align-items: center;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04rem;
  transition: transform 200ms ease, border-color 200ms ease, color 200ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.98);
}

.contact-link {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: none;
  border-color: transparent;
}

.contact-inline {
  grid-column: 2;
  display: flex;
  gap: 0.4rem;
  align-items: baseline;
  white-space: nowrap;
}

.email-link {
  justify-self: start;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.02rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}

.email-link:hover,
.email-link:focus-visible {
  color: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.75);
}

.social-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-link span:not(.social-icon) {
  text-transform: uppercase;
  font-size: 0.85rem;
}

.social-handle {
  grid-column: 2;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: none;
  letter-spacing: 0.02rem;
}

.request {
  margin-top: 1rem;
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
}

.is-hidden {
  display: none;
}

.request-copy {
  margin: 0.5rem 0 1.4rem;
  color: rgba(244, 240, 230, 0.78);
  font-size: 0.98rem;
}

.request-form {
  display: grid;
  gap: 1rem;
}

.request-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: rgba(255, 255, 255, 0.7);
}

.request-form input {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.4);
  color: var(--paper);
  font-size: 0.95rem;
}

.request-form button {
  justify-self: start;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  background: var(--glow);
  color: var(--ink);
  box-shadow: 0 16px 32px rgba(255, 106, 46, 0.3);
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 210, 127, 0.85);
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

@media (max-width: 600px) {
  .coming {
    padding: 3rem 1.1rem;
  }

  .eyebrow {
    letter-spacing: 0.18rem;
  }

  .coming-inner {
    gap: 1.1rem;
  }

  .logo-stack {
    width: min(260px, 78vw);
    padding: 1rem;
  }

  .social-link {
    width: var(--content-width);
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 0.9rem;
  }

  .social-link span:not(.social-icon) {
    font-size: 0.8rem;
  }

  .social-handle {
    grid-column: auto;
    font-size: 0.9rem;
  }

  .contact-inline {
    grid-column: auto;
    justify-self: center;
  }

  .request {
    text-align: center;
  }

  .request-form button {
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .coming-inner {
    max-width: 640px;
    --content-width: min(380px, 90vw);
  }

  .logo-stack {
    width: min(300px, 70vw);
  }

  .social-link {
    width: var(--content-width);
  }
}

@media (max-height: 540px) and (orientation: landscape) {
  .coming {
    padding: 2.4rem 1.5rem;
  }

  .coming-inner {
    gap: 0.9rem;
  }

  .logo-stack {
    width: min(240px, 40vw);
    padding: 0.9rem;
  }

  h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
  }

  .socials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(720px, 96vw);
  }

  .social-link {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 0.7rem;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }

  .social-link span:not(.social-icon) {
    font-size: 0.72rem;
  }

  .social-handle {
    grid-column: auto;
    font-size: 0.8rem;
  }

  .contact-inline {
    grid-column: auto;
    justify-self: center;
    font-size: 0.8rem;
  }

  .request {
    padding: 1.2rem;
  }
}
