/* ============================================================
   styles3.css (v3)
   ============================================================ */

/* ===================== */
/* Root variables         */
/* ===================== */

:root {
  /* ========== TIMINGS ========== */
  --t-birth:   2400ms;                     /* duur van de eerste bang */
  --t-hold:     600ms;                     /* korte pauze na bang */
  --t-after:   1000ms;                     /* extra nablijftijd na jets */

  --t-exit:    1000ms;                     /* trage fade-out overlay */
  --t-enter:   1500ms;                     /* trage fade-in site */

  /* momenten */
  --t-exit-start: calc(var(--t-birth) + var(--t-hold) + var(--t-after));
  --t-bang:       calc(var(--t-birth) + 10ms);

  /* ========== EASING ========== */
  --ease-site:   cubic-bezier(.33, .0, .67, 1); /* zachte ease-in-out voor site fade-in */
  --ease-smooth: cubic-bezier(.25,1,.5,1);      /* voor jets */
  --ease-soft:   cubic-bezier(.22,.61,.36,1);   /* voor bang/halo */

  /* ========== SCALE/OVERLAY ========== */
  --end-scale: 0.75;

  /* ========== HALO ========== */
  --halo-delay: 360ms;
  --halo-core:  0.98;

  /* ========== FLASH & JETS ========== */
  --t-flash2-start: var(--t-birth);        /* jets direct na bang */
  --t-flash2:       1100ms;
  --t-jets:         1200ms;
  --t-jets-delay:     40ms;
  --jet-length:      60vw;
  --jet-thickness:    2px;
  --ringR: clamp(3.6rem, 6vw, 4.9rem);

  /* header hoogte indicatief (voor scroll-margin anchors) */
  --header-h: 4rem;
}

/* ===================== */
/* Basis / reset         */
/* ===================== */

html,
body {
  height: 100%;
  margin: 0;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}


/* scrollcontainer = html */
html{
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

/* ✅ Scroll-snap targets (dit miste in je huidige file -> snap werkte niet) */
section#home,
section#intro,
section#gallery,
section#about,
section#shop {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
  scroll-margin-top: 0;
}
/* =================== */
/* Startup animaties   */
/* =================== */

.startup-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.startup-soft {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(0,0,0,.32), rgba(0,0,0,.32)),
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,.08) 0%, rgba(0,0,0,.7) 75%);
}

@keyframes singularity {
  0%   { transform: scale(0);    opacity: 0;   filter: blur(0) }
  25%  { transform: scale(.9);   opacity: 1;   filter: blur(0) }
  62%  { transform: scale(2.6);  opacity: var(--halo-core); filter: blur(5px) }
  85%  { transform: scale(7.4);  opacity: .46; filter: blur(10px) }
  100% { transform: scale(10.5); opacity: 0;   filter: blur(18px) }
}

.singularity {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  box-shadow:
    0 0 38px 12px rgba(255,255,255,0.95),
    0 0 120px 32px rgba(59,130,246,0.60),
    0 0 170px 40px rgba(6,182,212,0.40);
  animation: singularity var(--t-birth) var(--ease-soft) forwards;
  z-index: 2;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  transform: translate(-50%,-50%) translateZ(0);
}

@keyframes haloDust {
  0%   { transform: translate(-50%,-50%) scale(.25); opacity: 0;   filter: blur(10px) }
  22%  { opacity: 1;                                 filter: blur(12px) }
  60%  { opacity: .55;                               filter: blur(16px) }
  100% { transform: translate(-50%,-50%) scale(2.2);  opacity: 0;   filter: blur(24px) }
}

