/* ============================================================
   agents.phantrium.com — main stylesheet
   Theme: Phantrium Cosmic · Business Futuristic
   Palette: violet · cyan · pink on deep navy. Glass + signature
   gradient. Variable names preserved for backward compatibility
   with inline styles in HTML files.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Matrix-dark backgrounds with cosmic undertones */
  --bg:    #020608;
  --bg-2:  #061010;
  --bg-3:  #0c1a18;
  --bg-4:  #122524;
  --line:        rgba(0, 255, 136, 0.12);
  --line-soft:   rgba(0, 255, 136, 0.06);
  --line-strong: rgba(0, 255, 136, 0.22);

  /* Type */
  --text:      #d8ffe6;       /* slight green tint on body text — matrix readability */
  --text-soft: #8fa9a0;
  --text-mute: #5a7a70;

  /* Matrix primary palette */
  --matrix:        #00ff88;
  --matrix-2:      #4dffaa;
  --matrix-3:      #00ffcc;
  --matrix-dim:    #008855;
  --matrix-deep:   #004d2e;
  --matrix-darker: #002817;
  --matrix-glow:   rgba(0, 255, 136, .55);
  --matrix-soft:   rgba(0, 255, 136, .14);

  /* Cyan-green family */
  --cyan:    #00ffcc;
  --cyan-2:  #4dffd9;
  --cyan-dim:#00ccaa;

  /* Amber — JARVIS-style accent voor enterprise / premium / alerts */
  --amber:      #ffe600;
  --amber-2:    #ffff66;
  --amber-dim:  #aa9900;
  --amber-glow: rgba(255, 230, 0, .55);

  /* Signature matrix gradient — vervangt cosmic-gradient */
  --t-gradient:       linear-gradient(135deg, #00ff88 0%, #00ffcc 50%, #4dffaa 100%);
  --t-gradient-soft:  linear-gradient(135deg, rgba(0, 255, 136, .22), rgba(0, 255, 204, .18));
  --m-gradient:       linear-gradient(135deg, #00ff88 0%, #00ffcc 50%, #4dffaa 100%);
  --t-ease:           cubic-bezier(.22, 1, .36, 1);

  /* Amber premium-gradient — voor enterprise card / premium CTA */
  --amber-gradient: linear-gradient(135deg, #00ff88 0%, #88ff00 50%, #ffe600 100%);

  /* Legacy aliases — keep variable names HTML inline styles depend on.
     "gold" is now matrix-green (primary accent). */
  --gold:       #00ff88;
  --gold-2:     #00ffcc;
  --gold-soft:  rgba(0, 255, 136, 0.12);
  --gold-glow:  rgba(0, 255, 136, 0.35);

  /* Status colors */
  --red:    #ff3355;
  --green:  #00ff88;
  --green-soft: rgba(0, 255, 136, .14);
  --green-glow: rgba(0, 255, 136, .55);
  --yellow: var(--amber);
  --blue:   #00ffcc;
  --purple: #00ff88;
  --violet:   #00ff88;     /* legacy aliases blijven werken — alles wordt matrix-green */
  --violet-2: #4dffaa;
  --pink:     #00ffcc;
  --pink-2:   #4dffd9;

  /* Surface tokens */
  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow:        0 12px 36px rgba(0, 0, 0, .45);
  --shadow-gold:   0 0 0 1px rgba(0, 255, 136, .25), 0 14px 38px rgba(0, 255, 136, .18);
  --glass:         rgba(255, 255, 255, 0.03);
  --glass-strong:  rgba(255, 255, 255, 0.06);

  --font:      'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', "SF Mono", Menlo, Consolas, monospace;
  --nav-h: 64px;
  --max:   1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse 60% 45% at 15% 8%,  rgba(0, 255, 136, .18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 92% 18%, rgba(0, 255, 204, .14), transparent 60%),
    radial-gradient(ellipse 60% 45% at 50% 100%, rgba(0, 255, 136, .14), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
/* Matrix grid overlay over de hele body */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 255, 136, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 110% 80% at 50% 20%, #000 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 110% 80% at 50% 20%, #000 30%, transparent 95%);
}
/* Matrix rain — subtiele verticale streaks over de hele body */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(90deg,
    transparent 0,
    transparent 95px,
    rgba(0, 255, 136, .04) 95px,
    rgba(0, 255, 136, .04) 96px,
    transparent 96px,
    transparent 190px);
  mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
  opacity: .8;
}
main, .site-header, .site-footer, .mobile-panel, .ph-cookie { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: var(--matrix); text-decoration: none; transition: color .15s ease, text-shadow .25s ease; }
a:hover { color: var(--matrix-2); text-shadow: 0 0 8px var(--matrix-glow); }
button { font: inherit; cursor: pointer; }
code {
  font-family: var(--font-mono);
  background: rgba(0, 255, 136, .06);
  border: 1px solid rgba(0, 255, 136, .18);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: .88em;
  color: var(--matrix);
}
::selection { background: rgba(0, 255, 136, .35); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--matrix), var(--cyan));
  border-radius: 10px;
  border: 2px solid var(--bg-2);
}

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
section { padding: 64px 0; }
section.tight { padding: 32px 0; }
@media (max-width: 760px) {
  .wrap { padding: 0 16px; }
  section { padding: 44px 0; }
  section.tight { padding: 24px 0; }
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0 0 .5em;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #e0ffe9;
}
h1 { font-size: clamp(2.1rem, 4.8vw, 3.8rem); font-weight: 600; letter-spacing: -.035em; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -.015em; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 .9em; color: var(--text-soft); }
.lead { font-size: 1.1rem; color: var(--text-soft); line-height: 1.7; }
.muted { color: var(--text-mute); }
.center { text-align: center; }

