﻿@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,600;9..144,700&family=Manrope:wght@300;400;500;600&display=swap");

:root {
  --bg: #070b0f;
  --bg-2: #0c1218;
  --ink: #edf0f2;
  --muted: #a7b1b8;
  --accent: #b1f5d6;
  --gold: #f1d58b;
  --deep: #1b2831;
  --glass: rgba(12, 18, 24, 0.55);
  --ring: rgba(177, 245, 214, 0.35);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, #122233 0%, var(--bg) 40%),
    radial-gradient(circle at 85% 20%, #1b2c3a 0%, var(--bg-2) 45%),
    linear-gradient(120deg, #0a1118 0%, #070b0f 100%);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(241, 213, 139, 0.08), transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(177, 245, 214, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}

.glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(177, 245, 214, 0.24), transparent 60%);
  top: -10%;
  right: -8%;
  filter: blur(10px);
  animation: drift 14s ease-in-out infinite alternate;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 64px 8vw 40px;
  text-align: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1s ease-out 0.2s forwards;
  flex-direction: column;
}

.logo-card {
  padding: 20px 26px;
  border-radius: 22px;
  background: rgba(10, 16, 22, 0.75);
  border: 1px solid rgba(177, 245, 214, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}

.logo {
  width: clamp(240px, 44vw, 520px);
  height: auto;
  display: block;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content {
  max-width: 640px;
  background: var(--glass);
  border: 1px solid rgba(241, 213, 139, 0.08);
  border-radius: 24px;
  padding: 36px 38px;
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(30px);
  animation: rise 1s ease-out 0.5s forwards;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--gold);
  margin: 0 0 12px;
}

h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  margin: 0 0 16px;
}

.subtitle {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 20px 8vw 30px;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-60px, 40px, 0);
  }
}

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

@media (max-width: 720px) {
  .hero {
    padding: 48px 6vw 30px;
  }

  .content {
    padding: 28px;
  }

  .brand {
    flex-direction: column;
    gap: 12px;
  }
}
