/* =====================================================================
   Jisr — refined design system
   PhD-level pass: type rhythm, optical alignment, generous whitespace,
   restrained color, single shadow language, 8pt grid throughout.
   ===================================================================== */

:root {
  /* ── Color: restrained palette ───────────────────────────────────── */
  --bg:           #FFFFFF;
  --surface:      #F8FAFC;        /* slate-50 */
  --surface-2:    #F1F5F9;        /* slate-100 */
  --ink:          #0A0F1E;        /* near-black, slightly cool */
  --ink-2:        #1A1F33;
  --ink-700:      #0F172A;
  --ink-800:      #1E293B;

  --text-1:       #0F172A;        /* slate-900 — headings */
  --text-2:       #334155;        /* slate-700 — body */
  --text-3:       #64748B;        /* slate-500 — secondary */
  --text-4:       #94A3B8;        /* slate-400 — tertiary / placeholders */

  --border:       #E2E8F0;        /* slate-200 */
  --border-2:     #EEF2F7;        /* hairline */
  --border-3:     #F1F5F9;        /* even softer */

  --primary:      #0A5CFE;
  --primary-700:  #0846C8;
  --primary-600:  #1E63FF;
  --primary-50:   #EEF3FF;
  --teal:         #10B981;
  --teal-50:      #ECFDF5;
  --rose:         #E11D48;

  /* ── Type ─────────────────────────────────────────────────────────── */
  --display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --serif:   "Instrument Serif", "Times New Roman", Georgia, serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Type scale — disciplined, 16px base, modular */
  --fs-mono:   12px;
  --fs-xs:     12.5px;
  --fs-sm:     13.5px;
  --fs-base:   15px;
  --fs-md:     16px;
  --fs-lg:     17px;
  --fs-xl:     20px;
  --fs-2xl:    24px;
  --fs-3xl:    30px;
  --fs-4xl:    40px;
  --fs-5xl:    52px;
  --fs-6xl:    64px;
  --fs-display: clamp(44px, 6vw + 8px, 80px);

  --lh-tight:   1.08;
  --lh-snug:    1.2;
  --lh-normal:  1.4;
  --lh-base:    1.55;
  --lh-relaxed: 1.7;

  /* ── Radii ───────────────────────────────────────────────────────── */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   14px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-pill: 999px;

  /* ── Shadows — single language ────────────────────────────────────── */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 16px 32px -12px rgba(15, 23, 42, 0.12), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 28px 60px -20px rgba(15, 23, 42, 0.18), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 12px 28px -8px rgba(10, 92, 254, 0.35);

  /* ── Layout ──────────────────────────────────────────────────────── */
  --container: 1200px;
  --container-wide: 1320px;
  --pad-x: clamp(20px, 4vw, 40px);
  --section-y: clamp(96px, 11vw, 160px);
  --section-y-tight: clamp(72px, 7vw, 112px);
}

/* =========================================================================
   Reset + base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
  overflow: hidden;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text-2);
  font-size: var(--fs-md);
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* ss02 = Inter "Disambiguation" set: gives capital I serifs and lowercase l
     a tail so they are visually distinct (the previous cv11/ss01 combination
     gave us the slab "I" that looked like a pipe character) */
  font-feature-settings: "ss02", "kern";
  height: 100%;
  overflow: hidden;
}
#root { height: 100%; }

/* =========================================================================
   Master scroll-snap container — THE ONLY scrollable element
   ========================================================================= */
.snap-root {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: transparent;
  z-index: 1;
}

/* =========================================================================
   Global interactive grid — fixed under all sections
   ========================================================================= */
.global-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.global-grid .gg-layer {
  position: absolute;
  inset: 0;
  color: #0F172A;
}
.global-grid .gg-base { opacity: 0.06; }
.global-grid .gg-reveal {
  opacity: 0.42;
  mask-image: radial-gradient(300px circle at -1000px -1000px, black, transparent);
  -webkit-mask-image: radial-gradient(300px circle at -1000px -1000px, black, transparent);
}
.global-grid .gg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.global-grid .gg-orb.o1 { right: -20%; top: -20%; width: 40%; height: 40%; background: rgba(249, 115, 22, 0.30); }
.global-grid .gg-orb.o2 { right: 10%;  top: -10%; width: 20%; height: 20%; background: rgba(10, 92, 254, 0.22); filter: blur(100px); }
.global-grid .gg-orb.o3 { left: -10%; bottom: -20%; width: 40%; height: 40%; background: rgba(59, 130, 246, 0.28); }
.snap-root::-webkit-scrollbar { display: none; width: 0; height: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: rgba(10, 92, 254, 0.18); color: var(--ink); }
input, textarea, select { font: inherit; color: inherit; }
hr { border: 0; border-top: 1px solid var(--border-2); margin: 0; }

/* =========================================================================
   Type — the heart of the design
   ========================================================================= */
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-action-label {
  font-family: var(--display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.4;
}

.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.16);
}
.eyebrow.accent { color: var(--primary); }
.eyebrow.accent .dot { background: var(--primary); box-shadow: 0 0 0 4px rgba(10, 92, 254, 0.14); }

/* Display: hero */
.display {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--fs-display);
  line-height: 1.0;
  letter-spacing: -0.045em;
  color: var(--text-1);
  margin: 0;
  text-wrap: balance;
}
.display em {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.025em;
  color: var(--primary);
  /* serif italic sits slightly higher on the baseline; nudge down */
  display: inline-block;
  transform: translateY(0.015em);
}