/* .acc / .gold / .acc-matrix — all matrix-green with glow & subtle gradient shift */
.acc, .gold, .grad-text, .acc-matrix {
  background: var(--t-gradient);
  background-size: 220% 220%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: t-shift 7s ease infinite;
  filter: drop-shadow(0 0 12px rgba(0, 255, 136, .35));
}
/* Amber accent voor enterprise/premium highlights */
.acc-amber {
  color: var(--amber);
  text-shadow: 0 0 14px var(--amber-glow);
}
@keyframes t-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Section label — "// SECTION_NAME" — gebruikt voor mono caps boven headers */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--matrix);
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(0, 255, 136, .35);
}
.section-label::before {
  content: '//';
  color: var(--matrix-dim);
  font-weight: 700;
  text-shadow: none;
}

/* ============ Header — floating glass pill ============ */
.site-header {
  position: sticky; top: 0;
  z-index: 80;
  background: transparent;
  padding: 14px 0 6px;
  transition: padding .3s var(--t-ease);
  pointer-events: none;            /* let scrolling clicks through the gutter */
}
.site-header > .wrap { pointer-events: none; }
.site-header .nav-pill { pointer-events: auto; }

.site-header.scrolled { padding: 8px 0 6px; }

.site-header-wrap {
  /* inherits .wrap max-width 1240 and padding 0 22px → gives outside gutter */
}

.nav-pill {
  height: var(--nav-h);
  display: flex; align-items: center; gap: 14px; justify-content: space-between;
  background: rgba(4, 12, 10, 0.7);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
          backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(0, 255, 136, .15);
  border-radius: 999px;
  padding: 6px 8px 6px 18px;
  box-shadow: 0 14px 40px -14px rgba(0, 0, 0, .65), 0 0 0 1px rgba(0, 255, 136, .04) inset;
  transition: border-color .3s var(--t-ease), box-shadow .3s var(--t-ease), background .3s var(--t-ease);
}
.site-header.scrolled .nav-pill {
  background: rgba(4, 12, 10, 0.88);
  border-color: rgba(0, 255, 136, .28);
  box-shadow: 0 22px 48px -18px rgba(0, 0, 0, .6), 0 0 0 1px rgba(0, 255, 136, .12) inset, 0 0 20px -8px rgba(0, 255, 136, .25);
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: .015em;
  font-size: .98rem;
  flex-shrink: 0;
  text-decoration: none;
}
.brand:hover { color: var(--text); }
.brand .logo {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--t-gradient);
  background-size: 220% 220%;
  color: #001f10; font-weight: 900;
  box-shadow: 0 6px 18px -4px rgba(0, 255, 136, .65), inset 0 1px 0 rgba(255, 255, 255, .25), 0 0 0 1px rgba(0, 255, 136, .4);
  animation: t-shift 9s ease infinite;
  flex-shrink: 0;
}
.brand .logo i { font-size: 15px; }
.brand-name {
  background: linear-gradient(180deg, #d8ffe6, #8fd6a5);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.brand-name .brand-accent {
  background: var(--t-gradient);
  background-size: 220% 220%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: t-shift 9s ease infinite;
}
.brand-short { display: none; font-weight: 800; letter-spacing: .14em; }

.nav-primary {
  display: flex; align-items: center; gap: 2px;
  margin: 0 auto;        /* center nav links between brand and CTA */
  flex: 1; justify-content: center;
}
.nav-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  color: var(--text-soft); font-weight: 500; font-size: .9rem;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: 1px solid transparent;
  transition: color .2s var(--t-ease), background .2s var(--t-ease), border-color .2s var(--t-ease);
  font-family: inherit;
}
.nav-link i { font-size: 13px; width: 16px; text-align: center; opacity: .8; }
.nav-link:hover  { color: var(--text); background: rgba(0, 255, 136, .06); }
.nav-link.active {
  color: var(--matrix);
  background: rgba(0, 255, 136, .12);
  border-color: rgba(0, 255, 136, .35);
  text-shadow: 0 0 8px rgba(0, 255, 136, .4);
}
.nav-link.active i { color: var(--matrix); opacity: 1; }

.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-cta-btn { padding: 9px 16px; min-height: 38px; border-radius: 999px; }

