:root {
  --teal: #5b3fd9;
  --teal-dark: #0a2e8c;
  --teal-soft: #f4f2ff;
  --brand-grad: linear-gradient(90deg, #0a2e8c, #5b3fd9 55%, #7d1cbb);
  --brand-grad-hover: linear-gradient(90deg, #07246e, #4c33bd 55%, #6a189e);
  --ink: #14172b;
  --muted: #5b6472;
  --line: #e6eaef;
  --bg: #f7f6ff;
  --white: #fff;
  --amber: #f59e0b;
  --good: #059669;
  --bad: #dc2626;
  --shadow: 0 12px 40px rgba(10, 46, 140, .08);
  --radius: 16px;
  --font: "DM Sans", "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
a { color: var(--teal); text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1320px, calc(100% - 32px)); margin-inline: auto; }

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
}
.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: rgba(10, 46, 140, .08);
  pointer-events: none;
  overflow: hidden;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--brand-grad);
  will-change: transform;
}

.nav {
  position: relative;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 rgba(10, 46, 140, .06);
  transition: box-shadow .2s, background .2s;
}
.nav::after {
  display: none;
}
.nav-bar {
  background: linear-gradient(90deg, #0a2e8c, #5b3fd9 55%, #7d1cbb);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}
.nav-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-bar .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  min-height: 52px;
  width: 100%;
  flex-wrap: nowrap;
}
.nav-bar .nav-links a,
.nav-bar .nav-drop-toggle {
  color: rgba(255, 255, 255, .88);
  background: transparent;
  box-shadow: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: background .15s, color .15s, box-shadow .15s;
}
.nav-bar .nav-links a:hover,
.nav-bar .nav-drop:hover .nav-drop-toggle,
.nav-bar .nav-drop:focus-within .nav-drop-toggle,
.nav-bar .nav-drop.is-open .nav-drop-toggle {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  box-shadow: none;
}
.nav-bar .nav-links a.is-active,
.nav-bar .nav-drop.is-active .nav-drop-toggle {
  color: var(--teal-dark);
  background: #fff;
  box-shadow: 0 6px 16px rgba(8, 12, 28, .18);
}
.nav-bar .nav-drop-menu a {
  color: var(--muted);
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 12px;
}
.nav-bar .nav-drop-menu a:hover,
.nav-bar .nav-drop-menu a.is-active {
  color: var(--teal-dark);
  background: #f4f2ff;
  box-shadow: none;
}
.site-head.is-scrolled .nav {
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 30px rgba(10, 46, 140, .08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 18px;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  min-width: 0;
  flex: 0 1 auto;
}

.nav .brand-mark {
  width: 200px;
  height: auto;
  max-width: min(200px, 42vw);
  overflow: hidden;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-mark.has-logo {
  /* background: #fff;
  box-shadow: 0 0 0 1px var(--line), 0 8px 18px rgba(91, 63, 217, .12);
  padding: 4px;
  overflow: hidden; */
}
.brand-mark.has-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.nav .brand-mark.has-logo img {
  object-position: left center;
}
.footer .brand-mark.has-logo {
  background: #fff;
  width: 250px;
  padding: 10px;
  border-radius: 10px;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-copy strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #f7f6ff;
  border: 1px solid #e8eef0;
  border-radius: 999px;
}
.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--teal-dark);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .06);
}
.nav-links-extra { display: none; }
.nav-drop {
  position: relative;
}
.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  font-family: inherit;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.nav-drop-toggle svg {
  width: 12px;
  height: 12px;
  flex: none;
  transition: transform .18s;
}
.nav-drop:hover .nav-drop-toggle,
.nav-drop:focus-within .nav-drop-toggle,
.nav-drop.is-active .nav-drop-toggle,
.nav-drop.is-open .nav-drop-toggle {
  color: var(--teal-dark);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .06);
}
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 12px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 80;
  flex-direction: column;
  gap: 2px;
}
.nav-drop-menu::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: -1;
}
.nav-drop.is-end .nav-drop-menu {
  left: auto;
  right: 0;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.is-open .nav-drop-menu {
  display: flex;
}
.nav-drop.is-open .nav-drop-toggle svg,
.nav-drop:hover .nav-drop-toggle svg { transform: rotate(180deg); }
.nav-drop-menu a {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  margin: 0 8px;
  white-space: nowrap;
}
.nav-drop-menu a:first-of-type { margin-top: 8px; }
.nav-drop-menu a:last-of-type { margin-bottom: 8px; }
@media (max-width: 1480px) {
  .nav-bar .nav-links a,
  .nav-bar .nav-drop-toggle { padding: 7px 10px; font-size: 12.5px; }
}
@media (max-width: 1200px) {
  .nav-bar .nav-links a,
  .nav-bar .nav-drop-toggle { padding: 7px 9px; font-size: 12px; }
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
  min-width: 0;
  flex-wrap: nowrap;
}
.nav-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
}
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  padding: 5px 14px 5px 5px;
  border: 1px solid #ece8ff;
  border-radius: 999px;
  background: #f7f6ff;
  flex: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.nav-call:hover {
  border-color: #c4b8ff;
  background: #fff;
  box-shadow: 0 8px 18px rgba(91, 63, 217, .1);
  color: var(--ink);
}
.nav-call-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-grad);
  color: #fff;
  flex: none;
}
.nav-call-ico svg { width: 16px; height: 16px; }
.nav-call-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.nav-call-meta small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-call-meta strong {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--teal-dark);
  white-space: nowrap;
}
.btn-sm-nav { padding: 10px 16px; font-size: 13px; }
.user-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.user-chip-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0a2e8c, #7d1cbb);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}
.user-chip-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.user-chip-meta strong { font-size: 12.5px; color: var(--ink); }
.user-chip-meta small { font-size: 10.5px; color: var(--muted); text-transform: capitalize; }
.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .18s ease, opacity .18s ease;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 999px; padding: 11px 20px; font-weight: 700;
  cursor: pointer; font-family: inherit; font-size: 14px;
}
.btn-primary { background: var(--brand-grad); color: #fff; box-shadow: 0 10px 24px rgba(91, 63, 217, 0.22); }
.btn-primary:hover { background: var(--brand-grad-hover); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-ghost { background: var(--teal-soft); color: var(--teal-dark); }
.btn-outline { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-amber { background: var(--amber); color: #111; }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-light { background: #fff; color: var(--teal-dark); }
.btn-light:hover { background: #f7f6ff; }
.btn-ghost-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.2); }
.hero {
  position: relative;
  padding: 64px 0 40px;
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 90% -10%, #ede9fe 0%, transparent 55%),
    linear-gradient(#fff, #f8fafc);
}
.kicker {
  display: inline-flex; gap: 8px; align-items: center;
  background: var(--teal-soft); color: var(--teal-dark);
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
}
.hero h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.12; margin: 16px 0 12px; letter-spacing: -.03em; }
.hero p.lead { font-size: 18px; color: var(--muted); max-width: 640px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.pill { background: #fff; border: 1px solid var(--line); padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.stat b { display: block; font-size: 26px; }
.stat span { color: var(--muted); font-size: 13px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0 8px; }

.hero-home {
  padding: 28px 0 48px;
  background:
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(125, 28, 187, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 60% at 8% 90%, rgba(0, 123, 255, 0.16), transparent 50%),
    linear-gradient(160deg, #f7f6ff 0%, #eef2ff 42%, #faf8ff 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}
.hero-orb-a {
  width: 280px; height: 280px; right: 8%; top: -80px;
  background: radial-gradient(circle, rgba(91, 63, 217, .28), transparent 70%);
}
.hero-orb-b {
  width: 220px; height: 220px; left: -60px; bottom: 40px;
  background: radial-gradient(circle, rgba(245, 158, 11, .16), transparent 70%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 78%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e8e4ff;
  color: var(--teal-dark);
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .18);
}
.hero-home h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08;
  margin: 18px 0 14px;
  letter-spacing: -.035em;
  color: #0b1220;
}
.hero-home h1 span {
  color: var(--teal);
  background: linear-gradient(180deg, transparent 62%, #ede9fe 62%);
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 22px 0 18px;
  font-size: inherit;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
.hero-home h1.hero-title span {
  background: none;
  color: inherit;
}
.hero-home h1.hero-title .hero-title-top,
.hero-home h1.hero-title .hero-title-bottom {
  display: block;
  font-size: clamp(36px, 5.8vw, 64px);
  font-weight: 800;
  letter-spacing: -.048em;
  line-height: .98;
  text-transform: none;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-title-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 460px);
  margin: 14px 0 12px;
  color: var(--teal);
}
.hero-title-rule::before,
.hero-title-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #c4b8ff, #7d1cbb, #c4b8ff);
  opacity: .7;
}
.hero-title-rule i {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: var(--teal);
}
@media (max-width: 640px) {
  .hero-title-rule { width: 100%; margin: 12px 0 10px; }
  .hero-title-top,
  .hero-title-bottom { font-size: clamp(32px, 11vw, 46px); }
}
.hero-home .lead {
  font-size: 17.5px;
  line-height: 1.55;
  max-width: 540px;
  margin: 0;
}
.hero-lead {
  position: relative;
  max-width: 36em !important;
  padding: 4px 0 4px 20px;
  font-size: 18px !important;
  line-height: 1.7 !important;
  font-weight: 500;
  color: #4a5568;
}
.hero-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 99px;
  background: var(--brand-grad);
}
.hero-home .hero-actions { margin: 28px 0 0; }

.hero-visual {
  position: relative;
  min-height: 460px;
}
.hero-doc {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 22px;
  padding: 0;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, .12),
    0 2px 0 rgba(255,255,255,.8) inset;
  transform: rotate(1.2deg);
  overflow: hidden;
}
.hero-doc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: linear-gradient(90deg, #0a2e8c, #5b3fd9 55%, #7d1cbb);
  color: #f4f2ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.hero-doc-bar em {
  font-style: normal;
  background: rgba(255,255,255,.16);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: .04em;
  font-size: 10px;
}
.hero-doc-head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 18px 8px;
}
.hero-doc-ico {
  width: 40px; height: 40px; border-radius: 12px;
  background: #f4f2ff; color: var(--teal-dark);
  display: grid; place-items: center; flex: none;
}
.hero-doc-ico svg { width: 20px; height: 20px; }
.hero-doc-head strong { display: block; font-size: 15px; letter-spacing: -.02em; }
.hero-doc-head small { color: var(--muted); font-size: 12px; }
.hero-doc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 8px 18px 14px;
}
.hero-doc-metrics div {
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 10px 12px;
}
.hero-doc-metrics dt { margin: 0; font-size: 11px; color: var(--muted); font-weight: 600; }
.hero-doc-metrics dd { margin: 2px 0 0; font-size: 16px; font-weight: 800; letter-spacing: -.02em; }
.hero-doc-table {
  width: calc(100% - 36px);
  margin: 0 18px 14px;
  border-collapse: collapse;
  font-size: 12.5px;
}
.hero-doc-table th {
  text-align: left;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 6px 8px;
  border-bottom: 1px solid var(--line);
}
.hero-doc-table td { padding: 8px; border-bottom: 1px solid #f1f5f9; }
.hero-doc-table td:not(:first-child) { font-variant-numeric: tabular-nums; font-weight: 600; }
.hero-doc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px 16px;
  font-size: 12px;
  color: var(--muted);
}
.hero-doc-foot a { font-weight: 800; }
.hero-float {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .12);
  animation: hero-float 4.5s ease-in-out infinite;
}
.hero-float-dscr {
  right: -8px;
  top: 42px;
  padding: 10px 14px;
  display: grid;
  gap: 1px;
}
.hero-float-dscr .hf-label { font-size: 10px; font-weight: 800; letter-spacing: .08em; color: var(--muted); }
.hero-float-dscr strong { font-size: 22px; color: #059669; letter-spacing: -.03em; }
.hero-float-dscr small { font-size: 11px; color: #047857; font-weight: 700; }
.hero-float-preview {
  left: -18px;
  bottom: 88px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  animation-delay: -1.4s;
}
.hf-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .18);
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-float { animation: none; }
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.hero-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 22px 20px;
  background: #fff;
  border: 1px solid #ece8ff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(10, 46, 140, .06);
}
.hero-stat::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--brand-grad);
}
.hero-stat-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  background: #f4f2ff;
  color: var(--teal);
}
.hero-stat-ico svg { width: 18px; height: 18px; }
.hero-stat b {
  display: block;
  font-size: 26px;
  letter-spacing: -.04em;
  line-height: 1.1;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat span { color: var(--muted); font-size: 13.5px; line-height: 1.4; }

.stat-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  padding: 34px 12px 32px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(90deg, #0a2e8c, #5b3fd9 55%, #7d1cbb);
  box-shadow:
    0 18px 40px rgba(10, 46, 140, .22),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}
.stat-banner-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, transparent 18%, rgba(255, 255, 255, .14) 48%, transparent 62%),
    radial-gradient(ellipse 50% 80% at 8% 0%, rgba(167, 139, 250, .28), transparent 55%);
}
.stat-banner-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 8px 28px;
}
.stat-banner-item + .stat-banner-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .28), transparent);
}
.stat-banner-ico {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 4px;
}
.stat-banner-ico svg { width: 34px; height: 34px; }
.stat-banner-ico.is-badge {
  width: auto;
  height: auto;
  padding: 7px 11px;
  border: 1.5px solid rgba(255, 255, 255, .85);
  border-radius: 8px;
}
.stat-banner-ico.is-badge small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.15;
  text-align: center;
}
.stat-banner-item b {
  display: block;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: #fff;
}
.stat-banner-item span:last-child {
  max-width: 22ch;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, .86);
}

