:root {
  --bg: #F4F3FA;
  --bg-wash: #E9E6F9;
  --card: #FEFEFE;
  --ink: #1A1724;
  --muted: #5D5870;
  --faint: #8B869B;
  --violet: #8B7CF6;
  --violet-deep: #6D4ECC;
  --violet-soft: #EFECFC;
  --shadow-lg: 0 32px 80px -20px rgba(109, 78, 204, 0.22), 0 8px 24px -8px rgba(26, 23, 36, 0.06);
  --shadow-md: 0 16px 44px -14px rgba(109, 78, 204, 0.18);
  --shadow-sm: 0 6px 18px -6px rgba(109, 78, 204, 0.14);
  --r-card: 22px;
  --r-btn: 14px;
  --r-chip: 10px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Satoshi', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1100px 700px at 82% -10%, var(--bg-wash), transparent 60%),
    radial-gradient(900px 600px at -10% 45%, #EDEAFA, transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---------- nav ---------- */
header {
  padding: 26px 0; position: sticky; top: 0; z-index: 200;
  transition: padding 200ms ease-out, background 200ms ease-out, box-shadow 200ms ease-out;
}
header.scrolled {
  padding: 13px 0;
  background: rgba(244, 243, 250, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(109, 78, 204, 0.08);
}
header .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.14em; font-size: 14px; }
.logo .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 0 4px rgba(139, 124, 246, 0.18); }
nav.links { display: flex; gap: 30px; }
nav.links a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 140ms ease-out; }
nav.links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--card); text-decoration: none;
  font-size: 14px; font-weight: 700; padding: 11px 20px; border-radius: var(--r-btn);
  transition: transform 140ms ease-out, opacity 140ms ease-out;
}
.nav-cta:hover { opacity: 0.88; }
.nav-cta:active { transform: scale(0.97); }

/* ---------- right-side actions: Verdict (flagship, standalone) + Start a project ---------- */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-verdict {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px 9px 12px; border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: -0.005em; text-decoration: none;
  color: var(--violet-deep); background: var(--card);
  border: 1px solid rgba(109, 78, 204, 0.22);
  box-shadow: 0 1px 2px rgba(26, 23, 36, 0.03), 0 10px 26px -14px rgba(109, 78, 204, 0.28);
  transition: transform 160ms cubic-bezier(0.16,1,0.3,1), box-shadow 160ms ease-out, border-color 160ms ease-out;
}
.nav-verdict:hover { transform: translateY(-1px); border-color: rgba(109, 78, 204, 0.4); box-shadow: 0 2px 4px rgba(26,23,36,0.04), 0 16px 34px -14px rgba(109, 78, 204, 0.4); }
.nav-verdict:active { transform: translateY(0) scale(0.98); }
.nvd-ico { display: inline-flex; width: 24px; height: 24px; align-items: center; justify-content: center; border-radius: 50%; background: var(--violet-soft); color: var(--violet-deep); }
.nvd-ico svg { width: 14px; height: 14px; }
.nvd-arrow { font-size: 12px; opacity: 0.6; transition: transform 160ms cubic-bezier(0.16,1,0.3,1); }
.nav-verdict:hover .nvd-arrow { transform: translate(2px, -2px); opacity: 1; }
/* verdict stamp micro-interaction: the check in the report icon "stamps" on hover */
.nav-verdict:hover .nvd-ico svg path:last-child { animation: vd-stamp 420ms cubic-bezier(0.34, 1.56, 0.64, 1); transform-origin: 12px 15px; }
@keyframes vd-stamp { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.25); opacity: 1; } 100% { transform: scale(1); } }
.nav-verdict--mobile { display: none; }