/* Hamburger button with animated bars */
.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--text);
  width: 44px; height: 44px; border-radius: 999px;
  align-items: center; justify-content: center;
  transition: background .25s var(--t-ease), border-color .25s var(--t-ease);
  position: relative;
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(0, 255, 136, .08); border-color: rgba(0, 255, 136, .4); color: var(--matrix); }
.nav-toggle-icon { position: relative; width: 18px; height: 14px; display: inline-block; }
.nav-toggle-icon span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .35s var(--t-ease), opacity .25s var(--t-ease), top .35s var(--t-ease);
}
.nav-toggle-icon span:nth-child(1) { top: 0; }
.nav-toggle-icon span:nth-child(2) { top: 6px; }
.nav-toggle-icon span:nth-child(3) { top: 12px; }
.nav-toggle.is-open .nav-toggle-icon span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle.is-open .nav-toggle-icon span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-icon span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Hide desktop primary on tablet/mobile */
@media (max-width: 1100px) {
  .nav-primary { display: none; }
  .nav-toggle  { display: inline-flex; }
}
@media (max-width: 720px) {
  .nav-cta-btn span { display: none; }
  .nav-cta-btn { width: 40px; height: 40px; padding: 0; min-height: 0; }
}
@media (max-width: 480px) {
  .brand-name  { display: none; }
  .brand-short { display: inline; font-size: 1.05rem; letter-spacing: .16em; }
  .brand .logo { width: 34px; height: 34px; }
  .nav-pill { padding: 6px 6px 6px 12px; gap: 8px; }
  .site-header { padding: 10px 0 4px; }
}

/* ============ Mobile panel — slide-down full sheet ============ */
.mobile-panel {
  position: fixed; inset: 0;
  background: linear-gradient(180deg, #020806 0%, #02100a 100%);
  z-index: 95;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity .3s var(--t-ease),
    transform .35s var(--t-ease),
    visibility 0s linear .35s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column;
}
.mobile-panel::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(420px 280px at 15% 0%, rgba(0, 255, 136, .18), transparent 60%),
    radial-gradient(380px 240px at 90% 100%, rgba(34, 211, 238, .14), transparent 60%),
    radial-gradient(360px 240px at 50% 50%, rgba(0, 255, 204, .1), transparent 60%),
    repeating-linear-gradient(90deg, transparent 0, transparent 140px, rgba(0, 255, 136, .04) 140px, rgba(0, 255, 136, .04) 141px, transparent 141px, transparent 280px);
  pointer-events: none;
}
html.nav-open .mobile-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
  transition: opacity .3s var(--t-ease), transform .35s var(--t-ease), visibility 0s linear 0s;
}
html.nav-open, html.nav-open body { overflow: hidden; height: 100%; }

/* Top bar inside the panel — brand + close */
.mobile-panel-bar {
  position: sticky; top: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: rgba(2, 10, 6, .9);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
          backdrop-filter: blur(20px) saturate(170%);
  border-bottom: 1px solid rgba(0, 255, 136, .18);
  z-index: 2;
  box-shadow: 0 4px 18px -8px rgba(0, 255, 136, .25);
}
.mobile-panel-bar .brand { font-size: .95rem; }
.mobile-close {
  background: rgba(0, 255, 136, .06);
  border: 1px solid rgba(0, 255, 136, .25);
  color: var(--matrix);
  width: 44px; height: 44px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background .25s var(--t-ease), border-color .25s var(--t-ease), transform .25s var(--t-ease);
}
.mobile-close:hover  { background: rgba(0, 255, 136, .14); border-color: var(--matrix); box-shadow: 0 0 14px -2px var(--matrix-glow); }
.mobile-close:active { transform: scale(.94); }

.mobile-panel-inner {
  position: relative;
  max-width: 560px; margin: 0 auto;
  padding: 26px 20px 40px;
  display: flex; flex-direction: column; gap: 24px;
  flex: 1;
  width: 100%;
}
.mobile-section + .mobile-section { /* no gap collapse */ }
.mobile-section-label {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--text-mute); margin-bottom: 10px; padding: 0 6px;
  font-family: var(--font-mono);
}
.mobile-list { display: flex; flex-direction: column; gap: 8px; }
.nav-link.nav-row {
  padding: 16px 18px; font-size: 1rem; border-radius: 12px;
  background: rgba(0, 12, 6, .35);
  border: 1px solid rgba(0, 255, 136, .1);
  gap: 14px;
  min-height: 54px;
  color: var(--text);
}
.nav-link.nav-row i { font-size: 16px; width: 22px; opacity: .9; color: var(--matrix-dim); }
.nav-link.nav-row:hover { background: rgba(0, 255, 136, .08); border-color: rgba(0, 255, 136, .25); }
.nav-link.nav-row:hover i { color: var(--matrix); }
.nav-link.nav-row.active {
  background: linear-gradient(90deg, rgba(0, 255, 136, .18), rgba(0, 255, 136, .04), transparent);
  border-color: rgba(0, 255, 136, .45);
  border-left: 3px solid var(--matrix);
  color: var(--matrix);
  text-shadow: 0 0 8px rgba(0, 255, 136, .35);
}
.nav-link.nav-row.active i { color: var(--matrix); opacity: 1; }
.mobile-cta-block {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 8px;
}
.mobile-cta-block .btn { width: 100%; }
.mobile-foot {
  padding-top: 10px;
  text-align: center;
  font-size: .82rem;
}
.mobile-foot .muted { color: var(--text-mute); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .005em;
  text-decoration: none;
  cursor: pointer;
  min-height: 44px;
  transition: transform .25s var(--t-ease), box-shadow .35s var(--t-ease), background .25s var(--t-ease), border-color .25s var(--t-ease), color .25s var(--t-ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
}
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* Primary — matrix gradient with breathing + shine */
.btn-primary {
  background: var(--t-gradient);
  background-size: 220% 220%;
  color: #001f10 !important;
  border-color: transparent;
  font-weight: 700;
  box-shadow:
    0 12px 32px -12px rgba(0, 255, 136, .55),
    0 0 0 1px rgba(0, 255, 136, .3) inset,
    inset 0 1px 0 rgba(255, 255, 255, .25);
  animation: t-shift 9s ease infinite;
  text-shadow: none;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255, 255, 255, .3) 48%,
    rgba(255, 255, 255, .55) 50%,
    rgba(255, 255, 255, .3) 52%,
    transparent 70%);
  transform: translateX(-140%) skewX(-18deg);
  transition: transform .9s var(--t-ease);
  pointer-events: none;
  z-index: 1;
}
.btn-primary > * { position: relative; z-index: 2; }
.btn-primary:hover {
  transform: translateY(-2px);
  color: #001f10;
  box-shadow:
    0 20px 44px -12px rgba(0, 255, 136, .85),
    0 0 0 1px rgba(0, 255, 136, .5) inset,
    inset 0 1px 0 rgba(255, 255, 255, .4);
}
.btn-primary:hover::before { transform: translateX(140%) skewX(-18deg); }
.btn-primary:active { transform: translateY(0) scale(.98); }

