/* StreamBuild.io: shared stylesheet (Website v2)
   Tokens extracted from StreamBuild Website.dc.html (design prototype). */

:root {
  --space-x: 40px;

  --blue: #2C55E0;
  --blue-hover: #1E3FAF;
  --blue-tint-bg: #EEF3FF;
  --blue-tint-border: #DBE5FB;
  --blue-tint-border-strong: #C7D6FB;
  --blue-tint-text: #2145C0;

  --teal: #16B8A3;
  --teal-soft: #7FE9D6;
  --teal-tint-bg: #EAFBF6;
  --teal-tint-bg-soft: #F7FCFA;
  --teal-tint-border: #C3F0E6;
  --teal-tint-text: #0A7A6B;

  --amber: #F6A62B;
  --amber-tint-bg: #FEF4E3;
  --amber-tint-text: #8A5A0C;

  --red: #E5484D;
  --red-tint-bg: #FDECEC;
  --red-tint-text: #B4292E;

  --ink: #0F172A;
  --ink-2: #0B1220;
  --ink-3: #0F1B33;
  --ink-border: #1E2A44;

  --body-text: #334155;
  --body-text-2: #475569;
  --muted: #64748B;
  --muted-2: #94A3B8;

  --border: #E7ECF3;
  --border-2: #EDF1F6;
  --border-3: #EEF2F7;

  --bg: #FBFDFF;
  --bg-alt: #F6F8FB;
  --bg-alt-2: #F8FAFC;
  --bg-alt-3: #F1F5F9;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

@media (max-width: 600px) {
  :root { --space-x: 20px; }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
::selection { background: var(--teal); color: #fff; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-hover); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
ul { margin: 0; }
button { font-family: inherit; }

/* ============ layout helpers ============ */
.container       { max-width: 1160px; margin: 0 auto; padding-left: var(--space-x); padding-right: var(--space-x); }
.container-md    { max-width: 1080px; margin: 0 auto; padding-left: var(--space-x); padding-right: var(--space-x); }
.container-sm    { max-width: 900px;  margin: 0 auto; padding-left: var(--space-x); padding-right: var(--space-x); }
.container-legal { max-width: 820px;  margin: 0 auto; padding-left: var(--space-x); padding-right: var(--space-x); }
.container-narrow{ max-width: 720px;  margin: 0 auto; padding-left: var(--space-x); padding-right: var(--space-x); }

.section    { padding-top: 88px; padding-bottom: 88px; }
.section-sm { padding-top: 64px; padding-bottom: 64px; }
.section-tight { padding-top: 52px; padding-bottom: 52px; }
.section-hero { padding-top: 92px; padding-bottom: 40px; }

.section-dark { background: var(--ink-2); }
.section-alt  { background: var(--bg-alt); border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }

.text-center { text-align: center; }

.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 20px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-gap-14 { gap: 14px; }
.grid-gap-16 { gap: 16px; }

.grid-2-center { align-items: center; }

@media (max-width: 760px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
  .nav-links { display: none !important; }
  .nav-menu-btn { display: inline-flex !important; }
}

@media (max-width: 600px) {
  h1 { font-size: 34px !important; line-height: 1.08 !important; }
  h2 { font-size: 26px !important; line-height: 1.12 !important; }
  h3 { font-size: 21px !important; }
  blockquote { font-size: 20px !important; }
}

/* ============ eyebrow / section head ============ */
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 { font-size: 42px; line-height: 1.08; margin: 0 auto 16px; max-width: 20ch; }
.section-head p { font-size: 18px; color: var(--body-text-2); max-width: 62ch; margin: 0 auto; }
.section-head.dark h2 { color: #fff; }
.section-head.dark p { color: var(--muted-2); }
.section-head.dark .eyebrow { color: var(--teal); }

/* ============ buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 10px;
  font-weight: 600; font-size: 16px; cursor: pointer; border: none;
  font-family: var(--font-body);
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(44,85,224,0.24); }
.btn-primary:hover { background: var(--blue-hover); color: #fff; }
.btn-primary.teal { background: var(--teal); box-shadow: 0 6px 18px rgba(22,184,163,0.28); }
.btn-primary.teal:hover { background: #0E9986; color: #fff; }
.btn-secondary { background: #fff; color: var(--ink); border: 1px solid #DCE3ED; }
.btn-secondary:hover { color: var(--ink); border-color: #C7D2E0; }
.btn-white { background: #fff; color: #0E7A6C; }
.btn-white:hover { color: #0E7A6C; opacity: 0.92; }
.btn-row { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }
.btn svg { flex: none; }

/* ============ nav ============ */
.site-nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(251,253,255,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 600px) { .site-nav { padding: 14px 20px; } }
.nav-brand { display: flex; align-items: center; gap: 11px; cursor: pointer; }
.nav-brand-name { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); }
.nav-brand-name span { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link { color: var(--body-text-2); font-weight: 500; cursor: pointer; }
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); font-weight: 600; }
.nav-signin { color: var(--body-text-2); cursor: pointer; }
.nav-signin:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; border-radius: 9px;
  background: var(--teal); color: #fff; font-weight: 600; cursor: pointer;
  box-shadow: 0 4px 14px rgba(22,184,163,0.30);
}
.nav-cta:hover { color: #fff; background: #0E9986; }
.nav-menu-btn {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 9px;
  border: 1px solid #DCE3ED; background: #fff; cursor: pointer;
}

/* ============ mobile menu sheet ============ */
.mobile-menu {
  display: none; flex-direction: column;
  border-bottom: 1px solid var(--border); background: var(--bg);
  padding: 8px 20px 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-item {
  padding: 13px 6px; min-height: 44px; display: flex; align-items: center;
  font-size: 15px; font-weight: 500; color: var(--body-text-2);
  border-bottom: 1px solid var(--border-3); cursor: pointer;
}
.mobile-menu-item:last-of-type { border-bottom: none; }
.mobile-menu-item.active { font-weight: 600; color: var(--ink); }
.mobile-menu-cta {
  margin-top: 14px; height: 48px; border-radius: 10px; background: var(--teal); color: #fff;
  font-weight: 600; font-size: 15px; display: flex; align-items: center; justify-content: center;
  gap: 8px; cursor: pointer; border: none;
}

/* ============ badges ============ */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 28px;
}
.badge-blue { background: var(--blue-tint-bg); border: 1px solid var(--blue-tint-border); }
.badge-blue .badge-dot { background: var(--teal); }
.badge-blue span.badge-label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--blue-tint-text); }
.badge-teal-dark { background: rgba(22,184,163,0.14); }
.badge-teal-dark span.badge-label { font-size: 12px; font-weight: 600; color: var(--teal-soft); }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; }
.badge-pill { display: inline-flex; padding: 4px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 600; }
.badge-pill-dark { background: rgba(22,184,163,0.16); color: var(--teal-soft); }
.badge-pill-blue { background: var(--blue-tint-bg); color: var(--blue-tint-text); }

