/* ============================================================
   Avisi Strategic Innovation — Global CSS
   Design: Apple M5 MacBook Pro language
   Bewerken: src/css/global.css
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  background: #000;
  color: #f5f5f7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── DESIGN TOKENS ── */
:root {
  /* Kleuren */
  --clr-bg:           #000000;
  --clr-bg-2:         #1d1d1f;
  --clr-bg-3:         #2d2d2f;
  --clr-bg-light:     #f5f5f7;
  --clr-txt:          #f5f5f7;
  --clr-txt-2:        rgba(245,245,247,0.7);
  --clr-txt-3:        rgba(245,245,247,0.4);
  --clr-txt-dark:     #1d1d1f;
  --clr-blue:         #0071e3;
  --clr-blue-lt:      #2997ff;
  --clr-green:        #30d158;
  --clr-red:          #ff453a;
  --clr-orange:       #ff9f0a;
  --clr-border:       rgba(255,255,255,0.12);
  --clr-border-lt:    rgba(255,255,255,0.06);
  --clr-border-blue:  rgba(41,151,255,0.3);

  /* Typografie */
  --font: -apple-system, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;

  /* Layout */
  --nav-h:      48px;
  --sec-pad:    120px 40px;
  --max-w:      1200px;

  /* Borders */
  --r-card:   18px;
  --r-sm:     12px;
  --r-pill:   980px;

  /* Transitions */
  --t-fast:   0.15s cubic-bezier(0.2,0,0,1);
  --t-mid:    0.3s  cubic-bezier(0.2,0,0,1);
  --t-slow:   0.5s  cubic-bezier(0.2,0,0,1);
}

/* ════════════════════════════════════════
   NAVIGATIE (Apple-style: logo links, menu + CTA rechts)
   ════════════════════════════════════════ */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 0.5px solid var(--clr-border);
  transition: background var(--t-mid);
}
#main-nav.scrolled { background: rgba(0,0,0,0.9); }

.nav-inner {
  width: 100%; max-width: var(--max-w);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  margin: 0 auto;
}
.nav-logo {
  font-size: 17px; font-weight: 400;
  color: var(--clr-txt); letter-spacing: -0.022em;
  display: flex; align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 20px; width: auto; display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  flex-shrink: 0;
}
.nav-links a {
  font-size: 12px; color: rgba(245,245,247,0.8);
  letter-spacing: -0.01em; cursor: pointer;
  transition: color var(--t-fast); position: relative;
}
.nav-links a:hover { color: var(--clr-txt); }
.nav-links a.active { color: var(--clr-txt); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--clr-txt);
}
/* CTA als pill-knop (zoals Apple "Koop") */
.nav-links .btn-primary {
  padding: 8px 20px; font-size: 12px;
}
.nav-links .btn-primary:hover { text-decoration: none; }

/* Mobile nav toggle (hidden desktop) */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--clr-txt); transition: all var(--t-fast);
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
#main-footer {
  background: var(--clr-bg);
  border-top: 0.5px solid var(--clr-border);
  padding: 40px;
}
.footer-legal {
  max-width: var(--max-w); margin: 0 auto;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--clr-border);
  font-size: 12px; color: var(--clr-txt-3); line-height: 1.6;
}
.footer-certs {
  max-width: var(--max-w); margin: 16px auto;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.footer-cert {
  font-size: 10px; font-weight: 600;
  color: rgba(41,151,255,0.7);
  padding: 3px 10px; border-radius: 4px;
  border: 0.5px solid rgba(41,151,255,0.3);
  letter-spacing: 0.04em;
}
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 24px; padding-top: 16px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 600; color: var(--clr-txt);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px;
}
.footer-col a {
  display: block; font-size: 12px; color: var(--clr-txt-3);
  margin-bottom: 6px; transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--clr-txt-2); }
.footer-copy { font-size: 12px; color: var(--clr-txt-3); margin-top: auto; }

/* ════════════════════════════════════════
   TYPOGRAFIE UTILITIES
   ════════════════════════════════════════ */
