/* Gold Mega Line — Coming Soon */
:root {
  --bg-deep: #030304;
  --bg-mid: #0a0a0c;
  --gold: #d4af37;
  --gold-light: #f0d78c;
  --gold-dim: rgba(212, 175, 55, 0.45);
  --gold-glow: rgba(212, 175, 55, 0.35);
  --text: #e8e6e3;
  --text-muted: rgba(232, 230, 227, 0.55);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(212, 175, 55, 0.18);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 175, 55, 0.15), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(212, 175, 55, 0.06), transparent 45%),
    radial-gradient(ellipse 50% 35% at 0% 80%, rgba(100, 80, 40, 0.12), transparent 50%),
    linear-gradient(180deg, #050506 0%, #030304 40%, #080809 100%);
  /* Avoid CSS filter on full-screen layers — forces expensive repaints every frame */
  animation: bgShift 32s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.92;
    transform: scale(1.015);
  }
}

.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.32;
  animation: orbFloat 18s ease-in-out infinite;
  transform: translateZ(0);
}

.orb-1 {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4), transparent 70%);
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.orb-2 {
  width: min(35vw, 320px);
  height: min(35vw, 320px);
  background: radial-gradient(circle, rgba(180, 140, 60, 0.25), transparent 70%);
  bottom: 10%;
  right: -5%;
  animation-delay: -6s;
}

.orb-3 {
  width: min(30vw, 280px);
  height: min(30vw, 280px);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
  bottom: 30%;
  left: -8%;
  animation-delay: -12s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(2%, 3%) scale(1.08);
  }
}

.world-map {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: screen;
}

.world-map__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.float-layer {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.float-item {
  position: absolute;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dim);
  opacity: 0.35;
  transform: translateZ(0);
}

.float-item svg {
  width: 100%;
  height: 100%;
}

.float-item--1 {
  top: 18%;
  left: 8%;
  animation: floatA 14s ease-in-out infinite;
}

.float-item--2 {
  top: 28%;
  right: 10%;
  animation: floatB 16s ease-in-out infinite;
  animation-delay: -2s;
}

.float-item--3 {
  bottom: 35%;
  left: 12%;
  animation: floatA 18s ease-in-out infinite;
  animation-delay: -4s;
}

.float-item--4 {
  top: 55%;
  right: 6%;
  animation: floatB 15s ease-in-out infinite;
  animation-delay: -7s;
}

.float-item--5 {
  bottom: 22%;
  right: 18%;
  animation: floatA 17s ease-in-out infinite;
  animation-delay: -9s;
}

.float-item--6 {
  top: 42%;
  left: 4%;
  animation: floatB 19s ease-in-out infinite;
  animation-delay: -11s;
}

@keyframes floatA {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(12px, -18px) rotate(4deg);
  }
  66% {
    transform: translate(-8px, 10px) rotate(-3deg);
  }
}

@keyframes floatB {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate(-14px, 16px) rotate(-5deg) scale(1.05);
  }
}

.top-bar {
  position: relative;
  z-index: 10;
  padding: clamp(1rem, 3vw, 1.75rem) clamp(1.25rem, 4vw, 2.5rem);
}

.top-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.25rem;
}

.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 24px 48px rgba(0, 0, 0, 0.35);
}

.glass-panel--header {
  border-radius: 999px;
}

.top-bar__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-shadow: 0 0 24px var(--gold-glow);
}

.top-bar__tag {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero {
  position: relative;
  z-index: 10;
  min-height: calc(100dvh - 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem) 2rem;
  max-width: 920px;
  margin: 0 auto;
}

.hero__glow {
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
}

.hero__glow--ring {
  width: min(90vw, 520px);
  height: min(90vw, 520px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow:
    0 0 60px rgba(212, 175, 55, 0.08),
    inset 0 0 60px rgba(212, 175, 55, 0.04);
  animation: pulseRing 6s ease-in-out infinite;
}

.hero__glow--core {
  width: min(70vw, 380px);
  height: min(70vw, 380px);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 65%);
  animation: pulseCore 5s ease-in-out infinite alternate;
}

@keyframes pulseRing {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes pulseCore {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.9;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: revealIn 1.1s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.35rem, 9.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.title__line {
  display: block;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, #a67c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(212, 175, 55, 0.35));
}

.title__line--full {
  display: block;
  letter-spacing: 0.08em;
}

.subtitle {
  margin: 1.5rem 0 0;
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.coming-block {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 4vw, 2.25rem);
  max-width: 640px;
}

.coming-block__label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow:
    0 0 20px rgba(212, 175, 55, 0.5),
    0 0 60px rgba(212, 175, 55, 0.2);
  margin-bottom: 1rem;
  position: relative;
}

.coming-block__label::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 12px var(--gold);
}

.coming-block__text {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
}

.bottom-row {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  width: 100%;
  max-width: 640px;
}

.contact {
  flex: 0 1 auto;
  width: min(100%, 420px);
  padding: 1.1rem 1.35rem;
  text-align: center;
}

.contact__title {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact__email {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold-light);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.25s var(--ease-out), text-shadow 0.25s;
}

.contact__email:hover {
  color: #fff;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.6);
}

.footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1.5rem 1rem 2rem;
}

.footer__text {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(232, 230, 227, 0.28);
}

@media (max-width: 520px) {
  .float-item {
    opacity: 0.22;
    transform: scale(0.85);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .particles-canvas {
    display: none;
  }
}
