:root {
  --bg: #0b132b;
  --surface: #1c2541;
  --accent: #2ec4b6;
  --accent-2: #5bc0eb;
  --text: #e6e9ef;
  --muted: #a3adb9;
  --card: #202a48;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: linear-gradient(180deg, #0b132b 0%, #0d1835 100%);
  line-height: 1.6;
}

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

/* Layout */
.container { width: min(1120px, 92%); margin-inline: auto; }

/* Header */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 19, 43, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand img { width: 40px; border-radius: 6px; }
.nav a { color: var(--muted); margin-left: 18px; font-weight: 600; }
.nav a:hover { color: var(--text); }
.cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #081229;
  padding: 10px 16px; border-radius: 8px; font-weight: 700;
  box-shadow: var(--shadow);
}

/* Hero */
.hero {
  padding: 74px 0 32px;
  text-align: center;
}
.hero .title { font-size: clamp(32px, 5vw, 52px); line-height: 1.1; margin: 12px 0; }
.hero .subtitle { color: var(--muted); font-size: clamp(16px, 2.3vw, 20px); margin-bottom: 24px; }
.hero .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pill { border: 1px solid rgba(255,255,255,0.12); padding: 8px 12px; border-radius: 999px; color: var(--muted); font-size: 14px; display: inline-flex; gap: 8px; align-items: center; }

/* Sections */
section { padding: 56px 0; }
section h2 { font-size: 28px; margin: 0 0 12px; }
section p.lead { color: var(--muted); margin: 0 0 24px; }

/* Cards grid */
.grid { display: grid; gap: 18px; grid-template-columns: repeat(12, 1fr); }
.card { grid-column: span 4; background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }
.card h3 { margin: 6px 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); }
@media (max-width: 900px) { .card { grid-column: span 6; } }
@media (max-width: 640px) { .card { grid-column: span 12; } }

/* Footer */
footer.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; color: var(--muted); text-align: center; }
footer .links a { color: var(--muted); margin: 0 8px; }

/* Utilities */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.space-sm { height: 12px; }
.space-md { height: 24px; }
.space-lg { height: 48px; }

/* Badges */
.badge { display: inline-block; background: rgba(46,196,182,0.12); color: var(--accent-2); padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .02em; }

/* Logo block */
.logo { width: 120px; border-radius: 12px; box-shadow: var(--shadow); }

/* Lists */
.list { display: grid; gap: 8px; }
.list-item { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.list-item:before { content: "•"; color: var(--accent-2); margin-top: 2px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b132b; border: none; border-radius: 10px;
  padding: 12px 16px; font-weight: 700; cursor: pointer;
  box-shadow: var(--shadow);
}
.btn.secondary { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.16); }

/* Tables (if needed later) */
table { width: 100%; border-collapse: collapse; }
th, td { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 10px 8px; text-align: left; }

/* New sections */
.section-sub { color: var(--muted); margin: 6px 0 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); color: var(--text); padding: 6px 10px; border-radius: 999px; font-size: 13px; }

.metrics { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.metric { grid-column: span 3; background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 16px; text-align: center; }
.metric .num { font-size: 28px; font-weight: 800; color: var(--accent-2); }
.metric .lbl { color: var(--muted); font-size: 13px; }
@media (max-width: 900px) { .metric { grid-column: span 4; } }
@media (max-width: 640px) { .metric { grid-column: span 6; } }

.logos { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.logo-badge { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: var(--muted); padding: 8px 12px; border-radius: 10px; font-weight: 700; letter-spacing: .02em; }

.testimonial { background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 18px; }
.testimonial blockquote { margin: 0; color: var(--text); font-style: italic; }
.testimonial .author { margin-top: 8px; color: var(--muted); font-size: 14px; }

.timeline { display: grid; gap: 12px; }
.step { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start; }
.step .idx { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: rgba(46,196,182,0.16); color: var(--accent-2); font-weight: 800; }
.step h4 { margin: 0 0 4px; }

/* === Conversion-focused light theme overrides === */
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --accent: #0ea5a6; /* teal */
  --accent-2: #2dd4bf;
  --shadow: 0 8px 20px rgba(2, 6, 23, 0.06);
}

body { background: var(--bg); color: var(--text); }

header.site-header { background: #ffffffcc; border-bottom: 1px solid var(--border); }
.nav a { color: #334155; }
.nav a:hover { color: #0f172a; }
.cta { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #002b2b; }

.hero { padding: 72px 0 40px; text-align: left; }
.hero .title { font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.02em; }
.hero .subtitle { max-width: 52ch; color: var(--muted); }
.hero .actions { justify-content: flex-start; }

section { padding: 64px 0; }
section h2 { font-size: 28px; margin-bottom: 10px; }

.card { background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow); }
.badge { background: rgba(14,165,166,0.12); color: #0e7474; }
.logo { box-shadow: none; border: 1px solid var(--border); }

.logos .logo-badge { background: #fff; border: 1px solid var(--border); color: #334155; }

.btn { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #063a38; }
.btn.secondary { background: transparent; color: #0f172a; border: 1px solid var(--border); }

.metric { background: #fff; border: 1px solid var(--border); }
.metric .num { color: #0ea5a6; }

footer.site-footer { background: #fff; color: #475569; border-top: 1px solid var(--border); }
