/* website·lo — site styles
 * Built strictly on the brand system (tokens.css).
 * Light-mode-first, warm neutrals, one accent (Lo Blue) + coral seasoning.
 * Motion is purposeful: 150–250ms ease-out, respects prefers-reduced-motion.
 */

/* Dark mode driven by [data-theme] so the toggle can override the OS setting. */
:root[data-theme="dark"] {
  --background: #131311;
  --surface: #1C1C19;
  --surface-raised: #252521;
  --border: #33332E;
  --border-strong: #45453E;
  --text-primary: #F5F4F0;
  --text-secondary: #ADACA4;
  --text-tertiary: #77766F;
  --accent: #5B82FF;
  --accent-hover: #7A9AFF;
  --accent-pressed: #4E74F0;
  --success: #3DD68C;
  --warning: #F5A524;
  --error: #F5484B;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .25s ease, color .25s ease;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

p { color: var(--text-secondary); }
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
ul, ol { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 24px; }
.container.narrow { max-width: 780px; }

.mono { font-family: var(--font-mono); font-weight: 400; letter-spacing: -0.01em; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--accent); color: #fff; padding: 10px 16px; border-radius: var(--radius);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

/* Accessible focus rings — brand mandates ≥3:1 UI contrast */
:where(a, button, input, textarea, summary, .theme-toggle):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- kicker (mono label) ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: var(--text-small);
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.kicker-on-accent { color: #fff; opacity: 1; text-shadow: 0 1px 8px rgba(4,40,55,.35); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: var(--text-body);
  padding: 13px 22px; border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: var(--text-small); }
.btn-block { width: 100%; justify-content: center; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:active { background: var(--accent-pressed); }

.btn-ghost { color: var(--text-primary); border-color: var(--border-strong); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost .arrow { transition: transform .18s ease; }
.btn-ghost:hover .arrow { transform: translateX(3px); }

/* ---------- brand mark (CSS-drawn ·lo, animatable) ---------- */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-word {
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  letter-spacing: -0.035em; color: var(--text-primary);
}
.brand-suffix { color: var(--accent); }

.brand-mark {
  position: relative; width: 34px; height: 34px; border-radius: 9px;
  /* deep-ink chip so the cyan W glows the way it does in the logo art */
  background: linear-gradient(150deg, #0C1F2B, #06121A);
  flex: none; display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(47, 194, 247, .22);
}
.brand-mark .mark-w { display: block; filter: drop-shadow(0 0 4px rgba(47, 194, 247, .55)); }
/* the pixel squares "drop in" on load — the one brand ritual (was the ·lo dot) */
.brand-mark .mw-px { animation: pxDrop .5s cubic-bezier(.34, 1.4, .5, 1) both; transform-box: fill-box; transform-origin: center; }
.brand-mark .mw-px2 { animation-delay: .07s; }
.brand-mark .mw-px3 { animation-delay: .14s; }
@keyframes pxDrop { from { transform: translateY(-6px) scale(.4); opacity: 0; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .brand-mark .mw-px { animation: none; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--background) 82%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.site-nav { display: flex; gap: 28px; margin-left: auto; }
.site-nav a { font-size: var(--text-small); color: var(--text-secondary); transition: color .18s ease; }
.site-nav a:hover { color: var(--text-primary); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 9px;
  background: transparent; border: 1px solid var(--border-strong); color: var(--text-secondary);
  transition: color .18s ease, border-color .18s ease;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

/* ---------- section rhythm ---------- */
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-title { font-size: var(--text-h2); margin-bottom: 14px; }
.section-sub { font-size: 1.075rem; color: var(--text-secondary); }

/* ---------- hero ---------- */
.hero { padding-block: clamp(48px, 7vw, 96px) clamp(56px, 8vw, 104px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700; letter-spacing: -0.03em; margin-bottom: 22px;
}
.title-dot { color: var(--accent); }
.hero-lede { font-size: 1.2rem; max-width: 30ch; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; font-size: var(--text-small); color: var(--text-secondary); }
.tick { color: var(--success); font-weight: 700; }

/* browser-window video moment */
.hero-media { position: relative; }
.browser {
  border-radius: 14px; overflow: hidden;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -28px rgba(20,20,30,.35), 0 4px 12px -6px rgba(20,20,30,.15);
}
:root[data-theme="dark"] .browser { box-shadow: 0 24px 60px -24px rgba(0,0,0,.6); }
.browser-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px; background: var(--surface); border-bottom: 1px solid var(--border);
}
.browser-bar span[class^="dot-"] { width: 11px; height: 11px; border-radius: 50%; }
.dot-red { background: #ff5f57; } .dot-amber { background: #febc2e; } .dot-green { background: #28c840; }
.browser-url {
  margin-left: 10px; font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--text-tertiary); background: var(--background);
  padding: 5px 12px; border-radius: 6px; border: 1px solid var(--border);
  display: inline-flex; align-items: center; gap: 6px; flex: 1; max-width: 280px;
}
.lock { font-size: .7rem; }
.url-accent { color: var(--accent); }
.browser-viewport { position: relative; aspect-ratio: 16 / 10; background: var(--surface); }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.browser-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(47,107,255,.28), transparent 55%),
    radial-gradient(90% 90% at 90% 90%, rgba(255,107,74,.20), transparent 55%),
    linear-gradient(135deg, #eef2ff, #f7f5f2);
}
:root[data-theme="dark"] .browser-fallback {
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(91,130,255,.30), transparent 55%),
    radial-gradient(90% 90% at 90% 90%, rgba(255,107,74,.18), transparent 55%),
    linear-gradient(135deg, #1a1d2b, #16160f);
}
.video-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(20,20,25,.10));
}

.floating-badge {
  position: absolute; background: var(--surface-raised); color: var(--text-primary);
  border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px;
  font-size: var(--text-small); font-weight: 500; box-shadow: 0 10px 30px -14px rgba(20,20,30,.35);
}
.floating-badge .mono { color: var(--accent); font-weight: 500; margin-right: 4px; }
.badge-1 { top: 14%; left: -6%; }
.badge-2 { bottom: 12%; right: -5%; }
@media (max-width: 640px) { .badge-1, .badge-2 { display: none; } }

/* ---------- trust strip ---------- */
.trust-strip { border-block: 1px solid var(--border); padding-block: 26px; background: var(--surface); }
.strip-label { color: var(--text-tertiary); font-size: var(--text-small); margin-bottom: 12px; }
.strip-list { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.strip-list li { color: var(--text-secondary); font-weight: 500; font-family: var(--font-display); }
.strip-list li:nth-child(even) { color: var(--border-strong); font-weight: 400; }

/* ---------- bento cards ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: 0 18px 40px -26px rgba(20,20,30,.35); }
.card-lg { grid-column: span 1; }
.card h3 { font-size: var(--text-h4); margin-bottom: 10px; }
.card p { font-size: 0.975rem; }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent); margin-bottom: 18px;
}
.card-accent { background: color-mix(in srgb, var(--accent) 8%, var(--surface)); border-color: color-mix(in srgb, var(--accent) 22%, var(--border)); }

/* ---------- stats ---------- */
.stats-section { background: var(--surface); border-block: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat { padding: 8px 0; }
.stat-number { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.5rem, 5vw, 3.6rem); letter-spacing: -0.03em; color: var(--text-primary); }
.stat-unit { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: var(--accent); margin-left: 2px; }
.stat-label { display: block; margin-top: 8px; color: var(--text-secondary); font-size: var(--text-small); }

/* ---------- work ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work-card { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--surface-raised); transition: transform .2s ease, box-shadow .2s ease; }
.work-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px -28px rgba(20,20,30,.4); }
.work-thumb { aspect-ratio: 16/10; display: flex; align-items: flex-end; padding: 16px; color: rgba(255,255,255,.92); font-size: var(--text-small); }
.work-thumb-1 { background: linear-gradient(135deg, #2F6BFF, #5484FF); }
.work-thumb-2 { background: linear-gradient(135deg, #1E9E6A, #3DD68C); }
.work-thumb-3 { background: linear-gradient(135deg, #FF6B4A, #FF9270); }
.work-body { padding: 22px; }
.work-body h3 { font-size: var(--text-h4); margin-bottom: 6px; }
.work-body p { font-size: 0.95rem; }
.work-metric { margin-top: 12px; color: var(--text-primary); font-weight: 500; }
.work-metric strong { color: var(--accent); font-family: var(--font-display); }

/* ---------- process ---------- */
.process-section { background: var(--surface); border-block: 1px solid var(--border); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { background: var(--surface-raised); border: 1px solid var(--border); border-radius: 16px; padding: 30px; position: relative; }
.step-num { display: inline-block; font-size: 0.9rem; color: var(--accent); margin-bottom: 16px; padding: 4px 10px; border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); border-radius: 999px; }
.step h3 { font-size: var(--text-h4); margin-bottom: 10px; }
.step p { font-size: 0.975rem; }

/* ---------- testimonials: auto-scrolling marquee (WhatsApp-style) ---------- */
.quote-section { text-align: center; overflow: hidden; }
.quote-kicker { color: var(--text-tertiary); font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 12px; }
.quote-heading { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -0.035em; color: var(--text-primary); margin: 0 0 44px; }

.tmarquee { position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.tmarquee-track { display: flex; gap: 22px; width: max-content; padding: 6px 22px; animation: tmarquee-scroll 52s linear infinite; }
.tmarquee:hover .tmarquee-track { animation-play-state: paused; }
@keyframes tmarquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.tcard { flex: 0 0 auto; width: min(400px, 82vw); text-align: left; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 28px 30px; box-shadow: 0 16px 34px -24px rgba(26,26,24,.55); display: flex; flex-direction: column; justify-content: space-between; gap: 22px; }
.tcard blockquote { margin: 0; position: relative; padding-top: 26px; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; line-height: 1.45; letter-spacing: -0.02em; color: var(--text-primary); }
.tcard blockquote::before { content: "\201C"; position: absolute; top: -0.18em; left: -2px; font-weight: 800; font-size: 3rem; line-height: 1; color: var(--accent); opacity: .28; }
.tcard .q-hl { background: linear-gradient(100deg, var(--lo-blue), var(--lo-blue-hover)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tcard figcaption { display: flex; flex-direction: column; gap: 2px; }
.q-name { font-weight: 700; color: var(--accent); }
.q-role { color: var(--text-tertiary); font-size: var(--text-small); }

@media (prefers-reduced-motion: reduce) {
  .tmarquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tmarquee-track { animation: none; }
}

/* ---------- CTA / quote ---------- */
.cta-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px);
  background: linear-gradient(135deg, var(--accent), var(--accent-pressed));
  border-radius: 24px; padding: clamp(32px, 5vw, 56px); color: #fff; align-items: center;
}
.cta-title { color: #fff; font-size: var(--text-h2); margin-bottom: 14px; }
.cta-sub { color: rgba(255,255,255,.88); font-size: 1.075rem; margin-bottom: 22px; }
.cta-points { display: grid; gap: 10px; }
.cta-points li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.95); font-size: var(--text-small); }
.cta-points .tick { color: #fff; }

.quote-form { background: var(--surface-raised); border-radius: 16px; padding: 26px; display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: var(--text-small); font-weight: 500; color: var(--text-primary); }
.field .optional { color: var(--text-tertiary); font-weight: 400; }
.field input, .field textarea {
  font-family: inherit; font-size: var(--text-body); color: var(--text-primary);
  background: var(--background); border: 1px solid var(--border-strong); border-radius: 10px;
  padding: 12px 14px; width: 100%; transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent); }
.field textarea { resize: vertical; }
.field-error { color: var(--error); font-size: var(--text-small); }
.phone-row { display: flex; gap: 8px; align-items: stretch; }
.phone-row .phone-cc { flex: none; display: inline-flex; align-items: center; padding: 0 12px; font-size: var(--text-body); color: var(--text-secondary); background: var(--background); border: 1px solid var(--border-strong); border-radius: 10px; }
.phone-row input { flex: 1 1 auto; min-width: 0; }
.phone-row .btn { flex: none; white-space: nowrap; }
.field-hint { font-size: var(--text-caption); color: var(--text-tertiary); margin: 0; }
.field-hint.ok { color: var(--success); font-weight: 600; }
.form-note { color: var(--text-tertiary); font-size: var(--text-caption); text-align: center; }
/* Success toast — floats bottom-center, slides up, auto-dismisses */
.form-success {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 1000;
  max-width: min(420px, calc(100vw - 32px));
  margin: 0;
  padding: 15px 20px;
  color: #fff;
  font-weight: 500;
  font-size: var(--text-small);
  line-height: 1.45;
  text-align: left;
  background: var(--success);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(30, 158, 106, .32), 0 2px 8px rgba(0, 0, 0, .12);
  transform: translate(-50%, 140%);
  opacity: 0;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), opacity .42s ease;
  pointer-events: none;
}
.form-success.show { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
/* keep it visible even though it carries the [hidden] attr for no-JS fallback */
.form-success[hidden] { display: block; }
@media (prefers-reduced-motion: reduce) {
  .form-success { transition: opacity .2s ease; transform: translate(-50%, 0); }
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 4px 20px; }
.faq summary { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; color: var(--text-primary); padding: 16px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; font-family: var(--font-body); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 18px; font-size: 0.975rem; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--surface); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-tag { margin-top: 16px; color: var(--text-secondary); }
.footer-slogan { margin-top: 6px; color: var(--accent); font-size: var(--text-small); }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-col-title { color: var(--text-tertiary); font-size: var(--text-caption); margin-bottom: 12px; }
.footer-nav a { display: block; color: var(--text-secondary); padding: 5px 0; font-size: var(--text-small); transition: color .18s ease; }
.footer-nav a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-block: 22px; border-top: 1px solid var(--border); font-size: var(--text-caption); color: var(--text-tertiary); }
.footer-console { color: var(--success); }
.cursor-blink { animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .cursor-blink { animation: none; } }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease-out, transform .5s ease-out; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .bento, .stats-grid, .work-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-actions .btn { display: none; }
  .header-actions { margin-left: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .cta-card { grid-template-columns: 1fr; }
  .hero-lede { max-width: none; }

  /* mobile nav panel */
  .site-nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--surface-raised); border-bottom: 1px solid var(--border); padding: 8px 24px 16px;
  }
  .site-nav.open a { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: var(--text-body); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .bento, .stats-grid, .work-grid, .steps, .footer-nav { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
}

/* ============================================================
   BOLD UI LAYER — richer color, still built on brand hues
   (Lo Blue + Coral + status green as accents; warm neutrals)
   ============================================================ */

/* Hero: bold blue+coral glow behind the copy */
.hero { position: relative; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 120%; z-index: -1;
  background:
    radial-gradient(48% 60% at 12% 8%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 70%),
    radial-gradient(42% 55% at 96% 30%, color-mix(in srgb, var(--coral) 22%, transparent), transparent 70%);
  filter: blur(10px); pointer-events: none;
}

/* Gradient headline accents */
.title-dot { color: var(--coral); }
.hero-title { background: none; }
.section-title .grad,
.cta-title .grad {
  background: linear-gradient(100deg, var(--accent), var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Punchier primary button with gradient + glow */
.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-pressed));
  box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--accent) 70%, transparent);
}
.btn-primary:hover { background: linear-gradient(120deg, var(--accent-hover), var(--accent)); }

/* Coral secondary CTA option */
.btn-coral { background: linear-gradient(120deg, var(--coral), #ff8a4a); color: #fff;
  box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--coral) 70%, transparent); }
