:root {
  --bg: #0B1220;
  --text-primary: #EAF6FF;
  --text-secondary: #8FA9C0;
  --text-footer: #4A5A6E;
  --accent-start: #4FD1FF;
  --accent-end: #4F7CFF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/space-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/space-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  font-family: 'Inter', sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
}

.glow {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(79, 209, 255, 0.55) 0%, rgba(79, 124, 255, 0) 70%);
  filter: blur(10px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-main {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  line-height: 1;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.1s forwards;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 8px;
  color: var(--accent-start);
  margin-top: 6px;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.28s forwards;
}

.tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 28px;
  max-width: 420px;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.46s forwards;
}

.contact-button {
  display: inline-block;
  margin-top: 32px;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end), var(--accent-start));
  background-size: 200% auto;
  border: none;
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(79, 124, 255, 0.35);
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.64s forwards, gradientShift 3.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 32px rgba(79, 209, 255, 0.55);
}

.site-footer {
  position: absolute;
  bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-footer);
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.9s forwards;
}

.site-footer a {
  color: var(--text-footer);
  text-decoration: underline;
}

.site-footer a:hover {
  color: var(--text-secondary);
}

.legal {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.legal-content {
  max-width: 640px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.back-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--accent-start);
  text-decoration: none;
  margin-bottom: 32px;
}

.back-link:hover {
  text-decoration: underline;
}

.legal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.legal-updated {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-footer);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.legal-content a {
  color: var(--accent-start);
}

@media (max-width: 480px) {
  .logo-main { font-size: 38px; }
  .logo-sub { font-size: 12px; letter-spacing: 6px; }
  .tagline { font-size: 14px; }
  .contact-button { padding: 12px 26px; font-size: 13px; }
}

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

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

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
