/* ============================================================================
   DE AUTONOME ONDERNEMING — futuristisch thema
   Donker "deep space" ontwerp met neon-gradiënten, glasmorfisme & glow.
   ========================================================================== */

:root {
  --bg: #07060a;
  --bg-soft: #0d0b10;
  --panel: rgba(255, 252, 244, 0.04);
  --panel-strong: rgba(255, 252, 244, 0.07);
  --border: rgba(236, 200, 120, 0.16);
  --text: #f3efe6;
  --text-dim: #b6ad9a;
  --text-faint: #7e7768;
  /* Luxe goud + chroom palet (afgestemd op de merkbeelden) */
  --gold: #ecc878;
  --gold-bright: #f9e7ad;
  --bronze: #b8863b;
  --chrome: #d6dde8;
  --rose-gold: #e8b58a;
  /* Hergebruikte accentnamen wijzen nu naar het goud/chroom-palet */
  --cyan: #f4dd9a;
  --violet: #c79a3e;
  --magenta: #e8b58a;
  --lime: #f7e3a3;
  --grad: linear-gradient(110deg, #f9e7ad 0%, #ecc878 38%, #c79a3e 64%, #d6dde8 100%);
  --grad-soft: linear-gradient(110deg, rgba(249,231,173,.16), rgba(236,200,120,.16), rgba(214,221,232,.14));
  --glow-cyan: 0 0 40px rgba(236, 200, 120, .35);
  --glow-violet: 0 0 50px rgba(201, 154, 62, .42);
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 10px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, .8);
  --maxw: 1180px;
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Animated cosmic background ---- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 20% 8%, rgba(236, 200, 120, .14), transparent 60%),
    radial-gradient(55% 45% at 85% 12%, rgba(201, 154, 62, .16), transparent 60%),
    radial-gradient(50% 50% at 60% 100%, rgba(214, 221, 232, .10), transparent 60%),
    var(--bg);
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(236, 200, 120, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 200, 120, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 25%, transparent 80%);
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift { to { background-position: 0 64px, 64px 0; } }

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  z-index: -1;
  animation: float 16s ease-in-out infinite;
}
.orb.a { width: 380px; height: 380px; background: radial-gradient(circle, #ecc878, transparent 70%); top: -80px; left: -60px; }
.orb.b { width: 460px; height: 460px; background: radial-gradient(circle, #c79a3e, transparent 70%); top: 30%; right: -120px; animation-delay: -5s; }
.orb.c { width: 300px; height: 300px; background: radial-gradient(circle, #d6dde8, transparent 70%); bottom: -60px; left: 40%; animation-delay: -9s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
}

/* ---- Layout ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }

/* ---- Top nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 6, 10, .6);
  border-bottom: 1px solid var(--border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; letter-spacing: .3px; color: var(--text); text-decoration: none; font-size: 1.02rem; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: var(--grad); box-shadow: var(--glow-violet); font-size: 16px;
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: .92rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px;
  border: 1px solid var(--border); border-radius: 999px; color: var(--text);
  text-decoration: none; font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  transition: border-color .2s, box-shadow .3s, color .2s; }
.lang-switch svg { width: 15px; height: 15px; color: var(--gold-bright); }
.lang-switch:hover { border-color: rgba(236, 200, 120, .55); box-shadow: var(--glow-cyan); }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s, box-shadow .3s, background .3s;
}
.btn-primary { background: var(--grad); color: #07080d; box-shadow: var(--glow-violet); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(168, 85, 247, .6); }
.btn-ghost { background: var(--panel); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(34, 211, 238, .5); box-shadow: var(--glow-cyan); }

/* ---- Hero ---- */
.hero { position: relative; padding: 80px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; text-align: left; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; } .hero { padding-top: 56px; } }
.hero-copy .cta { justify-content: flex-start; }
@media (max-width: 900px) { .hero-copy .cta { justify-content: center; } .hero-copy .eyebrow { margin-left: auto; margin-right: auto; } }

.hero-visual { position: relative; }
.hero-frame {
  position: relative; border-radius: 26px; overflow: hidden;
  border: 1px solid rgba(236, 200, 120, .28);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.85), 0 0 70px -20px rgba(236, 200, 120, .35);
  aspect-ratio: 16 / 11; background: linear-gradient(135deg, rgba(249,231,173,.14), rgba(201,154,62,.18), rgba(214,221,232,.12));
  animation: floatY 9s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-frame-glow { position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 80px rgba(0,0,0,.45); border-radius: 26px; }
/* Sierlijke gloed-rand */
.hero-frame::after {
  content: ""; position: absolute; inset: -1px; border-radius: 26px; padding: 1px;
  background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .6; pointer-events: none;
}
/* Fallback-sieraad wanneer er (nog) geen afbeelding is */
.hero-frame.empty::before {
  content: "◆"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 64px; color: rgba(236,200,120,.55); text-shadow: var(--glow-violet);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px; border-radius: 999px; font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--grad-soft); border: 1px solid var(--border); color: var(--text);
  margin-bottom: 28px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .35; } }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  line-height: 1.02; letter-spacing: -.02em; margin: 0 0 22px; font-weight: 700;
}
.gradient-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; background-size: 200% auto; animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.hero p.lead { font-size: clamp(1.05rem, 2.3vw, 1.35rem); color: var(--text-dim); max-width: 680px; margin: 0 auto 36px; }
.hero .cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.stats { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 64px; }
.stat {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 22px 30px; min-width: 150px; backdrop-filter: blur(8px);
}
.stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { font-size: .82rem; color: var(--text-dim); margin-top: 4px; letter-spacing: .02em; }

/* ---- Sections ---- */
section { padding: 70px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head .kicker { font-family: var(--font-mono); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan); }
.section-head h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 12px 0 14px; letter-spacing: -.01em; }
.section-head p { color: var(--text-dim); font-size: 1.08rem; }