.hero-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}
.hero-path {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 18px 18px 20px;
  background: #fff;
  border: 1px solid #ece8ff;
  border-radius: 22px;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(10, 46, 140, .06);
  transition: transform .18s, border-color .18s, box-shadow .18s;
  overflow: hidden;
}
.hero-path:hover {
  transform: translateY(-3px);
  border-color: #c4b8ff;
  box-shadow: 0 18px 36px rgba(91, 63, 217, .14);
  color: var(--ink);
}
.hero-path-ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: none;
  color: #fff;
  box-shadow: 0 10px 20px rgba(91, 63, 217, .22);
}
.hero-path-ico svg { width: 22px; height: 22px; }
.hero-path-ico.teal { background: var(--brand-grad); }
.hero-path-ico.ink {
  background: linear-gradient(145deg, #0a2e8c, #334155);
  box-shadow: 0 10px 20px rgba(10, 46, 140, .22);
}
.hero-path-copy { min-width: 0; flex: 1; }
.hero-path strong { display: block; font-size: 16px; letter-spacing: -.02em; }
.hero-path small { display: block; color: var(--muted); font-size: 13px; line-height: 1.4; margin-top: 3px; }
.hero-path em {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-style: normal;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--teal-dark);
  white-space: nowrap;
  background: #f4f2ff;
  border-radius: 999px;
  padding: 8px 12px;
}
.hero-path em svg { width: 14px; height: 14px; }
.hero-path:hover em { background: var(--brand-grad); color: #fff; }
.hero-path.is-cma em { background: #eef2ff; color: var(--teal-dark); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 24px; box-shadow: var(--shadow);
}
.card h3 { margin: 8px 0; }
.muted { color: var(--muted); }
.section { padding: 72px 0; }
.section.alt { background: var(--bg); }
.section h2 { font-size: 32px; letter-spacing: -.02em; margin: 0 0 8px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.step-no {
  width: 36px; height: 36px; border-radius: 50%; background: var(--teal); color: #fff;
  display: grid; place-items: center; font-weight: 800;
}

.how {
  position: relative;
  padding: 80px 0 72px;
  background:
    radial-gradient(700px 280px at 80% 0%, rgba(237, 233, 254, .7), transparent 70%),
    #f7f6ff;
  overflow: hidden;
}
.how-head {
  max-width: 640px;
  margin-bottom: 36px;
}
.how-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e8e4ff;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.how-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  margin: 14px 0 10px;
  line-height: 1.15;
}
.how-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  max-width: 520px;
}
.how-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.how-track::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #c4b8ff, #5b3fd9, #c4b8ff);
  z-index: 0;
}
.how-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: stretch; }
.how-rail {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.how-rail span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0a2e8c, #7d1cbb);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 0 0 6px #f7f6ff, 0 8px 18px rgba(91, 63, 217, .28);
}
.how-card {
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 22px;
  padding: 22px 22px 18px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.how-step:hover .how-card {
  transform: translateY(-4px);
  border-color: #c4b8ff;
  box-shadow: 0 18px 40px rgba(91, 63, 217, .12);
}
.how-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #f4f2ff;
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.how-ico svg { width: 20px; height: 20px; }
.how-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -.02em;
}
.how-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.how-mini {
  list-style: none;
  margin: auto 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
}
.how-mini li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 12.5px;
  border-bottom: 1px solid #eef2f6;
}
.how-mini li:last-child { border-bottom: 0; }
.how-mini span { color: var(--muted); font-weight: 600; }
.how-mini strong { color: var(--ink); font-weight: 800; letter-spacing: -.02em; }
.how-mini li.ok strong { color: #047857; }
.how-foot {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}
.how-foot p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 600;
}

.formats {
  padding: 80px 0 72px;
  background: #fff;
}
.formats-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.formats-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4f2ff;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.formats-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  margin: 12px 0 8px;
  line-height: 1.15;
}
.formats-head p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
  font-size: 16px;
}
.formats-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.formats-filters button {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.formats-filters button:hover { border-color: #c4b8ff; color: var(--teal-dark); }
.formats-filters button.is-on {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.fmt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.fmt-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 20px;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.fmt-card:hover {
  transform: translateY(-3px);
  border-color: #c4b8ff;
  box-shadow: 0 16px 32px rgba(91, 63, 217, .12);
}
.fmt-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
}
.tone-teal { background: #f4f2ff; }
.tone-green { background: #dcfce7; }
.tone-amber { background: #fef3c7; }
.tone-sky { background: #e0f2fe; }
.tone-slate { background: #f1f5f9; }
.tone-rose { background: #ffe4e6; }
.tone-indigo { background: #e0e7ff; }
.fmt-copy strong {
  display: block;
  font-size: 14.5px;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.fmt-copy small {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.fmt-go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--teal-dark);
}
.fmt-go svg { width: 14px; height: 14px; }
.fmt-card[hidden] { display: none; }

.biz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.biz {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px;
  display: flex; gap: 10px; align-items: center; color: var(--ink);
}
.biz:hover { border-color: var(--teal); }

.engine {
  padding: 80px 0 72px;
  background:
    radial-gradient(640px 260px at 8% 0%, rgba(237, 233, 254, .55), transparent 70%),
    #f7f6ff;
}
.engine-head {
  max-width: 640px;
  margin-bottom: 32px;
}
.engine-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e8e4ff;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.engine-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  margin: 12px 0 8px;
  line-height: 1.15;
}
.engine-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
}
.engine-bento {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items: stretch;
}
.engine-side { display: grid; gap: 16px; }
.engine-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.engine-card {
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
  height: 100%;
}
.engine-card-lg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  min-height: 420px;
  background: #efeafc;
}
.engine-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
  pointer-events: none;
  filter: saturate(.85) brightness(.92);
}
.engine-card-lg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .9) 28%, rgba(247, 246, 255, .55) 58%, rgba(247, 246, 255, .82) 100%);
}
.engine-card-lg > *:not(.engine-card-bg) {
  position: relative;
  z-index: 2;
}
.engine-card-lg .engine-card-top {
  padding: 4px 2px 10px;
}
.engine-card-lg h3 {
  color: #0b1220;
}
.engine-card-lg p {
  color: #3f4a5a;
  font-weight: 500;
}
.engine-card-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.engine-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -.02em;
}
.engine-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.engine-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: none;
}
.engine-ico svg { width: 20px; height: 20px; }
.engine-ico.teal { background: #f4f2ff; color: var(--teal-dark); }
.engine-ico.amber { background: #fef3c7; color: #b45309; }
.engine-ico.sky { background: #e0f2fe; color: #0369a1; }
.engine-ico.green { background: #dcfce7; color: #047857; }
.engine-sync {
  margin-top: auto;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8e4ff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}
.engine-sync-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 4px;
  font-size: 14px;
  border-bottom: 1px dashed #e2e8f0;
}
.engine-sync-row span { color: var(--muted); font-weight: 600; }
.engine-sync-row strong { letter-spacing: -.02em; }
.engine-sync-ok {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #047857;
  font-size: 13px;
  font-weight: 700;
}
.engine-sync-ok svg { width: 16px; height: 16px; flex: none; }
.engine-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.engine-chips span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e8eef2;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}
.engine-chips span.on {
  background: #dcfce7;
  border-color: #bbf7d0;
  color: #047857;
}
.engine-checks {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.engine-checks li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 13px;
  color: #334155;
  font-weight: 600;
}
.engine-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #5b3fd9 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/8px no-repeat;
}

.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; }
.feat { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; }

