/* Fonts load from HTML (<link> + preconnect) — @import here blocks first paint */

:root {
  color-scheme: dark;

  --bg: #05080c;
  --bg-2: #0a1018;
  --text: #eef2f7;
  --muted: #93a3b8;
  --surface: rgba(16, 24, 34, 0.72);
  --card-bg: rgba(12, 18, 28, 0.78);
  --border: rgba(255, 255, 255, 0.09);
  --border-glow: rgba(46, 255, 120, 0.45);
  --brand: #5dff4a;
  --brand-dark: #2ee86a;
  /* Wordmark (inline SVG) — dark UI */
  --logo-sure: #eef2f7;
  --logo-rx: #5dff4a;
  --accent-cyan: #22d3ee;
  /* Ice blue (calmer than violet) — token name kept for compatibility */
  --accent-violet: #7ebfe9;
  /* Rebate Shield / fintech accents (Tailwind success) */
  --rebate-success: #10b981;
  --rebate-success-ink: #042f2e;

  /* Unified spectrum — lime / cyan / ice */
  --gradient-spectrum-h: linear-gradient(90deg, var(--brand-dark), var(--accent-cyan), var(--accent-violet));
  --gradient-spectrum-h-soft: linear-gradient(
    90deg,
    rgba(46, 232, 106, 0.85),
    rgba(34, 211, 238, 0.85),
    rgba(126, 191, 233, 0.85)
  );
  --gradient-spectrum-v-1: linear-gradient(180deg, var(--brand), var(--accent-cyan));
  --gradient-spectrum-v-2: linear-gradient(180deg, var(--accent-cyan), var(--accent-violet));
  --gradient-spectrum-v-3: linear-gradient(180deg, var(--accent-violet), var(--brand-dark));
  /* Calmer mesh — lower saturation / opacity */
  --gradient-mesh-1: radial-gradient(ellipse 90% 55% at 15% -8%, rgba(94, 255, 120, 0.11), transparent 55%);
  --gradient-mesh-2: radial-gradient(ellipse 70% 45% at 95% 5%, rgba(34, 211, 238, 0.09), transparent 50%);
  --gradient-mesh-3: radial-gradient(ellipse 55% 70% at 50% 105%, rgba(126, 191, 233, 0.075), transparent 45%);
  --gradient-surface-band: linear-gradient(
    180deg,
    rgba(46, 232, 106, 0.055) 0%,
    rgba(34, 211, 238, 0.04) 45%,
    rgba(126, 191, 233, 0.045) 100%
  );
  --glow-brand: 0 0 28px rgba(46, 232, 106, 0.22);
  --glow-cyan: 0 0 28px rgba(34, 211, 238, 0.18);
  --glow-violet: 0 0 32px rgba(126, 191, 233, 0.14);
  --glow-tri: 0 0 36px rgba(46, 232, 106, 0.1), 0 0 48px rgba(34, 211, 238, 0.08), 0 0 56px rgba(126, 191, 233, 0.05);

  /* Radius scale — cards vs framed clusters vs large panels */
  --radius: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 0 1px rgba(46, 255, 120, 0.12), 0 12px 40px rgba(0, 0, 0, 0.35);
  --body-bg-end: #070d12;
  --container: 1140px;
  /* Narrative / inner heroes — keep in sync across m-hero, legal leads, etc. */
  --content-narrow: 760px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Instrument Sans", var(--font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

h1,
h2,
h3,
.site-header .logo,
.site-footer .logo {
  font-family: var(--font-display);
  font-weight: 600;
}

.site-header .logo,
.site-footer .logo {
  font-weight: 800;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

body {
  min-height: 100vh;
  position: relative;
  background-image: linear-gradient(165deg, var(--bg) 0%, var(--bg-2) 48%, var(--body-bg-end) 100%);
}

@supports (padding: max(0px)) {
  body {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: var(--gradient-mesh-1), var(--gradient-mesh-2), var(--gradient-mesh-3);
  opacity: 0.92;
  /* Static mesh — calmer than infinite pulse; motion lives in scroll-linked hero + reveals */
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(46, 232, 106, 0.08);
  }
  50% {
    box-shadow: 0 0 16px 1px rgba(46, 232, 106, 0.08);
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(
    100% - max(2rem, env(safe-area-inset-left) + env(safe-area-inset-right)),
    var(--container)
  );
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

/* Horizontal “band” sections — platform, security, about (was only styled under .about) */
.muted-band {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-weight: 600;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out), filter 0.35s var(--ease-out);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #041208;
  box-shadow: 0 4px 24px rgba(46, 232, 106, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(46, 232, 106, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.12);
  filter: brightness(1.06);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: rgba(126, 191, 233, 0.4);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(126, 191, 233, 0.08));
  box-shadow: var(--glow-cyan), var(--glow-violet);
}

.badge {
  display: inline-flex;
  font-family: var(--font);
  border: 1px solid rgba(46, 232, 106, 0.35);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: linear-gradient(135deg, rgba(46, 232, 106, 0.1), rgba(34, 211, 238, 0.06));
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.05);
  animation: none;
}

@media (prefers-reduced-motion: no-preference) {
  .badge:hover {
    animation: badgePulse 6s ease-in-out infinite;
  }
}

/* Quiet badge — still on-spectrum (gradient rim), not flat gray */
.badge-minimal {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  animation: none;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(8, 14, 22, 0.92), rgba(8, 14, 22, 0.92)) padding-box,
    linear-gradient(135deg, rgba(93, 255, 74, 0.45), rgba(34, 211, 238, 0.4), rgba(126, 191, 233, 0.4)) border-box;
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.1), 0 0 20px rgba(126, 191, 233, 0.06);
}

.grid {
  display: grid;
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card-bg);
  padding: 1.2rem;
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(14px);
  transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
}

.card:hover {
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow: var(--shadow-glow), var(--glow-tri);
}

.highlight {
  color: var(--brand);
  text-shadow: 0 0 28px rgba(93, 255, 74, 0.35);
}

.sr-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  will-change: opacity, transform;
}

.sr-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-reveal:nth-child(1) {
  transition-delay: 0.03s;
}
.sr-reveal:nth-child(2) {
  transition-delay: 0.06s;
}
.sr-reveal:nth-child(3) {
  transition-delay: 0.09s;
}
.sr-reveal:nth-child(4) {
  transition-delay: 0.12s;
}
.sr-reveal:nth-child(5) {
  transition-delay: 0.15s;
}
.sr-reveal:nth-child(6) {
  transition-delay: 0.18s;
}
.sr-reveal:nth-child(7) {
  transition-delay: 0.21s;
}
.sr-reveal:nth-child(8) {
  transition-delay: 0.24s;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.88em;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  padding: 0.12em 0.35em;
  border-radius: 6px;
  color: var(--accent-cyan);
}

/* Injected chrome: overlay + <header> — keep above page content */
#site-header {
  position: relative;
  z-index: 40;
}

/* Header / footer */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(6, 10, 13, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  z-index: 40;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gradient-spectrum-h);
  opacity: 0.35;
  pointer-events: none;
}

.header-inner {
  /* Logo + nav + CTA align to this rail; wordmark scales as a fraction of it */
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header .logo,
.site-footer .logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: transform 0.35s var(--ease-out), filter 0.35s ease, opacity 0.25s ease;
}

.site-header .logo {
  /* Text fallback / legal header: close to nav (0.9rem) but bolder display weight */
  font-size: clamp(1.2rem, 0.35vw + 1.1rem, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-footer .logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo--text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.site-header .logo:hover,
.site-footer .logo:hover {
  transform: scale(1.02);
  filter: brightness(1.08);
}

/* Unified Sure+RX wordmark — single text + tspans so it reads “SureRX” with no gap */
.logo-mark {
  display: block;
  height: 28px;
  width: auto;
}

/*
  Header wordmark: ~50% of 76px rail ≈ primary CTA cap band — not taller than the bar feels.
  Footer stays smaller (28px) so the header stays the hero lockup.
*/
.site-header .logo .logo-mark {
  height: clamp(2rem, calc(76px * 0.5), 2.375rem);
}

.logo-mark-word {
  font-family: var(--font-display), Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.logo-mark-word .logo-mark-sure {
  fill: var(--logo-sure);
}

.logo-mark-word .logo-mark-rx {
  fill: var(--logo-rx);
  filter: drop-shadow(0 0 10px rgba(93, 255, 74, 0.35));
}

:root[data-theme="light"] .logo-mark-word .logo-mark-rx {
  filter: none;
}

/* Mobile menu overlay — sibling of <header>, injected by site.js */
.site-header-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 38;
  background: rgba(0, 0, 0, 0.46);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.site-header-overlay.is-active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  color: inherit;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 1px;
  background: var(--text);
  transition: transform 0.28s var(--ease-out), opacity 0.2s ease;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 5px;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.site-nav > a:not(.btn) {
  color: var(--muted);
  white-space: nowrap;
  position: relative;
}

@media (min-width: 981px) {
  .site-nav > a:not(.btn):not(.nav-link-rebate)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--gradient-spectrum-h);
    border-radius: 2px;
    transition: width 0.35s var(--ease-out);
  }

  .site-nav > a:not(.btn):hover {
    color: var(--text);
  }

  .site-nav > a:not(.btn):not(.nav-link-rebate):hover::after {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .site-nav {
    position: fixed;
    top: 4.75rem;
    left: 0;
    right: 0;
    z-index: 45;
    margin: 0;
    padding: 0.65rem 1.25rem 1.25rem;
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    max-height: min(85vh, calc(100dvh - 4.75rem));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(6, 10, 13, 0.97);
    backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.32s var(--ease-out), opacity 0.22s ease, visibility 0.22s;
  }

  :root[data-theme="light"] .site-nav {
    background: rgba(255, 255, 255, 0.98);
  }

  .site-header.is-nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav > a:not(.btn) {
    white-space: normal;
    padding: 0.75rem 0.65rem;
    border-radius: 12px;
  }

  .site-nav > a:not(.btn):hover,
  .site-nav > a:not(.btn):focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
  }

  .site-nav .nav-cta {
    margin-top: 0.35rem;
    text-align: center;
    justify-content: center;
    width: 100%;
  }
}

.site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  background: rgba(7, 11, 16, 0.92);
  margin-top: 4rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-spectrum-h);
  opacity: 0.4;
  pointer-events: none;
}

.footer-grid {
  padding: 3rem 0 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
}

.footer-brand p {
  margin: 0.6rem 0 0;
  max-width: 34ch;
  color: var(--muted);
}

.footer-email {
  margin-top: 0.9rem;
}

.footer-email a {
  font-weight: 600;
  color: var(--brand);
}

.site-footer h3 {
  font-size: 0.82rem;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.25);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0 2rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.footer-bottom small {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Wrapping <label> so the caption + switch share one hit target */
label.theme-toggle-group {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
  user-select: none;
}

.theme-toggle-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
  white-space: nowrap;
}

/* One compact control: off = dark, on = light */
.theme-toggle {
  position: relative;
  flex-shrink: 0;
  width: 42px;
  height: 24px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--muted);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition: left 0.22s var(--ease-out), background 0.2s ease, transform 0.22s var(--ease-out);
}

.theme-toggle:hover {
  border-color: rgba(34, 211, 238, 0.35);
}

.theme-toggle[aria-checked="true"] {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.4);
}

.theme-toggle[aria-checked="true"]::after {
  left: 21px;
  background: var(--brand-dark);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

/* Page hero */
.m-hero .inner {
  max-width: var(--content-narrow);
}

.m-hero h1 {
  margin: 0.85rem 0 0;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}

.m-hero .lead {
  margin: 1rem 0 0;
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 56ch;
}

/* Home */
.home h1,
.home h2,
.home h3 {
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}

.home h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
}

.home h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

/* Homepage hero — split layout fills width; bento uses right column */
.home .home-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.25rem, 5vw, 3.75rem);
  padding-bottom: clamp(2.75rem, 6vw, 4.5rem);
}

.home .hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 75% at 88% 18%, rgba(46, 232, 106, 0.11), transparent 58%),
    radial-gradient(ellipse 70% 55% at 72% 88%, rgba(34, 211, 238, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 12% 40%, rgba(126, 191, 233, 0.06), transparent 50%);
  opacity: 1;
}

.home .hero-shell {
  position: relative;
  z-index: 1;
}

.home .hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}

@media (min-width: 961px) {
  /* Copy column is usually taller — center the board so dead space isn’t all below the tiles */
  .home .hero-split {
    align-items: center;
  }
}

.home .hero-copy-block {
  max-width: 36rem;
}

@media (min-width: 1100px) {
  .home .hero-copy-block {
    justify-self: end;
    padding-right: clamp(0.5rem, 2vw, 1.5rem);
  }

  .home .hero-side {
    justify-self: start;
    max-width: min(27rem, 100%);
    width: 100%;
  }
}

.home .hero-copy-block .badge {
  margin-bottom: 0.15rem;
}

.home .hero-sub-lead {
  margin-top: 1.1rem;
  max-width: none;
  font-size: clamp(1.08rem, 2.4vw, 1.28rem);
  line-height: 1.45;
  color: var(--text);
}

.home .hero-sub-support {
  margin-top: 0.65rem;
  max-width: none;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.55;
  color: var(--muted);
}

.home .hero-ai-strip {
  text-wrap: balance;
}

.home .hero-ai-strip-sep {
  color: rgba(147, 163, 184, 0.75);
  font-weight: 500;
}

:root[data-theme="light"] .home .hero-ai-strip-sep {
  color: rgba(74, 93, 84, 0.65);
}

.home .hero-side {
  position: relative;
  align-self: center;
  min-height: 0;
}

/* Single framed “board”: room around tiles + intentional footer so nothing feels cramped or floating */
.home .hero-board {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(1.15rem, 2.5vw, 1.55rem) clamp(1rem, 2.2vw, 1.35rem) clamp(1.05rem, 2vw, 1.35rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 95% 70% at 78% 8%, rgba(34, 211, 238, 0.14), transparent 52%),
    radial-gradient(ellipse 80% 55% at 12% 92%, rgba(46, 232, 106, 0.1), transparent 48%),
    linear-gradient(165deg, rgba(14, 22, 32, 0.88) 0%, rgba(8, 14, 22, 0.72) 100%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.home .hero-board-accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--gradient-spectrum-h-soft);
  opacity: 0.07;
  mask-image: linear-gradient(165deg, rgba(0, 0, 0, 0.55) 0%, transparent 42%, transparent 58%, rgba(0, 0, 0, 0.35) 100%);
  -webkit-mask-image: linear-gradient(
    165deg,
    rgba(0, 0, 0, 0.55) 0%,
    transparent 42%,
    transparent 58%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.home .hero-bento {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  height: auto;
  align-content: start;
  padding: 0;
}

.home .hero-bento-tile {
  padding: 1.1rem 1.05rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 18, 28, 0.5);
  backdrop-filter: blur(14px);
  transform: translateY(0);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-out);
}

