/* ==========================================================================
   eNoble Cloud — Design System  ·  "Bold Civic Sticker"
   Concept: ServiceNow-scale edge-to-edge color blocks + eNoble badge energy.
   Type:    Manrope (heavy display) + Public Sans (UI).
   Color:   electric blue · neon lime · hot pink · ink black · warm paper.
   Motif:   thick ink outlines · chunky hard-offset shadows · huge headlines.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand — vibrant badge palette */
  --blue-900: #06125e;   /* deepest — gradient floor */
  --blue-800: #0b1fa8;
  --blue-700: #1330d8;
  --blue-600: #1a3df0;   /* primary electric royal blue */
  --blue-500: #3a64ff;
  --blue-400: #6f93ff;

  --lime:     #c6ff1a;   /* neon chartreuse accent */
  --lime-600: #aef000;
  --lime-300: #e4ff8a;

  --pink:     #ff2d8f;   /* hot magenta accent */
  --pink-600: #ec1c7d;
  --pink-300: #ff9ac8;

  --cyan:     #25e0e0;

  --ink:      #0b0d18;   /* near-black — outlines, dark bands, body text */
  --ink-soft: #2a2d3d;

  /* legacy aliases kept so existing rules/markup resolve */
  --navy-900: var(--ink);
  --navy-800: #11154a;
  --navy-700: #1a2070;
  --brand-700: var(--blue-700);
  --brand-600: var(--blue-600);
  --brand-500: var(--blue-500);
  --spark:     var(--lime);
  --spark-soft:var(--lime-300);
  --gold:      var(--pink);

  /* Neutrals (warm paper, like the badge canvas) */
  --paper:    #fbfaf4;
  --paper-2:  #eef0ff;   /* soft blue tint band */
  --surface:  #ffffff;
  --line:     var(--ink);            /* sticker borders are ink */
  --line-2:   var(--ink);
  --line-soft: rgba(11,13,24,0.14);  /* hairlines where ink is too heavy */
  --muted:    #4a4e63;
  --muted-2:  #6a6e85;

  /* Typography */
  --font-display: "Manrope", "Public Sans", system-ui, sans-serif;
  --font-sans: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale — pushed bigger for ServiceNow-scale headlines */
  --step--1: clamp(0.83rem, 0.81rem + 0.10vw, 0.90rem);
  --step-0:  clamp(1rem, 0.96rem + 0.20vw, 1.14rem);
  --step-1:  clamp(1.22rem, 1.12rem + 0.45vw, 1.55rem);
  --step-2:  clamp(1.55rem, 1.34rem + 0.95vw, 2.25rem);
  --step-3:  clamp(2.0rem, 1.6rem + 1.7vw, 3.4rem);
  --step-4:  clamp(2.6rem, 1.95rem + 3.0vw, 4.8rem);
  --step-5:  clamp(3.1rem, 2.1rem + 4.8vw, 6.2rem);

  /* Spacing / radius */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Sticker hard-offset shadows (no blur) */
  --hard-sm:  3px 3px 0 var(--ink);
  --hard:     5px 5px 0 var(--ink);
  --hard-lg:  8px 8px 0 var(--ink);
  --hard-xl:  12px 12px 0 var(--ink);
  --hard-lime:  6px 6px 0 var(--lime);
  --hard-pink:  6px 6px 0 var(--pink);
  --hard-blue:  6px 6px 0 var(--blue-600);

  /* legacy soft shadow aliases → remap to hard so old rules still read bold */
  --shadow-sm: var(--hard-sm);
  --shadow:    var(--hard);
  --shadow-lg: var(--hard-lg);
  --shadow-spark: var(--hard-lg);

  --bd: 2.5px;           /* standard sticker border width */
  --maxw: 1200px;
  --gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--blue-600); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--lime); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-optical-sizing: auto;
  text-wrap: balance;
}
h1 { font-size: var(--step-5); line-height: 0.98; letter-spacing: -0.04em; }
h2 { font-size: var(--step-4); line-height: 1.0; letter-spacing: -0.035em; }
h3 { font-size: var(--step-2); letter-spacing: -0.03em; }
h4 { font-size: var(--step-1); letter-spacing: -0.02em; }
p  { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: var(--step--1);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 4px;
  background: var(--pink);
  border-radius: 2px;
}
.eyebrow--light { color: var(--lime); }
.eyebrow--light::before { background: var(--lime); }

.lead { font-size: var(--step-1); color: var(--muted); line-height: 1.5; font-weight: 500; }
.serif-accent { font-family: var(--font-display); font-style: normal; font-weight: 800; }
/* highlight word: lime marker swash behind the text */
.text-spark {
  color: var(--ink);
  background: linear-gradient(180deg, transparent 55%, var(--lime) 55%);
  padding: 0 .08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.text-center { text-align: center; }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 0.5rem + 2.5vw, 2.5rem); }
.container--wide { max-width: 1340px; }
.section { padding-block: clamp(3.5rem, 2.5rem + 5vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.4rem); }
.section-head.text-center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p { margin-top: 1.1rem; color: var(--muted); font-size: var(--step-1); }