/* Outline — matrix-green terminal border */
.btn-outline {
  background: rgba(0, 255, 136, .035);
  color: var(--matrix);
  border-color: rgba(0, 255, 136, .35);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  text-shadow: 0 0 6px rgba(0, 255, 136, .25);
}
.btn-outline:hover {
  color: #fff;
  background: rgba(0, 255, 136, .12);
  border-color: var(--matrix);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--matrix), 0 10px 24px -10px var(--matrix-glow);
  text-shadow: 0 0 8px var(--matrix-glow);
}

/* Ghost — flat glass tile */
.btn-ghost {
  background: rgba(0, 255, 136, .03);
  color: var(--text-soft);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: rgba(0, 255, 136, .06);
  color: var(--matrix);
  border-color: rgba(0, 255, 136, .3);
}

.btn-block { width: 100%; }
.btn-sm { padding: 9px 14px; min-height: 36px; font-size: .85rem; border-radius: 999px; }
.btn-lg { padding: 16px 26px; min-height: 54px; font-size: 1.02rem; border-radius: 14px; }

/* ============ Hero ============ */
.hero {
  padding: 96px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 320px at 20% 10%, rgba(0, 255, 136, .14), transparent 60%),
    radial-gradient(520px 300px at 85% 80%, rgba(0, 255, 204, .12), transparent 60%),
    radial-gradient(420px 260px at 60% 30%, rgba(34, 211, 238, .08), transparent 60%);
  z-index: 0;
}
/* Matrix-rain SVG strips — subtle vertical streaks on hero only */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg,
      transparent 0,
      transparent 110px,
      rgba(0, 255, 136, .045) 110px,
      rgba(0, 255, 136, .045) 111px,
      transparent 111px,
      transparent 220px),
    linear-gradient(rgba(0, 255, 136, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, .035) 1px, transparent 1px);
  background-size: 220px 100%, 56px 56px, 56px 56px;
  mask-image: radial-gradient(ellipse 90% 75% at 50% 30%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 30%, #000 25%, transparent 80%);
  opacity: .7;
  z-index: 0;
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-inner { position: relative; max-width: 940px; }
.hero h1 { font-weight: 600; letter-spacing: -.04em; }
.hero h1 span.acc {
  background: var(--t-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: t-shift 8s ease infinite;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 36px; padding-top: 0;
  border-top: none;
}
.hero-stat {
  display: flex; flex-direction: column;
  background: rgba(0, 12, 6, .35);
  border: 1px solid rgba(0, 255, 136, .15);
  border-radius: 14px;
  padding: 18px 20px;
  flex: 1; min-width: 140px;
  position: relative;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  transition: transform .35s var(--t-ease), border-color .35s var(--t-ease), background .35s var(--t-ease), box-shadow .35s var(--t-ease);
  overflow: hidden;
}
.hero-stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--matrix), transparent);
  opacity: .55;
}
.hero-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 136, .4);
  background: rgba(0, 14, 8, .55);
  box-shadow: 0 12px 32px -10px rgba(0, 255, 136, .3);
}
.hero-stat .v {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--matrix);
  text-shadow: 0 0 14px var(--matrix-glow);
  letter-spacing: -.01em;
}
.hero-stat .l {
  font-size: .72rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 6px;
  font-family: var(--font-mono);
}

/* Tag pill — futuristic chip with pulse dot (Matrix-green = live/online) */
.tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0, 255, 136, .04);
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 255, 136, .22);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.tag::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--matrix);
  box-shadow: 0 0 8px var(--matrix), 0 0 0 0 var(--green-glow);
  animation: t-pulse 1.8s ease-out infinite;
}
@keyframes t-pulse {
  0%   { box-shadow: 0 0 8px var(--matrix), 0 0 0 0 var(--green-glow); }
  70%  { box-shadow: 0 0 6px var(--matrix), 0 0 0 10px rgba(0, 255, 136, 0); }
  100% { box-shadow: 0 0 8px var(--matrix), 0 0 0 0 rgba(0, 255, 136, 0); }
}

