/* =================================================================
   Pulse Analytics — design system
   A premium front-office platform marketing site.
   Brand gradient = Screen Pop (sky/cyan) blended with
   Night Watcher (violet/indigo).
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Neutrals */
  --ink:        #0a0f1f;
  --ink-2:      #0f1730;
  --ink-3:      #16213f;
  --bg:         #ffffff;
  --bg-soft:    #f7f9fc;
  --bg-muted:   #eef2f9;
  --border:     #e5eaf3;
  --border-2:   #d8e0ee;

  --text:       #1a2436;
  --text-muted: #5a6781;
  --text-faint: #5f6a82;
  --on-dark:    #eaf0fb;
  --on-dark-muted: #a7b2cc;
  --on-dark-faint: #74809b;

  /* Brand */
  --sky:    #0ea5e9;   /* Screen Pop accent */
  --cyan:   #06b6d4;
  --indigo: #6366f1;   /* primary */
  --violet: #8b5cf6;   /* Night Watcher accent */
  --purple: #7c3aed;
  --teal:   #14b8a6;   /* success / checks */
  --amber:  #f59e0b;
  --rose:   #f43f5e;

  --brand:   var(--indigo);
  --brand-2: var(--violet);

  --grad-brand:   linear-gradient(120deg, #0ea5e9 0%, #6366f1 52%, #8b5cf6 100%);
  --grad-brand-2: linear-gradient(120deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
  --grad-sp:      linear-gradient(120deg, #0ea5e9 0%, #06b6d4 100%);
  --grad-nw:      linear-gradient(120deg, #6366f1 0%, #8b5cf6 60%, #c026d3 100%);
  --grad-ink:     linear-gradient(180deg, #0b1124 0%, #0a0f1f 100%);
  --grad-soft:    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(16,24,48,.06);
  --sh-sm: 0 2px 8px rgba(16,24,48,.06), 0 1px 2px rgba(16,24,48,.04);
  --sh:    0 12px 28px -12px rgba(20,28,60,.18), 0 4px 10px -6px rgba(20,28,60,.10);
  --sh-lg: 0 30px 60px -24px rgba(22,28,70,.30), 0 10px 24px -14px rgba(22,28,70,.16);
  --sh-glow: 0 24px 70px -20px rgba(99,102,241,.45);

  /* Layout */
  --container: 1180px;
  --container-wide: 1320px;
  --nav-h: 72px;

  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select, button { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--indigo); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(99,102,241,.22); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2.15rem, 6.2vw, 4.3rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); letter-spacing: -0.015em; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--text-muted); }

/* Solid fallbacks first (AA-legible on white if background-clip:text is unsupported) */
.gradient-text    { color: #4f46e5; }
.gradient-text-sp { color: #0369a1; }
.gradient-text-nw { color: #7c3aed; }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  /* Darker text gradients (lightest stop >= 3:1 on white for large text) */
  .gradient-text    { background: linear-gradient(120deg, #0284c7 0%, #4f46e5 52%, #7c3aed 100%); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .gradient-text-sp { background: linear-gradient(120deg, #0284c7 0%, #0e7490 100%); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .gradient-text-nw { background: linear-gradient(120deg, #4f46e5 0%, #7c3aed 55%, #a21caf 100%); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-wide { max-width: var(--container-wide); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section-sm { padding-block: clamp(48px, 6vw, 80px); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-xl { max-width: 720px; }
.maxw-lg { max-width: 620px; }
.maxw-md { max-width: 520px; }
.relative { position: relative; }
.hidden { display: none !important; }

.dark-section {
  background: var(--grad-ink);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4 { color: #fff; }
.dark-section p { color: var(--on-dark-muted); }
.soft-section { background: var(--bg-soft); }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}
.eyebrow.center-eyebrow { justify-content: center; }
.dark-section .eyebrow { color: #b9c2ff; }
.dark-section .eyebrow::before { background: linear-gradient(90deg, #7dd3fc, #c4b5fd); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; }
.section-head .lead { font-size: 1.15rem; margin-top: 16px; }
.lead { font-size: 1.18rem; color: var(--text-muted); line-height: 1.6; }
.dark-section .lead { color: var(--on-dark-muted); }

/* ---------- Badges / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 11px;
  border-radius: var(--r-pill);
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.18);
  color: var(--indigo);
  font-weight: 600; font-size: .85rem;
  letter-spacing: .01em;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad-brand); box-shadow: 0 0 0 4px rgba(99,102,241,.15); }
.dark-section .pill { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #d7ddf5; backdrop-filter: blur(6px); }

.tag { display:inline-flex; align-items:center; gap:6px; font-size:.78rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; padding:5px 11px; border-radius:var(--r-pill); }
.tag-sp { color:#0369a1; background:rgba(14,165,233,.12); }
.tag-nw { color:#6d28d9; background:rgba(139,92,246,.13); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700; font-size: .98rem;
  border: 1px solid transparent;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--sh-glow);
  background-size: 140% 140%;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 28px 60px -16px rgba(99,102,241,.6); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: var(--sh); }
.btn-dark:hover { transform: translateY(-2px); background: var(--ink-3); }
.btn-ghost { background: var(--bg); color: var(--ink); border-color: var(--border-2); box-shadow: var(--sh-xs); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--indigo); color: var(--indigo); box-shadow: var(--sh-sm); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.2); backdrop-filter: blur(8px); }
.btn-light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-white { background:#fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-link { color: var(--indigo); font-weight: 700; font-family: var(--font-display); display: inline-flex; align-items: center; gap: 6px; }
.btn-link svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.btn-link:hover svg { transform: translateX(4px); }
.btn-link.on-dark { color: #c4b5fd; }
.btn-link.on-dark:hover { color: #ddd6fe; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.7);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: 0 6px 24px -18px rgba(20,28,60,.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.22rem; color: var(--ink); letter-spacing: -.02em; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad-brand);
  display: grid; place-items: center;
  box-shadow: 0 8px 18px -6px rgba(99,102,241,.6);
  flex: none; color: #fff;
}
.footer .brand-mark { box-shadow: none; }
.nav-links .nav-item > a { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.brand-mark svg { width: 19px; height: 19px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 14px; border-radius: var(--r-pill);
  font-weight: 600; font-size: .95rem; color: var(--text-muted);
  transition: color .18s, background .18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--bg-muted); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* dropdown */
.nav-item { position: relative; }
.nav-dd {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 540px; padding: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.nav-item:hover .nav-dd,
.nav-item:focus-within .nav-dd { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* Right-aligned sign-in dropdown (in .nav-cta) */
.signin-item { position: relative; }
.signin-trigger { cursor: pointer; }
.signin-trigger svg { transition: transform .25s var(--ease); }
.signin-item:hover .signin-trigger svg,
.signin-item:focus-within .signin-trigger svg { transform: rotate(180deg); }
.signin-dd { left: auto; right: 0; width: 320px; grid-template-columns: 1fr; transform: translateY(8px); }
.signin-item:hover .signin-dd,
.signin-item:focus-within .signin-dd { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd a {
  display: flex; gap: 13px; align-items: flex-start; padding: 13px; border-radius: var(--r-sm);
  background: transparent;
}
.nav-dd a:hover { background: var(--bg-soft); }
.nav-dd .dd-ic { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; color: #fff; }
.nav-dd .dd-ic svg { width: 20px; height: 20px; }
.dd-ic.sp { background: var(--grad-sp); }
.dd-ic.nw { background: var(--grad-nw); }
.nav-dd .dd-t { display: block; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: .98rem; }
.nav-dd .dd-d { display: block; font-size: .85rem; color: var(--text-muted); line-height: 1.4; margin-top: 2px; }
.nav-dd a > span:last-child { display: block; }

.nav-mobile { display: none; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border); background: #fff; align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle span::before, .nav-toggle span::after { content:""; position:absolute; left:0; width:18px; height:2px; background:var(--ink); border-radius:2px; transition:.25s; }
.nav-toggle span::before { top:-6px; } .nav-toggle span::after { top:6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top:0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after  { top:0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; }
.blob-1 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(14,165,233,.55), transparent 70%); top: -200px; right: -120px; }
.blob-2 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(139,92,246,.5), transparent 70%); bottom: -240px; left: -140px; }
.blob-3 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(99,102,241,.4), transparent 70%); top: 40%; left: 50%; transform: translateX(-50%); }
.grid-overlay {
  position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(rgba(20,28,60,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(20,28,60,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 40%, transparent 80%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.hero-meta .hm { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--text-muted); font-weight: 500; }
.hero-meta .hm svg { width: 18px; height: 18px; color: var(--teal); flex: none; }

/* ---------- Browser / app mockup ---------- */
.mock {
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.mock-dots { display: flex; gap: 6px; }
.mock-dots i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.mock-dots i:nth-child(1){ background:#ff5f57; } .mock-dots i:nth-child(2){ background:#febc2e; } .mock-dots i:nth-child(3){ background:#28c840; }
.mock-url { flex: 1; height: 26px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--border); display: flex; align-items: center; gap: 7px; padding: 0 12px; font-size: .76rem; color: var(--text-faint); }
.mock-url svg { width: 12px; height: 12px; }
.mock-body { padding: 18px; background: var(--bg-soft); }

.float { position: absolute; box-shadow: var(--sh-lg); }
.hero-visual { position: relative; }

/* ---------- Generic card ---------- */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--border-2); }
.dark-section .card { background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.1); backdrop-filter: blur(6px); }

.ic-box { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 18px; box-shadow: var(--sh); }
.ic-box svg { width: 25px; height: 25px; }
.ic-brand { background: var(--grad-brand); }
.ic-sp { background: var(--grad-sp); }
.ic-nw { background: var(--grad-nw); }
.ic-soft { background: rgba(99,102,241,.1); color: var(--indigo); box-shadow: none; }
.ic-soft svg { color: var(--indigo); }

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.feature-card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.feature-card p { font-size: .96rem; line-height: 1.6; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.bento > .card { padding: 30px; display: flex; flex-direction: column; }
.bento .col-3 { grid-column: span 3; }
.bento .col-2 { grid-column: span 2; }
.bento .col-4 { grid-column: span 4; }
.bento .col-6 { grid-column: span 6; }

/* ---------- Product split (two big products) ---------- */
.product-split { display: grid; gap: 26px; }
.product-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--sh);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.product-card-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 10px; align-items: center; }
.product-card-text { padding: clamp(28px, 4vw, 48px); }
.product-card-text h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 14px 0 14px; }
.product-card-text p { font-size: 1.02rem; margin-bottom: 22px; }
.product-card .glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; filter: blur(70px); opacity: .35; z-index: 0; }
.product-card.sp .glow { background: var(--sky); top: -120px; right: -80px; }
.product-card.nw .glow { background: var(--violet); top: -120px; right: -80px; }
.product-feat-list { display: grid; gap: 11px; margin-bottom: 26px; }
.product-feat-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .97rem; color: var(--text); font-weight: 500; }
.product-feat-list svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.product-feat-list .ck-sp { color: var(--sky); } .product-feat-list .ck-nw { color: var(--violet); }
.product-visual { padding: clamp(20px, 3vw, 40px); position: relative; z-index: 1; }

/* ---------- Steps / how it works ---------- */
.steps { display: grid; gap: 24px; counter-reset: step; }
.steps.grid-cols { grid-template-columns: repeat(3, 1fr); }
.step { position: relative; padding-top: 8px; }
.step-num {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: #fff;
  background: var(--grad-brand); box-shadow: var(--sh); margin-bottom: 18px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: .96rem; }
.step-line { position: relative; }
.steps.grid-cols .step:not(:last-child) .step-num::after {
  content:""; position: absolute; top: 23px; left: 58px; width: calc(100% - 10px); height: 2px;
  background: linear-gradient(90deg, var(--indigo), transparent);
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.3rem); line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; letter-spacing: -.03em; }
.stat .lbl { margin-top: 12px; color: var(--text-muted); font-weight: 500; font-size: .96rem; }
.dark-section .stat .num { background: var(--grad-brand-2); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.dark-section .stat .lbl { color: var(--on-dark-muted); }

/* ---------- Logos marquee ---------- */
.logos-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logos { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; align-items: center; }
.logos:hover { animation-play-state: paused; }
.logo-item { display: flex; align-items: center; gap: 10px; color: var(--text-faint); font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; white-space: nowrap; opacity: .8; }
.logo-item svg { width: 26px; height: 26px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Integrations grid ---------- */
.integ-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 16px; }
.integ {
  display: flex; align-items: center; gap: 12px; padding: 18px 20px;
  border: 1px solid var(--border); border-radius: var(--r); background: #fff;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.integ:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); border-color: var(--border-2); }
.integ .il { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; flex: none; background: var(--bg-muted); color: var(--indigo); font-weight: 800; font-family: var(--font-display); }
.integ .il svg { width: 24px; height: 24px; }
.integ .it { font-family: var(--font-display); font-weight: 700; font-size: .98rem; color: var(--ink); }
.integ .is { font-size: .8rem; color: var(--text-faint); }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: 20px; }
.quote-card .stars { display: flex; gap: 3px; color: var(--amber); }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-size: 1.08rem; line-height: 1.6; color: var(--text); font-weight: 500; }
.quote-card .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 800; flex: none; }
.who .nm { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: .98rem; }
.who .rl { font-size: .85rem; color: var(--text-faint); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); background: #fff; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item[open] { border-color: var(--border-2); box-shadow: var(--sh-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { width: 30px; height: 30px; border-radius: 9px; flex: none; display: grid; place-items: center; background: var(--bg-muted); color: var(--indigo); transition: transform .25s var(--ease), background .2s; }
.faq-item[open] summary .pm { transform: rotate(45deg); background: var(--grad-brand); color: #fff; }
.faq-item .faq-a { padding: 0 24px 24px; color: var(--text-muted); line-height: 1.65; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(44px, 6vw, 76px); text-align: center; background: var(--grad-ink); color: #fff; box-shadow: var(--sh-lg); }
.cta-band::before { content:""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 0%, rgba(99,102,241,.5), transparent 50%), radial-gradient(circle at 85% 100%, rgba(14,165,233,.4), transparent 50%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: var(--on-dark-muted); max-width: 560px; margin-inline: auto; margin-bottom: 30px; font-size: 1.12rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--on-dark-muted); padding-top: 72px; padding-bottom: 30px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer-about p { color: var(--on-dark-faint); font-size: .95rem; max-width: 320px; margin-bottom: 22px; }
.footer h5 { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; color: var(--on-dark-muted); font-size: .95rem; padding: 6px 0; transition: color .18s, transform .18s; }
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 26px; flex-wrap: wrap; }
.footer-bottom p { color: var(--on-dark-faint); font-size: .9rem; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: var(--on-dark-muted); transition: background .2s, color .2s, transform .2s; }
.socials a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding-top: clamp(56px,7vw,84px); padding-bottom: clamp(48px,6vw,72px); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--text-faint); margin-bottom: 22px; font-weight: 500; }
.breadcrumb a:hover { color: var(--indigo); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ---------- Product page hero accent ---------- */
.prod-hero.sp .blob-1 { background: radial-gradient(circle, rgba(14,165,233,.55), transparent 70%); }
.prod-hero.sp .blob-2 { background: radial-gradient(circle, rgba(6,182,212,.45), transparent 70%); }
.prod-hero.nw .blob-1 { background: radial-gradient(circle, rgba(139,92,246,.55), transparent 70%); }
.prod-hero.nw .blob-2 { background: radial-gradient(circle, rgba(124,58,237,.45), transparent 70%); }

/* ---------- App mock: screen pop overlay ---------- */
.sp-overlay { background: #fff; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh); }
.sp-ov-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--grad-sp); color: #fff; }
.sp-ov-head .nm { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; }
.sp-ov-head .num { font-size: .82rem; opacity: .9; }
.sp-ov-live { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: rgba(255,255,255,.2); padding: 4px 9px; border-radius: var(--r-pill); }
.sp-ov-live .ld { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 1.5s infinite; }
.sp-ov-body { padding: 14px 16px; display: grid; gap: 10px; }
.sp-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: .85rem; padding-bottom: 9px; border-bottom: 1px dashed var(--border); }
.sp-row:last-child { border-bottom: none; padding-bottom: 0; }
.sp-row .k { color: var(--text-faint); font-weight: 500; }
.sp-row .v { color: var(--ink); font-weight: 600; text-align: right; }
.sp-chip { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: var(--r-pill); font-size: .72rem; font-weight: 700; }
.sp-chip.ok { background: rgba(20,184,166,.14); color: #0d9488; }
.sp-chip.warn { background: rgba(245,158,11,.14); color: #b45309; }
.sp-balance { display:flex; align-items:baseline; gap:8px; }
.sp-balance .amt { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--ink); }

@keyframes pulse { 0%,100%{ opacity:1; transform: scale(1); } 50%{ opacity:.4; transform: scale(.85); } }

/* ---------- App mock: dashboard ---------- */
.dash { background: #fff; border-radius: var(--r); overflow: hidden; }
.dash-kpis { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; padding: 14px; }
.kpi { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 13px 14px; }
.kpi .kl { font-size: .74rem; color: var(--text-faint); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.kpi .kv { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--ink); margin-top: 4px; line-height: 1; }
.kpi .kd { font-size: .76rem; font-weight: 700; margin-top: 6px; display: inline-flex; align-items: center; gap: 3px; }
.kpi .kd.up { color: var(--teal); } .kpi .kd.down { color: var(--rose); }
.dash-chart { padding: 0 14px 14px; }
.chart-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 14px; }
.chart-card .ct { font-size: .82rem; font-weight: 700; color: var(--ink); font-family: var(--font-display); margin-bottom: 12px; display:flex; justify-content:space-between; align-items:center; }
.bars { display: flex; align-items: flex-end; gap: 7px; height: 92px; }
.bars .bar { flex: 1; border-radius: 5px 5px 0 0; background: var(--grad-nw); opacity: .9; transition: height .6s var(--ease); }
.bars .bar.b2 { background: var(--grad-sp); }
.barpair { flex:1; display:flex; gap:3px; align-items:flex-end; }

/* spark line */
.spark { width: 100%; height: 60px; }

/* ---------- Call / voice mock ---------- */
.voice-mock { background: var(--ink-2); border-radius: var(--r); padding: 20px; color: #fff; }
.voice-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.voice-orb { width: 52px; height: 52px; border-radius: 50%; background: var(--grad-nw); display: grid; place-items: center; position: relative; flex: none; }
.voice-orb::after { content:""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(139,92,246,.5); animation: ring 2s infinite; }
@keyframes ring { 0%{ transform: scale(.9); opacity: 1; } 100%{ transform: scale(1.4); opacity: 0; } }
.voice-orb svg { width: 24px; height: 24px; color: #fff; }
.wave { display: flex; align-items: center; gap: 4px; height: 40px; }
.wave i { width: 4px; border-radius: 4px; background: linear-gradient(180deg, #a855f7, #6366f1); animation: wave 1s ease-in-out infinite; }
@keyframes wave { 0%,100%{ height: 8px; } 50%{ height: 34px; } }
.transcript { display: grid; gap: 10px; margin-top: 6px; }
.t-line { display: flex; gap: 10px; align-items: flex-start; }
.t-line .tb { padding: 9px 13px; border-radius: 13px; font-size: .85rem; max-width: 80%; line-height: 1.45; }
.t-line.bot .tb { background: rgba(139,92,246,.18); color: #e9defc; border-bottom-left-radius: 4px; }
.t-line.user { justify-content: flex-end; }
.t-line.user .tb { background: rgba(255,255,255,.08); color: #e7ecf8; border-bottom-right-radius: 4px; }
.t-av { width: 26px; height: 26px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: .65rem; font-weight: 800; font-family: var(--font-display); }

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: 13px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; color: var(--text); font-weight: 500; }
.checklist svg { width: 22px; height: 22px; flex: none; color: var(--teal); margin-top: 1px; }
.dark-section .checklist li { color: var(--on-dark); }

/* ---------- Split feature (image + text alternating) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split + .split { margin-top: clamp(56px, 8vw, 104px); }
.split h2, .split h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 16px; }
.split p { font-size: 1.05rem; margin-bottom: 22px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(28px,4vw,44px); box-shadow: var(--sh); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 8px; }
.field .req { color: var(--rose); }
.input, .textarea, .select {
  width: 100%; padding: 13px 15px; border-radius: var(--r-sm);
  border: 1px solid var(--border-2); background: var(--bg-soft);
  font-size: .98rem; color: var(--text); transition: border-color .18s, box-shadow .18s, background .18s;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--indigo); background: #fff; box-shadow: 0 0 0 4px rgba(99,102,241,.12); }
.textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .85rem; color: var(--text-faint); margin-top: 8px; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .fs-ic { width: 64px; height: 64px; border-radius: 50%; background: rgba(20,184,166,.14); color: var(--teal); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .fs-ic svg { width: 32px; height: 32px; }

.contact-info { display: grid; gap: 18px; }
.ci-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border: 1px solid var(--border); border-radius: var(--r-lg); background: #fff; transition: box-shadow .2s, transform .2s, border-color .2s; }
.ci-card:hover { box-shadow: var(--sh-sm); transform: translateY(-3px); border-color: var(--border-2); }
.ci-card .ci-ic { width: 48px; height: 48px; border-radius: 13px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; flex: none; }
.ci-card .ci-ic svg { width: 22px; height: 22px; }
.ci-card h4 { margin-bottom: 4px; }
.ci-card p, .ci-card a { font-size: .96rem; color: var(--text-muted); }
.ci-card a:hover { color: var(--indigo); }

/* ---------- About: timeline / values ---------- */
.value-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--r-lg); background: #fff; transition: transform .25s var(--ease), box-shadow .25s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { font-size: .96rem; }

.timeline { max-width: 760px; margin-inline: auto; display: grid; gap: 8px; position: relative; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 28px; padding: 22px 0; position: relative; }
.tl-item .tl-year { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; text-align: right; }
.tl-item .tl-body { border-left: 2px solid var(--border); padding-left: 28px; position: relative; padding-bottom: 6px; }
.tl-item .tl-body::before { content:""; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--grad-brand); box-shadow: 0 0 0 4px rgba(99,102,241,.15); }
.tl-item h4 { margin-bottom: 6px; font-size: 1.08rem; }
.tl-item p { font-size: .96rem; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.team-card { text-align: center; padding: 28px; border: 1px solid var(--border); border-radius: var(--r-lg); background: #fff; transition: transform .25s var(--ease), box-shadow .25s; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.team-card .t-av-lg { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; }
.team-card .nm { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.1rem; }
.team-card .rl { color: var(--indigo); font-size: .9rem; font-weight: 600; margin-top: 2px; }
.team-card .bio { font-size: .9rem; margin-top: 12px; }

/* ---------- Misc utilities ---------- */
.divider { height: 1px; background: var(--border); border: none; }
.mt-0{margin-top:0}.mt-2{margin-top:8px}.mt-3{margin-top:16px}.mt-4{margin-top:24px}.mt-5{margin-top:32px}.mt-6{margin-top:48px}
.mb-3{margin-bottom:16px}.mb-4{margin-bottom:24px}
.text-muted{color:var(--text-muted)}
.fw-700{font-weight:700}
.gap-sm{gap:10px}
.flex{display:flex}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-center{justify-content:center}.gap-3{gap:16px}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; } .reveal.d5 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Icons ---------- */
svg.icon { width: 20px; height: 20px; flex: none; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- Hero floating cards ---------- */
.float-card {
  position: absolute; z-index: 3;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--sh-lg); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  animation: floaty 5s ease-in-out infinite;
}
.float-card .fc-ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex: none; }
.float-card .fc-ic svg { width: 20px; height: 20px; }
.float-card .fc-t { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--ink); line-height: 1.1; }
.float-card .fc-s { font-size: .76rem; color: var(--text-faint); margin-top: 2px; }
.float-card.fc-1 { top: 6%; left: -28px; animation-delay: 0s; }
.float-card.fc-2 { bottom: 8%; right: -24px; animation-delay: 1.5s; }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }

/* ---------- Problem callouts ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.problem-card { padding: 30px 28px; border-radius: var(--r-lg); border: 1px solid var(--border); background: #fff; box-shadow: var(--sh-sm); }
.problem-card .pnum { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,4vw,2.9rem); line-height: 1; letter-spacing: -.03em; background: linear-gradient(120deg, #f43f5e, #f59e0b); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.problem-card h3 { font-size: 1.1rem; margin: 14px 0 8px; }
.problem-card p { font-size: .95rem; }

/* ---------- Lifecycle day / night ---------- */
.lifecycle { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.life-card { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(28px,3.5vw,40px); border: 1px solid var(--border); }
.life-card.day { background: linear-gradient(165deg, #f0f9ff 0%, #ffffff 60%); }
.life-card.night { background: linear-gradient(165deg, #1a1438 0%, #0f1730 70%); color: var(--on-dark); border-color: rgba(255,255,255,.08); }
.life-card.night h3 { color: #fff; } .life-card.night p { color: var(--on-dark-muted); }
.life-badge { display:inline-flex; align-items:center; gap:8px; font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; padding:6px 13px; border-radius:var(--r-pill); margin-bottom:18px; }
.life-badge.day { background: rgba(14,165,233,.12); color: #0369a1; }
.life-badge.night { background: rgba(168,85,247,.18); color: #d8b4fe; }
.life-card.night .checklist svg { color: #34d399; }
.life-orb { position:absolute; border-radius:50%; filter: blur(50px); opacity:.5; }
.life-card.day .life-orb { width:200px; height:200px; background:#7dd3fc; top:-60px; right:-40px; }
.life-card.night .life-orb { width:220px; height:220px; background:#a855f7; top:-70px; right:-50px; opacity:.4; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 32px 28px; border: 1px solid var(--border); border-radius: var(--r-xl); background: #fff; box-shadow: var(--sh-sm); transition: transform .25s var(--ease), box-shadow .25s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.price-card.featured { border: 1.5px solid transparent; background:
    linear-gradient(#fff,#fff) padding-box,
    var(--grad-brand) border-box;
  box-shadow: var(--sh-lg); transform: translateY(-8px); }
.price-card.featured:hover { transform: translateY(-12px); }
.price-ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-brand); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--r-pill); box-shadow: var(--sh); white-space: nowrap; }
.price-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.price-desc { font-size: .9rem; color: var(--text-muted); margin-top: 6px; min-height: 40px; }
.price-amt { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 6px; }
.price-amt .amt { font-family: var(--font-display); font-weight: 800; font-size: 2.8rem; letter-spacing: -.03em; color: var(--ink); }
.price-amt .per { color: var(--text-faint); font-size: .95rem; font-weight: 500; }
.price-meta { font-size: .82rem; color: var(--text-faint); margin-bottom: 22px; }
.price-feats { display: grid; gap: 12px; margin: 22px 0 26px; }
.price-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; color: var(--text); }
.price-feats svg { width: 19px; height: 19px; color: var(--teal); flex: none; margin-top: 1px; }
.price-card .btn { margin-top: auto; }
.price-note { text-align: center; color: var(--text-faint); font-size: .92rem; margin-top: 28px; }

/* ---------- Mini app rows (generic mock content) ---------- */
.mini-row { display: flex; align-items: center; gap: 12px; padding: 11px 13px; border-radius: var(--r-sm); background: #fff; border: 1px solid var(--border); }
.mini-row + .mini-row { margin-top: 9px; }
.mini-ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; font-weight: 800; font-family: var(--font-display); font-size: .82rem; color: #fff; }
.mini-row .mr-t { font-weight: 600; font-size: .88rem; color: var(--ink); }
.mini-row .mr-s { font-size: .76rem; color: var(--text-faint); }
.mini-row .mr-end { margin-left: auto; }
.badge-sm { font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: var(--r-pill); }
.badge-green { background: rgba(20,184,166,.14); color: #0d9488; }
.badge-blue { background: rgba(2,132,199,.12); color: #0369a1; }
.badge-violet { background: rgba(139,92,246,.14); color: #6d28d9; }
.badge-amber { background: rgba(245,158,11,.14); color: #b45309; }
.badge-grey { background: var(--bg-muted); color: var(--text-muted); }

/* ---------- Section connector dots ---------- */
.kicker-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.kicker-row .section-head { margin-bottom: 0; }

/* ---------- CTA inline ---------- */
.inline-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 560px; }
  .product-card-inner { grid-template-columns: 1fr; }
  .product-card.nw .product-visual { order: -1; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .bento .col-3, .bento .col-2, .bento .col-4 { grid-column: span 3; }
  .lifecycle { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.featured { transform: none; } .price-card.featured:hover { transform: translateY(-6px); }
  .problem-grid { grid-template-columns: 1fr; }
  .float-card { display: none; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-mobile {
    position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
    background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px 26px; display: none; flex-direction: column; gap: 4px;
    box-shadow: var(--sh-lg);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-open .nav-mobile { display: flex; animation: ddown .25s var(--ease); }
  @keyframes ddown { from { opacity: 0; transform: translateY(-10px);} to {opacity:1; transform: none;} }
  .nav-mobile a { padding: 13px 14px; border-radius: var(--r-sm); font-family: var(--font-display); font-weight: 600; color: var(--ink); }
  .nav-mobile a:hover { background: var(--bg-muted); }
  .nav-mobile .nm-label { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-faint); padding: 14px 14px 6px; font-weight: 700; }
  .nav-mobile .btn { margin-top: 12px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .stats { grid-template-columns: 1fr; }
  .steps.grid-cols { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento .col-3, .bento .col-2, .bento .col-4, .bento .col-6 { grid-column: span 1; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; }
  .tl-item .tl-year { text-align: left; }
  .tl-item .tl-body { border-left: none; padding-left: 0; }
  .tl-item .tl-body::before { display: none; }
  .hero-actions .btn { flex: 1; }
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(2.1rem, 8.2vw, 2.7rem); }
  h2 { font-size: clamp(1.8rem, 6.6vw, 2.3rem); }
  .lead, .hero .lead, .section-head .lead { font-size: 1.05rem; }
  .btn-lg { padding: 14px 22px; font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; }
}
@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  .dash-kpis { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
}