.btn-coral:hover { filter: brightness(1.05); }

/* Bento cards: colored top accent bar + per-card accent variety */
.card { position: relative; overflow: hidden; }
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--card-accent, var(--accent)); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.card:hover::before { transform: scaleX(1); }
.bento .card:nth-child(1) { --card-accent: var(--accent); }
.bento .card:nth-child(2) { --card-accent: var(--coral); }
.bento .card:nth-child(3) { --card-accent: var(--success); }
.bento .card:nth-child(4) { --card-accent: #7C5CFF; }
.bento .card:nth-child(5) { --card-accent: var(--accent); }
.bento .card:nth-child(6) { --card-accent: var(--warning); }
.card:nth-child(2) .card-icon { background: color-mix(in srgb, var(--coral) 14%, transparent); color: var(--coral); }
.card:nth-child(3) .card-icon { background: color-mix(in srgb, var(--success) 14%, transparent); color: var(--success); }
.card:nth-child(4) .card-icon { background: color-mix(in srgb, #7C5CFF 15%, transparent); color: #7C5CFF; }
.card:nth-child(6) .card-icon { background: color-mix(in srgb, var(--warning) 16%, transparent); color: var(--warning); }

/* Stat numbers get the gradient treatment */
.stat-number {
  background: linear-gradient(120deg, var(--accent), var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats-section { background:
  linear-gradient(180deg, color-mix(in srgb, var(--accent) 6%, var(--surface)), var(--surface)); }

/* Work cards: link affordance + bolder hover */
a.work-card { display: block; color: inherit; }
a.work-card:hover { box-shadow: 0 26px 56px -26px color-mix(in srgb, var(--accent) 55%, transparent); }
.work-thumb { position: relative; }
.work-cta { margin-top: 10px; font-size: var(--text-small); font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.work-card:hover .work-cta .arrow { transform: translateX(4px); }
.work-cta .arrow { transition: transform .18s ease; }

/* browser-window mockup previews of live demo sites */
.work-browser { background: var(--surface); }
.wb-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 12px; border-bottom: 1px solid var(--border); background: var(--surface);
}
.wb-bar > span { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.wb-bar > span:nth-child(1) { background: #FF5F57; }
.wb-bar > span:nth-child(2) { background: #FEBC2E; }
.wb-bar > span:nth-child(3) { background: #28C840; }
.wb-url {
  margin-left: 8px; font: 500 .7rem var(--font-mono); font-style: normal;
  color: var(--text-tertiary); background: var(--background);
  padding: 3px 12px; border-radius: 6px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wb-shot { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface); }
.wb-shot img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block; transition: transform .55s ease;
}
a.work-card:hover .wb-shot img { transform: scale(1.05); }

/* Trust strip: warm gradient wash */
.trust-strip { background: linear-gradient(90deg,
  color-mix(in srgb, var(--accent) 7%, var(--surface)),
  color-mix(in srgb, var(--coral) 7%, var(--surface))); }

/* CTA card: bolder multi-stop gradient + subtle sheen */
.cta-card {
  background: linear-gradient(125deg, var(--accent) 0%, #4a5cff 45%, var(--coral) 130%);
  position: relative; overflow: hidden;
}
.cta-card::after {
  content: ""; position: absolute; top: -40%; right: -10%; width: 60%; height: 180%;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 60%); pointer-events: none;
}

/* ============================================================
   SCROLL STORY SECTION — one contained scroll-scrubbed moment
   ============================================================ */
.story {
  position: relative;
  height: 340vh;              /* scroll runway for the story */
  background: var(--background);
}
.story-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
}
#storyCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; background: #12100e;
}
.story-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,9,8,.55) 0%, rgba(10,9,8,.30) 40%, rgba(10,9,8,.70) 100%);
}
.story-captions { position: absolute; inset: 0; }
.story-caption {
  position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-40%);
  text-align: center; padding-inline: 8vw;
  opacity: 0; transition: opacity .4s ease, transform .5s ease;
  will-change: opacity, transform;
}
.story-caption .kicker { color: #ffd9cc; justify-content: center; text-align: center; }
.story-caption h2 {
  color: #fff; font-size: clamp(2rem, 5.5vw, 4rem); letter-spacing: -0.03em; line-height: 1.05;
  max-width: 18ch; margin-inline: auto; text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.story-caption h2 .grad {
  background: linear-gradient(100deg, #7aa0ff, #ff8a4a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.story-caption p { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 40ch; margin: 18px auto 0; }
.story-caption.active { opacity: 1; transform: translateY(-50%); }

/* progress rail */
.story-progress {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.story-progress span { width: 26px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.28); transition: background .3s ease; }
.story-progress span.on { background: var(--coral); }

.story-scrollcue {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-family: var(--font-mono); font-size: var(--text-caption);
}

@media (prefers-reduced-motion: reduce) {
  /* Collapse the runway; show a static frame + first caption stacked */
  .story { height: auto; }
  .story-sticky { position: relative; height: auto; min-height: 70vh; }
  .story-caption { position: relative; opacity: 1; transform: none; padding-block: 40px; top: auto; }
  .story-progress, .story-scrollcue { display: none; }
}
@media (max-width: 640px) {
  .story { height: 300vh; }
  .story-caption p { font-size: 1rem; }
}

/* ============================================================
   HERO — full-bleed cinematic video with centered copy
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center; align-items: stretch;
  padding-block: 120px 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before { display: none; }              /* drop the old glow layer */

.hero-bg-video,
.hero-bg-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero-bg-fallback {
  z-index: -3;
  background:
    radial-gradient(60% 70% at 25% 20%, rgba(47,107,255,.55), transparent 60%),
    radial-gradient(60% 70% at 85% 80%, rgba(255,107,74,.45), transparent 60%),
    linear-gradient(135deg, #1a2140, #12100e);
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(10,12,20,.80) 0%,
    rgba(10,12,20,.34) 26%,
    rgba(10,12,20,.40) 60%,
    rgba(10,12,20,.82) 100%);
}

.hero-inner { text-align: center; width: 100%; max-width: 940px; margin-inline: auto; }
.hero-copy { color: #fff; }
.hero .kicker { color: #9db9ff; justify-content: center; }
.hero-title {
  color: #fff;
  font-size: clamp(3rem, 8vw, 6rem);
  text-shadow: 0 2px 40px rgba(0,0,0,.45);
  margin-inline: auto;
}
.hero .title-dot { color: var(--coral); }
.hero-lede {
  color: rgba(255,255,255,.92); font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: min(52ch, 100%); margin: 0 auto 34px; text-shadow: 0 1px 20px rgba(0,0,0,.4);
}
.hero-cta { justify-content: center; margin-bottom: 30px; }
.hero-trust { justify-content: center; }
.hero-trust li { color: rgba(255,255,255,.88); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); }
.hero .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.14); }

.hero-scrollcue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  font-family: var(--font-mono); font-size: var(--text-caption);
  color: rgba(255,255,255,.7); letter-spacing: .04em;
  animation: cueBob 2.2s ease-in-out infinite;
}
@keyframes cueBob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 5px); } }
@media (prefers-reduced-motion: reduce) { .hero-scrollcue { animation: none; } }

/* Header goes transparent + white while sitting over the hero video */
.site-header.header-transparent {
  background: transparent; backdrop-filter: none; border-bottom-color: transparent;
}
.header-transparent .brand-word { color: #fff; }
.header-transparent .site-nav a { color: rgba(255,255,255,.82); }
.header-transparent .site-nav a:hover { color: #fff; }
.header-transparent .theme-toggle { color: #fff; border-color: rgba(255,255,255,.5); }
.header-transparent .theme-toggle:hover { border-color: #fff; color: #fff; }
.header-transparent .nav-toggle span { background: #fff; }

/* ============================================================
   CAPABILITIES — kinetic showcase (auto-playing product tour)
   Left rail of steps + right stage with moving imagery and
   animated live-data overlays. Everything replays per slide.
   ============================================================ */
.showcase {
  margin-top: 46px;
  display: grid;
  grid-template-columns: minmax(300px, 360px) 1fr;
  gap: 22px;
  align-items: stretch;
}

/* ---- Left rail ---- */
.sc-rail { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.sc-rail li { margin: 0; }
.sc-step {
  width: 100%; text-align: left; cursor: pointer; font-family: inherit;
  display: grid; grid-template-columns: 40px 1fr; column-gap: 14px; row-gap: 9px;
  align-items: center;
  background: transparent; border: 1px solid transparent; border-radius: 14px;
  padding: 13px 15px; color: var(--text-secondary);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.sc-step:hover { background: var(--surface); }
.sc-step.is-active {
  background: var(--surface-raised); border-color: var(--border);
  box-shadow: 0 16px 34px -22px rgba(20,20,40,.45);
}
.sc-ic {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--surface); color: var(--accent);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.sc-ic svg { width: 22px; height: 22px; }
.sc-step.is-active .sc-ic { background: var(--accent); color: #fff; transform: scale(1.04); }
.sc-txt { display: flex; flex-direction: column; min-width: 0; }
.sc-t { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--text-primary); letter-spacing: -.01em; }
.sc-d { font-size: .84rem; color: var(--text-secondary); margin-top: 1px; }
.sc-progress {
  grid-column: 1 / -1; height: 3px; border-radius: 3px; overflow: hidden;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  opacity: 0; transition: opacity .3s ease;
}
.sc-step.is-active .sc-progress { opacity: 1; }
.sc-progress i { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 3px; }
.sc-step.is-active .sc-progress i { animation: scFill var(--sc-dur, 5s) linear forwards; }
@keyframes scFill { from { width: 0; } to { width: 100%; } }

/* ---- Right stage ---- */
.sc-stage {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: 22px; min-height: 470px; background: #0a1230;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -40px rgba(15,25,60,.55);
}
.sc-slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; visibility: hidden; transition: opacity .7s ease;
}
.sc-slide.is-active { opacity: 1; visibility: visible; }
.sc-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  filter: grayscale(55%) brightness(.68) contrast(1.03);
  transform: scale(1.04);
}
.sc-slide.is-active .sc-img { animation: scKen 6.5s ease-out forwards; }
@keyframes scKen { from { transform: scale(1.02); } to { transform: scale(1.13); } }
.sc-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(120deg, rgba(24,54,150,.82) 0%, rgba(10,18,48,.5) 55%, rgba(10,16,44,.7) 100%),
    radial-gradient(120% 90% at 80% 110%, rgba(6,12,38,.7), transparent 60%);
}
.sc-name {
  position: absolute; left: 26px; bottom: 22px; z-index: 3;
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: #fff;
  letter-spacing: -.015em; text-shadow: 0 2px 18px rgba(5,10,35,.55);
}

/* ---- Floating glass panels + shared entrance ---- */
.sc-overlay { position: absolute; inset: 0; z-index: 2; }
.sc-panel {
  position: absolute;
  background: rgba(255,255,255,.9); color: var(--text-primary);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.6); border-radius: 16px;
  box-shadow: 0 24px 55px -22px rgba(5,12,40,.6);
  padding: 18px 20px;
}
.sc-panel-tl { top: 30px; left: 30px; min-width: 224px; }
.sc-panel-c { top: 0; bottom: 0; left: 0; right: 0; margin: auto; width: max-content; height: max-content; text-align: center; padding: 26px 30px; }
.sc-slide .sc-panel { opacity: 0; transform: translateY(16px) scale(.98); }
.sc-slide.is-active .sc-panel { animation: scPanelIn .6s .12s cubic-bezier(.18,.9,.24,1) forwards; }
@keyframes scPanelIn { to { opacity: 1; transform: none; } }

.sc-phead { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-secondary); display: flex; align-items: center; }
.sc-num { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; line-height: 1; margin-top: 9px; color: var(--accent); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.sc-plabel { font-size: .82rem; color: var(--text-secondary); margin-top: 5px; }

.sc-live { width: 8px; height: 8px; border-radius: 50%; background: #16c273; margin-right: 7px; flex: none; }
.sc-slide.is-active .sc-live { animation: scPulse 1.7s ease-out infinite; }
@keyframes scPulse { 0% { box-shadow: 0 0 0 0 rgba(22,194,115,.5); } 100% { box-shadow: 0 0 0 12px rgba(22,194,115,0); } }

/* Bars (ads) */
.sc-bars { display: flex; align-items: flex-end; gap: 6px; height: 48px; margin-top: 15px; }
.sc-bars i { flex: 1; height: var(--h); border-radius: 4px 4px 2px 2px; transform: scaleY(0); transform-origin: bottom;
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 55%, #8fb0ff)); }
.sc-slide.is-active .sc-bars i { animation: scBar .7s cubic-bezier(.2,.8,.2,1) forwards; }
.sc-slide.is-active .sc-bars i:nth-child(1) { animation-delay: .25s; }
.sc-slide.is-active .sc-bars i:nth-child(2) { animation-delay: .32s; }
.sc-slide.is-active .sc-bars i:nth-child(3) { animation-delay: .39s; }
.sc-slide.is-active .sc-bars i:nth-child(4) { animation-delay: .46s; }
.sc-slide.is-active .sc-bars i:nth-child(5) { animation-delay: .53s; }
.sc-slide.is-active .sc-bars i:nth-child(6) { animation-delay: .60s; }
@keyframes scBar { to { transform: scaleY(1); } }

/* Sparkline (hosting) */
.sc-spark { display: block; width: 132px; height: 36px; margin-top: 13px; color: var(--accent); }
.sc-spark path { stroke-dasharray: 270; stroke-dashoffset: 270; }
.sc-slide.is-active .sc-spark path { animation: scDraw 1.3s .3s ease forwards; }
@keyframes scDraw { to { stroke-dashoffset: 0; } }

/* Flow (email) */
.sc-flow { display: flex; align-items: center; gap: 8px; margin: 13px 0 8px; }
.sc-flow span { font-size: .76rem; font-weight: 600; padding: 5px 10px; border-radius: 8px; background: var(--surface); color: var(--text-primary); white-space: nowrap; opacity: 0; transform: translateY(6px); }
.sc-flow i { flex: 1; height: 2px; background: var(--border); position: relative; overflow: hidden; }
.sc-flow i::after { content: ""; position: absolute; inset: 0; background: var(--accent); transform: scaleX(0); transform-origin: left; }
.sc-slide.is-active .sc-flow span { animation: scPanelIn .4s both; }
.sc-slide.is-active .sc-flow span:nth-child(1) { animation-delay: .25s; }
.sc-slide.is-active .sc-flow span:nth-child(3) { animation-delay: .55s; }
.sc-slide.is-active .sc-flow span:nth-child(5) { animation-delay: .85s; }
.sc-slide.is-active .sc-flow i::after { animation: scGrowX .35s both; }
.sc-slide.is-active .sc-flow i:nth-child(2)::after { animation-delay: .45s; }
.sc-slide.is-active .sc-flow i:nth-child(4)::after { animation-delay: .75s; }
@keyframes scGrowX { to { transform: scaleX(1); } }

/* SERP rank (SEO) */
.sc-serp { display: flex; align-items: center; gap: 15px; }
.sc-rank { font-family: var(--font-display); font-weight: 700; font-size: 2.7rem; line-height: 1; color: var(--accent); min-width: 1.3ch; font-variant-numeric: tabular-nums; }
.sc-serp-lines { display: flex; flex-direction: column; gap: 8px; }
.sc-serp-lines b { display: block; width: 128px; height: 10px; border-radius: 5px; background: var(--accent); opacity: .9; }
.sc-serp-lines i { display: block; width: 92px; height: 8px; border-radius: 4px; background: var(--border); }
.sc-up { color: #16c273; font-size: .8em; }

/* Shield (security) */
.sc-shield { width: 74px; height: 74px; display: block; margin: 0 auto 12px; color: var(--accent); }
.sc-shield-check { stroke-dasharray: 42; stroke-dashoffset: 42; }
.sc-slide.is-active .sc-shield-check { animation: scDraw .55s .55s ease forwards; }

/* Chat (support) */
.sc-panel-chat { top: 30px; left: 30px; width: 296px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.sc-msg { font-size: .86rem; line-height: 1.35; padding: 9px 13px; border-radius: 14px; max-width: 84%; opacity: 0; }
.sc-msg-in { align-self: flex-start; background: var(--surface); color: var(--text-primary); border-bottom-left-radius: 4px; }
.sc-msg-out { align-self: flex-end; background: var(--accent); color: #fff; border-bottom-right-radius: 4px; }
.sc-slide.is-active .sc-msg-in { animation: scMsg .4s .2s forwards; }
.sc-slide.is-active .sc-reply { animation: scMsg .4s 2.1s forwards; }
.sc-typing { display: flex; gap: 5px; padding: 12px 14px; overflow: hidden; }
.sc-typing span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.85); }
.sc-slide.is-active .sc-typing { animation: scMsg .35s .8s forwards, scCollapse .3s 2s forwards; }
.sc-slide.is-active .sc-typing span { animation: scBlink 1s infinite; }
.sc-typing span:nth-child(2) { animation-delay: .15s !important; }
.sc-typing span:nth-child(3) { animation-delay: .3s !important; }
.sc-plabel + .sc-plabel, .sc-panel-chat .sc-plabel { margin-top: 6px; }
@keyframes scMsg { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
@keyframes scBlink { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes scCollapse { to { opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0; margin: -4px 0; } }

/* Phone + toast (mobile apps) */
.sc-phone {
  position: absolute; top: 50%; left: 50%; z-index: 1;
  width: 152px; height: 306px; border-radius: 30px; overflow: hidden;
  background: #0c1430; border: 6px solid rgba(255,255,255,.9);
  box-shadow: 0 34px 66px -22px rgba(5,12,40,.7); opacity: 0;
  transform: translate(-50%, -46%);
}
.sc-slide.is-active .sc-phone { animation: scPhoneIn .7s .1s cubic-bezier(.18,.9,.24,1) forwards; }
@keyframes scPhoneIn { from { opacity: 0; transform: translate(-50%, -40%) scale(.96); } to { opacity: 1; transform: translate(-50%, -46%) scale(1); } }
.sc-phone-scr { position: absolute; inset: 9px; border-radius: 22px; padding: 16px 14px; display: flex; flex-direction: column; gap: 11px;
  background: linear-gradient(180deg, #14235a, #0c1430); }
.sc-sk { height: 12px; border-radius: 6px; background: rgba(255,255,255,.14); }
.sc-sk-wide { height: 66px; border-radius: 12px; background: linear-gradient(120deg, var(--accent), #8fb0ff); opacity: .95; }
.sc-sk-btn { margin-top: auto; height: 34px; border-radius: 10px; background: var(--accent); }
.sc-toast { top: 42px; right: 32px; left: auto; display: flex; align-items: center; gap: 3px; font-size: .84rem; font-weight: 600; padding: 12px 16px; }
.sc-toast b { color: var(--accent); }
.sc-slide.is-active .sc-toast { animation: scToast .5s 1.15s cubic-bezier(.2,.9,.3,1.2) forwards; }
@keyframes scToast { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .showcase { display: flex; flex-direction: column; }
  .sc-stage { order: 1; min-height: 360px; }
  .sc-rail { order: 2; }
}
@media (max-width: 460px) {
  .sc-stage { min-height: 320px; }
  .sc-panel-tl, .sc-panel-chat { top: 20px; left: 20px; }
  .sc-num { font-size: 2rem; }
  .sc-name { font-size: 1.25rem; left: 20px; }
}

/* ---- Reduced motion: no autoplay/Ken Burns; steady, legible state ---- */
@media (prefers-reduced-motion: reduce) {
  .sc-slide.is-active .sc-img { animation: none; transform: scale(1.05); }
  .sc-slide.is-active .sc-panel,
  .sc-slide.is-active .sc-phone,
  .sc-slide.is-active .sc-toast,
  .sc-slide.is-active .sc-flow span { animation: none; opacity: 1; transform: none; }
  .sc-slide.is-active .sc-bars i { animation: none; transform: scaleY(1); }
  .sc-slide.is-active .sc-spark path { animation: none; stroke-dashoffset: 0; }
  .sc-slide.is-active .sc-shield-check { animation: none; stroke-dashoffset: 0; }
  .sc-slide.is-active .sc-flow i::after { animation: none; transform: scaleX(1); }
  .sc-slide.is-active .sc-typing { display: none; }
  .sc-slide.is-active .sc-reply { animation: none; opacity: 1; }
  .sc-step.is-active .sc-progress i { animation: none; width: 100%; }
  .sc-live { animation: none !important; }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================================================
   HERO — local business, made visible (full-bleed photo)
   Real photo + brand-navy veil for legibility + floating proof.
   ============================================================ */
.hero-lead {
  position: relative; min-height: 92vh; min-height: 92svh;
  margin-top: -68px;              /* bleed the photo up under the sticky header */
  display: flex; align-items: center; overflow: hidden; background: #0a1230;
}
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
}
/* legibility veil: dark where the copy sits (left), clearing over the subject */
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,13,34,.92) 0%, rgba(8,13,34,.72) 32%, rgba(8,13,34,.14) 62%, rgba(8,13,34,0) 84%),
    linear-gradient(0deg, rgba(8,13,34,.5) 0%, rgba(8,13,34,0) 32%);
}
.hero-lead-inner {
  position: relative; z-index: 2; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding-block: 120px 96px;
}
.hero-copy { max-width: 620px; }
.hero-kicker { color: #9db9ff; }
.hero-headline {
  font-family: var(--font-display); font-weight: 600; color: #fff;
  font-size: clamp(2.7rem, 6.4vw, 5.4rem); line-height: 1.0;
  letter-spacing: -0.035em; margin: 0 0 22px;
  text-shadow: 0 2px 40px rgba(0,0,0,.35);
}
.hero-headline em { font-style: normal; color: var(--lo-blue-hover); }
.hero-lede-2 {
  color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55; max-width: 46ch; margin: 0 0 32px;
  text-shadow: 0 1px 18px rgba(0,0,0,.4);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.hero-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); }
.hero-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.14); }
.hero-ghost .arrow { transition: transform .18s ease; }
.hero-ghost:hover .arrow { transform: translateX(3px); }

/* floating "proof" cards — our answer to the chat bubbles */
.hero-cards { position: relative; flex: none; width: 300px; align-self: stretch; }
.hero-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  /* liquid glass — translucent, blurred, subtle light rim (no solid white square) */
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px; padding: 12px 16px;
  box-shadow: 0 14px 36px -14px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.35);
  white-space: nowrap; animation: hcFloat 5s ease-in-out infinite;
}
.hero-card .hc-body { display: flex; flex-direction: column; line-height: 1.25; }
.hero-card b { font-size: .95rem; color: #fff; font-weight: 600; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.hero-card span { font-size: .8rem; color: rgba(255,255,255,.82); }
.hc-ic { flex: none; display: grid; place-items: center; }
.hc-up { color: #4ade80; font-size: 1rem; font-weight: 700; }
.hc-dot { width: 10px; height: 10px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.22); }
.hc-stars { color: #ffce4a; font-size: .85rem; letter-spacing: 1px; }
/* logo chip: frosted glass, not a white tile — light enough to keep the marks legible */
.hc-logo { width: 32px; height: 32px; border-radius: 9px; background: rgba(255,255,255,.82); box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); }
.hc-logo .hc-logo-svg { display: block; }
/* scattered across the frame — clear of the owner's face, not stacked on one edge */
.hc-rank    { top: 5%;   right: 24px;  animation-delay: 0s;   }
.hc-meta    { top: 32%;  right: 182px; animation-delay: .6s;  }
.hc-booking { top: 55%;  right: 142px; animation-delay: 1.2s; }
.hc-review  { top: 79%;  right: -16px; animation-delay: 1.8s; }
@keyframes hcFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hero-scrollcue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,.72); font-family: var(--font-mono); font-size: var(--text-caption);
  letter-spacing: .04em; animation: cueBob 2.2s ease-in-out infinite;
}
.hero-scrollcue:hover { color: #fff; }
@keyframes cueBob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ============================================================
   CLOSING FILM — background video band at the foot of the page
   ============================================================ */
.film {
  position: relative; min-height: 80vh; min-height: 80svh;
  display: flex; align-items: center; overflow: hidden; background: #0a1230;
}
.film-video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.film-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,13,34,.9) 0%, rgba(8,13,34,.55) 46%, rgba(8,13,34,.15) 100%),
    radial-gradient(130% 130% at 18% 50%, rgba(47,107,255,.3), transparent 62%);
}
.film-content { position: relative; z-index: 2; max-width: 620px; }
.film-title {
  font-family: var(--font-display); font-weight: 600; color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -0.03em; margin: 0 0 20px;
}
.film-title em { font-style: normal; color: var(--lo-blue-hover); }
.film-sub {
  color: rgba(255,255,255,.9); font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  line-height: 1.55; max-width: 48ch; margin: 0 0 30px;
}

@media (max-width: 900px) {
  .hero-cards { display: none; }
  .hero-lead-inner { padding-block: 104px 72px; }
  .hero-headline { font-size: clamp(2.4rem, 9vw, 3.6rem); }
}
@media (max-width: 640px) {
  .hero-lead { min-height: 86svh; }
  .hero-photo { object-position: 66% 50%; }
  .hero-veil {
    background: linear-gradient(0deg, rgba(8,13,34,.94) 6%, rgba(8,13,34,.55) 52%, rgba(8,13,34,.32) 100%);
  }
  .film { min-height: 70svh; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-card, .hero-scrollcue { animation: none; }
}

/* ============================================================
   MINIMAL ALIGNMENT — single Lo-Blue accent, flat, editorial.
   Overrides the earlier "bold UI layer" to match the reference
   sites (refero / Mobbin / pop.site): near-white, one accent.
   ============================================================ */

/* One accent everywhere: retire the blue→coral gradient text */
.section-title .grad,
.cta-title .grad {
  background: none; -webkit-background-clip: initial; background-clip: initial;
  color: var(--accent);
}
.title-dot { color: var(--accent); }

/* Flat solid primary button — no gradient, quiet elevation */
.btn-primary { background: var(--accent); box-shadow: 0 1px 2px rgba(20,20,30,.06); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:active { background: var(--accent-pressed); }

/* Solid accent stat numbers; flat stats band */
.stat-number { background: none; -webkit-background-clip: initial; background-clip: initial; color: var(--accent); }
.stats-section { background: var(--surface); }

/* Trust strip: flat surface, no warm wash */
.trust-strip { background: var(--surface); }

/* Bento: drop the multi-colour variety → single accent */
.bento .card:nth-child(n) { --card-accent: var(--accent); }
.card:nth-child(2) .card-icon,
.card:nth-child(3) .card-icon,
.card:nth-child(4) .card-icon,
.card:nth-child(6) .card-icon {
  background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent);
}

/* Soft editorial elevation on imagery/cards */
.work-card { box-shadow: 0 1px 2px rgba(20,20,30,.04); }

/* CTA card: one calm solid-accent block (no coral multi-stop) */
.cta-card { background: var(--accent); }
.cta-card::after { display: none; }

/* ============================================================
   HANDLED FOR YOU — "we handle the complex stuff" (pop.site-style)
   Centered headline + 4 quiet feature cards + an animated
   device preview (CSS gradient, no video).
   ============================================================ */
.handled-section { background: var(--background); } /* the shared cream canvas */
.section-head-center { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.handled-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.3rem, 5.6vw, 4.1rem); line-height: 1.02;
  letter-spacing: -0.03em; color: var(--text-primary); margin-bottom: 18px;
}
.handled-sub { font-size: 1.075rem; color: var(--text-secondary); margin: 0; }
.handled-heart { color: var(--accent); margin-right: 4px; }

.handled-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin: 48px 0 56px;
}
.handled-card {
  position: relative;
  background: var(--surface-raised); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 20px 20px;
  box-shadow: 0 1px 2px rgba(20,20,30,.04);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease,
              border-color .3s ease, background .3s ease;
}
/* hover: lift + soft blue-gradient wash + gradient-filled icon */
.handled-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--lo-blue) 55%, transparent);
  background: linear-gradient(150deg,
    color-mix(in srgb, var(--lo-blue) 13%, var(--surface-raised)) 0%,
    color-mix(in srgb, var(--lo-blue-deep) 6%, var(--surface-raised)) 100%);
  box-shadow: 0 18px 36px -20px rgba(15,127,173,.55), 0 2px 8px rgba(20,20,30,.05);
}
.hcard-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; margin-bottom: 16px;
  background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.handled-card:hover .hcard-ic { background: var(--grad-blue); color: #fff; transform: scale(1.05); }
.hcard-ic svg { width: 20px; height: 20px; }
.handled-card h3 { font-size: 1.0625rem; margin: 0 0 6px; color: var(--text-primary); }
.handled-card p { font-size: var(--text-small); line-height: 1.5; color: var(--text-secondary); margin: 0; }

/* --- live device preview: real demo site auto-scrolling on laptop + phone --- */
.handled-preview { max-width: 940px; margin: 0 auto; text-align: center; }
.hp-devices { position: relative; padding-bottom: 8px; }

/* browser / laptop frame */
.hp-frame {
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  background: var(--surface-raised);
  box-shadow: 0 40px 80px -40px rgba(20,20,40,.35), 0 2px 6px rgba(20,20,30,.05);
}
.hp-laptop { max-width: 820px; margin: 0 auto; }
.hp-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px; background: var(--surface); border-bottom: 1px solid var(--border);
}
.hp-bar > span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.hp-url {
  margin-left: 14px; font-family: var(--font-mono); font-size: var(--text-caption);
  color: var(--text-tertiary); font-style: normal;
  background: var(--background); border: 1px solid var(--border);
  border-radius: 999px; padding: 3px 12px;
}
.hp-screen { position: relative; height: 460px; overflow: hidden; background: #fff; }

/* the live iframe — JS sizes width/height + scale + top (auto-scroll) */
.hp-site {
  position: absolute; top: 0; left: 0; border: 0; background: #fff;
  transform-origin: top left; pointer-events: none;
}

/* phone frame, overlapping the laptop's bottom-right */
.hp-phone {
  position: absolute; right: 4px; bottom: 0; z-index: 3;
  width: 188px; padding: 7px; border-radius: 30px;
  background: #0b0f18; border: 1px solid var(--border-strong);
  box-shadow: 0 30px 60px -22px rgba(20,20,40,.55);
}
.hp-notch {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 62px; height: 15px; background: #0b0f18; border-radius: 0 0 11px 11px; z-index: 4;
}
.hp-phone-screen {
  position: relative; height: 384px; border-radius: 22px; overflow: hidden; background: #fff;
}

.hp-visit {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 26px;
  font-family: var(--font-mono); font-size: var(--text-small);
  color: var(--accent); font-weight: 500;
}
.hp-visit:hover { color: var(--accent-hover); }
.hp-visit .arrow { transition: transform .18s ease; }
.hp-visit:hover .arrow { transform: translateX(3px); }

@media (max-width: 820px) {
  .handled-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hp-screen { height: 380px; }
}
/* Narrow screens: stop the phone overlapping the laptop (it was being cropped
   off entirely below 460px). Stack the two devices so BOTH show — the whole
   point of this section is "looks perfect on every screen." */
@media (max-width: 600px) {
  .hp-devices { display: flex; flex-direction: column; align-items: center; gap: 24px; padding-bottom: 0; }
  .hp-laptop { width: 100%; max-width: 100%; }
  .hp-phone {
    position: static; right: auto; bottom: auto;
    width: 232px; margin: 0;
  }
  .hp-phone-screen { height: 440px; }
}
@media (max-width: 460px) {
  .handled-cards { grid-template-columns: 1fr; }
}

/* ---------- trust ticker (Mobbin "Trusted by …" style: muted Inter label + infinite marquee) ---------- */
.trust-strip { padding-block: 40px 46px; overflow: hidden; }
.trust-label {
  text-align: center;
  font-family: var(--font-body);       /* Inter, like Mobbin's label */
  font-size: 0.8125rem; font-weight: 500; letter-spacing: -0.006em;
  color: var(--text-tertiary);
  margin: 0 0 28px;
}
.ticker {
  position: relative; width: 100%; overflow: hidden;
  /* soft fade at both edges, like Mobbin's logo row */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 11%, #000 89%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 11%, #000 89%, transparent 100%);
}
.ticker-track {
  display: flex; width: max-content;
  animation: ticker-scroll 40s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  flex: none; display: inline-flex; align-items: center; gap: 11px;
  margin-right: 56px;                    /* trailing space on every item → seamless -50% loop */
  font-family: var(--font-body); font-size: 1.0625rem; font-weight: 500;
  color: var(--text-secondary); white-space: nowrap;
}
.ticker-item::before {                   /* small brand-blue mark standing in for a logo */
  content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); opacity: 0.5;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker { -webkit-mask-image: none; mask-image: none; }
  .ticker-track { animation: none; flex-wrap: wrap; justify-content: center; row-gap: 14px; }
}