.grid { display: grid; gap: var(--gap); }
.grid > * { min-width: 0; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1040px) { .cols-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 980px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4, .cols-5 { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   FULL-BLEED COLOR BANDS  (edge-to-edge ServiceNow-style blocks)
   ========================================================================== */
.bg-paper-2 { background: var(--paper-2); }
.bg-surface { background: var(--surface); }
.divider-top { border-top: var(--bd) solid var(--ink); }

/* Strong saturated bands. Text colors flip per band for contrast. */
.band-blue { background: linear-gradient(160deg, var(--blue-700), var(--blue-600) 55%, var(--blue-500)); color: #fff; }
.band-ink  { background: var(--ink); color: #fff; }
.band-lime { background: var(--lime); color: var(--ink); }
.band-pink { background: var(--pink); color: #fff; }

.band-blue h1, .band-blue h2, .band-blue h3, .band-blue h4,
.band-ink h1, .band-ink h2, .band-ink h3, .band-ink h4,
.band-pink h1, .band-pink h2, .band-pink h3, .band-pink h4 { color: #fff; }
.band-lime h1, .band-lime h2, .band-lime h3, .band-lime h4 { color: var(--ink); }

.band-blue .lead, .band-blue p, .band-blue .section-head p,
.band-ink .lead, .band-ink p, .band-ink .section-head p { color: rgba(255,255,255,.82); }
.band-pink .lead, .band-pink p, .band-pink .section-head p { color: rgba(255,255,255,.9); }
.band-lime .lead, .band-lime p, .band-lime .section-head p { color: var(--ink-soft); }

.band-blue .eyebrow, .band-ink .eyebrow { color: var(--lime); }
.band-blue .eyebrow::before, .band-ink .eyebrow::before { background: var(--lime); }
.band-pink .eyebrow { color: var(--lime); }
.band-pink .eyebrow::before { background: var(--lime); }
.band-lime .eyebrow { color: var(--blue-700); }
.band-lime .eyebrow::before { background: var(--ink); }

/* highlight swash needs a different fill on a lime band */
.band-lime .text-spark { background: linear-gradient(180deg, transparent 55%, #fff 55%); }
/* On colored/dark bands the dark highlight text must sit on a FULL lime block,
   otherwise the top of the letters falls on the dark background and is unreadable. */
.band-blue .text-spark, .band-ink .text-spark, .band-pink .text-spark,
.hero .text-spark, .page-hero .text-spark {
  color: var(--ink);
  /* inset vertically so a wrapped line's highlight never bleeds over the line above,
     while still covering the glyphs for full readability */
  background: linear-gradient(180deg, transparent 9%, var(--lime) 9%, var(--lime) 91%, transparent 91%);
  padding: 0 .06em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Decorative ambient blobs (kept soft — separate from the sticker motif) */
.glow { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; pointer-events: none; z-index: 0; }
.section > .container { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue-600);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-sans);
  font-weight: 800; font-size: var(--step-0);
  line-height: 1; letter-spacing: -.01em;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: var(--bd) solid var(--ink);
  box-shadow: var(--hard);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .2s;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform .2s var(--ease); }
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }

.btn--primary { background: var(--blue-600); color: #fff; }
.btn--ghost { background: var(--surface); color: var(--ink); }
.btn--ghost:hover { background: var(--lime); }
.btn--light { background: #fff; color: var(--ink); }
.btn--spark { background: var(--lime); color: var(--ink); }   /* lime CTA */
.btn--pink  { background: var(--pink); color: #fff; }
.btn--lg { padding: 1.15rem 2rem; font-size: var(--step-1); }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 800; color: var(--blue-600);
  text-decoration: underline; text-decoration-thickness: 2.5px; text-underline-offset: 4px;
  text-decoration-color: var(--lime);
  transition: gap .2s var(--ease), color .2s;
}
.link-arrow svg { width: 1.05em; height: 1.05em; transition: transform .2s var(--ease); }
.link-arrow:hover { color: var(--pink); }
.link-arrow:hover svg { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

/* ---------- Badges / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; font-size: var(--step--1);
  padding: .45rem .9rem; border-radius: 999px;
  background: var(--lime); color: var(--ink);
  border: var(--bd) solid var(--ink);
  box-shadow: var(--hard-sm);
  letter-spacing: .01em;
}
.pill--light { background: var(--pink); color: #fff; }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }
.pill--light .dot { background: #fff; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  font-size: var(--step--1);
  font-weight: 600;
}
.topbar .container { display: flex; align-items: center; justify-content: center; gap: 1rem; min-height: 40px; text-align: center; }
.topbar a { color: var(--lime); font-weight: 800; display: inline-flex; align-items: center; gap: .35rem; }
.topbar a svg { width: 13px; height: 13px; }
.topbar a:hover { text-decoration: underline; }
@media (max-width: 620px){ .topbar { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: var(--bd) solid var(--ink);
  transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: 0 6px 0 -2px rgba(11,13,24,.12); }
.nav { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }

/* Brand */
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.03em; color: var(--ink); flex-shrink: 0; }
.brand .mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand b { font-weight: 800; }
.brand .e { color: var(--blue-600); }

/* Primary nav */
.nav-menu { display: flex; align-items: center; gap: .15rem; margin-left: .5rem; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-weight: 700; font-size: .98rem; color: var(--ink);
  padding: .55rem .8rem; border-radius: 10px;
  border: 2px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
}
.nav-link:hover, .nav-item.is-open .nav-link { color: var(--ink); background: var(--lime); border-color: var(--ink); }
.nav-link .chev { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.nav-item.is-open .nav-link .chev { transform: rotate(180deg); }
.nav-link[aria-current="page"] { color: var(--blue-600); }

.nav-spacer { flex: 1; }
.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-cta .btn { font-size: .9rem; padding: .7rem 1.15rem; white-space: nowrap; }
.nav-login { font-weight: 700; font-size: .95rem; color: var(--ink); padding: .5rem .4rem; }
.nav-login:hover { color: var(--blue-600); }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(620px, 90vw);
  background: var(--surface);
  border: var(--bd) solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--hard-lg);
  padding: 1.1rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 120;
}
.nav-item.is-open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega::before { content:""; position:absolute; top:-10px; left:50%; transform:translateX(-50%) rotate(45deg); width:16px; height:16px; background:var(--surface); border-left:var(--bd) solid var(--ink); border-top:var(--bd) solid var(--ink); border-radius:3px; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; }
.mega-link { display: flex; gap: .75rem; align-items: center; padding: .7rem .8rem; border-radius: 14px; border: 2px solid transparent; transition: background .2s, border-color .2s, transform .2s; }
.mega-link:hover { background: var(--paper-2); border-color: var(--ink); transform: translate(1px,1px); }
.mega-ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--pink); color: #fff; border: 2.5px solid var(--ink); box-shadow: var(--hard-sm); }
.mega-ico svg { stroke-width: 2.2; }
.mega-ico svg { width: 19px; height: 19px; }
.mega-link b { display: block; font-weight: 800; font-size: .96rem; color: var(--ink); line-height: 1.3; }
.mega-link span { display: block; font-size: .85rem; color: var(--muted); line-height: 1.4; margin-top: 1px; }
.mega-foot { margin-top: .6rem; padding: .9rem 1rem; border-radius: 16px; background: var(--ink); color: #fff; border: 2px solid var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.mega-foot b { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; }
.mega-foot-btn { color: #fff !important; font-weight: 800; font-size: 1.0rem; letter-spacing: 0; box-shadow: var(--hard-sm); padding: .6rem 1rem; }
.mega-foot-btn svg { width: 1.05em; height: 1.05em; }
.mega-foot span { font-size: .85rem; color: rgba(255,255,255,.72); }

/* Mobile toggle */
.nav-toggle { display: none; width: 48px; height: 48px; border-radius: 12px; border: var(--bd) solid var(--ink); background: var(--lime); align-items: center; justify-content: center; flex-direction: column; gap: 5px; box-shadow: var(--hard-sm); }
.nav-toggle span { width: 20px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-menu, .nav-cta .nav-login, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-spacer { flex: 1; }
  .nav-cta .btn--header-mobile { display: inline-flex; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; top: 0; width: min(420px, 100vw); height: 100dvh;
  background: var(--paper); z-index: 200; transform: translateX(100%);
  transition: transform .4s var(--ease); overflow-y: auto;
  border-left: var(--bd) solid var(--ink); padding: 1.2rem 1.3rem 3rem;
}
.nav-open .mobile-nav { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding-block: .6rem 1.2rem; }
.mobile-close { width: 46px; height: 46px; border-radius: 12px; border: var(--bd) solid var(--ink); background: var(--surface); display: grid; place-items: center; box-shadow: var(--hard-sm); }
.m-section { border-bottom: 2px solid var(--ink); }
.m-acc-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1rem .2rem; font-weight: 800; font-size: 1.1rem; color: var(--ink); background: none; border: none; font-family: var(--font-sans); }
.m-acc-trigger .chev { width: 18px; height: 18px; transition: transform .3s var(--ease); color: var(--blue-600); }
.m-section.open .m-acc-trigger .chev { transform: rotate(180deg); }
.m-acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.m-section.open .m-acc-panel { grid-template-rows: 1fr; }
.m-acc-inner { overflow: hidden; }
.m-acc-panel a { display: block; padding: .6rem .2rem .6rem 1rem; color: var(--muted); font-weight: 700; border-left: 3px solid var(--lime); margin-left: .2rem; }
.m-acc-panel a:hover { color: var(--blue-600); border-color: var(--pink); }
.m-link { display: block; padding: 1rem .2rem; font-weight: 800; font-size: 1.1rem; color: var(--ink); border-bottom: 2px solid var(--ink); }
.mobile-nav .btn { margin-top: 1.4rem; }
.scrim { position: fixed; inset: 0; background: rgba(11,13,24,.5); z-index: 150; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.nav-open .scrim { opacity: 1; visibility: visible; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding-top: clamp(3rem, 2rem + 4vw, 5.5rem);
  padding-bottom: clamp(3rem, 2.5rem + 4vw, 6rem);
  overflow: hidden;
  background: linear-gradient(155deg, var(--blue-700), var(--blue-600) 52%, var(--blue-500));
  color: #fff;
  border-bottom: var(--bd) solid var(--ink);
}
.hero h1, .hero h2 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.88); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 1rem + 3vw, 4rem); align-items: center; }
.hero-grid > *, .split > * { min-width: 0; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.hero h1 { margin-block: 1.2rem 0; }
.hero .lead { margin-top: 1.4rem; max-width: 38ch; }
.hero .btn-row { margin-top: 2rem; }
.hero-trust { margin-top: 2.2rem; display: flex; align-items: center; gap: .8rem; color: rgba(255,255,255,.9); font-size: var(--step--1); font-weight: 700; }
.hero-trust svg { width: 20px; height: 20px; color: var(--lime); flex-shrink: 0; }
.hero .text-spark { color: var(--ink); }
.hero .pill { background: var(--lime); color: var(--ink); }

/* Playful sticker doodles in the hero background */
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  background:
    radial-gradient(60% 60% at 88% 8%, rgba(255,45,143,.35), transparent 60%),
    radial-gradient(55% 55% at 6% 100%, rgba(37,224,224,.22), transparent 62%);
}
.hero-bg-grid::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.16) 2.5px, transparent 2.5px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(circle at 80% 20%, #000, transparent 70%);
  mask-image: radial-gradient(circle at 80% 20%, #000, transparent 70%);
  opacity: .5;
}

/* ---------- Dashboard mockup (recolored sticker style) ---------- */
.mock {
  position: relative; background: var(--surface); border: var(--bd) solid var(--ink);
  border-radius: var(--radius-lg); box-shadow: var(--hard-xl); padding: 1.1rem;
}
.mock-bar { display: flex; align-items: center; gap: .8rem; padding: .2rem .3rem .9rem; border-bottom: 2px solid var(--ink); margin-bottom: 1rem; }
.mock-dots { display: flex; gap: 6px; }
.mock-dots i { width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid var(--ink); }
.mock-dots i:nth-child(1){ background:var(--pink);} .mock-dots i:nth-child(2){ background:var(--lime);} .mock-dots i:nth-child(3){ background:var(--cyan);}
.mock-title { font-weight: 800; font-size: .82rem; color: var(--ink); letter-spacing: -.01em; }
.mock-pill { margin-left: auto; font-size: .68rem; font-weight: 800; color: var(--ink); background: var(--lime); padding: .28rem .6rem; border-radius: 999px; border: 2px solid var(--ink); display:inline-flex; align-items:center; gap:.3rem; }
.mock-pill .dot { width:6px;height:6px;border-radius:50%;background:var(--ink); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:.3 } }
.mock-row { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: .7rem; margin-bottom: .8rem; }
.mock-stat { min-width: 0; background: var(--paper); border: 2px solid var(--ink); border-radius: 12px; padding: .7rem .8rem; }
.mock-stat .k { font-size: .6rem; font-weight: 800; color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; }
.mock-stat .v { font-family: var(--font-display); font-size: 1.55rem; color: var(--blue-700); font-weight: 800; line-height: 1.1; margin-top: .2rem; }
.mock-stat .v small { font-size: .8rem; color: var(--pink); font-family: var(--font-sans); }
.mock-chart { background: var(--paper); border: 2px solid var(--ink); border-radius: 12px; padding: .9rem; }
.mock-chart .lbl { display:flex; justify-content:space-between; font-size:.68rem; font-weight:800; color:var(--ink); margin-bottom:.7rem; }
.mock-chart .lbl .text-spark { background: var(--lime); padding: 0 .3em; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 88px; }
.bars i { flex: 1; border-radius: 5px 5px 0 0; background: var(--blue-600); border: 2px solid var(--ink); border-bottom: none; transform-origin: bottom; animation: grow 1s var(--ease) both; }
.bars i:nth-child(odd){ background: var(--lime); }
@keyframes grow { from { transform: scaleY(0); } }
.mock-list { margin-top:.8rem; display:grid; gap:.5rem; }
.mock-li { display:flex; align-items:center; gap:.6rem; background:var(--paper); border:2px solid var(--ink); border-radius:11px; padding:.55rem .7rem; font-size:.74rem; font-weight:700; color:var(--ink); }
.mock-li .ic { width:24px;height:24px;border-radius:7px;display:grid;place-items:center;flex-shrink:0; border:2px solid var(--ink); }
.mock-li .ic.ok{ background:var(--lime); color:var(--ink);} .mock-li .ic.warn{ background:var(--pink); color:#fff;}
.mock-li .ic svg{ width:13px;height:13px;}
.mock-li .tag { margin-left:auto; font-size:.62rem; font-weight:800; padding:.2rem .5rem; border-radius:999px; border:1.5px solid var(--ink); }
.mock-li .tag.t-ok{ background:var(--lime); color:var(--ink);} .mock-li .tag.t-warn{ background:var(--pink); color:#fff;}

.mock-float {
  position: absolute; right: -22px; bottom: 40px; z-index: 3;
  background: var(--ink); color:#fff; border-radius: 16px; padding: .8rem 1rem;
  border: 2.5px solid var(--ink); box-shadow: var(--hard-lime); display:flex; align-items:center; gap:.7rem; max-width: 240px;
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }
.mock-float .ai { width:36px;height:36px;border-radius:10px;background:var(--lime); display:grid;place-items:center;flex-shrink:0; border:2px solid #000;}
.mock-float .ai svg{ width:18px;height:18px;color:var(--ink);}
.mock-float b { display:block; font-size:.8rem; font-weight:800; }
.mock-float span { display:block; font-size:.68rem; color:rgba(255,255,255,.7); }
@media (max-width:480px){ .mock-float{ display:none; } }

/* ==========================================================================
   LOGO STRIP
   ========================================================================== */
.logos { text-align: center; }
.logos p { font-weight: 800; font-size: var(--step--1); letter-spacing: .1em; color: var(--muted); text-transform: uppercase; margin-bottom: 1.6rem; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.8rem, 1rem + 4vw, 4rem); }
.logo-row span { font-weight: 800; font-size: 1.25rem; color: var(--ink); opacity: .55; letter-spacing: -.02em; transition: opacity .3s; display:inline-flex; align-items:center; gap:.5rem; }
.logo-row span:hover { opacity: 1; }
.logo-row span svg { width: 22px; height: 22px; }
.logo-row img { height: 30px; width: auto; max-width: 160px; object-fit: contain; opacity: .75; transition: opacity .3s var(--ease), transform .3s var(--ease); filter: grayscale(1); }
.logo-row img:hover { opacity: 1; transform: translateY(-3px); filter: grayscale(0); }
/* logos sitting on a dark band */
.band-blue .logos p, .band-ink .logos p { color: rgba(255,255,255,.7); }
.band-blue .logo-row img, .band-ink .logo-row img { filter: grayscale(1) brightness(0) invert(1); opacity: .8; }
.band-blue .logo-row img:hover, .band-ink .logo-row img:hover { filter: none; opacity: 1; }

/* brand wordmark used in header / footer / mobile drawer */
.brand-logo { height: 38px; width: auto; display: block; }
.site-header .brand-logo { height: 52px; }
.brand-logo--light { filter: brightness(0) invert(1); }

/* ==========================================================================
   CARDS
   ========================================================================== */
.card {
  background: var(--surface); border: var(--bd) solid var(--ink); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 1.1rem + 1vw, 2rem); position: relative; overflow: hidden;
  box-shadow: var(--hard);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.card:has(.link-arrow), .card.is-clickable { cursor: pointer; }
.card:hover { transform: translate(-3px,-3px); box-shadow: var(--hard-lg); }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--blue-600); color: #fff; border: 2.5px solid var(--ink);
  box-shadow: var(--hard-sm);
  transition: transform .25s var(--ease);
}
.card:hover .ico { transform: rotate(-5deg) scale(1.06); }
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: var(--step-1); margin-bottom: .55rem; color: var(--ink); }
.card p { color: var(--muted); font-size: .98rem; }
.card .link-arrow { margin-top: 1.1rem; font-size: .95rem; }
.card:hover .link-arrow { gap: .7rem; }
.card:hover .link-arrow svg { transform: translateX(4px); }
/* whole-card clickable: stretch the card's link over the entire surface */
.card .link-arrow::after { content: ""; position: absolute; inset: 0; z-index: 3; border-radius: inherit; }

/* accent card = ink/black sticker with lime icon */
.card--accent { background: var(--ink); border-color: var(--ink); box-shadow: var(--hard-lime); }
.card--accent h3 { color: #fff; }
.card--accent p { color: rgba(255,255,255,.78); }
.card--accent .ico { background: var(--lime); color: var(--ink); }
.card--accent .checklist li { color: rgba(255,255,255,.9); }
.card--accent .checklist li svg { color: var(--lime); }
.card--accent .link-arrow { color: var(--lime); text-decoration-color: var(--pink); }
.serve-grid .card h3 { font-size: 1rem; letter-spacing: -0.01em; line-height: 1.25; }
.card-tag { position:absolute; top:1.1rem; right:1.1rem; font-size:.64rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:var(--ink); background:var(--lime); padding:.25rem .6rem; border-radius:999px; border:2px solid var(--ink); }

/* Feature list with check icons */
.checklist { display: grid; gap: .85rem; margin-top: 1.4rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 600; color: var(--ink); }
.checklist li svg { flex-shrink: 0; width: 24px; height: 24px; color: var(--blue-600); margin-top: 1px; }
.checklist li b { font-weight: 800; }
.checklist--light li { color: rgba(255,255,255,.9); }
.checklist--light li svg { color: var(--lime); }

/* Feature row (icon + text), compact */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature .ico { width: 50px; height: 50px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center; background: var(--blue-600); color: #fff; border: 2.5px solid var(--ink); box-shadow: var(--hard-sm); }
.feature .ico svg { width: 24px; height: 24px; }
.feature h4 { font-family: var(--font-sans); font-weight: 800; font-size: 1.1rem; color: var(--ink); letter-spacing: -.01em; margin-bottom: .25rem; }
.feature p { color: var(--muted); font-size: .95rem; }

/* ==========================================================================
   SPLIT (two-column content + visual)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.split--reverse .split-media { order: -1; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } .split--reverse .split-media { order: 0; } }
.split-media { position: relative; }

.panel {
  background: var(--surface); border: var(--bd) solid var(--ink); border-radius: var(--radius-lg);
  padding: 1.6rem; box-shadow: var(--hard);
}
.panel--dark { background: var(--ink); border-color: var(--ink); color:#fff; box-shadow: var(--hard-lime); }
.panel--dark h3 { color: #fff; }

/* ==========================================================================
   STATS / BENEFITS  (ServiceNow-style big numbers)
   ========================================================================== */
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: var(--step-4); font-weight: 800; color: var(--blue-600); line-height: 1; letter-spacing: -.04em; }
.stat .lbl { margin-top: .6rem; color: var(--muted); font-weight: 700; font-size: .98rem; }
.stats-band--dark .stat .num, .band-blue .stat .num, .band-ink .stat .num { color: var(--lime); }
.stats-band--dark .stat .lbl, .band-blue .stat .lbl, .band-ink .stat .lbl { color: rgba(255,255,255,.78); }
.band-lime .stat .num { color: var(--blue-700); }
.band-lime .stat .lbl { color: var(--ink-soft); }

/* Benefit big cards */
.benefit { padding: 1.8rem; border-radius: var(--radius-lg); background: var(--surface); border: var(--bd) solid var(--ink); position: relative; overflow: hidden; box-shadow: var(--hard); transition: transform .18s var(--ease), box-shadow .18s; }
.benefit:hover { transform: translate(-3px,-3px); box-shadow: var(--hard-lg); }
.benefit .n { font-family: var(--font-display); font-size: 2.8rem; color: var(--pink); font-weight: 800; line-height: 1; -webkit-text-stroke: 0; }
.benefit h4 { font-family: var(--font-sans); font-weight: 800; font-size: 1.2rem; margin: .5rem 0 .4rem; color: var(--ink); }
.benefit p { color: var(--muted); font-size: .96rem; }

/* ==========================================================================
   DARK SECTIONS / AI BAND  → now bold electric-blue / ink bands
   ========================================================================== */
.dark { background: var(--ink); color: #fff; position: relative; overflow: hidden; border-block: var(--bd) solid var(--ink); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark .lead, .dark p { color: rgba(255,255,255,.78); }
.dark .section-head p { color: rgba(255,255,255,.78); }
.dark .eyebrow { color: var(--lime); }
.dark .eyebrow::before { background: var(--lime); }
.dark-mesh::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 1;
  background:
    radial-gradient(45% 55% at 10% 6%, rgba(26,61,240,.7), transparent 65%),
    radial-gradient(45% 55% at 90% 94%, rgba(255,45,143,.42), transparent 66%),
    radial-gradient(40% 50% at 82% 12%, rgba(37,224,224,.3), transparent 68%);
}
.dark-mesh::after {
  content:""; position:absolute; inset:0; z-index:0; opacity:.5;
  background-image: radial-gradient(rgba(255,255,255,.12) 2px, transparent 2px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000, transparent 80%);
  mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000, transparent 80%);
}
.dark .container { position: relative; z-index: 1; }
/* white sticker cards pop on the dark band (ServiceNow style) */
.dark .card { background: var(--surface); border-color: var(--ink); box-shadow: var(--hard-lime); }
.dark .card:hover { box-shadow: 8px 8px 0 var(--lime); }
.dark .card h3 { color: var(--ink); }
.dark .card p { color: var(--muted); }
.dark .card .ico { background: var(--blue-600); color: #fff; }
.dark .card h4 { color: var(--ink) !important; }
.dark .feature h4 { color:#fff; }
.dark .feature p { color: rgba(255,255,255,.78); }
.dark .feature .ico { background: var(--lime); color: var(--ink); }

/* ==========================================================================
   PROCESS / FLOW
   ========================================================================== */
.flow { display: flex; flex-wrap: wrap; align-items: stretch; gap: 1rem; counter-reset: step; }
.flow-step {
  flex: 1 1 150px; position: relative; background: var(--surface); border: var(--bd) solid var(--ink);
  border-radius: var(--radius); padding: 1.3rem 1.2rem; min-width: 140px; box-shadow: var(--hard-sm);
}
.flow-step .s { display:inline-grid; place-items:center; width:34px; height:34px; border-radius:50%; background:var(--lime); color:var(--ink); font-weight:800; font-size:.9rem; margin-bottom:.7rem; border:2.5px solid var(--ink); }
.flow-step h4 { font-family: var(--font-sans); font-weight: 800; font-size: 1.02rem; color: var(--ink); }
.flow-step::after { content:"→"; position:absolute; right:-.85rem; top:50%; transform:translateY(-50%); color:var(--ink); font-weight:800; z-index:2; font-size:1.2rem; }
.flow-step:last-child::after { display:none; }
@media (max-width:720px){ .flow-step{ flex-basis:100%; } .flow-step::after{ right:50%; top:auto; bottom:-1.15rem; transform:translateX(50%) rotate(90deg); } }
.dark .flow-step { background: var(--surface); border-color: var(--ink); }
.dark .flow-step h4 { color: var(--ink); }
.dark .flow-step::after { color: var(--lime); }

/* ==========================================================================
   PARTNERS / INTEGRATION LOGOS
   ========================================================================== */
.integration { display:flex; align-items:center; gap:1rem; background:var(--surface); border:var(--bd) solid var(--ink); border-radius:var(--radius); padding:1.1rem 1.2rem; box-shadow:var(--hard-sm); transition:transform .18s var(--ease), box-shadow .18s; }
.integration:hover{ transform:translate(-3px,-3px); box-shadow:var(--hard); }
.integration .logo-box{ min-width:66px;height:60px;padding:0 .85rem;border-radius:13px;background:var(--paper-2); border:2px solid var(--ink); display:grid;place-items:center;flex-shrink:0;font-weight:800;color:var(--blue-700); font-size:1.1rem; }
.integration .logo-box img{ max-height:30px;max-width:120px;width:auto;object-fit:contain; }
.integration b{ display:block;font-weight:800;font-size:1.04rem;color:var(--ink);}
.integration span{ display:block;font-size:.85rem;color:var(--muted); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; border: var(--bd) solid var(--ink); border-radius: var(--radius-xl); padding: clamp(2.5rem, 2rem + 4vw, 5rem); text-align: center; background: var(--lime); color: var(--ink); box-shadow: var(--hard-xl); }
.cta-band::before { content:""; position:absolute; inset:0; opacity:.5; background: radial-gradient(45% 70% at 85% 8%, rgba(255,45,143,.35), transparent 60%), radial-gradient(45% 80% at 8% 100%, rgba(26,61,240,.22), transparent 62%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--ink); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: var(--ink-soft); margin: 1rem auto 0; max-width: 52ch; font-size: var(--step-1); font-weight: 500; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }
.cta-band .pill { background: var(--ink); color: #fff; }
.cta-band .pill .dot { background: var(--lime); }

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.form-card { background: var(--surface); border: var(--bd) solid var(--ink); border-radius: var(--radius-lg); padding: clamp(1.6rem, 1.2rem + 1.5vw, 2.6rem); box-shadow: var(--hard-lg); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 800; font-size: .92rem; color: var(--ink); margin-bottom: .45rem; }
.field label .req { color: var(--pink); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border-radius: 12px; border: 2.5px solid var(--ink);
  background: var(--paper); transition: box-shadow .15s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; background: #fff; box-shadow: var(--hard-sm); }
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: .8rem; color: var(--muted-2); margin-top: .35rem; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .3rem; }
.form-success { display: none; text-align: center; padding: 1rem; }
.form-success.show { display: block; }
.form-success .ok-ic { width: 66px; height: 66px; border-radius: 50%; background: var(--lime); color: var(--ink); border: 2.5px solid var(--ink); display: grid; place-items: center; margin: 0 auto 1rem; box-shadow: var(--hard-sm); }
.form-success .ok-ic svg { width: 32px; height: 32px; }

.contact-aside li { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 0; border-bottom: 2px solid var(--line-soft); }
.contact-aside li:last-child { border-bottom: none; }
.contact-aside .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-600); color: #fff; border: 2.5px solid var(--ink); display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--hard-sm); }
.contact-aside .ico svg { width: 20px; height: 20px; }
.contact-aside b { display: block; color: var(--ink); font-weight: 800; }
.contact-aside span { color: var(--muted); font-size: .95rem; }
/* contact aside sitting on a colored hero/band → light text + lime icon */
.page-hero .contact-aside b, .dark .contact-aside b, .band-blue .contact-aside b, .band-ink .contact-aside b { color: #fff; }
.page-hero .contact-aside span, .dark .contact-aside span, .band-blue .contact-aside span, .band-ink .contact-aside span { color: rgba(255,255,255,.78); }
.page-hero .contact-aside li, .dark .contact-aside li, .band-blue .contact-aside li, .band-ink .contact-aside li { border-bottom-color: rgba(255,255,255,.18); }
.page-hero .contact-aside .ico, .dark .contact-aside .ico, .band-blue .contact-aside .ico, .band-ink .contact-aside .ico { background: var(--lime); color: var(--ink); }

/* ==========================================================================
   STOCK PHOTO PLACEHOLDERS
   ========================================================================== */
.photo-fig { margin: 0; }
.photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: var(--bd) solid var(--ink); box-shadow: var(--hard);
  aspect-ratio: 4 / 3; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--blue-500), var(--blue-700));
}
.photo::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.18) 2px, transparent 2px); background-size: 26px 26px; opacity: .5; }
.photo-inner { position: relative; z-index: 1; text-align: center; padding: 1.4rem; }
.photo-inner svg { width: 46px; height: 46px; color: var(--lime); margin: 0 auto .7rem; }
.photo-inner .lbl { font-weight: 800; font-size: .98rem; color: #fff; max-width: 24ch; margin-inline: auto; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo:has(img) { background: var(--ink); }
.photo:has(img)::after { display: none; }
/* cohesive brand treatment: subtle desaturate + blue duotone wash */
.photo:has(img) img { filter: grayscale(.25) saturate(.95) contrast(.98); transition: filter .4s var(--ease); }
.photo:has(img)::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(155deg, rgba(26,61,240,.28), rgba(255,45,143,.18));
  mix-blend-mode: multiply;
}
.photo:has(img):hover img { filter: none; }
.photo-lic {
  position: absolute; z-index: 2; top: .8rem; left: .8rem;
  font-size: .64rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  background: var(--lime); color: var(--ink); padding: .32rem .66rem; border-radius: 999px;
  border: 2px solid var(--ink);
  display: inline-flex; align-items: center; gap: .4rem;
}
.photo-lic::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.photo-fig figcaption { margin-top: .7rem; font-size: .82rem; color: var(--muted); line-height: 1.5; }
.photo-fig figcaption a { color: var(--blue-600); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
/* captions on a colored/dark hero band need light text */
.page-hero .photo-fig figcaption, .dark .photo-fig figcaption,
.band-blue .photo-fig figcaption, .band-ink .photo-fig figcaption { color: rgba(255,255,255,.78); }

/* Badge sticker in place of a stock photo: contain the art on a clean white
   panel (no duotone/crop) so the bold badge art pops inside the sticker frame. */
.photo--badge, .photo--badge:has(img) { background: #fff; }
.photo--badge::after { display: none; }
.photo--badge:has(img)::before { display: none; }
.photo--badge img { object-fit: contain; filter: none !important; padding: clamp(.6rem, .3rem + 1.5vw, 1.4rem); }
.photo--badge:has(img):hover img { filter: none; transform: rotate(-1.5deg) scale(1.02); transition: transform .3s var(--ease); }

/* Transparent circular badges: show the bare sticker — no frame, box, clip,
   or shadow. A playful wobble brings it to life on hover. */
.hero-photo .photo--round, .photo--round { aspect-ratio: 1 / 1; height: auto; background: transparent; border: none; box-shadow: none; overflow: visible; }
.photo--round::after, .photo--round:has(img)::before { display: none; }
/* Higher specificity than `.photo:has(img) img` so the base grayscale/duotone
   filter never bleeds onto a badge. Clip to a circle to mask the faint white
   matte left in the PNG corners (a clean re-export would make this unnecessary). */
.photo.photo--round img {
  width: 100%; height: 100%; object-fit: contain; padding: 0;
  filter: none;
  border-radius: 50%;
  transform: scale(1.04);
  transition: transform .3s var(--ease);
}
.photo.photo--round:hover img { animation: badge-wobble 1s var(--ease) infinite; }
@keyframes badge-wobble {
  0%, 100% { transform: rotate(-5deg) scale(1.06); }
  50%      { transform: rotate(5deg)  scale(1.10); }
}
@media (prefers-reduced-motion: reduce) {
  .photo.photo--round:hover img { animation: none; transform: scale(1.06); }
}

/* Benefit cards inside dark/colored bands */
.dark .benefit, .band-blue .benefit, .band-ink .benefit { background: var(--surface); border-color: var(--ink); box-shadow: var(--hard-lime); }
.dark .benefit h4, .band-blue .benefit h4, .band-ink .benefit h4 { color: var(--ink); }
.dark .benefit p, .band-blue .benefit p, .band-ink .benefit p { color: var(--muted); }
.dark .benefit .n, .band-blue .benefit .n, .band-ink .benefit .n { color: var(--pink); }

/* Page hero with a 2/3 content + 1/3 image split */
.hero-split { display: grid; grid-template-columns: 1.85fr 1fr; gap: clamp(1.6rem, 1rem + 2.5vw, 3rem); align-items: center; }
.hero-split > * { min-width: 0; }
.hero-photo .photo { aspect-ratio: 4 / 5; height: 100%; }
@media (max-width: 860px) { .hero-split { grid-template-columns: 1fr; } .hero-photo .photo { aspect-ratio: 16 / 9; } }

/* ==========================================================================
   PROSE (legal / long-form)
   ========================================================================== */
.prose { max-width: 800px; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-size: var(--step-2); margin-top: 2.6rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.8rem; color: var(--ink); }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); line-height: 1.75; }
.prose ul { display: grid; gap: .7rem; margin-left: .2rem; }
.prose ul li { position: relative; padding-left: 1.7rem; color: var(--ink-soft); line-height: 1.7; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 10px; height: 10px; border-radius: 3px; background: var(--lime); border: 2px solid var(--ink); }
.prose ul li b { color: var(--ink); }
.prose .eff-date { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; color: var(--ink); background: var(--lime); border: 2.5px solid var(--ink); padding: .35rem .8rem; border-radius: 999px; font-size: var(--step--1); box-shadow: var(--hard-sm); }
.prose a { color: var(--blue-600); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-top: clamp(3rem, 2rem + 3vw, 5rem); position: relative; overflow: hidden; border-top: var(--bd) solid var(--ink); }
.site-footer::before { content:""; position:absolute; top:0; left:0; right:0; height:6px; background:linear-gradient(90deg, var(--blue-600), var(--lime) 40%, var(--pink) 75%, var(--cyan)); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 2rem; padding-bottom: 3rem; }
@media (max-width: 940px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand .e { color: var(--lime); }
.footer-brand p { color: rgba(255,255,255,.74); max-width: 32ch; font-size: 1.06rem; line-height: 1.6; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 11px; border: 2px solid rgba(255,255,255,.25); display: grid; place-items: center; color: rgba(255,255,255,.8); transition: background .2s, color .2s, border-color .2s, transform .2s; }
.footer-social a:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); transform: translate(-2px,-2px); box-shadow: 3px 3px 0 rgba(255,255,255,.25); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h5 { font-family: var(--font-sans); font-weight: 800; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; }
.footer-col li { margin-bottom: .65rem; }
.footer-col a { color: rgba(255,255,255,.74); font-size: 1.04rem; transition: color .2s, padding .2s; }
.footer-col a:hover { color: var(--lime); padding-left: 4px; }
.footer-bottom { border-top: 2px solid rgba(255,255,255,.14); padding-block: 1.6rem 2rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; font-size: .95rem; color: rgba(255,255,255,.74); }
.footer-bottom a:hover { color: var(--lime); }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 1.4rem; }

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero { position: relative; padding-top: clamp(2.8rem, 2rem + 3vw, 4.5rem); padding-bottom: clamp(2.5rem, 2rem + 3vw, 4rem); overflow: hidden; background: linear-gradient(155deg, var(--blue-700), var(--blue-600) 55%, var(--blue-500)); color: #fff; border-bottom: var(--bd) solid var(--ink); }
.page-hero h1, .page-hero h2 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,.88); }
.page-hero .breadcrumb { font-size: var(--step--1); font-weight: 700; color: rgba(255,255,255,.75); margin-bottom: 1.2rem; display: flex; gap: .5rem; align-items: center; }
.page-hero .breadcrumb a:hover { color: var(--lime); }
.page-hero .breadcrumb .sep { color: rgba(255,255,255,.4); }
.page-hero h1 { font-size: var(--step-4); max-width: 18ch; }
.page-hero .lead { margin-top: 1.3rem; max-width: 56ch; }
.page-hero .btn-row { margin-top: 1.9rem; }
.page-hero .eyebrow { color: var(--lime); }
.page-hero .eyebrow::before { background: var(--lime); }
.page-hero .pill { background: var(--lime); color: var(--ink); }
.page-hero .text-spark { color: var(--ink); }
/* keep an opt-out for any page-hero explicitly marked .dark (same look now) */
.page-hero.dark .breadcrumb { color: rgba(255,255,255,.75); }
.page-hero.dark .breadcrumb a:hover { color: var(--lime); }

/* ==========================================================================
   ANIMATIONS (reveal on scroll)
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; } }

/* hero load stagger */
.hero [data-load] { opacity: 0; transform: translateY(20px); animation: heroIn .8s var(--ease) forwards; }
.hero [data-load="1"] { animation-delay: .05s; }
.hero [data-load="2"] { animation-delay: .15s; }
.hero [data-load="3"] { animation-delay: .25s; }
.hero [data-load="4"] { animation-delay: .35s; }
.hero [data-load="5"] { animation-delay: .45s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero [data-load] { opacity: 1; transform: none; animation: none; } }

/* utility */
.mt-0{margin-top:0}.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.6rem}.mt-4{margin-top:2.4rem}
.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.6rem}
.hidden{display:none}