.home .hero-bento-tile:hover {
  border-color: rgba(34, 211, 238, 0.22);
  background: rgba(16, 26, 38, 0.62);
  transform: translateY(-2px);
}

/* Highlighted bento tile (labs & notes — distinct spectrum) */
.home .hero-bento-tile-ai {
  border-color: rgba(34, 211, 238, 0.2);
  background: linear-gradient(145deg, rgba(46, 232, 106, 0.08), rgba(34, 211, 238, 0.07), rgba(12, 18, 28, 0.42));
}

/* Three-tile hero — less visual noise than 2×2 */
.home .hero-bento--compact {
  grid-template-columns: 1fr;
  gap: 0.55rem;
  max-width: min(22rem, 100%);
}

@media (min-width: 560px) {
  .home .hero-bento--compact {
    grid-template-columns: 1fr 1fr;
  }

  .home .hero-bento--compact .hero-bento-tile-ai {
    grid-column: 1 / -1;
  }
}

.home .hero-value-pill--ai {
  background: rgba(34, 211, 238, 0.14);
  border-color: rgba(34, 211, 238, 0.32);
  color: rgba(224, 249, 255, 0.98);
}

.home .hero-value-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.45rem;
}

.home .hero-value-pill {
  display: inline-block;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(46, 232, 106, 0.14);
  border: 1px solid rgba(46, 232, 106, 0.28);
}

.home .hero-value-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.48;
  color: var(--muted);
}

.home .hero-value-text strong {
  color: var(--text);
  font-weight: 600;
}

.home .cta-row {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Plain-language outcome visuals (short chips, simple flows) */
.outcome-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.outcome-bar > li,
.outcome-bar .outcome-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  background: rgba(46, 232, 106, 0.11);
  border: 1px solid rgba(46, 232, 106, 0.22);
}

.outcome-bar--cyan > li,
.outcome-bar--cyan .outcome-chip {
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.26);
}

.outcome-bar--ice > li,
.outcome-bar--ice .outcome-chip {
  background: rgba(126, 191, 233, 0.12);
  border-color: rgba(126, 191, 233, 0.3);
}

.outcome-chip--ice {
  background: rgba(126, 191, 233, 0.14) !important;
  border-color: rgba(126, 191, 233, 0.32) !important;
}

.stat-snapshot-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0 0;
}

.stat-snapshot {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 18, 28, 0.35);
}

.stat-snapshot-kicker {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.stat-snapshot-text {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.closing-trio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.35rem auto 0;
  max-width: 52rem;
  text-align: left;
}

/* Three-up closing row on home */
.closing-trio--balanced {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 56rem;
}

.closing-trio-item {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(34, 211, 238, 0.15);
  background: rgba(12, 18, 28, 0.35);
}

.closing-trio-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.35rem;
}

.closing-trio-copy {
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}

@media (max-width: 720px) {
  .stat-snapshot-row,
  .closing-trio,
  .closing-trio--balanced {
    grid-template-columns: 1fr;
  }

  .solutions-hero-pairs {
    grid-template-columns: 1fr;
  }
}

/* Solutions hub / inner pages — short tiles, no bullet lists */
.solutions-hero-pairs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 38rem;
}

.pair-tile {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pair-tile-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.pair-tile-copy {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.pair-tile-copy a {
  font-weight: 600;
}

.pain-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.pain-chip {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(34, 211, 238, 0.09);
  border: 1px solid rgba(34, 211, 238, 0.22);
  line-height: 1.35;
}

.eval-grid-wrap h3 {
  margin: 0;
  font-size: 1.05rem;
}

.eval-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.eval-chip {
  padding: 0.45rem 0.7rem;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.35;
}

.flow-visual {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.35rem 0.45rem;
  margin: 1rem 0 0;
}

.flow-visual-step {
  flex: 1 1 7.25rem;
  min-width: 0;
  padding: 0.85rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 18, 28, 0.55);
}

.flow-visual-step-num {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: 0.4rem;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.6rem;
  text-align: center;
  color: var(--bg);
  background: linear-gradient(135deg, var(--brand-dark), var(--accent-cyan));
}

.flow-visual-step p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  font-weight: 500;
}

.flow-visual-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  padding: 0 0.1rem;
  flex: 0 0 auto;
  align-self: center;
}

@media (max-width: 620px) {
  .flow-visual-arrow {
    display: none;
  }

  .flow-visual-step {
    flex: 1 1 100%;
  }
}

.hit-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.hit-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.45rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.hit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 2px;
  background: var(--brand-dark);
  box-shadow: 0 0 0 2px rgba(46, 232, 106, 0.22);
}

.hit-list strong {
  color: var(--text);
}

.platform-module-feature .flow-visual-step {
  background: rgba(8, 14, 22, 0.55);
}

.platform-hero-outcomes {
  justify-content: flex-start;
  margin-bottom: 1.15rem;
}

.platform-flow-preview {
  max-width: 44rem;
  margin-inline: auto;
  justify-content: center;
}

.stats-why .outcome-bar {
  margin-top: 0.5rem;
}

.home .section-head {
  margin-bottom: 1.2rem;
}

.home .section-head h2 {
  margin-top: 0.7rem;
}