/* ============ SELL INSIDE WHATSAPP (Transform your business) ============ */
.wab-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.wab-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.75rem); line-height: 1.03; letter-spacing: -0.035em; color: var(--text-primary); margin: 0 0 24px; }
.wab-sub { font-size: 1.0625rem; line-height: 1.65; color: var(--text-secondary); max-width: 42ch; margin: 0 0 30px; }
.wab-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; color: var(--text-primary); text-decoration: none; padding-bottom: 5px; border-bottom: 2px solid var(--accent); transition: gap .18s ease, color .18s ease; }
.wab-link:hover { color: var(--accent); gap: 12px; }
.wab-link .arrow { transition: transform .18s ease; }
.wab-link:hover .arrow { transform: translate(2px,-2px); }

.wab-visual { display: flex; justify-content: center; }
.wab-phone { position: relative; width: 300px; background: #0c0c11; border-radius: 42px; padding: 11px; box-shadow: 0 44px 90px -34px rgba(0,0,0,.55), inset 0 0 0 2px rgba(255,255,255,.04); }
.wab-notch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 118px; height: 22px; background: #0c0c11; border-radius: 0 0 14px 14px; z-index: 4; }
.wab-screen { position: relative; background: #fff; border-radius: 32px; overflow: hidden; height: 566px; font-family: var(--font-body); }

/* --- branded "business app" mockup: clean white canvas + Lo-Blue accent --- */
.app-screen { display: flex; flex-direction: column; height: 100%; background: #fff; color: var(--text-primary); }

.app-statusbar { display: flex; justify-content: space-between; align-items: center; background: var(--lo-blue); color: #fff; padding: 6px 20px 3px; }
.app-clock { font-size: 12px; font-weight: 700; letter-spacing: .01em; }
.app-status-ic { display: inline-flex; align-items: center; gap: 5px; }

.app-bar { background: linear-gradient(135deg, var(--lo-blue) 0%, var(--lo-blue-hover) 100%); color: #fff; padding: 6px 16px 16px; border-radius: 0 0 22px 22px; }
.app-bar-main { display: flex; align-items: center; gap: 12px; }
.app-greet { flex: 1; min-width: 0; }
.app-greet span { display: block; font-size: .68rem; opacity: .85; }
.app-greet b { display: block; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; margin-top: 1px; }
.app-bell { position: relative; flex: none; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; }
.app-bell-dot { position: absolute; top: 8px; right: 9px; width: 7px; height: 7px; border-radius: 50%; background: #FF6B4A; box-shadow: 0 0 0 2px var(--lo-blue); }

.app-body { flex: 1; overflow: hidden; padding: 13px 14px 0; }

.app-hero { position: relative; height: 138px; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 26px -14px rgba(47,107,255,.5); }
.app-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
.app-hero-veil { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(20,44,110,.82) 8%, rgba(31,82,230,.34) 52%, rgba(31,82,230,0) 78%); }
.app-hero-badge { position: absolute; top: 11px; right: 11px; display: inline-flex; align-items: center; gap: 3px; background: rgba(255,255,255,.94); color: var(--lo-blue-text); font-size: .6rem; font-weight: 700; padding: 4px 8px; border-radius: 999px; letter-spacing: .01em; }
.app-hero-copy { position: absolute; left: 13px; bottom: 12px; color: #fff; }
.app-hero-copy span { display: block; font-size: .66rem; opacity: .9; }
.app-hero-copy b { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }

.app-stats { display: flex; gap: 8px; margin: 12px 0 4px; }
.app-stat { flex: 1; background: #F6F7FA; border: 1px solid #ECEDF1; border-radius: 13px; padding: 9px 6px; text-align: center; }
.app-stat b { display: block; font-size: 1.02rem; font-weight: 800; color: var(--lo-blue-text); letter-spacing: -0.02em; }
.app-stat span { display: block; font-size: .58rem; color: var(--text-tertiary); margin-top: 1px; }

.app-row-head { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 2px 8px; }
.app-row-head b { font-size: .82rem; font-weight: 700; }
.app-see { font-size: .66rem; font-weight: 700; color: var(--lo-blue-text); }

.app-li { display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid #ECEDF1; border-radius: 14px; padding: 9px 11px; margin-bottom: 8px; box-shadow: 0 8px 18px -14px rgba(26,26,24,.55); }
.app-li-av { flex: none; width: 34px; height: 34px; border-radius: 50%; object-fit: cover; background: #ECEDF1; }
.app-li-body { flex: 1; min-width: 0; }
.app-li-body b { display: block; font-size: .78rem; font-weight: 700; }
.app-li-body span { display: block; font-size: .62rem; color: var(--text-tertiary); margin-top: 1px; }
.app-li-tag { flex: none; font-size: .56rem; font-weight: 700; color: var(--lo-blue-text); background: rgba(47,107,255,.12); padding: 3px 8px; border-radius: 999px; }
.app-li-tag-paid { color: var(--success); background: rgba(30,158,106,.14); }

.app-nav { display: flex; align-items: center; justify-content: space-around; background: #fff; border-top: 1px solid #ECEDF1; padding: 9px 18px calc(9px + env(safe-area-inset-bottom)); }
.app-nav-i { display: grid; place-items: center; color: var(--border-strong); }
.app-nav-i.on { color: var(--lo-blue); }
.app-nav-av { width: 26px; height: 26px; border-radius: 50%; background: url("../assets/app-owner.jpg") center/cover; box-shadow: inset 0 0 0 1.5px rgba(0,0,0,.06); }
.app-nav-plus { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 15px; background: linear-gradient(135deg, var(--lo-blue), var(--lo-blue-hover)); color: #fff; line-height: 1; margin-top: -20px; box-shadow: 0 10px 18px -6px rgba(47,107,255,.7); }

@media (max-width: 860px) {
  .wab-grid { grid-template-columns: 1fr; gap: 42px; }
  .wab-sub { max-width: none; }
}

/* ============================================================
   BRAND BLUE = #2FC2F7 (bright cyan-blue).
   Bright cyan reads great as a FILL / on-dark / icon accent, but on the
   cream canvas it's too light for text (contrast ~1.8:1). So text & links
   sitting on cream use the darker cyan --lo-blue-text (#0E7FAD); fills,
   dots, icon chips, glows and on-dark accents keep the bright --accent.
   ============================================================ */
.kicker,
.url-accent,
.floating-badge .mono,
.stat-unit,
.work-metric strong,
.step-num,
.q-name,
.footer-slogan,
.handled-heart,
.wab-link,
.work-cta,
.section-title .grad,
.faq summary::after { color: var(--lo-blue-text); }
.footer-nav a:hover,
.wab-link:hover { color: var(--lo-blue-text); }

/* on-dark accents stay bright */
.hero-kicker { color: #9BE0FB; }

/* Primary button: bright cyan fill + dark ink so the label stays legible */
.btn-primary { background: var(--accent); color: #05323F; }
.btn-primary:hover { background: var(--accent-hover); color: #05323F; }
.btn-primary:active { background: var(--accent-pressed); color: #05323F; }

/* ---------- premium stat numbers: gradient fill + rolling reveal ---------- */
.stat-number {
  display: inline-block; line-height: 1;
  background: var(--grad-blue);
  background-size: 230% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  opacity: 0; transform: translateY(0.42em); filter: blur(9px);
  transition:
    opacity .6s ease,
    transform 1s cubic-bezier(.16, 1, .3, 1),
    filter .55s ease,
    background-position 1.35s cubic-bezier(.22, 1, .36, 1);
  will-change: transform, opacity, background-position;
}
.stat-number.rolled {
  opacity: 1; transform: translateY(0); filter: blur(0);
  background-position: 0 0;
}
/* staggered entrance so the three numbers cascade */
.stat[data-delay="1"] .stat-number { transition-delay: .12s; }
.stat[data-delay="3"] .stat-number { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .stat-number { opacity: 1; transform: none; filter: none; background-position: 0 0; transition: none; }
}

/* ============================================================
   BLUE GRADIENT MOTIF
   The stat-number sheen (--grad-blue) applied across the site's
   large display accents so the gradient reads as a brand motif,
   not a one-off. Small / functional accents (links, kickers, and
   the "lo" wordmark) stay flat for contrast + legibility.
   ============================================================ */

/* text-clip highlights — large display type + decorative glyphs */
.section-title .grad,
.cta-title .grad,
.story-caption h2 .grad,
.hero-headline em,
.film-title em,
.tcard .q-hl,
.title-dot,
.handled-heart {
  background: var(--grad-blue);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* gradient fills — primary buttons + the CTA card */
.btn-primary,
.btn-primary:hover,
.btn-primary:active { background: var(--grad-blue); color: #fff; }
.btn-primary:hover { filter: brightness(1.06); }
.btn-primary:active { filter: brightness(.94); }
.cta-card { background: var(--grad-blue); }

/* wider reach — the eyebrow labels + live-preview link carry the motif too
   (only the cream-canvas ones; hero / story / on-accent kickers keep their
   own contrast colours, set earlier in the file). */
.stats-section .kicker,
.hp-visit,
.hp-visit .arrow,
.trust-label {
  background: var(--grad-blue);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* a short gradient rule under each section title — repeats the sweep as a
   structural accent, not just in the type. Centres itself under centred heads. */
.section-title::after {
  content: ""; display: block; width: 56px; height: 4px; margin-top: 16px;
  border-radius: 3px; background: var(--grad-blue);
}
.section-head-center .section-title::after { margin-left: auto; margin-right: auto; }

/* the "Get started" eyebrow sits on the blue CTA card — force full white so it
   reads (higher specificity + later than the cream-canvas .kicker colour rule). */
.kicker.kicker-on-accent { color: #fff; opacity: 1; text-shadow: 0 1px 8px rgba(4,40,55,.35); }

/* ============================================================
   LO CHAT WIDGET — self-contained site assistant + WhatsApp handoff
   ============================================================ */
.lc-root {
  position: fixed; right: 22px; bottom: 22px; z-index: 1100;
  font-family: var(--font-body);
}
.lc-root *, .lc-root *::before, .lc-root *::after { box-sizing: border-box; }

/* launcher bubble */
.lc-launcher {
  position: relative; width: 60px; height: 60px; border-radius: 50%;
  border: none; cursor: pointer; padding: 0;
  background: var(--grad-blue);
  box-shadow: 0 14px 34px -10px color-mix(in srgb, var(--lo-blue) 70%, transparent), 0 4px 12px rgba(10,30,45,.22);
  display: grid; place-items: center;
  transition: transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s ease;
}
.lc-launcher:hover { transform: translateY(-2px) scale(1.04); }
.lc-launcher:active { transform: translateY(0) scale(.98); }
.lc-launcher:focus-visible { outline: 3px solid color-mix(in srgb, var(--lo-blue) 55%, transparent); outline-offset: 3px; }
.lc-ic-open, .lc-ic-close { position: absolute; inset: 0; transition: opacity .2s ease, transform .2s ease; }
.lc-ic-open .lc-face { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.lc-ic-close { display: grid; place-items: center; opacity: 0; transform: rotate(-90deg) scale(.6); }
.lc-root.lc-on .lc-ic-open { opacity: 0; transform: scale(.85); }
.lc-root.lc-on .lc-ic-close { opacity: 1; transform: rotate(0) scale(1); }
/* live "online" dot on the launcher (hidden once open) */
.lc-live-dot { position: absolute; right: 1px; bottom: 1px; width: 15px; height: 15px; border-radius: 50%; background: #2ED573; border: 2.5px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.28); transition: opacity .2s ease; }
.lc-root.lc-on .lc-live-dot { opacity: 0; }

/* subtle attention pulse (once opened, it stops) */
.lc-launcher::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--lo-blue) 55%, transparent);
  animation: lcPulse 2.6s ease-out infinite;
}
.lc-root.lc-on .lc-launcher::after { animation: none; }
@keyframes lcPulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--lo-blue) 45%, transparent); } 70%,100% { box-shadow: 0 0 0 16px transparent; } }

/* teaser bubble */
.lc-teaser {
  position: absolute; right: 6px; bottom: 78px; width: 250px;
  background: #fff; color: var(--text-primary);
  border: 1px solid var(--border); border-radius: 16px 16px 4px 16px;
  padding: 14px 16px 14px; cursor: pointer;
  box-shadow: 0 18px 40px -20px rgba(20,20,40,.4);
  opacity: 0; transform: translateY(10px) scale(.96); transform-origin: bottom right;
  pointer-events: none; transition: opacity .3s ease, transform .3s cubic-bezier(.22,1,.36,1);
}
.lc-teaser.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.lc-teaser b { display: block; font-size: .95rem; margin-bottom: 3px; }
.lc-teaser span { display: block; font-size: .82rem; color: var(--text-secondary); line-height: 1.4; }
.lc-teaser-x {
  position: absolute; top: 6px; right: 8px; border: none; background: none;
  font-size: 18px; line-height: 1; color: var(--text-tertiary); cursor: pointer; padding: 2px 4px;
}
.lc-teaser-x:hover { color: var(--text-primary); }

/* panel */
.lc-panel {
  position: absolute; right: 0; bottom: 78px;
  width: min(384px, calc(100vw - 32px));
  height: min(586px, calc(100vh - 130px));
  background: var(--background);
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 70px -24px rgba(15,25,60,.5), 0 8px 24px -12px rgba(15,25,60,.3);
  transform-origin: bottom right;
  opacity: 0; transform: translateY(14px) scale(.97);
  transition: opacity .24s ease, transform .26s cubic-bezier(.22,1,.36,1);
}
.lc-root.lc-on .lc-panel { opacity: 1; transform: translateY(0) scale(1); }
.lc-panel[hidden] { display: none; }

/* header */
.lc-head {
  display: flex; align-items: center; gap: 11px;
  padding: 14px 14px 14px 16px; color: #fff;
  background: var(--grad-blue);
}
.lc-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; background: #fff; box-shadow: 0 0 0 2px rgba(255,255,255,.75), 0 2px 8px rgba(5,30,45,.35); }
.lc-avatar .lc-face, .lc-avatar svg { display: block; width: 100%; height: 100%; object-fit: cover; }
.lc-head-txt { display: flex; flex-direction: column; line-height: 1.25; flex: 1; }
.lc-head-txt b { font-size: .98rem; font-weight: 700; letter-spacing: -.01em; }
.lc-head-sub { font-weight: 500; font-size: .78rem; opacity: .82; letter-spacing: 0; }
.lc-head-txt span { font-size: .74rem; opacity: .92; display: flex; align-items: center; gap: 6px; }
.lc-dot { width: 7px; height: 7px; border-radius: 50%; background: #7CF6B0; box-shadow: 0 0 0 0 rgba(124,246,176,.7); animation: lcLive 2s ease-out infinite; }
@keyframes lcLive { 0% { box-shadow: 0 0 0 0 rgba(124,246,176,.6);} 70%,100%{ box-shadow: 0 0 0 6px transparent;} }
.lc-close { margin-left: auto; background: rgba(255,255,255,.16); border: none; color: #fff; width: 30px; height: 30px; border-radius: 8px; cursor: pointer; display: grid; place-items: center; transition: background .18s ease; }
.lc-close:hover { background: rgba(255,255,255,.28); }

/* body / messages */
.lc-body {
  flex: 1; overflow-y: auto; padding: 18px 16px 8px;
  display: flex; flex-direction: column; gap: 12px;
  scroll-behavior: smooth;
  background:
    radial-gradient(120% 60% at 100% 0%, color-mix(in srgb, var(--lo-blue) 7%, transparent), transparent 60%),
    var(--background);
}
.lc-body::-webkit-scrollbar { width: 8px; }
.lc-body::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 8px; }

.lc-msg { display: flex; align-items: flex-end; gap: 8px; max-width: 100%; }
.lc-msg-bot { animation: lcIn .28s cubic-bezier(.22,1,.36,1); }
.lc-msg-user { justify-content: flex-end; animation: lcIn .28s cubic-bezier(.22,1,.36,1); }
@keyframes lcIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.lc-bot-av { width: 28px; height: 28px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; background: #fff; box-shadow: 0 1px 4px rgba(20,20,40,.18); }
.lc-bot-av .lc-face, .lc-bot-av svg { display: block; width: 100%; height: 100%; object-fit: cover; }
.lc-bubble {
  font-size: .9rem; line-height: 1.5; padding: 11px 14px; border-radius: 15px;
  max-width: 82%; word-wrap: break-word;
}
.lc-msg-bot .lc-bubble { background: #fff; border: 1px solid var(--border); border-bottom-left-radius: 5px; color: var(--text-primary); box-shadow: 0 6px 16px -12px rgba(20,20,40,.4); }
.lc-msg-user .lc-bubble { background: var(--grad-blue); color: #fff; border-bottom-right-radius: 5px; box-shadow: 0 8px 18px -10px color-mix(in srgb, var(--lo-blue) 60%, transparent); }
.lc-bubble a:not(.lc-wa-cta) { color: var(--lo-blue-text); font-weight: 600; }
.lc-bubble b { font-weight: 700; }

/* WhatsApp call-to-action inside a bot bubble */
.lc-wa-cta {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 12px; padding: 11px 14px; border-radius: 11px;
  background: #25D366; color: #fff !important; font-weight: 600; font-size: .88rem;
  text-decoration: none; box-shadow: 0 10px 22px -12px rgba(37,211,102,.9);
  transition: filter .18s ease, transform .18s ease;
}
.lc-wa-cta:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* quick-reply chips */
.lc-chips { display: flex; flex-wrap: wrap; gap: 8px; padding-left: 34px; }
.lc-msg-bot + .lc-chips { margin-top: -4px; }
.lc-chip {
  background: #fff; border: 1px solid color-mix(in srgb, var(--lo-blue) 45%, var(--border));
  color: var(--lo-blue-text); font-family: inherit; font-size: .82rem; font-weight: 600;
  padding: 8px 13px; border-radius: 999px; cursor: pointer;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}
.lc-chip:hover { background: var(--lo-blue); color: #fff; transform: translateY(-1px); }
.lc-chip-go { background: var(--lo-blue); color: #fff; }

/* typing indicator */
.lc-typing { display: inline-flex; gap: 4px; align-items: center; padding: 14px; }
.lc-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--text-tertiary); animation: lcBounce 1.1s infinite ease-in-out; }
.lc-typing i:nth-child(2) { animation-delay: .16s; } .lc-typing i:nth-child(3) { animation-delay: .32s; }
@keyframes lcBounce { 0%,80%,100% { transform: translateY(0); opacity: .5; } 40% { transform: translateY(-4px); opacity: 1; } }

/* composer */
.lc-compose {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  border-top: 1px solid var(--border); background: var(--background);
}
.lc-wa-btn {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; border: none; cursor: pointer;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 6px 16px -8px rgba(37,211,102,.9); transition: filter .18s ease, transform .18s ease;
}
.lc-wa-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.lc-input {
  flex: 1; min-width: 0; border: 1px solid var(--border); border-radius: 999px;
  padding: 11px 15px; font-family: inherit; font-size: .9rem; color: var(--text-primary);
  background: #fff; transition: border-color .18s ease, box-shadow .18s ease;
}
.lc-input:focus { outline: none; border-color: var(--lo-blue); box-shadow: 0 0 0 3px color-mix(in srgb, var(--lo-blue) 22%, transparent); }
.lc-send {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; border: none; cursor: pointer;
  background: var(--grad-blue); color: #fff; display: grid; place-items: center;
  box-shadow: 0 6px 16px -8px color-mix(in srgb, var(--lo-blue) 70%, transparent); transition: filter .18s ease, transform .18s ease;
}
.lc-send:hover { filter: brightness(1.06); transform: translateY(-1px); }

/* mobile: near-full-screen panel */
@media (max-width: 480px) {
  .lc-root { right: 16px; bottom: 16px; }
  .lc-panel { position: fixed; right: 12px; left: 12px; bottom: 84px; width: auto; height: min(72vh, calc(100vh - 110px)); }
  .lc-teaser { right: 0; width: min(250px, calc(100vw - 40px)); }
}

@media (prefers-reduced-motion: reduce) {
  .lc-launcher, .lc-panel, .lc-msg, .lc-teaser { transition: none; animation: none; }
  .lc-launcher::after, .lc-dot { animation: none; }
  .lc-body { scroll-behavior: auto; }
}