/* ---- Feature grid ---- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; transition: transform .3s, border-color .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.feature::before { content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity .3s; }
.feature:hover { transform: translateY(-6px); border-color: rgba(168, 85, 247, .4); box-shadow: var(--shadow); }
.feature:hover::before { opacity: .5; }
.feature > * { position: relative; }
.feature .ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 24px; background: var(--grad-soft); border: 1px solid var(--border); margin-bottom: 18px; }
.feature h3 { font-family: var(--font-display); font-size: 1.25rem; margin: 0 0 10px; }
.feature p { color: var(--text-dim); font-size: .98rem; margin: 0; }

/* ---- Module grid ---- */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .modules { grid-template-columns: 1fr; } }
.mod-card {
  display: block; text-decoration: none; color: inherit; position: relative;
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 26px 24px; transition: transform .3s, border-color .3s, box-shadow .3s; overflow: hidden;
}
.mod-card::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.mod-card:hover { transform: translateY(-6px); border-color: rgba(34, 211, 238, .45); box-shadow: var(--shadow); }
.mod-card:hover::after { transform: scaleX(1); }
.mod-num { font-family: var(--font-mono); font-size: .85rem; color: var(--cyan); letter-spacing: .1em; }
.mod-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin: 12px 0 8px; line-height: 1.25; }
.mod-card p { color: var(--text-dim); font-size: .92rem; margin: 0; }
.mod-card .go { margin-top: 16px; font-size: .85rem; color: var(--text); font-weight: 600; display: inline-flex; gap: 6px; align-items: center; opacity: .7; transition: opacity .3s, gap .3s; }
.mod-card:hover .go { opacity: 1; gap: 12px; }

/* ---- Prijskaart / koop ---- */
.price-card {
  max-width: 520px; margin: 0 auto; text-align: center;
  background: var(--panel-strong); border: 1px solid rgba(236, 200, 120, .3);
  border-radius: var(--r-lg); padding: 40px 34px; position: relative; overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px -25px rgba(236, 200, 120, .4);
}
.price-card::before {
  content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: .4; pointer-events: none;
}
.price-card > * { position: relative; z-index: 2; }
.price-badge {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: #1a140a; background: var(--grad);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
}
.price-card .price {
  font-family: var(--font-display); font-size: 3.6rem; font-weight: 700; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 22px;
}
.price-list { list-style: none; padding: 0; margin: 0 0 26px; text-align: left; display: inline-block; }
.price-list li { color: #d3dbea; margin: 11px 0; font-size: 1rem; }
.price-list li strong { color: #fff; }
.btn-buy { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px 24px; margin-bottom: 12px; }
.price-card .btn-ghost { width: 100%; justify-content: center; }
.guarantee { font-size: .85rem; color: var(--text-faint); margin: 18px 0 0; }

/* ---- CTA band ---- */
.cta-band {
  text-align: center; border-radius: var(--r-lg); padding: 64px 32px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(34,211,238,.12), rgba(168,85,247,.14), rgba(236,72,153,.12));
  border: 1px solid var(--border);
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.7rem); margin: 0 0 14px; }
.cta-band p { color: var(--text-dim); max-width: 560px; margin: 0 auto 30px; font-size: 1.08rem; }

