:root {
  --bg: #0a0b0f;
  --fg: #f4f1ea;
  --muted: rgba(244, 241, 234, 0.55);
  --accent: #e8a54b;
  --accent-2: #c45c3a;
  --glow: rgba(232, 165, 75, 0.45);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html,
body {
  height: 100%;
  margin: 0;
}

body {
  --mx: 0;
  --my: 0;
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 3;
}

.aurora {
  position: fixed;
  inset: -20%;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.85;
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

@keyframes aurora-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-4%, 3%) scale(1.05);
  }
}

.blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
}

.blob-1 {
  width: 42vmin;
  height: 42vmin;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: 10%;
  left: 15%;
  animation: blob-a 14s var(--ease-out) infinite alternate;
}

.blob-2 {
  width: 55vmin;
  height: 55vmin;
  background: radial-gradient(circle, #5c3d7a 0%, transparent 72%);
  bottom: 5%;
  right: 5%;
  animation: blob-b 16s var(--ease-out) infinite alternate;
}

.blob-3 {
  width: 38vmin;
  height: 38vmin;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 68%);
  top: 45%;
  right: 25%;
  animation: blob-c 12s var(--ease-out) infinite alternate;
}

@keyframes blob-a {
  0% {
    transform: translate(0, 0);
    opacity: 0.55;
  }
  100% {
    transform: translate(12%, 8%);
    opacity: 0.85;
  }
}

@keyframes blob-b {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: translate(-10%, -6%) scale(1.08);
    opacity: 0.7;
  }
}

@keyframes blob-c {
  0% {
    transform: translate(0, 0);
    opacity: 0.35;
  }
  100% {
    transform: translate(-15%, 12%);
    opacity: 0.65;
  }
}

.grid-lines {
  position: fixed;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(
      rgba(244, 241, 234, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(244, 241, 234, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
  pointer-events: none;
}

.shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  transform: translate(
    calc(var(--mx) * 10px),
    calc(var(--my) * 8px)
  );
  transition: transform 0.35s var(--ease-out);
  will-change: transform;
}

.top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
  width: 100%;
}

.mark {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
}

.mark-ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(232, 165, 75, 0.5);
  border-radius: 50%;
  animation: ring-pulse 2.8s ease-in-out infinite;
}

.mark-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--glow);
}

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

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero {
  flex: 0 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  font-size: clamp(3rem, 12vw, 4.75rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.word {
  display: inline-block;
}

.word-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #f5d4a0 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 40px rgba(232, 165, 75, 0.25));
}

.tagline {
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 auto 2rem;
  max-width: 32ch;
}

.tagline strong {
  font-weight: 600;
  color: rgba(244, 241, 234, 0.88);
}

.soon-wrap {
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.soon {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 165, 75, 0.35);
  background: rgba(10, 11, 15, 0.6);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.soon-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(232, 165, 75, 0.15) 45%,
    transparent 90%
  );
  animation: shimmer 3.2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.soon-label {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.soon-dots {
  position: relative;
  display: flex;
  gap: 0.28rem;
}

.soon-dots span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
  animation: dot-bounce 1.2s ease-in-out infinite;
}

.soon-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.soon-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes dot-bounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  40% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.chips li {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 234, 0.1);
  color: var(--muted);
  background: rgba(244, 241, 234, 0.04);
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.chips li:hover {
  border-color: rgba(232, 165, 75, 0.35);
  color: rgba(244, 241, 234, 0.85);
}

.foot {
  margin-top: clamp(2rem, 5vh, 3.5rem);
  padding-top: 0;
  width: 100%;
}

.hint {
  font-size: 0.875rem;
  color: rgba(244, 241, 234, 0.35);
  margin: 0;
}

.hint + .contact-block {
  margin-top: 1.25rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bg);
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent) 0%, #f0c47a 100%);
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(232, 165, 75, 0.25);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out),
    filter 0.2s var(--ease-out);
}

.btn-contact:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 28px rgba(232, 165, 75, 0.35);
  transform: translateY(-1px);
}

.btn-contact:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.contact-note {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(244, 241, 234, 0.45);
  line-height: 1.4;
}

.contact-email {
  color: rgba(244, 241, 234, 0.78);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 165, 75, 0.35);
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.contact-email:hover {
  color: var(--accent);
  border-color: rgba(232, 165, 75, 0.55);
}

.contact-email:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.contact-block + .hint-by {
  margin-top: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1rem);
  animation: reveal-up 0.9s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.float-decor {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  color: var(--accent);
}

.icon-float {
  position: absolute;
  width: clamp(3rem, 8vw, 4.5rem);
  height: clamp(3rem, 8vw, 4.5rem);
}

.icon-float.i1 {
  top: 18%;
  right: 8%;
  animation: float-y 7s ease-in-out infinite;
}

.icon-float.i2 {
  bottom: 22%;
  left: 6%;
  animation: float-y 8s ease-in-out infinite 0.5s;
}

.icon-float.i3 {
  top: 52%;
  right: 12%;
  animation: float-y 6.5s ease-in-out infinite 1s;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(3deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
