/* GAAAAY.com — Coming Soon (Hostinger static/PHP edition)
   Mirrors the platform design system: black + aqua/teal + white. */

:root {
  --ink: #070b0b;
  --ink-deep: #040606;
  --surface: #0c1313;
  --accent: #20d9d0;
  --accent-bright: #7df2ec;
  --line: rgba(32, 217, 208, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f2f7f6;
  --muted: #93a8a5;
  --danger: #ff6b6b;
  --sans: 'Inter', system-ui, sans-serif;
  --display: 'Anton', Impact, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ── Scene ── */
.scene {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 50% -8%, rgba(32, 217, 208, 0.09), transparent 65%),
    radial-gradient(900px 600px at 50% 108%, rgba(32, 217, 208, 0.05), transparent 60%),
    var(--ink);
}
.scene::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.smoke {
  position: absolute;
  bottom: 0;
  z-index: 0;
  width: min(26vw, 340px);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(120% 120% at 0% 100%, #000 55%, transparent 98%);
  mask-image: radial-gradient(120% 120% at 0% 100%, #000 55%, transparent 98%);
}
.smoke-left { left: 0; }
.smoke-right {
  right: 0;
  -webkit-mask-image: radial-gradient(120% 120% at 100% 100%, #000 55%, transparent 98%);
  mask-image: radial-gradient(120% 120% at 100% 100%, #000 55%, transparent 98%);
}

.wrap {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  display: flex;
  min-height: 100vh;
  width: 100%;
  max-width: 56rem;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.25rem 5rem;
}
@media (min-width: 640px) { .wrap { padding: 5rem 2rem; } }

/* ── Hero ── */
/* Official transparent logo — neon glow recreated in CSS */
.logo { margin: 0; }
.logo img {
  width: min(84vw, 500px);
  filter: drop-shadow(0 0 16px rgba(32, 217, 208, 0.45))
          drop-shadow(0 0 70px rgba(32, 217, 208, 0.22));
}

.kicker {
  margin: 1rem 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
}
.kicker .teal { color: var(--accent); }

.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.015em;
}

.hero-title {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: clamp(3.6rem, 13vw, 8.5rem);
  color: #fff;
  background-image: linear-gradient(180deg, #ffffff 55%, #c4cfce 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 24px rgba(0, 0, 0, 0.6));
}

.lede {
  margin: 2rem auto 0;
  max-width: 38.75rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Panel ── */
.panel {
  margin-top: 4rem;
  width: 100%;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(32, 217, 208, 0.045), rgba(32, 217, 208, 0.015)), var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 24px 60px -30px rgba(0, 0, 0, 0.8);
}
@media (min-width: 640px) { .panel { padding: 2.5rem; } }

.ruled {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}
.ruled::before, .ruled::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 110px;
}
.ruled::before { background: linear-gradient(90deg, transparent, var(--line)); }
.ruled::after { background: linear-gradient(90deg, var(--line), transparent); }

.panel-title {
  margin: 0 0 2.5rem;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-shadow: 0 0 22px rgba(32, 217, 208, 0.45);
}
@media (min-width: 640px) { .panel-title { font-size: 1.5rem; } }

.features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 0;
}
@media (min-width: 640px) { .features { grid-template-columns: 1fr 1fr; gap: 3rem 0; } }
@media (min-width: 1024px) { .features { grid-template-columns: repeat(4, 1fr); gap: 0; } }

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) { .feature + .feature { border-left: 1px solid var(--line); } }

.feature svg {
  width: 2.25rem;
  height: 2.25rem;
  filter: drop-shadow(0 0 18px rgba(32, 217, 208, 0.35)) drop-shadow(0 0 60px rgba(32, 217, 208, 0.18));
}
.feature h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
@media (min-width: 1024px) { .feature h3 { white-space: nowrap; } }
.feature p {
  margin: 0;
  max-width: 13rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ── Newsletter ── */
.newsletter { margin-top: 5rem; width: 100%; text-align: center; }
.newsletter-title { margin: 0; font-size: 1.6rem; letter-spacing: 0.06em; color: #fff; }
@media (min-width: 640px) { .newsletter-title { font-size: 1.9rem; } }
.newsletter-title .first {
  margin: 0 0.5rem;
  font-style: italic;
  color: var(--accent);
  text-shadow: 0 0 22px rgba(32, 217, 208, 0.45);
}
.newsletter-copy {
  margin: 1rem auto 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.signup {
  margin: 2rem auto 0;
  display: flex;
  width: 100%;
  max-width: 32rem;
  flex-direction: column;
  gap: 0.75rem;
}
.field {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
  text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
@media (min-width: 640px) { .field { text-align: left; } }
.field::placeholder { color: rgba(255, 255, 255, 0.35); }
.field:hover { border-color: rgba(255, 255, 255, 0.16); }
.field:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(32, 217, 208, 0.15);
  background: rgba(32, 217, 208, 0.05);
}
.field:disabled { opacity: 0.5; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--accent);
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}
.btn:hover:not(:disabled) {
  background: var(--accent-bright);
  box-shadow: 0 0 28px rgba(32, 217, 208, 0.4);
}
.btn:active:not(:disabled) { transform: translateY(1px); }
.btn:disabled { opacity: 0.55; cursor: default; }

.success {
  display: none;
  padding: 1rem 0;
}
.success .youre-in {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-shadow: 0 0 22px rgba(32, 217, 208, 0.45);
}
.success p { margin: 0.75rem 0 0; font-size: 0.875rem; color: var(--muted); }

.form-error {
  display: none;
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--danger);
}

.privacy {
  margin: 1.25rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Honeypot — visually removed, still in the accessibility tree exclusion */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ── Social ── */
.social { margin-top: 4rem; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.social h2 { margin: 0; font-size: 1rem; letter-spacing: 0.22em; color: var(--accent); }
.social ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; align-items: center; gap: 1.75rem;
}
.social a { display: block; padding: 0.25rem; color: rgba(255, 255, 255, 0.8); transition: color 0.15s; }
.social a:hover { color: var(--accent-bright); }
.social svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }
.social a:hover svg { filter: drop-shadow(0 0 10px rgba(32, 217, 208, 0.6)); }

/* ── Entrances ── */
@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes logo-in { from { opacity: 0; transform: translateY(-10px) scale(0.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
.anim { opacity: 0; animation: rise-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.anim-logo { opacity: 0; animation: logo-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.d1 { animation-delay: 0.12s; }
.d2 { animation-delay: 0.24s; }
.d3 { animation-delay: 0.36s; }
.d4 { animation-delay: 0.48s; }
.d5 { animation-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim, .anim-logo { animation: none; opacity: 1; transform: none; }
}