/* H2: section heads */
.h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text-1);
  margin: 0;
  text-wrap: balance;
}
.h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--primary);
}

/* H3: card titles, smaller heads */
.h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--fs-xl);
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--text-1);
  margin: 0;
}

/* H4: smaller titles inside cards */
.h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--fs-lg);
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--text-1);
  margin: 0;
}

/* Lede / subhead */
.lede {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--text-3);
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 56ch;
  margin: 0;
  text-wrap: pretty;
}
.lede.lg {
  font-size: clamp(17px, 1vw + 13px, 22px);
  line-height: 1.5;
  max-width: 64ch;
}
.lede.center { margin-left: auto; margin-right: auto; }

.muted { color: var(--text-3); }
.label-mono {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}

/* =========================================================================
   Layout
   ========================================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.container.wide { max-width: var(--container-wide); }

.section {
  padding: 88px 0 32px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
}
.section.section--top { align-items: flex-start; }
.section-tight {
  padding: 88px 0 32px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
}
.section-pull { padding-top: 56px; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  max-width: 720px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  text-align: center;
}
/* Ensure h2 in flex section-head takes full width so <br/> has room to wrap */
.section-head > .h2 { width: 100%; }
.section-head .lede { max-width: 60ch; }
.section-head.center .lede { max-width: 56ch; }
@media (max-width: 720px) {
  .section-head { margin-bottom: 40px; gap: 14px; }
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 200ms cubic-bezier(.2,.8,.2,1),
              box-shadow 200ms cubic-bezier(.2,.8,.2,1),
              background 200ms,
              border-color 200ms,
              color 200ms;
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: translateY(0); }
.btn .arr { display: inline-flex; transition: transform 220ms cubic-bezier(.2,.8,.2,1); }
.btn:hover .arr { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.30);
}
.btn-blue {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-blue:hover {
  background: var(--primary-700);
  transform: translateY(-1px);
}
.btn-ghost {
  background: #fff;
  color: var(--text-1);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: #CBD5E1;
}
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-sm { height: 36px; padding: 0 14px; font-size: 13.5px; }
.btn-lg { height: 50px; padding: 0 26px; font-size: 15.5px; }

/* =========================================================================
   Reveal on scroll — animation-based (won't get stuck if observer misses)
   ========================================================================= */
.reveal {
  animation: reveal-in 700ms cubic-bezier(.2,.8,.2,1) both;
  animation-delay: var(--rd, 0ms);
}
@keyframes reveal-in {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: none; }
}
/* Always end visible — protect against animation interrupts */
.reveal { animation-fill-mode: both; }
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =========================================================================
   Announce bar
   ========================================================================= */
.announce {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 60;
}
.announce .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.8s infinite;
}
.announce .sep { opacity: 0.35; }
.announce a {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff;
  transition: opacity 160ms;
}
.announce a:hover { opacity: 0.75; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(16, 185, 129, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0   rgba(16, 185, 129, 0); }
}

/* =========================================================================
   Nav
   ========================================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: var(--border-2);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--text-1);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand .mark {
  width: 24px; height: 24px;
  border-radius: 7px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.brand .mark::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
}
.brand .mark::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-2);
  font-weight: 450;
  letter-spacing: -0.005em;
  transition: background 160ms, color 160ms;
}
.nav-links a:hover { background: var(--surface); color: var(--text-1); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  padding: 96px 0 32px;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-sizing: border-box;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.22);
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.hero-eyebrow {
  padding: 6px 12px 6px 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  box-shadow: var(--shadow-xs);
}
.hero-eyebrow .tag {
  background: var(--teal-50);
  color: #047857;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-pill);
}
.hero-eyebrow .arr { color: var(--text-3); transition: transform 220ms; }
.hero-eyebrow:hover .arr { transform: translateX(2px); }

.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 4vw + 12px, 68px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text-1);
  margin: 0;
  width: 100%;
  text-align: center;
}
.hero h1 .ln1 {
  display: block;
}
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: -0.015em;
  display: block;
  margin-top: 0.06em;
  line-height: 1.05;
}
.hero .lede {
  text-align: center;
  margin: 0 auto;
  max-width: 58ch;
  color: var(--text-2);
  font-size: clamp(16px, 0.6vw + 14px, 19px);
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.hero-trust {
  margin-top: 24px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center;
  color: var(--text-3);
  font-size: 13px;
}
.hero-trust .item { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .item svg { color: var(--text-3); }
.hero-trust .sep { width: 1px; height: 14px; background: var(--border); }

/* =========================================================================
   Stats strip
   ========================================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat {
  padding: 22px 20px;
  border-right: 1px solid var(--border-2);
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.stat:last-child { border-right: 0; }
.stat .num {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-1);
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.stat .num .unit {
  font-size: 0.46em;
  color: var(--text-3);
  margin-left: 4px;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.stat .desc {
  color: var(--text-3);
  font-size: 12.5px;
  line-height: 1.4;
  max-width: 32ch;
}
.stat-foot {
  text-align: center;
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(17px, 1.3vw + 12px, 23px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.3;
  color: var(--text-1);
}
.stat-foot .accent { color: var(--primary); }
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--border-2); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border-2); }
  .stat:nth-last-child(-n+1):nth-child(odd) { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
  .stat:last-child { border-bottom: 0; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-bottom: 1px solid var(--border-2); }
  .stat:last-child { border-bottom: 0; }
  .stat .num { font-size: 36px; }
}

/* =========================================================================
   Workflow grid
   ========================================================================= */