.flash-halo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 520px;
  height: 520px;
  border-radius: 9999px;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.78) 12%,
      rgba(59,130,246,.62) 28%,
      rgba(6,182,212,.44) 50%,
      rgba(16,185,129,.32) 66%,
      rgba(0,0,0,0) 80%),
    radial-gradient(circle at 50% 50%,
      rgba(255,255,255,.34) 0%,
      rgba(59,130,246,.26) 36%,
      rgba(6,182,212,.22) 58%,
      rgba(16,185,129,.18) 72%,
      rgba(0,0,0,0) 88%);
  mix-blend-mode: screen;
  opacity: 0;
  z-index: 2;
  animation: haloDust var(--t-birth) var(--ease-soft) both;
  animation-delay: var(--halo-delay);
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  transform: translate(-50%,-50%) translateZ(0);
  pointer-events: none;
}

/* titel-animaties */
.startup-title {
  position: relative;
  display: inline-block;
}

.title-gradient {
  display: block;
  background-image: linear-gradient(90deg,#10b981 0%,#06b6d4 25%,#3b82f6 50%,#06b6d4 75%,#10b981 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  will-change: background-position;
  animation:
    ribbonSweep var(--t-hold) linear both var(--t-bang),
    ribbonSweepExit var(--t-exit) linear both var(--t-exit-start);
}

@keyframes ribbonSweep {
  from { background-position: 0% 50% }
  to   { background-position: 200% 50% }
}

@keyframes ribbonSweepExit {
  from { background-position: 200% 50% }
  to   { background-position: 240% 50% }
}

.startup-badge {
  position: relative;
  overflow: visible;
  height: 8rem;
  width: 8rem;
  margin: 0 auto;
  will-change: transform, opacity, filter;
  z-index: 3;
}

@media (min-width:640px){
  .startup-badge{
    height: 10rem;
    width: 10rem;
  }
}

.startup-badge img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 3;
}

/* jets */
@keyframes jetsOut {
  0%   { opacity: 0;   transform: scaleX(.02) }
  15%  { opacity: 1 }
  60%  { opacity: .98; transform: scaleX(.85) }
  100% { opacity: 0;   transform: scaleX(1) }
}

.jets {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}

.jet {
  position: absolute;
  top: 50%;
  height: var(--jet-thickness);
  width: var(--jet-length);
  background: linear-gradient(90deg,
    rgba(0,0,0,0) 0%,
    rgba(255,255,255,1) 10%,
    rgba(191,219,254,1) 20%,
    rgba(59,130,246,1) 32%,
    rgba(6,182,212,1) 46%,
    rgba(134,239,172,1) 58%,
    rgba(0,0,0,0) 100%);
  box-shadow:
    0 0 16px rgba(255,255,255,0.95),
    0 0 24px rgba(59,130,246,0.90),
    0 0 32px rgba(6,182,212,0.75);
  filter: blur(.3px);
  opacity: 0;
  transform-origin: left center;
}

.jet--right {
  left: calc(50% + var(--ringR));
  transform: translateY(-50%) scaleX(.02);
  animation: jetsOut var(--t-jets) var(--ease-smooth) both calc(var(--t-flash2-start) + var(--t-jets-delay));
}

.jet--left {
  right: calc(50% + var(--ringR));
  transform-origin: right center;
  transform: translateY(-50%) scaleX(.02);
  background: linear-gradient(270deg,
    rgba(0,0,0,0) 0%,
    rgba(255,255,255,1) 10%,
    rgba(191,219,254,1) 20%,
    rgba(59,130,246,1) 32%,
    rgba(6,182,212,1) 46%,
    rgba(134,239,172,1) 58%,
    rgba(0,0,0,0) 100%);
  animation: jetsOut var(--t-jets) var(--ease-smooth) both calc(var(--t-flash2-start) + var(--t-jets-delay));
}

.jet::before,
.jet::after {
  content: "";
  position: absolute;
  inset: -6px 0 -6px 0;
  pointer-events: none;
  background: inherit;
  opacity: .30;
  filter: blur(6px);
}

.jet::after {
  inset: -10px 0 -10px 0;
  opacity: .18;
  filter: blur(12px);
}