.pricing {
  padding: 80px 0 72px;
  background: #fff;
}
.pricing-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}
.pricing-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4f2ff;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pricing-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  margin: 12px 0 8px;
  line-height: 1.15;
}
.pricing-head p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16.5px;
}
.price-switch {
  display: inline-flex;
  padding: 5px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  gap: 4px;
}
.price-switch button {
  border: 0;
  background: transparent;
  color: #475569;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
}
.price-switch button:hover { color: var(--ink); }
.price-switch button.is-on {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 4px 14px rgba(15, 23, 42, .08);
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 22px;
  padding: 28px 24px 22px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
}
.price-card.is-popular {
  border-color: #c4b8ff;
  background: linear-gradient(180deg, #f7f6ff 0%, #fff 42%);
  box-shadow: 0 18px 40px rgba(91, 63, 217, .14);
  transform: translateY(-6px);
}
.price-card-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: -.02em;
}
.price-card-blurb {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  min-height: 40px;
}
.price-card-amount {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 18px;
  line-height: 1;
}
.price-card-amount small {
  display: inline-block;
  margin-left: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}
.price-card-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}
.price-card-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14px;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}
.price-card-list li:last-child { border-bottom: 0; }
.price-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f4f2ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2e8c' stroke-width='2.8'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.pricing-note {
  margin: 22px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
}
.pricing-toggle { display: flex; gap: 8px; margin: 18px 0 22px; }
.plan { position: relative; }
.plan.popular { border: 2px solid var(--teal); }
.badge {
  position: absolute; top: -10px; right: 16px; background: var(--teal); color: #fff;
  font-size: 11px; padding: 4px 8px; border-radius: 999px; font-weight: 700;
}
.price { font-size: 36px; font-weight: 800; margin: 8px 0; }
.price small { font-size: 14px; color: var(--muted); font-weight: 600; }
.plan ul { padding-left: 18px; color: var(--muted); }
.faq details, .faq-item {
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 16px;
  padding: 0;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq summary, .faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 15.5px;
  letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker { display: none; }
.faq details p, .faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 62ch;
}
.faq-item[open] {
  border-color: #c4b8ff;
  box-shadow: 0 10px 24px rgba(91, 63, 217, .08);
}
.faq-ico {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f1f5f9;
  flex: none;
}
.faq-ico::before,
.faq-ico::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--teal-dark);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.faq-ico::before { width: 12px; height: 2px; }
.faq-ico::after { width: 2px; height: 12px; transition: opacity .15s, transform .15s; }
.faq-item[open] .faq-ico { background: #f4f2ff; }
.faq-item[open] .faq-ico::after { opacity: 0; transform: translate(-50%, -50%) scaleY(0); }

.faqs {
  padding: 80px 0 88px;
  background: #fff;
}
.faqs-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.faqs-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4f2ff;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.faqs-intro h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  margin: 14px 0 10px;
  line-height: 1.15;
}
.faqs-intro p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16.5px;
  max-width: 38ch;
}
.faqs-list .faq-item:last-child { margin-bottom: 0; }