/* ---------- nav dropdowns (grouped-dropdown pattern from lucid-ai.app, v1 tokens) ---------- */
nav.links { align-items: center; }
.nav-group { position: relative; display: inline-block; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; cursor: pointer; padding: 0;
  font: inherit; font-size: 15px; font-weight: 500; color: var(--muted);
  transition: color 140ms ease-out;
}
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] { color: var(--ink); }
.nav-caret {
  width: 10px; height: 10px; opacity: 0.65;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-trigger[aria-expanded="true"] .nav-caret { transform: rotate(180deg); opacity: 1; }

.nav-panel {
  position: absolute; top: calc(100% + 14px); left: 50%;
  min-width: 320px; padding: 8px;
  background: var(--card); border: 1px solid rgba(109, 78, 204, 0.10);
  border-radius: 18px;
  box-shadow: 0 28px 70px -24px rgba(109, 78, 204, 0.28), 0 4px 16px rgba(26, 23, 36, 0.05);
  opacity: 0; visibility: hidden; transform: translate(-50%, -6px);
  transition: opacity 180ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s linear 180ms;
  z-index: 100;
}
.nav-panel[data-open="true"] {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
  transition: opacity 180ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s linear 0s;
}

nav.links .nav-item {
  display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start;
  padding: 10px 12px; border-radius: 12px; text-decoration: none; color: var(--ink);
  transition: background 140ms cubic-bezier(0.16, 1, 0.3, 1);
}
nav.links .nav-item:hover { background: var(--violet-soft); }
.nav-ico {
  width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--violet-soft); color: var(--violet-deep);
  border: 1px solid rgba(139, 124, 246, 0.28); flex-shrink: 0;
}
.nav-ico svg { width: 15px; height: 15px; }
/* signature hover micro-interactions on product dropdown icons */
.nav-item:hover .nav-ico { background: var(--violet); color: #fff; border-color: transparent; }
.nav-item:hover .nav-ico--voice svg { animation: nav-ring 620ms cubic-bezier(0.36, 0.07, 0.19, 0.97) both; transform-origin: 50% 30%; }
@keyframes nav-ring {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(-16deg); } 20% { transform: rotate(14deg); }
  30% { transform: rotate(-12deg); } 40% { transform: rotate(10deg); }
  50% { transform: rotate(-8deg); } 60% { transform: rotate(6deg); }
  70% { transform: rotate(-4deg); } 80% { transform: rotate(2deg); }
}
.nav-item:hover .nav-ico--voice { box-shadow: 0 0 0 0 rgba(139,124,246,0.5); animation: nav-ringpulse 620ms ease-out both; }
@keyframes nav-ringpulse { 0% { box-shadow: 0 0 0 0 rgba(139,124,246,0.45); } 100% { box-shadow: 0 0 0 9px rgba(139,124,246,0); } }
.nav-item:hover .nav-ico--chat svg { animation: nav-pop 500ms cubic-bezier(0.34,1.56,0.64,1) both; transform-origin: 50% 70%; }
@keyframes nav-pop { 0% { transform: scale(1); } 40% { transform: scale(1.18) translateY(-1px); } 100% { transform: scale(1); } }
.nav-item:hover .nav-ico--auto svg { animation: nav-bolt 500ms ease-out both; }
@keyframes nav-bolt { 0% { transform: translateY(0); opacity: 1; } 30% { transform: translateY(-2px) scale(1.1); } 55% { opacity: 0.55; } 100% { transform: translateY(0); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .nav-item:hover .nav-ico svg, .nav-item:hover .nav-ico--voice { animation: none; }
}
.nav-item-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.nav-item-head { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: -0.005em; }
.nav-item-sub { font-size: 12px; font-weight: 500; color: var(--faint); line-height: 1.4; }
nav.links .nav-item.is-current .nav-item-head { color: var(--violet-deep); }
nav.links > a.is-current { color: var(--ink); }
nav.links > a.is-current::after { content: ''; display: block; height: 2px; border-radius: 2px; background: var(--violet); margin-top: 3px; }

/* ---------- mobile burger + drawer ---------- */
.nav-burger {
  display: none; width: 40px; height: 40px; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer; color: var(--ink); padding: 0;
}
.nav-burger svg { width: 22px; height: 22px; }
@media (max-width: 960px) {
  .nav-burger { display: inline-flex; }
  nav.links {
    display: none;
    position: absolute; top: 100%; left: 16px; right: 16px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--card); border: 1px solid rgba(109, 78, 204, 0.10);
    border-radius: 18px; padding: 12px;
    box-shadow: 0 28px 70px -24px rgba(109, 78, 204, 0.28), 0 4px 16px rgba(26, 23, 36, 0.06);
    z-index: 90;
  }
  nav.links[data-mobile-open="true"] { display: flex; }
  header .wrap { position: relative; }
  .nav-group { display: block; }
  .nav-trigger { width: 100%; justify-content: space-between; padding: 12px 14px; font-weight: 700; color: var(--ink); }
  .nav-panel {
    position: static; min-width: 0; transform: none; padding: 0 6px 8px;
    border: 0; box-shadow: none; border-radius: 0; background: none;
    display: none; opacity: 1; visibility: visible; transition: none;
  }
  .nav-panel[data-open="true"] { display: block; transform: none; }
  nav.links > a { padding: 12px 14px; font-weight: 700; color: var(--ink); }
  nav.links > a.is-current::after { display: none; }
  .nav-actions { display: none; }
  .nav-verdict--mobile { display: inline-flex; margin-left: auto; margin-right: 10px; padding: 7px 12px 7px 9px; font-size: 13px; }
  .nav-verdict--mobile .nvd-arrow { display: none; }
}

