/* kidstock.in coming-soon page.
   Tokens follow styleguide v0.4 + the 22 Sep Figma read (approved onboarding screens):
   midnight backdrop #041024, onboarding card rgba(4,16,36,.8) with #325774 hairline and radius 16,
   identity gradient #4CD8F0→#1050A1, hero-CTA gradient #7AF6FF→#2440DF, eyebrow 14/400 #C5C5C5 +8%,
   wordmark 40/800 tracking −2% with line-height = size, soft text #99A0AE, Manrope self-hosted. */

@font-face {
  font-family: 'Manrope';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Manrope-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Manrope-ExtraBold.ttf') format('truetype');
}

:root {
  --ks-ink-midnight: #041024;
  --ks-card: rgba(4, 16, 36, 0.8);
  --ks-hairline: #325774;
  --ks-ink-on-dark: #ffffff;
  --ks-ink-eyebrow: #c5c5c5;
  --ks-ink-soft: #99a0ae;
  --ks-grad-identity: linear-gradient(135deg, #4cd8f0 0%, #1050a1 100%);
  --ks-grad-hero-cta: linear-gradient(90deg, #7af6ff 0%, #2440df 100%);
  --ks-r-card: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  padding: 24px;
  background: var(--ks-ink-midnight);
  color: var(--ks-ink-on-dark);
  font-family:
    'Manrope',
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  position: relative;
}

.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60vmax 60vmax at 20% 10%, rgba(76, 216, 240, 0.28), transparent 60%),
    radial-gradient(70vmax 70vmax at 85% 90%, rgba(16, 80, 161, 0.45), transparent 62%);
}

.card {
  position: relative;
  width: min(100%, 345px);
  padding: 40px 32px;
  background: var(--ks-card);
  border: 1px solid var(--ks-hairline);
  border-radius: var(--ks-r-card);
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ks-ink-eyebrow);
}

.wordmark {
  margin: 0;
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ks-ink-on-dark);
}

.wordmark a {
  color: inherit;
  text-decoration: none;
}

.bar {
  display: block;
  width: 48px;
  height: 4px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: var(--ks-grad-hero-cta);
}

.foot {
  position: relative;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: var(--ks-ink-soft);
}

@media (min-width: 720px) {
  .card {
    width: min(100%, 560px);
    padding: 64px 48px;
  }
  .wordmark {
    font-size: 56px;
    line-height: 56px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .glow {
    animation: drift 18s ease-in-out infinite alternate;
  }
  @keyframes drift {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-2%, 2%, 0);
    }
  }
}