.wf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.wf-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 280ms cubic-bezier(.2,.8,.2,1),
              box-shadow 280ms,
              border-color 280ms;
  position: relative;
  overflow: hidden;
}
.wf-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #DBE3EE;
}
.wf-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--primary-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 2px;
  transition: background 200ms, transform 200ms;
}
.wf-card:hover .wf-icon { background: #E0EAFF; }
.wf-card h4 {
  font-family: var(--display);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--text-1);
  margin: 0;
}
.wf-card p {
  color: var(--text-3);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 1100px) { .wf-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .wf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .wf-grid { grid-template-columns: 1fr; gap: 10px; } }

/* =========================================================================
   Demos: WhatsApp / SMS / Voice
   ========================================================================= */
.demos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.demo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 8px;
  display: flex;
  flex-direction: column;
  min-height: unset;
  transition: transform 280ms cubic-bezier(.2,.8,.2,1), box-shadow 280ms;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.demo:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.demo-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px 10px;
  gap: 10px;
}
.demo-meta .lhs { display: flex; flex-direction: column; gap: 2px; }
.demo-meta .lhs .ttl { font-family: var(--display); font-size: 14.5px; font-weight: 500; color: var(--text-1); letter-spacing: -0.012em; line-height: 1.2; }
.demo-meta .lhs .sub { font-size: 12px; color: var(--text-3); }
.demo-meta .rhs {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 10px;
  background: var(--surface);
  border-radius: var(--r-pill);
}
.demo-meta .rhs .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.18);
}
.demo .stage {
  flex: 1 1 0;
  min-height: 0;
  height: auto;
  min-height: 500px;
  height: 65vh;
  max-height: 760px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border-2);
  position: relative;
  overflow: hidden;
}
/* Voice card: harder clip — the radial-gradient bg was bleeding past the rounded corners */
.demo--voice .stage {
  overflow: hidden;
  isolation: isolate;
  clip-path: inset(0 round var(--r-md));
}

/* Demos section — full-bleed cards, large typography matching the rest of the site */
.section--demos { align-items: center; justify-content: center; }
.section--demos .section-head { gap: 14px; margin-bottom: 36px; }
/* .h2 keeps its default clamp(32px, 3.8vw, 52px) — no compression here */
.section--demos .section-head .lede { max-width: 56ch; }
.section--demos .demos { max-width: 1180px; margin: 0 auto; width: 100%; }

/* Realistic, full-fidelity chat bubble typography */
.demo--whatsapp .wa-msgs { gap: 8px; padding: 16px; }
.demo--whatsapp .bubble {
  font-size: 15px;
  line-height: 1.42;
  padding: 8px 12px 10px;
  max-width: 86%;
}
.demo--whatsapp .bubble .meta { font-size: 10.5px; }
.demo--sms .sms-msgs { gap: 7px; padding: 16px; }
.demo--sms .sms-bubble {
  font-size: 15px;
  line-height: 1.42;
  padding: 9px 14px;
  max-width: 82%;
}
.demo--voice .voice-stage { padding: 22px; }
.demo--voice .voice-transcript {
  padding: 14px 16px;
  font-size: 13.5px;
  line-height: 1.55;
  min-height: 110px;
}
.demo--voice .waveform { height: 120px; }

@media (max-height: 820px) {
  .demo .stage { min-height: 460px; height: 64vh; max-height: 640px; }
  .section--demos .section-head { margin-bottom: 22px; }
}
@media (max-height: 720px) {
  .demo .stage { min-height: 420px; height: 62vh; max-height: 560px; }
}