.home .features {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Homepage — platform band (minimal chrome, spacious, product-launch rhythm) */
/* —— Home: streamlined teasers (detail on platform / solutions pages) —— */
.home-platform-teaser {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

.home-platform-teaser-inner {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.home-platform-teaser-inner .section-head {
  margin-bottom: 0.5rem;
}

.home-platform-teaser .platform-lead {
  margin: 0.85rem auto 0;
  max-width: 38rem;
  text-align: left;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--muted);
}

.home-skill-list {
  list-style: none;
  padding: 0;
  margin: 1.35rem auto 0;
  max-width: 28rem;
  display: grid;
  gap: 0.45rem 1.25rem;
  grid-template-columns: 1fr;
  text-align: left;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (min-width: 520px) {
  .home-skill-list {
    grid-template-columns: 1fr 1fr;
    max-width: 36rem;
  }
}

.home-skill-list li {
  padding-left: 1rem;
  position: relative;
}

.home-skill-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-cyan);
  opacity: 0.85;
}

.home-teaser-cta {
  margin-top: 1.35rem;
  text-align: center;
}

.home-integrations-teaser {
  padding: 2.35rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.home-integrations-teaser-inner {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.home-integrations-title {
  font-size: clamp(1.12rem, 2.4vw, 1.32rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
  color: var(--text);
}

.home-integrations-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 1rem;
}

.home-next-steps {
  padding-top: 3.25rem;
  padding-bottom: 3rem;
}

.home-next-steps-inner {
  max-width: 38rem;
  margin-inline: auto;
  text-align: center;
}

.home-next-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  margin-top: 1.1rem;
}

.home-next-sep {
  color: var(--muted);
  opacity: 0.55;
  user-select: none;
}

.home-evidence {
  padding: 2.75rem 0 3.25rem;
}

.home-evidence-inner {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.home-evidence-title {
  font-size: clamp(1.3rem, 2.8vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.home-evidence-copy {
  margin: 0 0 1.1rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.home-trust-note {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.home .result-shell-lead {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.58;
  font-size: 1.02rem;
}

.home .result-shell-cta {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.home .result-shell-cta .btn {
  margin-top: 0;
}

.home .platform-showcase {
  padding: 5.75rem 0 6.25rem;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 40%, rgba(255, 255, 255, 0.015) 100%),
    var(--gradient-surface-band);
}

.home .platform-showcase-inner {
  width: min(100% - 2rem, min(var(--container), 1080px));
  margin-inline: auto;
}

.home .platform-showcase-head {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 7vw, 4.75rem);
}

.home .platform-showcase-head h2 {
  margin-top: 1.35rem;
  margin-bottom: 0;
  font-size: clamp(2.05rem, 4.3vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.07;
  text-wrap: balance;
  color: var(--text);
}

.home .platform-lead {
  margin: 1.4rem auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
}

.home .platform-modules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem 2rem;
}

.home .platform-module {
  margin: 0;
  padding: 2.1rem 1.85rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.45s var(--ease-out);
}

.home .platform-module:hover {
  background: linear-gradient(135deg, rgba(46, 232, 106, 0.06), rgba(34, 211, 238, 0.05), rgba(126, 191, 233, 0.05));
  border-color: rgba(34, 211, 238, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), var(--glow-tri);
  transform: translateY(-3px);
}

.home .platform-module-badge {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.home .platform-module-feature {
  grid-column: 1 / -1;
  padding: 2.35rem 2rem;
  border-color: rgba(34, 211, 238, 0.24);
  background: linear-gradient(
    135deg,
    rgba(46, 232, 106, 0.07),
    rgba(34, 211, 238, 0.06),
    rgba(126, 191, 233, 0.04)
  );
  text-align: center;
}

.home .platform-module-feature .platform-module-lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.home .platform-module-feature .flow-visual {
  justify-content: center;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.home .platform-module-feature .flow-visual-step {
  text-align: center;
}

.home .platform-module-feature .flow-visual-step-num {
  margin-left: auto;
  margin-right: auto;
}

.home .platform-module-feature .outcome-bar {
  justify-content: center;
}

/* Full-width insights band — ice / cyan spectrum (contrasts with lime-forward labs feature below) */
.home .platform-module-insights-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 2rem 2.15rem;
  border-radius: 22px;
  border: 1px solid rgba(126, 191, 233, 0.32);
  background: linear-gradient(
    125deg,
    rgba(126, 191, 233, 0.14),
    rgba(34, 211, 238, 0.08),
    rgba(46, 232, 106, 0.04)
  );
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home .platform-module-insights-row h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
}

.home .platform-module-insights-copy {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

.home .platform-module-badge--insights {
  color: var(--accent-violet);
}

.home .platform-module-insights-row .outcome-bar {
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  margin: 0;
}

@media (max-width: 820px) {
  .home .platform-module-insights-row {
    grid-template-columns: 1fr;
  }
}

.home .platform-module-lead {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
}

.home .platform-trust-lede {
  margin: 1.65rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 36rem;
}

/* HIPAA / security one-liners: clear separation from chips + CTA sits slightly below the sentence */
.trust-lede-line {
  display: block;
}

.trust-lede-cta {
  font-weight: 600;
}

.home .platform-module-feature .platform-trust-lede {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  /* Full-width rule inside the card (base .platform-trust-lede max-width made the line look short/off) */
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 2.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
}

.home .platform-module-feature .platform-trust-lede .trust-lede-line {
  max-width: 36rem;
  margin-inline: auto;
}

.platform-section-trust {
  margin: 2.15rem auto 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--border);
  max-width: 38rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.home .platform-module-feature .flow-visual-step p {
  font-size: 0.8rem;
  line-height: 1.42;
}

.home .platform-module h3 {
  margin: 0 0 0.7rem;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.22;
  color: var(--text);
}

.home .platform-module p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.58;
  color: var(--muted);
}

.home .platform-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 3.25rem;
  margin-top: clamp(3.75rem, 9vw, 5.25rem);
  padding-top: clamp(3.25rem, 7vw, 4.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home .platform-pillar {
  padding-inline: 0.35rem;
}

.home .platform-pillar-index {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.home .platform-pillar-title {
  margin: 0 0 0.65rem;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.2;
  color: var(--text);
}

.home .platform-pillar p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--muted);
}

.home .platform-story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  margin-top: clamp(3.75rem, 8vw, 5rem);
  padding: 2.85rem clamp(1.5rem, 4vw, 2.75rem);
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.065);
}

.home .platform-story-col {
  padding: 0.35rem 1.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.home .platform-story-col:first-child {
  padding-left: 0.35rem;
}

.home .platform-story-col:last-child {
  border-right: 0;
  padding-right: 0.35rem;
}

.home .platform-story-col h3 {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.home .platform-story-col p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.62;
  color: var(--muted);
}

.home .platform-story-cta {
  margin-top: 1.1rem;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .home .platform-story {
    grid-template-columns: 1fr;
    padding: 2rem 1.35rem;
  }

  .home .platform-story-col {
    padding: 1.35rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .home .platform-story-col:first-child {
    padding-top: 0;
  }

  .home .platform-story-col:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.home .int-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home .integrations {
  background: linear-gradient(to bottom, rgba(12, 22, 32, 0.45) 0%, transparent 42%, rgba(12, 18, 28, 0.4) 100%),
    var(--gradient-surface-band);
  border-block: 1px solid var(--border);
}

.home .integrations-more {
  margin: 1.25rem 0 0;
  text-align: center;
}

.home .deep-content {
  background: rgba(8, 14, 22, 0.55);
  border-block: 1px solid var(--border);
}

.home .section-intro {
  margin: 0 0 1.25rem;
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.home .deep-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home .deep-card {
  display: block;
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.home .deep-card:hover {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: var(--shadow-glow), var(--glow-tri);
  transform: translateY(-4px);
}

.home .deep-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
}

.home .deep-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.stats-section-inner {
  max-width: 58rem;
  margin-inline: auto;
}

.home .stats-section {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.stats-proof-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4.5vw, 2.85rem) clamp(1.35rem, 4vw, 2.75rem);
  background:
    radial-gradient(ellipse 90% 80% at 12% -10%, rgba(46, 232, 106, 0.09), transparent 52%),
    radial-gradient(ellipse 70% 60% at 92% 100%, rgba(34, 211, 238, 0.07), transparent 48%),
    linear-gradient(165deg, rgba(14, 22, 32, 0.92) 0%, rgba(10, 16, 24, 0.78) 100%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  margin-bottom: 1.5rem;
}

.stats-proof-head {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.stats-proof-head h2 {
  margin-top: 0.85rem;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
}

.stats-proof-dek {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.stats-proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-proof-cell {
  padding: 1.65rem 1.25rem 1.75rem;
  text-align: center;
}

.stats-proof-cell + .stats-proof-cell {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-proof-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(139, 152, 171, 0.95);
  margin-bottom: 0.5rem;
}

.stats-proof-value-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem 0.35rem;
  margin-bottom: 0.65rem;
}

.stats-proof-value-row--stack {
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.stats-proof-value {
  font-size: clamp(2.1rem, 5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  background: linear-gradient(135deg, #eef2f7 0%, var(--brand-dark) 40%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(46, 232, 106, 0.12));
}

.stats-proof-unit {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(147, 163, 184, 0.95);
}

.stats-proof-unit--below {
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.88rem;
}

.stats-proof-detail {
  margin: 0 auto;
  max-width: 17.5rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.stats-proof-citation {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 0.35rem 0.15rem;
  margin-top: 0.15rem;
}

.stats-proof-citation-tag {
  flex: 0 0 auto;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: rgba(46, 232, 106, 0.12);
  border: 1px solid rgba(46, 232, 106, 0.22);
  margin-top: 0.2rem;
}

.stats-proof-citation-body {
  flex: 1;
  min-width: 0;
}

.stats-proof-citation-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

.stats-proof-citation-body a {
  color: var(--accent-cyan);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 211, 238, 0.45);
}

.stats-proof-citation-body a:hover {
  color: var(--brand);
  border-bottom-color: rgba(93, 255, 74, 0.55);
}

.home .stats-trust-note {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
}

.home .stats-trust-note a {
  color: var(--accent-cyan);
  font-weight: 600;
  white-space: nowrap;
}

.stats-trust-simple {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1.35rem 0 0;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 780px) {
  .stats-proof-metrics {
    grid-template-columns: 1fr;
  }

  .stats-proof-cell + .stats-proof-cell {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .stats-proof-citation {
    flex-direction: column;
    gap: 0.65rem;
  }
}

.home .stats-intro {
  margin-bottom: 1.75rem;
}

.home .stats-intro h2 {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.home .stats-lede {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.home .stats-context {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.home .stats-context a {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home .stats-context a:hover {
  color: var(--brand);
}

.home .stats-why {
  padding: 1.25rem 1.35rem 1.45rem;
  text-align: left;
}

.home .stats-why-title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.home .stats-why-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.home .stats-why-list li + li {
  margin-top: 0.5rem;
}

.home .stats-metrics-preface {
  margin: 2rem 0 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

/* Trust strip — encryption / compliance callouts */
.platform-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem 0.65rem;
  margin-top: 1.2rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background: rgba(8, 14, 22, 0.45);
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
}

.platform-trust-strip--center {
  justify-content: center;
}

.platform-trust-item strong {
  color: var(--text);
  font-weight: 700;
}

.platform-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(147, 163, 184, 0.55);
  flex-shrink: 0;
}

/* Security hero — scannable posture grid (not a dense “note” paragraph) */
.security-posture {
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(12, 18, 28, 0.55);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.06);
}

.security-posture-rail {
  height: 3px;
  width: 100%;
  background: var(--gradient-spectrum-h);
  opacity: 0.85;
}

.security-posture-grid {
  list-style: none;
  margin: 0;
  padding: 1.15rem 1.2rem 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.35rem;
}

@media (min-width: 640px) {
  .security-posture-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 1.15rem;
    padding: 1.2rem 1.35rem 1.35rem;
  }
}

.security-posture-grid > li {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.security-posture-mark {
  display: block;
  width: 100%;
  max-width: 2.75rem;
  height: 3px;
  border-radius: 999px;
  margin-bottom: 0.15rem;
}

.security-posture-mark--a {
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  box-shadow: 0 0 12px rgba(46, 232, 106, 0.25);
}

.security-posture-mark--b {
  background: linear-gradient(90deg, var(--accent-cyan), rgba(34, 211, 238, 0.75));
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.2);
}

.security-posture-mark--c {
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-cyan));
  box-shadow: 0 0 10px rgba(126, 191, 233, 0.18);
}

.security-posture-mark--d {
  background: var(--gradient-spectrum-h-soft);
  opacity: 0.9;
  box-shadow: 0 0 12px rgba(46, 232, 106, 0.12);
}

.security-posture-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.security-posture-hint {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
  font-weight: 500;
}

.home .stats-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home .stats-metrics .stats-metric-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.home .stats-metrics h3 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(46, 232, 106, 0.25));
}

.home .stats-metrics .card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.home .result-shell {
  text-align: center;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 24px;
  padding: 2.4rem 1.2rem;
  background: radial-gradient(circle at 30% 15%, rgba(46, 232, 106, 0.14), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.1), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(126, 191, 233, 0.06), transparent 50%), var(--card-bg);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glow), var(--glow-tri);
}

.home .result-shell h2 {
  margin-top: 1rem;
}

.home .result-shell .btn {
  margin-top: 1rem;
}

.home .result-shell .seo-prose {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.home .result-shell .punch-strip {
  justify-content: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.home .result-shell .punch-strip li {
  text-align: left;
}

.home p {
  color: var(--muted);
  font-size: 1.02rem;
}

/* Contact */
.contact-wrap {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 0.85fr 1.15fr;
}

.contact .contact-message-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.35rem 0 0.45rem;
  max-width: 42rem;
  line-height: 1.5;
}

.contact .contact-message-hint strong {
  color: var(--text);
  font-weight: 700;
}

.contact h1 {
  margin: 1rem 0 0.4rem;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}

.contact form {
  display: grid;
  gap: 0.45rem;
}

.contact label {
  margin-top: 0.45rem;
  font-weight: 600;
}

.contact input,
.contact textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
  font: inherit;
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: rgba(46, 232, 106, 0.55);
  box-shadow: 0 0 0 3px rgba(46, 232, 106, 0.15), 0 0 24px rgba(34, 211, 238, 0.12);
}

.contact .contact-interest {
  margin-top: 0.35rem;
}

.contact .consent {
  display: flex;
  align-items: start;
  gap: 0.6rem;
  color: var(--muted);
  font-weight: 500;
}

.contact .consent a {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact .consent a:hover {
  color: var(--accent-cyan);
}

.contact .consent input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
}

.contact #companyWebsite {
  display: none;
}

.contact #formStatus {
  min-height: 1.5rem;
  color: var(--muted);
}

.contact .req {
  color: #f87171;
  font-weight: 700;
  margin-left: 0.1rem;
}

.contact .label-optional {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.88em;
}

.contact .field-error {
  margin: 0.2rem 0 0;
  min-height: 1.15rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #f87171;
  letter-spacing: 0.01em;
}

.contact .field-error--consent {
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
}

.contact input.is-invalid,
.contact textarea.is-invalid {
  border-color: rgba(248, 113, 113, 0.75);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.25), 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.contact input.is-invalid:focus,
.contact textarea.is-invalid:focus {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.18);
}

.contact .consent--legal {
  font-weight: 400;
  color: var(--muted);
}

.contact .consent--legal .consent-legal-text {
  font-weight: 400;
}

.contact .consent--legal a {
  font-weight: 500;
  color: var(--brand-dark);
}

/* Legal & policy pages — same theme tokens as the rest of the site */
.legal-section {
  padding-top: 3rem;
}

.legal-shell {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 0 1rem;
}

.legal-page .legal-shell {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1rem 3.5rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.legal-page .legal-head {
  border-bottom: none;
  padding-bottom: 0.35rem;
  margin-bottom: 1.25rem;
}

.legal-page .legal-body h2 {
  color: var(--text);
}

.legal-head {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-head h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.legal-lead {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.legal-body h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.legal-body h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.05rem;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

.legal-body ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.legal-body a {
  color: var(--accent-cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.legal-body a:hover {
  color: var(--brand);
  text-shadow: 0 0 16px rgba(93, 255, 74, 0.35);
}

/* Security page */
.security-hero-inner {
  max-width: 720px;
}

.security-updated {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0 0 0.5rem;
}

.security-updated-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(139, 152, 171, 0.95);
}

.security-page .m-hero h1 {
  margin-top: 0.35rem;
}

.security-hero-lead {
  margin-top: 1rem;
  max-width: 60ch;
  font-size: 1.06rem;
  line-height: 1.62;
  color: var(--muted);
}

.security-hero-lead strong {
  color: var(--text);
}

.security-principle-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.security-principle-pill {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(46, 232, 106, 0.07), rgba(34, 211, 238, 0.05), rgba(126, 191, 233, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.91rem;
  line-height: 1.48;
  color: var(--muted);
}

.security-principle-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.security-section-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}

.security-section-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.security-section-dek {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--muted);
}

.security-program-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.security-program-title {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--text);
}

.security-program-copy {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.62;
  color: var(--muted);
}

.security-program-copy strong {
  color: var(--text);
}

/* Responsible disclosure — footer-style note (not a hero card) */
.security-page .security-disclosure-foot {
  /* Override default .section vertical padding — keep tight to site footer */
  padding-top: 0.65rem;
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  margin-top: 0;
  border-top: 1px solid var(--border);
}

.security-disclosure-note {
  margin: 0;
  max-width: 48rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

.security-disclosure-note a {
  color: var(--accent-cyan);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.security-disclosure-note a:hover {
  color: var(--brand);
}

.security-disclosure-note strong {
  color: var(--text);
}

.security-context-section {
  padding-top: 4.5rem;
}

.security-context-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 960px;
  margin: 0 auto;
}

.security-context-panel {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(12, 18, 28, 0.4);
}

.security-context-heading {
  margin: 0 0 0.6rem;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.security-context-panel p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--muted);
}

.security-context-panel strong {
  color: var(--text);
}

.security-context-panel em {
  color: var(--accent-cyan);
  font-style: normal;
  font-weight: 600;
}

.security-cta-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 900px) {
  .security-principle-strip,
  .security-program-grid,
  .security-context-grid {
    grid-template-columns: 1fr;
  }
}

/* Solutions hub */
.solutions-hub .grid2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solutions-hub .link-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.solutions-hub .link-card:hover {
  border-color: var(--brand-dark);
  box-shadow: var(--shadow);
}

.solutions-hub .card-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-dark);
}

.solutions-hub .link-card h2 {
  margin: 0.5rem 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.solutions-hub .link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.solutions-hub .card-cta {
  margin-top: 1.1rem;
  font-weight: 700;
}

.solutions-hub .band {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.solutions-hub .grid3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solutions-hub .cta-line {
  margin: 1.75rem 0 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.solutions-hub .section-head-inline {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
}

.solutions-hub .grid3 h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.solutions-hub .grid3 p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Capability map — scale card (replaces duplicate hero throughput UI) */
.solutions-hub .capability-scale {
  border-color: rgba(34, 211, 238, 0.28);
  background:
    radial-gradient(ellipse 90% 80% at 10% 0%, rgba(46, 232, 106, 0.1), transparent 55%),
    radial-gradient(ellipse 70% 60% at 95% 100%, rgba(126, 191, 233, 0.08), transparent 50%),
    var(--card-bg);
  box-shadow: 0 0 36px rgba(34, 211, 238, 0.06);
}

.solutions-hub .capability-scale h3 {
  color: var(--text);
}

.capability-scale-meter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.capability-scale-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: center;
  line-height: 1.25;
  color: var(--brand-dark);
  background: rgba(46, 232, 106, 0.1);
  border: 1px solid rgba(46, 232, 106, 0.28);
}

.capability-scale-chip--time {
  color: var(--accent-cyan);
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.28);
}

/* Same connector as .scale-proof-bridge — compact for capability chips row */
.capability-scale-join {
  flex: 0 0 auto;
}

@media (max-width: 520px) {
  .capability-scale-meter {
    flex-direction: column;
  }
}

:root[data-theme="light"] .solutions-hub .capability-scale {
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .capability-scale-meter {
  border-top-color: rgba(13, 26, 20, 0.1);
}

/* Solutions inner */
.solution-page h2 {
  letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.solution-page .split {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.solution-page .prose-list {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}

.solution-page .accent-card {
  background: linear-gradient(
    160deg,
    rgba(46, 232, 106, 0.12) 0%,
    rgba(34, 211, 238, 0.06) 45%,
    var(--card-bg) 100%
  );
  border-color: rgba(46, 232, 106, 0.35);
}

.solution-page .muted {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.solution-page .grid3 {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-page .grid3 a {
  color: var(--brand-dark);
  font-weight: 600;
}

.solution-page .callout {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
}

.solution-page .pillars {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-page .band {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.solution-page .grid2-inner {
  margin-top: 1rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.solution-page .muted-p {
  margin: 0.35rem 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.solution-page .cta-block {
  text-align: center;
  border: 1px solid rgba(46, 232, 106, 0.25);
  border-radius: 20px;
  padding: 2.25rem 1.25rem;
  background: radial-gradient(circle at 40% 0%, rgba(46, 232, 106, 0.12), transparent 55%), var(--card-bg);
  backdrop-filter: blur(14px);
}

.solution-page .row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Integrations */
.integrations-page .flow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.integrations-page .block p,
.integrations-page .block ul {
  color: var(--muted);
  line-height: 1.6;
}

.integrations-page .block ul {
  margin: 0 0 0.65rem;
  padding-left: 1.15rem;
}

.integrations-page .block p {
  margin: 0 0 0.65rem;
}

.integrations-hero .integrations-lead {
  max-width: 62ch;
}

.integrations-hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.integrations-hero-pill {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(46, 232, 106, 0.07), rgba(34, 211, 238, 0.05), rgba(126, 191, 233, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

.integrations-hero-pill-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.integrations-partners-section {
  padding-top: 4.5rem;
}

.integrations-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.integrations-section-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.integrations-section-sub {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
}

.integrations-implementation-note.card {
  margin-top: 1.35rem;
  padding: 1.35rem 1.5rem;
}

.integrations-implementation-note-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.integrations-implementation-note-text strong {
  color: var(--text);
}

.integrations-partner-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.int-partner-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.int-partner-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.98rem;
}

.int-highlight-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0.25rem 0 1rem;
  flex: 1;
}

.int-highlight-stack--compact {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.int-highlight-stack--compact .int-highlight {
  padding: 0.75rem 0;
}

.int-highlight {
  display: grid;
  grid-template-columns: 3px minmax(0, 1fr);
  gap: 0.85rem 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.int-highlight:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.int-highlight-bar {
  display: block;
  width: 3px;
  border-radius: 999px;
  align-self: stretch;
  min-height: 2.25rem;
}

.int-highlight-bar--a {
  background: var(--gradient-spectrum-v-1);
  box-shadow: 0 0 14px rgba(46, 232, 106, 0.2);
}

.int-highlight-bar--b {
  background: var(--gradient-spectrum-v-2);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.18);
}

.int-highlight-bar--c {
  background: var(--gradient-spectrum-v-3);
  box-shadow: 0 0 14px rgba(126, 191, 233, 0.16);
}

.int-highlight-kicker {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(139, 152, 171, 0.95);
}

.int-highlight-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.52;
  color: var(--muted);
}

.int-security-card .int-security-intro {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.int-security-card .int-security-intro a {
  color: var(--accent-cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.int-security-card .int-security-intro a:hover {
  color: var(--brand);
}

@media (max-width: 980px) {
  .integrations-partner-grid {
    grid-template-columns: 1fr;
  }

  .integrations-hero-strip {
    grid-template-columns: 1fr;
  }
}

.solution-page .accent-card h3 {
  margin: 0 0 0.5rem;
}

.solution-page .checklist h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.solution-page .checklist ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
}

.integrations-page .tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--brand-dark);
}

.integrations-page .block h2 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.integrations-page .note {
  margin: 0.75rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--muted);
}

.integrations-page .band {
  background: linear-gradient(to bottom, rgba(12, 22, 32, 0.55) 0%, transparent 50%, rgba(10, 16, 24, 0.55) 100%),
    var(--gradient-surface-band);
  border-block: 1px solid var(--border);
}

.integrations-page .split {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.integrations-page .mini ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.integrations-page .mini a,
.integrations-page .split a {
  color: var(--accent-cyan);
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.integrations-page .mini a:hover,
.integrations-page .split a:hover {
  color: var(--brand);
  text-shadow: 0 0 16px rgba(34, 211, 238, 0.2);
}

.integrations-page .cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border: 1px solid rgba(46, 232, 106, 0.18);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(46, 232, 106, 0.05), rgba(34, 211, 238, 0.04), rgba(126, 191, 233, 0.05)),
    var(--card-bg);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.06);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list details {
  padding: 0.65rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.01em;
  list-style: none;
  color: var(--text);
  transition: color 0.25s ease;
}

.faq-list details:hover summary {
  color: var(--brand);
}

.faq-list details[open] {
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow: 0 0 32px rgba(46, 232, 106, 0.08), 0 0 40px rgba(126, 191, 233, 0.06);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin: 0.75rem 0 0.35rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

.faq-rebate-cluster {
  padding-bottom: 1.5rem;
}

.faq-rebate-cluster .faq-rebate-title {
  margin: 0.65rem 0 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  letter-spacing: -0.02em;
}

.faq-rebate-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 42rem;
  line-height: 1.55;
}

.faq-rebate-lead a {
  color: var(--rebate-success);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-rebate-lead a:hover {
  color: #34d399;
}

.faq .band {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.faq .cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.about h1 {
  margin: 1rem 0 1.25rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.about-hook {
  margin: 0;
  max-width: 52ch;
  font-size: 1.06rem;
  line-height: 1.68;
  color: var(--muted);
}

.about-hook strong {
  color: var(--text);
}

.about-at-a-glance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-glance-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.about-glance-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(139, 152, 171, 0.95);
}

.about-glance-item:nth-child(1) .about-glance-label {
  color: var(--brand-dark);
  text-shadow: 0 0 20px rgba(46, 232, 106, 0.25);
}

.about-glance-item:nth-child(2) .about-glance-label {
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.about-glance-item:nth-child(3) .about-glance-label {
  color: var(--accent-violet);
  text-shadow: 0 0 22px rgba(126, 191, 233, 0.2);
}

.about-glance-item:nth-child(4) .about-glance-label {
  color: var(--brand);
  text-shadow: 0 0 20px rgba(93, 255, 74, 0.18);
}

.about-glance-text {
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--muted);
}

.about-glance-text a {
  color: var(--accent-cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-glance-text a:hover {
  color: var(--brand);
}

.mission-compact {
  padding: 1.35rem 1.35rem 1.25rem;
}

.about .mission-foot {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.58;
}

/* About — operating principles (compact cards) */
.about-principles-section {
  padding-block: clamp(3rem, 6vw, 4.5rem);
  border-block: 1px solid var(--border);
  background: linear-gradient(
      180deg,
      rgba(46, 232, 106, 0.04) 0%,
      transparent 42%,
      rgba(34, 211, 238, 0.03) 100%
    ),
    var(--gradient-surface-band);
}

.about-principles-head {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 2.25rem;
}

.about-principles-head .badge {
  margin-bottom: 0.65rem;
}

.about-principles-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text);
}

.about-principles-lede {
  margin: 0.85rem 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
}

.about-principles-lede strong {
  color: var(--text);
  font-weight: 600;
}

.about-principles-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 72rem;
  margin-inline: auto;
}

.about-principle-card {
  position: relative;
  margin: 0;
  padding: 1.45rem 1.2rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(14, 22, 32, 0.88) 0%, rgba(8, 14, 22, 0.72) 100%);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s var(--ease-out);
}

.about-principle-card:hover {
  border-color: rgba(34, 211, 238, 0.22);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(46, 232, 106, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.about-principle-bar {
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  opacity: 0.95;
}

.about-principle-bar--a {
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  box-shadow: 0 0 16px rgba(46, 232, 106, 0.35);
}

.about-principle-bar--b {
  background: linear-gradient(90deg, var(--accent-cyan), rgba(34, 211, 238, 0.75));
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.3);
}

.about-principle-bar--c {
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-cyan));
  box-shadow: 0 0 14px rgba(126, 191, 233, 0.25);
}

.about-principle-bar--d {
  background: var(--gradient-spectrum-h-soft);
  box-shadow: 0 0 18px rgba(46, 232, 106, 0.2);
}

.about-principle-title {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: var(--text);
}

.about-principle-copy {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.52;
  color: var(--muted);
}

@media (max-width: 960px) {
  .about-principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .about-principle-card:hover {
    transform: none;
  }
}

.about-narrative {
  /* Top edge shared with .about-principles-section — avoid double rule */
  border-top: none;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(8, 14, 22, 0.5) 0%, transparent 55%, rgba(8, 14, 22, 0.45) 100%),
    var(--gradient-surface-band);
}

.about-narrative-frame {
  max-width: var(--content-narrow);
  margin-inline: auto;
}

.about-narrative-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.75rem;
}

.about-narrative-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.15;
  color: var(--text);
}

.about-narrative-lede {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-lede-accent {
  color: var(--accent-cyan);
  font-weight: 500;
}

.about-disclosure-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-disclosure {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(12, 18, 28, 0.55);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-disclosure:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.about-disclosure[open] {
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow: 0 0 0 1px rgba(46, 232, 106, 0.12), var(--glow-tri);
}

.about-disclosure summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  user-select: none;
  outline: none;
}

.about-disclosure summary::-webkit-details-marker {
  display: none;
}

.about-disclosure summary:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(34, 211, 238, 0.55);
  border-radius: 16px;
}

.about-disclosure-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
}

.about-disclosure-index {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(139, 152, 171, 0.85);
  padding-top: 0.2rem;
}

.about-disclosure-titles {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.about-disclosure-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.about-disclosure-teaser {
  display: block;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.about-disclosure-chevron {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45rem;
  border-right: 2px solid rgba(139, 152, 171, 0.8);
  border-bottom: 2px solid rgba(139, 152, 171, 0.8);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease-out);
}

.about-disclosure[open] .about-disclosure-chevron {
  transform: rotate(-135deg);
  margin-top: 0.55rem;
}

.about-disclosure-body {
  padding: 0 1.25rem 1.35rem 1.25rem;
  padding-left: calc(1.25rem + 1.85rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-disclosure--inline .about-disclosure-body {
  padding-left: 1.25rem;
}

.about-disclosure--inline .about-disclosure-heading {
  gap: 0;
}

.about-disclosure-body p {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
}

.about-disclosure-body p:last-child {
  margin-bottom: 0;
}

.about-disclosure-body a {
  color: var(--accent-cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-disclosure-body a:hover {
  color: var(--brand);
}

.about-disclosure-footer {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
  font-size: 0.95rem;
}

.about-disclosure-dot {
  margin: 0 0.5rem;
  color: var(--muted);
  opacity: 0.65;
}

.about-promise-section {
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

.about-promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin-inline: auto;
}

@media (max-width: 860px) {
  .about-at-a-glance {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .about-disclosure-body {
    padding-left: 1.25rem;
  }

  .about-promise-grid {
    grid-template-columns: 1fr;
  }
}

.about .mission h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.about .mission > h2:nth-of-type(2) {
  margin-top: 1.35rem;
}

.about .mission h2 + .belief-stack {
  margin-top: 0.65rem;
}

/* “What we believe” — editorial rows, no bullet list */
.belief-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.belief-row {
  display: grid;
  grid-template-columns: 3px minmax(0, 1fr);
  gap: 1rem 1.1rem;
  align-items: stretch;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.belief-row:first-child {
  padding-top: 0.35rem;
}

.belief-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.belief-accent {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: var(--gradient-spectrum-v-1);
  box-shadow: 0 0 18px rgba(46, 232, 106, 0.25), 0 0 22px rgba(34, 211, 238, 0.12);
  align-self: stretch;
  min-height: 2.75rem;
}

.belief-accent--cyan {
  background: var(--gradient-spectrum-v-2);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.22), 0 0 22px rgba(126, 191, 233, 0.1);
}

.belief-accent--violet {
  background: var(--gradient-spectrum-v-3);
  box-shadow: 0 0 18px rgba(126, 191, 233, 0.2), 0 0 22px rgba(46, 232, 106, 0.08);
}

.belief-body {
  min-width: 0;
}

.belief-theme {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(139, 152, 171, 0.92);
}

.belief-copy {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.58;
  color: var(--muted);
}

.belief-copy strong {
  color: var(--text);
  font-weight: 600;
}

.belief-copy em {
  color: var(--text);
  font-style: italic;
}

.about .company-block {
  color: var(--muted);
  line-height: 1.8;
}

.about .cta-block {
  text-align: center;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(46, 232, 106, 0.12), transparent 52%),
    radial-gradient(circle at 80% 100%, rgba(126, 191, 233, 0.08), transparent 45%), var(--card-bg);
  box-shadow: 0 0 44px rgba(34, 211, 238, 0.07);
  backdrop-filter: blur(14px);
}

.about .cta-block p {
  color: var(--muted);
  max-width: 52ch;
  margin: 0.75rem auto 1.25rem;
}

/* 404 */
.not-found {
  min-height: 60vh;
  display: grid;
  align-items: center;
}

.not-found .inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.utility-page .not-found .inner {
  padding: 2.5rem 2rem 2.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.not-found h1 {
  font-size: clamp(3rem, 12vw, 5rem);
  margin: 0;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 32px rgba(46, 232, 106, 0.35));
  animation: glitchHint 6s ease-in-out infinite;
}

@keyframes glitchHint {
  0%,
  92%,
  100% {
    filter: drop-shadow(0 0 32px rgba(46, 232, 106, 0.35));
    transform: translate(0);
  }
  93% {
    filter: drop-shadow(-2px 0 0 rgba(34, 211, 238, 0.4));
    transform: translate(-1px, 0);
  }
  94% {
    filter: drop-shadow(2px 0 0 rgba(126, 191, 233, 0.35));
    transform: translate(1px, 0);
  }
}

.not-found .lead {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.5rem 0 1rem;
}

.not-found p {
  color: var(--muted);
  line-height: 1.65;
}

.not-found .actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
  }

  .site-nav {
    transition: none !important;
  }

  .site-header-overlay {
    transition: none !important;
  }

  .nav-toggle-bar {
    transition: none !important;
  }

  .scale-proof-bridge::before {
    filter: none;
  }

  .badge {
    animation: none;
  }

  .not-found h1 {
    animation: none;
  }

  :root[data-theme="light"] .utility-page .not-found h1 {
    filter: none;
  }

  .sr-reveal,
  .btn {
    transition: none;
    transform: none;
  }

  .sr-reveal:nth-child(n) {
    transition-delay: 0s !important;
  }
}

/* Punch lines & SEO-rich blocks */
.punch-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.punch-strip li {
  position: relative;
  flex: 1 1 220px;
  min-width: 200px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.45;
  border-left: none;
  padding: 0.35rem 0 0.35rem 1rem;
  background: linear-gradient(90deg, rgba(46, 232, 106, 0.07), rgba(34, 211, 238, 0.04), transparent);
  border-radius: 0 10px 10px 0;
}

.punch-strip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 3px;
  border-radius: 2px;
  background: var(--gradient-spectrum-v-1);
}

.punch-strip li:nth-child(2)::before {
  background: var(--gradient-spectrum-v-2);
}

.punch-strip li:nth-child(3)::before {
  background: var(--gradient-spectrum-v-3);
}

.punch-strip strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.text-link {
  font-weight: 700;
  color: var(--accent-cyan);
  text-decoration: none;
  border-bottom: 2px solid rgba(34, 211, 238, 0.5);
  transition: color 0.3s ease, border-color 0.3s ease, text-shadow 0.3s ease;
}

.text-link:hover {
  color: var(--brand);
  border-bottom-color: rgba(126, 191, 233, 0.75);
  text-shadow: 0 0 18px rgba(93, 255, 74, 0.3), 0 0 24px rgba(34, 211, 238, 0.12);
}

.hero-sub {
  margin: 1rem 0 0;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--muted);
  line-height: 1.5;
  max-width: 38ch;
}

.seo-prose {
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.02rem;
}

.seo-prose strong,
.seo-prose a {
  color: var(--text);
}

.seo-prose a {
  color: var(--accent-cyan);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(34, 211, 238, 0.45);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.seo-prose a:hover {
  color: var(--brand);
  text-decoration-color: rgba(126, 191, 233, 0.65);
}

.value-trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-trio .card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text);
}

.value-trio .card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.trademark-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 85ch;
}

/* EHR roadmap tiles */
.ehr-roadmap-section {
  border-block: 1px solid var(--border);
  background: rgba(8, 14, 22, 0.55);
}

.ehr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.ehr-tile {
  text-align: center;
  padding: 0.5rem;
}

.ehr-tile img {
  width: 100%;
  max-width: 190px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s var(--ease-out), filter 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.ehr-tile:hover img {
  transform: translateY(-4px);
  filter: brightness(1.08);
  box-shadow: 0 12px 40px rgba(46, 232, 106, 0.12), 0 0 36px rgba(34, 211, 238, 0.1);
}

.ehr-tile .ehr-pill {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  border: 1px solid rgba(34, 211, 238, 0.4);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.ehr-tile .ehr-caption {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}

.split-prose {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-top: 1rem;
}

.split-prose .seo-prose {
  margin: 0;
}

/* Platform page */
.platform-page .lead-block,
.platform-hero-lead {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.62;
  max-width: 58ch;
}

.platform-hero-inner {
  max-width: 720px;
}

.platform-hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-hero-chip {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(46, 232, 106, 0.07), rgba(34, 211, 238, 0.05), rgba(126, 191, 233, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.91rem;
  line-height: 1.48;
  color: var(--muted);
}

.platform-hero-chip-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.platform-hero-cta {
  margin: 1.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.platform-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.platform-section-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.platform-section-dek {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--muted);
}

.platform-pillar-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.platform-pillar-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.platform-pillar-title {
  margin: 0 0 0.65rem;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--text);
}

.platform-pillar-copy {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.62;
  color: var(--muted);
}

.platform-pillar-copy strong {
  color: var(--text);
}

.platform-pillar-copy em {
  color: var(--accent-cyan);
  font-style: normal;
  font-weight: 600;
}

.platform-clinical-signal-section .platform-section-head {
  margin-bottom: 1.75rem;
  max-width: 48rem;
}

.platform-clinical-signal-section .platform-section-title {
  margin-top: 0.65rem;
}

.platform-clinical-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.platform-clinical-signal-card {
  height: 100%;
}

.platform-clinical-signal-foot {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  max-width: 52rem;
  color: var(--muted);
}

.platform-impact-section .platform-section-head {
  margin-bottom: 2rem;
}

.platform-impact-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.platform-impact-panel {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(12, 18, 28, 0.45);
}

.platform-impact-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.platform-impact-panel p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--muted);
}

.platform-impact-panel strong {
  color: var(--text);
}

.platform-impact-foot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.platform-foot-chip {
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.platform-foot-chip strong {
  font-size: 0.92rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.platform-foot-chip span {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.platform-connect-section {
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(8, 14, 22, 0.35) 0%, transparent 60%),
    var(--gradient-surface-band);
}

.platform-connect-shell {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.platform-connect-title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text);
}

.platform-connect-copy {
  margin: 0 0 1rem;
  text-align: left;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
}

.platform-connect-copy a {
  color: var(--accent-cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.platform-connect-copy a:hover {
  color: var(--brand);
}

.platform-connect-legal {
  margin: 0 0 1.5rem;
  text-align: left;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.platform-connect-cta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.platform-final-cta .platform-final-links {
  margin: 1.35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.platform-final-dot {
  color: var(--muted);
  opacity: 0.55;
}

.cta-banner {
  margin-top: 2rem;
  padding: 2rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background:
    radial-gradient(circle at 18% 18%, rgba(46, 232, 106, 0.14), transparent 52%),
    radial-gradient(circle at 88% 78%, rgba(126, 191, 233, 0.1), transparent 45%),
    var(--card-bg);
  box-shadow: 0 0 48px rgba(34, 211, 238, 0.08);
  text-align: center;
}

.cta-banner h2 {
  margin: 0 0 0.5rem;
}

.cta-banner p {
  margin: 0 auto 1rem;
  max-width: 56ch;
  color: var(--muted);
}

/* Throughput / scale — reused on home, platform, solutions, integrations, etc. */
.scale-proof {
  position: relative;
  margin: 1.5rem 0 0;
  padding: 1.35rem clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 211, 238, 0.22);
  background:
    radial-gradient(ellipse 85% 120% at 10% 0%, rgba(46, 232, 106, 0.11), transparent 58%),
    radial-gradient(ellipse 70% 90% at 95% 100%, rgba(126, 191, 233, 0.09), transparent 52%),
    var(--card-bg);
  box-shadow: 0 0 44px rgba(34, 211, 238, 0.07);
  overflow: hidden;
}

.scale-proof--tight {
  margin-top: 0.75rem;
}

.scale-proof--hero {
  margin-top: 1.25rem;
}

/* “Bubble + bridge” — scientific notation + time side (clearer than twin columns) */
.scale-proof-visual {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.scale-proof-bubble {
  flex: 1 1 9.5rem;
  min-width: 0;
  text-align: center;
  padding: 1rem 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.scale-proof-bubble-n {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  background: var(--gradient-spectrum-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.scale-proof-bubble--time .scale-proof-bubble-n {
  font-variant-numeric: tabular-nums;
}

.scale-proof-bubble-k {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--muted);
  line-height: 1.35;
}

/* Prominent connector: gradient ring + clear arrow (not a thin line + offset chevron) */
.scale-proof-bridge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  align-self: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: linear-gradient(155deg, rgba(46, 232, 106, 0.22), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(34, 211, 238, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 22px rgba(34, 211, 238, 0.28),
    0 0 40px rgba(46, 232, 106, 0.12);
}

.scale-proof-bridge::before {
  content: "→";
  font-family: var(--font-display), system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-spectrum-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.45));
}

.scale-proof-bridge::after {
  content: none;
}

/* Smaller connector between capability chips (solutions map) */
.capability-scale-join.scale-proof-bridge {
  width: 2.65rem;
  height: 2.65rem;
}

.capability-scale-join.scale-proof-bridge::before {
  font-size: 1.25rem;
}

.scale-proof-tagline {
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}

.scale-proof-tagline strong {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 520px) {
  .scale-proof-visual {
    flex-direction: column;
    align-items: stretch;
  }

  .scale-proof-bridge {
    margin: 0.35rem auto;
    align-self: center;
  }

  .scale-proof-bridge::before {
    content: "↓";
    font-size: 1.45rem;
  }
}

@media (max-width: 900px) {
  .platform-pillar-grid,
  .platform-clinical-signal-grid,
  .platform-impact-split,
  .platform-impact-foot,
  .platform-hero-strip,
  .value-trio,
  .split-prose {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .home .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home .hero-copy-block {
    justify-self: center;
    max-width: 40rem;
    margin-inline: auto;
  }

  .home .hero-side {
    justify-self: center;
    max-width: min(24rem, 100%);
    width: 100%;
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .home .features,
  .home .platform-modules,
  .home .int-grid,
  .home .stats-metrics,
  .home .deep-grid,
  .solutions-hub .grid2,
  .solutions-hub .grid3,
  .solution-page .split,
  .solution-page .grid3,
  .solution-page .pillars,
  .solution-page .grid2-inner,
  .integrations-page .split,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home .platform-pillars {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 36rem;
    margin-inline: auto;
  }
}

@media (max-width: 860px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .solutions-hub .grid2,
  .solutions-hub .grid3,
  .solution-page .split,
  .solution-page .grid3,
  .solution-page .pillars,
  .solution-page .grid2-inner,
  .integrations-page .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 3.5rem 0;
  }

  .home .features,
  .home .platform-modules,
  .home .int-grid,
  .home .stats-metrics,
  .home .deep-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Light theme: cohesive emerald / teal system (toggle only; default stays dark) —— */
:root[data-theme="light"] {
  color-scheme: light;

  --bg: #f4f7f5;
  --bg-2: #eef2ef;
  --body-bg-end: #e5ebe7;
  --text: #0d1a14;
  --muted: #4a5d54;
  --surface: #ffffff;
  --card-bg: #ffffff;
  --border: rgba(13, 26, 20, 0.12);
  --shadow: 0 4px 20px rgba(13, 26, 20, 0.06), 0 1px 3px rgba(13, 26, 20, 0.04);
  --shadow-glow: 0 1px 0 rgba(255, 255, 255, 0.92) inset, 0 0 0 1px rgba(13, 26, 20, 0.06);

  --brand: #059669;
  --brand-dark: #047857;
  --border-glow: rgba(5, 150, 105, 0.32);
  --logo-sure: #0d1a14;
  --logo-rx: #047857;

  --accent-cyan: #0f766e;
  --accent-violet: #5c7f92;

  --gradient-spectrum-h: linear-gradient(90deg, #059669, #0d9488, #5c7f92);
  --gradient-spectrum-h-soft: linear-gradient(
    90deg,
    rgba(5, 150, 105, 0.88),
    rgba(13, 148, 136, 0.82),
    rgba(92, 127, 146, 0.82)
  );
  --gradient-spectrum-v-1: linear-gradient(180deg, #10b981, #0d9488);
  --gradient-spectrum-v-2: linear-gradient(180deg, #0d9488, #5c7f92);
  --gradient-spectrum-v-3: linear-gradient(180deg, #5c7f92, #047857);

  --gradient-mesh-1: radial-gradient(ellipse 85% 55% at 12% -5%, rgba(5, 150, 105, 0.07), transparent 58%);
  --gradient-mesh-2: radial-gradient(ellipse 72% 48% at 92% 6%, rgba(13, 148, 136, 0.055), transparent 52%);
  --gradient-mesh-3: radial-gradient(ellipse 58% 72% at 50% 102%, rgba(92, 127, 146, 0.05), transparent 48%);
  --gradient-surface-band: linear-gradient(
    180deg,
    rgba(5, 150, 105, 0.045) 0%,
    rgba(13, 148, 136, 0.03) 50%,
    rgba(92, 127, 146, 0.035) 100%
  );

  --glow-brand: 0 4px 18px rgba(5, 150, 105, 0.12);
  --glow-cyan: 0 4px 16px rgba(13, 148, 136, 0.1);
  --glow-violet: 0 4px 16px rgba(92, 127, 146, 0.08);
  --glow-tri: 0 4px 22px rgba(5, 150, 105, 0.07), 0 6px 28px rgba(13, 148, 136, 0.05),
    0 8px 32px rgba(92, 127, 146, 0.035);
}

:root[data-theme="light"] body {
  background-image: linear-gradient(165deg, var(--bg) 0%, var(--bg-2) 48%, var(--body-bg-end) 100%);
}

:root[data-theme="light"] body::before {
  opacity: 0.52;
}

:root[data-theme="light"] .card {
  background: var(--card-bg);
  border-color: var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

:root[data-theme="light"] .card:hover {
  border-color: rgba(5, 150, 105, 0.26);
  box-shadow: 0 10px 36px rgba(13, 26, 20, 0.08), 0 0 0 1px rgba(5, 150, 105, 0.07);
}

:root[data-theme="light"] .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.28);
}

:root[data-theme="light"] .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.34);
  filter: brightness(1.04);
}

:root[data-theme="light"] .btn-secondary {
  border-color: rgba(13, 26, 20, 0.14);
  background: #ffffff;
  color: var(--text);
  backdrop-filter: none;
}

:root[data-theme="light"] .btn-secondary:hover {
  border-color: rgba(5, 150, 105, 0.32);
  background: rgba(5, 150, 105, 0.06);
  box-shadow: none;
}

:root[data-theme="light"] .text-link {
  color: #047857;
  border-bottom-color: rgba(5, 150, 105, 0.48);
}

:root[data-theme="light"] .text-link:hover {
  color: #065f46;
  border-bottom-color: #065f46;
  text-shadow: none;
}

:root[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border);
}

:root[data-theme="light"] .site-header-overlay {
  background: rgba(13, 26, 20, 0.38);
}

:root[data-theme="light"] .nav-toggle {
  background: rgba(13, 26, 20, 0.04);
}

:root[data-theme="light"] .scale-proof {
  border-color: rgba(13, 148, 136, 0.22);
  box-shadow: 0 4px 28px rgba(13, 26, 20, 0.06);
}

:root[data-theme="light"] .scale-proof-bubble {
  border-color: rgba(13, 26, 20, 0.1);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

:root[data-theme="light"] .scale-proof-bridge {
  background: linear-gradient(155deg, rgba(5, 150, 105, 0.14), rgba(13, 148, 136, 0.1));
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 4px 18px rgba(13, 148, 136, 0.15);
}

:root[data-theme="light"] .scale-proof-tagline {
  border-top-color: rgba(13, 26, 20, 0.1);
}

:root[data-theme="light"] .capability-scale-chip {
  background: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.22);
  color: var(--brand-dark);
}

:root[data-theme="light"] .capability-scale-chip--time {
  background: rgba(13, 148, 136, 0.08);
  border-color: rgba(13, 148, 136, 0.22);
  color: var(--accent-cyan);
}

:root[data-theme="light"] .site-footer {
  background: #fafcfb;
  border-top-color: var(--border);
}

:root[data-theme="light"] .site-footer a:hover {
  color: var(--brand);
  text-shadow: none;
}

:root[data-theme="light"] .footer-email a {
  color: var(--brand-dark);
}

:root[data-theme="light"] .legal-body a:hover {
  color: var(--brand-dark);
  text-shadow: none;
}

:root[data-theme="light"] code {
  background: rgba(13, 26, 20, 0.055);
  border-color: var(--border);
  color: var(--text);
}

:root[data-theme="light"] .theme-toggle-label {
  color: var(--muted);
}

:root[data-theme="light"] .theme-toggle {
  background: #ffffff;
  border-color: var(--border);
}

:root[data-theme="light"] .theme-toggle:hover {
  border-color: rgba(5, 150, 105, 0.35);
}

:root[data-theme="light"] .theme-toggle[aria-checked="true"] {
  background: rgba(5, 150, 105, 0.12);
  border-color: rgba(5, 150, 105, 0.38);
}

:root[data-theme="light"] .theme-toggle[aria-checked="true"]::after {
  background: #047857;
}

:root[data-theme="light"] .badge-minimal {
  background: #f0fdf4;
  border: 1px solid rgba(5, 150, 105, 0.22);
  color: var(--brand-dark);
  box-shadow: none;
}

:root[data-theme="light"] .home .hero-bento-tile {
  background: #ffffff;
  border-color: var(--border);
}

:root[data-theme="light"] .home .hero-bento-tile:hover {
  border-color: rgba(5, 150, 105, 0.28);
  background: #fafcfb;
}

:root[data-theme="light"] .home .hero-bento-tile-ai {
  background: linear-gradient(145deg, rgba(5, 150, 105, 0.09), rgba(13, 148, 136, 0.06), #ffffff);
  border-color: rgba(5, 150, 105, 0.22);
}

:root[data-theme="light"] .home .hero-board {
  border-color: var(--border);
  background:
    radial-gradient(ellipse 95% 70% at 78% 8%, rgba(13, 148, 136, 0.08), transparent 52%),
    radial-gradient(ellipse 80% 55% at 12% 92%, rgba(5, 150, 105, 0.06), transparent 48%),
    linear-gradient(165deg, #ffffff 0%, #f7faf8 100%);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .home .hero-board-accent {
  opacity: 0.12;
}

:root[data-theme="light"] .stat-snapshot,
:root[data-theme="light"] .closing-trio-item {
  background: #ffffff;
  border-color: var(--border);
}

:root[data-theme="light"] .stats-proof-panel {
  background: linear-gradient(165deg, #ffffff 0%, #f7faf8 100%);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .stats-proof-metrics {
  border-top-color: var(--border);
  border-bottom-color: var(--border);
}

:root[data-theme="light"] .stats-proof-cell + .stats-proof-cell {
  border-left-color: var(--border);
}

/*
  Light: do not use `background:` shorthand here — it resets background-clip to border-box,
  which paints the whole span and leaves transparent text invisible (“block” bug).
*/
:root[data-theme="light"] .stats-proof-value {
  background-color: transparent;
  background-image: linear-gradient(135deg, #0d1a14 0%, #047857 42%, #0d9488 100%);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: none;
}

:root[data-theme="light"] .stats-proof-label {
  color: rgba(13, 26, 20, 0.55);
}

:root[data-theme="light"] .stats-proof-unit,
:root[data-theme="light"] .stats-proof-unit--below {
  color: var(--muted);
}

:root[data-theme="light"] .home .stats-trust-note {
  border-top-color: var(--border);
}

:root[data-theme="light"] .about-principles-section {
  background: linear-gradient(180deg, rgba(5, 150, 105, 0.06) 0%, transparent 45%, rgba(13, 148, 136, 0.04) 100%),
    var(--gradient-surface-band);
}

:root[data-theme="light"] .about-principle-card {
  border-color: var(--border);
  background: linear-gradient(165deg, #ffffff 0%, #f4faf7 100%);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .about-principle-card:hover {
  border-color: rgba(5, 150, 105, 0.28);
  box-shadow: var(--shadow), 0 0 0 1px rgba(5, 150, 105, 0.08);
}

:root[data-theme="light"] .about-principle-bar--a {
  box-shadow: 0 1px 0 rgba(5, 150, 105, 0.15);
}

:root[data-theme="light"] .about-principle-bar--b {
  box-shadow: 0 1px 0 rgba(13, 148, 136, 0.12);
}

:root[data-theme="light"] .about-principle-bar--c {
  box-shadow: 0 1px 0 rgba(92, 127, 146, 0.12);
}

:root[data-theme="light"] .about-principle-bar--d {
  box-shadow: 0 1px 0 rgba(5, 150, 105, 0.1);
}

:root[data-theme="light"] .platform-trust-strip {
  background: #f7faf8;
  border-color: var(--border);
}

:root[data-theme="light"] .platform-trust-item strong {
  color: var(--text);
}

:root[data-theme="light"] .security-posture {
  background: linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .security-posture-mark--a,
:root[data-theme="light"] .security-posture-mark--b,
:root[data-theme="light"] .security-posture-mark--c,
:root[data-theme="light"] .security-posture-mark--d {
  box-shadow: none;
}

:root[data-theme="light"] .home .platform-module-insights-row {
  background: linear-gradient(125deg, rgba(13, 148, 136, 0.08), rgba(92, 127, 146, 0.06), #ffffff);
  border-color: rgba(13, 148, 136, 0.2);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .eval-chip {
  background: #f7faf8;
  border-color: var(--border);
  color: var(--muted);
}

:root[data-theme="light"] .pain-chip {
  background: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.22);
}

:root[data-theme="light"] .home .hero-sub-lead {
  color: var(--text);
}

:root[data-theme="light"] .flow-visual-step {
  background: #ffffff;
  border-color: var(--border);
}

:root[data-theme="light"] .platform-module-feature .flow-visual-step {
  background: #fafcfb;
}

:root[data-theme="light"] .home .platform-module-feature .platform-trust-lede {
  border-top-color: rgba(13, 26, 20, 0.11);
}

:root[data-theme="light"] .stats-proof-citation-body p {
  color: var(--muted);
}

:root[data-theme="light"] .highlight {
  color: var(--brand-dark);
  text-shadow: none;
}

:root[data-theme="light"] .badge {
  color: var(--brand-dark);
  border-color: rgba(5, 150, 105, 0.28);
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(13, 148, 136, 0.06));
  box-shadow: none;
}

:root[data-theme="light"] .home .result-shell {
  border-color: rgba(5, 150, 105, 0.22);
  background: linear-gradient(165deg, rgba(5, 150, 105, 0.06) 0%, #ffffff 45%, #f7faf8 100%);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .home-integrations-teaser {
  border-top-color: var(--border);
  border-bottom-color: var(--border);
  background: linear-gradient(180deg, rgba(5, 150, 105, 0.04), transparent);
}

:root[data-theme="light"] .home .integrations {
  background: linear-gradient(to bottom, rgba(5, 150, 105, 0.04) 0%, transparent 42%, rgba(13, 148, 136, 0.03) 100%),
    #f8fafc;
  border-block-color: var(--border);
}

:root[data-theme="light"] .home .deep-content {
  background: #f8fafc;
  border-block-color: var(--border);
}

:root[data-theme="light"] .hero-value-pill--ai {
  background: rgba(13, 148, 136, 0.12);
  border-color: rgba(13, 148, 136, 0.28);
  color: var(--brand-dark);
}

:root[data-theme="light"] .contact label {
  color: var(--text);
}

:root[data-theme="light"] .contact input,
:root[data-theme="light"] .contact textarea {
  background: #ffffff;
}

:root[data-theme="light"] .contact input:focus,
:root[data-theme="light"] .contact textarea:focus {
  border-color: rgba(5, 150, 105, 0.42);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

:root[data-theme="light"] .contact .contact-message-hint {
  color: rgba(51, 65, 85, 0.9);
}

:root[data-theme="light"] .contact .contact-message-hint strong {
  color: #0f172a;
}

:root[data-theme="light"] .contact input.is-invalid,
:root[data-theme="light"] .contact textarea.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.2), 0 0 0 3px rgba(220, 38, 38, 0.1);
}

:root[data-theme="light"] .contact .field-error {
  color: #b91c1c;
}

:root[data-theme="light"] .contact .req {
  color: #dc2626;
}

/* —— Light theme: inner pages (surfaces, hairlines, labels — parity with home) —— */

:root[data-theme="light"] .security-principle-strip,
:root[data-theme="light"] .about-at-a-glance,
:root[data-theme="light"] .platform-hero-strip,
:root[data-theme="light"] .integrations-hero-strip {
  border-top-color: var(--border);
}

:root[data-theme="light"] .belief-row,
:root[data-theme="light"] .int-highlight {
  border-bottom-color: var(--border);
}

:root[data-theme="light"] .platform-impact-panel,
:root[data-theme="light"] .security-context-panel {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .platform-foot-chip {
  background: #fafcfb;
  border-color: var(--border);
  box-shadow: none;
}

:root[data-theme="light"] .platform-hero-chip,
:root[data-theme="light"] .integrations-hero-pill {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.07), rgba(13, 148, 136, 0.05), #ffffff);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .security-principle-pill {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.07), rgba(13, 148, 136, 0.05), #ffffff);
  border-color: var(--border);
}

:root[data-theme="light"] .platform-trust-strip {
  border-color: var(--border);
}

:root[data-theme="light"] .integrations-page .band {
  background: linear-gradient(to bottom, rgba(5, 150, 105, 0.06) 0%, transparent 50%, rgba(13, 148, 136, 0.045) 100%),
    var(--gradient-surface-band);
}

:root[data-theme="light"] .platform-connect-section {
  background: linear-gradient(180deg, rgba(5, 150, 105, 0.05) 0%, transparent 60%),
    var(--gradient-surface-band);
}

:root[data-theme="light"] .about-narrative {
  background: linear-gradient(180deg, rgba(5, 150, 105, 0.05) 0%, transparent 55%, rgba(13, 148, 136, 0.04) 100%),
    var(--gradient-surface-band);
}

:root[data-theme="light"] .about-disclosure {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .about-disclosure:hover {
  border-color: rgba(5, 150, 105, 0.22);
}

:root[data-theme="light"] .about-disclosure[open] {
  border-color: rgba(5, 150, 105, 0.28);
  box-shadow: var(--shadow), 0 0 0 1px rgba(5, 150, 105, 0.08);
}

:root[data-theme="light"] .about-disclosure-body {
  border-top-color: var(--border);
}

:root[data-theme="light"] .about-disclosure-index {
  color: rgba(71, 85, 105, 0.88);
}

:root[data-theme="light"] .about-disclosure-chevron {
  border-right-color: rgba(71, 85, 105, 0.55);
  border-bottom-color: rgba(71, 85, 105, 0.55);
}

:root[data-theme="light"] .about-disclosure summary:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(5, 150, 105, 0.45);
}

:root[data-theme="light"] .int-highlight-kicker,
:root[data-theme="light"] .belief-theme,
:root[data-theme="light"] .about-glance-label,
:root[data-theme="light"] .security-updated-text {
  color: var(--muted);
  text-shadow: none;
}

:root[data-theme="light"] .about-glance-item:nth-child(1) .about-glance-label,
:root[data-theme="light"] .about-glance-item:nth-child(2) .about-glance-label,
:root[data-theme="light"] .about-glance-item:nth-child(3) .about-glance-label,
:root[data-theme="light"] .about-glance-item:nth-child(4) .about-glance-label {
  text-shadow: none;
}

:root[data-theme="light"] .solution-page .accent-card {
  border-color: rgba(5, 150, 105, 0.24);
  background: linear-gradient(160deg, rgba(5, 150, 105, 0.09) 0%, rgba(13, 148, 136, 0.05) 45%, #ffffff 100%);
}

:root[data-theme="light"] .solution-page .cta-block {
  border-color: rgba(5, 150, 105, 0.24);
  box-shadow: var(--shadow);
  background: radial-gradient(circle at 40% 0%, rgba(5, 150, 105, 0.1), transparent 55%), #ffffff;
}

:root[data-theme="light"] .integrations-page .cta-row {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .integrations-page .mini a:hover,
:root[data-theme="light"] .integrations-page .split a:hover {
  text-shadow: none;
}

:root[data-theme="light"] .faq-list details[open] {
  border-color: rgba(5, 150, 105, 0.26);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .about .cta-block {
  border-color: var(--border);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 50% 0%, rgba(5, 150, 105, 0.1), transparent 52%),
    radial-gradient(circle at 80% 100%, rgba(92, 127, 146, 0.06), transparent 45%), #ffffff;
}

:root[data-theme="light"] .cta-banner {
  border-color: var(--border);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 18% 18%, rgba(5, 150, 105, 0.1), transparent 52%),
    radial-gradient(circle at 88% 78%, rgba(92, 127, 146, 0.07), transparent 45%), #ffffff;
}

:root[data-theme="light"] .utility-page .not-found h1 {
  filter: drop-shadow(0 2px 12px rgba(5, 150, 105, 0.2));
}

/* ---------- Rebate Shield (nav, home spotlight, rebate-readiness page) ---------- */

.nav-link-rebate {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  color: var(--muted);
  white-space: nowrap;
  position: relative;
}

.nav-link-rebate:hover {
  color: var(--text);
}

.nav-badge-new {
  display: inline-flex;
  align-items: center;
  padding: 0.14rem 0.5rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rebate-success-ink);
  background: var(--rebate-success);
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.35);
}

@media (min-width: 981px) {
  .nav-link-rebate::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rebate-success), var(--accent-cyan));
    border-radius: 2px;
    transition: width 0.35s var(--ease-out);
  }

  .nav-link-rebate:hover::after {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .nav-link-rebate {
    white-space: normal;
    padding: 0.75rem 0.65rem;
    border-radius: 12px;
  }

  .nav-link-rebate:hover,
  .nav-link-rebate:focus-visible {
    color: var(--text);
    background: rgba(16, 185, 129, 0.08);
  }
}

.badge-coming-soon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(16, 185, 129, 0.08));
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: #a7f3d0;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.12);
}

:root[data-theme="light"] .badge-coming-soon {
  color: var(--rebate-success-ink);
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: none;
}

.btn-rebate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.35rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: var(--rebate-success);
  color: var(--rebate-success-ink);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.35), 0 12px 32px rgba(16, 185, 129, 0.2);
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.25s ease,
    background 0.2s ease;
}

.btn-rebate:hover {
  background: #34d399;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.5), 0 16px 40px rgba(16, 185, 129, 0.28);
}

.btn-rebate:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.45), 0 12px 32px rgba(16, 185, 129, 0.2);
}

/* Home — rebate spotlight below hero (high-visibility “fintech” band) */
.rebate-spotlight--feature {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 3.25rem;
  overflow: hidden;
}

.rebate-spotlight-backdrop {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background:
    radial-gradient(ellipse 90% 70% at 50% -20%, rgba(16, 185, 129, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 45% at 0% 50%, rgba(34, 211, 238, 0.08), transparent 50%),
    radial-gradient(ellipse 45% 40% at 100% 60%, rgba(16, 185, 129, 0.07), transparent 50%),
    linear-gradient(180deg, rgba(16, 185, 129, 0.06) 0%, transparent 42%, rgba(5, 8, 12, 0.4) 100%);
  z-index: 0;
}

.rebate-spotlight-scan {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(16, 185, 129, 0.04) 48%,
    transparent 50%,
    transparent 100%
  );
  background-size: 100% 220%;
  animation: rebateSpotlightScan 7s ease-in-out infinite;
  opacity: 0.65;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .rebate-spotlight-scan {
    animation: none;
    opacity: 0.25;
  }
}

@keyframes rebateSpotlightScan {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 85%;
  }
}

.rebate-spotlight-stage {
  position: relative;
  z-index: 1;
}

.rebate-spotlight-card {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 2rem 2.65rem;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid rgba(16, 185, 129, 0.45);
  background:
    linear-gradient(165deg, rgba(16, 185, 129, 0.1) 0%, transparent 42%),
    linear-gradient(210deg, transparent 55%, rgba(34, 211, 238, 0.05) 100%),
    rgba(8, 14, 22, 0.88);
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.12),
    0 0 60px rgba(16, 185, 129, 0.14),
    0 24px 64px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
}

.rebate-spotlight-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.rebate-spotlight-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(16, 185, 129, 0.75);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}

.rebate-spotlight-corner--tl {
  top: 12px;
  left: 12px;
  border-width: 2px 0 0 2px;
  border-radius: 2px 0 0 0;
}

.rebate-spotlight-corner--tr {
  top: 12px;
  right: 12px;
  border-width: 2px 2px 0 0;
  border-radius: 0 2px 0 0;
}

.rebate-spotlight-corner--bl {
  bottom: 12px;
  left: 12px;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 2px;
}

.rebate-spotlight-corner--br {
  bottom: 12px;
  right: 12px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 2px 0;
}

.rebate-spotlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.rebate-spotlight-pipeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.15rem;
  font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(16, 185, 129, 0.88);
}

.rebate-spotlight-pipeline-arrow {
  color: rgba(110, 231, 183, 0.55);
  font-weight: 400;
  letter-spacing: 0;
}

.rebate-spotlight-headline {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  margin: 0 0 1.1rem;
}

.rebate-spotlight-line {
  display: block;
  max-width: 22ch;
}

.rebate-spotlight-line--lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.82);
}

.rebate-spotlight-line--impact {
  font-size: clamp(1.65rem, 4.5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
  text-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
}

.rebate-spotlight-highlight {
  background: linear-gradient(105deg, #6ee7b7 0%, #10b981 35%, #34d399 70%, #a7f3d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(16, 185, 129, 0.35));
}

.rebate-spotlight-sub {
  position: relative;
  z-index: 1;
  margin: 0 auto 1.65rem;
  max-width: 40rem;
  font-size: 1.08rem;
  line-height: 1.62;
  color: rgba(186, 198, 214, 0.95);
}

.rebate-spotlight-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.rebate-spotlight-btn {
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.45),
    0 0 32px rgba(16, 185, 129, 0.25),
    0 14px 36px rgba(0, 0, 0, 0.35);
}

:root[data-theme="light"] .rebate-spotlight-backdrop {
  background:
    radial-gradient(ellipse 90% 65% at 50% -15%, rgba(16, 185, 129, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 40%, rgba(34, 211, 238, 0.1), transparent 50%),
    linear-gradient(180deg, rgba(240, 253, 250, 0.9) 0%, rgba(248, 250, 252, 0.4) 100%);
}

:root[data-theme="light"] .rebate-spotlight-card {
  background:
    linear-gradient(165deg, rgba(16, 185, 129, 0.12) 0%, transparent 45%),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.1),
    0 20px 50px rgba(15, 23, 42, 0.08),
    0 0 80px rgba(16, 185, 129, 0.12);
}

:root[data-theme="light"] .rebate-spotlight-line--lead {
  color: rgba(51, 65, 85, 0.88);
}

:root[data-theme="light"] .rebate-spotlight-sub {
  color: rgba(71, 85, 105, 0.95);
}

:root[data-theme="light"] .rebate-spotlight-corner {
  border-color: rgba(5, 150, 105, 0.65);
}

/* Dedicated rebate page — fintech / terminal vibe (liquidity + data) */
.rebate-page {
  --rebate-mono: "IBM Plex Mono", ui-monospace, monospace;
  background: #04080c;
}

.rebate-page main.rebate-ft {
  position: relative;
  overflow-x: clip;
  background: #050a0f;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center top;
}

.rebate-ft-grid {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    radial-gradient(ellipse 55% 40% at 50% -10%, rgba(16, 185, 129, 0.14), transparent 55%),
    radial-gradient(ellipse 35% 30% at 100% 30%, rgba(34, 211, 238, 0.06), transparent 50%);
}

.rebate-ft-noise {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.035;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.rebate-ft-rail {
  pointer-events: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: max(0px, calc(50% - min(52rem, 92vw) / 2 - 1.25rem));
  width: 3px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 6rem 0;
  opacity: 0.55;
}

.rebate-ft-rail span {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.55), transparent);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.35);
}

@media (max-width: 900px) {
  .rebate-ft-rail {
    display: none;
  }
}

.rebate-ft-section {
  position: relative;
  z-index: 1;
}

.rebate-ft-container {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.rebate-ft-container--faq {
  max-width: 40rem;
}

.rebate-ft-container--panel {
  position: relative;
  padding: 2rem 1.5rem 2.25rem;
  border-radius: calc(var(--radius-xl) + 2px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: linear-gradient(165deg, rgba(16, 185, 129, 0.05) 0%, rgba(6, 10, 16, 0.5) 38%, rgba(6, 10, 16, 0.35) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.rebate-ft-container--panel::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  bottom: 1.25rem;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #10b981, rgba(34, 211, 238, 0.65), #10b981);
  opacity: 0.85;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.35);
}

@media (max-width: 600px) {
  .rebate-ft-container--panel {
    padding: 1.5rem 1.1rem 1.75rem;
  }

  .rebate-ft-container--panel::before {
    top: 0.75rem;
    bottom: 0.75rem;
  }
}

.rebate-hero--vault {
  padding-top: 2rem;
  padding-bottom: 1.25rem;
}

.rebate-hero-orbit {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: min(120vw, 52rem);
  height: min(85vw, 28rem);
  z-index: 0;
}

.rebate-orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
}

.rebate-orbit--a {
  width: 55%;
  height: 90%;
  left: 8%;
  top: 5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.16) 0%, transparent 68%);
  animation: rebateOrbitPulse 9s ease-in-out infinite;
}

.rebate-orbit--b {
  width: 50%;
  height: 85%;
  right: 5%;
  top: 10%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 65%);
  animation: rebateOrbitPulse 11s ease-in-out infinite reverse;
}

.rebate-orbit-ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.12);
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.05),
    inset 0 0 60px rgba(16, 185, 129, 0.06);
}

@keyframes rebateOrbitPulse {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rebate-orbit--a,
  .rebate-orbit--b {
    animation: none;
  }
}

.rebate-hero {
  padding-top: 2.5rem;
  padding-bottom: 0.5rem;
}

.rebate-hero-inner {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.rebate-hero-shell {
  position: relative;
  width: 100%;
  max-width: 44rem;
}

.rebate-hero-panel {
  position: relative;
  text-align: center;
  padding: 2.75rem 1.75rem 2.25rem;
  border-radius: calc(var(--radius-xl) + 6px);
  border: 1px solid rgba(16, 185, 129, 0.38);
  background:
    linear-gradient(155deg, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
    linear-gradient(210deg, transparent 60%, rgba(16, 185, 129, 0.04) 100%),
    rgba(5, 9, 14, 0.82);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 80px rgba(16, 185, 129, 0.12),
    0 28px 70px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
}

.rebate-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.rebate-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.1rem;
}

.rebate-pilot-pill {
  font-family: var(--rebate-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.55);
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.08);
}

.rebate-ft-kicker {
  font-family: var(--rebate-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(16, 185, 129, 0.85);
  margin: 0 0 0.75rem;
}

.rebate-hero-panel h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin: 0 0 1.1rem;
  line-height: 1.05;
}

.rebate-hero-title-top {
  font-family: var(--rebate-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(16, 185, 129, 0.75);
}

.rebate-hero-title-core {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  background: linear-gradient(120deg, #ecfdf5 0%, #6ee7b7 22%, #10b981 45%, #34d399 72%, #a7f3d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(16, 185, 129, 0.25));
}

.rebate-hero-title-sub {
  display: block;
  margin-top: 0.35rem;
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: rgba(226, 232, 240, 0.9);
}

.rebate-lead {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.62;
  color: rgba(147, 163, 184, 0.95);
}

.rebate-lead strong {
  color: var(--text);
}

.rebate-ticker {
  display: grid;
  gap: 0.35rem;
  max-width: 24rem;
  margin: 0 auto;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 185, 129, 0.32);
  background: rgba(0, 0, 0, 0.45);
  text-align: left;
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.08),
    inset 0 0 24px rgba(16, 185, 129, 0.05);
}

.rebate-ticker-row {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.15rem;
  font-size: 0.8rem;
  line-height: 1.35;
}

.rebate-ticker dt {
  font-family: var(--rebate-mono);
  font-weight: 500;
  color: rgba(16, 185, 129, 0.9);
  letter-spacing: 0.04em;
  margin: 0;
  white-space: nowrap;
}

.rebate-ticker dd {
  margin: 0;
  font-family: var(--rebate-mono);
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--text);
  text-align: left;
  justify-self: start;
}