/* exit + app fade */
@keyframes startupExit {
  from { opacity: 1; }
  to   { opacity: 0; visibility: hidden; }
}

.startup-exit {
  animation: startupExit var(--t-exit) var(--ease-soft) forwards;
  animation-delay: var(--t-exit-start);
}

.app-shell {
  opacity: 0;
  transition: opacity var(--t-enter) var(--ease-site);
  min-height: 100vh;
}

.app-shell.show {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.delay-0 { transition-delay: 0.1s; }
.reveal.delay-1 { transition-delay: 0.4s; }
.reveal.delay-2 { transition-delay: 0.7s; }

circle.cStar {
  fill: #fff;
  stroke: none;
}

.startup-fade {
  opacity: 0;
  transform: scale(0.2);
  animation: fadeInFlow var(--t-birth) linear forwards;
  animation-delay: 0ms;
}

@keyframes fadeInFlow {
  0%   { opacity: 0;    transform: scale(0.2); }
  10%  { opacity: 0;    transform: scale(0.3); }
  20%  { opacity: 0.1;  transform: scale(0.4); }
  30%  { opacity: 0.2;  transform: scale(0.5); }
  40%  { opacity: 0.3;  transform: scale(0.6); }
  50%  { opacity: 0.45; transform: scale(0.7); }
  60%  { opacity: 0.6;  transform: scale(0.8); }
  70%  { opacity: 0.75; transform: scale(0.9); }
  80%  { opacity: 0.9;  transform: scale(0.96); }
  90%  { opacity: 0.97; transform: scale(0.985); }
  100% { opacity: 1;    transform: scale(1); }
}

#root {
  opacity: 0;
  background: black;
  animation: rootFadeIn var(--t-enter) var(--ease-site) forwards;
  animation-delay: var(--t-exit-start);
}

@keyframes rootFadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
  animation: fadeInUp 1.2s ease-out forwards;
}

/* ===================== */
/* Sectie divider + text */
/* ===================== */

@keyframes ribbonFlow {
  0%   { background-position: 0% 50% }
  100% { background-position: 200% 50% }
}