@media (max-width: 760px) {
  .hero { padding: 56px 0 36px; }
  .hero-stats { gap: 10px; }
  .hero-stat { padding: 14px; min-width: 130px; }
  .hero-stat .v { font-size: 1.35rem; }
}

/* Hero terminal — Matrix-green code prompt */
.hero-terminal {
  margin: 22px 0 0;
  display: flex; align-items: center; gap: 12px; flex-wrap: nowrap;
  background: rgba(0, 12, 6, .55);
  border: 1px solid rgba(0, 255, 136, .22);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--text-soft);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  box-shadow: inset 0 0 24px rgba(0, 255, 136, .04);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.hero-terminal-dots {
  display: inline-flex; gap: 6px; align-items: center; flex-shrink: 0;
}
.hero-terminal-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}
.hero-terminal-dots span:nth-child(1) { background: rgba(255, 85, 119, .65); }
.hero-terminal-dots span:nth-child(2) { background: rgba(248, 193, 69, .65); }
.hero-terminal-dots span:nth-child(3) { background: rgba(0, 255, 136, .75); box-shadow: 0 0 8px rgba(0, 255, 136, .5); }
.hero-terminal-prompt {
  color: var(--matrix);
  font-weight: 700;
  text-shadow: 0 0 6px rgba(0, 255, 136, .5);
  flex-shrink: 0;
}
.hero-terminal code {
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--cyan-2);
  font-size: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1; min-width: 0;
}
.hero-terminal-cursor {
  width: 8px; height: 14px; background: var(--matrix);
  display: inline-block; flex-shrink: 0;
  animation: t-cursor 1.1s steps(2) infinite;
  box-shadow: 0 0 8px rgba(0, 255, 136, .6);
}
@keyframes t-cursor {
  50% { opacity: 0; }
}
@media (max-width: 600px) {
  .hero-terminal { font-size: .72rem; padding: 10px 12px; gap: 10px; }
  .hero-terminal-dots span { width: 8px; height: 8px; }
}

/* Live status widget */
.live-widget {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  background: rgba(255, 255, 255, .03);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--matrix);
  border-radius: 14px;
  padding: 14px 22px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .25s var(--t-ease), background .25s var(--t-ease), transform .25s var(--t-ease);
  flex-wrap: wrap;
  box-shadow: 0 8px 22px -12px rgba(0, 0, 0, .55), -8px 0 22px -16px rgba(0, 255, 136, .25);
}
.live-widget:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(0, 255, 136, .35);
  border-left-color: var(--matrix);
  transform: translateY(-1px);
}
.live-widget-main {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; flex: 1; min-width: 0;
}
.live-widget-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--matrix);
  text-shadow: 0 0 6px rgba(0, 255, 136, .35);
  white-space: nowrap;
}
.live-widget-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--matrix);
  box-shadow: 0 0 8px var(--matrix), 0 0 0 4px var(--green-soft);
}
.live-widget-text { font-size: .9rem; color: var(--text-soft); }
.live-widget-text code {
  color: var(--cyan-2);
  background: rgba(34, 211, 238, .07);
  border-color: rgba(34, 211, 238, .2);
}
.live-widget-link {
  color: var(--text-mute);
  font-size: .82rem;
  white-space: nowrap;
  font-family: var(--font-mono);
  letter-spacing: .04em;
}
.live-widget-link i { color: var(--cyan-2); margin-left: 4px; }

/* ============ Catalog: filters bar ============ */
.filters {
  position: relative;
  background: rgba(2, 8, 6, 0.55);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
          backdrop-filter: blur(12px) saturate(160%);
  border-top:    1px solid rgba(0, 255, 136, .14);
  border-bottom: 1px solid rgba(0, 255, 136, .14);
  padding: 14px 0;
  margin-top: 8px;
}
.filters-inner { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.search-box { position: relative; flex: 1; min-width: 220px; }
.search-box i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-mute);
}
.search-box input {
  width: 100%;
  background: rgba(0, 12, 6, .4);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px 12px 42px;
  font: inherit; font-size: .95rem;
  font-family: var(--font-mono);
  letter-spacing: .01em;
  transition: border-color .25s var(--t-ease), box-shadow .25s var(--t-ease), background .25s var(--t-ease);
}
.search-box input::placeholder { color: var(--text-mute); font-family: var(--font); }
.search-box input:focus {
  outline: none;
  border-color: var(--matrix);
  background: rgba(0, 16, 8, .55);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, .18), inset 0 0 12px rgba(0, 255, 136, .08);
  color: var(--matrix);
}
.search-box i { color: var(--matrix-dim); }
.search-box input:focus + i, .search-box:focus-within i { color: var(--matrix); }
.cat-bar {
  display: flex; gap: 6px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: 4px; scrollbar-width: thin;
}
.cat-bar::-webkit-scrollbar { height: 4px; }
.cat-bar::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0, 12, 6, .35);
  color: var(--text-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: .82rem; font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: .04em;
  cursor: pointer; white-space: nowrap;
  transition: all .25s var(--t-ease);
}
.cat-pill:hover { color: var(--matrix); border-color: rgba(0, 255, 136, .28); background: rgba(0, 255, 136, .06); }
.cat-pill.active {
  background: rgba(0, 255, 136, .14);
  color: var(--matrix);
  border-color: rgba(0, 255, 136, .5);
  box-shadow: 0 0 0 1px rgba(0, 255, 136, .15) inset, 0 0 12px -4px var(--matrix-glow);
  text-shadow: 0 0 6px rgba(0, 255, 136, .35);
}
.cat-pill .count { opacity: .55; font-size: .8em; }
@media (max-width: 760px) {
  .filters { padding: 12px 0; }
  .filters-inner { gap: 10px; }
}

