/* =========================================================
   Noventra B.V. — Binnenkort live
   Donkere "celestial" landingspagina met aurora-gloed
   ========================================================= */

:root {
  --ink:        #090807;
  --ink-2:      #141010;
  --text:       #F4EFEC;
  --muted:      #9A9088;
  --line:       rgba(255, 255, 255, 0.09);

  --orange:     #F33800;
  --orange-soft:#FF8A5C;
  --glow:       rgba(243, 56, 0, 0.55);

  --display: "Space Grotesk", system-ui, sans-serif;
  --body:    "Inter", system-ui, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  overflow: hidden;
  position: relative;
}

/* ---------- Achtergrond: aurora ---------- */
.aurora {
  position: fixed;
  inset: -25%;
  z-index: 0;
  background:
    radial-gradient(38% 44% at 22% 28%, rgba(243, 56, 0, 0.42), transparent 70%),
    radial-gradient(42% 46% at 80% 30%, rgba(255, 138, 92, 0.20), transparent 70%),
    radial-gradient(50% 55% at 50% 90%, rgba(170, 34, 0, 0.34), transparent 72%);
  filter: blur(20px);
  animation: drift 22s ease-in-out infinite alternate;
}

@keyframes drift {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1);    opacity: 0.85; }
  50%  { transform: translate3d(2%, 1%, 0)  scale(1.08);  opacity: 1;    }
  100% { transform: translate3d(3%, 3%, 0)  scale(1.03);  opacity: 0.9;  }
}

/* ---------- Achtergrond: subtiele sterren ---------- */
.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 15% 22%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 70% 18%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 38% 65%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 85% 72%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 55% 40%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 25% 85%, rgba(255,255,255,0.4), transparent);
  opacity: 0.7;
}

/* ---------- Podium / layout ---------- */
.stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.content {
  max-width: 600px;
  text-align: center;
  animation: rise 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

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

/* ---------- Signatuur: monogram + baan ---------- */
.mark {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2.5rem;
}

.ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ring circle {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 1.5;
  opacity: 0.5;
}

.orbit {
  position: absolute;
  inset: 0;
  animation: spin 7s linear infinite;
}

.orbit-dot {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px 2px var(--orange), 0 0 4px 0 #fff;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.monogram {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: 3.2rem;
  background: linear-gradient(135deg, #fff, #FFC8AE);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px var(--glow);
}

/* ---------- Status ---------- */
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px 1px var(--orange);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%      { opacity: 0.4; transform: scale(0.8); }
}

/* ---------- Wordmark ---------- */
.wordmark {
  margin: 1.6rem 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.8rem, 9vw, 4.8rem);
  letter-spacing: 0.02em;
  line-height: 1;
  background: linear-gradient(120deg, #FFFFFF 28%, var(--orange-soft) 60%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Boodschap ---------- */
.lede {
  margin: 1.4rem auto 0;
  max-width: 30rem;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact {
  display: inline-block;
  margin-top: 2.2rem;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(243, 56, 0, 0.55);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.contact:hover {
  color: var(--orange-soft);
  border-color: var(--orange);
}

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

/* ---------- Footer ---------- */
.footer {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 600px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.footer-tag {
  color: var(--text);
}

/* ---------- Responsief ---------- */
@media (max-width: 520px) {
  .footer {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  .mark { margin-bottom: 2rem; }
}

/* ---------- Toegankelijkheid: minder beweging ---------- */
@media (prefers-reduced-motion: reduce) {
  .aurora,
  .orbit,
  .status-dot,
  .content {
    animation: none;
  }
}