/* WhatsApp */
.demo--whatsapp .stage {
  background: #ECE5DD;
  border-color: rgba(0, 0, 0, 0.06);
}
.wa-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,0.04) 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 22px 22px, 32px 32px;
  opacity: 0.6;
}
.wa-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: #075E54;
  color: #fff;
  font-size: 14px;
  position: relative; z-index: 2;
}
.wa-header .ava {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
}
.wa-header .info { display: flex; flex-direction: column; line-height: 1.2; }
.wa-header .info b { font-size: 14.5px; font-weight: 600; }
.wa-header .info span { font-size: 12px; opacity: 0.78; }
.wa-msgs {
  position: absolute; top: 66px; bottom: 0; left: 0; right: 0;
  padding: 16px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 8px;
}
.bubble {
  max-width: 78%;
  padding: 7px 11px 8px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
  z-index: 2;
  opacity: 0;
  animation: bubbleIn 380ms cubic-bezier(.2,.8,.2,1) forwards;
}
.bubble.them { background: #fff; color: #111; align-self: flex-start; border-top-left-radius: 2px; }
.bubble.me   { background: #DCF8C6; color: #111; align-self: flex-end; border-top-right-radius: 2px; }
.bubble .meta { font-size: 10px; color: rgba(0,0,0,0.45); float: right; margin-left: 10px; margin-top: 3px; }
.bubble .check { color: #34B7F1; }
.appt-card {
  background: #F6FFEC;
  border-radius: 6px;
  padding: 10px 12px;
  border: 1px solid rgba(37, 211, 102, 0.25);
}
.appt-card .appt-when {
  font-family: var(--mono);
  font-size: 11.5px;
  color: #075E54;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.appt-card .appt-what { font-size: 14.5px; color: #111; line-height: 1.4; }
.appt-card .appt-cta { font-size: 12.5px; color: #4a7c59; margin-top: 6px; font-weight: 500; }
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(6px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
.typing {
  display: inline-flex; align-items: center; gap: 4px;
  background: #fff;
  padding: 9px 14px;
  border-radius: 8px;
  border-top-left-radius: 2px;
  align-self: flex-start;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
  z-index: 2;
}
.typing span { width: 5px; height: 5px; border-radius: 50%; background: #999; animation: bounce 1.4s infinite; }
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* SMS */
.demo--sms .stage { background: #F2F2F7; border-color: rgba(0,0,0,0.06); }
.sms-header {
  padding: 14px 14px 12px;
  background: #F2F2F7;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  position: relative; z-index: 2;
}
.sms-header .ava {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #6FA0FF);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  margin-bottom: 2px;
}
.sms-header b { font-size: 14.5px; font-weight: 600; color: #1c1c1e; }
.sms-header .sub { font-size: 12px; color: var(--text-3); }
.sms-msgs {
  position: absolute; top: 100px; bottom: 0; left: 0; right: 0;
  padding: 16px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 6px;
}
.sms-bubble {
  max-width: 78%;
  padding: 8px 14px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.4;
  opacity: 0;
  animation: bubbleIn 380ms cubic-bezier(.2,.8,.2,1) forwards;
}
.sms-bubble.them { background: #E5E5EA; color: #111; align-self: flex-start; border-bottom-left-radius: 4px; }
.sms-bubble.me   { background: var(--primary); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.sms-time {
  text-align: center;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-3);
  margin: 8px 0;
  letter-spacing: 0.05em;
}

/* Voice */
.demo--voice .stage {
  background: radial-gradient(ellipse at 50% 30%, #0B1A4E 0%, #050A22 70%);
  border-color: rgba(10, 92, 254, 0.25);
}
.voice-stage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 22px;
  color: #fff;
}
.voice-call {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--mono);
  letter-spacing: 0.08em;
}
.voice-call .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
  animation: pulse 1.6s infinite;
}
.waveform {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  height: 110px;
  margin: auto 0;
  position: relative;
}
.waveform::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 260px; height: 260px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 92, 254, 0.28), transparent 60%);
  filter: blur(20px);
  animation: pulseGlow 2.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(0.85); }
  50%      { opacity: 1;   transform: translate(-50%,-50%) scale(1.05); }
}
.waveform .bar {
  width: 4px;
  background: linear-gradient(180deg, #7FA8FF, var(--primary));
  border-radius: 3px;
  animation: wave 1.3s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(10, 92, 254, 0.5);
}
@keyframes wave {
  0%, 100% { height: 8px; }
  50%      { height: var(--h, 40px); }
}
.voice-transcript {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 14px;
  font-size: 12.5px;
  line-height: 1.55;
  font-family: var(--mono);
  color: rgba(255, 255, 255, 0.85);
  min-height: 84px;
}
.voice-transcript .empty { color: rgba(255,255,255,0.35); }
.voice-transcript .who { color: #93B5FF; font-weight: 500; }
.voice-transcript .who.clara { color: var(--teal); font-weight: 600; }
.voice-transcript .line { margin-bottom: 4px; animation: bubbleIn 320ms both; }
.voice-cta {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  background: rgba(2, 10, 34, 0.7);
  backdrop-filter: blur(4px);
  z-index: 5;
  cursor: pointer;
  transition: opacity 280ms;
}
.voice-cta.hidden { opacity: 0; pointer-events: none; }
.voice-cta .play {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(10,92,254,0.55);
  transition: transform 220ms;
}
.voice-cta:hover .play { transform: scale(1.06); }
.voice-cta .lbl {
  color: #fff;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 720px) { .demos { grid-template-columns: 1fr; gap: 12px; } .demo { min-height: 420px; } }

/* =========================================================================
   Pillars (three columns of features)
   ========================================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms, box-shadow 200ms;
}
.pillar:hover { border-color: #DBE3EE; box-shadow: var(--shadow-sm); }
.pillar h3 {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: var(--text-1);
  margin: 0 0 4px;
  line-height: 1.15;
}
.pillar .pillar-sub {
  color: var(--text-3);
  font-size: 13.5px;
  margin: 0 0 12px;
  line-height: 1.4;
}
.pillar ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.pillar li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--border-2);
  font-size: 13.5px;
  line-height: 1.3;
}
.pillar li:last-child { padding-bottom: 0; }
.pillar li .check {
  flex: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-top: 3px;
  box-shadow: 0 0 0 2px rgba(10, 92, 254, 0.1);
}

/* ── Per-pillar accent colours ─────────────────────────────────────
   Only the pillar heading and the check icons receive colour. Card
   background stays white; body copy stays in the default ink scale. */
.pillar--patient h3        { color: #3B82F6; }
.pillar--patient li .check { background: #3B82F6; box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.12); }

.pillar--clinical h3        { color: #14B8A6; }
.pillar--clinical li .check { background: #14B8A6; box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.12); }

.pillar--command h3        { color: #6366F1; }
.pillar--command li .check { background: #6366F1; box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.12); }
.pillar li .t {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text-1);
  line-height: 1.2;
}
.pillar li .d {
  display: block;
  color: var(--text-3);
  font-size: 14.5px;
  margin-top: 2px;
  line-height: 1.4;
}
.pillar-callout {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: border-color 200ms, box-shadow 200ms;
}
.pillar-callout:hover { border-color: #DBE3EE; box-shadow: var(--shadow-sm); }
.pillar-callout .ttl {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.018em;
  color: var(--text-1);
  line-height: 1.2;
}
.pillar-callout .sub {
  color: var(--text-3);
  font-size: 13.5px;
  margin-top: 4px;
  line-height: 1.45;
}
.pillar-callout .badge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
}
@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; gap: 10px; } }

/* =========================================================================
   Mobile hero background — CSS animated mesh-gradient stand-in for the WebGL
   shader, which is gated off on phones for performance (see MeshGradientBG
   isMobile). Palette mirrors the shader's hero color uniforms.
   ========================================================================= */
.hero-gradient-mobile {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 80% at 18% 28%, #72b9bb 0%, transparent 60%),
    radial-gradient(55% 75% at 82% 22%, #ffd1bd 0%, transparent 60%),
    radial-gradient(70% 85% at 62% 82%, #8cc5b8 0%, transparent 65%),
    radial-gradient(55% 65% at 28% 78%, #dbf4a4 0%, transparent 60%),
    linear-gradient(135deg, #b5d9d9 0%, #ffebe0 100%);
  background-size: 200% 200%;
  animation: heroGradientDrift 18s ease-in-out infinite;
}
@keyframes heroGradientDrift {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-gradient-mobile { animation: none; }
}

/* =========================================================================
   Integrations
   ========================================================================= */
.integrations { display: flex; flex-direction: column; gap: 14px; }
.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.logo-cell {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 14px;
  border-right: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  transition: background 160ms;
}
.logo-cell:hover { background: var(--surface); }
@media (min-width: 981px) {
  .logo-cell:nth-child(5n) { border-right: 0; }
  .logo-cell:nth-last-child(-n+5) { border-bottom: 0; }
}
.ehr-logo {
  height: 34px;
  width: auto;
  max-width: 90%;
  max-height: 34px;
  object-fit: contain;
  filter: saturate(0.95);
}
.logo-cell .ehr-logo { display: block; margin: 0 auto; }
.logo-cell img.ehr-logo { height: 28px; max-height: 28px; }
/* Tablet: keep 5 columns (10 cards = clean 2x5, no orphan).
   Equal/higher specificity than desktop nth-child rules to override borders. */
@media (min-width: 601px) and (max-width: 980px) {
  .logo-row { grid-template-columns: repeat(5, 1fr); }
  /* desktop 5-col border rules already correct at 5-col; no override needed,
     but re-assert explicitly with matching specificity for safety */
  .logo-row .logo-cell { border-right: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
  .logo-row .logo-cell:nth-child(5n) { border-right: 0; }
  .logo-row .logo-cell:nth-last-child(-n+5) { border-bottom: 0; }
}

/* Phone: 2 columns (10 cards = clean 5x2). Lighter dividers so small
   cells don't read as broken. */
@media (max-width: 600px) {
  .logo-row { grid-template-columns: repeat(2, 1fr); }
  .logo-row .logo-cell {
    border-right: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
    height: 64px;  /* slightly shorter on phone */
  }
  .logo-row .logo-cell:nth-child(2n) { border-right: 0; }
  .logo-row .logo-cell:nth-last-child(-n+2) { border-bottom: 0; }
}
.integrations-caption {
  color: var(--text-3);
  font-size: 14px;
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
}
.channels-row {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: center;
}
.channel-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 450;
}
.channel-pill svg { color: var(--text-3); }
.channel-pill .rcs-badge {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary-50);
  color: var(--primary);
  padding: 3px 7px;
  border-radius: var(--r-pill);
  margin-left: 4px;
}

/* =========================================================================
   ROI Calculator
   ========================================================================= */
.roi-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.roi-controls {
  padding: 24px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.roi-controls h3 {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0;
  font-family: var(--mono);
}
.roi-control { display: flex; flex-direction: column; gap: 8px; }
.roi-control .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.roi-control .lbl-h {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--text-1);
  line-height: 1.3;
}
.roi-control .lbl-sub {
  color: var(--text-3);
  font-size: 12.5px;
  margin-top: 2px;
  line-height: 1.4;
}
.roi-control .val {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--primary-50);
  border-radius: var(--r-pill);
  outline: none;
  background-image: linear-gradient(to right,
    var(--primary) 0,
    var(--primary) var(--p, 0%),
    var(--primary-50) var(--p, 0%),
    var(--primary-50) 100%);
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(10, 92, 254, 0.2), 0 6px 14px rgba(10, 92, 254, 0.28);
  transition: transform 160ms;
}
.slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
.slider::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(10, 92, 254, 0.2), 0 6px 14px rgba(10, 92, 254, 0.28);
}
.roi-output {
  padding: 24px 28px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}
.roi-out-row { display: flex; flex-direction: column; gap: 6px; }
.roi-out-row .lbl {
  color: var(--text-3);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.roi-out-row .num {
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-1);
}
.roi-out-row .note { color: var(--text-3); font-size: 12px; line-height: 1.45; max-width: 38ch; }
.roi-out-row.risk .num { color: var(--rose); }
.roi-out-row.recovery .num {
  color: var(--teal);
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 48px);
}
.roi-out-row.staff .num { color: var(--primary); }
.roi-bar {
  height: 6px;
  background: rgba(16, 185, 129, 0.14);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.roi-bar .fill {
  height: 100%;
  background: var(--teal);
  transition: width 480ms cubic-bezier(.2,.8,.2,1);
}
.roi-disclaimer {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--border-2);
  padding-top: 10px;
  margin-top: 4px;
}
@media (max-width: 760px) {
  .roi-card { grid-template-columns: 1fr; }
  .roi-controls { border-right: 0; border-bottom: 1px solid var(--border); padding: 24px; }
  .roi-output { padding: 24px; }
}

/* ROI section: tighter to fit one viewport */
.section--roi { padding: 80px 0 20px; }
.section--roi .section-head { margin-bottom: 20px; }
.section--roi .section-head .h2 { font-size: clamp(26px, 3vw, 38px); }
.section--roi .section-head .lede { font-size: var(--fs-md); }
.section--roi .roi-card { box-shadow: var(--shadow-lg); }
@media (max-height: 880px) {
  .section--roi { padding: 76px 0 16px; }
  .section--roi .section-head { margin-bottom: 14px; }
  .section--roi .section-head .h2 { font-size: clamp(22px, 2.6vw, 32px); line-height: 1.06; }
  .section--roi .section-head .lede { font-size: 13.5px; max-width: 56ch; }
  .roi-controls, .roi-output { padding: 16px 22px; }
  .roi-controls { gap: 8px; }
  .roi-control { gap: 4px; }
  .roi-control .lbl-h { font-size: 13.5px; }
  .roi-control .lbl-sub { font-size: 11.5px; }
  .roi-control .val { font-size: 14px; }
  .roi-out-row { gap: 2px; }
  .roi-out-row .num { font-size: clamp(22px, 2.4vw, 30px); }
  .roi-out-row.recovery .num { font-size: clamp(28px, 3.2vw, 40px); }
  .roi-out-row .note { font-size: 11.5px; }
  .roi-disclaimer { padding-top: 6px; font-size: 10px; }
  .slider { height: 5px; }
  .slider::-webkit-slider-thumb { width: 16px; height: 16px; }
}

/* =========================================================================
   Security
   ========================================================================= */
.sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #fff;
}
.sec-cell {
  padding: 22px 22px;
  border-right: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: background 160ms;
}
.sec-cell:hover { background: var(--surface); }
.sec-cell:nth-child(3n) { border-right: 0; }
.sec-cell:nth-last-child(-n+3) { border-bottom: 0; }
.sec-cell .ic {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.sec-cell h4 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-1);
  margin: 0;
  line-height: 1.2;
}
.sec-cell p {
  color: var(--text-3);
  font-size: 13px;
  margin: 0;
  line-height: 1.45;
}
@media (max-width: 880px) {
  .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-cell:nth-child(3n) { border-right: 1px solid var(--border-2); }
  .sec-cell:nth-child(2n) { border-right: 0; }
  .sec-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--border-2); }
  .sec-cell:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 540px) {
  .sec-grid { grid-template-columns: 1fr; }
  .sec-cell { border-right: 0 !important; border-bottom: 1px solid var(--border-2); }
  .sec-cell:last-child { border-bottom: 0; }
}

/* =========================================================================
   FAQ — white cards on the global grid
   ========================================================================= */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms, border-color 200ms;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item.open { box-shadow: var(--shadow-md); border-color: #DBE3EE; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--display);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-1);
  line-height: 1.4;
  transition: color 160ms;
}
.faq-q:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  font-size: 16px;
  font-weight: 400;
  background: var(--surface);
  flex-shrink: 0;
  transition: transform 280ms cubic-bezier(.2,.8,.2,1), background 160ms, border-color 160ms;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--ink); border-color: var(--ink); color: #fff; }
.faq-a {
  padding: 0 22px 18px;
  color: var(--text-3);
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 70ch;
}

/* =========================================================================
   Final CTA
   ========================================================================= */
.final-cta {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: clamp(36px, 4vw, 72px) clamp(32px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 50% 110%, rgba(10, 92, 254, 0.55), transparent 60%),
    radial-gradient(ellipse 500px 300px at 20% -10%, rgba(16, 185, 129, 0.15), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1.2px, transparent 1.2px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 96% 72% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 96% 72% at 50% 50%, #000 30%, transparent 80%);
  z-index: -1;
}
.final-cta h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin: 0 0 18px;
  color: #fff;
  text-wrap: balance;
}
.final-cta h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #93B5FF;
}
.final-cta .lede {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto 32px;
  font-size: clamp(15px, 1vw + 12px, 19px);
  max-width: 50ch;
}
.final-cta .btn-blue { color: #fff; }
.final-cta-ring {
  position: absolute; left: 50%; top: 100%;
  width: 1200px; height: 1200px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final-cta-ring.r2 { width: 900px; height: 900px; }
.final-cta-ring.r3 { width: 600px; height: 600px; border-color: rgba(255,255,255,0.09); }

/* =========================================================================
   Footer — split horizontally: black top half (links/contact)
                                 transparent bottom half (JISR watermark)
   ========================================================================= */
.footer {
  position: relative;
  background: transparent;
  color: #fff;
  padding: 0;
  margin-top: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  isolation: isolate;
}
.footer-half {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}
.footer-half--top {
  flex: 1 1 60%;
  background: #000;
  color: #fff;
  padding: clamp(72px, 9vh, 96px) 0 clamp(16px, 2.4vh, 26px);
  justify-content: center;
}
.footer-half--bot {
  flex: 1 1 40%;
  background: #000;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.4vh, 22px);
  flex: 1;
  justify-content: center;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand .brand {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
  display: block;
  line-height: 1;
}
.footer-tag {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14.5px;
  max-width: 44ch;
  line-height: 1.55;
  margin: 0;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.footer-socials a {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
  transition: background 160ms, color 160ms, border-color 160ms;
}
.footer-socials a:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.22); }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 160ms;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover { color: #fff; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}
.footer-contact .btn {
  width: 100%;
  justify-content: center;
}
.footer-contact .btn-ghost-light {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: clamp(12px, 1.6vh, 20px);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.005em;
  flex-wrap: wrap;
}
.footer-flicker {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* JISR watermark text — fills bottom half, very subtle, gentle flicker */
.footer-watermark {
  position: relative;
  width: 100%;
  padding: 0 4vw;
  text-align: center;
  pointer-events: none;
  user-select: none;
  line-height: 0.78;
}
.footer-watermark span {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(120px, 26vw, 460px);
  letter-spacing: -0.06em;
  color: #000;
  opacity: 0.08;
  mix-blend-mode: multiply;
  animation: jisr-flicker 3.4s ease-in-out infinite;
}
@keyframes jisr-flicker {
  0%, 100% { opacity: 0.08; }
  18%      { opacity: 0.05; }
  37%      { opacity: 0.11; }
  54%      { opacity: 0.06; }
  72%      { opacity: 0.09; }
  88%      { opacity: 0.07; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-watermark span { animation: none; opacity: 0.08; }
}
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-contact { grid-column: 1 / -1; min-width: 0; flex-direction: row; }
  .footer-contact .btn { width: auto; flex: 1; }
}
@media (max-width: 540px) {
  .footer-cols { grid-template-columns: 1fr; gap: 18px; }
  .footer-contact { flex-direction: column; }
}

/* =========================================================================
   Snap fallback — released ONLY at true mobile widths (< 760px) where
   the multi-column layouts collapse. Strict snap is enforced at every
   desktop & laptop height, regardless of how short the viewport is.
   ========================================================================= */
@media (max-width: 760px) {
  html, body { overflow: auto; height: auto; }
  .snap-root {
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }
  .hero,
  .section,
  .section-tight,
  .footer {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    scroll-snap-stop: normal;
    scroll-snap-align: none;
  }
}

/* =========================================================================
   FIX BLOCK — wordmark optical balance, footer mask sizing, demos viewport fit
   ========================================================================= */

/* Wordmark — every "Jisr" on the page goes through <JisrMark/>. The lowercase
   "i" in Inter reads thin next to the larger J / s / r glyphs; we keep the
   word as a single text run (so native kerning works) and bump the weight one
   notch with a hair of negative tracking so the i carries its share of visual
   mass without crashing into the s. */
.jisr-mark {
  font-weight: 700;
  letter-spacing: -0.028em;
  font-feature-settings: "kern" 1, "ss02" 1;
  text-rendering: optimizeLegibility;
}
.brand .jisr-mark { letter-spacing: -0.03em; }
.footer-brand .brand .jisr-mark { letter-spacing: -0.035em; font-weight: 700; }

/* =========================================================================
   Demos section — fit on 1440×900 (and 1920×1080) without scroll.
   Keep H2 + lede at full size; reclaim space from padding + stage height.
   ========================================================================= */
.section--demos { padding: 64px 0 24px; }
.section--demos .section-head { margin-bottom: 18px; gap: 8px; }
.section--demos .section-head .lede { line-height: 1.35; max-width: 54ch; }

/* Stage: never overflow the viewport. We size from available room
   (100vh − nav 64 − padding 64+24 − section-head ~150) ≈ vh − 300.
   +10% on the cards' vertical dimension per latest design pass. */
.section--demos .demo .stage {
  min-height: 418px;
  height: min(calc(100vh - 360px), 600px);
  max-height: 600px;
}

.section--demos .demos .demo {
  height: min(calc(100vh - 300px), 640px);
  min-height: 0;
}

/* Tighter card padding + chat bubble rhythm so the cards read clean
   at the reduced height. */
.section--demos .demo { padding: 6px; }
.section--demos .demo-meta { padding: 6px 8px 8px; }

/* WhatsApp — fewer, denser messages */
.section--demos .demo--whatsapp .wa-msgs { gap: 6px; padding: 12px; }
.section--demos .demo--whatsapp .wa-header { padding: 11px 14px; }
.section--demos .demo--whatsapp .wa-msgs { top: 60px; }
.section--demos .demo--whatsapp .bubble { padding: 7px 11px 8px; }

/* SMS — same idea */
.section--demos .demo--sms .sms-msgs { gap: 6px; padding: 12px; top: 92px; }
.section--demos .demo--sms .sms-header { padding: 11px 12px 10px; }
.section--demos .demo--sms .sms-bubble { padding: 8px 13px; }

/* Voice — shrink waveform + transcript so the card matches the others */
.section--demos .demo--voice .voice-stage { padding: 16px; }
.section--demos .demo--voice .waveform { height: 88px; }
.section--demos .demo--voice .voice-transcript {
  padding: 12px 14px;
  min-height: 88px;
  font-size: 12.5px;
}

/* Re-tune the shorter-screen breakpoints — keep cards within the viewport */
@media (max-height: 820px) {
  .section--demos { padding: 56px 0 20px; }
  .section--demos .section-head { margin-bottom: 14px; }
  .section--demos .demo .stage { min-height: 374px; height: calc((100vh - 280px) * 1.1); max-height: 594px; }
  .section--demos .demo--voice .waveform { height: 72px; }
  .section--demos .demo--voice .voice-transcript { min-height: 76px; }
}
@media (max-height: 720px) {
  .section--demos { padding: 48px 0 16px; }
  .section--demos .demo .stage { min-height: 330px; height: calc((100vh - 240px) * 1.1); max-height: 506px; }
  .section--demos .demo--voice .waveform { height: 60px; }
  .section--demos .demo--voice .voice-transcript { min-height: 64px; padding: 10px 12px; }
}


/* =========================================================================
   Legal pages — Privacy, Cookie, Terms
   Normal scroll (no snap), same chrome as the marketing site.
   ========================================================================= */
.legal-root {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: transparent;
  z-index: 1;
}
.legal-root::-webkit-scrollbar { display: none; width: 0; height: 0; }
@media (max-width: 760px) {
  .legal-root {
    position: static;
    overflow: visible;
    height: auto;
  }
}

.legal-hero {
  padding: 144px 0 56px;
  text-align: center;
  position: relative;
}
.legal-hero .icon-badge {
  width: 76px; height: 76px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 28px;
}
.legal-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 4vw + 12px, 60px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--text-1);
  margin: 0 0 16px;
  text-wrap: balance;
}
.legal-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.legal-hero .updated {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}

.legal-content { padding: 16px 0 56px; }
.legal-card {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-md);
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 64px);
}
.legal-card .lead {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  margin-bottom: 32px;
}
.legal-card h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.022em;
  color: var(--text-1);
  margin: 36px 0 12px;
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.legal-card h2:first-child,
.legal-card .lead + h2 { margin-top: 0; }
.legal-card h2 .num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-4);
  letter-spacing: 0.04em;
  flex: none;
  min-width: 2.2em;
}
.legal-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.012em;
  color: var(--text-1);
  margin: 22px 0 8px;
}
.legal-card p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card strong { color: var(--text-1); font-weight: 600; }
.legal-card ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--text-2);
}
.legal-card li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-card li::marker { color: var(--text-4); }
.legal-card a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 92, 254, 0.3);
  transition: border-color 160ms;
}
.legal-card a:hover { border-bottom-color: var(--primary); }
.legal-card .callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin: 16px 0 20px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
}
.legal-card .callout strong {
  display: block;
  color: var(--text-1);
  margin-bottom: 4px;
  font-family: var(--display);
}
.legal-card .callout.warning {
  background: #FFF7ED;
  border-color: #FED7AA;
}
.legal-card .callout.warning strong { color: #9A3412; }
.legal-card .contact-row {
  margin-top: 8px;
  padding: 18px 20px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border-2);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-2);
}

