/*
  AISOD SMC — Minimal, accessible, responsive styles
  - System fonts for performance
  - CSS variables for easy theming
*/

:root {
  --bg: #0b1020;
  --panel: #0f172a;
  --muted: #0d1326;
  --text: #e5e7eb;
  --subtle: #9ca3af;
  --primary: #0ea5e9;
  --primary-900: #075985;
  --ring: rgba(14, 165, 233, 0.25);
  --success: #22c55e;
  --warning: #f59e0b;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: linear-gradient(180deg, #0b1020 0%, #0b1020 50%, #0a142a 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

.narrow { max-width: 880px; }

.skip-to-content {
  position: absolute;
  left: -999px;
  top: -999px;
}
.skip-to-content:focus {
  left: 1rem;
  top: 1rem;
  background: var(--primary);
  color: #001018;
  padding: .5rem .75rem;
  border-radius: .5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,16,32,0.7);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(148,163,184,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}
.brand-logo { width: 32px; height: 32px; object-fit: contain; border-radius: 4px; }
.brand-text { letter-spacing: .4px; }

.nav { display: none; }
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  padding: .5rem .75rem;
  border-radius: .5rem;
}
.nav a:hover { background: rgba(148,163,184,0.12); }
.nav a:focus { outline: 3px solid var(--ring); outline-offset: 2px; }

.nav-toggle {
  display: inline-grid;
  gap: 4px;
  border: 1px solid rgba(148,163,184,0.2);
  background: transparent;
  color: var(--text);
  border-radius: .5rem;
  padding: .4rem .5rem;
}
.nav-toggle-bar { width: 22px; height: 2px; background: var(--text); display: block; }

@media (min-width: 960px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
}

.nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--panel); border-bottom: 1px solid rgba(148,163,184,0.15); }
.nav.open ul { flex-direction: column; padding: .75rem; }

