/* ============================================================
   Shouldrs Marketing Site — Design System
   Brand colors and typography mirror the deck CSS in shouldrs_ux/.
   Visual direction informed by Figma (look & feel only —
   copy is verbatim from Shouldrs_Website_Copy doc).
   ============================================================ */

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

:root {
  --b: #528DFF;          /* Primary Blue */
  --b-dark: #2B5FD8;     /* Deeper blue for gradients */
  --p: #332D9B;          /* Primary Purple */
  --navy: #002060;       /* Navy Accent */
  --txt: #0a0d1a;        /* Near-black headline text */
  --txt2: #4a4e5a;       /* Body text */
  --txt3: #8a8e9a;       /* Captions / muted */
  --bg: #ffffff;
  --bg-tint: #f5f8ff;    /* Soft blue tint background */
  --bg-glow: #e8efff;    /* Pale blue glow */
  --line: rgba(0, 0, 0, 0.08);
  --r: 16px;
  --r-pill: 100px;
  --maxw: 1280px;
  --pad-x: clamp(20px, 5vw, 64px);
  --f: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Roboto, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--f);
  color: var(--txt2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

/* ---------- Typography ---------- */
h1, h2, h3 { color: var(--txt); letter-spacing: -0.02em; line-height: 1.1; font-weight: 700; }
h1 { font-size: clamp(40px, 6vw, 84px); }
h2 { font-size: clamp(32px, 4.5vw, 56px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
p { font-size: clamp(16px, 1.2vw, 19px); line-height: 1.6; }

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

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
section { padding: clamp(72px, 10vw, 140px) 0; position: relative; overflow: hidden; }

/* ---------- Pills / Labels ---------- */
.eyebrow {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  color: var(--b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(82, 141, 255, 0.08);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--b) 0%, var(--p) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(82, 141, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(82, 141, 255, 0.45); }
.btn-ghost {
  background: #fff;
  color: var(--txt);
  border: 1.5px solid var(--txt);
}
.btn-ghost:hover { background: var(--txt); color: #fff; }

/* ---------- Top Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px var(--pad-x);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 700; color: var(--txt); letter-spacing: -0.02em; }
.nav-brand img { width: 28px; height: 28px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--txt2); transition: color 0.15s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--b); }
.nav-cta { padding: 10px 22px; font-size: 14px; }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 10vw, 160px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero::before { top: -240px; left: 50%; transform: translateX(-50%); width: 1200px; height: 800px; background: radial-gradient(closest-side, rgba(82,141,255,0.18), transparent 70%); }
.hero::after { bottom: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(closest-side, rgba(51,45,155,0.12), transparent 70%); }
.hero > .container { position: relative; z-index: 1; }
.hero .eyebrow { margin-bottom: 28px; }
.hero h1 { margin-bottom: 24px; max-width: 14ch; margin-left: auto; margin-right: auto; }
.hero .lede { font-size: clamp(18px, 1.4vw, 22px); color: var(--txt2); max-width: 760px; margin: 0 auto 36px; }
.hero .cta-row { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.alt-headline {
  margin-top: 64px;
  font-size: clamp(18px, 1.4vw, 22px);
  font-style: italic;
  color: var(--txt3);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Generic section header ---------- */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--txt2); max-width: 720px; margin: 0 auto; }

/* ---------- Problem ---------- */
.problem { background: var(--bg-tint); }
.problem .section-head { text-align: left; margin-bottom: 40px; }
.problem .section-head h2 { max-width: 20ch; }
.problem .section-head p { max-width: 760px; margin-left: 0; margin-right: 0; }
.problem .pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 1100px) {
  .problem .pain-grid { grid-template-columns: repeat(5, 1fr); }
}
.pain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: 0 4px 8px rgba(0,0,0,0.05), 0 14px 32px rgba(0,0,0,0.06); }
.pain-card h3 { color: var(--b); font-size: 19px; margin-bottom: 10px; font-weight: 700; letter-spacing: -0.01em; }
.pain-card p { font-size: 16px; color: var(--txt2); line-height: 1.55; }

.problem-tagline {
  margin-top: 56px;
  text-align: center;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: var(--p);
  letter-spacing: -0.01em;
}
.problem-tagline em { font-style: normal; color: var(--b); }

/* ---------- Pillars ---------- */
.pillars .intro {
  text-align: center;
  font-size: clamp(18px, 1.4vw, 21px);
  color: var(--txt2);
  max-width: 760px;
  margin: 0 auto 64px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .pillar-grid { grid-template-columns: 1fr; }
}
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 10px 28px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar .num {
  font-size: 14px;
  font-weight: 700;
  color: var(--b);
  letter-spacing: 0.1em;
}
.pillar h3 { font-size: 24px; color: var(--txt); }
.pillar p { font-size: 16px; color: var(--txt2); }

/* ---------- How It Works ---------- */
.how { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%); }
.how .body {
  font-size: clamp(18px, 1.3vw, 20px);
  color: var(--txt2);
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}
.how .body + .body { margin-bottom: 64px; }
.steps {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 6px 16px rgba(0,0,0,0.04);
}
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--b), var(--p));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
}
.step p { font-size: 17px; color: var(--txt); }