/* ============ Agent grid ============ */
.agent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}
.agent-card {
  background: rgba(0, 12, 6, .3);
  border: 1px solid rgba(0, 255, 136, .14);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  transition: transform .35s var(--t-ease), border-color .35s var(--t-ease), box-shadow .35s var(--t-ease), background .35s var(--t-ease);
  position: relative; overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  isolation: isolate;
}
.agent-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(360px 180px at 100% 0%, rgba(0, 255, 136, .12), transparent 65%);
  opacity: 0; transition: opacity .35s var(--t-ease);
  pointer-events: none;
  z-index: -1;
}
.agent-card::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, .5), transparent);
  opacity: 0; transition: opacity .35s var(--t-ease);
  pointer-events: none;
}
.agent-card:hover {
  transform: translateY(-4px);
  background: rgba(0, 16, 10, .55);
  border-color: rgba(0, 255, 136, .4);
  box-shadow: 0 18px 44px -16px rgba(0, 255, 136, .35), 0 8px 22px rgba(0, 0, 0, .55);
}
.agent-card:hover::before { opacity: 1; }
.agent-card:hover::after  { opacity: 1; }

/* Matrix-style corner brackets — altijd zichtbaar maar subtiel; intenser bij hover */
.agent-card .corner {
  position: absolute;
  width: 12px; height: 12px;
  border-color: var(--matrix);
  border-style: solid;
  opacity: .35;
  transition: opacity .35s var(--t-ease), width .35s var(--t-ease), height .35s var(--t-ease);
  pointer-events: none;
  z-index: 1;
}
.agent-card .corner.tl { top: 7px;    left: 7px;    border-width: 1px 0 0 1px; }
.agent-card .corner.tr { top: 7px;    right: 7px;   border-width: 1px 1px 0 0; }
.agent-card .corner.bl { bottom: 7px; left: 7px;    border-width: 0 0 1px 1px; }
.agent-card .corner.br { bottom: 7px; right: 7px;   border-width: 0 1px 1px 0; }
.agent-card:hover .corner { opacity: 1; width: 16px; height: 16px; }

.agent-head {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 14px; position: relative;
}
.agent-icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0, 255, 136, .22), rgba(34, 211, 238, .1));
  color: var(--matrix);
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 255, 136, .35);
  box-shadow: inset 0 1px 0 rgba(0, 255, 136, .15), 0 0 16px -4px rgba(0, 255, 136, .25);
  text-shadow: 0 0 10px var(--matrix-glow);
}
.agent-cat {
  font-size: .68rem;
  color: var(--matrix-dim);
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 5px;
  font-family: var(--font-mono);
}
.agent-cat::before { content: '> '; color: var(--matrix); }
.agent-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: #f0fff5;
  margin: 0;
  letter-spacing: -.015em;
}
.agent-card:hover .agent-name { color: var(--matrix); text-shadow: 0 0 8px rgba(0, 255, 136, .35); }
.agent-tagline {
  font-size: .92rem;
  color: var(--text-soft);
  margin: 0 0 14px;
  flex: 1;
  line-height: 1.55;
}
.agent-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.agent-tier {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .66rem; font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 255, 136, .05);
  color: var(--text-soft);
  border: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: var(--font-mono);
}
.agent-tier.starter      { color: var(--matrix);   border-color: rgba(0, 255, 136, .4);   background: rgba(0, 255, 136, .08); }
.agent-tier.professional { color: var(--cyan);     border-color: rgba(0, 255, 204, .4);   background: rgba(0, 255, 204, .08); }
.agent-tier.business     { color: var(--matrix-2); border-color: rgba(77, 255, 170, .4);  background: rgba(77, 255, 170, .08); }
.agent-tier.enterprise   { color: var(--amber);    border-color: rgba(255, 230, 0, .4);   background: rgba(255, 230, 0, .08); text-shadow: 0 0 6px rgba(255, 230, 0, .35); }
.agent-demo-flag {
  font-size: .68rem; color: var(--matrix);
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: .12em;
  text-shadow: 0 0 8px rgba(0, 255, 136, .4);
}
.agent-demo-flag i { font-size: 6px; animation: t-pulse 1.8s ease-out infinite; }
.agent-arrow { color: var(--matrix); opacity: 0; transition: opacity .25s, transform .25s; text-shadow: 0 0 8px var(--matrix-glow); }
.agent-card:hover .agent-arrow { opacity: 1; transform: translateX(4px); }

.empty-state { text-align: center; padding: 64px 20px; color: var(--text-mute); }
.empty-state i { font-size: 48px; opacity: .35; margin-bottom: 14px; }

