@font-face {
  font-family: "Geist Pixel Circle";
  src: url("fonts/GeistPixel-Circle.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #8e8e8e;
  --nav-text: #2e2e2e;
  --pill-dark: #28282a;
  --sign-in-text: #c8c8c8;
  --nav-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  --trust-bg: #28282a;
  --trust-border: rgba(255, 255, 255, 0.4);
  --trust-text: #c4c2c3;
  --font-sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-display: "BubbledotICG-FinePos", "Geist Pixel Circle", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  height: 100dvh;
  padding: clamp(16px, 2.4vh, 28px) clamp(14px, 3vw, 32px);
  overflow: hidden;
  isolation: isolate;
}
.bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #000; }
.bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; z-index: 0; }

.header {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: min(100%, 720px);
  gap: clamp(18px, 2.8vw, 28px);
  animation: slideDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.logo {
  display: grid;
  flex: 0 0 auto;
  width: clamp(40px, 4.4vw, 46px);
  height: clamp(40px, 4.4vw, 46px);
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--nav-shadow);
  transition: transform 0.25s ease;
}
.logo:hover { transform: scale(1.04); }
.logo img { width: 72%; height: 72%; object-fit: contain; }
.desktop-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-around;
  max-width: 430px;
  height: clamp(44px, 5.2vw, 48px);
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--nav-shadow);
}
.desktop-nav a, .menu-sheet > a:not(.mobile-sign-in) {
  position: relative;
  display: grid;
  height: 100%;
  padding: 0 10px;
  place-items: center;
  color: var(--nav-text);
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 500;
  letter-spacing: -0.01em;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.desktop-nav a:hover, .menu-sheet > a:hover { opacity: 0.75; }
.desktop-nav a.active, .menu-sheet > a.active { opacity: 1; }
.desktop-nav a.active::after, .menu-sheet > a.active::after {
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
  box-shadow: -5px 0 #000, 5px 0 #000;
  content: "";
  transform: translateX(-50%);
}
.sign-in {
  display: grid;
  flex: 0 0 auto;
  height: clamp(44px, 5.2vw, 48px);
  padding: 0 clamp(18px, 2.4vw, 24px);
  place-items: center;
  border-radius: 999px;
  color: var(--sign-in-text);
  background: var(--pill-dark);
  box-shadow: var(--nav-shadow);
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.sign-in:hover { color: #fff; background: #323234; transform: translateY(-1px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  min-height: 0;
  text-align: center;
}
.trust-row {
  --trust-size: clamp(36px, 4.5vw, 42px);
  display: inline-flex;
  align-items: center;
  margin-bottom: clamp(16px, 2.5vh, 26px);
}
.avatar {
  position: relative;
  display: grid;
  width: var(--trust-size);
  height: var(--trust-size);
  flex: 0 0 auto;
  padding: 5px;
  place-items: center;
  border: 1px solid var(--trust-border);
  border-radius: 50%;
  background: var(--trust-bg);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.avatar + .avatar { margin-left: calc(var(--trust-size) * -0.42); }
.avatar-1 { z-index: 1; }
.avatar-2 { z-index: 2; }
.avatar-3 { z-index: 4; }
.avatar-1:hover, .avatar-3:hover { transform: translateY(-2px); }
.avatar-2:hover { transform: translateY(-4px); }
.avatar span { display: grid; width: 100%; height: 100%; place-items: center; border-radius: 50%; color: #111; background: #fff; }
.avatar i { font-size: calc(var(--trust-size) * 0.34); }
.trust-pill {
  z-index: 3;
  display: flex;
  align-items: center;
  height: var(--trust-size);
  margin-left: calc(var(--trust-size) * -0.42);
  padding: 0 calc(var(--trust-size) * 0.38) 0 calc(var(--trust-size) * 0.58);
  border: 1px solid var(--trust-border);
  border-radius: 999px;
  color: var(--trust-text);
  background: var(--trust-bg);
  font-size: clamp(12px, 1.4vw, 13.5px);
  font-weight: 500;
  white-space: nowrap;
}
.headline {
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(20px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.12;
}
.headline.anim { opacity: 1; transform: none; filter: none; animation: none; }
.headline span { display: block; overflow: hidden; white-space: nowrap; opacity: 0; transform: translateY(14px); animation: headlineFade 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.headline span:first-child { animation-delay: 0.12s; }
.headline span:last-child { animation-delay: 0.3s; }
.subhead {
  width: min(500px, 92%);
  margin: clamp(14px, 2.2vh, 22px) 0 0;
  color: #d0d0d0;
  font-size: clamp(calc(13.5px + 2pt), calc(1.55vw + 2pt), calc(16.5px + 2pt));
  font-weight: 400;
  line-height: 1.55;
  opacity: 0;
}
.subhead.anim { animation-name: revealMuted; }
.cta {
  margin-top: clamp(18px, 2.8vh, 28px);
  padding: clamp(11px, 1.6vh, 13px) clamp(22px, 3vw, 28px);
  border-radius: 999px;
  color: #000;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 0 22px rgba(255,255,255,0.32), 0 0 44px rgba(255,255,255,0.12);
  font-size: clamp(13.5px, 1.5vw, 14.5px);
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta.anim { animation-name: revealPulse; }
.cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 0 1px rgba(255,255,255,0.25), 0 0 30px rgba(255,255,255,0.48), 0 0 58px rgba(255,255,255,0.2); }

.stats {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 920px);
}
.stat { display: flex; flex-direction: column; align-items: center; min-width: 0; text-align: center; }
.stat-icon { height: 1em; font-family: var(--font-display); font-size: clamp(22px, 3vw, 33px); line-height: 1; }
.stat-value { margin-top: 6px; color: #fff; font-size: clamp(18px, 2.2vw, 26px); font-weight: 500; letter-spacing: -0.025em; font-variant-numeric: tabular-nums; }
.stat-label { margin-top: 3px; color: var(--muted); font-size: clamp(11px, 1.2vw, 12.5px); white-space: nowrap; }

.anim { opacity: 0; transform: translateY(22px) scale(0.98); filter: blur(6px); animation: reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: var(--d, 0s); }
body.menu-open { overflow: hidden; }
.mobile-menu[hidden] { display: none; }

@keyframes slideDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }
@keyframes reveal { to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes revealMuted { to { opacity: 0.8; transform: none; filter: blur(0); } }
@keyframes revealPulse { 0% { opacity: 0; transform: translateY(22px) scale(0.98); filter: blur(6px); } 68% { opacity: 1; transform: translateY(-2px) scale(1.025); filter: blur(0); } 100% { opacity: 1; transform: none; filter: blur(0); } }
@keyframes headlineFade { to { opacity: 1; transform: none; } }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes menuIn { from { opacity: 0; transform: translate(-50%, -14px) scale(0.96); } to { opacity: 1; transform: translateX(-50%); } }
@keyframes linkIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 720px) {
  .header { justify-content: space-between; width: 100%; }
  .logo { width: 48px; height: 48px; }
  .desktop-nav, .desktop-sign-in { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 11;
    display: flex;
    width: 48px;
    height: 48px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: var(--pill-dark);
    box-shadow: var(--nav-shadow);
    cursor: pointer;
    transition: background 0.25s ease;
  }
  .menu-toggle span { width: 18px; height: 1.5px; background: #fff; transition: transform 0.28s ease, opacity 0.2s ease, background 0.25s ease; }
  .menu-toggle[aria-expanded="true"] { background: #fff; }
  .menu-toggle[aria-expanded="true"] span { background: #000; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; z-index: 10; }
  .mobile-overlay { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: rgba(0,0,0,0.62); backdrop-filter: blur(6px); animation: overlayIn 0.28s ease both; }
  .menu-sheet {
    position: absolute;
    top: clamp(78px, 10vh, 96px);
    left: 50%;
    display: flex;
    width: min(calc(100% - 28px), 430px);
    padding: 22px 18px 20px;
    flex-direction: column;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    transform: translateX(-50%);
    animation: menuIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .menu-sheet > a:not(.mobile-sign-in) { min-height: 48px; font-size: 15px; opacity: 0; animation: linkIn 0.35s ease forwards; }
  .menu-sheet > a:nth-child(1) { animation-delay: 0.08s; }
  .menu-sheet > a:nth-child(2) { animation-delay: 0.12s; }
  .menu-sheet > a:nth-child(3) { animation-delay: 0.16s; }
  .menu-sheet > a:nth-child(4) { animation-delay: 0.2s; }
  .menu-sheet > a.active::after { bottom: 8px; }
  .mobile-sign-in { display: grid; min-height: 48px; margin-top: 12px; place-items: center; border-radius: 999px; color: var(--sign-in-text); background: var(--pill-dark); font-size: 14px; font-weight: 500; opacity: 0; animation: linkIn 0.35s 0.24s ease forwards; }
  .headline { letter-spacing: -0.08em; line-height: 1.05; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: clamp(10px, 1.8vh, 16px); }
  .stat-value { margin-top: 3px; }
  .stat-label { margin-top: 1px; }
}

@media (max-width: 420px) {
  .trust-row { --trust-size: 34px; }
  .trust-pill { font-size: 12px; }
  .headline { letter-spacing: -0.09em; line-height: 1.04; }
  .desktop-break { display: none; }
}

@media (max-height: 700px) {
  .trust-row { margin-bottom: 12px; }
  .subhead { margin-top: 10px; line-height: 1.42; }
  .cta { margin-top: 12px; }
  .stat-icon { font-size: clamp(18px, 2.5vw, 26px); }
  .stat-value { margin-top: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-delay: 0ms !important; transition-duration: 0.01ms !important; }
  .anim, .headline span, .menu-sheet > a, .mobile-sign-in { opacity: 1; transform: none; filter: none; }
  .headline { color: #fff; }
}

/* Below-fold site */
html { scroll-behavior: smooth; scroll-padding-top: 24px; background: #050505; }
.section-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.content-section { position: relative; padding: clamp(92px, 12vw, 160px) 0; color: #f4f4f4; background: #050505; }
.content-section + .content-section { border-top: 1px solid rgba(255,255,255,.1); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 26px; color: #999; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 1px; background: currentColor; content: ""; }
.section-heading, .split-heading h2, .security-heading h2, .final-cta h2 { margin: 0; font-family: var(--font-display); font-size: clamp(42px, 6vw, 78px); font-weight: 400; letter-spacing: -.055em; line-height: 1.02; }
.section-intro { max-width: 690px; margin: 30px 0 0; color: #999; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.65; }

.positioning { background: #f1f0eb; color: #111; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr); gap: clamp(60px, 10vw, 140px); }
.split-heading .eyebrow { color: #5f6661; }
.split-heading h2 em { color: #707570; font-style: normal; }
.context-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 38px; }
.context-tags span { padding: 7px 11px; border: 1px solid rgba(0,0,0,.15); border-radius: 999px; color: #666; font-size: 12px; }
.principles article { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 26px 0; border-top: 1px solid rgba(0,0,0,.15); }
.principles article:last-child { border-bottom: 1px solid rgba(0,0,0,.15); }
.principles article > span { color: #7c817d; font-size: 12px; }
.principles h3 { margin: 0 0 8px; font-size: 19px; font-weight: 600; letter-spacing: -.025em; }
.principles p { margin: 0; color: #666; font-size: 14px; line-height: 1.65; }

.platform-section { background: #080808; }
.tab-stage { display: grid; grid-template-columns: 330px 1fr; margin-top: 72px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 26px; background: #101010; box-shadow: 0 32px 90px rgba(0,0,0,.35); }
.tab-list { display: flex; flex-direction: column; padding: 16px; border-right: 1px solid rgba(255,255,255,.11); }
.content-tab { display: grid; grid-template-columns: 32px 1fr; padding: 22px 14px; border: 0; border-radius: 16px; color: #777; background: transparent; text-align: left; cursor: pointer; transition: color .2s, background .2s; }
.content-tab span { grid-row: span 2; font-family: var(--font-display); font-size: 17px; }
.content-tab strong { font-size: 14px; font-weight: 600; }
.content-tab small { margin-top: 6px; font-size: 11px; line-height: 1.4; }
.content-tab:hover { color: #bbb; }
.content-tab.active { color: #fff; background: #242424; }
.tab-panels { min-height: 540px; }
.content-panel { height: 100%; padding: clamp(38px, 6vw, 72px); background: radial-gradient(circle at 85% 10%, rgba(255,255,255,.08), transparent 30%); }
.panel-number { color: #777; font-family: var(--font-display); font-size: 18px; }
.content-panel h3 { max-width: 680px; margin: 30px 0 20px; font-size: clamp(30px, 4vw, 52px); font-weight: 500; letter-spacing: -.045em; line-height: 1.05; }
.content-panel p { max-width: 700px; margin: 0; color: #999; font-size: 16px; line-height: 1.65; }
.market-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 44px; }
.market-chips span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #c4c4c4; font-size: 12px; }
.data-lines { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.data-lines span { padding: 22px 10px 0 0; color: #888; font-size: 12px; }
.signal-box { display: grid; gap: 12px; margin-top: 44px; padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.04); }
.signal-box small { color: #888; letter-spacing: .12em; }
.signal-box strong { max-width: 650px; font-size: 19px; line-height: 1.5; }

.solutions-section { background: #f1f0eb; color: #111; }
.solutions-section .eyebrow, .solutions-section .section-intro { color: #69706b; }
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 72px; overflow: hidden; border: 1px solid rgba(0,0,0,.14); border-radius: 24px; background: rgba(0,0,0,.14); }
.solution-card { min-height: 380px; padding: clamp(30px, 5vw, 58px); background: #f7f6f1; transition: background .25s, transform .25s; }
.solution-card:hover { background: #fff; }
.solution-card > span { color: #737a75; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.solution-card h3 { max-width: 450px; margin: 44px 0 20px; font-size: clamp(25px, 3vw, 38px); font-weight: 500; letter-spacing: -.04em; line-height: 1.08; }
.solution-card p { max-width: 490px; margin: 0; color: #666; font-size: 15px; line-height: 1.7; }
.solution-card strong { display: block; margin-top: 42px; color: #222; font-size: 13px; }

.security-section { background: #0b1512; }
.security-heading { display: grid; grid-template-columns: 1fr minmax(300px, .65fr); align-items: end; gap: 80px; }
.security-heading p { margin: 0; color: #97a09b; font-size: 17px; line-height: 1.7; }
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 82px; background: rgba(255,255,255,.13); }
.security-grid article { min-height: 280px; padding: 38px; background: #0b1512; }
.security-grid article > span { font-family: var(--font-display); font-size: 30px; }
.security-grid h3 { margin: 50px 0 12px; font-size: 18px; font-weight: 600; }
.security-grid p { margin: 0; color: #8e9893; font-size: 14px; line-height: 1.65; }

.final-cta { padding: clamp(110px, 16vw, 210px) 0; color: #111; background: #fff; text-align: center; }
.final-cta .section-shell { display: flex; flex-direction: column; align-items: center; }
.final-cta .eyebrow { color: #777; }
.final-cta p:not(.eyebrow) { margin: 30px 0; color: #666; font-size: 18px; }
.final-cta a { display: inline-flex; align-items: center; gap: 20px; padding: 15px 24px; border-radius: 999px; color: #fff; background: #111; font-size: 14px; font-weight: 600; }
.final-cta a span { font-size: 18px; }

.site-footer { padding: 72px 0 26px; color: #aaa; background: #050505; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 60px; }
.footer-brand { color: #fff; font-family: var(--font-display); font-size: 31px; }
.footer-grid p { max-width: 250px; font-size: 13px; }
.footer-grid h4 { margin: 0 0 20px; color: #fff; font-size: 13px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(:first-child) a { margin: 5px 0; font-size: 12px; transition: color .2s; }
.footer-grid > div:not(:first-child) a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 70px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

.reveal-on-scroll { opacity: 1; transform: none; transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal-ready .reveal-on-scroll { opacity: 0; transform: translateY(28px); }
.reveal-ready .reveal-on-scroll.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .split-heading, .security-heading { grid-template-columns: 1fr; gap: 60px; }
  .tab-stage { grid-template-columns: 1fr; }
  .tab-list { display: grid; grid-template-columns: repeat(2, 1fr); border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
  .tab-panels { min-height: 480px; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .section-shell { width: min(100% - 28px, 1180px); }
  .content-section { padding: 86px 0; }
  .section-heading, .split-heading h2, .security-heading h2, .final-cta h2 { font-size: clamp(34px, 11vw, 52px); }
  .split-heading { grid-template-columns: 1fr; }
  .tab-stage { margin-top: 48px; border-radius: 20px; }
  .tab-list { grid-template-columns: 1fr; }
  .content-tab { padding: 15px 12px; }
  .content-tab small { display: none; }
  .tab-panels { min-height: 510px; }
  .content-panel { padding: 34px 24px; }
  .data-lines { grid-template-columns: 1fr; }
  .solution-grid, .security-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 330px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px 26px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-on-scroll { opacity: 1; transform: none; }
}

/* Monochrome theme */
.bg-video { filter: grayscale(1) contrast(1.08); }
.positioning,
.solutions-section,
.final-cta { color: #000; background: #fff; }
.platform-section,
.security-section,
.site-footer { color: #fff; background: #000; }
.content-section + .content-section { border-color: #2a2a2a; }
.split-heading .eyebrow,
.solutions-section .eyebrow,
.solutions-section .section-intro,
.final-cta .eyebrow,
.section-intro,
.security-heading p,
.security-grid p { color: #777; }
.split-heading h2 em { color: #555; }
.context-tags span { border-color: #bbb; color: #555; }
.principles article { border-color: #ccc; }
.principles article > span,
.principles p { color: #666; }
.tab-stage { border-color: #333; background: #0a0a0a; box-shadow: none; }
.tab-list { border-color: #333; }
.content-tab.active { background: #fff; color: #000; }
.content-panel { background: #000; }
.market-chips span,
.signal-box { border-color: #444; background: #0a0a0a; }
.solution-grid { border-color: #bbb; background: #bbb; }
.solution-card,
.solution-card:hover { background: #fff; }
.security-grid { background: #333; }
.security-grid article { background: #000; }
.final-cta a { color: #fff; background: #000; }