.legal-badges-section { padding: 24px 0 88px; }
.legal-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-xs);
}
.legal-badge svg { color: var(--primary); flex: none; }
@media (max-width: 760px) {
  .legal-hero { padding: 110px 0 40px; }
  .legal-card h2 { font-size: 19px; gap: 10px; }
  .legal-card { padding: 28px 22px; }
}


/* =========================================================================
   Pillars section — tighten so heading + 3 columns + callout fit one viewport
   on 1440×900 (and 1920×1080) without scroll.
   ========================================================================= */
.section--pillars { padding: 76px 0 32px; }
.section--pillars .section-head { margin-bottom: 26px; gap: 8px; }
.section--pillars .section-head .lede { line-height: 1.45; }

/* Short-viewport rescue — squeeze on ≤900 px tall screens */
@media (max-height: 900px) {
  .section--pillars { padding: 68px 0 24px; }
  .section--pillars .section-head { margin-bottom: 20px; }
  .section--pillars .pillar { padding: 18px 20px 16px; }
  .section--pillars .pillar h3 { font-size: 21px; }
  .section--pillars .pillar .pillar-sub { font-size: 12.5px; margin-bottom: 8px; }
  .section--pillars .pillar li { padding: 7px 0; }
  .section--pillars .pillar li .t { font-size: 15px; }
  .section--pillars .pillar li .d { font-size: 13.5px; line-height: 1.35; }
  .section--pillars .pillar-callout { padding: 14px 18px; margin-top: 6px; }
  .section--pillars .pillar-callout .ttl { font-size: 15.5px; }
  .section--pillars .pillar-callout .sub { font-size: 12.5px; }
}
@media (max-height: 820px) {
  .section--pillars { padding: 82px 0 18px; }
  .section--pillars .section-head { margin-bottom: 14px; }
  .section--pillars .section-head .h2 { font-size: clamp(26px, 3vw, 40px); line-height: 1.06; }
  .section--pillars .pillar { padding: 14px 16px 12px; }
  .section--pillars .pillar h3 { font-size: 18px; }
  .section--pillars .pillar .pillar-sub { font-size: 11.5px; margin-bottom: 6px; }
  .section--pillars .pillar li { padding: 5px 0; }
  .section--pillars .pillar li .t { font-size: 14px; }
  .section--pillars .pillar li .d { font-size: 12.5px; line-height: 1.3; }
  .section--pillars .pillar-callout { padding: 10px 14px; margin-top: 4px; }
  .section--pillars .pillar-callout .ttl { font-size: 14px; }
  .section--pillars .pillar-callout .sub { font-size: 11.5px; }
}