/* ============ hero ============ */
.hero { text-align: center; }
.hero h1 { font-size: 62px; line-height: 1.02; margin: 0 auto 24px; max-width: 18ch; }
.hero p.lead { font-size: 20px; color: var(--body-text-2); max-width: 60ch; margin: 0 auto 34px; line-height: 1.55; }
.hero-note { font-size: 13.5px; color: var(--muted-2); margin-top: 14px; }
.page-hero h1 { font-size: 52px; line-height: 1.05; margin: 0 auto 20px; max-width: 18ch; }
.page-hero p.lead { font-size: 18px; color: var(--body-text-2); max-width: 56ch; margin: 0 auto; }
.page-hero { text-align: center; }

/* ============ product window mock ============ */
.product-window {
  margin-top: 56px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(15,23,42,0.20); border: 1px solid var(--border); text-align: left;
}
.product-window-bar { display: flex; align-items: center; gap: 8px; padding: 11px 16px; background: var(--ink); }
.product-window-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.product-window-bar .url { margin-left: 12px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.product-window-body { display: grid; grid-template-columns: 200px 1fr; background: var(--bg); }
@media (max-width: 640px) { .product-window-body { grid-template-columns: 1fr; } .product-window-side { display: none; } }
.product-window-side { background: var(--ink); padding: 16px 12px; display: flex; flex-direction: column; gap: 4px; }
.product-window-brand { display: flex; align-items: center; gap: 8px; padding: 4px 8px 14px; font-family: var(--font-display); font-weight: 600; font-size: 13px; color: #fff; }
.product-window-navitem { display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: 7px; font-size: 12.5px; font-weight: 500; color: var(--muted-2); }
.product-window-navitem .dot { width: 7px; height: 7px; border-radius: 2px; background: #334155; }
.product-window-navitem.active { color: #fff; background: rgba(44,85,224,0.16); }
.product-window-navitem.active .dot { background: var(--teal); }
.product-window-main { padding: 22px 24px; }
.product-window-title { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin-bottom: 16px; }
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
@media (max-width: 480px) { .kpi-grid { grid-template-columns: 1fr; } }
.kpi { border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; background: #fff; }
.kpi-label { font-size: 10.5px; font-weight: 600; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; }
.kpi-value { font-family: var(--font-mono); font-size: 18px; margin-top: 3px; }
.kpi-value.amber { color: var(--amber-tint-text); }
.kpi-bar { height: 5px; border-radius: 999px; background: var(--border-2); margin-top: 7px; overflow: hidden; }
.kpi-bar-fill { height: 100%; background: var(--blue); }
.kpi-delta { font-size: 11px; color: var(--teal-tint-text); margin-top: 6px; font-weight: 600; }
.task-table { border: 1px solid var(--border); border-radius: 10px; background: #fff; overflow: hidden; }
.task-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-top: 1px solid var(--border-3); }
.task-row:first-child { border-top: none; }
.task-check { width: 13px; height: 13px; border-radius: 4px; border: 2px solid #CBD5E1; flex: none; }
.task-name { font-size: 12.5px; color: var(--body-text); flex: 1; }
.task-pill { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 999px; font-size: 10.5px; font-weight: 600; }
.task-pill .dot { width: 5px; height: 5px; border-radius: 50%; }
.task-pill-done { background: var(--bg-alt-3); color: var(--body-text-2); }
.task-pill-done .dot { background: var(--muted-2); }
.task-pill-ontrack { background: var(--teal-tint-bg); color: var(--teal-tint-text); }
.task-pill-ontrack .dot { background: var(--teal); }
.task-pill-risk { background: var(--amber-tint-bg); color: var(--amber-tint-text); }
.task-pill-risk .dot { background: var(--amber); }

/* ============ owned AI cards (home) ============ */
.oai-card { background: var(--ink-3); border: 1px solid var(--ink-border); border-radius: 16px; padding: 28px; }
.oai-card-num {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(22,184,163,0.16); color: var(--teal-soft);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 16px; margin-bottom: 16px;
}
.oai-card-title { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: #fff; margin-bottom: 8px; }
.oai-card-body { font-size: 14px; color: var(--muted-2); line-height: 1.65; }
.oai-readmore { text-align: center; margin-top: 36px; }
.oai-readmore a { font-size: 15px; font-weight: 600; color: var(--teal); cursor: pointer; }

/* ============ phase / feature cards ============ */
.phase-card, .evidence-card, .security-pillar, .comp-card, .sub-card, .door-card, .integration-card {
  border-radius: 14px; padding: 28px; background: #fff; border: 1px solid var(--border);
}
.phase-card h3, .security-pillar h3, .comp-card h3, .sub-card h3, .door-card h3 { font-size: 17px; margin-bottom: 8px; font-family: var(--font-body); font-weight: 600; letter-spacing: normal; }
.phase-card p, .security-pillar p, .comp-card p, .door-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

.evidence-card { background: var(--ink-3); border-color: var(--ink-border); padding: 24px; }
.evidence-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: #fff; margin-bottom: 8px; letter-spacing: normal; }
.evidence-card p { font-size: 13.5px; color: var(--muted-2); line-height: 1.6; margin: 0; }

.integration-card { display: flex; align-items: center; gap: 14px; padding: 18px 20px; }
.integration-icon {
  width: 40px; height: 40px; border-radius: 10px; color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 16px; flex: none;
}
.integration-name { font-size: 14.5px; font-weight: 600; }
.integration-sub { font-size: 12.5px; color: var(--muted-2); }

.door-card { cursor: pointer; box-shadow: 0 1px 2px rgba(15,23,42,0.04); }
.door-card h3 { font-family: var(--font-display); font-size: 19px; }
.door-card p { color: var(--muted); font-size: 14.5px; }
.door-card .door-link { font-size: 13.5px; font-weight: 600; color: var(--blue); margin-top: 14px; }
.door-card.active { border-color: var(--blue-tint-border-strong); background: var(--blue-tint-bg); }
.door-card .door-status { font-size: 13px; font-weight: 600; color: var(--muted-2); }
.door-card.active .door-status { color: var(--blue-tint-text); }

/* ============ proof / CTA band (home) ============ */
.proof-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 44px;
  box-shadow: 0 8px 30px rgba(44,85,224,0.08); text-align: center;
}
.proof-card blockquote {
  font-family: var(--font-display); font-weight: 500; font-size: 26px; line-height: 1.4; letter-spacing: -0.01em;
  color: var(--ink); margin: 0 auto 24px; max-width: 28ch;
}
.proof-attribution { display: flex; align-items: center; justify-content: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; background: #1F7A54; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 600; flex: none;
}
.proof-name { text-align: left; }
.proof-name .n { font-size: 14px; font-weight: 600; }
.proof-name .r { font-size: 13px; color: var(--muted); }
.proof-link { margin-top: 22px; }
.proof-link a { font-size: 14px; font-weight: 600; color: var(--blue); cursor: pointer; }

.cta-band { background: var(--teal); border-radius: 20px; padding: 56px 48px; text-align: center; box-shadow: 0 30px 70px rgba(22,184,163,0.28); }
.cta-band h2 { font-size: 38px; line-height: 1.08; color: #fff; margin: 0 auto 14px; max-width: 20ch; }
.cta-band p { font-size: 17px; color: #D7F5EF; margin: 0 auto 28px; max-width: 46ch; }

/* ============ Owned AI page components ============ */
.oai-component { padding: 64px 0; }
.oai-component-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.oai-component.flip .oai-component-inner { direction: rtl; }
.oai-component.flip .oai-component-inner > * { direction: ltr; }
@media (max-width: 760px) { .oai-component-inner { grid-template-columns: 1fr !important; } .oai-component.flip .oai-component-inner { direction: ltr; } }
.oai-component-num { font-family: var(--font-mono); font-size: 13px; color: var(--teal); font-weight: 500; margin-bottom: 10px; }
.oai-component-title { font-size: 30px; line-height: 1.1; margin: 0 0 14px; }
.oai-component-body { font-size: 16px; color: var(--body-text-2); line-height: 1.65; }

.manifest-rail, .assumption-cards, .filing-gate { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.manifest-rail { background: var(--bg-alt); }
.manifest-rail-h { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.manifest-rail-sub { font-size: 12px; color: var(--muted-2); margin-bottom: 14px; }
.manifest-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-radius: 9px; margin-bottom: 7px; }
.manifest-item.included { background: var(--teal-tint-bg); border: 1px solid var(--teal-tint-border); }
.manifest-item.included .m-name { font-size: 12.5px; font-weight: 500; color: var(--teal-tint-text); }
.manifest-item.included .m-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.manifest-item.excluded { background: #fff; border: 1px solid var(--border-2); }
.manifest-item.excluded .m-name { font-size: 12.5px; font-weight: 500; color: var(--muted); }
.manifest-item.excluded .m-add { font-size: 11px; font-weight: 600; color: var(--muted-2); }

.assumption-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.assumption-head .t { font-size: 13px; font-weight: 600; }
.assumption-head .c { font-size: 11.5px; font-weight: 600; color: var(--amber-tint-text); }
.assumption-progress { height: 6px; border-radius: 999px; background: var(--border-2); overflow: hidden; margin-bottom: 16px; }
.assumption-progress-fill { height: 100%; width: 60%; background: var(--teal); }
.assumption-row { padding: 11px 12px; border-radius: 11px; margin-bottom: 8px; border: 1px solid var(--border); }
.assumption-row.owned { background: var(--teal-tint-bg-soft); border-color: var(--teal-tint-border); }
.assumption-text { font-size: 12.5px; color: var(--body-text); line-height: 1.45; margin-bottom: 9px; }
.assumption-row.owned .assumption-text { margin-bottom: 8px; }
.assumption-owner { display: flex; align-items: center; gap: 8px; }
.assumption-owner .initials { width: 20px; height: 20px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 9.5px; font-weight: 600; }
.assumption-owner .label { font-size: 11.5px; font-weight: 600; color: var(--teal-tint-text); }
.assumption-claim { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 8px; border: 1px solid var(--blue-tint-border-strong); background: var(--blue-tint-bg); color: var(--blue-tint-text); font-weight: 600; font-size: 12px; }
.assumption-gate { margin-top: 6px; padding: 11px; border-radius: 9px; background: #E2E8F0; color: var(--muted-2); font-weight: 600; font-size: 12.5px; text-align: center; }

.filing-gate-badge-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.filing-gate-doc { border: 1px solid var(--border-2); border-radius: 10px; padding: 16px; margin-bottom: 16px; background: var(--bg); }
.filing-gate-doc-title { font-family: var(--font-display); font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.filing-gate-doc-line { height: 8px; background: var(--bg-alt-3); border-radius: 4px; margin-bottom: 6px; }
.filing-gate-btn { padding: 12px; border-radius: 9px; background: #E2E8F0; color: var(--muted-2); font-weight: 600; font-size: 14px; text-align: center; }
.filing-gate-note { font-size: 11.5px; color: var(--muted-2); margin-top: 10px; text-align: center; }

/* ============ sovereign tier (security) ============ */
.sovereign-tier { background: var(--ink-2); border-radius: 18px; padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 760px) { .sovereign-tier { grid-template-columns: 1fr !important; } }
.sovereign-tier h3 { font-family: var(--font-display); font-weight: 600; font-size: 26px; line-height: 1.12; color: #fff; letter-spacing: -0.01em; margin: 0 0 12px; }
.sovereign-tier p { font-size: 14.5px; color: var(--muted-2); line-height: 1.65; margin: 0; }
.sovereign-list { display: flex; flex-direction: column; gap: 10px; }
.sovereign-item { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 10px; background: rgba(255,255,255,0.04); border: 1px solid var(--ink-border); font-size: 13px; color: #CBD5E1; }
.sovereign-item svg { color: var(--teal); flex: none; }

.sub-row { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border-3); }
.sub-row:last-child { border-bottom: none; padding-bottom: 0; }
.sub-row .n { font-size: 13px; font-weight: 600; color: var(--body-text); }
.sub-row .d { font-size: 12.5px; color: var(--muted-2); text-align: right; }
.comp-card a.crosslink { font-size: 13.5px; font-weight: 600; color: var(--blue); cursor: pointer; }

/* ============ verticals ============ */
.pain-feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
@media (max-width: 760px) { .pain-feature-row { grid-template-columns: 1fr !important; } }
.pain-item, .feature-item { display: flex; gap: 12px; align-items: flex-start; }
.pain-icon { width: 26px; height: 26px; border-radius: 7px; background: var(--red-tint-bg); color: var(--red-tint-text); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex: none; }
.feature-icon { width: 26px; height: 26px; border-radius: 7px; background: var(--teal-tint-bg); color: var(--teal-tint-text); display: flex; align-items: center; justify-content: center; flex: none; }
.pain-text { font-size: 15px; color: var(--body-text); line-height: 1.55; }
.feature-text { font-size: 15px; color: var(--ink); line-height: 1.55; font-weight: 500; }
.starter-pack { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; border-radius: 14px; background: var(--ink-2); margin-top: 20px; flex-wrap: wrap; }
.starter-pack h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: #fff; margin-bottom: 6px; }
.starter-pack p { font-size: 14px; color: var(--muted-2); margin: 0; }
.starter-pack .btn { padding: 11px 20px; border-radius: 9px; background: var(--teal); color: #fff; font-weight: 600; font-size: 14px; white-space: nowrap; }
.local-proof { text-align: center; margin-top: 28px; font-size: 14px; color: var(--muted); }
.swap-note { max-width: 1080px; margin: 0 auto; padding: 20px var(--space-x) 72px; text-align: center; font-size: 13px; color: var(--muted-2); }
.vertical-tag { display: inline-flex; align-items: center; gap: 7px; padding: 5px 13px; border-radius: 999px; background: var(--blue-tint-bg); color: var(--blue-tint-text); font-size: 12px; font-weight: 600; margin-bottom: 16px; }

/* ============ product page (module rows) ============ */
.module-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 760px) { .module-row { grid-template-columns: 1fr !important; } .module-row.reverse .module-shot { order: -1; } }
.module-row.reverse { direction: rtl; }
.module-row.reverse > * { direction: ltr; }
.module-num { font-family: var(--font-mono); font-size: 13px; color: var(--teal); font-weight: 500; margin-bottom: 10px; }
.module-title { font-size: 28px; line-height: 1.1; margin: 0 0 14px; }
.module-body { font-size: 16px; color: var(--body-text-2); line-height: 1.65; }
.module-shot { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(15,23,42,0.12); background: #fff; }
.module-shot-bar { display: flex; align-items: center; gap: 6px; padding: 9px 13px; background: var(--ink); }
.module-shot-bar .dot { width: 9px; height: 9px; border-radius: 50%; }
.module-shot-body { padding: 20px; min-height: 190px; display: flex; flex-direction: column; gap: 10px; }
.module-shot-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); margin-bottom: 2px; }
.module-shot-line { height: 12px; width: 55%; border-radius: 4px; background: var(--blue-tint-border-strong); }
.module-shot-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.module-shot-box { height: 54px; border-radius: 9px; background: var(--bg-alt-3); border: 1px solid var(--border-2); }
.module-shot-bar-line { height: 10px; border-radius: 4px; background: var(--bg-alt-3); }
.module-shot-buttons { display: flex; gap: 8px; margin-top: 4px; }
.module-shot-btn-a { width: 76px; height: 26px; border-radius: 7px; background: var(--blue); }
.module-shot-btn-b { width: 76px; height: 26px; border-radius: 7px; background: var(--blue-tint-bg); border: 1px solid var(--blue-tint-border-strong); }

.try-ladder-card { background: var(--ink-3); border: 1px solid var(--ink-border); border-radius: 16px; padding: 26px; }
.try-ladder-card.featured { background: var(--teal); border-color: var(--teal); }
.try-ladder-step { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.try-ladder-card.featured .try-ladder-step { color: #D7F5EF; }
.try-ladder-title { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: #fff; margin-bottom: 8px; }
.try-ladder-body { font-size: 13.5px; color: var(--muted-2); line-height: 1.6; }
.try-ladder-card.featured .try-ladder-body { color: #EAFBF6; }

/* ============ pricing ============ */
.pricing-card { border: 1px solid var(--border); border-radius: 18px; padding: 32px; background: #fff; box-shadow: 0 1px 2px rgba(15,23,42,0.04); }
.pricing-card.dark { border-color: var(--ink-2); background: var(--ink-2); box-shadow: 0 30px 70px rgba(11,18,32,0.28); }
.pricing-card h3 { font-size: 21px; margin-bottom: 6px; }
.pricing-card.dark h3 { color: #fff; }
.pricing-card .sub { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; min-height: 40px; }
.pricing-card.dark .sub { color: var(--muted-2); }
.pricing-card .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.pricing-card .price .amount { font-family: var(--font-display); font-weight: 600; font-size: 40px; letter-spacing: -0.02em; }
.pricing-card.dark .price .amount { color: #fff; }
.pricing-card .price .unit { font-size: 14px; color: var(--muted); }
.pricing-card .min-note { font-size: 12.5px; color: var(--muted-2); margin-bottom: 22px; }
.pricing-card .cta { display: block; text-align: center; padding: 12px; border-radius: 9px; font-weight: 600; font-size: 14.5px; cursor: pointer; margin-bottom: 22px; color: #fff; }
.pricing-card .cta:hover { color: #fff; }
.pricing-card .cta.blue { background: var(--blue); }
.pricing-card .cta.teal { background: var(--teal); }
.feat-row { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; }
.feat-row svg { flex: none; margin-top: 1px; color: var(--blue); }
.pricing-card.dark .feat-row svg { color: var(--teal); }
.feat-row span { font-size: 13.5px; color: var(--body-text); }
.pricing-card.dark .feat-row span { color: #CBD5E1; }

.comparison-table { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; }
.comparison-head, .comparison-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; padding: 14px 22px; align-items: center; }
@media (max-width: 600px) { .comparison-head, .comparison-row { grid-template-columns: 1.4fr 1fr 1fr; padding: 12px 14px; } }
.comparison-head { background: var(--bg-alt-2); border-bottom: 1px solid var(--border-2); font-size: 12px; font-weight: 600; color: var(--body-text-2); }
.comparison-row { border-top: 1px solid var(--border-3); }
.comparison-row .label { font-size: 13.5px; color: var(--body-text); }
.comparison-cell { text-align: center; font-size: 13px; color: var(--body-text-2); }
.comparison-head .comparison-cell { text-align: center; }

.faq-item { border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; background: #fff; }
.faq-q { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ============ case study ============ */
.case-card { border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: #fff; box-shadow: 0 8px 30px rgba(44,85,224,0.08); display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) { .case-card { grid-template-columns: 1fr !important; } }
.case-card .left { padding: 44px; }
.case-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 24px; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: #14543A; }
.case-card blockquote { font-family: var(--font-display); font-weight: 500; font-size: 24px; line-height: 1.4; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 24px; }
.case-card .right { background: var(--ink-2); padding: 44px; display: flex; flex-direction: column; justify-content: center; gap: 28px; }
.case-metric-value { font-family: var(--font-display); font-weight: 600; font-size: 40px; letter-spacing: -0.02em; color: #fff; }
.case-metric-label { font-size: 14px; color: var(--muted-2); margin-top: 2px; }
.case-note { background: var(--amber-tint-bg); color: var(--amber-tint-text); border-radius: 10px; padding: 10px 16px; font-size: 13px; font-weight: 600; text-align: center; margin-bottom: 24px; }
.case-narrative { max-width: 720px; margin: 40px auto 0; }
.case-narrative p { font-size: 16px; color: var(--body-text); line-height: 1.75; margin: 0 0 16px; }
.case-narrative p:last-child { margin-bottom: 0; }

/* ============ about ============ */
.about-photo {
  height: 300px; border-radius: 16px; background: #E9EEF5; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 32px;
  font-size: 13px; color: var(--muted-2);
}
.about-body p { font-size: 16.5px; color: var(--body-text); line-height: 1.75; margin: 0 0 16px; }

/* ============ see it live ============ */
.perk { text-align: center; padding: 0 12px; }
.perk h3 { font-size: 18px; margin-bottom: 8px; }
.perk p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ============ legal pages ============ */
.legal-header h1 { font-size: 44px; line-height: 1.06; margin: 0 0 12px; max-width: 20ch; }
.legal-lead { font-size: 17px; color: var(--body-text-2); line-height: 1.6; margin: 0 0 18px; max-width: 60ch; }
.legal-meta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.legal-meta span { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted-2); }
.legal-toc { margin: 24px 0 8px; padding: 16px 18px; background: var(--bg-alt); border: 1px solid var(--border-2); border-radius: 12px; }
.legal-toc-title { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.legal-toc-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.legal-toc-links span { font-size: 13.5px; color: var(--blue); font-weight: 500; }
.legal-section { padding-top: 34px; }
.legal-section h2 { font-size: 24px; line-height: 1.12; letter-spacing: -0.01em; margin: 0 0 14px; }
.legal-section p { font-size: 15.5px; color: var(--body-text); line-height: 1.7; margin: 0 0 14px; }
.legal-section ul { margin: 0 0 14px; padding-left: 20px; }
.legal-section li { font-size: 15.5px; color: var(--body-text); line-height: 1.7; margin-bottom: 6px; }
.legal-note { margin-top: 40px; padding: 16px 18px; border-radius: 12px; background: var(--blue-tint-bg); border: 1px solid var(--blue-tint-border); }
.legal-note-title { font-size: 13.5px; font-weight: 600; color: var(--blue-tint-text); margin-bottom: 4px; }
.legal-note p { font-size: 13px; color: #3A5B9E; margin: 0; line-height: 1.6; }
.legal-contact { margin-top: 24px; font-size: 14.5px; color: var(--body-text-2); }

/* ============ footer ============ */
.site-footer { background: var(--ink-2); padding: 56px var(--space-x) 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--ink-border); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr !important; } }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-brand-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: #fff; }
.footer-brand-name span { color: var(--teal); }
.footer-tagline { font-size: 13px; color: var(--muted); margin: 0 0 14px; max-width: 34ch; }
.footer-motto { font-size: 12.5px; color: var(--muted); }
.footer-col-title { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.footer-links a { color: #94A3B8; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 12.5px; color: var(--muted); }

/* ============ misc utility ============ */
.mt-0 { margin-top: 0; }
.icon-check { flex: none; }