.rebate-ft-label {
  font-family: var(--rebate-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(16, 185, 129, 0.75);
  margin: 0 0 0.6rem;
}

.rebate-ft-heading {
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.rebate-ft-copy {
  margin: 0;
  color: rgba(147, 163, 184, 0.96);
  line-height: 1.65;
  font-size: 1rem;
}

.rebate-ft-copy strong {
  color: var(--text);
}

.rebate-section--context {
  padding-top: 2.25rem;
  padding-bottom: 2rem;
}

/* Anatomy of the 2026 Rebate Shift — 3 columns + speed gauge */
.rebate-section--anatomy {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.rebate-anatomy-gauge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.rebate-anatomy-gauge {
  position: relative;
  width: 5.5rem;
  height: 3rem;
  flex-shrink: 0;
}

.rebate-gauge-arc {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2.8rem;
  height: 2.8rem;
  margin-left: -1.4rem;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: rgba(16, 185, 129, 0.3);
  border-right-color: rgba(52, 211, 153, 0.45);
  border-left-color: rgba(16, 185, 129, 0.2);
  transform-origin: center bottom;
  transform: rotate(135deg);
  box-shadow: inset 0 0 12px rgba(16, 185, 129, 0.08), 0 0 14px rgba(16, 185, 129, 0.12);
}

.rebate-gauge-arc--mid,
.rebate-gauge-arc--high {
  display: none;
}

.rebate-gauge-needle {
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  width: 2px;
  height: 1.5rem;
  background: linear-gradient(to top, #10b981, rgba(16, 185, 129, 0.5));
  border-radius: 2px;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(-40deg);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.45);
}

.rebate-gauge-label {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--rebate-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6ee7b7;
  white-space: nowrap;
}

.rebate-anatomy-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.rebate-anatomy-col {
  position: relative;
  padding: 1.5rem 1.25rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.22);
  background: linear-gradient(165deg, rgba(16, 185, 129, 0.06) 0%, rgba(8, 14, 20, 0.5) 100%);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.rebate-anatomy-col:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.1);
}

.rebate-anatomy-num {
  display: inline-block;
  font-family: var(--rebate-mono);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--rebate-success);
  margin-bottom: 0.6rem;
}