.eyebrow {
  font-size: 17px; font-weight: 600; color: var(--clr-txt);
  letter-spacing: -0.022em; display: block; margin-bottom: 6px;
}
.headline {
  font-size: clamp(40px, 6vw, 64px); font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.07; color: var(--clr-txt);
  margin-bottom: 16px;
}
.headline em { font-style: normal; color: #86b9ff; }
.headline.dark { color: var(--clr-txt-dark); }
.headline.dark em { color: var(--clr-blue); }
.headline.sm { font-size: clamp(32px, 4vw, 52px); }

.subhead {
  font-size: 21px; font-weight: 400; color: var(--clr-txt-2);
  letter-spacing: -0.022em; line-height: 1.5; max-width: 640px;
}
.subhead.dark { color: rgba(29,29,31,0.7); }
.subhead.center { margin: 0 auto; }

.page-h1 {
  font-size: clamp(48px, 7vw, 80px); font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.04; color: var(--clr-txt);
  margin-bottom: 8px;
}
.page-sub {
  font-size: 21px; font-weight: 400; color: var(--clr-txt-2);
  letter-spacing: -0.022em;
}

/* ════════════════════════════════════════
   KNOPPEN
   ════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 30px; border-radius: var(--r-pill);
  font-size: 17px; font-weight: 400;
  letter-spacing: -0.022em; cursor: pointer;
  transition: all var(--t-fast); white-space: nowrap; border: none;
  font-family: var(--font);
}
.btn-primary { background: var(--clr-blue-lt); color: var(--clr-txt); }
.btn-primary:hover { background: #147ce5; transform: scale(1.02); }
.btn-outline { background: transparent; color: var(--clr-blue-lt); border: 1.5px solid var(--clr-blue-lt); }
.btn-outline:hover { background: rgba(41,151,255,0.08); }
.btn-ghost  { background: transparent; color: var(--clr-txt); border: 1px solid var(--clr-border); }
.btn-ghost:hover  { background: rgba(255,255,255,0.04); }

.link-arrow {
  font-size: 17px; color: var(--clr-blue-lt);
  cursor: pointer; transition: opacity var(--t-fast);
  display: inline-flex; align-items: center;
}
.link-arrow::after { content: ' ›'; margin-left: 2px; }
.link-arrow:hover { opacity: 0.8; text-decoration: underline; }
.link-arrow.sm { font-size: 14px; }

/* ════════════════════════════════════════
   BADGES
   ════════════════════════════════════════ */
.badge {
  display: inline-block;
  padding: 4px 12px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.badge-dark   { background: rgba(255,255,255,0.08); color: var(--clr-txt-2); border: 0.5px solid var(--clr-border); }
.badge-blue   { background: rgba(41,151,255,0.15); color: var(--clr-blue-lt); border: 0.5px solid var(--clr-border-blue); }
.badge-green  { background: rgba(48,209,88,0.12); color: var(--clr-green); border: 0.5px solid rgba(48,209,88,0.3); }
.badge-orange { background: rgba(255,159,10,0.12); color: var(--clr-orange); border: 0.5px solid rgba(255,159,10,0.3); }

/* ════════════════════════════════════════
   GLASS CARDS
   ════════════════════════════════════════ */
.card {
  border-radius: var(--r-card); overflow: hidden; position: relative;
  padding: 40px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform var(--t-mid);
}
.card:hover { transform: scale(1.01); }
.card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg,rgba(255,255,255,0.08) 0%,rgba(255,255,255,0) 60%);
  pointer-events: none;
}
.card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--r-card);
  border: 0.5px solid var(--clr-border); pointer-events: none;
}
.card-dark  { background: var(--clr-bg-2); }
.card-blue  { background: linear-gradient(145deg,#001f3f 0%,#003380 60%,#0051d0 100%); }
.card-blue::after  { border-color: var(--clr-border-blue); }
.card-frost { background: linear-gradient(145deg,#111 0%,#1a1a1a 100%); }
.card-light { background: var(--clr-bg-light); color: var(--clr-txt-dark); }
.card-light::before { background: linear-gradient(145deg,rgba(255,255,255,.5) 0%,transparent 60%); }
.card-light::after  { border-color: rgba(0,0,0,.1); }

.card-eyebrow {
  font-size: 12px; font-weight: 600; color: var(--clr-txt-3);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 12px; position: relative; z-index: 1;
}
.card-title {
  font-size: 28px; font-weight: 600; letter-spacing: -0.022em;
  line-height: 1.1; color: var(--clr-txt);
  position: relative; z-index: 1; margin-bottom: 10px;
}
.card-body {
  font-size: 15px; color: var(--clr-txt-2);
  letter-spacing: -0.01em; line-height: 1.5;
  position: relative; z-index: 1;
}
.card-link {
  display: inline-flex; align-items: center;
  font-size: 14px; color: var(--clr-blue-lt);
  position: relative; z-index: 1; margin-top: 16px;
  cursor: pointer; transition: opacity var(--t-fast);
}
.card-link::after { content: ' ›'; }
.card-link:hover { opacity: 0.8; }
.card-stat {
  font-size: 56px; font-weight: 700; letter-spacing: -0.04em;
  color: var(--clr-txt); position: relative; z-index: 1;
  line-height: 1; margin-bottom: 8px;
}
.card-stat span { font-size: 28px; font-weight: 400; }
.card-light .card-eyebrow { color: rgba(29,29,31,.5); }
.card-light .card-title   { color: var(--clr-txt-dark); }
.card-light .card-body    { color: rgba(29,29,31,.7); }

/* ════════════════════════════════════════
   STAT CALLOUT
   ════════════════════════════════════════ */
.stat-callout {
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 40px 60px; border-radius: var(--r-card);
  background: rgba(255,255,255,0.04); border: 0.5px solid var(--clr-border);
}
.stat-row { display: flex; gap: 48px; align-items: stretch; }
.stat-divider { width: 0.5px; background: var(--clr-border); }
.stat-item { text-align: center; }
.stat-num {
  font-size: 72px; font-weight: 700; letter-spacing: -0.04em;
  color: var(--clr-txt); line-height: 1; display: block;
}
.stat-num sup { font-size: 32px; font-weight: 600; vertical-align: top; margin-top: 12px; }
.stat-label {
  font-size: 17px; color: var(--clr-txt-2);
  letter-spacing: -0.022em; display: block; margin-top: 8px;
}

/* ════════════════════════════════════════
   FEATURE LIST
   ════════════════════════════════════════ */
.feature-list { max-width: 860px; margin: 0 auto; }
.feature-item {
  padding: 32px 0; border-bottom: 0.5px solid var(--clr-border);
  display: flex; gap: 48px; align-items: flex-start;
}
.feature-item:last-child { border-bottom: none; }
.feature-num { font-size: 17px; font-weight: 600; color: var(--clr-txt-3); min-width: 40px; padding-top: 4px; }
.feature-content { flex: 1; }
.feature-title { font-size: 28px; font-weight: 600; letter-spacing: -0.022em; color: var(--clr-txt); margin-bottom: 8px; }
.feature-desc  { font-size: 17px; color: var(--clr-txt-2); line-height: 1.6; }
.feature-meta  { font-size: 14px; color: var(--clr-txt-3); white-space: nowrap; min-width: 100px; text-align: right; padding-top: 4px; }

/* ════════════════════════════════════════
   CHECK LIST
   ════════════════════════════════════════ */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 17px; color: rgba(245,245,247,0.8);
}
.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0; margin-top: 2px;
}
.check-good { background: rgba(48,209,88,0.15); color: var(--clr-green); }
.check-bad  { background: rgba(255,69,58,0.15);  color: var(--clr-red);   }

/* ════════════════════════════════════════
   COMPARE GRID
   ════════════════════════════════════════ */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: var(--max-w); margin: 0 auto; }
.compare-card { border-radius: var(--r-card); padding: 48px 40px; position: relative; overflow: hidden; }
.compare-card::after { content: ''; position: absolute; inset: 0; border-radius: var(--r-card); border: 0.5px solid var(--clr-border); pointer-events: none; }
.compare-card.trad  { background: var(--clr-bg-2); }
.compare-card.avisi { background: linear-gradient(145deg,#001533 0%,#002a66 100%); }
.compare-card.avisi::after { border-color: var(--clr-border-blue); }
.compare-title { font-size: 32px; font-weight: 600; letter-spacing: -0.022em; color: var(--clr-txt); margin-bottom: 28px; }

/* ════════════════════════════════════════
   CERT GRID
   ════════════════════════════════════════ */
.cert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; max-width: var(--max-w); margin: 60px auto 0; }
.cert-card { border-radius: var(--r-card); background: var(--clr-bg-2); padding: 32px 28px; border: 0.5px solid var(--clr-border); transition: border-color var(--t-mid); }
.cert-card:hover { border-color: var(--clr-border-blue); }
.cert-title { font-size: 36px; font-weight: 700; letter-spacing: -0.03em; color: var(--clr-txt); margin-bottom: 6px; line-height: 1.1; }
.cert-title.blue { color: var(--clr-blue-lt); }
.cert-sub  { font-size: 11px; font-weight: 600; color: var(--clr-txt-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.cert-desc { font-size: 15px; color: var(--clr-txt-2); line-height: 1.5; }

/* ════════════════════════════════════════
   SECTION WRAPPERS
   ════════════════════════════════════════ */
.sec         { padding: var(--sec-pad); }
.sec-dark    { background: var(--clr-bg); }
.sec-gray    { background: var(--clr-bg-2); border-top: 0.5px solid var(--clr-border); border-bottom: 0.5px solid var(--clr-border); }
.sec-light   { background: var(--clr-bg-light); }
.sec-border  { border-top: 0.5px solid var(--clr-border); }
.sec-inner   { max-width: var(--max-w); margin: 0 auto; }
.sec-center  { text-align: center; }

/* ════════════════════════════════════════
   GRIDS
   ════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.gap-bot { margin-bottom: 12px; }

/* ════════════════════════════════════════
   FUNNEL TABS
   ════════════════════════════════════════ */
.funnel-nav-wrap { border-top: 0.5px solid var(--clr-border); border-bottom: 0.5px solid var(--clr-border); }
.funnel-nav { display: flex; justify-content: center; overflow-x: auto; padding: 0 20px; scrollbar-width: none; }
.funnel-nav::-webkit-scrollbar { display: none; }
.funnel-tab {
  padding: 12px 20px; font-size: 12px; color: var(--clr-txt-3);
  cursor: pointer; border-bottom: 2px solid transparent; white-space: nowrap;
  transition: all var(--t-fast); letter-spacing: -0.01em;
}
.funnel-tab:hover { color: var(--clr-txt); }
.funnel-tab.active { color: var(--clr-txt); border-bottom-color: var(--clr-txt); }
.funnel-content { max-width: 860px; margin: 0 auto; padding: 60px 40px 0; text-align: center; }
.funnel-panel { display: none; }
.funnel-panel.active { display: block; }
.funnel-phase { font-size: 11px; font-weight: 600; color: var(--clr-txt-3); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.funnel-title { font-size: 48px; font-weight: 600; letter-spacing: -0.025em; color: var(--clr-txt); margin-bottom: 16px; }
.funnel-desc  { font-size: 17px; color: var(--clr-txt-2); line-height: 1.65; max-width: 600px; margin: 0 auto; }

/* ════════════════════════════════════════
   CTA SECTIE
   ════════════════════════════════════════ */
.cta-sec {
  background: var(--clr-bg-2); padding: 80px 40px; text-align: center;
  border-top: 0.5px solid var(--clr-border);
}
.cta-title    { font-size: 48px; font-weight: 600; letter-spacing: -0.025em; color: var(--clr-txt); margin-bottom: 8px; }
.cta-sub      { font-size: 21px; color: var(--clr-txt-2); margin-bottom: 28px; }
.cta-buttons  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   3D CHIP (HERO)
   ════════════════════════════════════════ */
.chip-3d { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-58%); width: 520px; height: 520px; }
.chip-outer {
  width: 100%; height: 100%; position: relative; border-radius: 56px;
  background: linear-gradient(145deg,#1a1a2e 0%,#16213e 40%,#0f3460 70%,#1a1a4e 100%);
  box-shadow: 0 0 0 1px rgba(100,160,255,0.25), 0 0 100px rgba(0,113,227,0.35), 0 60px 160px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: chipFloat 6s ease-in-out infinite;
}
.chip-grid {
  position: absolute; inset: 24px;
  background-image: linear-gradient(rgba(100,180,255,0.07) 1px,transparent 1px), linear-gradient(90deg,rgba(100,180,255,0.07) 1px,transparent 1px);
  background-size: 28px 28px; border-radius: 36px;
}
.chip-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 380px; height: 220px;
  background: transparent; border-radius: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  overflow: visible;
}

.chip-sublabel {
  display: block;
  font-size: 66px; font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.15; text-align: center; white-space: nowrap;
  margin-top: -0.28em;
  padding-bottom: 0.22em;
  background: linear-gradient(90deg,
    #1E8AFF 0%,
    #4070FF 18%,
    #6B5EFF 30%,
    #8B5CF6 40%,
    #C05CFF 50%,
    #E84393 60%,
    #FF4080 70%,
    #FF6B35 82%,
    #FF8C00 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes chipFloat {
  0%,100% { transform: translateY(0) rotateX(8deg) rotateY(-8deg); box-shadow: 0 0 0 1px rgba(100,160,255,0.25),0 0 100px rgba(0,113,227,0.35),0 60px 160px rgba(0,0,0,0.85),inset 0 1px 0 rgba(255,255,255,0.1); }
  50% { transform: translateY(-24px) rotateX(12deg) rotateY(8deg); box-shadow: 0 0 0 1px rgba(100,160,255,0.35),0 0 140px rgba(0,113,227,0.55),0 80px 180px rgba(0,0,0,0.65),inset 0 1px 0 rgba(255,255,255,0.15); }
}
.glow-ray { position: absolute; top: 50%; left: 50%; width: 2px; background: linear-gradient(to bottom,rgba(58,142,246,0.5),transparent); transform-origin: 50% 0%; border-radius: 1px; }
.glow-ray:nth-child(1) { height:280px; transform:translate(-50%,-100%) rotate(0deg);   animation:rayPulse 3s ease-in-out infinite 0s; background:linear-gradient(to bottom,rgba(58,142,246,0.6),transparent); }
.glow-ray:nth-child(2) { height:220px; transform:translate(-50%,-100%) rotate(45deg);  animation:rayPulse 3s ease-in-out infinite .4s; background:linear-gradient(to bottom,rgba(123,94,167,0.5),transparent); }
.glow-ray:nth-child(3) { height:280px; transform:translate(-50%,-100%) rotate(90deg);  animation:rayPulse 3s ease-in-out infinite .8s; background:linear-gradient(to bottom,rgba(196,92,138,0.5),transparent); }
.glow-ray:nth-child(4) { height:220px; transform:translate(-50%,-100%) rotate(135deg); animation:rayPulse 3s ease-in-out infinite 1.2s; background:linear-gradient(to bottom,rgba(232,84,58,0.5),transparent); }
.glow-ray:nth-child(5) { height:280px; transform:translate(-50%,-100%) rotate(180deg); animation:rayPulse 3s ease-in-out infinite 1.6s; background:linear-gradient(to bottom,rgba(58,142,246,0.6),transparent); }
.glow-ray:nth-child(6) { height:220px; transform:translate(-50%,-100%) rotate(225deg); animation:rayPulse 3s ease-in-out infinite 2s; background:linear-gradient(to bottom,rgba(123,94,167,0.5),transparent); }
.glow-ray:nth-child(7) { height:280px; transform:translate(-50%,-100%) rotate(270deg); animation:rayPulse 3s ease-in-out infinite 2.4s; background:linear-gradient(to bottom,rgba(196,92,138,0.5),transparent); }
.glow-ray:nth-child(8) { height:220px; transform:translate(-50%,-100%) rotate(315deg); animation:rayPulse 3s ease-in-out infinite 2.8s; background:linear-gradient(to bottom,rgba(232,84,58,0.5),transparent); }
@keyframes rayPulse { 0%,100%{opacity:.15} 50%{opacity:.65} }

/* ════════════════════════════════════════
   TERMINAL BLOK
   ════════════════════════════════════════ */
.terminal {
  background: #0a0a0a; border-radius: var(--r-sm); padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono); font-size: 12px; line-height: 1.8; width: 100%;
}
.t-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.t-dot { width: 12px; height: 12px; border-radius: 50%; }
.t-red    { background: #ff5f57; }
.t-yellow { background: #ffbd2e; }
.t-green  { background: #28c940; }
.t-prompt::before { content: '$ '; color: rgba(255,255,255,0.3); }
.t-success { color: #30d158; }
.t-info    { color: #2997ff; }
.t-warn    { color: #ff9f0a; }
.t-muted   { color: rgba(255,255,255,0.3); }
.t-gitlab  { color: #ff9d78; }
.t-k8s     { color: #86b9ff; }
.t-otel    { color: #a8ff78; }
.t-finance { color: #ffd580; }

/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.2,0,0,1), transform 0.8s cubic-bezier(0.2,0,0,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════
   PAGE HERO (gedeeld)
   ════════════════════════════════════════ */
.page-hero {
  min-height: 80vh;
  padding: calc(var(--nav-h) + 80px) 40px 100px;
  background: #000;
  display: flex; flex-direction: column; justify-content: flex-end;
  align-items: center; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 30%; left: 50%; transform: translate(-50%,-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, var(--hero-glow, rgba(0,113,227,0.15)) 0%, transparent 70%);
  pointer-events: none;
}

/* ════════════════════════════════════════
   SCROLLBAR
   ════════════════════════════════════════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4, .cert-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --sec-pad: 80px 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4, .compare-grid, .cert-grid { grid-template-columns: 1fr; }
  .stat-row { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .stat-callout { padding: 32px 24px; width: 100%; }
  .stat-num { font-size: 48px; }
  .feature-item { flex-direction: column; gap: 12px; }
  .feature-meta { text-align: left; }
  .chip-3d { width: 260px; height: 260px; }
  .chip-core { width: 220px; height: 140px; }
  .chip-sublabel { font-size: 28px; white-space: normal; }
  .chip-outer { border-radius: 32px; }
  .chip-grid { border-radius: 22px; }
  .glow-ray { display: none; }
  .page-h1 { font-size: clamp(32px, 10vw, 48px); }
  .page-sub { font-size: 17px; }
  .page-hero { min-height: auto; padding: calc(var(--nav-h) + 40px) 24px 60px; overflow: visible; justify-content: center; }
  .page-hero::before { width: 100%; height: 350px; }
  .cta-title { font-size: 32px; }
  .cta-sub { font-size: 17px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .compare-title { font-size: 24px; }
  .compare-card { padding: 32px 24px; }
  .cert-title { font-size: 28px; }
  .funnel-title { font-size: 32px; }
  .funnel-content { padding: 40px 24px 0; }
  .headline { font-size: clamp(28px, 8vw, 40px); }
  .headline.sm { font-size: clamp(24px, 6vw, 32px); }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 480px) {
  .chip-3d { width: 200px; height: 200px; }
  .chip-core { width: 170px; height: 110px; }
  .chip-sublabel { font-size: 22px; }
  .chip-outer { border-radius: 24px; }
  .chip-grid { border-radius: 16px; }
  .page-h1 { font-size: clamp(28px, 9vw, 36px); }
  .stat-num { font-size: 40px; }
  .stat-callout { padding: 24px 16px; }
  .btn { padding: 12px 24px; font-size: 15px; }
}
