/* ==========================================================================
   FDE Technology — matched to the Altius / docAIgent product design language
   Blue→navy gradient · gold accent · white + slate · Inter · dot-grid · gold line
   ========================================================================== */

:root {
  --brand:        #1a6aff;
  --brand-dark:   #00008b;
  --gold:         #e1bc36;
  --amber:        #f59e0b;
  --amber-light:  #fbbf24;

  --bg:        #ffffff;
  --fg:        #111827;   /* gray-900 */
  --muted:     #4b5563;   /* gray-600 */
  --muted-2:   #6b7280;   /* gray-500 */
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e5e7eb;
  --gray-300:  #d1d5db;

  --ink-900:   #0f172a;   /* slate-900 */
  --ink-800:   #1e293b;
  --indigo-950:#1e1b4b;

  --sans: var(--font-inter, "Inter"), -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --container: 1152px;     /* max-w-6xl */
  --gutter: clamp(20px, 5vw, 40px);
  --radius:    16px;       /* rounded-2xl-ish */
  --radius-lg: 12px;
  --radius-md: 10px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow-md: 0 4px 14px rgba(15,23,42,.08), 0 1px 3px rgba(15,23,42,.06);
  --shadow-lg: 0 14px 40px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.06);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior:auto; } }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: rgba(26,106,255,.18); }

/* ---- type ---- */
h1,h2,h3,h4 { margin: 0; font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; color: var(--fg); }
.display { font-size: clamp(2.5rem, 6vw, 4.2rem); line-height: 1.05; letter-spacing: -0.035em; font-weight: 800; text-wrap: balance; }
h2.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; text-wrap: balance; }
h3 { font-size: 1.18rem; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.6; color: var(--muted); font-weight: 400; text-wrap: pretty; }
.muted { color: var(--muted); }

.gradient-text {
  background: linear-gradient(100deg, var(--brand), var(--brand-dark));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before { content:""; width: 18px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--amber-light)); }
