/* ── Public site — monochrome cinematic system ─────────────────────────────
   Palette: deep navy grounds, white type, and a blue accent matching the CRM.
   No colour accents anywhere. Kept separate from app.css by design. */

:root {
  --black: #081533;
  --neutral-900: #102149;
  --neutral-800: #17306B;
  --neutral-300: #C9D8F7;
  --w-90: rgba(255,255,255,.90);
  --w-70: rgba(255,255,255,.70);
  --w-40: rgba(255,255,255,.40);
  --w-12: rgba(255,255,255,.12);
  --w-06: rgba(255,255,255,.06);
}

* { box-sizing: border-box; }
html, body {
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Readex Pro', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; }

.hero-title { letter-spacing: -0.04em; line-height: 0.95; }

/* ── Floating pill navbar ────────────────────────────────────────────────── */
.site-nav { position: absolute; top: 0; left: 0; right: 0; z-index: 20; padding: 1.5rem 1.5rem 0; }
@media (min-width: 768px) { .site-nav { padding: 1.5rem 2.5rem 0; } }

.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.pill { background: rgba(16,33,73,.90); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 999px; }

.pill-brand { display: flex; align-items: center; gap: .5rem; padding: .75rem 1.5rem .75rem 1rem; }
.pill-brand svg { height: 1.25rem; width: 1.25rem; flex-shrink: 0; }
.pill-brand .brand-logo { height: 1.25rem; width: auto; max-width: 7rem; object-fit: contain; }
.pill-brand span { color: #fff; font-size: .875rem; font-weight: 400; letter-spacing: -.01em; }

.pill-links { display: none; align-items: center; gap: .25rem; padding: .5rem .75rem; }
@media (min-width: 768px) { .pill-links { display: flex; } }
.pill-links a { color: var(--neutral-300); font-size: .875rem; padding: .5rem 1.25rem; border-radius: 999px; transition: color .2s ease; }
.pill-links a:hover, .pill-links a.active { color: #fff; }

.btn-white { display: inline-block; background: #fff; color: #081533; font-size: .875rem; font-weight: 400; border: 0; border-radius: 999px; padding: .75rem 1.5rem; transition: background-color .2s ease; }
.btn-white:hover { background: var(--neutral-300); color: #081533; }

.btn-outline-w { display: inline-block; background: transparent; color: #fff; border: 1px solid var(--w-40); font-size: .875rem; border-radius: 999px; padding: .75rem 1.5rem; transition: border-color .2s ease, background-color .2s ease; }
.btn-outline-w:hover { border-color: #fff; background: var(--w-06); }

.nav-toggle { background: none; border: 0; color: #fff; font-size: 1.5rem; line-height: 1; padding: .5rem; }
@media (min-width: 768px) { .nav-toggle { display: none; } }

.mobile-menu { display: none; margin-top: .75rem; padding: 1rem 1.25rem; background: rgba(16,33,73,.95); backdrop-filter: blur(12px); border-radius: 20px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: .6rem 0; color: var(--neutral-300); font-size: .95rem; }
.mobile-menu a:hover { color: #fff; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { position: relative; height: 100vh; width: 100%; overflow: hidden; background: #081533; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-stage { position: relative; height: 100%; width: 100%; }

.hero-word { position: absolute; color: #fff; font-weight: 500; font-size: 14vw; margin: 0; }
@media (min-width: 768px) { .hero-word { font-size: 13vw; } }

.word-1 { left: 1rem; top: 18%; }
.word-2 { right: 1rem; top: 38%; }
.word-3 { left: 18%; top: 58%; }
@media (min-width: 768px) {
  .word-1 { left: 2.5rem; }
  .word-2 { right: 2.5rem; }
  .word-3 { left: 28%; }
}

.hero-copy { position: absolute; left: 1.5rem; top: 46%; max-width: 240px; font-size: 15px; line-height: 1.35; color: var(--w-90); }
@media (min-width: 768px) { .hero-copy { left: 2.5rem; } }

.stat-row { display: flex; align-items: center; gap: .75rem; }
.stat-num { font-size: 2.25rem; font-weight: 500; letter-spacing: -.02em; line-height: 1; }
@media (min-width: 768px) { .stat-num { font-size: 3rem; } }
.stat-label { font-size: .75rem; color: var(--w-70); margin-top: .25rem; }
@media (min-width: 768px) { .stat-label { font-size: .875rem; } }

.rule { display: none; height: 1px; width: 6rem; background: var(--w-40); }
@media (min-width: 768px) { .rule { display: block; } }
.rule-up { transform: rotate(20deg); }
.rule-down { transform: rotate(-20deg); }

.stat-tr { position: absolute; right: 1.5rem; top: 14%; text-align: right; }
@media (min-width: 768px) { .stat-tr { right: 6rem; } }
.stat-bl { position: absolute; left: 1.5rem; bottom: 5rem; }
@media (min-width: 768px) { .stat-bl { left: 5rem; bottom: 6rem; } }
.stat-br { position: absolute; right: 1.5rem; bottom: 4rem; text-align: right; }
@media (min-width: 768px) { .stat-br { right: 5rem; bottom: 5rem; } }

.hero-fade { pointer-events: none; position: absolute; bottom: 0; left: 0; right: 0; height: 12rem; background: linear-gradient(to bottom, transparent, #081533); }

/* ── Interior page heads ─────────────────────────────────────────────────── */
.page-head { position: relative; padding: 9rem 0 4rem; background: #081533; overflow: hidden; }
.page-head::after { content: ''; position: absolute; inset: auto 0 0 0; height: 1px; background: var(--w-12); }
.page-head h1 { font-size: clamp(2.75rem, 9vw, 6rem); font-weight: 500; letter-spacing: -.04em; line-height: .95; margin: 1rem 0 .75rem; color: #fff; }
.page-head .lede { font-size: 15px; line-height: 1.45; color: var(--w-90); max-width: 34rem; }
.page-head .updated { font-size: .75rem; color: var(--w-40); }

.eyebrow { display: inline-block; font-size: .75rem; color: var(--w-70); border: 1px solid var(--w-12); border-radius: 999px; padding: .35rem 1rem; background: rgba(16,33,73,.9); }

/* ── Sections ────────────────────────────────────────────────────────────── */
.section { padding: 7rem 0; background: #081533; }
.section-wash { background: #0B1A3D; border-block: 1px solid var(--w-06); }

.kicker { font-size: .75rem; color: var(--w-40); }
.section-title { font-size: clamp(2rem, 6vw, 3.75rem); font-weight: 500; letter-spacing: -.04em; line-height: .98; margin: .75rem 0 1rem; color: #fff; }
.section-sub { color: var(--w-70); font-size: 15px; max-width: 38rem; line-height: 1.5; }

.feature-card { height: 100%; padding: 2rem 1.75rem; border-radius: 22px; background: var(--neutral-900); border: 1px solid var(--w-06); transition: border-color .25s ease, background-color .25s ease; }
.feature-card:hover { border-color: var(--w-40); background: var(--neutral-800); }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 999px; font-size: 1.15rem; color: #081533; background: #fff; margin-bottom: 1.25rem; }
.feature-card h5 { font-size: 1rem; font-weight: 500; letter-spacing: -.02em; margin-bottom: .5rem; color: #fff; }
.feature-card p { color: var(--w-70); font-size: .9rem; margin: 0; line-height: 1.55; }

.step-num { width: 36px; height: 36px; flex-shrink: 0; display: grid; place-items: center; border-radius: 999px; font-size: .8rem; color: #fff; border: 1px solid var(--w-40); background: transparent; }

.cta-band { border-radius: 28px; padding: 5rem 2rem; text-align: center; background: var(--neutral-900); border: 1px solid var(--w-06); color: #fff; }
.cta-band h2 { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 500; letter-spacing: -.04em; line-height: 1; color: #fff; }
.cta-band p { color: var(--w-70); max-width: 32rem; margin-inline: auto; font-size: 15px; }

/* ── Long-form ───────────────────────────────────────────────────────────── */
.prose { max-width: 46rem; margin-inline: auto; padding: 4rem 0 6rem; }
.prose h2 { font-size: 1.25rem; font-weight: 500; letter-spacing: -.02em; margin: 3rem 0 .85rem; color: #fff; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1rem; font-weight: 500; margin: 1.9rem 0 .5rem; color: #fff; }
.prose p, .prose li { color: var(--w-70); font-size: .94rem; line-height: 1.7; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose strong { color: #fff; font-weight: 500; }
.prose a { color: #fff; border-bottom: 1px solid var(--w-40); }
.prose a:hover { border-color: #fff; }

.callout { padding: 1.4rem 1.5rem; border-radius: 18px; background: var(--neutral-900); border: 1px solid var(--w-12); border-left: 2px solid #fff; margin: 2rem 0; }
.callout p:last-child { margin-bottom: 0; }

/* ── Forms ───────────────────────────────────────────────────────────────── */
.form-panel { padding: 2.25rem; border-radius: 24px; background: var(--neutral-900); border: 1px solid var(--w-06); }
.form-panel label { font-size: .78rem; color: var(--w-70); margin-bottom: .4rem; display: block; }
.form-panel .form-control { border-radius: 14px; border: 1px solid var(--w-12); padding: .8rem 1rem; font-size: .92rem; background: #081533; color: #fff; font-family: inherit; width: 100%; transition: border-color .2s ease; }
.form-panel .form-control::placeholder { color: var(--w-40); }
.form-panel .form-control:focus { border-color: #fff; outline: none; box-shadow: none; background: #081533; color: #fff; }
.form-panel .invalid-feedback { color: #fff; opacity: .75; font-size: .78rem; }
.form-panel .alert { background: var(--neutral-800); border: 1px solid var(--w-12); color: #fff; border-radius: 14px; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { background: #081533; border-top: 1px solid var(--w-06); color: var(--w-70); padding: 5rem 0 2rem; }
.site-footer .brand { display: inline-flex; align-items: center; gap: .6rem; }
.site-footer .brand strong { display: block; color: #fff; font-size: .95rem; font-weight: 500; letter-spacing: -.01em; }
.site-footer .brand small { display: block; font-size: .68rem; color: var(--w-40); }
.site-footer .brand svg { height: 1.25rem; width: 1.25rem; }
.site-footer .brand-logo { height: 1.5rem; width: auto; max-width: 8rem; object-fit: contain; }
.site-footer h6 { color: #fff; font-size: .78rem; font-weight: 500; margin-bottom: 1rem; }
.site-footer a { display: block; padding: .3rem 0; font-size: .875rem; color: var(--w-70); transition: color .2s ease; }
.site-footer a:hover { color: #fff; }
.footer-copy { font-size: .875rem; color: var(--w-70); line-height: 1.6; }
.footer-base { margin-top: 3.5rem; padding-top: 1.75rem; border-top: 1px solid var(--w-06); display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between; font-size: .78rem; color: var(--w-40); }
.text-muted-sm { font-size: .78rem; color: var(--w-40); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .section { padding: 4.5rem 0; }
  .page-head { padding: 7.5rem 0 3rem; }
  .cta-band { padding: 3.25rem 1.35rem; border-radius: 22px; }
  .prose { padding: 2.5rem 0 3.5rem; }
  .form-panel { padding: 1.5rem; }
  .btn-white, .btn-outline-w { display: block; width: 100%; text-align: center; }
  .footer-base { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ══════════════════════════════════════════════════════════════════════════
   Background patterns + scroll reveal
   ══════════════════════════════════════════════════════════════════════════ */

/* Sections carry a faint grid; the wash variant uses a dot field instead so
   consecutive bands read as distinct without introducing colour. */
.section, .page-head { position: relative; isolation: isolate; overflow: hidden; }

.section::before, .page-head::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 45%, #081533 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 45%, #081533 20%, transparent 78%);
}

.section-wash::before {
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 26px 26px;
}

/* A slow-drifting glow keeps long black pages from feeling static. */
.section::after, .page-head::after {
  content: ''; position: absolute; z-index: -1; pointer-events: none;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  top: -20%; right: -12%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.045), transparent 68%);
  animation: drift 26s ease-in-out infinite alternate;
}
.section:nth-of-type(even)::after { right: auto; left: -14%; top: 30%; animation-duration: 34s; }

@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-6%, 8%, 0) scale(1.18); }
}

/* page-head keeps its hairline separator */
.page-head { border-bottom: 1px solid var(--w-12); }

/* Hero corner stats fade up once on load */
.stat-tr, .stat-bl, .stat-br, .hero-copy {
  animation: rise .9s cubic-bezier(.16,1,.3,1) both;
}
.hero-copy { animation-delay: .35s; }
.stat-tr   { animation-delay: .45s; }
.stat-bl   { animation-delay: .55s; }
.stat-br   { animation-delay: .65s; }

.hero-word { animation: rise 1s cubic-bezier(.16,1,.3,1) both; }
.word-1 { animation-delay: .05s; }
.word-2 { animation-delay: .18s; }
.word-3 { animation-delay: .31s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Scroll reveal ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* Staggered children inside a revealed group */
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* Cards lift slightly further so the grid feels layered as it enters */
.feature-card.reveal { transform: translateY(34px) scale(.985); }
.feature-card.reveal.is-in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .feature-card.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-word, .hero-copy, .stat-tr, .stat-bl, .stat-br { animation: none !important; opacity: 1 !important; transform: none !important; }
  .section::after, .page-head::after { animation: none !important; }
}

/* ── Full-bleed video band ───────────────────────────────────────────────── */
.video-band {
  position: relative; height: 100vh; width: 100%;
  overflow: hidden; background: #081533;
  display: grid; place-items: center;
}

.video-band video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Vignette keeps the overlay type readable over any frame of the footage and
   blends the band into the black sections above and below. */
.video-band::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to bottom, #081533 0%, transparent 22%, transparent 74%, #081533 100%),
    radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, rgba(0,0,0,.55) 100%);
}

.video-band .vb-inner {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem; max-width: 60rem;
}

.video-band h2 {
  font-size: clamp(2.25rem, 8vw, 5.5rem);
  font-weight: 500; letter-spacing: -.04em; line-height: .95;
  color: #fff; margin: 0 0 1.25rem;
}

.video-band p {
  font-size: 15px; line-height: 1.5; color: var(--w-90);
  max-width: 30rem; margin: 0 auto 2rem;
}

.vb-metrics {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 2.5rem; margin-top: 3rem;
}
.vb-metrics div { text-align: center; }
.vb-metrics b { display: block; font-size: 1.75rem; font-weight: 500; letter-spacing: -.02em; line-height: 1; }
.vb-metrics span { display: block; font-size: .75rem; color: var(--w-70); margin-top: .35rem; }

@media (max-width: 767.98px) {
  .video-band { height: 80vh; }
  .vb-metrics { gap: 1.5rem; margin-top: 2rem; }
  .vb-metrics b { font-size: 1.35rem; }
}

/* ── Bento features grid ─────────────────────────────────────────────────── */
.bento { background: #0B1A3D; padding: 1.5rem 1rem; overflow: hidden; }
@media (min-width: 768px) { .bento { padding: 2.5rem; } }

.bento-head { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.5rem; }
.bento-head h2 { font-size: 28px; line-height: 1.15; font-weight: 400; letter-spacing: -.02em; color: #fff; margin: 0 0 .75rem; }
@media (min-width: 1024px) { .bento-head h2 { font-size: 44px; } }
.bento-head p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.6); max-width: 48rem; margin: 0; }
.bento-head .head-copy { max-width: 48rem; }

.liquid-glass {
  background: rgba(255,255,255,.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.1);
  position: relative; overflow: hidden;
}
.liquid-glass::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,.45) 0%, rgba(255,255,255,.15) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,.15) 80%, rgba(255,255,255,.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

.glass-btn { display: inline-block; border-radius: 999px; padding: .625rem 1.5rem; color: #fff; font-size: .875rem; }

.noise-overlay::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  opacity: .55; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

.bento-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .bento-grid { grid-template-columns: repeat(3, 1fr); } }

.bento-card {
  position: relative; overflow: hidden; border-radius: 1rem;
  background: #081533; min-height: 260px;
  display: flex; flex-direction: column;
}
.bento-card > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.bento-card > .card-inner { position: relative; z-index: 2; display: flex; flex-direction: column; height: 100%; padding: 1.25rem; }
.bento-card.tinted { background: #13285C; }
.bento-card.tall { min-height: 420px; }

.bento-col { display: grid; gap: 1rem; align-content: start; }
@media (min-width: 768px) { .bento-col { gap: 1.25rem; } }

.card-label {
  display: flex; align-items: center; gap: .5rem;
  text-transform: uppercase; letter-spacing: .22em; font-size: 11px;
  color: rgba(255,255,255,.7);
}
.card-label.center { justify-content: center; }
.card-label i { font-size: .75rem; opacity: .8; }

/* Timeline rows */
.tl { margin-top: auto; display: grid; gap: .6rem; }
.tl-row { display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: .6rem; font-size: 12px; color: rgba(255,255,255,.85); }
.tl-row .yr { color: rgba(255,255,255,.7); white-space: nowrap; }
.tl-row i { font-size: .7rem; color: rgba(255,255,255,.6); }
.tl-row .end { text-align: right; color: rgba(255,255,255,.6); white-space: nowrap; }

/* Big stat */
.bento-stat { flex: 1; display: grid; place-items: center; }
.bento-stat b { font-size: 3rem; font-weight: 300; letter-spacing: -.03em; line-height: 1; text-shadow: 0 4px 24px rgba(0,0,0,.55); }
@media (min-width: 1024px) { .bento-stat b { font-size: 88px; } }
.bento-cap { text-align: center; font-size: 13px; color: rgba(255,255,255,.85); }

/* Marquee */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); }
.marquee-track { display: flex; gap: .75rem; width: max-content; }
.animate-marquee-left { animation: marquee-left 22s linear infinite; }
.animate-marquee-right { animation: marquee-right 26s linear infinite; }
@keyframes marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.tile { height: 3.5rem; width: 3.5rem; border-radius: .75rem; display: grid; place-items: center; font-size: 1.25rem; color: #fff; flex-shrink: 0; }
@media (min-width: 768px) { .tile { height: 4rem; width: 4rem; } }

/* Quote / info card */
.bento-quote { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.85); margin: .9rem 0 1rem; }
.bento-attr { font-size: 12px; color: rgba(255,255,255,.7); }
.bento-attr strong { color: #fff; font-weight: 500; display: block; }

.reach a { display: block; color: #fff; font-size: 14px; padding: .15rem 0; }
.reach a:hover { color: rgba(255,255,255,.75); }
.icon-btn { position: absolute; top: 1.25rem; right: 1.25rem; height: 2.25rem; width: 2.25rem; border-radius: 999px; display: grid; place-items: center; color: #fff; z-index: 3; }

@media (prefers-reduced-motion: reduce) {
  .animate-marquee-left, .animate-marquee-right { animation: none !important; }
}

/* ══════════════════════════════════════════════════════════════════════════
   Blue accent layer — ties the public site to the portal's white/blue identity
   ══════════════════════════════════════════════════════════════════════════ */

:root {
  --brand: #0866FF;
  --brand-soft: rgba(8, 102, 255, .16);
  --navy-line: rgba(120, 160, 255, .16);
}

/* Primary action becomes brand blue rather than plain white */
.btn-white { background: var(--brand); color: #fff; box-shadow: 0 8px 24px var(--brand-soft); }
.btn-white:hover { background: #0A55D6; color: #fff; }

/* Icon chips pick up the brand instead of reading as flat white discs */
.feature-icon { background: linear-gradient(135deg, #0866FF, #4F9BFF); color: #fff; }
.step-num { border-color: rgba(120,160,255,.45); color: #9CC5FF; }

/* Borders across the site take a blue cast so edges read as navy, not grey */
.feature-card, .cta-band, .form-panel, .bento-card.tinted, .section-wash { border-color: var(--navy-line); }
.feature-card:hover { border-color: rgba(120,160,255,.45); }
.eyebrow, .callout { border-color: var(--navy-line); }
.callout { border-left-color: var(--brand); }

.kicker { color: #7FA6E8; }
.pill-links a:hover, .pill-links a.active { color: #9CC5FF; }
.site-footer a:hover { color: #9CC5FF; }
.prose a { color: #9CC5FF; border-bottom-color: rgba(120,160,255,.45); }
.prose a:hover { border-bottom-color: #9CC5FF; }

/* Background grid and glow tinted blue rather than neutral white */
.section::before, .page-head::before {
  background-image:
    linear-gradient(rgba(120,160,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,160,255,.055) 1px, transparent 1px);
}
.section-wash::before { background-image: radial-gradient(rgba(120,160,255,.14) 1px, transparent 1px); }
.section::after, .page-head::after {
  background: radial-gradient(circle, rgba(8,102,255,.10), transparent 68%);
}
.page-head { border-bottom-color: var(--navy-line); }

/* Form focus uses the brand */
.form-panel .form-control:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