/* ============ Detail page ============ */
.detail-head {
  background:
    radial-gradient(600px 280px at 10% 0%, rgba(0, 255, 136, .14), transparent 60%),
    radial-gradient(500px 240px at 95% 100%, rgba(0, 255, 204, .1), transparent 60%);
  padding: 64px 0 36px;
  border-bottom: 1px solid rgba(0, 255, 136, .15);
}
.detail-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 18px; }
.crumb {
  color: var(--text-mute);
  font-size: .85rem;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
}
.crumb a { color: var(--text-soft); }
.crumb a:hover { color: var(--cyan-2); }
.detail-hero { display: grid; grid-template-columns: 88px 1fr; gap: 24px; align-items: flex-start; }
.detail-hero-icon {
  width: 88px; height: 88px; border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0, 255, 136, .22), rgba(34, 211, 238, .1));
  border: 1px solid rgba(0, 255, 136, .4);
  color: var(--matrix); font-size: 38px;
  box-shadow: 0 12px 28px -10px rgba(0, 255, 136, .4), inset 0 1px 0 rgba(0, 255, 136, .2);
  text-shadow: 0 0 14px var(--matrix-glow);
}
@media (max-width: 600px) {
  .detail-hero { grid-template-columns: 1fr; }
  .detail-hero-icon { width: 68px; height: 68px; font-size: 28px; border-radius: 18px; }
}

.detail-body { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 36px 0; }
@media (max-width: 960px) { .detail-body { grid-template-columns: 1fr; gap: 24px; } }
.detail-side { position: sticky; top: calc(var(--nav-h) + 24px); align-self: start; }
@media (max-width: 960px) { .detail-side { position: static; } }

.feature-list, .usecase-list, .example-list { padding-left: 0; list-style: none; margin: 0; }
.feature-list li, .usecase-list li {
  padding: 12px 0 12px 34px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
}
.feature-list li:last-child, .usecase-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 4px; top: 12px; color: var(--matrix);
  text-shadow: 0 0 8px rgba(0, 255, 136, .35);
}
.usecase-list li::before {
  content: ""; position: absolute; left: 8px; top: 19px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--matrix);
  box-shadow: 0 0 8px var(--matrix);
}
.example-list li {
  background: rgba(0, 14, 8, .35);
  border: 1px solid rgba(0, 255, 136, .14);
  border-left: 2px solid var(--matrix);
  padding: 12px 16px 12px 42px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-family: var(--font-mono); font-size: .9rem;
  color: var(--text);
  position: relative;
}
.example-list li::before {
  content: "\f10d"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 14px; top: 13px; color: var(--matrix); font-size: .85rem;
  text-shadow: 0 0 6px rgba(0, 255, 136, .3);
}

.cta-card {
  background: rgba(0, 14, 8, .5);
  border: 1px solid rgba(0, 255, 136, .3);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  box-shadow: 0 0 30px -10px rgba(0, 255, 136, .2);
}
.cta-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--matrix), transparent);
  opacity: .7;
}
.cta-card h3 { margin-top: 0; }
.cta-card .price {
  font-family: var(--font-head);
  font-size: 2.1rem; font-weight: 600;
  color: var(--matrix);
  text-shadow: 0 0 18px var(--matrix-glow);
  margin: 8px 0;
  letter-spacing: -.02em;
}
.cta-card .price small { font-size: .85rem; font-weight: 500; color: var(--text-mute); text-shadow: none; }

/* ============ Pricing ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: rgba(0, 12, 6, .35);
  border: 1px solid rgba(0, 255, 136, .14);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex; flex-direction: column;
  position: relative;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  transition: transform .35s var(--t-ease), border-color .35s var(--t-ease);
}
.price-card:hover { transform: translateY(-3px); border-color: rgba(0, 255, 136, .35); box-shadow: 0 12px 30px -14px rgba(0, 255, 136, .25); }
.price-card.featured {
  border-color: transparent;
  background:
    linear-gradient(rgba(4, 16, 10, .9), rgba(4, 16, 10, .9)) padding-box,
    var(--t-gradient) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 50px -18px rgba(0, 255, 136, .5);
}
.price-card.featured::before {
  content: "Aanbevolen";
  position: absolute; top: -12px; right: 22px;
  background: var(--t-gradient);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-family: var(--font-mono);
  box-shadow: 0 8px 18px -4px rgba(0, 255, 136, .5);
}
.price-name {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 600;
  letter-spacing: -.015em;
  color: #f0fff5;
}
.price-amount {
  font-family: var(--font-head);
  font-size: 2.7rem; font-weight: 600;
  color: var(--matrix);
  text-shadow: 0 0 18px var(--matrix-glow);
  margin: 10px 0 4px;
  letter-spacing: -.025em;
}
.price-card.featured .price-amount {
  background: var(--t-gradient);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.price-amount small {
  font-size: .85rem; color: var(--text-mute); font-weight: 500;
  background: none; -webkit-text-fill-color: var(--text-mute);
}
.price-period { font-size: .85rem; color: var(--text-mute); margin-bottom: 20px; font-family: var(--font-mono); }
.price-features { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.price-features li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: .92rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.price-features li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 10px; color: var(--matrix);
  text-shadow: 0 0 8px rgba(0, 255, 136, .35);
}

/* ============ Forms ============ */
.form {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
label {
  display: block;
  font-size: .85rem;
  color: var(--text-soft);
  margin: 0 0 7px;
  font-weight: 500;
  letter-spacing: .01em;
}
input[type=text], input[type=email], input[type=tel], textarea, select {
  width: 100%;
  background: rgba(0, 12, 6, .35);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font: inherit; font-size: .95rem;
  transition: border-color .25s var(--t-ease), box-shadow .25s var(--t-ease), background .25s var(--t-ease);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--matrix);
  background: rgba(0, 14, 8, .55);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, .15), inset 0 0 10px rgba(0, 255, 136, .06);
}
textarea { resize: vertical; min-height: 110px; }
.field { margin-bottom: 16px; }
.field-row { display: flex; gap: 12px; }
.field-row .field { flex: 1; }
@media (max-width: 600px) { .field-row { flex-direction: column; gap: 0; } }
.field-help  { font-size: .8rem;  color: var(--text-mute); margin-top: 5px; }
.field-error { font-size: .82rem; color: var(--red);       margin-top: 6px; min-height: 1.2em; }