/* ---------- vertical switcher (voice-agent industry pills) ---------- */
.vswitch { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.vswitch a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
  text-decoration: none; color: var(--muted); background: var(--card);
  border: 1px solid rgba(109, 78, 204, 0.10);
  box-shadow: 0 1px 2px rgba(26, 23, 36, 0.03), 0 8px 20px -12px rgba(109, 78, 204, 0.16);
  transition: color 140ms ease-out, border-color 140ms ease-out;
}
.vswitch a:hover { color: var(--ink); border-color: rgba(109, 78, 204, 0.20); }
.vswitch a.is-active { color: #FDFDFF; background: var(--violet-deep); border-color: transparent; box-shadow: var(--shadow-sm); }

/* ---------- pain-bill receipt (real math, no invented metaphor) ---------- */
.painbill { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-top: 48px; }
.pb-receipt {
  background: var(--card); border-radius: var(--r-card); padding: 30px 32px;
  border: 1px solid rgba(109, 78, 204, 0.08);
  box-shadow: 0 1px 2px rgba(26, 23, 36, 0.04), 0 20px 48px -18px rgba(109, 78, 204, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-family: 'Satoshi', system-ui, sans-serif;
}
.pb-head { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 18px; }
.pb-row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px dashed rgba(109, 78, 204, 0.16); font-size: 14.5px; color: var(--muted); }
.pb-row:first-of-type { border-top: none; }
.pb-row span:last-child { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.pb-row.sum { border-top: 1px solid rgba(109, 78, 204, 0.20); margin-top: 4px; font-weight: 700; color: var(--ink); }
.pb-row.year { border-top: none; padding-top: 2px; }
.pb-row.year span:last-child { color: var(--violet-deep); font-size: 19px; }
.pb-note { display: block; margin-top: 16px; font-size: 12px; color: var(--faint); line-height: 1.5; }
.pb-facts { display: flex; flex-direction: column; gap: 26px; }
.pb-fact-stat { display: block; font-size: 40px; font-weight: 900; letter-spacing: -0.02em; color: var(--violet-deep); line-height: 1; margin-bottom: 8px; }
.pb-fact p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
@media (max-width: 960px) { .painbill { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- micro-quality ---------- */
html { scroll-behavior: smooth; }
::selection { background: rgba(139, 124, 246, 0.28); }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 4px; }

/* ---------- writing teaser (homepage) ---------- */
.wgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.wcard {
  display: flex; flex-direction: column; gap: 12px;
  padding: 26px 0 0; border-top: 2px solid var(--ink);
  text-decoration: none; color: var(--ink);
}
.wcard h3 { font-size: 17.5px; font-weight: 900; letter-spacing: -0.015em; line-height: 1.3; transition: color 140ms ease-out; }
.wcard:hover h3 { color: var(--violet-deep); }
.wcard p { font-size: 14px; line-height: 1.6; color: var(--muted); }
.wcard .wc-meta { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; color: var(--muted); margin-top: auto; }
@media (max-width: 960px) { .wgrid { grid-template-columns: 1fr; } }

/* ---------- premium finish pass (recall-driven) ---------- */
.shipcard {
  border: 1px solid rgba(109, 78, 204, 0.08);
  box-shadow: 0 1px 2px rgba(26, 23, 36, 0.04), 0 14px 36px -14px rgba(109, 78, 204, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.shipcard:hover {
  border-color: rgba(109, 78, 204, 0.16);
  box-shadow: 0 2px 4px rgba(26, 23, 36, 0.04), 0 26px 56px -18px rgba(109, 78, 204, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.ship-mini { height: 64px; margin-bottom: 20px; }
.ship-mini svg { width: 100%; max-width: 220px; height: 64px; color: var(--violet-deep); transition: transform 200ms cubic-bezier(0.16,1,0.3,1); transform-origin: left center; }
/* signature hover micro-interactions per product card */
.shipcard--voice:hover .ship-mini svg { animation: ship-ring 700ms cubic-bezier(0.36,0.07,0.19,0.97) both; transform-origin: 20px 32px; }
@keyframes ship-ring {
  0%, 100% { transform: rotate(0); }
  8% { transform: rotate(-9deg); } 18% { transform: rotate(8deg); }
  28% { transform: rotate(-7deg); } 38% { transform: rotate(6deg); }
  48% { transform: rotate(-4deg); } 58% { transform: rotate(3deg); }
  68% { transform: rotate(-2deg); } 78% { transform: rotate(1deg); }
}
.shipcard--chat:hover .ship-mini svg { animation: ship-pop 520ms cubic-bezier(0.34,1.56,0.64,1) both; transform-origin: center; }
@keyframes ship-pop { 0% { transform: scale(1); } 45% { transform: scale(1.06) translateY(-2px); } 100% { transform: scale(1); } }
.shipcard--auto:hover .ship-mini svg { animation: ship-flow 700ms ease-out both; }
@keyframes ship-flow { 0% { transform: translateX(0); } 40% { transform: translateX(4px); } 100% { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .shipcard:hover .ship-mini svg { animation: none; } }

.faq details {
  border: 1px solid rgba(109, 78, 204, 0.08);
  box-shadow: 0 1px 2px rgba(26, 23, 36, 0.04), 0 10px 28px -14px rgba(109, 78, 204, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 160ms ease-out;
}
.faq details[open] { border-color: rgba(109, 78, 204, 0.18); }
.faq summary { position: relative; padding-right: 36px; }
.faq summary::after {
  content: ''; position: absolute; right: 6px; top: 50%;
  width: 8px; height: 8px; margin-top: -7px;
  border-right: 2px solid var(--violet-deep); border-bottom: 2px solid var(--violet-deep);
  transform: rotate(45deg);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), margin-top 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: -2px; }

.chips .chip { display: inline-flex; align-items: center; gap: 8px; }
.chips .chip svg { width: 14px; height: 14px; color: var(--violet-deep); flex-shrink: 0; }
.trustline svg { width: 13px; height: 13px; color: var(--violet-deep); margin-right: 5px; vertical-align: -2px; }
.trustline > span:not(.tsep) { display: inline-flex; align-items: center; }
.bf-bottom { color: var(--muted); }
.nav-item-sub { color: var(--muted); }

/* ---------- hero ---------- */
.hero { padding: 72px 0 110px; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
h1 { font-size: clamp(48px, 5.6vw, 78px); font-weight: 900; line-height: 1.02; letter-spacing: -0.03em; }
h1 .vio { color: var(--violet-deep); }
.hero p.sub { margin-top: 24px; font-size: 19px; line-height: 1.6; color: var(--muted); max-width: 46ch; }
.cta-row { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-block; text-decoration: none; font-weight: 700; font-size: 16px; padding: 15px 28px; border-radius: var(--r-btn); transition: transform 140ms ease-out, background 140ms ease-out, opacity 140ms ease-out; }
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--violet-deep); outline-offset: 3px; }
.btn.primary { background: var(--violet); color: #FDFDFF; box-shadow: var(--shadow-sm); }
.btn.primary:hover { background: var(--violet-deep); }
.btn.ghost { background: var(--violet-soft); color: var(--violet-deep); }
.btn.ghost:hover { opacity: 0.85; }

/* hero card stack */
.stack { position: relative; min-height: 510px; }
.card { background: var(--card); border-radius: var(--r-card); box-shadow: var(--shadow-lg); }
.stack .card { transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1); will-change: transform; }
.chatcard { position: absolute; top: 0; right: 0; width: 320px; overflow: hidden; z-index: 1; }
.chatcard .head { background: linear-gradient(135deg, var(--violet), var(--violet-deep)); padding: 18px 20px; color: #FDFDFF; }
.chatcard .head .t { font-weight: 700; font-size: 16px; }
.chatcard .head .s { font-size: 12.5px; opacity: 0.92; margin-top: 3px; display: flex; align-items: center; gap: 6px; }
.chatcard .head .s::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #7CE3A4; }
.chatcard .body { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.bub { max-width: 85%; padding: 11px 14px; border-radius: 16px; font-size: 14px; line-height: 1.45; }
.bub.bot { background: #F3F1FA; color: var(--ink); border-bottom-left-radius: 6px; align-self: flex-start; }
.bub.user { background: var(--violet); color: #FDFDFF; border-bottom-right-radius: 6px; align-self: flex-end; }
.reportcard { position: absolute; bottom: 0; left: 30px; width: 300px; padding: 22px; z-index: 3; }
.reportcard .tag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; color: var(--violet-deep); }
.reportcard h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin-top: 8px; }
.reportcard .meta { margin-top: 6px; font-size: 13.5px; color: var(--muted); }
.reportcard .bar { margin-top: 16px; height: 8px; border-radius: 999px; background: #F0EEF8; overflow: hidden; }
.reportcard .bar i { display: block; height: 100%; width: 68%; border-radius: 999px; background: linear-gradient(90deg, var(--violet), var(--violet-deep)); }
.reportcard .barlabel { margin-top: 8px; font-size: 12.5px; color: var(--faint); }
.voicecard { position: absolute; top: 64px; left: -14px; width: 196px; padding: 18px 20px; box-shadow: var(--shadow-md); z-index: 2; }
.voicecard .t { font-size: 14px; font-weight: 700; }
.voicecard .wave { margin-top: 12px; display: flex; align-items: center; gap: 3px; height: 30px; }
.voicecard .wave i { width: 4px; border-radius: 2px; background: var(--violet); opacity: 0.85; animation: wv 1.3s ease-in-out infinite; }
@keyframes wv { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }
.voicecard button {
  margin-top: 12px; border: 0; cursor: pointer; font: inherit; font-size: 13px; font-weight: 700;
  color: var(--violet-deep); background: var(--violet-soft); padding: 8px 14px; border-radius: var(--r-chip);
  transition: transform 140ms ease-out;
}
.voicecard button:active { transform: scale(0.97); }
.voicecard button:focus-visible { outline: 2px solid var(--violet-deep); outline-offset: 2px; }

/* ---------- sections ---------- */
section { padding: 90px 0; }
.sec-head { max-width: 60ch; }
.sec-head h2 { font-size: clamp(32px, 3.6vw, 46px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.08; }
.sec-head p { margin-top: 16px; font-size: 17px; line-height: 1.6; color: var(--muted); }

/* products bento */
.bento { margin-top: 48px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; }
.bento .cell { background: var(--card); border-radius: var(--r-card); box-shadow: var(--shadow-md); padding: 34px; transition: transform 180ms ease-out; }
.bento .cell:hover { transform: translateY(-3px); }
.cell .k { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--violet-deep); }
.cell h3 { margin-top: 10px; font-size: 24px; font-weight: 700; letter-spacing: -0.015em; }
.cell p { margin-top: 10px; font-size: 15.5px; line-height: 1.6; color: var(--muted); }
.cell a.more { display: inline-block; margin-top: 18px; font-size: 14.5px; font-weight: 700; color: var(--violet-deep); text-decoration: none; }
.cell a.more:hover { text-decoration: underline; }
.bento .flagship { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(160deg, #FDFDFF 55%, #F0EDFC); }
.flagship h3 { font-size: 32px; }
.flagship ul { margin: 24px 0 0 0; padding: 0; list-style: none; }
.flagship li { font-size: 15px; color: var(--muted); padding: 10px 0; border-top: 1px solid rgba(26, 23, 36, 0.07); }
.flagship li::before { content: '\2713\2002'; color: var(--violet-deep); font-weight: 700; }
.flagship .doc { margin-top: 26px; background: #FBFAFE; border-radius: 16px; padding: 20px 22px; box-shadow: var(--shadow-sm); }
.flagship .doc .l1 { font-weight: 700; font-size: 15px; }
.flagship .doc .l2 { margin-top: 4px; font-size: 13px; color: var(--faint); }
.duo { display: grid; gap: 22px; }

/* method */
.steps { margin-top: 48px; display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 90px 260px 1fr; gap: 28px; align-items: baseline; padding: 30px 6px; border-top: 1px solid rgba(26, 23, 36, 0.08); }
.step:last-child { border-bottom: 1px solid rgba(26, 23, 36, 0.08); }
.step .n { font-size: 40px; font-weight: 900; letter-spacing: -0.02em; color: var(--violet); }
.step h3 { font-size: 21px; font-weight: 700; }
.step p { font-size: 15.5px; line-height: 1.6; color: var(--muted); max-width: 56ch; }

/* proof */
.proofrow { margin-top: 44px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.proof { background: var(--card); border-radius: var(--r-card); box-shadow: var(--shadow-md); padding: 30px; }
.proof .t { font-weight: 700; font-size: 18px; }
.proof p { margin-top: 8px; font-size: 15px; line-height: 1.55; color: var(--muted); }
.proof audio { margin-top: 16px; width: 100%; }
.proof a { color: var(--violet-deep); font-weight: 700; text-decoration: none; font-size: 14.5px; display: inline-block; margin-top: 14px; }
.proof a:hover { text-decoration: underline; }

/* closing cta */
.closer { padding: 40px 0 110px; }
.closer .inner {
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  border-radius: 28px; padding: 72px 56px; color: #FDFDFF; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.closer h2 { font-size: clamp(30px, 3.4vw, 44px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; max-width: 18ch; }
.closer .btn { background: #FDFDFF; color: var(--violet-deep); }
.closer .btn:hover { opacity: 0.92; }

/* ---------- big footer ---------- */
.bigfoot { padding: 84px 0 44px; border-top: 1px solid rgba(109, 78, 204, 0.08); }
.bf-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.bf-brand .logo { margin-bottom: 18px; }
.bf-tag { font-size: 14px; line-height: 1.6; color: var(--muted); max-width: 30ch; margin-bottom: 18px; }
.bf-mail { display: inline-block; font-size: 14px; font-weight: 700; color: var(--violet-deep); text-decoration: none; margin-bottom: 16px; }
.bf-mail:hover { text-decoration: underline; }
.bf-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--muted);
}
.bf-dot { width: 8px; height: 8px; border-radius: 50%; background: #34C759; animation: bfpulse 2.4s ease-out infinite; }
@keyframes bfpulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(52, 199, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
}
.bf-col { display: flex; flex-direction: column; gap: 12px; }
.bf-col h4 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
.bf-col a { font-size: 14.5px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 140ms ease-out; }
.bf-col a:hover { color: var(--ink); }
.bf-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(109, 78, 204, 0.08);
  font-size: 13.5px; color: var(--muted);
}
.bf-social a { color: var(--muted); text-decoration: none; margin-left: 22px; }
.bf-social a:hover { color: var(--ink); }
@media (max-width: 960px) {
  .bf-grid { grid-template-columns: 1fr 1fr; }
  .bf-bottom { flex-direction: column; gap: 14px; }
}

/* ---------- scroll reveal (class applied by nav.js only) ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.rv.in { opacity: 1; transform: none; }

/* ---------- micro-detail layer ---------- */
.eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--violet-deep); margin-bottom: 18px;
}
.eyebrow.center { text-align: center; }
.hairline { border-top: 1px solid rgba(109, 78, 204, 0.07); }
.trustline { display: flex; align-items: center; gap: 14px; margin-top: 26px; font-size: 13.5px; font-weight: 500; color: var(--faint); }
.trustline .tsep { width: 4px; height: 4px; border-radius: 50%; background: rgba(109, 78, 204, 0.35); }
b.km { font-weight: 700; color: var(--violet-deep); }

/* ---------- stat band ---------- */
.statband { padding: 34px 0; border-top: 1px solid rgba(109, 78, 204, 0.07); border-bottom: 1px solid rgba(109, 78, 204, 0.07); }
.statgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { display: flex; align-items: baseline; gap: 14px; }
.st-n { font-size: 34px; font-weight: 900; letter-spacing: -0.02em; color: var(--ink); }
.st-l { font-size: 13.5px; line-height: 1.45; color: var(--muted); max-width: 17ch; }
@media (max-width: 960px) { .statgrid { grid-template-columns: 1fr 1fr; } }

/* ---------- ship strip (3-up product index) ---------- */
.shipgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.shipcard {
  display: block; background: var(--card); border-radius: var(--r-card);
  padding: 30px 28px; text-decoration: none; color: var(--ink);
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.shipcard:hover { transform: translateY(-4px); }
.shipcard h3 { font-size: 19px; font-weight: 900; letter-spacing: -0.015em; margin-bottom: 10px; }
.shipcard p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin-bottom: 18px; }
.ship-more { font-size: 14px; font-weight: 700; color: var(--violet-deep); }
.shipcard:hover .ship-more::after { transform: translateX(3px); }
.ship-more::after { content: '\2192'; display: inline-block; margin-left: 6px; transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1); }
.pm-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--violet); }
.pm-line { flex: 0 0 26px; height: 2px; border-radius: 2px; background: rgba(139, 124, 246, 0.35); }
.cm-bub { display: inline-block; width: 64px; height: 18px; border-radius: 9px 9px 9px 3px; background: var(--violet-soft); }
.cm-bub.r { width: 44px; border-radius: 9px 9px 3px 9px; background: var(--violet); opacity: 0.85; align-self: flex-end; margin-top: 14px; }
.wave-mini i { display: inline-block; width: 4px; border-radius: 2px; background: var(--violet); margin-right: 5px; animation: wm 1.1s ease-in-out infinite alternate; }
@keyframes wm { from { transform: scaleY(0.55); } to { transform: scaleY(1); } }

/* ---------- voice moment (centered) ---------- */
.s-voicemoment { text-align: center; }
.vm-title { font-size: clamp(30px, 3.6vw, 46px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.08; max-width: 22ch; margin: 0 auto; }
.s-voicemoment .callviz { max-width: 620px; margin: 10px auto 0; }
.vm-foot { font-size: 15.5px; line-height: 1.6; color: var(--muted); max-width: 52ch; margin: 6px auto 0; }

/* ---------- gate band (typographic, no boxes) ---------- */
.gband { display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr; gap: 0; margin-top: 48px; align-items: start; }
.gb { padding: 0 36px; }
.gb:first-child { padding-left: 0; }
.gb:last-child { padding-right: 0; }
.gb-n { display: block; font-size: 52px; font-weight: 900; letter-spacing: -0.03em; color: rgba(109, 78, 204, 0.18); line-height: 1; margin-bottom: 16px; }
.gb h3 { font-size: 20px; font-weight: 900; letter-spacing: -0.015em; margin-bottom: 10px; }
.gb p { font-size: 14.5px; line-height: 1.62; color: var(--muted); }
.gb-sep { width: 1px; background: rgba(109, 78, 204, 0.10); align-self: stretch; }
@media (max-width: 960px) {
  .gband { grid-template-columns: 1fr; }
  .gb { padding: 0 0 28px; }
  .gb-sep { display: none; }
}

@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .stack { min-height: 520px; max-width: 480px; }
  .bento { grid-template-columns: 1fr; }
  .bento .flagship { grid-row: auto; }
  .step { grid-template-columns: 60px 1fr; }
  .step p { grid-column: 2; }
  .proofrow { grid-template-columns: 1fr; }
  nav.links { display: none; }
}

/* ---------- inner pages ---------- */
.page-hero { padding: 64px 0 60px; }
.page-hero h1 { font-size: clamp(40px, 4.6vw, 64px); }
.page-hero p.sub { margin-top: 18px; font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 56ch; }
.crumb { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--violet-deep); margin-bottom: 18px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; }
.panel { background: var(--card); border-radius: var(--r-card); box-shadow: var(--shadow-md); padding: 32px; }
.panel h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; }
.panel p { margin-top: 10px; font-size: 15.5px; line-height: 1.6; color: var(--muted); }
.panel .k { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--violet-deep); margin-bottom: 10px; }
.panel ul { margin: 14px 0 0; padding: 0; list-style: none; }
.panel li { font-size: 15px; color: var(--muted); padding: 9px 0; border-top: 1px solid rgba(26, 23, 36, 0.07); }
.panel li::before { content: '\2713\2002'; color: var(--violet-deep); font-weight: 700; }

.pricegrid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; }
.price { background: var(--card); border-radius: var(--r-card); box-shadow: var(--shadow-md); padding: 36px; }
.price.hot { background: linear-gradient(160deg, #FDFDFF 50%, #F0EDFC); box-shadow: var(--shadow-lg); }
.price .name { font-weight: 700; font-size: 19px; }
.price .amount { margin-top: 14px; font-size: 42px; font-weight: 900; letter-spacing: -0.02em; }
.price .amount small { font-size: 16px; font-weight: 500; color: var(--faint); letter-spacing: 0; }
.price p.for { margin-top: 8px; font-size: 15px; color: var(--muted); line-height: 1.55; }

.faq { margin-top: 44px; }
.faq details { background: var(--card); border-radius: 16px; padding: 20px 24px; margin-bottom: 12px; }
.faq summary { font-weight: 700; font-size: 16px; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--muted); }

.bigquote { margin-top: 44px; font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; max-width: 26ch; }
.bigquote .vio { color: var(--violet-deep); }

nav.links a.active { color: var(--ink); }
nav.links a.active::after { content: ''; display: block; height: 2px; border-radius: 2px; background: var(--violet); margin-top: 3px; }

@media (max-width: 960px) {
  .split, .pricegrid { grid-template-columns: 1fr; }
}

/* logo loop — 1:1 port of reactbits LogoLoop (logoHeight 48, gap 40, speed 120px/s, fadeOut, scaleOnHover, pauseOnHover) */
.logoloop { --ll-gap: 104px; --ll-h: 40px; padding: 76px 0; overflow: hidden; }
.logoloop .ll-label {
  text-align: center; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--ink); margin-bottom: 38px;
}
.ll-track {
  display: flex; width: max-content; align-items: center;
  padding: 12px 0;
  animation: llslide 26s linear infinite;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 clamp(24px, 8%, 120px), #000 calc(100% - clamp(24px, 8%, 120px)), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 clamp(24px, 8%, 120px), #000 calc(100% - clamp(24px, 8%, 120px)), transparent);
}
.logoloop:hover .ll-track { animation-play-state: paused; }
.ll-item { display: inline-flex; align-items: center; margin-right: var(--ll-gap); }
.ll-item img {
  display: block; height: var(--ll-h); width: auto;
  transform-origin: center center;
  transition: transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ll-item:hover img { transform: scale(1.14); }
@keyframes llslide { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .ll-track { animation: none; }
  .cv-ring { display: none; }
}

/* Call the live demo — real tel: anchor inside the call card */
.callnow { display: flex; align-items: center; gap: 12px; margin-top: 12px; padding: 11px 13px; border-radius: 14px;
  background: linear-gradient(180deg, #F3F0FF, #EAE5FB); border: 1px solid rgba(109, 78, 204, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 22px -14px rgba(109, 78, 204, 0.5);
  text-decoration: none; color: inherit; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.callnow:hover { transform: translateY(-2px); border-color: rgba(109, 78, 204, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 16px 30px -14px rgba(109, 78, 204, 0.6); }
.callnow-ic { flex: none; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--violet); color: #fff; box-shadow: 0 6px 16px -6px rgba(109, 78, 204, 0.85); }
.callnow-ic svg { width: 18px; height: 18px; animation: cn-ring 2.6s ease-in-out infinite; transform-origin: 50% 60%; }
.callnow-tx { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.callnow-lbl { font-size: 11.5px; font-weight: 600; letter-spacing: 0.01em; color: var(--violet-deep); }
.callnow-num { font-size: 16px; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: 0.01em; }
.callnow-live { margin-left: auto; flex: none; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: #0f9d58; }
.callnow-live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #12b76a; box-shadow: 0 0 0 0 rgba(18, 183, 106, 0.6); animation: cn-pulse 1.8s ease-out infinite; }
@keyframes cn-ring { 0%, 70%, 100% { transform: rotate(0); } 74% { transform: rotate(-11deg); } 78% { transform: rotate(11deg); } 82% { transform: rotate(-9deg); } 86% { transform: rotate(7deg); } 90% { transform: rotate(0); } }
@keyframes cn-pulse { 0% { box-shadow: 0 0 0 0 rgba(18, 183, 106, 0.55); } 70% { box-shadow: 0 0 0 7px rgba(18, 183, 106, 0); } 100% { box-shadow: 0 0 0 0 rgba(18, 183, 106, 0); } }
@media (prefers-reduced-motion: reduce) { .callnow-ic svg, .callnow-live::before { animation: none; } }