.ribbon {
  height: 26px;
  background-image: linear-gradient(90deg,#10b981 0%,#06b6d4 25%,#3b82f6 50%,#06b6d4 75%,#10b981 100%);
  background-size: 200% 100%;
  animation: ribbonFlow 18s linear infinite;
  clip-path: polygon(0 0,100% 8%,100% 100%,0 100%);
  box-shadow: 0 -8px 18px rgba(16,185,129,.12);
}

.ribbon-text {
  background-image: linear-gradient(90deg,#10b981 0%,#06b6d4 25%,#3b82f6 50%,#06b6d4 75%,#10b981 100%);
  background-size: 200% 100%;
  animation: ribbonFlow 20s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  padding-bottom: .08em;
  line-height: 1.15;
  will-change: background-position;
}

@media (prefers-reduced-motion: reduce){
  .ribbon,
  .ribbon-text,
  .title-gradient,
  .badge-wow{
    animation: none;
  }
}

/* ================= */
/*       MENU        */
/* ================= */

/* jouw “crisp flat” variant (desktop) */
header {
  background: transparent;
  background-image: none;
  backdrop-filter: none;
  border: none;
}

header nav a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

header nav a:hover { color: #ffffff; }

header nav a.active {
  color: #facc15;
  font-weight: 600;
}

/* Language switch – crisp, flat */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 1rem;
  padding: 0;
  background: transparent;
  border-radius: 9999px;
  border: none;
}

.lang-switch-btn {
  min-width: 2.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  border: 1px solid #1f2937;
  background: #020617;
  color: #9ca3af;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  box-shadow: none;
}

.lang-switch-btn.is-active {
  background: #0ea5e9;
  color: #ffffff;
  border-color: #38bdf8;
}

.lang-switch-btn:not(.is-active):hover {
  background: #020617;
  color: #e5e7eb;
  border-color: #4b5563;
}

header a {
  color: white;
  font-weight: 500;
}
header a:hover { color: #f0f0f0; }

/* =========== */
/* Hero layout */
/* =========== */

.hero-wrap {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  min-height: 100vh;
}

.hero-content {
  position: relative;
  z-index: 30;
}

.hero-title { font-size: 2.5rem; }
@media (min-width:640px){ .hero-title{ font-size: 3rem; } }
@media (min-width:768px){ .hero-title{ font-size: 3.5rem; } }

#constellations,
#svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

#constellations canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  width: 100% !important;
  height: 100% !important;
  background: transparent !important;
  display: block;
}

circle.animate { animation: twinkle 2s infinite; }
@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50%      { opacity: 1; }
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 700px;
  background: rgba(0,0,0,0.25);
  z-index: -1;
}

.scroll-down {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 40;
}

.scroll-label {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  color: #00ffe0;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

.scroll-down span {
  display: block;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid #00ffe0;
  border-right: 2px solid #00ffe0;
  transform: rotate(45deg);
  margin: -2px auto;
  animation: scrollDown 2s infinite;
  opacity: 0.6;
}

.scroll-down span:nth-child(1) { animation-delay: 0s; }
.scroll-down span:nth-child(2) { animation-delay: 0.3s; }
.scroll-down span:nth-child(3) { animation-delay: 0.6s; }

@keyframes scrollDown {
  0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
  50% { opacity: 1; transform: rotate(45deg) translate(0, 0); }
  100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

@keyframes scrollX {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-scroll { animation: scrollX 60s linear infinite; }

.hero-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
  z-index: 0;
  image-rendering: auto;
  filter: brightness(0.47) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 25;
  pointer-events: none;
}

.hero-video {
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-video.show { opacity: 1; }

/* ================= */
/* Constellation txt */
/* ================= */

.list-item {
  fill: #fff;
  font-size: 16px;
  font-family: sans-serif;
  cursor: pointer;
  user-select: none;
  opacity: .85;
  pointer-events: all;
  transition: fill 0.3s ease, opacity 0.3s ease;
}

.list-item:hover {
  fill: #2dd4bf;
  font-weight: bold;
  opacity: 1;
}

.scroll-down-single span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 3px solid white;
  border-right: 3px solid white;
  transform: rotate(45deg);
  margin: auto;
  animation: blink 1.2s infinite;
  opacity: 0.8;
}

.scroll-up-single span {
  display: block;
  width: 20px;
  height: 20px;
  border-top: 3px solid white;
  border-left: 3px solid white;
  transform: rotate(45deg);
  margin: auto;
  animation: blink 1.2s infinite;
  opacity: 0.8;
}

@keyframes blink {
  0%, 100% { opacity: 0.2; }
  50%      { opacity: 1; }
}

/* -------------------------------------------------
   Antharion – Astro glass card
   ------------------------------------------------- */

.astro-glass-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(148, 244, 255, 0.35);
  background:
    radial-gradient(circle at top left, rgba(148, 244, 255, 0.22), transparent 55%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.18), transparent 55%),
    linear-gradient(160deg, rgba(15, 23, 42, 0.96), rgba(8, 47, 73, 0.98));
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.7),
    0 32px 90px rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.astro-glass-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      rgba(240, 249, 255, 0.28),
      rgba(15, 23, 42, 0) 28%,
      rgba(56, 189, 248, 0.18) 58%,
      rgba(15, 23, 42, 0)
    );
  opacity: 0.9;
  pointer-events: none;
}

.astro-glass-card > * {
  position: relative;
  z-index: 1;
}

/* =========================== */
/* Cosmic footer (desktop/base)*/
/* =========================== */