/* ---------- Footer ---------- */
footer {
  background: var(--txt);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  font-size: 14px;
}
footer .container { display: flex; flex-direction: column; gap: 32px; }
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.foot-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.foot-brand img { width: 26px; height: 26px; }
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
.foot-links a { color: rgba(255,255,255,0.7); transition: color 0.15s ease; }
.foot-links a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255,255,255,0.5);
}

/* ---------- About ---------- */
.about { padding: clamp(72px, 9vw, 120px) 0 clamp(80px, 9vw, 120px); position: relative; overflow: hidden; }
.about::before { content: ''; position: absolute; top: -240px; right: -200px; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(closest-side, rgba(82,141,255,0.10), transparent 70%); pointer-events: none; }
.about > .container { position: relative; z-index: 1; }
.about-head { margin-bottom: 64px; max-width: 880px; }
.about-head .eyebrow { margin-bottom: 18px; }
.about-head h1 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 20px; }
.about-head p { font-size: clamp(17px, 1.3vw, 20px); color: var(--txt2); max-width: 720px; }

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 960px) { .founder-grid { grid-template-columns: 1fr; } }

.founder {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
}
.founder-head { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.founder-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--bg-glow); }
.founder-name { font-size: 17px; font-weight: 700; color: var(--txt); line-height: 1.2; }
.founder-title { font-size: 13px; color: var(--txt3); margin-top: 2px; }
.founder-bio { font-size: 14px; color: var(--txt2); line-height: 1.6; flex: 1; }
.founder-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.founder .tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--b);
  background: rgba(82,141,255,0.08);
  border: 1px solid rgba(82,141,255,0.18);
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.founder-li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--b);
  font-weight: 500;
  margin-top: auto;
}
.founder-li:hover { color: var(--p); }

.about-tagline {
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 28px;
  text-align: center;
  font-style: italic;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--txt2);
}

/* ---------- Footer LinkedIn ---------- */
.foot-li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  transition: background 0.15s ease, color 0.15s ease;
}
.foot-li:hover { background: var(--b); color: #fff; }

/* ---------- Placeholder pages ---------- */
.placeholder {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.placeholder::before {
  content: '';
  position: absolute;
  top: -300px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(closest-side, rgba(82,141,255,0.14), transparent 70%);
  pointer-events: none; z-index: 0;
}
.placeholder > * { position: relative; z-index: 1; }
.placeholder h1 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 16px; }
.placeholder p { font-size: clamp(17px, 1.3vw, 20px); color: var(--txt2); max-width: 560px; margin: 0 auto 36px; }

/* ============================================================
   v3 Site Revisions — additional component classes
   Brand tokens unchanged; reuses existing color palette.
   ============================================================ */

/* ---------- Hero pills (chip row, used on home + getting-started) ---------- */
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 8px 0 28px; }
.pill {
  font-size: 13px; font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(82,141,255,0.08);
  color: var(--b);
  border: 1px solid rgba(82,141,255,0.20);
}

/* ---------- Hero mockup wrapper ---------- */
.hero-mockup { max-width: 820px; margin: 56px auto 0; }
.mockup-frame {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 44px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.04);
}