.hero {
  position: relative;
  padding: 4.5rem 0 3rem;
}
.hero-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; }
}
.lead { font-size: 1.1rem; color: var(--subtle); }
.hero-actions { display: flex; gap: .75rem; margin-top: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
  border-radius: .6rem;
  padding: .7rem 1rem;
  border: 1px solid rgba(148,163,184,0.2);
  color: var(--text);
}
.btn:focus { outline: 3px solid var(--ring); outline-offset: 2px; }
.btn-primary { background: linear-gradient(180deg, #22d3ee 0%, var(--primary) 60%); color: #001018; border: none; font-weight: 700; }
.btn-ghost { background: transparent; }
.btn.block { display: flex; width: 100%; }

.badge { background: rgba(14,165,233,.18); color: #7dd3fc; border: 1px solid rgba(14,165,233,.35); padding: .25rem .5rem; border-radius: .5rem; font-size: .8rem; }
.metric { color: #a7f3d0; background: rgba(16,185,129,.14); border: 1px solid rgba(16,185,129,.35); padding: .25rem .5rem; border-radius: .5rem; font-size: .8rem; }
.hero-visual { position: relative; min-height: 280px; overflow: visible; }
.hero-image { width: 100%; max-width: 960px; display: block; margin: 0 auto; filter: drop-shadow(0 20px 50px rgba(2,6,23,.18)); border-radius: 14px; }
@media (min-width: 1400px) {
  .hero-image { max-width: 1040px; }
}
.phone-mockup { position: absolute; right: -8px; top: -10px; width: 280px; height: 530px; border-radius: 30px; background: linear-gradient(180deg, #0b132a 0%, #0b1f3a 100%); border: 1px solid rgba(148,163,184,0.15); box-shadow: 0 20px 60px rgba(0,0,0,.55); transform: rotate(-4deg); z-index: 2; }
.phone-mockup.alt { right: 150px; top: 10px; width: 250px; height: 500px; transform: rotate(8deg); opacity: .9; z-index: 1; filter: saturate(1.1); }
.phone-notch { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 96px; height: 18px; background: #050a18; border-radius: 0 0 10px 10px; }
.phone-screen { position: absolute; inset: 14px; border-radius: 22px; background: linear-gradient(180deg, #051026 0%, #061329 100%); overflow: hidden; border: 1px solid rgba(148,163,184,0.08); }
.phone-topbar { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .4rem .5rem; background: rgba(2,6,23,.25); border-bottom: 1px solid rgba(148,163,184,0.08); }
.phone-topbar .peer { display: inline-flex; align-items: center; gap: .35rem; }
.phone-topbar .avatar { width: 16px; height: 16px; border-radius: 999px; object-fit: cover; border: 1px solid rgba(148,163,184,0.25); }
.phone-topbar .dot { width: 8px; height: 8px; border-radius: 999px; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
.phone-topbar .name { font-weight: 700; color: var(--text); font-size: .9rem; }
.phone-topbar .status { display: inline-flex; align-items: center; gap: 2px; }
.phone-topbar .bar { width: 3px; height: 9px; background: #93c5fd; border-radius: 2px; opacity: .7; }
.chat { padding: .6rem; display: grid; gap: .4rem; }
.msg { max-width: 85%; padding: .45rem .6rem; border-radius: 14px; font-size: .9rem; box-shadow: 0 8px 24px rgba(0,0,0,.25); opacity: 0; transform: translateY(8px); }
.msg.in { background: #0b7622; color: #eafff2; border: 1px solid rgba(16,185,129,.35); justify-self: start; }
.msg.out { background: #0b1328; color: #c7d2fe; border: 1px solid rgba(99,102,241,.35); justify-self: end; }
.composer { position: absolute; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr auto; gap: .4rem; padding: .5rem; background: linear-gradient(180deg, transparent, rgba(2,6,23,.6)); }
.composer .field { background: #0a1427; border: 1px solid rgba(148,163,184,0.22); border-radius: 999px; padding: .5rem .8rem; color: var(--subtle); }
.composer .send { width: 36px; height: 36px; display: grid; place-items: center; background: var(--primary); color: #001018; border-radius: 999px; font-weight: 900; box-shadow: 0 10px 30px rgba(14,165,233,.35); }
.msg.revealed { opacity: 1; transform: translateY(0); transition: all .35s ease; }
.hero-card { position: relative; z-index: 2; background: linear-gradient(180deg, #0b1228 0%, #0b1a33 100%); border: 1px solid rgba(148,163,184,0.12); border-radius: 1rem; padding: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,.45); }
.hero-card-row { display: flex; gap: .5rem; align-items: center; }
.hero-card-body { margin-top: .75rem; color: var(--subtle); font-style: italic; }
.ring { position: absolute; border-radius: 50%; filter: blur(24px); opacity: .4; }
.ring-1 { width: 260px; height: 260px; background: radial-gradient(closest-side, rgba(14,165,233,.65), transparent); top: -10px; right: 10px; }
.ring-2 { width: 220px; height: 220px; background: radial-gradient(closest-side, rgba(99,102,241,.55), transparent); bottom: -10px; left: -20px; }

/* Platform icons and reveal */
.platform-icons { display: flex; align-items: center; gap: .35rem; margin-top: .6rem; }
.icon-circle { width: 28px; height: 28px; border-radius: 999px; display: inline-grid; place-items: center; background: rgba(148,163,184,0.12); color: #93c5fd; border: 1px solid rgba(148,163,184,0.2); box-shadow: 0 12px 24px rgba(0,0,0,.25); }
.icon-circle.wa { color: #86efac; border-color: rgba(34,197,94,.35); }
.icon-circle.ig { color: #f0abfc; border-color: rgba(217,70,239,.35); }
.icon-circle.fb { color: #93c5fd; border-color: rgba(59,130,246,.35); }
.icon-circle.tg { color: #7dd3fc; border-color: rgba(14,165,233,.35); }

[data-reveal] { opacity: 0; transform: translateY(8px); transition: all .4s ease; }
[data-reveal].shown { opacity: 1; transform: translateY(0); }

/* Hero background mesh and laptop mock */
/* Removed background blobs and laptop mock in favor of a single hero image */

.trusted { display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem; color: var(--subtle); padding: .6rem .75rem; border: 1px solid rgba(15,23,42,.06); border-radius: .75rem; background: var(--panel); overflow: hidden; }
.trusted .label { font-weight: 600; }
.trusted .brands { display: inline-flex; gap: .5rem; flex-wrap: wrap; }
.brand-pill { border: 1px solid rgba(148,163,184,.18); background: rgba(148,163,184,.08); color: #cbd5e1; padding: .25rem .5rem; border-radius: 999px; font-size: .85rem; }

.stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .75rem; margin-top: 1rem; }
.stat { background: linear-gradient(180deg, #0b1228, #0b1a33); border: 1px solid rgba(148,163,184,.12); border-radius: .8rem; padding: .8rem; text-align: center; }
.stat .num { display: block; font-weight: 800; font-size: 1.3rem; }
.stat .cap { display: block; color: var(--subtle); font-size: .9rem; }

@media (max-width: 1199px) {
  .laptop-mockup { right: 60px; width: 460px; }
}
@media (max-width: 959px) {
  /* Mobile-first hero adjustments */
  .hero { padding: 2.25rem 0 1.75rem; }
  .hero-grid { display: flex; flex-direction: column; gap: 1.25rem; }
  .hero-visual { order: -1; margin-top: .5rem; }
  .hero-image { width: min(96vw, 580px); margin: 0 auto .5rem; border-radius: 12px; }
  .hero-copy { text-align: center; }
  .hero-actions { justify-content: center; }
  .platform-icons { justify-content: center; }
  .trusted { flex-direction: column; align-items: center; text-align: center; gap: .5rem; }
  .trusted .brands { display: block; white-space: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: .25rem; margin-top: .15rem; scroll-snap-type: x mandatory; scroll-padding: .25rem; mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent); max-width: 100%; }
  .trusted .brands::-webkit-scrollbar { height: 6px; }
  .trusted .brands::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 999px; }
  .brand-pill { display: inline-flex; font-size: .8rem; padding: .3rem .55rem; margin-right: .4rem; scroll-snap-align: start; }
  .stats { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: .6rem; }
  .stat { padding: .7rem; }
}

.section { padding: 3.5rem 0; }
.section.muted { background: rgba(2,6,23,.35); border-top: 1px solid rgba(148,163,184,0.1); border-bottom: 1px solid rgba(148,163,184,0.1); }

h1, h2, h3 { line-height: 1.2; margin: 0 0 .5rem; }
h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h2 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.2rem); }

.feature-grid { display: grid; gap: 1rem; grid-template-columns: repeat(1, minmax(0,1fr)); }
@media (min-width: 700px) { .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.feature { background: linear-gradient(180deg, #0b1228 0%, #0b1a33 100%); border: 1px solid rgba(148,163,184,0.12); border-radius: .9rem; padding: 1rem; }

.how-grid { display: grid; gap: 1rem; grid-template-columns: repeat(1, minmax(0,1fr)); }
@media (min-width: 900px) { .how-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.how { background: linear-gradient(180deg, #0b1228 0%, #0b1a33 100%); border: 1px solid rgba(148,163,184,0.12); border-radius: .9rem; padding: 1rem; }

.pricing-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.billing-toggle { display: inline-flex; align-items: center; gap: .5rem; color: var(--subtle); }
.billing-toggle .save { color: #86efac; font-weight: 700; }
.switch { position: relative; display: inline-block; width: 46px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background: #1f2937; transition: .2s; border-radius: 999px; }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 4px; top: 4px; background-color: white; transition: .2s; border-radius: 999px; }
.switch input:checked + .slider { background: var(--primary); }
.switch input:checked + .slider:before { transform: translateX(20px); }

.plan-grid { display: grid; gap: 1rem; grid-template-columns: repeat(1, minmax(0,1fr)); }
@media (min-width: 900px) { .plan-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.plan { background: linear-gradient(180deg, #0b1228 0%, #0b1a33 100%); border: 1px solid rgba(148,163,184,0.12); border-radius: 1rem; padding: 1rem; display: flex; flex-direction: column; }
.plan.highlighted { border-color: rgba(14,165,233,.5); box-shadow: 0 0 0 3px rgba(14,165,233,.15) inset; }
.plan-price { font-weight: 800; font-size: 1.6rem; margin: .25rem 0; }
.plan-note { color: var(--subtle); margin: 0 0 .5rem; }
.plan-features { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; color: var(--text); }
.billing-hint { color: var(--subtle); font-size: .95rem; margin-top: .5rem; }
.trial { color: #a7f3d0; margin-top: .25rem; }

.addons { margin-top: 1.5rem; }
.addon-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.addon-list li { display: flex; align-items: center; justify-content: space-between; background: #0b1228; border: 1px solid rgba(148,163,184,0.12); border-radius: .75rem; padding: .6rem .8rem; }
.addon-list .price { color: #7dd3fc; font-weight: 700; }
.payment-note { color: var(--subtle); margin-top: .5rem; }

.calc-card { margin-top: 1.25rem; background: linear-gradient(180deg, #0b1228 0%, #0b1a33 100%); border: 1px solid rgba(148,163,184,0.12); border-radius: 1rem; overflow: hidden; }
.calc-card-header { padding: 1rem 1rem .25rem; }
.calc-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; padding: 0 1rem 1rem; }
@media (min-width: 900px) { .calc-grid { grid-template-columns: 1.2fr .8fr; } }
.control { background: rgba(2,6,23,.25); border: 1px solid rgba(148,163,184,0.08); border-radius: .75rem; padding: .75rem; }
.control-label { color: var(--subtle); margin-bottom: .5rem; font-weight: 600; }
.plan-options { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; background: #0a1427; border: 1px solid rgba(148,163,184,0.2); border-radius: 999px; padding: .35rem .6rem; gap: .4rem; cursor: pointer; }
.chip input { appearance: none; width: 14px; height: 14px; border: 2px solid #7dd3fc; border-radius: 999px; display: inline-block; position: relative; }
.chip input:checked { background: #7dd3fc; border-color: #7dd3fc; }
.addon-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .5rem; }
.addon-check { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .5rem; background: #0a1427; border: 1px solid rgba(148,163,184,0.2); border-radius: .6rem; padding: .5rem .6rem; width: 100%; }
.addon-check input { accent-color: var(--primary); }
.addon-price { color: #7dd3fc; font-weight: 700; white-space: nowrap; justify-self: end; }

/* Improve mobile layout for add-ons */
@media (max-width: 520px) {
  .addon-grid { grid-template-columns: 1fr; }
}

.calc-summary { }
.summary-card { background: rgba(2,6,23,.25); border: 1px solid rgba(148,163,184,0.12); border-radius: .75rem; padding: .9rem; }
.summary-card .row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: .35rem 0; }
.summary-card .row.total { font-size: 1.15rem; font-weight: 800; }
.summary-card .row.setup { color: var(--subtle); }
.summary-card .row.first { color: #a7f3d0; font-weight: 700; }
.summary-card hr { border: none; border-top: 1px solid rgba(148,163,184,0.12); margin: .6rem 0; }
.summary-card .small { margin-top: .25rem; }

.testimonials-grid { display: grid; gap: 1rem; grid-template-columns: repeat(1, minmax(0,1fr)); }
@media (min-width: 900px) { .testimonials-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.testimonial { background: linear-gradient(180deg, #0b1228 0%, #0b1a33 100%); border: 1px solid rgba(148,163,184,0.12); border-radius: .9rem; padding: 1rem; }
.testimonial blockquote { margin: .4rem 0; color: var(--subtle); font-style: italic; }
.attribution { color: #93c5fd; }

.roadmap-list { margin: 0; padding-left: 1.1rem; }
.roadmap-list li { margin: .4rem 0; }

.contact-grid { display: grid; gap: 1rem; grid-template-columns: repeat(1, minmax(0,1fr)); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr .8fr; } }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.contact-list .sep { color: var(--subtle); margin: 0 .5rem; }
.contact-cta { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }
.contact-help .small { font-size: .9rem; }
.subtle { color: var(--subtle); }

.site-footer { border-top: 1px solid rgba(148,163,184,0.1); background: rgba(2,6,23,.35); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; flex-wrap: wrap; }
.site-footer a { color: var(--subtle); text-decoration: none; margin-left: .75rem; }
.site-footer a:hover { color: var(--text); }

/* Utilities */
.hidden { display: none !important; }

@media (max-width: 959px) {
  .phone-mockup { right: 0; left: auto; transform: rotate(-2deg); width: 240px; height: 480px; }
  .phone-mockup.alt { display: none; }
}

/* Light theme overrides */
:root {
  --bg: #f7f9fd;
  --panel: #ffffff;
  --muted: #f8fafc;
  --text: #0f172a;
  --subtle: #475569;
  --primary: #2563eb;
  --primary-900: #1e40af;
  --ring: rgba(37,99,235,.28);
  --success: #16a34a;
  --warning: #d97706;
}
body { color: var(--text); background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%); }
.site-header { background: rgba(255,255,255,.9); border-bottom: 1px solid rgba(15,23,42,.06); backdrop-filter: blur(10px); }
.brand { color: var(--text); }
.nav a { color: var(--text); }
.nav a:hover { background: #eff6ff; }
.nav.open { background: #ffffff; border-bottom-color: rgba(15,23,42,.06); }

.btn { border-color: #e2e8f0; color: var(--text); }
.btn-primary { background: linear-gradient(180deg, #60a5fa 0%, #2563eb 80%); color: #fff; }
.btn-ghost { background: #ffffff; border-color: #e2e8f0; color: #0f172a; }

.hero-card { background: #ffffff; border: 1px solid #e2e8f0; box-shadow: 0 10px 30px rgba(2,6,23,.06); }
.ring-1 { background: radial-gradient(closest-side, rgba(99,102,241,.25), transparent); }
.ring-2 { background: radial-gradient(closest-side, rgba(37,99,235,.2), transparent); }

.phone-mockup, .phone-mockup.alt { background: #ffffff; border-color: #e2e8f0; box-shadow: 0 20px 50px rgba(2,6,23,.08); }
.phone-notch { background: #e2e8f0; }
.phone-screen { background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); border-color: #e2e8f0; }
.phone-topbar { background: #f8fafc; border-bottom-color: #e2e8f0; }
.phone-topbar .bar { background: #94a3b8; }
.msg { box-shadow: 0 8px 24px rgba(2,6,23,.06); }
.msg.in { background: #dcfce7; color: #14532d; border-color: #bbf7d0; }
.msg.out { background: #eff6ff; color: #1e3a8a; border-color: #bfdbfe; }
.composer { background: linear-gradient(180deg, transparent, rgba(248,250,252,.9)); }
.composer .field { background: #ffffff; border-color: #e2e8f0; color: #64748b; }
.composer .send { background: #2563eb; color: #fff; box-shadow: 0 10px 24px rgba(37,99,235,.25); }

.section.muted { background: #f8fafc; border-top-color: rgba(15,23,42,.06); border-bottom-color: rgba(15,23,42,.06); }
.feature, .how { background: #ffffff; border-color: #e2e8f0; box-shadow: 0 8px 24px rgba(2,6,23,.04); }

.switch .slider { background: #e2e8f0; }

.plan { background: #ffffff; border-color: #e2e8f0; box-shadow: 0 8px 24px rgba(2,6,23,.04); }
.plan.highlighted { border-color: rgba(37,99,235,.6); box-shadow: 0 0 0 3px rgba(37,99,235,.12) inset; }

.addon-list li { background: #ffffff; border-color: #e2e8f0; }
.calc-card { background: #ffffff; border-color: #e2e8f0; box-shadow: 0 8px 24px rgba(2,6,23,.04); }
.control { background: #f8fafc; border-color: #e2e8f0; }
.chip { background: #ffffff; border-color: #e2e8f0; }
.addon-check { background: #ffffff; border-color: #e2e8f0; }
.summary-card { background: #ffffff; border-color: #e2e8f0; }

.testimonial { background: #ffffff; border-color: #e2e8f0; box-shadow: 0 8px 24px rgba(2,6,23,.04); }
.attribution { color: #1d4ed8; }

.hero-bg .b1 { opacity: .25; }
.hero-bg .b2 { opacity: .22; }
.laptop-mockup .screen { background: #ffffff; border-color: #e2e8f0; }
.laptop-mockup .lid, .laptop-mockup .base { background: #e2e8f0; }
.laptop-mockup .screen-ui .bar { background: #e2e8f0; }
.laptop-mockup .card { background: #f8fafc; border-color: #e2e8f0; }

.trusted { color: #64748b; }
.brand-pill { border-color: #e2e8f0; background: #ffffff; color: #0f172a; }
.stats .stat { background: #ffffff; border-color: #e2e8f0; box-shadow: 0 8px 24px rgba(2,6,23,.04); }
.stats .num { color: #0f172a; }
.stats .cap { color: #64748b; }

.site-footer { background: #ffffff; border-top-color: rgba(15,23,42,.06); }
.site-footer a { color: #64748b; }
.site-footer a:hover { color: #0f172a; }