.anth-footer-border {
  position: relative;
  width: 100%;
  left: 0;
  transform: none;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow:
    0 0 32px rgba(15, 23, 42, 0.95),
    0 0 18px rgba(34, 211, 238, 0.35);
  border-top: 1px solid rgba(34, 211, 238, 0.65);
}

.anth-footer-inner {
  width: 100%;
  padding: 0.45rem 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 1.5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.8));
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 1);
}

.anth-footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
}

.anth-footer-link {
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.78);
  text-decoration: none;
}
.anth-footer-link:hover { color: #ffffff; }

.anth-footer-sep { color: rgba(148, 163, 184, 0.7); }

.anth-footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.1rem;
  justify-self: center;
}

.anth-footer-label {
  font-size: 0.68rem;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 0 10px rgba(34, 211, 238, 0.75),
    0 0 20px rgba(56, 189, 248, 0.5);
}

.anth-footer-text {
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.9);
}

.anth-footer-copy {
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.78);
  text-align: right;
  white-space: nowrap;
  justify-self: end;
}

#home .anth-footer-border {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* =========================== */
/* Cosmic header (desktop/base)*/
/* =========================== */

.anth-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.anth-header-bar {
  position: relative;
  width: 100%;
  left: 0;
  transform: none;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow:
    0 0 32px rgba(15, 23, 42, 0.95),
    0 0 18px rgba(34, 211, 238, 0.35);
  border-bottom: 1px solid rgba(34, 211, 238, 0.65);
}

.anth-header-inner {
  width: 100%;
  padding: 0.45rem 1.8rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.99));
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 1);
}

/* ========================= */
/*  Tagline "Mexican wave"   */
/* ========================= */

.tagline-wave { display: inline-block; }

.tagline-char {
  display: inline-block;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

.tagline-char--space { width: 0.35em; }

.tagline-char--animated {
  opacity: 0.3;
  animation: taglineWave 1.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: calc(var(--char-index) * 70ms);
  will-change: opacity, transform, text-shadow, color;
}

@keyframes taglineWave {
  0% {
    opacity: 0.3;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: none;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
    color: #e5f9ff;
    text-shadow:
      0 0 6px rgba(59, 130, 246, 0.9),
      0 0 14px rgba(6, 182, 212, 0.9),
      0 0 24px rgba(16, 185, 129, 0.7);
    transform: translateY(-2px);
  }
  100% {
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
    transform: translateY(0);
  }
}

/* ===== GENERIEKE OVERLAY ===== */

.anth-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  --anth-overlay-rgb: 0, 0, 0;
  --anth-overlay-opacity: 0.75;
  background-color: rgba(var(--anth-overlay-rgb), var(--anth-overlay-opacity));
  transition: background-color 200ms ease-out;
}

.anth-overlay--dark { --anth-overlay-rgb: 0, 0, 0; }
.anth-overlay--light { --anth-overlay-rgb: 255, 255, 255; }

.anth-overlay--soft { --anth-overlay-opacity: 0.35; }
.anth-overlay--medium { --anth-overlay-opacity: 0.65; }
.anth-overlay--strong { --anth-overlay-opacity: 0.9; }

/* ===========================================
   Hero – Constellation info card
   =========================================== */

.hero-constellation-card {
  transform-origin: left bottom;
  animation: heroConstellationCardIn 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroConstellationCardIn {
  0% { opacity: 0; transform: translateY(12px) scaleY(0.7); }
  60% { opacity: 1; transform: translateY(0) scaleY(1.02); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); }
}

