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

:root {
  --color-bg: #0A0A0F;
  --color-surface: #13131A;
  --color-accent-primary: #1E8FD5;
  --color-accent-secondary: #C8922A;
  --color-text-primary: #F0F0F5;
  --color-text-secondary: #6B7280;
  --color-border: rgba(240, 240, 245, 0.08);
}

html, body {
  height: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  gap: 56px;
}

/* ── Logo ── */
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.1s;
}

.studio-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  font-weight: 400;
}

/* ── Content ── */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.25s;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  font-weight: 500;
}

h1 {
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.body-text {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* ── CTA ── */
.cta {
  display: inline-block;
  margin-top: 8px;
  padding: 13px 32px;
  background: var(--color-accent-primary);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ── Footer ── */
footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--color-text-secondary);
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.4s;
}

.divider {
  color: var(--color-accent-secondary);
}

/* ── Animation ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .page {
    gap: 44px;
  }

  .logo-wrap svg {
    width: 120px;
  }
}