/* Slack-style mockup (used on home hero) */
.slack-mockup { background: #1A1D21; color: #D1D2D3; text-align: left; font-family: var(--f); }
.slack-titlebar { background: #1A1D21; padding: 10px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.window-dot { width: 10px; height: 10px; border-radius: 50%; }
.window-dot.r { background: #FF5F57; }
.window-dot.y { background: #FFBD2E; }
.window-dot.g { background: #28CA41; }
.slack-channel { font-size: 13px; color: #D1D2D3; font-weight: 600; margin-left: 10px; }
.slack-channel .hash { color: #616061; font-weight: 400; }
.slack-thread { padding: 18px 22px; display: flex; flex-direction: column; gap: 4px; }
.slack-msg { display: flex; gap: 10px; padding: 6px 0; align-items: flex-start; }
.slack-avatar { width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0; }
.slack-avatar.user { background: #4A154B; }
.slack-avatar.shouldrs { background: var(--b); }
.slack-name { font-size: 13px; font-weight: 700; color: #D1D2D3; margin-bottom: 3px; }
.slack-name .ai { color: #7CA8FF; }
.slack-name .ts { font-size: 11px; color: #616061; font-weight: 400; margin-left: 6px; }
.slack-name .tag { font-size: 10px; background: rgba(82,141,255,0.20); color: #9DC0FF; padding: 1px 6px; border-radius: 4px; font-weight: 600; margin-left: 4px; }
.slack-text { font-size: 14px; color: #D1D2D3; line-height: 1.55; }
.slack-text strong { color: #fff; }
.slack-plan { background: #0a0d1a; border: 1px solid rgba(82,141,255,0.20); border-left: 3px solid var(--b); border-radius: 6px; padding: 14px 16px; margin-top: 8px; }
.slack-plan .label { font-size: 11px; font-weight: 700; color: #BCD5FF; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px; }
.slack-plan .step {
  display: flex; align-items: center; gap: 10px;
  background: #000; border: 1px solid rgba(82,141,255,0.18);
  border-radius: 6px; box-shadow: none;
  padding: 9px 12px; margin-bottom: 6px;
  font-size: 14px; font-weight: 700; color: #FFFFFF;
}
.slack-plan .step:last-child { margin-bottom: 0; }
.slack-plan .ck { width: 16px; color: #4ADE80; font-size: 13px; font-weight: 800; }
.slack-plan .tool {
  margin-left: auto; font-size: 12px; font-weight: 700; color: #DBEAFE;
  background: rgba(82,141,255,0.18); border: 1px solid rgba(82,141,255,0.30);
  padding: 3px 9px; border-radius: 999px; letter-spacing: 0.01em;
}
.slack-actions { display: flex; gap: 8px; margin-top: 10px; }
.slack-btn { font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: 4px; }
.slack-btn.primary { background: var(--b); color: #fff; }
.slack-btn.ghost { background: rgba(255,255,255,0.06); color: #9EA3A8; }
.slack-done { background: rgba(5,150,105,0.10); border: 1px solid rgba(74,222,128,0.20); border-radius: 6px; padding: 10px 14px; display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.slack-done .text { font-size: 14px; color: #6EE7B7; flex: 1; }
.slack-done .text strong { color: #4ADE80; }
.slack-done .timing { text-align: right; flex-shrink: 0; }
.slack-done .big { font-size: 28px; font-weight: 700; color: #4ADE80; line-height: 1; }
.slack-done .small { font-size: 10px; color: #6EE7B7; line-height: 1.3; }
.slack-reactions { display: flex; gap: 6px; margin-top: 6px; }
.slack-reaction { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: 4px; padding: 2px 8px; font-size: 12px; color: #9EA3A8; }

/* Email-style mockup (used in demo moment) */
.email-mockup { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; text-align: left; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.email-titlebar { background: #fff; border-bottom: 1px solid var(--line); padding: 10px 16px; display: flex; align-items: center; gap: 8px; }
.email-titlebar .label { font-size: 12px; color: var(--txt3); margin-left: 8px; }
.email-body { padding: 16px 20px; }
.email-meta { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.email-from { font-size: 11px; color: var(--txt3); margin-bottom: 2px; }
.email-subject { font-size: 14px; font-weight: 700; color: var(--txt); }
.email-content { font-size: 13.5px; color: var(--txt2); line-height: 1.65; margin-bottom: 14px; }
.email-reply { background: rgba(82,141,255,0.06); border: 1px solid rgba(82,141,255,0.18); border-radius: 8px; padding: 12px 14px; }
.email-reply .label { font-size: 11px; font-weight: 700; color: var(--b); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.email-reply .body { font-size: 13px; color: var(--p); margin-bottom: 10px; }
.email-reply ul { list-style: none; display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.email-reply li { font-size: 12.5px; color: var(--p); display: flex; align-items: center; gap: 6px; }
.email-reply li::before { content: '✓'; color: #059669; font-weight: 700; }
.email-actions { display: flex; gap: 8px; }
.email-actions .btn-mini { font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 4px; }
.email-actions .btn-mini.primary { background: var(--b); color: #fff; }
.email-actions .btn-mini.ghost { background: #fff; color: var(--txt3); border: 1px solid var(--line); }

/* SMS phone mockup (used on products hero) */
.sms-phone {
  background: #0B1221;
  border-radius: 36px;
  padding: 38px 14px 22px;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(11,18,33,0.30);
  border: 8px solid #1A1D2E;
  text-align: left;
  font-family: var(--f);
}
.sms-notch { width: 96px; height: 20px; background: #1A1D2E; border-radius: 0 0 14px 14px; margin: -38px auto 18px; }
.sms-header { padding: 8px 0 14px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 10px; justify-content: center; }
.sms-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--b); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; }
.sms-contact { font-size: 13.5px; color: #fff; font-weight: 600; }
.sms-thread { padding: 16px 6px 4px; display: flex; flex-direction: column; gap: 6px; }
.sms-time { font-size: 10px; color: #64748B; text-align: center; margin: 6px 0; letter-spacing: 0.04em; }
.sms-bubble { font-size: 13px; line-height: 1.45; padding: 8px 14px; border-radius: 18px; max-width: 86%; }
.sms-bubble.out { background: var(--b); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; }
.sms-bubble.in { background: #1F2937; color: #E5E7EB; align-self: flex-start; border-bottom-left-radius: 5px; }
.sms-bubble.done { background: rgba(74,222,128,0.10); color: #86EFAC; align-self: flex-start; border: 1px solid rgba(74,222,128,0.22); font-weight: 600; font-size: 12px; padding: 6px 14px; }

.via-label { text-align: center; font-size: 12px; color: var(--txt3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }

/* ---------- Stats strip ---------- */
.stats-strip { background: var(--txt); padding: 56px var(--pad-x); }
.stats-strip-label { text-align: center; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 36px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: var(--maxw); margin: 0 auto; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-cell { text-align: center; }
.stat-num-big { font-size: 52px; font-weight: 700; color: var(--b); letter-spacing: -0.02em; line-height: 1; margin-bottom: 12px; }
.stat-desc { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.5; margin-bottom: 6px; }
.stat-source { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ---------- Pull-quote (problem section) ---------- */
.problem-pullquote {
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--p);
  border-left: 4px solid var(--b);
  padding: 8px 0 8px 22px;
  margin-bottom: 24px;
  line-height: 1.4;
  font-weight: 500;
}

/* Pain icons (extend existing pain-card) */
.pain-card .pain-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(82,141,255,0.10);
  color: var(--b);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

/* ---------- Mid-page CTA band ---------- */
.cta-band-wrap { padding: 0 var(--pad-x) clamp(72px, 9vw, 120px); }
.cta-band {
  background: linear-gradient(135deg, var(--b) 0%, var(--p) 100%);
  border-radius: var(--r);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin: 0 auto;
  box-shadow: 0 14px 36px rgba(82,141,255,0.22);
}
.cta-band-text h3 { color: #fff; font-size: clamp(22px, 2.2vw, 30px); margin-bottom: 8px; line-height: 1.25; letter-spacing: -0.01em; }
.cta-band-text p { color: rgba(255,255,255,0.85); font-size: 15px; max-width: 520px; }
.btn-on-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--b);
  padding: 12px 26px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-on-blue:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,0.16); background: var(--bg-tint); }

/* ---------- Demo moment (dark section) ---------- */
.demo-section { background: linear-gradient(180deg, var(--txt) 0%, #131726 100%); color: #fff; padding: clamp(72px, 9vw, 120px) 0; }
.demo-section .container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.demo-section .eyebrow { background: rgba(82,141,255,0.12); border-color: rgba(82,141,255,0.30); color: #9DC0FF; margin-bottom: 16px; }
.demo-section h2 { color: #fff; font-size: clamp(32px, 4vw, 48px); margin-bottom: 14px; }
.demo-section .lede { color: rgba(255,255,255,0.7); font-size: clamp(16px, 1.3vw, 19px); max-width: 520px; margin-bottom: 32px; }
.demo-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: end; }
@media (max-width: 960px) { .demo-grid { grid-template-columns: 1fr; } }

.channel-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.channel-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.channel-card.active { border-color: rgba(82,141,255,0.4); background: rgba(82,141,255,0.06); }
.channel-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }
.channel-icon.slack { background: #4A154B; }
.channel-icon.email { background: var(--b-dark); }
.channel-icon.sms { background: #374151; }
.channel-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.channel-name .badge { font-size: 10px; background: rgba(82,141,255,0.30); color: #BCD5FF; padding: 1px 6px; border-radius: 4px; margin-left: 4px; font-weight: 600; }
.channel-desc { font-size: 12px; color: rgba(255,255,255,0.5); }

.in-control { background: rgba(82,141,255,0.10); border: 1px solid rgba(82,141,255,0.25); border-radius: 10px; padding: 16px; }
.in-control-label { font-size: 12px; font-weight: 700; color: #9DC0FF; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.in-control-body { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

.demo-channels-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }

/* ---------- HIW grid + integration strip ---------- */
.hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto 40px; }
@media (max-width: 880px) { .hiw-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .hiw-grid { grid-template-columns: 1fr; } }
.hiw-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px 22px; box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 6px 16px rgba(0,0,0,0.04); }
.hiw-card .num { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--b), var(--p)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.hiw-card h3 { font-size: 18px; margin-bottom: 8px; }
.hiw-card p { font-size: 14px; color: var(--txt2); line-height: 1.55; }

.integration-strip { max-width: 1080px; margin: 0 auto; padding: 26px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); }
.integration-label { font-size: 12px; font-weight: 700; color: var(--txt3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; text-align: center; }
.integration-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 36px; align-items: center; }
.integration-cell { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--txt2); }
.integration-cell img { height: 28px; width: auto; max-width: 130px; object-fit: contain; display: block; }
.integration-cell.google img { max-width: 240px; }
.integration-cell .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.integration-cell.more { color: var(--txt3); font-weight: 400; font-style: italic; font-size: 13px; }

/* ---------- Use cases grid ---------- */
.usecases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1180px; margin: 0 auto; }
@media (max-width: 1100px) { .usecases-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .usecases-grid { grid-template-columns: 1fr; } }
.usecase-col { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 18px; box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 6px 16px rgba(0,0,0,0.04); }
.usecase-header { font-size: 13px; font-weight: 700; color: var(--b); text-transform: uppercase; letter-spacing: 0.08em; padding-bottom: 11px; border-bottom: 1.5px solid rgba(82,141,255,0.18); margin-bottom: 14px; }
.usecase-items { display: flex; flex-direction: column; gap: 7px; }
.usecase-item { font-size: 13.5px; color: var(--txt2); padding: 7px 11px; background: var(--bg-tint); border: 1px solid var(--line); border-radius: 6px; }

/* ---------- Above-footer CTA block ---------- */
.cta-block { background: linear-gradient(180deg, var(--txt) 0%, #131726 100%); color: #fff; padding: clamp(64px, 8vw, 96px) 0; text-align: center; position: relative; overflow: hidden; }
.cta-block::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 600px; background: radial-gradient(closest-side, rgba(82,141,255,0.12), transparent 70%); pointer-events: none; }
.cta-block .container { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 var(--pad-x); }
.cta-block .eyebrow { background: rgba(82,141,255,0.12); border-color: rgba(82,141,255,0.30); color: #9DC0FF; margin-bottom: 18px; }
.cta-block h2 { color: #fff; font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 14px; line-height: 1.15; }
.cta-block p { color: rgba(255,255,255,0.7); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.65; margin-bottom: 32px; }

/* ---------- Getting Started page ---------- */
.gs-hero { background: var(--bg-tint); border-bottom: 1px solid var(--line); padding: clamp(64px, 8vw, 100px) 0 clamp(48px, 6vw, 72px); position: relative; overflow: hidden; }
.gs-hero::before { content: ''; position: absolute; top: -240px; right: -200px; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(closest-side, rgba(82,141,255,0.12), transparent 70%); pointer-events: none; z-index: 0; }
.gs-hero > .container { position: relative; z-index: 1; }
.gs-hero h1 { font-size: clamp(36px, 5vw, 60px); max-width: 18ch; margin-bottom: 18px; }
.gs-hero .lede { font-size: clamp(17px, 1.4vw, 21px); color: var(--txt2); max-width: 680px; margin-bottom: 28px; line-height: 1.55; }
.no-list { display: flex; gap: 10px; flex-wrap: wrap; }
.no-pill { font-size: 13px; font-weight: 500; color: var(--txt2); background: #fff; border: 1px solid var(--line); padding: 6px 14px; border-radius: var(--r-pill); display: inline-flex; align-items: center; gap: 8px; }
.no-pill::before { content: '✗'; color: #DC2626; font-weight: 700; font-size: 13px; line-height: 1; }

.gs-main { padding: clamp(56px, 8vw, 96px) 0; }
.gs-main > .container { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
@media (max-width: 980px) { .gs-main > .container { grid-template-columns: 1fr; } }
.gs-steps-label { font-size: 13px; font-weight: 700; color: var(--txt3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.gs-steps { display: flex; flex-direction: column; }
.gs-step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.gs-step:last-child { border-bottom: none; }
.gs-step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.gs-step-num { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; flex-shrink: 0; }
.gs-step-num.pending { background: rgba(82,141,255,0.10); border: 2px solid rgba(82,141,255,0.25); color: var(--b); }
.gs-step-num.action { background: linear-gradient(135deg, var(--b), var(--p)); color: #fff; }
.gs-step-num.reward { background: rgba(16,185,129,0.10); border: 2px solid rgba(16,185,129,0.30); color: #059669; }
.gs-step-connector { width: 2px; flex: 1; min-height: 28px; margin-top: 6px; }
.gs-step-connector.blue { background: linear-gradient(to bottom, rgba(82,141,255,0.4), transparent); }
.gs-step-connector.green { background: linear-gradient(to bottom, rgba(16,185,129,0.4), transparent); }
.gs-step-content { flex: 1; padding-top: 6px; }
.gs-step-title { font-size: 18px; font-weight: 700; color: var(--txt); margin-bottom: 6px; line-height: 1.3; }
.gs-step-body { font-size: 15px; color: var(--txt2); line-height: 1.65; }
.gs-step-note { margin-top: 12px; font-size: 13.5px; color: var(--txt3); background: var(--bg-tint); border: 1px solid var(--line); border-radius: 8px; padding: 10px 14px; line-height: 1.55; }
.gs-step-note strong { color: var(--txt2); }

.gs-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 88px; }
.gs-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.04); }
.gs-card-head { padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; color: var(--txt); }
.gs-card-body { padding: 14px 18px; }
.gs-need-list, .gs-no-list2 { list-style: none; }
.gs-need-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--txt2); padding: 7px 0; border-bottom: 1px solid var(--line); line-height: 1.5; }
.gs-need-list li:last-child { border-bottom: none; }
.gs-need-list li::before { content: '✓'; color: #059669; font-weight: 700; flex-shrink: 0; font-size: 14px; line-height: 1.4; }
.gs-no-list2 li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--txt3); padding: 6px 0; }
.gs-no-list2 li::before { content: '✗'; color: #94A3B8; flex-shrink: 0; font-size: 14px; }

.gs-expand { background: rgba(82,141,255,0.06); border: 1px solid rgba(82,141,255,0.20); border-radius: 14px; padding: 18px; }
.gs-expand-label { font-size: 11px; font-weight: 700; color: var(--p); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.gs-expand-flow { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; flex-wrap: nowrap; }
.gs-expand-step { font-size: 12px; font-weight: 600; color: var(--b); background: #fff; padding: 4px 10px; border-radius: var(--r-pill); border: 1px solid rgba(82,141,255,0.25); white-space: nowrap; }
.gs-expand-arrow { color: var(--b); font-weight: 600; flex-shrink: 0; }
.gs-expand-body { font-size: 13px; color: var(--p); line-height: 1.65; }

.gs-cta { background: var(--txt); border-radius: 14px; padding: 22px; }
.gs-cta-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.gs-cta-body { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 16px; }
.gs-cta .btn { width: 100%; justify-content: center; padding: 11px 16px; font-size: 14px; }

.gs-closing-quote { font-size: 16px; color: var(--txt3); font-style: italic; text-align: center; padding: 36px var(--pad-x); background: var(--bg-tint); border-top: 1px solid var(--line); line-height: 1.5; }

/* ---------- Contact page ---------- */
.contact-page { padding: clamp(56px, 7vw, 88px) 0 clamp(56px, 7vw, 88px); position: relative; overflow: hidden; }
.contact-page::before { content: ''; position: absolute; top: -300px; right: -200px; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(closest-side, rgba(82,141,255,0.10), transparent 70%); pointer-events: none; z-index: 0; }
.contact-page > .container { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 var(--pad-x); }
.contact-page h1 { font-size: clamp(38px, 4.6vw, 60px); margin: 14px 0 16px; max-width: 14ch; }
.contact-page .lede { font-size: clamp(16px, 1.3vw, 19px); color: var(--txt2); max-width: 560px; margin-bottom: 48px; line-height: 1.7; }

.email-block { margin-bottom: 48px; }
.email-label { font-size: 12px; font-weight: 700; color: var(--txt3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.email-link { display: inline-flex; align-items: center; gap: 12px; font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; color: var(--b); letter-spacing: -0.01em; }
.email-link:hover { color: var(--p); }
.email-note { font-size: 14px; color: var(--txt3); margin-top: 10px; line-height: 1.6; max-width: 520px; }

.expect-label { font-size: 12px; font-weight: 700; color: var(--txt3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.expect-list { display: flex; flex-direction: column; }
.expect-step { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.expect-step:last-child { border-bottom: none; }
.expect-num { width: 32px; height: 32px; border-radius: 50%; background: rgba(82,141,255,0.10); border: 1.5px solid rgba(82,141,255,0.25); color: var(--b); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.expect-title { font-size: 15px; font-weight: 700; color: var(--txt); margin-bottom: 4px; }
.expect-body { font-size: 14px; color: var(--txt2); line-height: 1.65; }

.linkedin-block { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.li-icon { width: 40px; height: 40px; background: #0A66C2; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }
.li-text { font-size: 14px; color: var(--txt2); line-height: 1.5; }
.li-text a { color: var(--b); font-weight: 600; }
.li-text a:hover { color: var(--p); }

/* ---------- Products: SMS hero layout ---------- */
.products-hero .container { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
@media (max-width: 960px) { .products-hero .container { grid-template-columns: 1fr; } }
.products-hero h1 { font-size: clamp(40px, 5.2vw, 64px); max-width: 14ch; margin-bottom: 20px; line-height: 1.05; }
.products-hero h1 em { color: var(--b); font-style: normal; }
.products-hero .lede { font-size: clamp(17px, 1.4vw, 21px); color: var(--txt2); max-width: 560px; margin-bottom: 28px; line-height: 1.6; }

/* ---------- Products: Always Current section ---------- */
.always-current { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%); }
.always-current .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); align-items: start; }
.always-current .container > div:last-child { padding-top: clamp(180px, 18vw, 260px); }
@media (max-width: 960px) { .always-current .container { grid-template-columns: 1fr; } .always-current .container > div:last-child { padding-top: 0; } }
.speed-cards { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.speed-card { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px; box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 6px 16px rgba(0,0,0,0.04); }
.speed-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
.speed-icon.blue { background: rgba(82,141,255,0.10); color: var(--b); }
.speed-icon.green { background: rgba(16,185,129,0.10); color: #059669; }
.speed-icon.purple { background: rgba(124,58,237,0.10); color: var(--p); }
.speed-card-title { font-size: 17px; font-weight: 700; color: var(--txt); margin-bottom: 6px; }
.speed-card-body { font-size: 14px; color: var(--txt2); line-height: 1.6; }

.speed-callout { background: var(--txt); border-radius: var(--r); padding: 26px; color: #fff; }
.speed-callout-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.speed-vs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.speed-vs-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 18px; text-align: center; }
.speed-vs-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.speed-vs-value { font-size: 32px; font-weight: 700; line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.speed-vs-value.bad { color: #FCA5A5; }
.speed-vs-value.good { color: #86EFAC; }
.speed-vs-desc { font-size: 11.5px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.speed-manage { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 16px; }
.speed-manage-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.speed-manage-list { display: flex; flex-direction: column; gap: 8px; list-style: none; }
.speed-manage-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); }
.speed-manage-list li::before { content: '✓'; color: #4ADE80; font-weight: 700; flex-shrink: 0; }
.speed-quote { font-size: 14px; color: rgba(255,255,255,0.55); font-style: italic; line-height: 1.6; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); }

/* ---------- Products: Multi-model optimization ---------- */
.optim-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); align-items: end; }
@media (max-width: 960px) { .optim-section .container { grid-template-columns: 1fr; align-items: start; } }
.optim-points { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.optim-point { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--b); border-radius: 8px; padding: 16px 22px; }
.optim-point-title { font-size: 16px; font-weight: 700; color: var(--txt); margin-bottom: 6px; }
.optim-point-body { font-size: 14px; color: var(--txt2); line-height: 1.6; }
.optim-callout { background: rgba(82,141,255,0.06); border: 1px solid rgba(82,141,255,0.20); border-radius: var(--r); padding: 18px 22px; margin-top: 18px; }
.optim-callout-text { font-size: 15px; color: var(--p); line-height: 1.6; font-weight: 500; }

.toolbox { background: var(--txt); border-radius: var(--r); padding: 26px; color: #fff; }
.toolbox-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.toolbox-row { display: flex; flex-direction: column; gap: 12px; }
.toolbox-task { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 14px 16px; }
.toolbox-task-label { font-size: 12px; font-weight: 700; color: #9DC0FF; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.toolbox-task-desc { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 10px; font-style: italic; }
.toolbox-routing { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.model-tag { font-size: 12px; padding: 4px 10px; border-radius: var(--r-pill); }
.model-tag.selected { background: rgba(82,141,255,0.20); color: #BCD5FF; border: 1px solid rgba(82,141,255,0.40); font-weight: 700; }
.model-tag.alt { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.08); }
.toolbox-reason { font-size: 12px; color: rgba(255,255,255,0.55); }
.factors { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 14px; margin-top: 4px; }
.factors-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.factors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.factors-grid > div { font-size: 12px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 6px; }
.factors-grid > div::before { content: '◆'; color: var(--b); font-size: 9px; }

/* ---------- Products: Flywheel section ---------- */
.fw-section { background: linear-gradient(180deg, var(--txt) 0%, #131726 100%); color: #fff; padding: clamp(72px, 9vw, 120px) 0; position: relative; overflow: hidden; }
.fw-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 900px; height: 700px; background: radial-gradient(closest-side, rgba(82,141,255,0.10), transparent 70%); pointer-events: none; }
.fw-section .container { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 960px) { .fw-section .container { grid-template-columns: 1fr; gap: 48px; } }
.fw-section .eyebrow { background: rgba(82,141,255,0.12); border-color: rgba(82,141,255,0.30); color: #9DC0FF; }
.fw-section h2 { color: #fff; font-size: clamp(32px, 4vw, 48px); margin: 16px 0; }
.fw-section .lede { color: rgba(255,255,255,0.7); font-size: clamp(16px, 1.3vw, 19px); }
.fw-phases { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.fw-phase { display: flex; gap: 16px; align-items: flex-start; }
.fw-phase-num { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; flex-shrink: 0; border: 2px solid; }
.fw-phase-num.learn { background: rgba(82,141,255,0.28); color: #DBEAFE; border-color: #528DFF; }
.fw-phase-num.optimize { background: rgba(234,179,8,0.28); color: #FEF3C7; border-color: #FACC15; }
.fw-phase-num.measure { background: rgba(16,185,129,0.28); color: #D1FAE5; border-color: #34D399; }
.fw-phase-num.prove { background: rgba(168,85,247,0.30); color: #EDE9FE; border-color: #A78BFA; }
.fw-phase-title { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.fw-phase.learn .fw-phase-title { color: #93C5FD; }
.fw-phase.optimize .fw-phase-title { color: #FCD34D; }
.fw-phase.measure .fw-phase-title { color: #6EE7B7; }
.fw-phase.prove .fw-phase-title { color: #C4B5FD; }
.fw-phase-body { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.65; }
.fw-closing { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,0.08); }
.fw-diagram { display: flex; justify-content: center; padding-top: clamp(60px, 8vw, 140px); }
@media (max-width: 960px) { .fw-diagram { padding-top: 0; } }

/* ---------- Products: Trust & Security ---------- */
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1080px; margin: 0 auto; }
@media (max-width: 840px) { .security-grid { grid-template-columns: 1fr; } }
.sec-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 28px; box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.04); }
.sec-card-header { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.sec-card-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sec-card-icon.blue { background: rgba(82,141,255,0.10); color: var(--b); }
.sec-card-icon.green { background: rgba(16,185,129,0.10); color: #059669; }
.sec-card-title { font-size: 22px; font-weight: 700; color: var(--txt); }
.sec-items { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.sec-items li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--txt2); line-height: 1.55; }
.sec-items li::before { content: '✓'; font-weight: 700; flex-shrink: 0; font-size: 14px; line-height: 1.4; color: var(--b); }
.sec-card.green .sec-items li::before { color: #059669; }