/* ============ Generic cards & grids ============ */
.card {
  background: rgba(0, 12, 6, .3);
  border: 1px solid rgba(0, 255, 136, .14);
  border-radius: var(--radius);
  padding: 24px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  transition: transform .35s var(--t-ease), border-color .35s var(--t-ease), background .35s var(--t-ease);
  position: relative; overflow: hidden;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 136, .35);
  background: rgba(0, 14, 8, .5);
  box-shadow: 0 12px 30px -14px rgba(0, 255, 136, .25);
}
.card .icon {
  display: inline-flex; width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0, 255, 136, .22), rgba(34, 211, 238, .1));
  color: var(--matrix);
  border: 1px solid rgba(0, 255, 136, .3);
  border-radius: 12px;
  margin-bottom: 14px;
  font-size: 19px;
  box-shadow: inset 0 1px 0 rgba(0, 255, 136, .14);
  text-shadow: 0 0 10px var(--matrix-glow);
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============ Alerts ============ */
.alert {
  padding: 13px 16px;
  border-radius: 12px;
  font-size: .9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  display: flex; align-items: center; gap: 10px;
}
.alert.error   { border-color: rgba(255, 85, 119, .4); background: rgba(255, 85, 119, .08); }
.alert.success { border-color: rgba(16, 185, 129, .4); background: rgba(16, 185, 129, .08); }
.alert.info    { border-color: rgba(56, 189, 248, .4); background: rgba(56, 189, 248, .08); }

/* ============ Skeleton ============ */
.skel {
  background: linear-gradient(90deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  background-size: 200% 100%;
  animation: skel 1.4s infinite ease-in-out;
  border-radius: 12px;
}
@keyframes skel {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============ Footer ============ */
.site-footer {
  margin-top: 64px;
  border-top: 1px solid rgba(0, 255, 136, .2);
  background: linear-gradient(180deg, transparent, rgba(0, 255, 136, .04));
  padding: 48px 0 24px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--matrix), transparent);
  opacity: .6;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 {
  color: var(--matrix); font-size: .76rem;
  text-transform: uppercase; letter-spacing: .18em;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  text-shadow: 0 0 8px rgba(0, 255, 136, .3);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--text-soft); font-size: .92rem; transition: color .2s, text-shadow .2s; }
.footer-grid a:hover { color: var(--matrix); text-shadow: 0 0 8px rgba(0, 255, 136, .3); }
.footer-bottom {
  margin-top: 36px; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 12px;
  color: var(--text-mute); font-size: .82rem;
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

/* ============ Toast ============ */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: rgba(15, 18, 34, .92);
  border: 1px solid rgba(16, 185, 129, .5);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  color: var(--text);
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .55);
  z-index: 9999;
}

/* ============ Accessibility ============ */
:focus-visible {
  outline: 2px solid var(--matrix);
  outline-offset: 3px;
  border-radius: 6px;
  box-shadow: 0 0 12px var(--matrix-glow);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
}

/* ============ Agent-detail ROI banner ============ */
.roi-banner {
  margin: 36px 0 0;
  background: rgba(0, 14, 8, .5);
  border: 1px solid rgba(0, 255, 136, .3);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  box-shadow: 0 0 30px -12px rgba(0, 255, 136, .25);
}
.roi-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--matrix), transparent);
  opacity: .8;
  pointer-events: none;
}
.roi-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.roi-head h2 { font-size: 1.35rem; color: #f0fff5; margin: 0; }
.roi-head h2 i { color: var(--matrix); margin-right: 6px; text-shadow: 0 0 10px var(--matrix-glow); }
.roi-pill {
  margin-left: auto;
  background: var(--matrix);
  color: #001f10;
  font-size: .68rem; font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  box-shadow: 0 8px 22px -6px rgba(0, 255, 136, .65);
}
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0 14px;
}
@media (max-width: 600px) { .roi-grid { grid-template-columns: 1fr; } }
.roi-stat {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}
.roi-stat .roi-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--matrix);
  text-shadow: 0 0 16px var(--matrix-glow);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.roi-stat .roi-num small {
  font-size: .55em;
  color: var(--text-mute);
  font-weight: 500;
  margin-left: 2px;
  text-shadow: none;
}
.roi-stat .roi-lbl {
  font-size: .76rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--font-mono);
}
.roi-foot {
  font-size: .82rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