.voices {
  padding: 80px 0 72px;
  background:
    radial-gradient(620px 240px at 90% 0%, rgba(237, 233, 254, .55), transparent 70%),
    #f7f6ff;
}
.voices-head {
  max-width: 620px;
  margin: 0 auto 36px;
  text-align: center;
}
.voices-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e8e4ff;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.voices-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  margin: 12px 0 8px;
  line-height: 1.15;
}
.voices-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.voice {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 22px;
  padding: 24px 22px 20px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
}
.voice.is-featured {
  border-color: #c4b8ff;
  background: linear-gradient(180deg, #f7f6ff 0%, #fff 48%);
  box-shadow: 0 18px 40px rgba(91, 63, 217, .12);
  transform: translateY(-6px);
}
.voice-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.voice-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #f4f2ff;
  color: var(--teal);
  display: grid;
  place-items: center;
}
.voice-mark svg { width: 18px; height: 18px; }
.voice-stars {
  color: #f59e0b;
  letter-spacing: 1px;
  font-size: 13px;
}
.voice p {
  margin: 0 0 20px;
  font-size: 16.5px;
  line-height: 1.55;
  letter-spacing: -.015em;
  color: #1e293b;
  flex: 1;
}
.voice-who {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #eef2f6;
}
.voice-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex: none;
}
.voice-av.teal { background: linear-gradient(145deg, #0a2e8c, #7d1cbb); }
.voice-av.sky { background: linear-gradient(145deg, #0369a1, #38bdf8); }
.voice-av.amber { background: linear-gradient(145deg, #b45309, #f59e0b); }
.voice-who strong { display: block; font-size: 14px; }
.voice-who small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.voice-who em {
  margin-left: auto;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: #f4f2ff;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.footer {
  background:
    radial-gradient(700px 240px at 10% 0%, rgba(91, 63, 217, .16), transparent 60%),
    #0d1440;
  color: #fff;
  padding: 28px 0 24px;
}
.footer a { color: #fff; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand-copy strong { color: #fff; }
.footer .brand-copy small { color: #fff; }
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  margin-bottom: 12px;
  border-radius: 20px;
  background: linear-gradient(90deg, #0a2e8c, #5b3fd9 55%, #7d1cbb);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
  color: #fff;
}
.footer-cta-copy { min-width: 0; }
.footer-cta h2 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1.2;
}
.footer-cta p {
  margin: 0;
  color: #fff;
  font-size: 14.5px;
  line-height: 1.45;
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: none;
}
.footer-cta .btn-light {
  background: #fff;
  color: #0a2e8c;
}
.footer-cta .btn-light:hover {
  background: #f4f2ff;
  color: #0a2e8c;
}
.footer-cta .btn-ghost-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.footer-cta .btn-ghost-light:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 32px;
  padding: 48px 0 8px;
}
.footer-brand p {
  margin: 0;
  max-width: 36ch;
  line-height: 1.55;
  color: #fff;
  font-size: 14.5px;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.footer-social a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 700;
}
.footer-social a:hover { background: rgba(255,255,255,.1); }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
}
.footer-col strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-col a { color: #fff; }
.footer-col a:hover { color: #fff; opacity: .85; }
.footer-contact span { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 13px;
  color: #fff;
}
.footer-bottom p { margin: 0; }
.foot-note { border-top: 1px solid #1e293b; margin-top: 28px; padding-top: 16px; font-size: 13px; }
.auth-wrap { min-height: calc(100vh - 72px); display: grid; grid-template-columns: 1.1fr .9fr; }
.auth-side {
  background: linear-gradient(160deg, #0a2e8c, #5b3fd9);
  color: #fff; padding: 64px 48px;
}
.auth-form { padding: 48px; display: flex; align-items: center; }

.gate {
  padding: 36px 0 56px;
  background:
    radial-gradient(640px 280px at 8% 0%, rgba(237, 233, 254, .7), transparent 70%),
    #f7f6ff;
}
.gate-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
  min-height: 560px;
}
.gate-side {
  position: relative;
  padding: 40px 36px;
  color: #f4f2ff;
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(125, 28, 187, .28), transparent 60%),
    linear-gradient(165deg, #0a2e8c 0%, #5b3fd9 55%, #7d1cbb 100%);
}
.gate-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.gate-side h1 {
  margin: 16px 0 10px;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -.03em;
  line-height: 1.15;
  color: #fff;
}
.gate-side p {
  margin: 0 0 22px;
  color: #ede9fe;
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 36ch;
}
.gate-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.gate-points li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  font-size: 14.5px;
}
.gate-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ecfdf8' stroke-width='2.8'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.gate-demo {
  margin-top: 28px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: 4px;
}
.gate-demo span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #c4b8ff;
}
.gate-demo code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 13px;
  color: #fff;
}
.gate-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 32px;
  background: #fff;
}
.gate-form {
  width: 100%;
  max-width: 400px;
  display: grid;
  gap: 14px;
}
.gate-form h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -.03em;
}
.gate-sub {
  margin: -6px 0 4px;
  color: var(--muted);
  font-size: 14.5px;
}
.gate-field { display: grid; gap: 6px; }
.gate-field label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}
.gate-field label span { color: var(--muted); font-weight: 600; }
.gate-input {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  padding: 0 6px 0 12px;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.gate-input:focus-within {
  background: #fff;
  border-color: #a78bfa;
  box-shadow: 0 0 0 4px rgba(91, 63, 217, .12);
}
.gate-ico {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  flex: none;
  display: grid;
  place-items: center;
}
.gate-ico svg { width: 18px; height: 18px; }
.gate-input input {
  border: 0;
  background: transparent;
  padding: 12px 8px;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}
.password-toggle {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 8px;
}
.password-toggle:hover { color: var(--ink); background: #eef2f6; }
.password-toggle svg { width: 18px; height: 18px; }
.password-toggle .eye-closed { display: none; }
.password-toggle.is-visible .eye-open { display: none; }
.password-toggle.is-visible .eye-closed { display: block; }
.gate-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  background: #f1f5f9;
  border-radius: 12px;
}
.gate-roles a {
  text-align: center;
  padding: 10px 8px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: #64748b;
}
.gate-roles a.is-on {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
}
.gate-foot {
  margin: 2px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.gate-form .alert { margin: 0; }
.gate-board.is-signup .gate-panel { align-items: flex-start; padding-top: 44px; padding-bottom: 44px; }
.gate-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 4px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
}
.gate-or::before,
.gate-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.gate-or span { white-space: nowrap; }
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #dadce0;
  border-radius: 12px;
  background: #fff;
  color: #3c4043;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(60, 64, 67, .12);
  transition: background .15s, box-shadow .15s, border-color .15s;
}
.btn-google:hover {
  background: #f8fafc;
  color: #202124;
  border-color: #c5c9ce;
  box-shadow: 0 2px 8px rgba(60, 64, 67, .12);
}
.btn-google svg { width: 18px; height: 18px; flex: none; }
.btn-google .g-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #5b3fd9;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  flex: none;
}
.btn-google .g-meta {
  display: grid;
  text-align: left;
  line-height: 1.2;
}
.btn-google .g-meta strong { font-size: 14px; font-weight: 700; color: #202124; }
.btn-google .g-meta small { font-size: 12px; font-weight: 500; color: #5f6368; }
.btn-google.is-account { justify-content: flex-start; padding-left: 12px; text-align: left; }
form.gate-form > .btn-google { justify-content: center; }
.gate-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.gate-forgot {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}
.gate-forgot:hover { color: var(--teal-dark); }
.gate-side code {
  font-size: 12.5px;
  color: #ede9fe;
}
.gate-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.45;
  cursor: pointer;
}
.gate-agree input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--teal, #5b3fd9);
}
.gate-agree a { color: var(--teal-dark, #7d1cbb); font-weight: 700; }
.gate-side .gate-signin {
  margin: 8px 0 0;
  color: #c4b8ff;
  font-size: 15px;
  font-weight: 600;
  max-width: none;
}
.gate-signin a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gate-signin a:hover { color: #ede9fe; }
.gate-feats {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.gate-feats li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}
.gate-feats .n {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  color: #7d1cbb;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
  flex: none;
}
.gate-feats h3 {
  margin: 0;
  padding-top: 8px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -.01em;
}
.gate-need {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.gate-need strong {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #f4f2ff;
}
.gate-need-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.gate-need-links a {
  color: #ede9fe;
  font-size: 13.5px;
  font-weight: 600;
}
.gate-need-links a:hover { color: #fff; }
.gate-board.is-signup .gate-side h1 { max-width: 14ch; }
.form { display: grid; gap: 12px; width: 100%; max-width: 420px; }
label { font-size: 13px; font-weight: 700; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px;
  font: inherit; background: #fff;
}
textarea { min-height: 90px; resize: vertical; }
.alert { padding: 12px 14px; border-radius: 12px; font-size: 14px; margin-bottom: 12px; }
.alert-error { background: #fef2f2; color: #991b1b; }
.alert-ok { background: #ecfdf5; color: #065f46; }
.dash-grid { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 72px); }
.side { background: #0b1220; color: #cbd5e1; padding: 22px 14px; }
.side a { display: block; color: #cbd5e1; padding: 10px 12px; border-radius: 10px; font-weight: 600; }
.side a.active, .side a:hover { background: #1e293b; color: #fff; }
.main { padding: 28px; background: var(--bg); }
.table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; }
.table th, .table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.table th { background: #f8fafc; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.tag { display: inline-block; padding: 3px 8px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.tag-draft { background: #f1f5f9; color: #475569; }
.tag-ready { background: #ecfeff; color: #0e7490; }
.tag-paid { background: #dcfce7; color: #166534; }
.wizard { display: grid; grid-template-columns: 260px 1fr; gap: 20px; }
.stepper { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px; }
.stepper li { list-style: none; display: flex; gap: 10px; align-items: flex-start; padding: 10px 6px; color: var(--muted); font-size: 13px; font-weight: 700; }
.stepper ol { margin: 0; padding: 0; }
.stepper li.done { color: var(--good); }
.stepper li.current { color: var(--teal); }
.dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid currentColor; display: grid; place-items: center; font-size: 11px; flex: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.span-2 { grid-column: span 2; }
.actions { display: flex; justify-content: space-between; gap: 10px; margin-top: 18px; }
.num { text-align: right; white-space: nowrap; }
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.float-wa-fab {
  position: relative;
  width: 58px;
  height: 58px;
  flex: none;
}
.float-wa-btn {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(160deg, #4ade80, #22c55e 40%, #16a34a);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(22, 163, 74, .4);
  transition: transform .18s, box-shadow .18s;
}
.float-wa-btn svg { width: 30px; height: 30px; }
.float-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2s ease-out infinite;
}
.float-wa-label {
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .18);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.float-wa:hover .float-wa-btn,
.float-wa:focus-visible .float-wa-btn {
  transform: scale(1.06);
  box-shadow: 0 14px 28px rgba(22, 163, 74, .5);
}
.float-wa:hover .float-wa-label,
.float-wa:focus-visible .float-wa-label {
  opacity: 1;
  transform: none;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.55); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .float-wa-pulse { animation: none; display: none; }
}
.help-hero {
  position: relative;
  padding: 64px 0 68px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(125, 28, 187, 0.10), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(10, 46, 140, 0.08), transparent 50%),
    linear-gradient(180deg, #f7f6ff 0%, #eef2ff 42%, #fff 100%);
}
.help-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.help-hero .container {
  position: relative;
  z-index: 1;
  max-width: 840px;
}
.help-hero .how-kicker {
  letter-spacing: .14em;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
}
.help-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -.04em;
  line-height: 1.08;
  color: #0b1220;
  max-width: 18ch;
}
.help-hero .lead {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
  max-width: 40em;
}
.help-hero .lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 99px;
  background: var(--brand-grad);
}
.help-hero .help-jumps { margin-top: 24px; }

.client-board {
  padding: 8px 0 80px;
  background: #fff;
}
.client-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.client-card {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 200px;
  padding: 24px 22px 22px;
  background: #fff;
  border: 1px solid #ece8ff;
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(10, 46, 140, .06);
  overflow: hidden;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.client-card:nth-child(4),
.client-card:nth-child(5) {
  grid-column: span 3;
}
.client-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-grad);
}
.client-card::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 63, 217, .1), transparent 70%);
  pointer-events: none;
}
.client-card:hover {
  transform: translateY(-4px);
  border-color: #c4b8ff;
  box-shadow: 0 20px 40px rgba(91, 63, 217, .12);
}
.client-index {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #c4b8ff;
}
.client-av {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--brand-grad);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 12px 22px rgba(91, 63, 217, .24);
}
.client-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  min-width: 0;
}
.client-copy em {
  align-self: flex-start;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: #f4f2ff;
  border: 1px solid #ece8ff;
  padding: 5px 10px;
  border-radius: 999px;
}
.client-copy strong {
  font-size: 18px;
  letter-spacing: -.03em;
  line-height: 1.3;
}
@media (max-width: 980px) {
  .client-list { grid-template-columns: 1fr 1fr; }
  .client-card,
  .client-card:nth-child(4),
  .client-card:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 640px) {
  .client-list { grid-template-columns: 1fr; }
  .client-card { min-height: 0; }
}

.proj-board {
  padding: 8px 0 80px;
  background: #fff;
}
.proj-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  position: relative;
}
.proj-list::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, #c4b8ff, #7d1cbb);
  border-radius: 99px;
}
.proj-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  padding: 18px 20px 18px 16px;
  background: #fff;
  border: 1px solid #ece8ff;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(10, 46, 140, .05);
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.proj-item:hover {
  transform: translateY(-2px);
  border-color: #c4b8ff;
  box-shadow: 0 16px 36px rgba(91, 63, 217, .1);
}
.proj-step {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid #c4b8ff;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  justify-self: center;
}
.proj-av {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-grad);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.proj-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.proj-copy strong {
  font-size: 16.5px;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.proj-copy em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
}
.proj-flag {
  flex: none;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.proj-etc {
  max-width: 880px;
  margin: 6px auto 0;
  text-align: right;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  color: var(--muted);
}
@media (max-width: 720px) {
  .proj-list::before { left: 22px; }
  .proj-item {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 16px 14px;
  }
  .proj-av,
  .proj-flag { grid-column: 2; }
  .proj-flag { justify-self: start; }
}

.svc-board { padding: 36px 0 72px; background: #fff; }
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 28px 26px 24px;
  background: #fff;
  border: 1px solid #ece8ff;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(10, 46, 140, .06);
  overflow: hidden;
}
.svc-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 63, 217, .08), transparent 70%);
  pointer-events: none;
}
.svc-num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #c4b8ff;
}
.svc-ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: #f4f2ff;
  color: var(--teal);
}
.svc-ico svg { width: 24px; height: 24px; }
.svc-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -.03em;
  line-height: 1.2;
}
.svc-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
  flex: 1;
}
.svc-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--teal-dark);
}
.svc-card > a svg { width: 16px; height: 16px; }
.svc-card > a:hover { color: var(--teal); }
.svc-cta {
  align-self: flex-start;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand-grad);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(91, 63, 217, .28);
}
.svc-cta:hover { color: #fff !important; filter: brightness(1.05); }
.svc-card.is-feature {
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(125, 28, 187, .12), transparent 50%),
    linear-gradient(180deg, #f7f6ff, #fff);
  border-color: #d4c8ff;
  box-shadow: 0 18px 40px rgba(91, 63, 217, .12);
}
.svc-card.is-feature .svc-ico {
  background: var(--brand-grad);
  color: #fff;
}
@media (max-width: 800px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { min-height: 0; }
}
.help-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.help-jumps a {
  background: #fff;
  border: 1px solid #e8e4ff;
  color: var(--teal-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.help-jumps a:hover { border-color: #c4b8ff; color: var(--teal); }

.help-topics { padding: 36px 0 56px; background: #fff; }
.help-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.help-topic {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 20px;
  padding: 20px 18px 16px;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(10, 46, 140, .05);
  min-height: 100%;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.help-topic:hover {
  transform: translateY(-3px);
  border-color: #c4b8ff;
  box-shadow: 0 16px 36px rgba(91, 63, 217, .1);
  color: var(--ink);
}
.help-topic-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.help-topic-ico svg { width: 22px; height: 22px; }
.help-topic-ico.teal { background: #f4f2ff; color: var(--teal); }
.help-topic-ico.ink { background: #eef2ff; color: var(--teal-dark); }
.help-topic-ico.amber { background: #fff7ed; color: #c2410c; }
.help-topic-ico.green { background: #ecfdf5; color: #047857; }
.help-topic strong { display: block; font-size: 15.5px; letter-spacing: -.02em; margin-bottom: 6px; }
.help-topic p { margin: 0 0 14px; font-size: 13.5px; color: var(--muted); line-height: 1.45; flex: 1; }
.help-topic em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
}
.help-topic em.help-topic-list {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--muted);
}

.help-guide {
  padding: 64px 0;
  background:
    radial-gradient(620px 240px at 10% 0%, rgba(237, 233, 254, .7), transparent 70%),
    #f7f6ff;
}
.help-guide-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.help-guide-copy h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -.03em;
  margin: 12px 0 10px;
  line-height: 1.15;
}
.help-guide-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  max-width: 40ch;
}
.help-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.help-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 18px;
  padding: 16px 18px;
}
.help-steps span {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-grad);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.help-steps strong { display: block; font-size: 15.5px; letter-spacing: -.02em; margin-bottom: 4px; }
.help-steps p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.45; }

.help-split { padding: 56px 0; background: #fff; }
.help-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.help-split-card {
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 12px 32px rgba(10, 46, 140, .05);
}
.help-split-card.is-soft {
  background: linear-gradient(180deg, #f7f6ff 0%, #fff 55%);
}
.help-split-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.help-split-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -.03em;
}
.help-split-card > p { margin: 0 0 12px; color: var(--muted); }
.help-split-card ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.55;
}
.help-split-card li { margin-bottom: 6px; }
.help-split-note { font-size: 13.5px !important; }

.help-download {
  padding: 8px 0 56px;
  background: #fff;
}
.help-dl {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
  background: var(--brand-grad);
  color: #fff;
  border-radius: 24px;
  padding: 32px 34px;
  box-shadow: 0 20px 44px rgba(91, 63, 217, .22);
}
.help-dl h2 {
  margin: 12px 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -.03em;
  color: #fff;
}
.help-dl p { margin: 0; color: rgba(255,255,255,.86); max-width: 54ch; }
.help-dl .how-kicker {
  background: rgba(255,255,255,.14);
  border-color: transparent;
  color: #fff;
}
.help-dl-meta {
  display: grid;
  gap: 0;
  margin: 0;
  background: rgba(255,255,255,.12);
  border-radius: 16px;
  overflow: hidden;
}
.help-dl-meta div {
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.help-dl-meta div:first-child { border-top: 0; }
.help-dl-meta dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .75;
}
.help-dl-meta dd { margin: 4px 0 0; font-size: 18px; font-weight: 800; letter-spacing: -.02em; }

.help-contact {
  padding: 56px 0 24px;
  background:
    radial-gradient(620px 240px at 90% 0%, rgba(237, 233, 254, .55), transparent 70%),
    #f7f6ff;
}
.help-contact-head { max-width: 560px; margin-bottom: 24px; }
.help-contact-head h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -.03em;
  margin: 12px 0 8px;
}
.help-contact-head p { margin: 0; color: var(--muted); }
.help-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.help-reach {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 18px;
  padding: 18px 16px;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(10, 46, 140, .05);
}
.help-reach:hover { border-color: #c4b8ff; color: var(--ink); }
.help-reach-ico {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.help-reach-ico svg { width: 22px; height: 22px; }
.help-reach-ico.wa { background: #ecfdf5; color: #059669; }
.help-reach-ico.call { background: #f4f2ff; color: var(--teal); }
.help-reach-ico.mail { background: #eef2ff; color: var(--teal-dark); }
.help-reach strong { font-size: 14.5px; letter-spacing: -.02em; overflow-wrap: anywhere; }
.help-reach small { color: var(--muted); font-size: 12.5px; }

.contact-board {
  padding: 8px 0 88px;
  background: #fff;
}
.contact-reach {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.contact-channel {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 22px;
  padding: 22px 16px 20px;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(10, 46, 140, .06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.contact-channel:hover {
  color: var(--ink);
  border-color: #c4b8ff;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(10, 46, 140, .1);
}
.contact-channel-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.contact-channel-ico svg { width: 24px; height: 24px; }
.contact-channel-ico.wa { background: #ecfdf5; color: #059669; }
.contact-channel-ico.mail { background: #eef2ff; color: var(--teal-dark); }
.contact-channel-ico.call { background: #f4f2ff; color: var(--teal); }
.contact-channel-ico.ig {
  background: linear-gradient(135deg, #fce7f3, #ede9fe);
  color: #c026d3;
}
.contact-channel small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-channel strong {
  font-size: 15px;
  letter-spacing: -.02em;
  overflow-wrap: anywhere;
  line-height: 1.35;
}
.contact-offices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.contact-office {
  background: linear-gradient(180deg, #fbfaff 0%, #fff 100%);
  border: 1px solid #e8e4ff;
  border-radius: 22px;
  padding: 26px 24px 24px;
  min-height: 180px;
  box-shadow: 0 12px 28px rgba(10, 46, 140, .05);
}
.contact-office-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-grad);
  color: #fff;
  margin-bottom: 14px;
}
.contact-office-ico svg { width: 20px; height: 20px; }
.contact-office h2 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -.03em;
}
.contact-office p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.help-topics,
.help-guide,
.help-split,
.help-download,
.help-contact,
.help-faqs {
  scroll-margin-top: 96px;
}
.help-faqs { background: #fff; }
.help-demo {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding: 14px 16px;
  background: #f7f6ff;
  border: 1px solid #e8e4ff;
  border-radius: 16px;
}
.help-demo span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
}
.help-demo code {
  font-size: 13px;
  background: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  color: var(--teal-dark);
}
.help-demo small { color: var(--muted); font-size: 12.5px; }
.help-demo small a { font-weight: 700; }

.site-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.progress-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 920px;
}
.progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(10, 46, 140, .05);
}
.progress-row strong { display: block; font-size: 16px; letter-spacing: -.02em; }
.progress-row span { color: var(--muted); font-size: 13.5px; }
.progress-status {
  flex: none;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4f2ff;
  color: var(--teal-dark);
}
.progress-status.is-amber { background: #fff7ed; color: #c2410c; }
.progress-status.is-sky { background: #eff6ff; color: #1d4ed8; }
.progress-status.is-green { background: #ecfdf5; color: #047857; }
.progress-status.is-teal { background: #f4f2ff; color: var(--teal); }
.progress-status.is-rose { background: #fff1f2; color: #be123c; }
.progress-status.is-ink { background: #eef2ff; color: var(--teal-dark); }
.progress-note { color: var(--muted); margin: 18px 0 0; }

@media (max-width: 980px) {
  .help-topic-grid, .help-guide-grid, .help-split-grid, .help-dl, .help-contact-grid, .site-card-grid,
  .contact-offices {
    grid-template-columns: 1fr;
  }
  .contact-reach { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .help-dl { padding: 24px 20px; }
  .progress-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .contact-reach { grid-template-columns: 1fr; }
}
.sample-page {
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(125, 28, 187, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f6ff 0%, #eef2ff 28%, #f8fafc 100%);
}
.sample-page.is-tailor {
  background:
    radial-gradient(ellipse 55% 45% at 8% 8%, rgba(10, 46, 140, 0.10), transparent 50%),
    radial-gradient(ellipse 70% 50% at 92% 0%, rgba(125, 28, 187, 0.14), transparent 55%),
    linear-gradient(180deg, #f7f6ff 0%, #eef2ff 32%, #f8fafc 100%);
}
.sample-page.is-tailor .sample-hero {
  position: relative;
}
.sample-page.is-tailor .sample-hero::after {
  content: "";
  display: block;
  height: 1px;
  margin: 28px 0 0;
  background-image: repeating-linear-gradient(
    90deg,
    #c4b8ff 0 10px,
    transparent 10px 18px
  );
  opacity: .7;
}
.sample-aside { display: grid; gap: 12px; }
.sample-atelier {
  background: #0a2e8c;
  color: #fff;
  border-radius: 16px;
  padding: 16px 18px 12px;
  box-shadow: 0 16px 32px rgba(10, 46, 140, .22);
}
.sample-atelier strong {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .78;
  margin-bottom: 10px;
}
.sample-atelier ul { list-style: none; margin: 0; padding: 0; }
.sample-atelier li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 13.5px;
}
.sample-atelier li:first-child { border-top: 0; padding-top: 0; }
.sample-atelier span { opacity: .78; font-weight: 600; }
.sample-atelier em { font-style: normal; font-weight: 800; letter-spacing: -.02em; }
.sample-page.is-tailor .sample-kpi:first-child {
  background: linear-gradient(180deg, #fff 0%, #f4f2ff 100%);
  border-color: #c4b8ff;
}
.sample-hero { padding: 28px 0; }
.sample-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 18px;
}
.sample-crumb a { color: var(--teal); }
.sample-crumb a:hover { color: var(--teal-dark); }
.sample-crumb strong { color: var(--ink); font-weight: 700; }
.sample-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
}
.sample-hero-copy h1 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -.03em;
  line-height: 1.15;
}
.sample-hero-copy > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16.5px;
  max-width: 54ch;
}
.sample-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.sample-meta span {
  background: #fff;
  border: 1px solid #e8e4ff;
  color: #0a2e8c;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
}
.sample-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sample-kpi {
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 28px rgba(10, 46, 140, .06);
}
.sample-kpi span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.sample-kpi strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.sample-kpi strong.is-ok { color: #059669; }
.sample-kpi strong.is-warn { color: #b45309; }
.sample-kpi small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.sample-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.sample-point {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 16px;
  padding: 16px;
}
.sample-point .n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: var(--brand-grad);
}
.sample-point strong { display: block; font-size: 14.5px; letter-spacing: -.02em; }
.sample-point p { margin: 4px 0 0; font-size: 13.5px; color: var(--muted); line-height: 1.45; }
.sample-stage {
  padding: 28px 0 56px;
  background:
    radial-gradient(circle at 12% 0%, rgba(91, 63, 217, .08), transparent 42%),
    #eceaf8;
}
.sample-stage .container {
  width: min(920px, calc(100% - 32px));
}
.sample-doc {
  background: #fff;
  border: 1px solid #ddd7f5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(10, 46, 140, .14);
}
.sample-doc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: #f7f6ff;
  color: #1a1640;
  border-bottom: 1px solid #ddd7f5;
}
.sample-doc-bar-copy {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
}
.sample-doc-bar-copy span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5b3fd9;
}
.sample-doc-bar em {
  font-style: normal;
  background: #fff;
  border: 1px solid #e8e4ff;
  color: #5b6478;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  font-size: 10px;
  font-weight: 700;
  text-transform: none;
}
.sample-doc .report {
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.sample-more { padding: 8px 0 64px; }
.sample-more .formats-head { margin-bottom: 18px; }
.sample-more-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.pro-hero .hero-visual { min-height: 520px; }
.pro-hero .hero-float-dscr strong { color: var(--teal-dark); }
.pro-hero .hero-float-dscr small { color: var(--teal); }
.pro-dash {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(10, 46, 140, .14);
  transform: rotate(-1.2deg);
}
.pro-dash-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: var(--brand-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pro-dash-bar em {
  font-style: normal;
  background: rgba(255,255,255,.16);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  font-size: 10px;
  text-transform: none;
}
.pro-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid #eef2f6;
}
.pro-dash-stats div {
  padding: 14px 12px 12px;
  text-align: center;
  border-right: 1px solid #eef2f6;
}
.pro-dash-stats div:last-child { border-right: 0; }
.pro-dash-stats b {
  display: block;
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.pro-dash-stats span {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pro-dash-list {
  list-style: none;
  margin: 0;
  padding: 8px 10px 12px;
}
.pro-dash-list li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 8px;
  border-radius: 14px;
}
.pro-dash-list li:hover { background: #f7f6ff; }
.pro-dash-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #f4f2ff;
  font-size: 18px;
}
.pro-dash-list strong { display: block; font-size: 14px; letter-spacing: -.02em; }
.pro-dash-list small { color: var(--muted); font-size: 12px; }
.pro-dash-list em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.st-ready { background: #ecfdf5; color: #047857; }
.st-draft { background: #fff7ed; color: #c2410c; }
.st-paid { background: #f4f2ff; color: #5b3fd9; }

.pro-roles {
  padding: 8px 0 56px;
  background: #fff;
}
.pro-roles-label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.pro-roles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.pro-role {
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 20px;
  padding: 20px 18px 18px;
  box-shadow: 0 10px 28px rgba(10, 46, 140, .05);
}
.pro-role-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f4f2ff;
  color: var(--teal);
  margin-bottom: 14px;
}
.pro-role-ico svg { width: 22px; height: 22px; }
.pro-role strong { display: block; font-size: 15.5px; letter-spacing: -.02em; margin-bottom: 6px; }
.pro-role p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.45; }

.pro-benefits {
  padding: 72px 0;
  background:
    radial-gradient(620px 240px at 10% 0%, rgba(237, 233, 254, .7), transparent 70%),
    #f7f6ff;
}
.pro-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pro-benefit {
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 20px;
  padding: 22px 20px 20px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .04);
}
.pro-benefit .n {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--teal);
  margin-bottom: 10px;
}
.pro-benefit h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.02em; }
.pro-benefit p { margin: 0; color: var(--muted); font-size: 14.5px; }

.pro-flow {
  padding: 72px 0 64px;
  background: #fff;
}
.pro-flow-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pro-flow-grid li {
  position: relative;
  background: linear-gradient(180deg, #f7f6ff 0%, #fff 55%);
  border: 1px solid #e8e4ff;
  border-radius: 22px;
  padding: 24px 22px 22px;
}
.pro-flow-n {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}
.pro-flow-grid h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.02em; }
.pro-flow-grid p { margin: 0; color: var(--muted); font-size: 14.5px; }
.pro-pricing { background: #f8fafc; }
.pro-demo-note {
  margin: 0 0 18px;
  font-size: 13.5px;
  color: var(--muted);
}
.pro-demo-note code {
  font-size: 12.5px;
  background: #f4f2ff;
  color: var(--teal-dark);
  padding: 2px 7px;
  border-radius: 6px;
}

.about-hero .hero-visual { min-height: 0; }
.about-hero .hero-stats { grid-template-columns: repeat(4, 1fr); }
.about-story {
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(10, 46, 140, .14);
  transform: rotate(1.1deg);
}
.about-story-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: var(--brand-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-story-bar em {
  font-style: normal;
  background: rgba(255,255,255,.16);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  font-size: 10px;
  text-transform: none;
}
.about-story-list {
  list-style: none;
  margin: 0;
  padding: 8px 10px 12px;
}
.about-story-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 8px;
  border-radius: 14px;
  position: relative;
}
.about-story-list li:not(.is-last)::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 42px;
  bottom: -4px;
  width: 2px;
  background: #e8e4ff;
}
.about-story-list li span {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #f4f2ff;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.about-story-list strong { display: block; font-size: 14.5px; letter-spacing: -.02em; }
.about-story-list small { color: var(--muted); font-size: 12.5px; }
.about-story-list li.is-last span {
  background: var(--brand-grad);
  color: #fff;
}

.about-note { padding: 8px 0 28px; background: #fff; }
.about-callout {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 20px;
  padding: 20px 22px;
}
.about-callout-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #ffedd5;
  color: #c2410c;
}
.about-callout-ico svg { width: 24px; height: 24px; }
.about-callout strong { display: block; font-size: 16px; letter-spacing: -.02em; margin-bottom: 6px; }
.about-callout p { margin: 0; color: #7c4a1e; font-size: 14.5px; line-height: 1.55; }
.about-callout a { color: #9a3412; font-weight: 700; }
.about-callout em { font-style: normal; font-weight: 700; }

.about-who {
  padding: 56px 0 72px;
  background: #fff;
}
.about-who-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.about-who-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 22px;
  padding: 24px 22px 20px;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.about-who-card:hover {
  transform: translateY(-3px);
  border-color: #c4b8ff;
  box-shadow: 0 18px 36px rgba(91, 63, 217, .12);
  color: var(--ink);
}
.about-who-card.is-featured {
  background: linear-gradient(180deg, #f7f6ff 0%, #fff 48%);
  border-color: #c4b8ff;
}
.about-who-n {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--teal);
  margin-bottom: 12px;
}
.about-who-card h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.02em; }
.about-who-card p { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; flex: 1; }
.about-who-card em {
  font-style: normal;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--teal-dark);
}

.about-build {
  padding: 72px 0;
  background:
    radial-gradient(620px 240px at 90% 0%, rgba(237, 233, 254, .7), transparent 70%),
    #f7f6ff;
}
.about-build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-build-grid article {
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 10px 28px rgba(10, 46, 140, .05);
}
.about-build-grid h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.02em; }
.about-build-grid p { margin: 0; color: var(--muted); font-size: 14.5px; }

.about-rules {
  padding: 72px 0;
  background: #fff;
}
.about-rules-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.about-rules-grid h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  margin: 12px 0 8px;
  line-height: 1.15;
}
.about-rules-grid > div > p { margin: 0; color: var(--muted); font-size: 16.5px; max-width: 42ch; }
.about-rules-grid ul { list-style: none; margin: 0; padding: 0; }
.about-rules-grid li {
  padding: 18px 0;
  border-top: 1px solid #eef2f6;
}
.about-rules-grid li:first-child { border-top: 0; padding-top: 0; }
.about-rules-grid li strong { display: block; font-size: 16px; letter-spacing: -.02em; margin-bottom: 4px; }
.about-rules-grid li span { color: var(--muted); font-size: 14.5px; }

.about-contact { padding: 0 0 72px; background: #fff; }
.about-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--brand-grad);
  color: #fff;
  border-radius: 24px;
  padding: 32px 36px;
  box-shadow: 0 20px 48px rgba(10, 46, 140, .2);
}
.about-contact-card .formats-kicker {
  background: rgba(255,255,255,.16);
  color: #fff;
}
.about-contact-card h2 { margin: 12px 0 8px; color: #fff; letter-spacing: -.03em; }
.about-contact-card p { margin: 0; color: rgba(255,255,255,.84); max-width: 46ch; }
.about-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}
.about-contact-links a,
.about-contact-links span {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.about-contact-links a:hover { opacity: .85; }
.about-contact-links span { font-weight: 600; opacity: .8; font-size: 13.5px; }
@media print {
  @page { size: A4 portrait; margin: 10mm 10mm 12mm; }
  html, body {
    background: #fff !important;
    color: #111 !important;
    overflow: visible !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .site-head, .nav, .footer, .no-print, .float-wa, .dash-grid .side,
  .sample-hero, .sample-doc-bar, .sample-more { display: none !important; }
  .container, .sample-page, .sample-stage, .sample-doc {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
  .sample-doc .report { border-radius: 0 !important; }
}
@media (max-width: 980px) {
  .container { width: min(1320px, calc(100% - 24px)); }
  .brand-copy small { display: none; }
  .site-head { position: sticky; }
  .nav { position: relative; }
  .nav-inner { height: 64px; gap: 8px; flex-wrap: nowrap; }
  .nav-call-meta small { display: none; }
  .nav-call { padding: 4px 10px 4px 4px; gap: 8px; }
  .nav-call-ico { width: 32px; height: 32px; }
  .nav .brand-mark {
    width: 132px;
    max-width: min(132px, 32vw);
    height: 36px;
  }
  .nav-bar { display: none; }
  .site-head.is-open .nav-bar { display: block; }
  .nav-bar .nav-links {
    display: flex;
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px 0 14px;
    min-height: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .site-head.is-open .nav-links { display: flex; }
  .nav-bar .nav-links a,
  .nav-bar .nav-drop-toggle {
    padding: 11px 14px;
    border-radius: 12px;
    width: 100%;
    justify-content: space-between;
  }
  .nav-drop:hover .nav-drop-menu,
  .nav-drop:focus-within .nav-drop-menu { display: none; }
  .nav-drop.is-open .nav-drop-menu {
    display: flex;
    position: static;
    min-width: 0;
    margin: 0 0 4px;
    padding: 0 0 0 10px;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-drop.is-open .nav-drop-menu::before { display: none; }
  .nav-drop-menu a { margin: 0; }
  .nav-drop-menu a:first-of-type,
  .nav-drop-menu a:last-of-type { margin: 0; }
  .nav-bar .nav-drop-menu a { color: #ede9fe; }
  .nav-bar .nav-drop-menu a:hover,
  .nav-bar .nav-drop-menu a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, .16);
    box-shadow: none;
  }
  .nav-links-extra {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }
  .nav-links-extra a {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
  .nav-links-cta {
    background: #fff !important;
    color: var(--teal-dark) !important;
    box-shadow: none !important;
    text-align: center;
    justify-content: center;
  }
  .nav-burger { display: inline-flex; width: 40px; height: 40px; }
  .site-head.is-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-head.is-open .nav-burger span:nth-child(2) { opacity: 0; }
  .site-head.is-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-cta:has(.nav-burger) .btn-outline,
  .nav-cta:has(.nav-burger) .user-chip { display: none; }
  .nav-cta .btn-ghost,
  .nav-cta .btn-primary { display: inline-flex; }
  .nav-cta .btn-sm-nav { padding: 8px 12px; font-size: 12px; white-space: nowrap; }
  .nav-cta .btn-primary svg { display: none; }
  .user-chip-meta { display: none; }
  .product-grid, .steps, .features, .plan-grid, .quotes, .biz-grid,
  .auth-wrap, .dash-grid, .wizard, .form-grid, .footer-grid, .stats,
  .hero-grid, .hero-doc-metrics, .how-track, .gate-board,
  .sample-hero-grid, .sample-points, .pro-roles-grid, .pro-benefits-grid, .pro-flow-grid,
  .about-who-grid, .about-build-grid, .about-rules-grid {
    grid-template-columns: 1fr;
  }
  .how { padding: 48px 0; }
  .how-track::before {
    top: 0;
    bottom: 0;
    left: 21px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, #c4b8ff, #5b3fd9, #c4b8ff);
  }
  .how-step { padding-left: 64px; }
  .how-rail {
    position: absolute;
    left: 0;
    top: 18px;
    margin: 0;
  }
  .how-rail span { box-shadow: 0 0 0 6px #f7f6ff, 0 8px 18px rgba(91, 63, 217, .28); }
  .how-foot { flex-direction: column; align-items: stretch; text-align: center; }
  .hero-home { padding: 18px 0 36px; }
  .hero-home.has-slider { padding: 0 0 36px; }
  .hero-visual { min-height: 0; }
  .hero-doc { transform: none; }
  .hero-float-dscr { right: 8px; top: 12px; }
  .hero-float-preview { left: 8px; bottom: auto; top: auto; display: none; }
  .hero-stats { gap: 10px; margin-top: 20px; }
  .hero-stat { padding: 16px 16px 14px; }
  .hero-stat b { font-size: 22px; }
  .stat-banner { margin-top: 20px; padding: 22px 10px; border-radius: 22px; }
  .stat-banner-item { padding: 6px 12px; }
  .stat-banner-item b { font-size: 24px; }
  .stat-banner-item span:last-child { font-size: 12.5px; }
  .hero-paths { grid-template-columns: 1fr; }
  .hero-path { padding: 16px; }
  .about-hero .hero-stats { grid-template-columns: 1fr 1fr; }
  .about-story { transform: none; }
  .about-who, .about-build, .about-rules { padding: 40px 0; }
  .about-contact-card { flex-direction: column; align-items: flex-start; padding: 24px; }
  .pro-hero .hero-visual { min-height: 0; }
  .pro-dash { transform: none; }
  .pro-roles, .pro-benefits, .pro-flow { padding: 40px 0; }
  .pro-roles-grid, .pro-benefits-grid { grid-template-columns: 1fr 1fr; }
  .pricing { padding: 48px 0; }
  .voices { padding: 48px 0; }
  .faqs { padding: 48px 0 64px; }
  .faqs-grid { grid-template-columns: 1fr; gap: 24px; }
  .voices-grid { grid-template-columns: 1fr; }
  .voice.is-featured { transform: none; }
  .voice-who em { display: none; }
  .price-card.is-popular { transform: none; }
  .float-wa { right: 16px; bottom: 16px; }
  .float-wa-fab, .float-wa-btn { width: 52px; height: 52px; }
  .float-wa-btn svg { width: 26px; height: 26px; }
  .float-wa-label { display: none; }
  .engine { padding: 48px 0; }
  .engine-bento, .engine-pair { grid-template-columns: 1fr; }
  .formats { padding: 48px 0; }
  .formats-head { flex-direction: column; align-items: flex-start; }
  .fmt-grid { grid-template-columns: 1fr 1fr; }
  .sample-more-grid { grid-template-columns: 1fr 1fr; }
  .sample-doc-bar { flex-wrap: wrap; }
  .fmt-go { font-size: 0; gap: 0; }
  .fmt-go svg { width: 16px; height: 16px; }
  .biz-grid { grid-template-columns: 1fr 1fr; }
  .span-2 { grid-column: span 1; }
  .gate { padding: 20px 0 36px; }
  .gate-board { min-height: 0; }
  .gate-side, .gate-panel { padding: 24px 20px; }
  .gate-side h1 { font-size: 24px; }
  .auth-side { display: none; }
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .footer-cta-actions { width: 100%; }
  .footer-cta-actions .btn { flex: 1 1 auto; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 640px) {
  .nav-inner { height: 58px; gap: 6px; }
  .nav-call-meta { display: none; }
  .nav-call { padding: 3px; border-radius: 50%; }
  .nav .brand-mark {
    width: 96px;
    max-width: min(96px, 28vw);
    height: 32px;
  }
  .nav-cta { gap: 6px; }
  .nav-cta-actions { gap: 5px; }
  .nav-cta .btn-sm-nav { padding: 7px 10px; font-size: 11.5px; }
  .nav-burger { width: 36px; height: 36px; border-radius: 10px; }
  .hero-stats,
  .stat-banner,
  .pro-roles-grid, .pro-benefits-grid, .about-hero .hero-stats { grid-template-columns: 1fr; }
  .stat-banner { padding: 8px 16px 16px; }
  .stat-banner-item { padding: 18px 8px; }
  .stat-banner-item + .stat-banner-item::before {
    left: 18%;
    right: 18%;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  }
  .hero-path { flex-wrap: wrap; }
  .hero-path em { margin-left: 0; }
}

/* Guest create-report wizard — wide LoanDPR layout */
body:has(.create-wiz) {
  background:
    radial-gradient(ellipse 70% 45% at 8% 0%, rgba(91, 63, 217, .12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(10, 46, 140, .08), transparent 50%),
    linear-gradient(180deg, #f7f6ff 0%, #eef2ff 38%, #fff 100%);
}
.site-head.is-wizard .nav {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #ece8ff;
}
.site-head.is-wizard .nav-inner { height: 68px; }
.site-head.is-wizard .brand-copy small { display: none; }
@media (max-width: 980px) {
  .site-head.is-wizard .nav-inner { height: 64px; }
  .wiz-nav-cta { gap: 8px; }
  .wiz-nav-cta .btn-sm-nav { padding: 8px 14px; font-size: 12.5px; }
}
@media (max-width: 640px) {
  .site-head.is-wizard .nav-inner { height: 58px; }
}
.wiz-nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wiz-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.wiz-call svg { width: 16px; height: 16px; color: var(--teal); }
.wiz-call:hover { color: var(--teal); }

.create-wiz {
  padding: 28px 0 64px;
  min-height: calc(100vh - 90px);
}
.create-wiz-inner {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}
.create-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.create-rail {
  position: sticky;
  top: 88px;
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 22px;
  padding: 22px 20px 18px;
  box-shadow: 0 12px 32px rgba(10, 46, 140, .06);
}
.create-rail-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
}
.create-rail h1 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.create-rail-lead {
  margin: 0 0 16px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
}
.create-progress {
  height: 6px;
  background: #ece8ff;
  border-radius: 99px;
  overflow: hidden;
}
.create-progress span {
  display: block;
  height: 100%;
  background: var(--brand-grad);
  border-radius: inherit;
  transition: width .25s ease;
}
.create-rail-count {
  margin: 8px 0 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-dark);
}
.create-rail-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
  max-height: calc(100vh - 340px);
  overflow: auto;
}
.create-rail-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
}
.create-rail-step em {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 11px;
  font-weight: 800;
  background: #f1f5f9;
  color: #64748b;
}
.create-rail-step.is-done { color: var(--teal-dark); }
.create-rail-step.is-done em {
  background: #ecfdf5;
  color: #047857;
}
.create-rail-step.is-current {
  color: var(--ink);
  background: #f7f6ff;
}
.create-rail-step.is-current em {
  background: var(--brand-grad);
  color: #fff;
}
a.create-rail-step:hover { background: #f7f6ff; color: var(--teal); }

.create-form { min-width: 0; }
.create-card {
  background: #fff;
  border: 1px solid #e8e4ff;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(10, 46, 140, .07);
  overflow: hidden;
}
.create-body { padding: 28px 32px 20px; }
.create-qhead {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}
.create-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--brand-grad);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  box-shadow: 0 10px 22px rgba(91, 63, 217, .28);
}
.create-body h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
}
.create-hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.create-underline {
  width: 100%;
  border: 1.5px solid #e8e4ff;
  background: #fafbff;
  padding: 16px 18px;
  font: inherit;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  border-radius: 14px;
}
.create-underline:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(91, 63, 217, .12);
}
.create-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.create-choices-2 { grid-template-columns: 1fr 1fr; }
.create-choices-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.create-choices-biz { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.create-choice { position: relative; cursor: pointer; }
.create-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.create-choice span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 16px 14px;
  border: 1.5px solid #e8e4ff;
  border-radius: 16px;
  background: #fbfaff;
  min-height: 84px;
  height: 100%;
  transition: border-color .15s, box-shadow .15s, background .15s, transform .15s;
}
.create-choice strong { font-size: 15px; letter-spacing: -.02em; }
.create-choice small { color: var(--muted); font-size: 12.5px; font-weight: 500; }
.create-choice:hover span {
  border-color: #c4b8ff;
  background: #fff;
  transform: translateY(-1px);
}
.create-choice:has(input:checked) span {
  border-color: var(--teal);
  background: #f7f6ff;
  box-shadow: 0 0 0 3px rgba(91, 63, 217, .14);
}
.create-money-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.create-money-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.create-money, .create-area, .create-cap-row label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.create-money input, .create-money select, .create-area textarea, .create-cap-row input {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: #fafbff;
}
.create-money input:focus, .create-money select:focus, .create-area textarea:focus, .create-cap-row input:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(91, 63, 217, .12);
}
.create-rupee {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fafbff;
  overflow: hidden;
}
.create-rupee em {
  font-style: normal;
  padding: 0 0 0 12px;
  color: var(--muted);
  font-weight: 700;
}
.create-rupee input {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
}
.create-rupee:focus-within {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(91, 63, 217, .12);
}
.create-money-lg .create-rupee { max-width: 480px; }
.create-money-lg input { font-size: 26px; padding: 16px 14px; }
.create-area { margin-top: 14px; }
.create-area textarea { font-weight: 500; resize: vertical; }
.create-cap-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.create-total {
  margin: 16px 0 0;
  font-size: 15px;
}
.create-note {
  margin: 12px 0 0;
  font-size: 13.5px;
  color: var(--muted);
}
.create-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding: 18px 32px 22px;
  border-top: 1px solid #f1eefc;
  background: #fbfaff;
}
.create-back {
  background: #fff;
  border: 1.5px solid #e8e4ff;
  color: var(--teal-dark);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 12px;
}
.create-back:hover { border-color: #c4b8ff; color: var(--teal); }
.create-next {
  min-width: 200px;
  border-radius: 12px;
  padding: 13px 28px;
  font-size: 15.5px;
}
.create-form .span-2 { grid-column: span 2; }
.create-tl {
  display: grid;
  gap: 0;
  border: 1.5px solid #e8e4ff;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.create-tl-row {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 42%);
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border-top: 1px solid #f1eefc;
  margin: 0;
}
.create-tl-row:first-child {
  border-top: 0;
  background: linear-gradient(90deg, #f7f6ff, #eef2ff);
}
.create-tl-row > span:first-child {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.create-tl-row small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  margin-top: 3px;
}
.create-tl-row > strong {
  font-size: 22px;
  letter-spacing: -.03em;
  color: var(--teal-dark);
  text-align: right;
}
.create-tl-inputs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.create-pct {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  width: 92px;
  flex: none;
}
.create-pct input {
  width: 100%;
  border: 0;
  padding: 10px 8px 10px 12px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  background: transparent;
}
.create-pct em {
  font-style: normal;
  padding-right: 10px;
  color: var(--muted);
  font-weight: 700;
}
.create-pct:focus-within,
.create-tl-row .create-rupee:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(91, 63, 217, .12);
}
.create-tl-row .create-rupee { width: 100%; background: #fff; }
.create-tl-row.is-edit .create-rupee input { font-weight: 700; }

@media (max-width: 1100px) {
  .create-layout { grid-template-columns: 240px minmax(0, 1fr); gap: 20px; }
  .create-choices-3, .create-choices-biz, .create-money-grid-3 { grid-template-columns: 1fr 1fr; }
  .create-tl-row { grid-template-columns: 1fr minmax(240px, 48%); }
}
@media (max-width: 860px) {
  .create-layout { grid-template-columns: 1fr; }
  .create-rail { position: static; }
  .create-rail-steps { display: none; }
  .create-wiz-inner { width: min(1280px, calc(100% - 24px)); }
}
@media (max-width: 720px) {
  .create-body { padding: 20px 16px 8px; }
  .create-qhead { grid-template-columns: 44px 1fr; gap: 12px; }
  .create-num { width: 44px; height: 44px; border-radius: 12px; font-size: 14px; }
  .create-choices, .create-choices-2, .create-choices-3, .create-choices-biz,
  .create-money-grid, .create-money-grid-3 { grid-template-columns: 1fr; }
  .create-form .span-2 { grid-column: span 1; }
  .create-cap-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .create-actions { padding: 14px 16px 16px; }
  .wiz-call { display: none; }
  .create-tl-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .create-tl-row > strong, .create-tl-inputs { justify-content: flex-start; text-align: left; }
  .create-tl-inputs, .create-tl-row .create-rupee { width: 100%; }
  .create-pct { width: 110px; }
}

.hero-home.has-slider {
  padding: 0 0 48px;
  overflow-x: hidden;
  background: #f7f6ff;
}
.hero-slider-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #08101c;
}
.hero-slide-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
  transition: transform .8s cubic-bezier(.22, .7, .3, 1);
  will-change: transform;
}
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 56px 0 80px;
  isolation: isolate;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(8, 12, 28, .78) 0%, rgba(10, 22, 56, .55) 46%, rgba(91, 63, 217, .38) 100%),
    linear-gradient(180deg, rgba(8, 12, 28, .18) 0%, rgba(8, 12, 28, .5) 100%);
}
.hero-home.has-slider .hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
}
.hero-home.has-slider .hero-copy { max-width: 760px; }
.hero-home.has-slider h1 { color: #fff; }
.hero-home.has-slider h1 span {
  color: #d6ccff;
  background: none;
}
.hero-home.has-slider h1.hero-title { color: #fff; }
.hero-home.has-slider h1.hero-title .hero-title-top,
.hero-home.has-slider h1.hero-title .hero-title-bottom {
  background: linear-gradient(90deg, #fff 0%, #f3e8ff 55%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0;
}
.hero-home.has-slider .hero-title-rule i { color: #fff; }
.hero-home.has-slider .hero-title-rule::before,
.hero-home.has-slider .hero-title-rule::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  opacity: 1;
}
.hero-home.has-slider .lead { color: rgba(255, 255, 255, .86); }
.hero-home.has-slider .hero-lead {
  color: rgba(255, 255, 255, .9);
}
.hero-home.has-slider .hero-lead::before {
  background: linear-gradient(180deg, #c4b5fd, #fff);
}
.hero-home.has-slider .hero-badge {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
  backdrop-filter: blur(10px);
}
.hero-home.has-slider .btn-outline {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}
.hero-home.has-slider .btn-outline:hover {
  background: #fff;
  color: var(--ink);
}
.hero-home.has-slider .stat-banner { margin-top: 24px; }
.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}
.hero-slider-nav svg { width: 20px; height: 20px; }
.hero-slider-nav.is-prev { left: 16px; }
.hero-slider-nav.is-next { right: 16px; }
.hero-slider-nav:hover { background: rgba(255, 255, 255, .92); color: var(--teal-dark); }
.hero-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
}
.hero-slider-dots button.is-on {
  width: 22px;
  background: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide-track { transition: none; }
}
@media (max-width: 720px) {
  .hero-home.has-slider { padding-bottom: 36px; }
  .hero-slide { min-height: 0; padding: 36px 0 68px; }
  .hero-slider-nav { width: 36px; height: 36px; }
  .hero-slider-nav.is-prev { left: 8px; }
  .hero-slider-nav.is-next { right: 8px; }
}