.hero-constellation-card h3,
.hero-constellation-card p {
  opacity: 0;
  transform: translateY(6px);
  animation: heroCardTextIn 1.0s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-constellation-card h3 {
  animation-delay: 140ms;
  color: rgba(226, 232, 240, 0.78);
}

.hero-constellation-card p {
  animation-delay: 220ms;
}

@keyframes heroCardTextIn {
  0% { opacity: 0; color: rgba(148, 163, 184, 0.4); transform: translateY(6px); }
  60% { opacity: 1; color: rgba(203, 213, 225, 0.9); transform: translateY(0); }
  100% { opacity: 1; color: rgba(203, 213, 225, 0.9); transform: translateY(0); }
}

/* Laptops (15" en kleiner) -> lager + breder, maar ALTIJD boven footer */
@media (min-width: 768px) and (max-width: 1550px) {
  .hero-constellation-card {
    left: 1rem !important;
    bottom: calc(2.5rem + 1rem + env(safe-area-inset-bottom, 0px)) !important;
    width: min(42rem, 72vw) !important;
    max-width: none !important;
  }
}

/* zwarte highlight rond tekst, per regel */
.quote-bg {
  background: rgba(0, 0, 0, 0.62);
  padding: 0.12em 0.38em;
  border-radius: 0.45em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* modal helper */
html.anth-modal-open, html.anth-modal-open body { overflow: hidden; }
.anth-section-blurred { filter: blur(10px); transition: filter 240ms ease; }

/* ============================================================
   STATIC PAGES BACKDROP (cookies / terms / contact)
   ============================================================ */

html.static-page {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,0,0,.25) 0%, rgba(0,0,0,.92) 70%),
    url("/images/noise-stars.jpg") center / cover no-repeat fixed;
}

html.static-page body,
html.static-page #root {
  background: transparent !important;
}

html.static-page #root {
  opacity: 1 !important;
  animation: none !important;
}

/* STATIC PAGES — COSMIC GLASS PANEL */
html.static-page .anth-frame-card{
  position: relative;
  border-radius: 18px;
  padding: 2px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(34,211,238,0.55),
    rgba(59,130,246,0.28),
    rgba(16,185,129,0.18)
  );
  box-shadow:
    0 30px 110px rgba(0,0,0,0.78),
    0 0 40px rgba(34,211,238,0.18);
}

html.static-page .anth-frame-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.14), transparent 55%),
    radial-gradient(circle at 78% 28%, rgba(34,211,238,0.10), transparent 60%),
    linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(0,0,0,0));
  pointer-events:none;
}

html.static-page .anth-frame-card-inner{
  position: relative;
  z-index: 1;
  border-radius: 16px;
  padding: 2.25rem 2.5rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(34,211,238,0.14), transparent 55%),
    radial-gradient(circle at 85% 85%, rgba(59,130,246,0.12), transparent 60%),
    linear-gradient(160deg, rgba(2,6,23,0.82), rgba(8,47,73,0.78)) !important;
  border: 1px solid rgba(226,232,240,0.14);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 18px 60px rgba(0,0,0,0.35);
}

html.static-page .anth-frame-card-inner::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events:none;
}

html.static-page .anth-frame-card-inner,
html.static-page .anth-frame-card-inner p{
  color: rgba(226,232,240,0.90) !important;
}

html.static-page .anth-frame-card-inner .ribbon-text{
  color: rgba(255,255,255,0.96) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.96) !important;
  text-shadow: 0 2px 22px rgba(0,0,0,0.60);
}

html.static-page .anth-frame-card-inner .anth-footer-link{
  color: rgba(34,211,238,0.95) !important;
  text-decoration: none;
  font-size: 0.85rem;
}
html.static-page .anth-frame-card-inner .anth-footer-link:hover{
  color: rgba(165,243,252,0.98) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px){
  html.static-page .anth-frame-card-inner{
    padding: 1.4rem 1.2rem;
  }
}

/* ============================================================
   FIXED HEADER/FOOTER LAYOUT HELPERS
   (staat bij jou in de file -> behouden)
   ============================================================ */

#app-shell > header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

#app-shell > footer{
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
}

.anth-page-content,
section#page{
  padding-top: var(--anth-header-h);
  padding-bottom: calc(var(--anth-footer-h) + env(safe-area-inset-bottom));
}