.eyebrow.on-dark { color: #93b4ff; }
.eyebrow.center { justify-content: center; }

/* ---- layout ---- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 60ch; }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 1rem; }
.section-head .lead { margin-top: 1.1rem; }

/* ---- decorative (matched to Altius) ---- */
.hero-bg {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(26,106,255,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(225,188,54,.08) 0%, transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.section-alt { background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%); }
.section-dark { background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%); color: #e5e7eb; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .lead { color: #c7d2fe; }
.dot-grid { position: relative; }
.dot-grid::before {
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image: radial-gradient(circle, rgba(148,163,184,.20) 1px, transparent 1px);
  background-size: 24px 24px;
}
.section-dark.dot-grid::before { background-image: radial-gradient(circle, rgba(148,163,184,.10) 1px, transparent 1px); }
.gold-line { height: 2px; width: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, #f0d96b 50%, var(--gold) 70%, transparent 100%); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .72rem 1.3rem; font-size: .92rem; font-weight: 600;
  border: 1px solid transparent; border-radius: var(--radius-lg);
  transition: box-shadow .18s ease, filter .18s ease, background .18s ease, border-color .18s ease, transform .12s ease;
}
.btn-lg { padding: .92rem 1.7rem; font-size: 1rem; }
.btn:active { transform: translateY(1px); }
.btn-grad { background: linear-gradient(100deg, var(--brand), var(--brand-dark)); color: #fff; box-shadow: var(--shadow-md); }
.btn-grad:hover { box-shadow: var(--shadow-lg); filter: brightness(1.08); }
.btn-gold { background: linear-gradient(100deg, var(--amber), var(--amber-light)); color: #fff; box-shadow: var(--shadow-md); }
.btn-gold:hover { box-shadow: var(--shadow-lg); filter: brightness(1.06); }
.btn-outline { background: rgba(255,255,255,.6); color: #374151; border-color: var(--gray-300); backdrop-filter: blur(4px); }
.btn-outline:hover { background: #fff; border-color: #c2c8d0; }
.section-dark .btn-outline { background: rgba(255,255,255,.06); color: #e5e7eb; border-color: rgba(255,255,255,.18); }
.section-dark .btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); }
.btn .arr { transition: transform .16s ease; }
.btn:hover .arr { transform: translateX(3px); }

.textlink { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--brand); transition: gap .16s ease; }
.textlink:hover { gap: .65rem; }
.section-dark .textlink { color: #93b4ff; }

/* ============================ header / nav ============================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,231,235,.6);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; color: var(--fg); letter-spacing: -0.01em; }
.brand .logo {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  display: grid; place-items: center; color: #fff; font-size: .72rem; font-weight: 800;
  background: linear-gradient(140deg, var(--brand), var(--brand-dark));
}
.brand b { font-size: 1.02rem; font-weight: 700; }
.brand .brand-sub { font-weight: 500; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: .9rem; color: var(--muted); font-weight: 500; white-space: nowrap; transition: color .15s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--fg); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }

.menu-btn { display: none; width: 38px; height: 38px; border-radius: 9px; border: none; background: transparent; color: var(--muted); align-items: center; justify-content: center; }
.menu-btn:hover { background: var(--gray-100); }
.menu-btn span, .menu-btn span::before, .menu-btn span::after { content:""; display:block; width: 18px; height: 2px; border-radius: 2px; background: currentColor; transition:.2s; }
.menu-btn span { position: relative; }
.menu-btn span::before { position:absolute; top:-6px; left:0; } .menu-btn span::after { position:absolute; top:6px; left:0; }

.mobile-menu { display: none; }
@media (max-width: 1024px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-menu {
    display: block; background: #fff;
    padding: 0 var(--gutter);            /* no vertical padding when closed → true 0 height */
    max-height: 0; overflow: hidden;
    border-bottom: 0 solid var(--gray-200);
    transition: max-height .26s ease, padding .26s ease;
  }
  .mobile-menu.open {
    max-height: 460px;
    padding: .4rem var(--gutter) 1.4rem;
    border-bottom: 1px solid var(--gray-200);
  }
  .mobile-menu a:not(.btn) { display: block; padding: .85rem 0; font-size: .98rem; color: var(--muted); border-bottom: 1px solid var(--gray-100); }
  .mobile-menu a:not(.btn):hover { color: var(--fg); }
  .mobile-menu .btn { display: flex; width: 100%; margin-top: 1.2rem; }
}

/* ============================ hero ============================ */
.hero { position: relative; overflow: hidden; padding-block: clamp(56px, 9vw, 104px); text-align: center; }
.hero .gold-line { position: absolute; top: 0; left: 0; }
.hero .container { position: relative; z-index: 1; }
.hero .inner { max-width: 820px; margin-inline: auto; }
.hero h1 { margin-top: 1.3rem; }
.hero .lead { margin: 1.5rem auto 0; max-width: 660px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2.1rem; }
.hero-sub { margin-top: 2.4rem; font-size: .82rem; color: var(--muted-2); }
.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; color: var(--brand);
  background: rgba(26,106,255,.08); border: 1px solid rgba(26,106,255,.18);
  padding: 5px 13px; border-radius: 999px;
}
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 rgba(245,158,11,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(245,158,11,.5)} 70%{box-shadow:0 0 0 7px rgba(245,158,11,0)} 100%{box-shadow:0 0 0 0 rgba(245,158,11,0)} }

/* ============================ trust strip ============================ */
.trust { border-bottom: 1px solid var(--gray-200); background: #fff; }
.trust .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; padding-block: 22px; }
.trust .tl { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.trust .pl { font-size: 1.05rem; font-weight: 700; color: #334155; letter-spacing: -0.01em; }

/* ============================ feature grid / cards ============================ */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  position: relative; border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--gray-200); background: linear-gradient(180deg, #ffffff, rgba(248,250,252,.8));
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card:hover { border-color: rgba(252,211,77,.6); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card .icon {
  width: 44px; height: 44px; border-radius: var(--radius-md); margin-bottom: 16px;
  display: grid; place-items: center; color: var(--brand);
  background: linear-gradient(140deg, #eff6ff, rgba(26,106,255,.10));
  transition: background .2s ease, color .2s ease;
}
.card:hover .icon { background: linear-gradient(140deg, #fffbeb, #fef9c3); color: #d97706; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }
.card .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; }
.tag { font-size: .72rem; font-weight: 600; color: #475569; background: var(--gray-100); border: 1px solid var(--gray-200); padding: 3px 9px; border-radius: 999px; }

/* numbered step (approach) */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step { position: relative; border-radius: var(--radius); border: 1px solid var(--gray-200); background: linear-gradient(180deg,#fff,rgba(248,250,252,.8)); padding: 26px 24px; }
.step .num {
  width: 40px; height: 40px; border-radius: var(--radius-md); display: grid; place-items: center;
  font-weight: 800; color: #fff; margin-bottom: 16px;
  background: linear-gradient(140deg, var(--brand), var(--brand-dark));
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* dark feature row (the gap) */
.gap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.gap-card { position: relative; z-index: 1; border-radius: var(--radius); padding: 24px; border: 1px solid rgba(148,163,184,.18); background: rgba(255,255,255,.03); }
.gap-card .n { display:inline-block; font-weight: 800; font-size: .9rem; color: var(--gold); margin-bottom: 10px; }
.gap-card h3 { color: #fff; margin-bottom: 8px; }
.gap-card p { color: #94a3b8; font-size: .95rem; margin: 0; }

/* ============================ product (docAIgent) ============================ */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,64px); align-items: center; }
.product-badge {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  color: var(--gold); background: rgba(225,188,54,.1); border: 1px solid rgba(225,188,54,.32);
  padding: 5px 13px; border-radius: 999px;
}
.product-grid h2 { margin-top: 1.1rem; }
.product-feats { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 13px; }
.product-feats li { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.product-feats .ck { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; margin-top: 2px;
  background: linear-gradient(140deg, var(--amber), var(--amber-light)); color: #fff; flex: none; }
.product-feats b { font-weight: 700; color: #fff; }
.section:not(.section-dark) .product-feats b { color: var(--fg); }
.product-feats span { color: #94a3b8; }
.section:not(.section-dark) .product-feats span { color: var(--muted); }

/* product UI mock */
.app-mock { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(148,163,184,.18); background: #0b1120; box-shadow: var(--shadow-lg); }
.app-bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-bottom: 1px solid rgba(148,163,184,.14); background: #0f172a; }
.app-bar .dotrow { display: flex; gap: 6px; }
.app-bar .dotrow i { width: 9px; height: 9px; border-radius: 50%; background: #334155; display: block; }
.app-bar .addr { font-size: .74rem; color: #64748b; margin-left: 6px; }
.app-body { display: grid; grid-template-columns: 160px 1fr; min-height: 320px; }
.app-side { border-right: 1px solid rgba(148,163,184,.12); padding: 15px 12px; }
.app-side .sb-h { font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #475569; margin: 0 6px 8px; }
.app-side .sb-h + .sb-h, .app-side .sb-item + .sb-h { margin-top: 14px; }
.app-side .sb-item { display: flex; align-items: center; gap: 9px; padding: 7px 9px; border-radius: 8px; font-size: .82rem; color: #94a3b8; }
.app-side .sb-item.on { background: rgba(26,106,255,.16); color: #bfdbfe; }
.app-side .sb-item .sq { width: 13px; height: 13px; border-radius: 4px; background: #334155; flex: none; }
.app-side .sb-item.on .sq { background: var(--brand); }
.app-main { padding: 18px; }
.chat-line { display: flex; gap: 10px; margin-bottom: 15px; }
.chat-line .av { width: 26px; height: 26px; border-radius: 8px; flex: none; display: grid; place-items: center; font-size: .66rem; font-weight: 800; color: #fff; }
.chat-line .av.u { background: #334155; color: #cbd5e1; }
.chat-line .av.a { background: linear-gradient(140deg, var(--brand), var(--brand-dark)); }
.chat-line .bub { font-size: .85rem; line-height: 1.5; color: #e2e8f0; background: rgba(255,255,255,.04); border: 1px solid rgba(148,163,184,.16); padding: 10px 13px; border-radius: 10px; }
.chat-line .bub.q { background: transparent; border: none; padding: 5px 0; color: #cbd5e1; }
.chat-line .bub small { display: block; margin-top: 8px; color: #64748b; font-size: .74rem; }
.chip-mini { display: inline-flex; align-items: center; font-size: .7rem; font-weight: 600; color: #fcd34d; background: rgba(225,188,54,.1); border: 1px solid rgba(225,188,54,.3); padding: 2px 9px; border-radius: 999px; margin: 8px 6px 0 0; }
.chip-mini.blue { color: #93b4ff; background: rgba(26,106,255,.12); border-color: rgba(26,106,255,.3); }
@media (max-width: 860px){ .product-grid { grid-template-columns: 1fr; } .app-mock { order: 2; } }

/* ============================ industries ============================ */
.ind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ind { border-radius: var(--radius-lg); border: 1px solid var(--gray-200); background: #fff; padding: 20px; transition: border-color .18s, box-shadow .18s, transform .18s; }
.ind:hover { border-color: rgba(26,106,255,.4); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ind .ico { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; color: var(--brand); background: linear-gradient(140deg,#eff6ff,rgba(26,106,255,.1)); margin-bottom: 12px; }
.ind b { display: block; font-weight: 700; font-size: 1.02rem; margin-bottom: 4px; }
.ind span { color: var(--muted); font-size: .9rem; }

/* ============================ platforms (dark) ============================ */
.plat-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; position: relative; z-index: 1; }
.plat { border-radius: var(--radius-lg); border: 1px solid rgba(148,163,184,.18); background: rgba(255,255,255,.03); padding: 20px 18px; text-align: center; }
.plat b { display: block; font-weight: 700; font-size: 1.04rem; color: #fff; }
.plat span { font-size: .78rem; color: #94a3b8; }
@media (max-width: 760px){ .plat-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================ split (about) ============================ */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px,5vw,72px); align-items: start; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; gap: 24px; } }

/* ============================ CTA card ============================ */
.cta-wrap { padding-block: clamp(48px,7vw,84px); }
.cta-card { position: relative; overflow: hidden; border-radius: var(--radius); padding: clamp(40px,6vw,64px); text-align: center; box-shadow: var(--shadow-lg); }
.cta-card .gold-line { position: absolute; top: 0; left: 0; }
.cta-card::after { content:""; position:absolute; inset:0; background: linear-gradient(to top right, rgba(245,158,11,.1), transparent 55%, rgba(251,191,36,.05)); pointer-events:none; }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { color: #fff; }
.cta-card .lead { color: #c7d2fe; max-width: 560px; margin: 1rem auto 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2rem; }

/* ============================ contact ============================ */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px,5vw,64px); align-items: start; }
.contact-aside h3 { margin-bottom: 1rem; }
.ca-item { display: grid; grid-template-columns: auto 1fr; gap: 13px; padding: 15px 0; border-top: 1px solid var(--gray-200); }
.ca-item:first-of-type { border-top: none; padding-top: 2px; }
.ca-item .ic { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; color: var(--brand); background: linear-gradient(140deg,#eff6ff,rgba(26,106,255,.1)); flex: none; }
.ca-item b { display: block; font-weight: 700; font-size: .95rem; }
.ca-item span { color: var(--muted); font-size: .92rem; }

.form-card { border-radius: var(--radius); border: 1px solid var(--gray-200); background: #fff; padding: clamp(24px,3vw,32px); box-shadow: var(--shadow-md); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 15px; }
.field label { font-size: .82rem; font-weight: 600; color: #374151; }
.field input, .field textarea, .field select {
  font: inherit; font-size: .94rem; padding: 11px 13px; border-radius: var(--radius-md);
  border: 1px solid var(--gray-300); background: #fff; color: var(--fg);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(26,106,255,.14); }
.field textarea { resize: vertical; min-height: 108px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-note { font-size: .8rem; color: var(--muted-2); margin-top: 6px; line-height: 1.5; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ============================ footer ============================ */
.site-footer { background: var(--ink-900); color: #94a3b8; padding-block: 56px 28px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; }
.footer-top .brand { color: #fff; margin-bottom: 14px; }
.footer-blurb { font-size: .92rem; color: #94a3b8; max-width: 34ch; }
.footer-col h4 { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #64748b; margin-bottom: 14px; }
.footer-col a { display: block; color: #cbd5e1; font-size: .93rem; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(148,163,184,.18); font-size: .82rem; color: #64748b; }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 820px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (max-width: 520px){ .footer-top { grid-template-columns: 1fr; } }

/* ============================ sub-page hero ============================ */
.page-hero { padding-block: clamp(48px,7vw,84px) clamp(36px,4vw,52px); }
.breadcrumb { font-size: .82rem; color: var(--muted-2); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--brand); }

/* ---- responsive grids ---- */
@media (max-width: 980px){ .grid-3, .grid-4, .gap-grid, .steps, .ind-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid-2, .grid-3, .grid-4, .gap-grid, .steps, .ind-grid { grid-template-columns: 1fr; } }

/* ============================ product demo carousel ============================ */
.demo-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 20px; }
.demo-tab {
  border: none; border-radius: 999px; padding: 7px 16px; font-size: .82rem; font-weight: 600;
  background: var(--gray-100); color: var(--muted); transition: background .15s, color .15s, box-shadow .15s;
}
.demo-tab:hover { background: #e9eef5; }
.demo-tab.active { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.demo-window {
  max-width: 760px; margin-inline: auto; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--gray-200); background: #fff; box-shadow: 0 24px 60px rgba(15,23,42,.16), 0 6px 18px rgba(15,23,42,.08);
}
.demo-bar { display: flex; align-items: center; gap: 9px; padding: 11px 16px; border-bottom: 1px solid var(--gray-200); background: var(--gray-50); }
.demo-bar .chip { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; font-size: .58rem; font-weight: 800; color: #fff; background: linear-gradient(140deg, var(--brand), var(--brand-dark)); }
.demo-bar .name { font-size: .9rem; font-weight: 600; color: var(--fg); }
.demo-bar .lights { margin-left: auto; display: flex; gap: 6px; }
.demo-bar .lights i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.demo-bar .lights i:nth-child(1){ background:#f87171; } .demo-bar .lights i:nth-child(2){ background:#fbbf24; } .demo-bar .lights i:nth-child(3){ background:#34d399; }
.demo-body { padding: 22px; min-height: 360px; }
.demo-slide { display: none; }
.demo-slide.active { display: block; animation: fadedemo .35s ease-out; }
@keyframes fadedemo { from{opacity:0; transform: translateY(6px);} to{opacity:1; transform:none;} }

.um { display: flex; justify-content: flex-end; margin-bottom: 14px; }
.um span { background: var(--brand); color: #fff; font-size: .85rem; padding: 9px 14px; border-radius: 16px 16px 5px 16px; max-width: 80%; }
.toolbadge { display: inline-flex; align-items: center; gap: 8px; margin: 0 8px 10px 0; }
.toolbadge .tk { width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center; background: #dcfce7; color: #16a34a; flex: none; }
.toolbadge .tl { font-size: .76rem; font-weight: 600; color: var(--muted-2); }
.demo-text { font-size: .88rem; color: #374151; margin: 4px 0 12px; }
.demo-text strong { color: var(--fg); font-weight: 600; }
.dtable-wrap { overflow-x: auto; border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 12px; }
.dtable { width: 100%; border-collapse: collapse; font-size: .8rem; }
.dtable th { background: var(--gray-50); text-align: left; padding: 8px 12px; font-weight: 600; color: #374151; }
.dtable td { padding: 8px 12px; color: var(--muted); border-top: 1px solid var(--gray-200); }
.dtable td.k { color: var(--fg); }
.pill { display: inline-block; border-radius: 999px; padding: 2px 9px; font-size: .7rem; font-weight: 600; }
.pill.ok { background: #fef3c7; color: #b45309; } .pill.urgent { background: #fee2e2; color: #b91c1c; }
.chart-card { border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 16px; margin-bottom: 12px; }
.chart-card .ct { font-size: .78rem; font-weight: 600; color: #374151; margin: 0 0 8px; }
.chart-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 8px; }
.chart-legend span { display: inline-flex; align-items: center; gap: 5px; font-size: .68rem; color: var(--muted-2); }
.chart-legend i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.faux-input { display: flex; align-items: center; gap: 10px; margin-top: 14px; border: 1px solid var(--gray-200); background: rgba(248,250,252,.6); border-radius: var(--radius-md); padding: 10px 12px; }
.faux-input .ph { flex: 1; font-size: .82rem; color: #9ca3af; }
.faux-input .send { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: var(--brand); color: #fff; flex: none; }

/* ============================ agentic differentiators ============================ */
.diff-list { display: grid; gap: 14px; margin-top: 1.6rem; }
.diff { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; }
.diff .dk { color: var(--brand); flex: none; margin-top: 1px; }
.section-dark .diff .dk { color: #6f9bff; }
.diff span { font-size: .95rem; color: #374151; }
.section-dark .diff span { color: #cbd5e1; }

.agentic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,56px); align-items: center; }
@media (max-width: 860px){ .agentic-grid { grid-template-columns: 1fr; } }
.badge-first {
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.1rem;
  font-size: .76rem; font-weight: 600; color: #b45309;
  background: #fffbeb; border: 1px solid rgba(225,188,54,.45); padding: 5px 13px; border-radius: 999px;
}
.badge-first .pd { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 rgba(245,158,11,.5); animation: pulse 2.4s infinite; }

.tc-panel { border-radius: var(--radius); border: 1px solid var(--gray-200); background: linear-gradient(180deg,#fff,rgba(248,250,252,.8)); padding: 24px; box-shadow: var(--shadow-md); }
.tc-eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 6px; }
.tc-query { font-size: .9rem; color: var(--muted); margin: 0 0 18px; }
.tc-step { display: grid; grid-template-columns: auto 1fr; gap: 13px; }
.tc-rail { display: flex; flex-direction: column; align-items: center; }
.tc-num { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font-size: .78rem; font-weight: 800; color: #fff; background: linear-gradient(140deg, var(--brand), var(--brand-dark)); box-shadow: var(--shadow-sm); flex: none; }
.tc-conn { width: 1px; flex: 1; min-height: 22px; background: linear-gradient(to bottom, rgba(26,106,255,.4), rgba(26,106,255,.08)); }
.tc-body { padding: 2px 0 18px; }
.tc-tool { display: inline-flex; align-items: center; gap: 6px; border-radius: 6px; background: #dcfce7; color: #15803d; font-size: .74rem; font-weight: 600; padding: 2px 9px; }
.tc-label { margin: 6px 0 0; font-size: .86rem; color: var(--muted); }
.tc-callout { margin-top: 6px; border-radius: var(--radius-md); border: 1px solid rgba(225,188,54,.4); background: rgba(254,243,199,.5); padding: 13px 16px; }
.tc-callout b { display: block; font-size: .9rem; color: var(--fg); }
.tc-callout small { font-size: .78rem; color: var(--muted-2); }

/* ============================ enterprise security ============================ */
.sec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,56px); align-items: start; }
.sec-checks { display: grid; gap: 12px; margin-top: 1.2rem; }
.sec-check { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; }
.sec-check .ck { width: 20px; height: 20px; flex: none; color: #16a34a; margin-top: 1px; }
.sec-check span { font-size: .94rem; color: #374151; }
.sec-stack { border-radius: var(--radius); border: 1px solid var(--gray-200); background: linear-gradient(180deg,#fff,rgba(248,250,252,.8)); padding: 22px; box-shadow: var(--shadow-md); }
.sec-stack .sh { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.sec-layer { display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--gray-100); background: var(--gray-50); border-radius: var(--radius-md); padding: 12px 14px; margin-bottom: 10px; }
.sec-layer:last-child { margin-bottom: 0; }
.sec-layer .li { display: flex; align-items: center; gap: 11px; }
.sec-layer .sd { width: 20px; height: 20px; color: var(--brand); flex: none; }
.sec-layer b { display: block; font-size: .9rem; font-weight: 600; color: var(--fg); }
.sec-layer small { font-size: .76rem; color: var(--muted-2); }
.sec-layer .active { border-radius: 999px; background: #dcfce7; color: #15803d; font-size: .68rem; font-weight: 600; padding: 2px 9px; }
@media (max-width: 820px){ .sec-grid { grid-template-columns: 1fr; } }

/* ============================ demo-window in a column (home synthesis) ============================ */
.demo-window.in-col { max-width: 100%; margin: 0; }
.dchip { display: inline-flex; align-items: center; font-size: .72rem; font-weight: 600; padding: 2px 9px; border-radius: 999px; margin: 9px 7px 0 0; }
.dchip.blue { color: var(--brand-dark); background: rgba(26,106,255,.1); border: 1px solid rgba(26,106,255,.25); }
.dchip.amber { color: #b45309; background: #fffbeb; border: 1px solid rgba(225,188,54,.45); }
.demo-src { font-size: .74rem; color: var(--muted-2); margin-top: 11px; }
.demo-caption { font-size: .82rem; color: var(--muted-2); margin: 16px 0 0; }
.section-dark .demo-caption { color: #94a3b8; }
.demo-caption a { color: var(--brand); font-weight: 600; }
.section-dark .demo-caption a { color: #6f9bff; }

/* ============================ analytics / dashboard spotlight ============================ */
.dash { border-radius: var(--radius); border: 1px solid var(--gray-200); background: linear-gradient(180deg,#fff,rgba(248,250,252,.75)); box-shadow: var(--shadow-lg); padding: 22px; }
.dash-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.dash-head b { font-size: 1rem; font-weight: 700; color: var(--fg); }
.dash-tag { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 600; color: var(--brand-dark); background: rgba(26,106,255,.08); border: 1px solid rgba(26,106,255,.2); padding: 3px 11px; border-radius: 999px; }
.dash-tag i { width: 6px; height: 6px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 0 rgba(22,163,74,.5); animation: pulse 2.4s infinite; }
.dash-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 12px; }
.kpi { border: 1px solid var(--gray-200); border-radius: var(--radius-md); background: #fff; padding: 13px 15px; }
.kpi .l { font-size: .72rem; font-weight: 600; color: var(--muted-2); }
.kpi .v { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.025em; margin: 3px 0 0; color: var(--fg); }
.kpi .d { display: inline-flex; align-items: center; gap: 3px; font-size: .72rem; font-weight: 700; margin-top: 3px; }
.kpi .d.up { color: #15803d; } .kpi .d.down { color: #b91c1c; } .kpi .d.flat { color: var(--muted-2); }
.dash-charts { display: grid; grid-template-columns: 1.7fr 1.1fr 1fr; gap: 12px; }
.dpanel { border: 1px solid var(--gray-200); border-radius: var(--radius-md); background: #fff; padding: 14px; display: flex; flex-direction: column; }
.dpanel .pt { font-size: .74rem; font-weight: 700; color: #374151; margin: 0 0 10px; }
.dpanel svg { width: 100%; height: auto; }
.donut-wrap { display: flex; align-items: center; gap: 12px; }
.donut-wrap svg { width: 96px; height: 96px; flex: none; }
.donut-legend { display: grid; gap: 6px; }
.donut-legend span { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; color: var(--muted); }
.donut-legend i { width: 8px; height: 8px; border-radius: 2px; flex: none; }
@media (max-width: 920px){ .dash-charts { grid-template-columns: 1fr 1fr; } .dash-charts .dpanel:first-child { grid-column: 1 / -1; } }
@media (max-width: 600px){ .dash-kpis { grid-template-columns: repeat(2,1fr); } .dash-charts { grid-template-columns: 1fr; } }

.viz-callouts { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 30px; }
.viz-callout { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.viz-callout .vi { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; color: var(--brand); background: linear-gradient(140deg,#eff6ff,rgba(26,106,255,.1)); flex: none; }
.viz-callout b { display: block; font-size: .94rem; font-weight: 700; color: var(--fg); margin-bottom: 2px; }
.viz-callout span { font-size: .84rem; color: var(--muted); }
.section-dark .viz-callout b { color: #fff; }
.section-dark .viz-callout span { color: #94a3b8; }
.section-dark .viz-callout .vi { background: rgba(26,106,255,.18); color: #9dbbff; border: 1px solid rgba(26,106,255,.34); }
@media (max-width: 860px){ .viz-callouts { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .viz-callouts { grid-template-columns: 1fr; } }

/* ============================ proof / why-now voices ============================ */
.voices-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.voice { display: flex; flex-direction: column; border-radius: var(--radius); border: 1px solid var(--gray-200); background: linear-gradient(180deg,#fff,rgba(248,250,252,.8)); padding: 26px 24px; }
.voice .vlabel { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; }
.voice .vlabel::before { content:""; width: 16px; height: 2px; border-radius: 2px; background: var(--brand); opacity: .55; }
.voice .qt { font-size: 1.12rem; line-height: 1.45; color: var(--fg); font-weight: 600; margin: 0 0 18px; letter-spacing: -0.01em; }
.voice .big { font-size: clamp(2.4rem,3.4vw,3.1rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin: 0 0 10px; }
.voice .biglabel { font-size: .98rem; color: var(--muted); margin: 0 0 18px; }
.voice .src { margin-top: auto; padding-top: 15px; border-top: 1px solid var(--gray-100); }
.voice .src b { display: block; font-size: .86rem; font-weight: 700; color: var(--fg); }
.voice .src span { font-size: .76rem; color: var(--muted-2); }
@media (max-width: 860px){ .voices-grid { grid-template-columns: 1fr; } }

/* ============================ agent library ============================ */
/* attribute strip (deployment model) */
.attr-strip { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.attr { border-radius: var(--radius-md); border: 1px solid var(--gray-200); background: linear-gradient(180deg,#fff,rgba(248,250,252,.8)); padding: 18px; transition: border-color .18s, box-shadow .18s, transform .18s; }
.attr:hover { border-color: rgba(252,211,77,.6); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.attr .ai { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: var(--brand); background: linear-gradient(140deg,#eff6ff,rgba(26,106,255,.1)); margin-bottom: 12px; }
.attr b { display: block; font-size: .98rem; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
.attr span { font-size: .84rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 980px){ .attr-strip { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .attr-strip { grid-template-columns: 1fr; } }

/* featured agent card (anatomy of an agent) */
.agent-card { border-radius: var(--radius); border: 1px solid var(--gray-200); background: linear-gradient(180deg,#fff,rgba(248,250,252,.85)); padding: 26px; box-shadow: var(--shadow-md); }
.agent-card .ac-head { display: flex; align-items: center; gap: 11px; margin-bottom: 6px; }
.agent-card .ac-ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: #fff; background: linear-gradient(140deg, var(--brand), var(--brand-dark)); flex: none; }
.agent-card .ac-name { font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em; }
.agent-card .ac-tag { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.agent-card .ac-replaces { display: inline-block; font-size: .76rem; font-weight: 600; color: #b45309; background: #fffbeb; border: 1px solid rgba(225,188,54,.45); padding: 4px 11px; border-radius: 999px; margin: 4px 0 16px; }
.agent-card .ac-duties { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 10px; }
.agent-card .ac-duties li { display: grid; grid-template-columns: auto 1fr; gap: 11px; font-size: .92rem; color: var(--muted); align-items: start; }
.agent-card .ac-duties .dk { color: var(--brand); flex: none; margin-top: 2px; }
.agent-card .ac-outcome { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; border-top: 1px solid var(--gray-100); padding-top: 15px; font-size: .92rem; color: #15803d; font-weight: 600; }
.agent-card .ac-outcome .ck { color: #16a34a; flex: none; margin-top: 1px; }

/* strike teams (port authority) */
.strike-team { margin-top: 38px; }
.strike-team:first-of-type { margin-top: 0; }
.st-head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 18px; }
.st-num { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-size: .82rem; font-weight: 800; color: #fff; background: linear-gradient(140deg, var(--brand), var(--brand-dark)); box-shadow: var(--shadow-sm); flex: none; }
.st-head h3 { font-size: 1.18rem; }
.st-count { font-size: .72rem; font-weight: 700; color: var(--brand-dark); background: rgba(26,106,255,.1); border: 1px solid rgba(26,106,255,.25); padding: 3px 11px; border-radius: 999px; }
.st-villain { width: 100%; font-size: .9rem; color: var(--muted-2); font-style: italic; margin: 0; }
.agent-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media (max-width: 900px){ .agent-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .agent-grid { grid-template-columns: 1fr; } }
.agent-mini { border-radius: var(--radius-md); border: 1px solid var(--gray-200); background: #fff; padding: 17px; transition: border-color .18s, box-shadow .18s, transform .18s; }
.agent-mini:hover { border-color: rgba(26,106,255,.4); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.agent-mini .am-name { font-weight: 700; font-size: .95rem; letter-spacing: -0.01em; margin-bottom: 7px; display: flex; gap: 8px; align-items: baseline; }
.agent-mini .am-id { font-size: .7rem; font-weight: 800; color: var(--brand); flex: none; }
.agent-mini .am-rep { font-size: .82rem; color: var(--muted); margin: 0 0 11px; line-height: 1.5; }
.agent-mini .am-rep b { color: #374151; font-weight: 600; }
.agent-mini .am-out { display: grid; grid-template-columns: auto 1fr; gap: 8px; align-items: start; font-size: .82rem; color: #15803d; font-weight: 600; line-height: 1.45; }
.agent-mini .am-out .ck { color: #16a34a; flex: none; margin-top: 1px; }

/* port authority intro stats (dark) */
.pa-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; position: relative; z-index: 1; margin-top: 8px; }
.pa-stat { border-radius: var(--radius-md); border: 1px solid rgba(148,163,184,.18); background: rgba(255,255,255,.03); padding: 20px 18px; text-align: center; }
.pa-stat .v { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 800; letter-spacing: -0.03em; color: #fff; line-height: 1; }
.pa-stat .l { font-size: .8rem; color: #94a3b8; margin-top: 7px; }
@media (max-width: 700px){ .pa-stats { grid-template-columns: repeat(2,1fr); } }
.pa-domains { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; position: relative; z-index: 1; margin-top: 24px; }
.pa-domain { border-radius: var(--radius-md); border: 1px solid rgba(148,163,184,.18); background: rgba(255,255,255,.03); padding: 16px; }
.pa-domain b { display: block; color: var(--gold); font-size: .82rem; font-weight: 700; margin-bottom: 6px; }
.pa-domain span { font-size: .8rem; color: #94a3b8; line-height: 1.5; }
@media (max-width: 920px){ .pa-domains { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .pa-domains { grid-template-columns: 1fr; } }

/* industry explorer tables + outcome bar */
.dtable td.out { color: #15803d; font-weight: 600; }
.dtable td.cap { color: var(--muted); }
.ind-tab-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 14px; margin-bottom: 4px; }
.ind-tab-head h3 { font-size: 1.15rem; }
.ind-tab-head .vil { font-size: .88rem; color: var(--muted-2); font-style: italic; }
.ind-tab-head .cnt { font-size: .72rem; font-weight: 700; color: var(--brand-dark); background: rgba(26,106,255,.1); border: 1px solid rgba(26,106,255,.25); padding: 3px 11px; border-radius: 999px; }
.mission-outcome { margin-top: 16px; border-radius: var(--radius-md); border: 1px solid rgba(225,188,54,.4); background: rgba(254,243,199,.5); padding: 14px 17px; }
.mission-outcome b { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #92400e; margin-bottom: 7px; }
.mission-outcome .mo-items { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.mission-outcome .mo-items span { display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; color: #374151; font-weight: 500; }
.mission-outcome .mo-items .ck { color: #15803d; flex: none; }

/* value matrix table emphasis */
.dtable td.dim { color: var(--fg); font-weight: 700; }

/* featured-page roster: rich agent cards in a grid */
.agent-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (max-width: 820px){ .agent-cards { grid-template-columns: 1fr; } }

/* industries → agent library linkage */
.ind { display: flex; flex-direction: column; }
.ind .ind-go { margin-top: auto; padding-top: 13px; display: inline-flex; align-items: center; gap: 5px; font-size: .8rem; font-weight: 700; color: var(--brand); transition: gap .16s ease; }
.ind .ind-go svg { transition: transform .16s ease; }
.ind:hover .ind-go { gap: 8px; }

/* lifecycle flow strip (foia featured intro) */
.lifecycle { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 9px; position: relative; z-index: 1; margin-top: 26px; }
.lifecycle .lc { display: inline-flex; align-items: center; border: 1px solid rgba(148,163,184,.22); background: rgba(255,255,255,.04); border-radius: 999px; padding: 8px 15px; font-size: .82rem; font-weight: 600; color: #cbd5e1; }
.lifecycle .lc .n { color: var(--gold); margin-right: 7px; font-weight: 800; }
.lifecycle .sep { color: #475569; flex: none; }
@media (max-width: 520px){ .lifecycle .sep { display: none; } }

/* reveal — content is visible by DEFAULT; JS only opts in to the fade-in.
   This guarantees nothing ever stays hidden if JS is blocked/stale/errors. */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease-out, transform .6s ease-out; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ html.js .reveal { opacity:1; transform:none; transition:none; } }