/* ---- Footer ---- */
footer { border-top: 1px solid var(--border); padding: 44px 0; color: var(--text-faint); font-size: .9rem; }
footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
footer a { color: var(--text-dim); text-decoration: none; }
footer a:hover { color: var(--text); }
.disclaimer { font-size: .8rem; color: var(--text-faint); max-width: 620px; margin-top: 10px; line-height: 1.6; }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================================
   READER (modulepagina's)
   ========================================================================== */
.reader-top {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60;
  background: rgba(255,255,255,.05);
}
.reader-top .bar { height: 100%; width: 0; background: var(--grad); box-shadow: var(--glow-cyan); transition: width .1s; }

.article { max-width: 800px; margin: 0 auto; padding: 40px 24px 100px; }
.article .crumb { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.article h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.08; letter-spacing: -.015em; margin: 0 0 10px; }
.article h2 { font-family: var(--font-display); font-size: 1.7rem; margin: 52px 0 16px; padding-top: 14px; letter-spacing: -.01em; }
.article h2::before { content: "→ "; color: var(--cyan); -webkit-text-fill-color: var(--cyan); }
.article h3 { font-family: var(--font-display); font-size: 1.25rem; margin: 34px 0 12px; color: #f4f7ff; }
.article p { color: #d3dbea; margin: 16px 0; }
.article a { color: var(--cyan); text-decoration: none; border-bottom: 1px solid rgba(34,211,238,.3); transition: border-color .2s; }
.article a:hover { border-color: var(--cyan); }
.article strong { color: #fff; font-weight: 700; }
.article ul, .article ol { color: #d3dbea; padding-left: 26px; margin: 16px 0; }
.article li { margin: 8px 0; }
.article li::marker { color: var(--violet); }
.article blockquote {
  margin: 24px 0; padding: 18px 24px; border-left: 3px solid transparent;
  border-image: var(--grad) 1; background: var(--panel); border-radius: 0 var(--r-md) var(--r-md) 0;
  color: #c9d3e6;
}
.article blockquote p { margin: 6px 0; }
.article hr { border: none; height: 1px; background: var(--border); margin: 44px 0; }
.article code {
  font-family: var(--font-mono); font-size: .88em; background: rgba(34,211,238,.1);
  color: #8fe9f7; padding: 2px 7px; border-radius: 6px; border: 1px solid rgba(34,211,238,.15);
}
.article pre {
  background: #080a12; border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 20px 22px; overflow-x: auto; margin: 22px 0; box-shadow: inset 0 0 40px rgba(0,0,0,.4);
}
.article pre code { background: none; border: none; color: #d6deef; padding: 0; font-size: .86rem; line-height: 1.65; }
.article table {
  width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .94rem;
  background: var(--panel); border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border);
}
.article th, .article td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.article th { background: rgba(168,85,247,.12); font-family: var(--font-display); font-weight: 600; color: #fff; }
.article tr:last-child td { border-bottom: none; }
.article td code { font-size: .82em; }

/* prev/next */
.pager { display: flex; justify-content: space-between; gap: 16px; margin-top: 56px; flex-wrap: wrap; }
.pager a {
  flex: 1; min-width: 200px; text-decoration: none; padding: 20px 24px; border-radius: var(--r-md);
  background: var(--panel); border: 1px solid var(--border); transition: transform .25s, border-color .25s, box-shadow .25s;
}
.pager a:hover { transform: translateY(-4px); border-color: rgba(168,85,247,.45); box-shadow: var(--shadow); }
.pager .lbl { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-faint); }
.pager .ttl { color: var(--text); font-weight: 600; margin-top: 6px; font-family: var(--font-display); }
.pager a.next { text-align: right; }
.pager a.disabled { opacity: .3; pointer-events: none; }

.toc-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 40;
  background: var(--grad); color: #07080d; border: none; cursor: pointer;
  padding: 12px 20px; border-radius: 999px; font-weight: 700; font-family: var(--font-display);
  box-shadow: var(--glow-violet); text-decoration: none; font-size: .9rem;
}
.toc-fab:hover { transform: translateY(-2px); }

::selection { background: rgba(236, 200, 120, .38); color: #1a140a; }

/* scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--violet), var(--cyan)); border-radius: 99px; border: 3px solid var(--bg); }

/* ============================================================================
   FUTURISTIC 2240 — line-art iconen, holografische randen, HUD-details
   ========================================================================== */

/* Line-art iconen i.p.v. emoji */
.feature .ico { position: relative; }
.feature .ico svg { width: 26px; height: 26px; color: var(--gold-bright);
  filter: drop-shadow(0 0 9px rgba(236, 200, 120, .55)); }
.feature:hover .ico { box-shadow: 0 0 26px -4px rgba(236, 200, 120, .55); }

/* Module-stip i.p.v. emoji */
.mod-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad); box-shadow: 0 0 10px var(--gold); vertical-align: middle; }

/* Holografische gloed op koppen */
.hero h1 { text-shadow: 0 0 50px rgba(236, 200, 120, .18); }
.gradient-text { filter: drop-shadow(0 0 18px rgba(236, 200, 120, .25)); }
.section-head h2 { text-shadow: 0 0 40px rgba(201, 154, 62, .15); }

/* Premium knop-shimmer (alleen de gradient beweegt — tekst blijft scherp) */
.btn-primary { background-size: 220% auto; animation: btnShift 6s linear infinite; }
@keyframes btnShift { to { background-position: 220% center; } }
.btn-buy svg { width: 19px; height: 19px; }
.btn-buy svg, .price-card .btn-ghost svg { vertical-align: -3px; }
.price-card .btn-ghost svg { width: 16px; height: 16px; color: var(--gold-bright); }

/* Doorgestreepte oude prijs */
.price .price-old { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600;
  color: var(--text-faint); -webkit-text-fill-color: var(--text-faint);
  text-decoration: line-through; text-decoration-color: rgba(232, 181, 138, .7);
  margin-right: 10px; vertical-align: middle; }

/* Badge met sparkle-icoon */
.price-badge { display: inline-flex; align-items: center; gap: 7px; }
.price-badge svg { width: 14px; height: 14px; }

/* Checklist met gouden cirkel-vinkjes */
.price-list li { display: flex; align-items: flex-start; gap: 13px; }
.price-list .chk, .outcome-list .chk { flex: none; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; background: var(--grad-soft);
  border: 1px solid rgba(236, 200, 120, .45); box-shadow: 0 0 14px -4px rgba(236, 200, 120, .5); }
.price-list .chk svg, .outcome-list .chk svg { width: 13px; height: 13px; color: var(--gold-bright); }

/* ---- Wat je leert + tijdlijn ---- */
.outcome-list { list-style: none; padding: 0; margin: 0 auto 56px; max-width: 900px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 36px; }
@media (max-width: 760px) { .outcome-list { grid-template-columns: 1fr; } }
.outcome-list li { display: flex; gap: 13px; align-items: flex-start; color: #d3dbea; font-size: 1rem; }
.time-head { text-align: center; max-width: 640px; margin: 0 auto 28px; }
.time-head h3 { font-family: var(--font-display); font-size: 1.55rem; margin: 0 0 8px;
  text-shadow: 0 0 30px rgba(201, 154, 62, .15); }
.time-head p { color: var(--text-dim); margin: 0; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 980px; margin: 0 auto; }
@media (max-width: 760px) { .timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .timeline { grid-template-columns: 1fr; } }
.phase { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 24px 20px; text-align: center; transition: transform .3s, border-color .3s, box-shadow .3s; }
.phase:hover { transform: translateY(-5px); border-color: rgba(236, 200, 120, .45); box-shadow: var(--shadow); }
.phase .ph-num { font-family: var(--font-mono); font-size: .82rem; letter-spacing: .18em; color: var(--cyan); }
.phase .ph-title { font-family: var(--font-display); font-weight: 600; margin: 10px 0 12px; line-height: 1.25; }
.phase .ph-time { font-size: .9rem; color: var(--text-dim);
  background: var(--grad-soft); border: 1px solid var(--border); border-radius: 999px; padding: 5px 12px; display: inline-block; }

/* Roterende holografische rand (glow-ring) */
@property --spin { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.glow-ring::after {
  content: ""; position: absolute; inset: -1.5px; border-radius: inherit; z-index: 1;
  background: conic-gradient(from var(--spin),
    rgba(34, 211, 238, 0) 0deg, #22d3ee 65deg, #ecc878 150deg,
    #ec4899 235deg, #a855f7 305deg, rgba(34, 211, 238, 0) 360deg);
  padding: 1.5px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: ringSpin 7s linear infinite; pointer-events: none;
}
@keyframes ringSpin { to { --spin: 360deg; } }
/* Fallback wanneer @property niet wordt ondersteund: rustige glans */
@supports not (background: conic-gradient(from var(--spin), red, blue)) {
  .glow-ring::after { background: var(--grad); animation: none; }
}

/* HUD-hoekjes op de prijskaart */
.price-card .hud { position: absolute; width: 16px; height: 16px; z-index: 3;
  border: 2px solid var(--gold); opacity: .85; }
.price-card .hud.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.price-card .hud.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.price-card .hud.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.price-card .hud.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

/* Subtiele scanline-glans over de prijskaart */
.price-card::after { } /* gereserveerd door glow-ring */