.rebate-anatomy-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.rebate-anatomy-col .rebate-ft-copy {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.58;
}

@media (max-width: 900px) {
  .rebate-anatomy-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.rebate-section--compare {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.rebate-compare {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 0.25rem;
}

.rebate-compare--vs {
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0.85rem 1rem;
}

.rebate-compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.rebate-compare-vs span {
  font-family: var(--rebate-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(16, 185, 129, 0.85);
  padding: 0.45rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.12);
}

@media (max-width: 720px) {
  .rebate-compare {
    grid-template-columns: 1fr;
  }

  .rebate-compare--vs {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .rebate-compare-vs {
    order: 2;
    padding: 0.15rem 0;
  }

  .rebate-compare-card--legacy {
    order: 1;
  }

  .rebate-compare-card--surerx {
    order: 3;
  }

  .rebate-compare-vs span {
    letter-spacing: 0.35em;
  }
}

.rebate-compare-card {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(8, 14, 20, 0.65);
}

.rebate-compare-card h3 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-family: var(--rebate-mono);
  letter-spacing: 0.02em;
}

.rebate-compare-card--legacy h3 {
  color: rgba(148, 163, 184, 0.95);
}

.rebate-compare-card--surerx {
  border-color: rgba(16, 185, 129, 0.35);
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.08) 0%, rgba(8, 14, 20, 0.8) 100%);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.06);
}

.rebate-compare-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.rebate-compare-tag {
  display: inline-block;
  margin-right: 0.35rem;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-family: var(--rebate-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(148, 163, 184, 0.15);
  color: rgba(226, 232, 240, 0.85);
  vertical-align: middle;
}

.rebate-compare-tag--live {
  background: rgba(16, 185, 129, 0.2);
  color: #a7f3d0;
}

.rebate-section--grid {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.rebate-section--faq {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.rebate-faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.rebate-faq-item {
  border-color: rgba(16, 185, 129, 0.15) !important;
  background: rgba(8, 14, 20, 0.55) !important;
}

.rebate-faq-item summary {
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.15rem 0;
}

.rebate-faq-item p {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.rebate-faq-item p strong {
  color: var(--text);
}

.rebate-faq-item a {
  color: var(--rebate-success);
  font-weight: 600;
}

.rebate-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.rebate-feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: none;
  margin: 0.35rem 0 0;
  padding: 0;
}

@media (max-width: 900px) {
  .rebate-feature-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }
}

.rebate-feature-card {
  padding: 2rem 1.75rem 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: var(--card-bg);
  position: relative;
  min-height: 100%;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.rebate-feature-card:hover {
  border-color: rgba(16, 185, 129, 0.42);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(16, 185, 129, 0.08);
}

.rebate-feature-index {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--rebate-success);
  margin-bottom: 0.85rem;
}

.rebate-feature-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.65rem;
  letter-spacing: -0.01em;
}

.rebate-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.rebate-feature-card p strong {
  color: var(--text);
}

/* —— Rebate page: liquidity & velocity (cash velocity) —— */
.rebate-section--velocity {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.rebate-velocity-outer {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.rebate-velocity-panel.rebate-ft-container--panel {
  padding-bottom: 2.5rem;
}

.rebate-velocity-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.8vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.rebate-velocity-title-break {
  display: block;
  background: linear-gradient(100deg, #a7f3d0 0%, #10b981 40%, #34d399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.2));
}

.rebate-velocity-hook {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fecaca;
  text-shadow: 0 0 40px rgba(248, 113, 113, 0.15);
}

.rebate-velocity-lede {
  margin-bottom: 1.25rem !important;
  max-width: 44rem;
}

.rebate-stat-callout {
  margin: 0 0 1.75rem;
  padding: 1.15rem 1.25rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.55);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.22) 0%, rgba(5, 46, 22, 0.65) 100%);
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.12),
    0 0 48px rgba(16, 185, 129, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rebate-stat-callout-kicker {
  display: block;
  font-family: var(--rebate-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6ee7b7;
  margin-bottom: 0.45rem;
}

.rebate-stat-callout-stat {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: #ecfdf5;
  font-weight: 500;
}

.rebate-stat-callout-stat strong {
  color: #fff;
  font-weight: 800;
}

.rebate-stat-foot {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(209, 250, 229, 0.75);
}

.rebate-stat-foot strong {
  color: #ecfdf5;
}

.rebate-velocity-h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.rebate-velocity-h3--timeline {
  margin-top: 1.75rem;
}

.rebate-cash-chart-dek {
  margin: 0 0 1rem;
  max-width: 38rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(147, 163, 184, 0.95);
}

.rebate-velocity-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0.25rem;
}

@media (max-width: 900px) {
  .rebate-velocity-cards {
    grid-template-columns: 1fr;
  }
}

.rebate-velocity-card {
  padding: 1.15rem 1.1rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: linear-gradient(160deg, rgba(16, 185, 129, 0.07) 0%, rgba(8, 14, 20, 0.75) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.rebate-velocity-card h4 {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #a7f3d0;
}

.rebate-velocity-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.rebate-velocity-card p strong {
  color: var(--text);
}

/* Cash-landing timeline: shared 30-day scale, pins show “payday” */
.rebate-cash-chart {
  margin-top: 0.35rem;
  padding: 1.5rem 1.25rem 1.35rem;
  border-radius: calc(var(--radius-xl) + 2px);
  border: 2px solid rgba(16, 185, 129, 0.4);
  background:
    linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
    rgba(0, 0, 0, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 48px rgba(16, 185, 129, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.35);
}

.rebate-cash-axis {
  display: flex;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0 0.15rem;
  font-family: var(--rebate-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
}

.rebate-cash-axis span:nth-child(2),
.rebate-cash-axis span:nth-child(3) {
  flex: 0 0 auto;
}

.rebate-cash-row {
  margin-bottom: 1.25rem;
}

.rebate-cash-row--win {
  margin-bottom: 1rem;
}

.rebate-cash-row-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.85rem;
  margin-bottom: 0.5rem;
}

.rebate-cash-who {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.rebate-cash-eta {
  font-family: var(--rebate-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.rebate-cash-eta--late {
  color: #fecaca;
  background: rgba(127, 29, 29, 0.35);
  border-color: rgba(248, 113, 113, 0.35);
}

.rebate-cash-eta--early {
  color: var(--rebate-success-ink);
  background: #10b981;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.45);
}

.rebate-cash-track {
  position: relative;
  height: 3.35rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: visible;
}

.rebate-cash-track-inner {
  position: absolute;
  left: 6px;
  right: 6px;
  top: 6px;
  bottom: 6px;
  border-radius: 7px;
  pointer-events: none;
}

.rebate-cash-track-inner--legacy {
  background: repeating-linear-gradient(
    -45deg,
    rgba(71, 85, 105, 0.55),
    rgba(71, 85, 105, 0.55) 5px,
    rgba(51, 65, 85, 0.5) 5px,
    rgba(51, 65, 85, 0.5) 10px
  );
  box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.12);
}

.rebate-cash-track-inner--surerx {
  background: linear-gradient(
    90deg,
    rgba(16, 185, 129, 0.45) 0%,
    rgba(16, 185, 129, 0.28) calc(100% * 11 / 30),
    rgba(30, 41, 59, 0.4) calc(100% * 11 / 30),
    rgba(30, 41, 59, 0.4) 100%
  );
  box-shadow:
    inset 0 0 24px rgba(16, 185, 129, 0.2),
    inset 0 0 0 1px rgba(52, 211, 153, 0.25);
}

.rebate-cash-pin {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  text-align: center;
}

.rebate-cash-pin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(15, 23, 42, 0.95);
  color: #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.rebate-cash-pin--late .rebate-cash-pin-icon {
  border-color: rgba(248, 113, 113, 0.5);
  color: #fecaca;
}

.rebate-cash-pin--early .rebate-cash-pin-icon {
  border-color: rgba(255, 255, 255, 0.45);
  background: linear-gradient(145deg, #34d399, #059669);
  color: #022c22;
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.55);
}

.rebate-cash-pin-text {
  font-family: var(--rebate-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.9);
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.rebate-cash-pin--early .rebate-cash-pin-text {
  color: #a7f3d0;
}

.rebate-cash-payoff {
  margin-top: 0.25rem;
  padding: 1rem 1rem 0.85rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid #10b981;
  background: linear-gradient(160deg, rgba(16, 185, 129, 0.28) 0%, rgba(6, 78, 59, 0.55) 100%);
  box-shadow: 0 0 36px rgba(16, 185, 129, 0.22);
}

.rebate-cash-payoff-arrow {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  color: #6ee7b7;
  margin-bottom: 0.2rem;
  animation: rebateCashNudge 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .rebate-cash-payoff-arrow {
    animation: none;
  }
}

@keyframes rebateCashNudge {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(3px);
    opacity: 1;
  }
}

.rebate-cash-payoff p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #ecfdf5;
}

.rebate-cash-payoff strong {
  color: #fff;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.35);
}

.rebate-cash-payoff-sub {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--rebate-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.88);
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

@media (max-width: 520px) {
  .rebate-cash-axis {
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }

  .rebate-cash-pin-text {
    font-size: 0.52rem;
  }

  .rebate-cash-pin-icon {
    width: 1.65rem;
    height: 1.65rem;
    font-size: 0.85rem;
  }
}

.rebate-section--cta {
  padding-top: 1.5rem;
  padding-bottom: 4rem;
  text-align: center;
}

.rebate-cta-inner {
  max-width: 28rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.rebate-cta-lead {
  margin: 0 0 1.35rem;
  color: rgba(147, 163, 184, 0.96);
  font-size: 1rem;
  line-height: 1.6;
}

.rebate-cta-lead strong {
  color: var(--text);
}

.rebate-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Rebate Shield page — small screens & safe areas */
@media (max-width: 720px) {
  .rebate-hero-inner {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .rebate-hero-panel {
    padding: 2.15rem 1.15rem 1.85rem;
  }

  .rebate-ticker {
    max-width: none;
    width: 100%;
  }

  .rebate-ft-container,
  .rebate-velocity-outer,
  .rebate-cta-inner {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .rebate-ft-container--panel {
    padding-left: max(1.1rem, env(safe-area-inset-left));
    padding-right: max(1.1rem, env(safe-area-inset-right));
  }

  .rebate-cash-chart {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .rebate-section--cta {
    padding-bottom: max(3rem, env(safe-area-inset-bottom));
  }
}

.rebate-form-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 1rem;
}

.rebate-form-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.rebate-form-intro h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.rebate-form-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.rebate-form-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.75rem 1.5rem 2rem !important;
  border-color: rgba(16, 185, 129, 0.22) !important;
}

.rebate-form-card label {
  margin-top: 0.45rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.rebate-optional {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85rem;
}

.rebate-form-card input:not([type="checkbox"]),
.rebate-form-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
  font: inherit;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.rebate-form-card input:focus,
.rebate-form-card textarea:focus {
  outline: none;
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.rebate-form-card input[name="companyWebsite"] {
  display: none !important;
}

.rebate-form-card .consent {
  display: flex;
  align-items: start;
  gap: 0.6rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
}

.rebate-form-card .consent a {
  color: var(--rebate-success);
  font-weight: 600;
}

.rebate-form-card .consent input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
}

.rebate-form-card .btn-rebate {
  margin-top: 0.35rem;
}

.rebate-form-status {
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

:root[data-theme="light"] .rebate-feature-card {
  background: #ffffff;
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .rebate-feature-card:hover {
  border-color: rgba(16, 185, 129, 0.35);
}

:root[data-theme="light"] .rebate-form-card input:not([type="checkbox"]),
:root[data-theme="light"] .rebate-form-card textarea {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.12);
  color: #0f172a;
}

:root[data-theme="light"] .rebate-lead,
:root[data-theme="light"] .rebate-section-lead,
:root[data-theme="light"] .rebate-spotlight-sub,
:root[data-theme="light"] .rebate-cta-lead {
  color: rgba(51, 65, 85, 0.92);
}

:root[data-theme="light"] .rebate-page {
  background: #f1f5f9;
}

:root[data-theme="light"] .rebate-hero-panel {
  background:
    linear-gradient(155deg, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    linear-gradient(210deg, transparent 60%, rgba(16, 185, 129, 0.03) 100%),
    linear-gradient(165deg, #ffffff 0%, #f7faf8 100%);
  border-color: rgba(16, 185, 129, 0.28);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06), 0 20px 50px rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .rebate-hero-panel::after {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

:root[data-theme="light"] .rebate-hero-title-top {
  color: #047857;
}

:root[data-theme="light"] .rebate-hero-title-core {
  background: linear-gradient(120deg, #064e3b 0%, #047857 35%, #059669 65%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: none;
}

:root[data-theme="light"] .rebate-hero-title-sub {
  color: rgba(51, 65, 85, 0.92);
}

:root[data-theme="light"] .rebate-ft-container--panel {
  background: linear-gradient(165deg, rgba(209, 250, 229, 0.35) 0%, #ffffff 40%, #f8fafc 100%);
  border-color: rgba(16, 185, 129, 0.22);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.05), 0 12px 40px rgba(15, 23, 42, 0.06);
}

:root[data-theme="light"] .rebate-ft-container--panel::before {
  background: linear-gradient(180deg, #059669, #0d9488, #059669);
  opacity: 0.9;
  box-shadow: 0 0 12px rgba(5, 150, 105, 0.25);
}

:root[data-theme="light"] .rebate-compare-card--legacy {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.12);
}

:root[data-theme="light"] .rebate-compare-card--legacy h3 {
  color: #334155;
}

:root[data-theme="light"] .rebate-page main.rebate-ft {
  background: #f8fafc;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

:root[data-theme="light"] .rebate-pilot-pill {
  color: var(--rebate-success-ink);
  border-color: rgba(16, 185, 129, 0.45);
  background: rgba(16, 185, 129, 0.12);
}

:root[data-theme="light"] .rebate-ft-kicker {
  color: rgba(4, 47, 46, 0.75);
}

:root[data-theme="light"] .rebate-ticker {
  background: #ffffff;
  border-color: rgba(16, 185, 129, 0.25);
}

:root[data-theme="light"] .rebate-ticker dt {
  color: #047857;
}

:root[data-theme="light"] .rebate-ticker dd {
  color: #0f172a;
}

:root[data-theme="light"] .rebate-ft-label {
  color: rgba(4, 120, 87, 0.85);
}

:root[data-theme="light"] .rebate-ft-copy {
  color: rgba(51, 65, 85, 0.92);
}

:root[data-theme="light"] .rebate-anatomy-col {
  background: linear-gradient(165deg, rgba(209, 250, 229, 0.4) 0%, #ffffff 100%);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.08);
}

:root[data-theme="light"] .rebate-anatomy-col:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

:root[data-theme="light"] .rebate-anatomy-title {
  color: #0f172a;
}

:root[data-theme="light"] .rebate-gauge-label {
  color: #047857;
}

:root[data-theme="light"] .rebate-compare-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
}

:root[data-theme="light"] .rebate-compare-card--surerx {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.1) 0%, #ffffff 55%);
  border-color: rgba(16, 185, 129, 0.28);
}

:root[data-theme="light"] .rebate-faq-item {
  background: #ffffff !important;
  border-color: rgba(16, 185, 129, 0.18) !important;
}

:root[data-theme="light"] .rebate-velocity-title,
:root[data-theme="light"] .rebate-velocity-h3 {
  color: #0f172a;
}

:root[data-theme="light"] .rebate-velocity-hook {
  color: #b91c1c;
  text-shadow: none;
}

:root[data-theme="light"] .rebate-stat-callout {
  border-color: rgba(16, 185, 129, 0.45);
  background: linear-gradient(135deg, rgba(209, 250, 229, 0.95) 0%, rgba(167, 243, 208, 0.55) 100%);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.12);
}

:root[data-theme="light"] .rebate-stat-callout-kicker {
  color: #047857;
}

:root[data-theme="light"] .rebate-stat-callout-stat {
  color: #14532d;
}

:root[data-theme="light"] .rebate-stat-callout-stat strong {
  color: #022c22;
}

:root[data-theme="light"] .rebate-stat-foot {
  color: rgba(22, 101, 52, 0.85);
}

:root[data-theme="light"] .rebate-stat-foot strong {
  color: #14532d;
}

:root[data-theme="light"] .rebate-cash-chart-dek {
  color: rgba(51, 65, 85, 0.9);
}

:root[data-theme="light"] .rebate-velocity-card {
  background: linear-gradient(160deg, rgba(209, 250, 229, 0.5) 0%, #ffffff 100%);
  border-color: rgba(16, 185, 129, 0.22);
}

:root[data-theme="light"] .rebate-velocity-card h4 {
  color: #047857;
}

:root[data-theme="light"] .rebate-cash-chart {
  background:
    linear-gradient(180deg, rgba(209, 250, 229, 0.5) 0%, #ffffff 55%),
    #ffffff;
  border-color: rgba(16, 185, 129, 0.38);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(16, 185, 129, 0.1);
}

:root[data-theme="light"] .rebate-cash-axis {
  color: #64748b;
}

:root[data-theme="light"] .rebate-cash-track {
  background: #f1f5f9;
  border-color: rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .rebate-cash-track-inner--legacy {
  box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.15);
}

:root[data-theme="light"] .rebate-cash-track-inner--surerx {
  box-shadow:
    inset 0 0 20px rgba(16, 185, 129, 0.15),
    inset 0 0 0 1px rgba(5, 150, 105, 0.2);
}

:root[data-theme="light"] .rebate-cash-pin-icon {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.12);
}

:root[data-theme="light"] .rebate-cash-pin--late .rebate-cash-pin-icon {
  color: #b91c1c;
  border-color: rgba(248, 113, 113, 0.45);
}

:root[data-theme="light"] .rebate-cash-pin-text {
  color: #334155;
}

:root[data-theme="light"] .rebate-cash-pin--early .rebate-cash-pin-text {
  color: #047857;
}

:root[data-theme="light"] .rebate-cash-eta--late {
  color: #b91c1c;
  background: rgba(254, 226, 226, 0.95);
  border-color: rgba(248, 113, 113, 0.5);
}

:root[data-theme="light"] .rebate-cash-payoff {
  background: linear-gradient(160deg, rgba(209, 250, 229, 0.95) 0%, rgba(167, 243, 208, 0.65) 100%);
  border-color: #059669;
}

:root[data-theme="light"] .rebate-cash-payoff p {
  color: #022c22;
}

:root[data-theme="light"] .rebate-cash-payoff strong {
  color: #064e3b;
  text-shadow: none;
}

:root[data-theme="light"] .rebate-cash-payoff-sub {
  color: #065f46;
}

:root[data-theme="light"] .rebate-cash-payoff-arrow {
  color: #059669;
}

:root[data-theme="dark"] {
  color-scheme: dark;
}
