/* =====================================================================
   Ferax Studio — marketing site styles
   Light theme only. Mobile-first. Breakpoints: 640 / 768 / 1024 / 1280.
   ===================================================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --text: #18181b;
  --muted: #52525b;
  --muted-2: #71717a;
  --border: #e4e4e7;
  --border-strong: #d4d4d8;
  --zinc-100: #f4f4f5;
  --zinc-50: #fafafa;
  --violet: #7c3aed;
  --violet-hover: #8b5cf6;
  --violet-50: #f5f3ff;
  --violet-100: #ede9fe;
  --violet-200: #ddd6fe;
  --violet-700: #6d28d9;
  --indigo: #4f46e5;
  --indigo-50: #eef2ff;
  --emerald: #10b981;
  --amber: #f59e0b;
  --gradient: linear-gradient(135deg, var(--violet) 0%, var(--indigo) 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 1px 3px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .06);
  --shadow-violet: 0 12px 32px -8px rgba(124, 58, 237, .25), 0 1px 3px rgba(0, 0, 0, .06);
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --header-h: 64px;
  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--text); }
h3, h4, h5, h6 { font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: var(--violet); text-decoration: none; }
a:hover { color: var(--violet-hover); }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
code, kbd, pre { font-family: var(--mono); font-size: .875em; }
strong { font-weight: 600; }

:focus { outline: none; }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 1000;
  padding: 10px 16px; background: var(--violet); color: #fff; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 820px; }
.section { padding: 64px 0; }
.section-soft { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-soft + .section-soft { border-top: 0; }
.section-head { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: 32px; margin-bottom: 14px; }
.section-head p { font-size: 17px; color: var(--muted); }
.lead { font-size: 18px; color: var(--muted); }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }

.grid { display: grid; gap: 20px; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 20px; grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .section { padding: 88px 0; }
  .section-head h2 { font-size: 38px; }
  .container { padding: 0 32px; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .section { padding: 104px 0; }
  .section-head h2 { font-size: 42px; }
}

/* ---------- Eyebrow / pills / chips ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--violet-50); color: var(--violet-700);
  border: 1px solid var(--violet-200);
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--violet); }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--zinc-100); color: var(--muted); border: 1px solid var(--border);
  font-size: 12px; font-weight: 600; line-height: 1.4;
}
.chip-violet { background: var(--violet-50); color: var(--violet-700); border-color: var(--violet-200); }
.chip-emerald { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }
.chip-amber { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.dot-emerald { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); display: inline-block; flex: none; }
.dot-amber { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); display: inline-block; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 20px; border-radius: 10px;
  font-weight: 600; font-size: 15px; line-height: 1.2; white-space: nowrap;
  border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s, border-color .2s, color .2s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.08), 0 6px 16px -6px rgba(124,58,237,.5);
}
.btn-primary:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 2px 4px rgba(0,0,0,.08), 0 10px 24px -6px rgba(124,58,237,.55); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { color: var(--text); border-color: var(--violet); background: var(--violet-50); }
.btn-ghost { color: var(--muted); }
.btn-ghost:hover { color: var(--text); background: var(--zinc-100); }
.btn-white { background: #fff; color: var(--violet-700); }
.btn-white:hover { color: var(--violet-700); transform: translateY(-1px); box-shadow: 0 8px 24px -6px rgba(0,0,0,.25); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.1); }
.btn-lg { min-height: 52px; padding: 14px 26px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-group.center { justify-content: center; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--violet); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.logo img { height: 26px; width: auto; display: block; }
.site-footer .logo img, .alt-footer .logo img { height: 24px; }
@media (min-width: 768px) { .logo img { height: 28px; } }
.logo:hover { color: var(--text); }
.logo-mark {
  width: 32px; height: 32px; border-radius: 10px; background: var(--gradient);
  display: grid; place-items: center; flex: none;
  box-shadow: 0 2px 6px -1px rgba(124,58,237,.45);
}
.logo-mark svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--header-h); }
.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 4px; list-style: none; }
.nav-desktop a {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 12px; border-radius: 8px;
  color: var(--muted); font-weight: 500; font-size: 14.5px; transition: color .15s, background .15s;
}
.nav-desktop a:hover { color: var(--text); background: var(--zinc-100); }
.nav-desktop a[aria-current="page"] { color: var(--text); font-weight: 600; }
.header-actions { display: none; align-items: center; gap: 8px; }
.header-actions .btn { min-height: 40px; padding: 8px 16px; font-size: 14px; }
.menu-btn {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid var(--border); background: #fff; color: var(--text);
}
.menu-btn svg { width: 22px; height: 22px; }
.menu-btn .icon-close, .menu-btn[aria-expanded="true"] .icon-menu { display: none; }
.menu-btn[aria-expanded="true"] .icon-close { display: block; }

.drawer {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: #fff; padding: 20px;
  transform: translateX(100%); transition: transform .3s var(--ease), visibility .3s;
  visibility: hidden; overflow-y: auto;
}
.drawer.open { transform: translateX(0); visibility: visible; }
.drawer ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.drawer a.nav-link {
  display: flex; align-items: center; min-height: 48px; padding: 0 14px; border-radius: 10px;
  font-size: 17px; font-weight: 600; color: var(--text);
}
.drawer a.nav-link:hover { background: var(--zinc-100); }
.drawer a.nav-link[aria-current="page"] { background: var(--violet-50); color: var(--violet-700); }
.drawer .drawer-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.drawer .btn { min-height: 48px; }
body.drawer-open { overflow: hidden; }

@media (min-width: 1024px) {
  .nav-desktop, .header-actions { display: flex; }
  .menu-btn, .drawer { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 56px 0 40px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(124,58,237,.10), transparent 70%),
    radial-gradient(40% 40% at 90% 20%, rgba(79,70,229,.08), transparent 70%);
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px; opacity: .35;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 30%, #000, transparent);
  mask-image: radial-gradient(60% 60% at 50% 30%, #000, transparent);
}
.hero-content { max-width: 900px; margin: 0 auto; text-align: center; }
.hero h1 .gradient-text { white-space: nowrap; }
.hero h1 { font-size: 36px; margin: 20px 0 18px; letter-spacing: -0.03em; }
.hero .lead { font-size: 17px; max-width: 620px; margin: 0 auto 28px; }
.gradient-text {
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.trust-line { margin-top: 20px; font-size: 13.5px; font-weight: 500; color: var(--muted-2); letter-spacing: .02em; }
.trust-line span { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.trust-line .sep { color: var(--border-strong); }

@media (min-width: 768px) {
  .hero { padding: 80px 0 56px; }
  .hero h1 { font-size: 56px; }
  .hero .lead { font-size: 18px; }
}
@media (min-width: 1024px) {
  .hero { padding: 96px 0 64px; }
  .hero h1 { font-size: 64px; }
}

/* ---------- Editor mockup (hero) ---------- */
.mockup-window {
  margin: 40px auto 0; max-width: 1080px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(24,24,27,.18), 0 1px 3px rgba(0,0,0,.06);
  overflow: hidden;
}
.mockup-titlebar {
  display: flex; align-items: center; gap: 12px; height: 40px; padding: 0 14px;
  border-bottom: 1px solid var(--border); background: var(--zinc-50);
}
.mockup-titlebar .dots { display: flex; gap: 6px; }
.mockup-titlebar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); display: block; }
.mockup-titlebar .tabs { display: flex; gap: 4px; margin-left: 8px; }
.mockup-titlebar .tab { padding: 4px 10px; border-radius: 6px; font-size: 11.5px; font-weight: 600; color: var(--muted-2); }
.mockup-titlebar .tab.active { background: #fff; color: var(--text); border: 1px solid var(--border); }
.mockup-titlebar .spacer { flex: 1; }
.mockup-titlebar .publish { padding: 5px 10px; border-radius: 6px; background: var(--gradient); color: #fff; font-size: 11px; font-weight: 600; }
.mockup-body { display: grid; grid-template-columns: 1fr; min-height: 380px; }
.mockup-chat, .mockup-panel { display: none; }
.mockup-preview { padding: 14px; background: var(--zinc-100); }
@media (min-width: 768px) {
  .mockup-body { grid-template-columns: 230px 1fr; }
  .mockup-chat { display: flex; }
}
@media (min-width: 1024px) {
  .mockup-body { grid-template-columns: 250px 1fr 220px; }
  .mockup-panel { display: block; }
}

.mockup-chat { flex-direction: column; border-right: 1px solid var(--border); padding: 12px; gap: 10px; font-size: 12px; background: #fff; }
.mockup-chat .msg { padding: 8px 10px; border-radius: 10px; line-height: 1.45; }
.mockup-chat .msg.user { background: var(--violet-50); color: var(--violet-700); border: 1px solid var(--violet-200); align-self: flex-end; max-width: 92%; }
.mockup-chat .msg.ai { background: var(--zinc-50); border: 1px solid var(--border); color: var(--muted); }
.mockup-chat .msg.ai .who { display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--text); margin-bottom: 4px; font-size: 11px; }
.mockup-chat .msg.ai .who i { width: 14px; height: 14px; border-radius: 4px; background: var(--gradient); display: block; }
.mockup-chat .msg.ai .ok { display: flex; align-items: center; gap: 6px; margin-top: 6px; color: var(--muted); }
.mockup-chat .input { margin-top: auto; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; color: var(--muted-2); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mockup-chat .input b { width: 22px; height: 22px; border-radius: 6px; background: var(--gradient); display: grid; place-items: center; }
.mockup-chat .input b svg { width: 12px; height: 12px; }
.mockup-chat .model { display: inline-flex; align-items: center; gap: 6px; padding: 3px 8px; border-radius: 999px; border: 1px solid var(--border); font-size: 10.5px; font-weight: 600; color: var(--muted); align-self: flex-start; }
.mockup-chat .model i { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); }

.stream-cursor::after {
  content: ""; display: inline-block; width: 7px; height: 12px; margin-left: 2px; vertical-align: -1px;
  background: var(--violet); border-radius: 1px; animation: blink 1s steps(2, start) infinite;
}
@keyframes blink { to { visibility: hidden; } }

.mockup-preview .viewport-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; margin-bottom: 10px; }
.mockup-preview .viewport-bar span { white-space: nowrap; }
@media (max-width: 639px) { .mockup-titlebar .tab:not(.active) { display: none; } .mockup-titlebar .dots { display: none; } }
.mockup-preview .viewport-bar span { padding: 3px 9px; border-radius: 6px; font-size: 10.5px; font-weight: 600; color: var(--muted-2); border: 1px solid transparent; }
.mockup-preview .viewport-bar span.active { background: #fff; color: var(--text); border-color: var(--border); }
.fake-site {
  background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; height: 100%; min-height: 300px;
  box-shadow: var(--shadow);
}
.fake-site .fs-nav { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid var(--border); }
.fake-site .fs-nav i { display: block; height: 8px; border-radius: 4px; background: var(--zinc-100); }
.fake-site .fs-nav .fs-logo { width: 54px; height: 10px; background: var(--gradient); }
.fake-site .fs-nav .fs-links { display: flex; gap: 8px; }
.fake-site .fs-nav .fs-links i { width: 28px; }
.fake-site .fs-nav .fs-cta { width: 44px; height: 14px; border-radius: 5px; background: var(--text); }
.fake-site .fs-hero { padding: 26px 18px 18px; text-align: center; }
.fake-site .fs-hero .fs-h { height: 14px; border-radius: 5px; background: var(--text); margin: 0 auto 8px; width: 70%; }
.fake-site .fs-hero .fs-h.short { width: 46%; background: var(--gradient); }
.fake-site .fs-hero .fs-p { height: 7px; border-radius: 4px; background: var(--zinc-100); margin: 6px auto 0; width: 60%; }
.fake-site .fs-hero .fs-p.s { width: 42%; }
.fake-site .fs-hero .fs-btns { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.fake-site .fs-hero .fs-btns i { display: block; width: 52px; height: 16px; border-radius: 5px; background: var(--gradient); }
.fake-site .fs-hero .fs-btns i + i { background: #fff; border: 1px solid var(--border-strong); }
.fake-site .fs-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 18px 18px; }
.fake-site .fs-card { border: 1px solid var(--border); border-radius: 8px; padding: 10px; }
.fake-site .fs-card .fs-ic { width: 18px; height: 18px; border-radius: 5px; background: var(--violet-100); margin-bottom: 8px; }
.fake-site .fs-card i { display: block; height: 6px; border-radius: 3px; background: var(--zinc-100); margin-top: 5px; }
.fake-site .fs-card i:first-of-type { width: 70%; background: var(--border-strong); }
.fake-site .selected { position: relative; outline: 2px solid var(--violet); outline-offset: 2px; border-radius: 4px; }
.fake-site .selected::before {
  content: "section.hero"; position: absolute; top: -18px; left: -2px;
  font-size: 9px; font-weight: 600; color: #fff; background: var(--violet); padding: 1px 6px; border-radius: 4px; letter-spacing: .02em;
}

.mockup-panel { border-left: 1px solid var(--border); padding: 12px; font-size: 11px; background: #fff; }
.mockup-panel .pnl-tabs { display: flex; gap: 4px; margin-bottom: 12px; }
.mockup-panel .pnl-tabs span { flex: 1; text-align: center; padding: 4px; border-radius: 6px; font-weight: 600; color: var(--muted-2); }
.mockup-panel .pnl-tabs span.active { background: var(--zinc-100); color: var(--text); }
.mockup-panel .pnl-group { margin-bottom: 12px; }
.mockup-panel .pnl-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); margin-bottom: 6px; }
.mockup-panel .pnl-row { display: flex; gap: 6px; }
.mockup-panel .pnl-field { flex: 1; height: 24px; border: 1px solid var(--border); border-radius: 6px; padding: 0 8px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-weight: 500; }
.mockup-panel .pnl-field.sm { flex: none; width: 46px; }
.mockup-panel .swatches { display: flex; gap: 6px; }
.mockup-panel .swatches i { width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--border); display: block; }
.mockup-panel .boxmodel { border: 1px dashed var(--border-strong); border-radius: 6px; padding: 8px; text-align: center; color: var(--muted-2); font-size: 9.5px; }
.mockup-panel .boxmodel .inner { border: 1px dashed var(--violet); border-radius: 4px; padding: 6px; margin-top: 4px; background: var(--violet-50); color: var(--violet-700); }
.mockup-panel .boxmodel .inner .core { background: #fff; border: 1px solid var(--border); border-radius: 3px; padding: 4px; margin-top: 4px; color: var(--text); }
.mockup-panel .autosave { display: flex; align-items: center; gap: 6px; color: var(--muted-2); font-size: 10.5px; margin-top: 8px; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 24px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { box-shadow: var(--shadow-violet); border-color: var(--violet-200); transform: translateY(-2px); }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.card.flat:hover { transform: none; }
.icon-box {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
  background: var(--violet-50); color: var(--violet); border: 1px solid var(--violet-100);
}
.icon-box svg { width: 22px; height: 22px; }
.icon-box.sm { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 12px; }
.icon-box.sm svg { width: 18px; height: 18px; }
.card-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 14px; font-size: 14px; color: var(--muted); }
.card-list li { display: flex; gap: 8px; align-items: flex-start; }
.card-list li svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--violet); }

/* Feature cards (features page) */
.feature-card { padding: 20px; }
.feature-card h3 { font-size: 16px; margin-bottom: 6px; }
.feature-card p { font-size: 14.5px; }

/* ---------- Steps (How it works) ---------- */
.steps { display: grid; gap: 20px; grid-template-columns: 1fr; counter-reset: step; }
.step { position: relative; padding: 28px 24px 24px; }
.step-num {
  display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient); color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 16px;
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step-visual { margin-top: 18px; border: 1px solid var(--border); border-radius: 10px; background: var(--zinc-50); padding: 12px; font-size: 12px; color: var(--muted); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step-visual .line { height: 7px; border-radius: 4px; background: var(--border); margin-top: 6px; }
.step-visual .line.w60 { width: 60%; } .step-visual .line.w80 { width: 80%; } .step-visual .line.w40 { width: 40%; }
.step-visual .prompt { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; color: var(--text); font-weight: 500; }
.step-visual .pill-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.step-visual .pill-row span { padding: 2px 8px; border-radius: 999px; border: 1px solid var(--border); background: #fff; font-size: 11px; font-weight: 600; }
.step-visual .url { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; font-family: var(--mono); font-size: 11.5px; color: var(--text); }

/* ---------- Project type cards ---------- */
.type-card { display: flex; flex-direction: column; }
.type-card .type-preview {
  margin-top: 18px; border: 1px solid var(--border); border-radius: 10px; background: var(--zinc-50);
  height: 120px; position: relative; overflow: hidden;
}
.tp-lines { position: absolute; inset: 12px; display: flex; flex-direction: column; gap: 6px; }
.tp-lines i { height: 6px; border-radius: 3px; background: var(--border); display: block; }
.tp-lines i:nth-child(1) { width: 40%; background: var(--violet-200); }
.tp-lines i:nth-child(2) { width: 85%; } .tp-lines i:nth-child(3) { width: 70%; } .tp-lines i:nth-child(4) { width: 55%; }
.tp-code { position: absolute; inset: 10px; font-family: var(--mono); font-size: 10px; color: var(--muted); line-height: 1.6; }
.tp-code b { color: var(--violet); font-weight: 600; } .tp-code em { color: var(--indigo); font-style: normal; }
.tp-phone { position: absolute; left: 50%; bottom: -30px; transform: translateX(-50%); width: 68px; height: 130px; border: 3px solid var(--text); border-radius: 14px; background: #fff; }
.tp-phone::before { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 20px; height: 3px; border-radius: 2px; background: var(--text); }
.tp-phone i { position: absolute; left: 8px; right: 8px; height: 5px; border-radius: 3px; background: var(--zinc-100); }
.tp-phone i:nth-child(1) { top: 18px; background: var(--gradient); height: 18px; border-radius: 5px; }
.tp-phone i:nth-child(2) { top: 44px; } .tp-phone i:nth-child(3) { top: 54px; width: 60%; }
.tp-store { position: absolute; inset: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.tp-store i { background: #fff; border: 1px solid var(--border); border-radius: 6px; display: block; position: relative; }
.tp-store i::before { content: ""; position: absolute; left: 6px; right: 6px; top: 6px; height: 40%; border-radius: 4px; background: var(--violet-100); }
.tp-store i::after { content: ""; position: absolute; left: 6px; width: 50%; bottom: 8px; height: 5px; border-radius: 3px; background: var(--border); }

/* ---------- Model chips ---------- */
.model-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.model-chip {
  display: flex; flex-direction: column; gap: 6px; padding: 14px 18px; min-width: 200px; flex: 1 1 200px; max-width: 280px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.model-chip:hover { box-shadow: var(--shadow-violet); transform: translateY(-2px); }
.model-chip .name { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; }
.model-chip .name i { width: 10px; height: 10px; border-radius: 3px; background: var(--gradient); display: block; }
.model-chip .models { font-size: 13px; color: var(--muted); }

/* ---------- Feature deep-dive rows ---------- */
.feature-row { display: grid; gap: 28px; align-items: center; grid-template-columns: 1fr; padding: 40px 0; }
.feature-row + .feature-row { border-top: 1px solid var(--border); }
.feature-row h3 { font-size: 26px; margin: 12px 0 12px; letter-spacing: -0.02em; font-weight: 700; }
.feature-row p { color: var(--muted); font-size: 16px; }
.feature-row .card-list { font-size: 15px; }
.feature-visual {
  border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-md); overflow: hidden; padding: 16px;
  font-size: 12px;
}
@media (min-width: 1024px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 64px; padding: 56px 0; }
  .feature-row.reverse .feature-copy { order: 2; }
  .feature-row h3 { font-size: 30px; }
}

/* mini mockup pieces */
.mm-bar { display: flex; align-items: center; gap: 8px; padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--border); }
.mm-bar .t { font-weight: 600; font-size: 12px; }
.mm-bar .r { margin-left: auto; display: flex; gap: 6px; }
.mm-line { height: 8px; border-radius: 4px; background: var(--zinc-100); margin-top: 8px; }
.mm-line.violet { background: var(--violet-100); }
.mm-line.w30 { width: 30%; } .mm-line.w50 { width: 50%; } .mm-line.w70 { width: 70%; } .mm-line.w90 { width: 90%; }
.mm-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mm-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mm-box { border: 1px solid var(--border); border-radius: 8px; padding: 10px; background: var(--zinc-50); }
.mm-box.light { background: #fff; }
.mm-box.dark { background: #18181b; border-color: #27272a; }
.mm-box.dark .mm-line { background: #3f3f46; }
.mm-tag { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 10.5px; font-weight: 600; background: var(--zinc-100); color: var(--muted); }
.mm-tag.violet { background: var(--violet-50); color: var(--violet-700); }
.mm-tag.emerald { background: #ecfdf5; color: #047857; }
.mm-tag.amber { background: #fffbeb; color: #b45309; }
.mm-row { display: flex; align-items: center; gap: 8px; }
.mm-row.between { justify-content: space-between; }
.mm-stack { display: flex; flex-direction: column; gap: 8px; }
.mm-kv { display: flex; justify-content: space-between; align-items: center; font-size: 12px; padding: 6px 0; border-bottom: 1px solid var(--border); }
.mm-kv:last-child { border-bottom: 0; }
.mm-kv .k { color: var(--muted); } .mm-kv .v { font-weight: 600; }
.mm-check { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 12.5px; }
.mm-check svg { width: 14px; height: 14px; flex: none; }
.mm-check.pass svg { color: var(--emerald); } .mm-check.warn svg { color: var(--amber); }
.mm-score { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.mm-score .ring {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: conic-gradient(var(--violet) 0 var(--pct, 75%), var(--zinc-100) var(--pct, 75%) 100%);
}
.mm-score .ring b { width: 50px; height: 50px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-size: 15px; font-weight: 700; }
.mm-score .lbl { font-weight: 600; font-size: 13px; }
.mm-score .sub { color: var(--muted); font-size: 11.5px; }
.mm-btn { display: inline-flex; align-items: center; justify-content: center; padding: 6px 12px; border-radius: 7px; font-size: 11.5px; font-weight: 600; background: var(--gradient); color: #fff; }
.mm-btn.ghost { background: #fff; border: 1px solid var(--border); color: var(--text); }
.mm-avatars { display: flex; }
.mm-avatars i { width: 24px; height: 24px; border-radius: 50%; border: 2px solid #fff; display: grid; place-items: center; font-size: 9px; font-weight: 700; color: #fff; margin-left: -6px; }
.mm-avatars i:first-child { margin-left: 0; }
.mm-avatars i:nth-child(1) { background: var(--violet); } .mm-avatars i:nth-child(2) { background: var(--indigo); } .mm-avatars i:nth-child(3) { background: var(--emerald); }
.mm-history { list-style: none; display: flex; flex-direction: column; }
.mm-history li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 12px; }
.mm-history li:last-child { border-bottom: 0; }
.mm-history li i { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); flex: none; }
.mm-history li.current i { background: var(--violet); box-shadow: 0 0 0 3px var(--violet-100); }
.mm-history li .when { margin-left: auto; color: var(--muted-2); font-size: 11px; }
.mm-history li .restore { color: var(--violet); font-weight: 600; font-size: 11px; }
.mm-deploy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mm-deploy span { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 6px; border: 1px solid var(--border); border-radius: 8px; font-size: 11px; font-weight: 600; background: #fff; text-align: center; }
.mm-deploy span svg { width: 14px; height: 14px; color: var(--violet); flex: none; }
.mm-fonts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.mm-fonts span { padding: 6px; border: 1px solid var(--border); border-radius: 6px; text-align: center; font-size: 11px; }
.mm-slider { height: 4px; border-radius: 2px; background: var(--zinc-100); position: relative; margin: 10px 0; }
.mm-slider::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: var(--v, 60%); background: var(--violet); border-radius: 2px; }
.mm-slider::after { content: ""; position: absolute; top: 50%; left: var(--v, 60%); width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 2px solid var(--violet); transform: translate(-50%, -50%); }
.mm-layers { list-style: none; font-family: var(--mono); font-size: 11px; color: var(--muted); }
.mm-layers li { padding: 3px 0; }
.mm-layers li.sel { color: var(--violet-700); background: var(--violet-50); border-radius: 4px; padding-left: 4px; }
.mm-layers .in1 { padding-left: 14px; } .mm-layers .in2 { padding-left: 28px; }
.mm-comp { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.mm-comp .cp { height: 54px; background: var(--zinc-50); position: relative; }
.mm-comp .cp::before { content: ""; position: absolute; left: 10px; top: 12px; width: 40%; height: 7px; border-radius: 4px; background: var(--border-strong); }
.mm-comp .cp::after { content: ""; position: absolute; left: 10px; top: 26px; width: 60%; height: 5px; border-radius: 3px; background: var(--border); }
.mm-comp .cp.dark { background: #18181b; } .mm-comp .cp.dark::before { background: #52525b; } .mm-comp .cp.dark::after { background: #3f3f46; }
.mm-comp .cn { padding: 6px 10px; font-size: 11px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.mm-comp .cn small { color: var(--muted-2); font-weight: 500; }

/* ---------- Web Store spotlight band ---------- */
.band-violet {
  background: linear-gradient(180deg, var(--violet-50) 0%, #fff 100%);
  border-top: 1px solid var(--violet-100); border-bottom: 1px solid var(--violet-100);
}
.store-spotlight { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .store-spotlight { grid-template-columns: 1.05fr 1fr; gap: 64px; } }
.store-mock { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-violet); overflow: hidden; }
.store-mock .sm-top { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 12px; font-weight: 600; }
.store-mock .sm-top .cart { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 500; }
.store-mock .sm-top .cart b { display: inline-grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; background: var(--violet); color: #fff; font-size: 9px; }
.store-mock .sm-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 16px; }
.store-mock .sm-product { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.store-mock .sm-product .img { height: 70px; background: linear-gradient(135deg, var(--violet-100), var(--indigo-50)); }
.store-mock .sm-product .img.b { background: linear-gradient(135deg, #fef3c7, var(--violet-50)); }
.store-mock .sm-product .img.c { background: linear-gradient(135deg, #d1fae5, var(--indigo-50)); }
.store-mock .sm-product .meta { padding: 8px 10px; font-size: 11px; }
.store-mock .sm-product .meta b { display: block; font-weight: 600; }
.store-mock .sm-product .meta span { color: var(--muted); }
.store-mock .sm-order { margin: 0 16px 16px; border: 1px solid var(--border); border-radius: 10px; padding: 12px; font-size: 12px; background: var(--zinc-50); }
.store-mock .sm-order .row { display: flex; justify-content: space-between; padding: 4px 0; }
.store-mock .sm-order .row.total { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 8px; font-weight: 600; }
.store-mock .sm-order .paid { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: #047857; }

/* ---------- Style preset tiles ---------- */
.preset-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .preset-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.preset {
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.preset:hover { transform: translateY(-3px); box-shadow: var(--shadow-violet); }
.preset .pv { height: 130px; position: relative; overflow: hidden; }
.preset .pn { padding: 10px 14px; font-size: 13.5px; font-weight: 600; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.preset .pn small { color: var(--muted-2); font-weight: 500; font-size: 11.5px; }

.pv-minimal { background: #fff; padding: 22px; }
.pv-minimal i { display: block; height: 6px; border-radius: 3px; background: #e4e4e7; margin-top: 8px; }
.pv-minimal i:first-child { height: 12px; width: 55%; background: #18181b; margin: 8px 0 12px; }
.pv-minimal i:nth-child(2) { width: 80%; } .pv-minimal i:nth-child(3) { width: 65%; }

.pv-bold { background: #7c3aed; padding: 18px; }
.pv-bold b { display: block; color: #fff; font-size: 28px; font-weight: 800; letter-spacing: -0.04em; line-height: .95; text-transform: uppercase; }
.pv-bold i { display: block; width: 60px; height: 14px; background: #fde047; margin-top: 12px; border-radius: 2px; }

.pv-glass { background: linear-gradient(135deg, #c4b5fd, #818cf8 60%, #f0abfc); padding: 18px; position: relative; }
.pv-glass::before { content: ""; position: absolute; width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.4); right: -20px; top: -20px; }
.pv-glass i { display: block; position: relative; background: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.6); border-radius: 12px; height: 70px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); margin-top: 12px; }
.pv-glass i::before { content: ""; position: absolute; left: 12px; top: 14px; width: 50%; height: 8px; border-radius: 4px; background: rgba(255,255,255,.9); }
.pv-glass i::after { content: ""; position: absolute; left: 12px; top: 30px; width: 70%; height: 6px; border-radius: 3px; background: rgba(255,255,255,.6); }

.pv-brutal { background: #fef08a; padding: 14px; }
.pv-brutal b { display: block; border: 3px solid #000; background: #fff; padding: 8px 10px; font-family: var(--mono); font-weight: 700; font-size: 13px; box-shadow: 5px 5px 0 #000; text-transform: uppercase; }
.pv-brutal i { display: block; width: 70px; height: 22px; background: #000; margin-top: 16px; box-shadow: 4px 4px 0 #7c3aed; }

.pv-editorial { background: #fff; padding: 18px 22px; font-family: Georgia, "Times New Roman", serif; }
.pv-editorial b { display: block; font-size: 24px; font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; font-style: italic; }
.pv-editorial i { display: block; height: 4px; background: #e4e4e7; margin-top: 8px; }
.pv-editorial i:first-of-type { margin-top: 12px; width: 100%; height: 2px; background: #18181b; }
.pv-editorial .cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }

.pv-bento { background: #fafafa; padding: 12px; display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; }
.pv-bento i { display: block; background: #fff; border: 1px solid #e4e4e7; border-radius: 10px; }
.pv-bento i:first-child { grid-row: span 2; background: linear-gradient(135deg, #ede9fe, #fff); }
.pv-bento i:nth-child(3) { background: #18181b; }

.pv-deco { background: #0f172a; padding: 16px; position: relative; overflow: hidden; }
.pv-deco::before { content: ""; position: absolute; inset: 10px; border: 1px solid #d4af37; }
.pv-deco::after { content: ""; position: absolute; left: 50%; top: -30px; width: 120px; height: 120px; transform: translateX(-50%); background: repeating-conic-gradient(from 0deg, #d4af37 0 6deg, transparent 6deg 24deg); border-radius: 50%; opacity: .55; }
.pv-deco b { position: absolute; left: 0; right: 0; bottom: 22px; text-align: center; color: #d4af37; font-family: Georgia, serif; letter-spacing: .28em; font-size: 12px; text-transform: uppercase; }

.pv-magazine { background: #fff; padding: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pv-magazine .big { grid-column: span 2; height: 56px; background: linear-gradient(90deg, #18181b 0 45%, #ef4444 45% 100%); position: relative; }
.pv-magazine .big::after { content: "ISSUE 01"; position: absolute; left: 8px; bottom: 6px; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .2em; }
.pv-magazine i { display: block; height: 32px; background: #f4f4f5; border-top: 2px solid #18181b; }

/* ---------- Pricing ---------- */
.toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 36px; font-size: 14.5px; font-weight: 500; color: var(--muted); }
.toggle-wrap .lbl.active { color: var(--text); font-weight: 600; }
.switch {
  position: relative; width: 52px; height: 30px; border-radius: 999px; background: var(--border-strong); transition: background .2s; flex: none;
}
.switch[aria-checked="true"] { background: var(--violet); }
.switch::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: transform .25s var(--ease);
}
.switch[aria-checked="true"]::after { transform: translateX(22px); }
.save-chip { font-size: 12px; }

.pricing-grid { display: grid; gap: 20px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }
.plan { position: relative; display: flex; flex-direction: column; padding: 28px 24px; }
.plan.popular { border-color: var(--violet); box-shadow: 0 0 0 1px var(--violet), var(--shadow-violet); }
.plan .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 4px 12px; border-radius: 999px; background: var(--gradient); color: #fff; font-size: 12px; font-weight: 600; white-space: nowrap;
}
.plan .plan-name { font-size: 18px; font-weight: 700; }
.plan .plan-desc { color: var(--muted); font-size: 14px; margin-top: 6px; min-height: 42px; }
.plan .price { margin: 18px 0 6px; display: flex; align-items: baseline; gap: 4px; }
.plan .price .amt { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.plan .price .per { color: var(--muted); font-size: 14px; }
.plan .billed { font-size: 12.5px; color: var(--muted-2); min-height: 20px; }
.plan .btn { margin: 20px 0; }
.plan .card-list { margin-top: 0; }
.plan .card-list li svg { color: var(--emerald); }

.compare { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 720px; }
.compare th, .compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: middle; }
.compare thead th { position: sticky; top: var(--header-h); background: #fff; z-index: 1; font-size: 15px; box-shadow: 0 1px 0 var(--border); }
.compare th:not(:first-child), .compare td:not(:first-child) { text-align: center; width: 16%; }
.compare tbody th { font-weight: 500; color: var(--text); }
.compare tbody tr.group th { background: var(--bg-soft); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding-top: 22px; }
.compare td { color: var(--muted); }
.compare .yes { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #ecfdf5; color: #047857; }
.compare .yes svg { width: 13px; height: 13px; }
.compare .no { color: var(--border-strong); }
.compare .popular-col { background: var(--violet-50); }
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; -webkit-overflow-scrolling: touch; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; overflow: hidden; box-shadow: var(--shadow); }
.acc-item + .acc-item { border-top: 1px solid var(--border); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left;
  padding: 18px 20px; font-weight: 600; font-size: 16px; min-height: 56px; transition: background .15s;
}
.acc-trigger:hover { background: var(--zinc-50); }
.acc-trigger:focus-visible { outline-offset: -3px; }
.acc-trigger svg { width: 20px; height: 20px; flex: none; color: var(--muted-2); transition: transform .25s var(--ease); }
.acc-trigger[aria-expanded="true"] svg { transform: rotate(180deg); color: var(--violet); }
.acc-panel { padding: 0 20px 20px; color: var(--muted); font-size: 15.5px; }
.acc-panel[hidden] { display: none; }
.acc-panel p + p { margin-top: 10px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--gradient); color: #fff; padding: 72px 0; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 80% 20%, rgba(255,255,255,.18), transparent 70%);
}
.cta-band h2 { color: #fff; font-size: 32px; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 560px; margin: 0 auto 28px; }
.cta-band .container { position: relative; text-align: center; }
@media (min-width: 768px) { .cta-band { padding: 96px 0; } .cta-band h2 { font-size: 40px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 56px 0 32px; font-size: 14px; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr 1fr; }
.footer-brand { grid-column: 1 / -1; max-width: 320px; }
.footer-brand p { color: var(--muted); margin-top: 14px; }
.footer-col h2 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); display: inline-block; padding: 2px 0; }
.footer-col a:hover { color: var(--violet); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted-2); }
.social { display: flex; gap: 8px; list-style: none; }
.social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); background: #fff; color: var(--muted); }
.social a:hover { color: var(--violet); border-color: var(--violet-200); }
.social svg { width: 18px; height: 18px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } .footer-brand { grid-column: auto; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 56px 0 40px; text-align: center; position: relative; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(55% 60% at 50% 0%, rgba(124,58,237,.10), transparent 70%);
}
.page-hero h1 { font-size: 36px; margin: 18px 0 16px; letter-spacing: -0.03em; }
.page-hero .lead { max-width: 620px; margin: 0 auto; }
.page-hero .btn-group { margin-top: 28px; }
@media (min-width: 768px) { .page-hero { padding: 80px 0 56px; } .page-hero h1 { font-size: 52px; } }

/* ---------- Sticky sub-nav (features) ---------- */
.subnav {
  position: sticky; top: var(--header-h); z-index: 90;
  background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.subnav ul { list-style: none; display: flex; gap: 4px; overflow-x: auto; padding: 8px 0; scrollbar-width: none; -ms-overflow-style: none; }
.subnav ul::-webkit-scrollbar { display: none; }
.subnav a { display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; border-radius: 999px; white-space: nowrap; font-size: 13.5px; font-weight: 500; color: var(--muted); }
.subnav a:hover { color: var(--text); background: var(--zinc-100); }
.subnav a.active { color: var(--violet-700); background: var(--violet-50); font-weight: 600; }

.feature-group { padding: 56px 0; }
.feature-group + .feature-group { border-top: 1px solid var(--border); }
.feature-group h2 { font-size: 28px; margin-bottom: 8px; }
.feature-group .group-intro { color: var(--muted); margin-bottom: 28px; max-width: 640px; font-size: 16px; }
@media (min-width: 768px) { .feature-group { padding: 72px 0; } .feature-group h2 { font-size: 32px; } }

/* ---------- Store page ---------- */
.flow { display: grid; gap: 12px; grid-template-columns: 1fr; counter-reset: flow; }
.flow-step { position: relative; padding: 20px; }
.flow-step .n { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: var(--gradient); color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.flow-step h3 { font-size: 16px; margin-bottom: 6px; }
.flow-step p { font-size: 14px; }
.flow-arrow { display: none; }
@media (min-width: 1024px) {
  .flow { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .flow-step::after {
    content: ""; position: absolute; top: 28px; right: -14px; width: 12px; height: 12px;
    border-top: 2px solid var(--border-strong); border-right: 2px solid var(--border-strong); transform: rotate(45deg);
  }
  .flow-step:last-child::after { display: none; }
}
.explainer { display: grid; gap: 28px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .explainer { grid-template-columns: 1fr 1fr; gap: 64px; } .explainer.reverse .explainer-copy { order: 2; } }
.explainer h2 { font-size: 28px; margin-bottom: 12px; }
.explainer p { color: var(--muted); }
@media (min-width: 768px) { .explainer h2 { font-size: 34px; } }
.key-box { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-md); padding: 20px; font-size: 13px; }
.key-box .kb-title { font-weight: 600; font-size: 14px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.key-box label { display: block; font-size: 11.5px; font-weight: 600; color: var(--muted); margin: 10px 0 4px; }
.key-box .kfield { border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; font-family: var(--mono); font-size: 11.5px; color: var(--muted); display: flex; justify-content: space-between; align-items: center; background: var(--zinc-50); }
.key-box .kfield svg { width: 14px; height: 14px; color: var(--emerald); }
.key-box .note { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--muted); font-size: 12px; }
.key-box .note svg { width: 14px; height: 14px; color: var(--violet); flex: none; }
.mail-mock { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-md); overflow: hidden; font-size: 13px; }
.mail-mock .mh { padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--zinc-50); color: var(--muted); font-size: 12px; }
.mail-mock .mh b { color: var(--text); font-weight: 600; }
.mail-mock .mb { padding: 20px 16px; }
.mail-mock .mb p { margin-bottom: 14px; color: var(--muted); }
.mail-mock .mb .mm-btn { display: inline-flex; }
.mail-mock .acct { margin: 16px; border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.mail-mock .acct .mm-kv { font-size: 12px; }

/* ---------- Templates ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px; }
.filter-btn {
  min-height: 40px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--border); background: #fff;
  font-size: 14px; font-weight: 500; color: var(--muted); transition: all .15s;
}
.filter-btn:hover { border-color: var(--violet-200); color: var(--text); }
.filter-btn[aria-pressed="true"] { background: var(--violet); border-color: var(--violet); color: #fff; }
.template-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.template-card .tc-preview { height: 150px; position: relative; border-bottom: 1px solid var(--border); overflow: hidden; }
.template-card .tc-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.template-card h3 { font-size: 17px; margin: 0; }
.template-card p { font-size: 14px; flex: 1; }
.template-card .btn { align-self: flex-start; min-height: 40px; padding: 8px 16px; font-size: 14px; }
.template-card.is-hidden { display: none; }
/* template preview variants */
.tv { position: absolute; inset: 14px; display: flex; flex-direction: column; gap: 6px; }
.tv i { display: block; height: 7px; border-radius: 4px; background: var(--border); }
.tv .h { height: 12px; width: 55%; background: var(--text); margin-bottom: 4px; }
.tv .a { background: var(--violet-200); width: 30%; }
.tv .row { display: flex; gap: 6px; margin-top: auto; }
.tv .row i { flex: 1; height: 34px; border-radius: 6px; background: var(--zinc-100); border: 1px solid var(--border); }
.tv-1 { background: #fff; } .tv-2 { background: var(--zinc-50); } .tv-3 { background: linear-gradient(180deg, var(--violet-50), #fff); }
.tv-4 { background: linear-gradient(180deg, #ecfdf5, #fff); } .tv-5 { background: linear-gradient(180deg, #fffbeb, #fff); } .tv-6 { background: linear-gradient(180deg, var(--indigo-50), #fff); }
.tv-dark { background: #18181b; } .tv-dark .tv i { background: #3f3f46; } .tv-dark .tv .h { background: #fff; } .tv-dark .tv .a { background: var(--violet); } .tv-dark .tv .row i { background: #27272a; border-color: #3f3f46; }
.empty-state { text-align: center; padding: 40px; color: var(--muted); display: none; }
.empty-state.show { display: block; }

/* ---------- Contact / forms ---------- */
.contact-grid { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 64px; } }
.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: 14px; }
.field .hint { font-size: 13px; color: var(--muted-2); }
.input, .textarea, .select {
  width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--border-strong); border-radius: 10px;
  background: #fff; color: var(--text); font-size: 15px; transition: border-color .15s, box-shadow .15s;
}
.input:hover, .textarea:hover { border-color: var(--muted-2); }
.input:focus, .textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124,58,237,.18); outline: none; }
.textarea { min-height: 150px; resize: vertical; }
.captcha-placeholder {
  display: flex; align-items: center; gap: 12px; border: 1px dashed var(--border-strong); border-radius: 10px; padding: 14px 16px;
  background: var(--zinc-50); color: var(--muted); font-size: 13.5px; min-height: 72px;
}
.captcha-placeholder i { width: 28px; height: 28px; border-radius: 6px; border: 2px solid var(--border-strong); background: #fff; flex: none; }
.form-status { font-size: 14px; min-height: 22px; }
.form-status.ok { color: #047857; } .form-status.err { color: #b45309; }
.contact-aside .card + .card { margin-top: 16px; }
.contact-aside h2, .form h2 { font-size: 20px; margin-bottom: 4px; }
.contact-aside dl { display: grid; gap: 4px; margin: 0; }
.contact-aside dt { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-2); }
.contact-aside dd { margin: 0 0 12px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; } .reveal[data-delay="2"] { transition-delay: .16s; } .reveal[data-delay="3"] { transition-delay: .24s; } .reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .stream-cursor::after { animation: none; }
}

/* =====================================================================
   Alternative home (index-alt.html) — ClickUp-style layout
   ===================================================================== */
.alt { --ink: #101012; --grey: #8a8a93; --line: #ebebed; }
.alt h1, .alt h2, .alt h3 { letter-spacing: -0.035em; }
.alt .dim { color: var(--grey); }
.alt .pill-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 10px 22px; border-radius: 999px;
  background: var(--ink); color: #fff; font-weight: 600; font-size: 15px; border: 1px solid var(--ink); white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.alt .pill-btn:hover { color: #fff; background: #26262b; transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(0,0,0,.4); }
.alt .pill-btn.light { background: var(--zinc-100); color: var(--text); border-color: var(--zinc-100); }
.alt .pill-btn.light:hover { background: var(--border); color: var(--text); box-shadow: none; }
.alt .pill-btn.violet { background: var(--gradient); border-color: transparent; }
.alt .pill-btn.white { background: #fff; color: var(--ink); border-color: #fff; }
.alt .pill-btn.white:hover { background: #f4f4f5; color: var(--ink); }
.alt .pill-btn.sm { min-height: 36px; padding: 6px 16px; font-size: 14px; }
.alt .pill-btn.lg { min-height: 54px; padding: 14px 30px; font-size: 17px; }
.alt .label-xs { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 500; }

/* announcement bar */
.alt-announce { background: var(--zinc-50); border-bottom: 1px solid var(--border); font-size: 13.5px; text-align: center; padding: 8px 16px; color: var(--text); }
.alt-announce a { color: var(--text); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.alt-announce a b { font-weight: 700; }
.alt-announce a:hover { color: var(--violet); }
.alt-announce svg { width: 14px; height: 14px; }

/* header */
.alt-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.alt-header .header-inner { height: 64px; }
.alt-nav { display: none; }
.alt-nav > ul { display: flex; gap: 2px; list-style: none; }
.alt-nav > ul > li { position: relative; }
.alt-nav > ul > li > a, .alt-nav > ul > li > button {
  display: inline-flex; align-items: center; gap: 4px; min-height: 40px; padding: 0 12px; border-radius: 8px;
  color: var(--text); font-weight: 500; font-size: 14.5px;
}
.alt-nav > ul > li > a:hover, .alt-nav > ul > li > button:hover, .alt-nav > ul > li:focus-within > button { background: var(--zinc-100); color: var(--text); }
.alt-nav button svg { width: 14px; height: 14px; color: var(--muted-2); transition: transform .2s; }
.alt-nav li:hover > button svg, .alt-nav li:focus-within > button svg { transform: rotate(180deg); }
.alt-menu {
  position: absolute; left: 0; top: calc(100% + 8px); min-width: 280px; padding: 8px; list-style: none;
  background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 16px 40px -12px rgba(0,0,0,.18), var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.alt-nav li:hover > .alt-menu, .alt-nav li:focus-within > .alt-menu { opacity: 1; visibility: visible; transform: none; }
.alt-menu a { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; border-radius: 10px; color: var(--text); }
.alt-menu a:hover { background: var(--zinc-50); color: var(--text); }
.alt-menu a .icon-box { margin: 0; width: 32px; height: 32px; border-radius: 8px; flex: none; }
.alt-menu a .icon-box svg { width: 16px; height: 16px; }
.alt-menu a b { display: block; font-size: 14px; font-weight: 600; }
.alt-menu a span { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.alt-actions { display: none; align-items: center; gap: 8px; }
.alt-actions .demo { font-size: 14px; font-weight: 500; color: var(--muted); padding: 0 10px; }
.alt-actions .demo:hover { color: var(--text); }
@media (min-width: 1024px) { .alt-nav, .alt-actions { display: flex; } .alt .menu-btn { display: none; } }

/* hero */
.alt-hero { padding: 40px 0 32px; }
.alt-hero-grid { display: grid; gap: 36px; grid-template-columns: 1fr; align-items: center; }
.alt-hero .kicker {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px 6px 10px; border-radius: 999px; border: 1px solid var(--border); background: #fff;
  font-size: 13px; font-weight: 500; color: var(--text); box-shadow: var(--shadow);
}
.alt-hero .kicker .logo-mark { width: 18px; height: 18px; border-radius: 5px; box-shadow: none; }
.alt-hero .kicker .logo-mark svg { width: 11px; height: 11px; }
.alt-hero .kicker svg.arr { width: 12px; height: 12px; color: var(--muted-2); }
.alt-hero h1 { font-size: 40px; line-height: 1.05; margin: 18px 0 20px; font-weight: 600; letter-spacing: -0.045em; }
.alt-checks { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 15.5px; color: var(--muted); }
.alt-checks li { display: flex; gap: 10px; align-items: flex-start; }
.alt-checks li svg { width: 16px; height: 16px; color: var(--violet); flex: none; margin-top: 4px; }
.alt-checks b { color: var(--text); }
.alt-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 26px 0 30px; }
.alt-cta-row .fine { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.alt-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.alt-tab {
  display: inline-flex; align-items: center; gap: 6px; min-height: 34px; padding: 5px 12px; border-radius: 999px; border: 1px solid var(--border);
  background: #fff; font-size: 13px; font-weight: 500; color: var(--text); transition: border-color .15s, background .15s;
}
.alt-tab svg { width: 14px; height: 14px; color: var(--muted-2); }
.alt-tab:hover { border-color: var(--border-strong); background: var(--zinc-50); }
.alt-tab[aria-selected="true"] { border-color: var(--violet); color: var(--violet-700); background: var(--violet-50); }
.alt-tab[aria-selected="true"] svg { color: var(--violet); }

.alt-shot {
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: #fff;
  box-shadow: 0 30px 70px -30px rgba(24,24,27,.3), 0 1px 3px rgba(0,0,0,.06);
  display: grid; grid-template-columns: 44px 1fr; min-height: 420px; font-size: 12px;
}
.alt-shot .rail { background: #101012; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 12px 0; }
.alt-shot .rail i { width: 24px; height: 24px; border-radius: 7px; background: #2a2a30; display: block; }
.alt-shot .rail i:first-child { background: var(--gradient); }
.alt-shot .rail i.on { background: #3f3f46; outline: 2px solid var(--violet); }
.alt-shot .stage { display: grid; grid-template-rows: auto 1fr; min-width: 0; }
.alt-shot .topbar { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-bottom: 1px solid var(--border); flex-wrap: wrap; min-width: 0; }
.alt-shot .topbar .ws { white-space: nowrap; }
.alt-shot { min-width: 0; max-width: 100%; }
.alt-shot .stage, .alt-shot .panel, .alt-shot .split, .alt-shot .split > * { min-width: 0; }
.alt-shot .code { overflow-x: auto; white-space: nowrap; }
.alt-shot .mm-deploy { grid-template-columns: repeat(2, 1fr); }
.alt-shot .dp { grid-template-columns: 1fr; }
@media (min-width: 640px) { .alt-shot .dp { grid-template-columns: 1fr 190px; } .alt-shot .mm-deploy { grid-template-columns: repeat(3, 1fr); } }
.alt-hero-grid > * { min-width: 0; }
@media (max-width: 479px) { .alt-shot .phone-wrap { flex-direction: column; align-items: center; } .alt-announce { font-size: 12.5px; } }
.alt-shot .topbar .ws { display: inline-flex; align-items: center; gap: 6px; padding: 3px 8px; border-radius: 6px; background: var(--zinc-100); font-weight: 600; font-size: 11.5px; }
.alt-shot .topbar .ws i { width: 8px; height: 8px; border-radius: 50%; background: var(--violet); display: block; }
.alt-shot .topbar .crumb { color: var(--muted-2); font-size: 11.5px; }
.alt-shot .topbar .grow { flex: 1; }
.alt-shot .topbar .pub { padding: 4px 10px; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 600; font-size: 11px; }
.alt-shot .panel { display: none; padding: 12px; min-width: 0; }
.alt-shot .panel.on { display: block; }
.alt-shot .toolrow { display: flex; gap: 4px; margin-bottom: 10px; flex-wrap: wrap; }
.alt-shot .toolrow span { padding: 3px 9px; border-radius: 6px; font-size: 11px; font-weight: 600; color: var(--muted-2); }
.alt-shot .toolrow span.on { background: var(--zinc-100); color: var(--text); }
.alt-shot .split { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 640px) { .alt-shot .split { grid-template-columns: 200px 1fr; } }
.alt-shot .chatcol { display: flex; flex-direction: column; gap: 8px; }
.alt-shot .fake-site { min-height: 240px; }
.alt-shot .code { background: #101012; color: #d4d4d8; border-radius: 10px; padding: 12px; font-family: var(--mono); font-size: 11px; line-height: 1.65; min-height: 200px; overflow: hidden; }
.alt-shot .code b { color: #c4b5fd; font-weight: 500; } .alt-shot .code em { color: #a5b4fc; font-style: normal; } .alt-shot .code i { color: #6ee7b7; font-style: normal; } .alt-shot .code u { color: #71717a; text-decoration: none; }
.alt-shot .console { border: 1px solid var(--border); border-radius: 10px; padding: 10px; font-family: var(--mono); font-size: 11px; color: var(--muted); background: var(--zinc-50); }
.alt-shot .console .ok { color: #047857; }
.alt-shot .phone-wrap { display: flex; justify-content: center; gap: 24px; align-items: flex-start; }
.alt-shot .phone { width: 150px; height: 290px; border: 6px solid #101012; border-radius: 26px; background: #fff; position: relative; overflow: hidden; }
.alt-shot .phone::before { content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 44px; height: 8px; border-radius: 4px; background: #101012; }
.alt-shot .phone .ph { position: absolute; left: 12px; right: 12px; height: 8px; border-radius: 4px; background: var(--zinc-100); }
.alt-shot .phone .ph.hero { top: 30px; height: 70px; border-radius: 10px; background: var(--gradient); }
.alt-shot .phone .ph.t1 { top: 112px; width: 60%; background: var(--text); } .alt-shot .phone .ph.t2 { top: 128px; } .alt-shot .phone .ph.t3 { top: 142px; width: 70%; }
.alt-shot .phone .ph.card { top: 166px; height: 44px; border-radius: 8px; border: 1px solid var(--border); background: #fff; }
.alt-shot .phone .ph.card2 { top: 218px; height: 44px; border-radius: 8px; border: 1px solid var(--border); background: #fff; }
.alt-shot .qr { width: 92px; height: 92px; border: 1px solid var(--border); border-radius: 10px; padding: 8px; background: #fff;
  background-image: linear-gradient(90deg, #101012 2px, transparent 2px), linear-gradient(#101012 2px, transparent 2px); background-size: 10px 10px; background-clip: content-box; }
.alt-shot .qr-wrap { text-align: center; color: var(--muted); font-size: 11px; }
.alt-shot .qr-wrap b { display: block; color: var(--text); margin-top: 6px; }
.alt-shot .dp { display: grid; grid-template-columns: 1fr 190px; gap: 10px; }
.alt-shot .dp .mockup-panel { display: block; border-left: 1px solid var(--border); padding-left: 10px; }
.alt-shot .scores { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 10px; }
.alt-shot .scores .mm-box { background: #fff; }
.alt-shot .rows .mm-check { border-bottom: 1px solid var(--border); }
.alt-shot .rows .mm-check:last-child { border-bottom: 0; }
.alt-shot .store-mock { box-shadow: none; border: 0; }
.alt-shot .store-mock .sm-products { padding: 0 0 12px; }
.alt-shot .store-mock .sm-order { margin: 0; }
@media (min-width: 1024px) {
  .alt-hero { padding: 64px 0 40px; }
  .alt-hero-grid { grid-template-columns: 1.05fr 1.2fr; gap: 48px; }
  .alt-hero h1 { font-size: 58px; }
}
@media (min-width: 1280px) { .alt-hero h1 { font-size: 64px; } }

/* partner row */
.alt-partners { padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.alt-partners .inner { display: flex; align-items: center; gap: 24px 40px; flex-wrap: wrap; justify-content: center; }
.alt-partners .label-xs { flex: none; }
.alt-partners ul { list-style: none; display: flex; flex-wrap: wrap; gap: 16px 36px; justify-content: center; align-items: center; }
.alt-partners li { font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: #52525b; opacity: .8; }
.alt-partners li.mono { font-family: var(--mono); font-weight: 600; font-size: 15px; letter-spacing: 0; }
.alt-partners li.serif { font-family: Georgia, serif; font-weight: 400; font-size: 19px; }

/* big statement headline */
.alt-statement { text-align: center; max-width: 820px; margin: 0 auto; }
.alt-statement h2 { font-size: 34px; font-weight: 600; line-height: 1.08; letter-spacing: -0.045em; }
.alt-statement p { font-size: 17px; color: var(--muted); margin-top: 14px; }
@media (min-width: 768px) { .alt-statement h2 { font-size: 48px; } }
@media (min-width: 1024px) { .alt-statement h2 { font-size: 56px; } }

/* three-column journey with squiggle */
.alt-journey { position: relative; margin-top: 48px; }
.alt-journey .squiggle { display: none; }
.alt-journey .cols { display: grid; grid-template-columns: 1fr; gap: 24px; }
.alt-journey .col { padding: 24px 20px 8px; border-left: 1px solid var(--border); }
.alt-journey .col .chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; min-height: 40px; }
.alt-journey .col .chips i { width: 36px; height: 36px; border-radius: 10px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); display: grid; place-items: center; color: var(--violet); }
.alt-journey .col .chips i svg { width: 16px; height: 16px; }
.alt-journey .col .chips .bubble { padding: 8px 12px; border-radius: 12px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); font-size: 12.5px; font-weight: 500; }
.alt-journey .col h3 { font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.alt-journey .col p { color: var(--muted); font-size: 15px; }
.alt-journey .col p b { color: var(--text); }
@media (min-width: 768px) {
  .alt-journey .cols { grid-template-columns: repeat(3, 1fr); }
  .alt-journey .squiggle { display: block; width: 100%; height: 120px; margin-bottom: -40px; color: var(--border-strong); }
}

/* feature wall */
.alt-wall { margin-top: 48px; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; display: grid; grid-template-columns: repeat(2, 1fr); background: var(--line); gap: 1px; }
.alt-wall .cell { background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; min-height: 96px; padding: 12px 8px; text-align: center; font-size: 12.5px; color: var(--muted); font-weight: 500; }
.alt-wall .cell svg { width: 20px; height: 20px; color: var(--muted); }
.alt-wall .cell:hover { color: var(--text); background: var(--zinc-50); }
.alt-wall .cell:hover svg { color: var(--violet); }
.alt-wall .big { grid-column: span 2; grid-row: span 2; background: #fff; padding: 18px; display: flex; flex-direction: column; justify-content: flex-end; gap: 12px; position: relative; overflow: hidden; }
.alt-wall .big .art { flex: 1; min-height: 120px; border-radius: 12px; border: 1px solid var(--border); background: #fff; position: relative; overflow: hidden; }
.alt-wall .big.v1 { background: linear-gradient(160deg, #fff 30%, var(--violet-50)); }
.alt-wall .big.v2 { background: linear-gradient(160deg, #fff 30%, var(--indigo-50)); }
.alt-wall .big.v3 { background: linear-gradient(160deg, #fff 30%, #ecfdf5); }
.alt-wall .big.v4 { background: linear-gradient(160deg, #fff 30%, #fffbeb); }
.alt-wall .big .name { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 18px; font-weight: 600; color: var(--text); }
.alt-wall .big .name i { width: 22px; height: 22px; border-radius: 6px; background: var(--gradient); display: grid; place-items: center; }
.alt-wall .big .name i svg { width: 12px; height: 12px; }
.alt-wall .big a { position: absolute; inset: 0; }
.alt-wall .art .l { position: absolute; left: 12px; height: 7px; border-radius: 4px; background: var(--zinc-100); }
.alt-wall .art .l.a { top: 14px; width: 40%; background: var(--text); height: 10px; } .alt-wall .art .l.b { top: 32px; width: 65%; } .alt-wall .art .l.c { top: 46px; width: 50%; }
.alt-wall .art .btn-l { position: absolute; left: 12px; top: 64px; width: 56px; height: 16px; border-radius: 5px; background: var(--gradient); }
.alt-wall .art .cards { position: absolute; left: 12px; right: 12px; bottom: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.alt-wall .art .cards i { height: 28px; border-radius: 6px; border: 1px solid var(--border); background: #fff; display: block; }
.alt-wall .art .codeblk { position: absolute; inset: 10px; font-family: var(--mono); font-size: 10.5px; color: var(--muted); line-height: 1.6; }
.alt-wall .art .codeblk b { color: var(--violet); font-weight: 600; } .alt-wall .art .codeblk em { color: var(--indigo); font-style: normal; }
.alt-wall .art .term { position: absolute; left: 10px; right: 10px; bottom: 10px; padding: 6px 8px; border-radius: 6px; background: #101012; color: #6ee7b7; font-family: var(--mono); font-size: 10px; }
.alt-wall .art .mini-phone { position: absolute; left: 50%; top: 14px; transform: translateX(-50%); width: 64px; height: 120px; border: 3px solid #101012; border-radius: 12px; background: #fff; }
.alt-wall .art .mini-phone i { position: absolute; left: 7px; right: 7px; height: 5px; border-radius: 3px; background: var(--zinc-100); }
.alt-wall .art .mini-phone i:nth-child(1) { top: 12px; height: 18px; border-radius: 4px; background: var(--gradient); } .alt-wall .art .mini-phone i:nth-child(2) { top: 36px; } .alt-wall .art .mini-phone i:nth-child(3) { top: 46px; width: 60%; }
.alt-wall .art .os { position: absolute; bottom: 10px; left: 10px; right: 10px; display: flex; gap: 4px; justify-content: center; }
.alt-wall .art .os span { padding: 2px 8px; border-radius: 999px; border: 1px solid var(--border); font-size: 10px; font-weight: 600; background: #fff; }
.alt-wall .art .os span.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.alt-wall .art .prods { position: absolute; inset: 10px 10px auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.alt-wall .art .prods i { height: 46px; border-radius: 6px; background: var(--violet-100); display: block; }
.alt-wall .art .prods i:nth-child(2) { background: #fef3c7; } .alt-wall .art .prods i:nth-child(3) { background: #d1fae5; }
.alt-wall .art .paid { position: absolute; left: 10px; right: 10px; bottom: 10px; display: flex; justify-content: space-between; align-items: center; padding: 6px 8px; border: 1px solid var(--border); border-radius: 6px; font-size: 10.5px; background: #fff; }
.alt-wall .art .paid b { color: #047857; display: inline-flex; align-items: center; gap: 4px; }
@media (min-width: 640px) { .alt-wall { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .alt-wall { grid-template-columns: repeat(8, 1fr); } .alt-wall .cell { min-height: 108px; } }

/* big-era section */
.alt-era { text-align: center; }
.alt-era h2 { font-size: 40px; font-weight: 600; letter-spacing: -0.045em; line-height: 1; }
.alt-era .sub { font-size: 18px; color: var(--muted); margin-top: 12px; }
.alt-era .stage { position: relative; margin: 40px auto 0; max-width: 960px; border-radius: 24px; border: 1px solid var(--border); background: radial-gradient(70% 80% at 50% 100%, var(--violet-100), #fff 70%); padding: 32px 20px 0; overflow: hidden; }
.alt-era .brief { max-width: 560px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: 16px 16px 0 0; border-bottom: 0; box-shadow: 0 -10px 40px -20px rgba(124,58,237,.4); padding: 18px 20px 24px; text-align: left; font-size: 13px; }
.alt-era .brief .bh { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13px; padding-bottom: 10px; border-bottom: 1px solid var(--border); margin-bottom: 10px; }
.alt-era .brief .bh i { width: 18px; height: 18px; border-radius: 5px; background: var(--gradient); display: block; }
.alt-era .brief .mm-kv { padding: 7px 0; }
.alt-era .facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; text-align: left; }
.alt-era .facts div { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--muted); }
.alt-era .facts div svg { width: 16px; height: 16px; color: var(--violet); flex: none; margin-top: 3px; }
.alt-era .facts b { color: var(--text); display: block; font-weight: 600; }
@media (min-width: 768px) { .alt-era h2 { font-size: 64px; } .alt-era .facts { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .alt-era h2 { font-size: 80px; } }

/* dark sections */
.alt-dark { background: #0e0e11; color: #e4e4e7; }
.alt-dark h2, .alt-dark h3 { color: #fff; }
.alt-dark .dim { color: #71717a; }
.alt-dark p { color: #a1a1aa; }
.alt-dark .alt-statement p { color: #a1a1aa; }
.alt-dark .platforms { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 24px; }
.alt-dark .platforms span { padding: 6px 12px; border-radius: 999px; border: 1px solid #27272a; background: #18181b; color: #d4d4d8; font-size: 12.5px; font-weight: 500; }
.alt-three { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 48px; }
.alt-three .col { background: #151518; border: 1px solid #27272a; border-radius: 20px; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.alt-three .col h3 { font-size: 22px; font-weight: 600; }
.alt-three .col p { font-size: 15px; }
.alt-three .viz { margin-top: auto; border: 1px solid #27272a; border-radius: 12px; background: #0e0e11; padding: 14px; font-size: 12px; min-height: 180px; }
.alt-three .viz .kv { display: flex; gap: 8px; padding: 5px 0; font-family: var(--mono); font-size: 11.5px; border-bottom: 1px solid #1f1f23; }
.alt-three .viz .kv:last-child { border-bottom: 0; }
.alt-three .viz .kv .k { color: #c4b5fd; flex: none; } .alt-three .viz .kv .v { color: #d4d4d8; }
.alt-three .viz .hist { display: flex; flex-direction: column; gap: 6px; }
.alt-three .viz .hist span { padding: 6px 10px; border-radius: 8px; background: #18181b; border: 1px solid #27272a; color: #d4d4d8; font-size: 11.5px; }
.alt-three .viz .hist span.me { background: #2e1065; border-color: #4c1d95; color: #ede9fe; align-self: flex-end; }
.alt-three .viz .models { display: flex; flex-wrap: wrap; gap: 6px; }
.alt-three .viz .models span { padding: 5px 10px; border-radius: 999px; border: 1px solid #27272a; background: #18181b; color: #e4e4e7; font-size: 11.5px; font-weight: 500; }
.alt-three .viz .models span.on { border-color: var(--violet); background: #2e1065; }
@media (min-width: 1024px) { .alt-three { grid-template-columns: repeat(3, 1fr); } }

.alt-six { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 48px; }
.alt-six .card6 { background: #151518; border: 1px solid #27272a; border-radius: 20px; padding: 22px; display: flex; flex-direction: column; gap: 10px; min-height: 250px; }
.alt-six .card6 h3 { font-size: 18px; font-weight: 600; }
.alt-six .card6 p { font-size: 14px; }
.alt-six .card6 .viz { margin-top: auto; border: 1px solid #27272a; border-radius: 12px; background: #0e0e11; padding: 12px; font-size: 12px; color: #d4d4d8; }
.alt-six .status { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: #052e16; color: #6ee7b7; font-size: 11px; font-weight: 600; }
.alt-six .status.v { background: #2e1065; color: #ddd6fe; }
.alt-six .av { display: flex; gap: 8px; }
.alt-six .av span { display: flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 10px; background: #18181b; border: 1px solid #27272a; font-size: 11.5px; }
.alt-six .av span i { width: 20px; height: 20px; border-radius: 50%; background: var(--violet); display: block; }
.alt-six .av span:nth-child(2) i { background: var(--indigo); } .alt-six .av span:nth-child(3) i { background: var(--emerald); }
.alt-six .bar { height: 6px; border-radius: 3px; background: #27272a; overflow: hidden; margin-top: 6px; }
.alt-six .bar i { display: block; height: 100%; width: var(--v, 70%); background: var(--gradient); }
@media (min-width: 640px) { .alt-six { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .alt-six { grid-template-columns: repeat(3, 1fr); } }

.alt-mini-cta { text-align: center; padding-top: 56px; }
.alt-mini-cta h2 { font-size: 30px; font-weight: 600; }
.alt-mini-cta .row { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 22px; }
.alt-mini-cta .row a.more { color: #c4b5fd; font-weight: 600; }
@media (min-width: 768px) { .alt-mini-cta h2 { font-size: 40px; } }

/* audience cards */
.alt-solutions { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 40px; }
.alt-solutions > * { min-width: 0; }
.alt-sol { display: flex; flex-direction: column; gap: 14px; padding: 26px; }
.alt-sol .eyebrow { align-self: flex-start; }
.alt-sol h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.03em; }
.alt-sol > p { font-size: 15px; }
.alt-sol .inc { list-style: none; display: grid; gap: 6px; font-size: 14px; color: var(--muted); }
.alt-sol .inc li { display: flex; gap: 8px; align-items: flex-start; }
.alt-sol .inc li svg { width: 14px; height: 14px; color: var(--violet); flex: none; margin-top: 4px; }
.alt-sol .tools { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.alt-sol .tools > span { display: flex; gap: 8px; align-items: flex-start; padding: 10px; border-radius: 10px; background: var(--zinc-50); border: 1px solid var(--border); font-size: 12.5px; color: var(--muted); min-width: 0; }
.alt-sol .tools > span > span { display: block; min-width: 0; }
.alt-sol .tools > span > i { width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; }
.alt-sol .tools > span > i svg { width: 12px; height: 12px; }
.alt-sol .tools > span:nth-child(1) > i { background: var(--violet); } .alt-sol .tools > span:nth-child(2) > i { background: var(--indigo); } .alt-sol .tools > span:nth-child(3) > i { background: var(--emerald); } .alt-sol .tools > span:nth-child(4) > i { background: var(--amber); }
.alt-sol .tools b { color: var(--text); font-weight: 600; display: block; }
.alt-sol .link-arrow { margin-top: auto; }
@media (min-width: 768px) { .alt-solutions { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .alt-solutions { grid-template-columns: repeat(3, 1fr); } }

/* metric cards */
.alt-metrics { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
.alt-metrics .m { padding: 24px; }
.alt-metrics .m .n { font-size: 44px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.alt-metrics .m .t { font-weight: 600; margin: 10px 0 6px; }
.alt-metrics .m p { font-size: 13.5px; }
@media (min-width: 1024px) { .alt-metrics { grid-template-columns: repeat(4, 1fr); } .alt-metrics .m .n { font-size: 56px; } }

/* testimonials (placeholder) */
.alt-quotes { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 40px; }
.alt-quote { padding: 26px; display: flex; flex-direction: column; gap: 16px; border-style: dashed; }
.alt-quote .co { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--muted-2); }
.alt-quote blockquote { margin: 0; font-size: 18px; font-weight: 500; line-height: 1.4; color: var(--text); letter-spacing: -0.01em; }
.alt-quote .who { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.alt-quote .who i { width: 32px; height: 32px; border-radius: 50%; background: var(--zinc-100); border: 1px solid var(--border); display: block; }
.alt-quote .ph-tag { align-self: flex-start; }
@media (min-width: 768px) { .alt-quotes { grid-template-columns: repeat(3, 1fr); } }

/* trust */
.alt-trust { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 40px; }
.alt-trust .t { padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.alt-trust .t .icon-box { margin: 0; flex: none; }
.alt-trust .t b { display: block; font-weight: 600; margin-bottom: 4px; }
.alt-trust .t p { font-size: 14px; }
@media (min-width: 640px) { .alt-trust { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .alt-trust { grid-template-columns: repeat(3, 1fr); } }
.alt-langs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 28px; }
.alt-langs span { padding: 6px 14px; border-radius: 999px; border: 1px solid var(--border); background: #fff; font-size: 13px; font-weight: 500; }

/* final cta */
.alt-final { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff, var(--violet-50)); border-top: 1px solid var(--border); text-align: center; padding: 88px 0 0; }
.alt-final h2 { font-size: 36px; font-weight: 600; letter-spacing: -0.045em; max-width: 760px; margin: 0 auto 22px; }
.alt-final .devices { margin: 48px auto 0; max-width: 980px; display: grid; grid-template-columns: 1fr; gap: 0; align-items: end; justify-items: center; }
.alt-final .desk { width: 100%; border: 1px solid var(--border); border-bottom: 0; border-radius: 16px 16px 0 0; background: #fff; box-shadow: 0 -20px 60px -30px rgba(124,58,237,.5); overflow: hidden; }
.alt-final .desk .mockup-titlebar { height: 36px; }
.alt-final .desk .fake-site { border: 0; border-radius: 0; box-shadow: none; min-height: 220px; }
.alt-final .mob { display: none; }
@media (min-width: 768px) {
  .alt-final h2 { font-size: 56px; }
  .alt-final .devices { grid-template-columns: 1fr 200px; gap: 24px; }
  .alt-final .mob { display: block; width: 200px; height: 300px; border: 8px solid #101012; border-bottom: 0; border-radius: 30px 30px 0 0; background: #fff; position: relative; overflow: hidden; }
  .alt-final .mob::before { content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 60px; height: 10px; border-radius: 5px; background: #101012; }
  .alt-final .mob i { position: absolute; left: 16px; right: 16px; height: 9px; border-radius: 4px; background: var(--zinc-100); }
  .alt-final .mob i:nth-child(1) { top: 36px; height: 90px; border-radius: 12px; background: var(--gradient); } .alt-final .mob i:nth-child(2) { top: 140px; width: 60%; background: var(--text); } .alt-final .mob i:nth-child(3) { top: 158px; } .alt-final .mob i:nth-child(4) { top: 174px; width: 70%; } .alt-final .mob i:nth-child(5) { top: 200px; height: 60px; border-radius: 10px; border: 1px solid var(--border); background: #fff; }
}

/* footer (6 columns) */
.alt-footer { background: #fff; border-top: 1px solid var(--border); padding: 56px 0 32px; font-size: 14px; }
.alt-footer .cols { display: grid; gap: 28px; grid-template-columns: repeat(2, 1fr); }
.alt-footer .cols h2 { font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.alt-footer .cols ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.alt-footer .cols a { color: var(--muted); }
.alt-footer .cols a:hover { color: var(--violet); }
.alt-footer .badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.alt-footer .badges span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 10px; border: 1px solid var(--border); font-size: 11.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.alt-footer .badges span svg { width: 14px; height: 14px; color: var(--violet); }
.alt-footer .bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted-2); }
.alt-footer .bottom .links { display: flex; flex-wrap: wrap; gap: 16px; }
.alt-footer .bottom .links a { color: var(--muted); }
@media (min-width: 768px) { .alt-footer .cols { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .alt-footer .cols { grid-template-columns: repeat(6, 1fr); } }
.alt-three > *, .alt-six > *, .alt-metrics > *, .alt-quotes > *, .alt-trust > *, .alt-wall > *, .alt-journey .cols > * { min-width: 0; }
.alt .viz, .alt .card6, .alt-three .col, .alt-wall .cell { overflow-wrap: anywhere; }
.alt-six .card6 .viz.mm-row { flex-wrap: wrap; }
.alt-six .status { align-self: flex-start; }
.alt-six .av { flex-wrap: wrap; }
.alt-six .av span { white-space: nowrap; overflow-wrap: normal; }

/* =====================================================================
   index-alt visual polish — brand color, atmosphere, depth, motion
   ===================================================================== */
.alt { --glow-a: rgba(124, 58, 237, .20); --glow-b: rgba(79, 70, 229, .16); }

/* primary CTA in brand gradient; black pills stay secondary */
.alt .pill-btn.violet { background: var(--gradient); border-color: transparent; color: #fff; box-shadow: 0 10px 26px -12px rgba(124, 58, 237, .65), 0 1px 2px rgba(0, 0, 0, .08); }
.alt .pill-btn.violet:hover { background: linear-gradient(135deg, var(--violet-hover), var(--indigo)); box-shadow: 0 16px 34px -12px rgba(124, 58, 237, .7); transform: translateY(-1px); }
.alt .pill-btn:focus-visible { outline: 3px solid var(--violet-200); outline-offset: 2px; }

/* headline accent: the de-emphasised half becomes the brand-coloured half */
.alt .dim { background-image: linear-gradient(90deg, #6d28d9, #4f46e5 55%, #7c3aed); -webkit-background-clip: text; background-clip: text; color: transparent; }
.alt .alt-dark .dim { background-image: linear-gradient(90deg, #c4b5fd, #a5b4fc 55%, #ddd6fe); }

/* announcement bar */
.alt-announce { background: linear-gradient(90deg, var(--violet-50), #fff 50%, var(--indigo-50)); }
.alt-announce a b { color: var(--violet-700); }
.alt-announce svg { color: var(--violet); }

/* hero: glow + faint dot grid, glowing product mock, gentle float */
.alt-hero { position: relative; isolation: isolate; overflow: hidden; }
.alt-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(55% 60% at 80% 45%, var(--glow-a), transparent 70%), radial-gradient(40% 50% at 8% 5%, var(--glow-b), transparent 70%);
}
.alt-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: radial-gradient(var(--border-strong) 1px, transparent 1.5px); background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(75% 80% at 50% 40%, #000 20%, transparent 100%); mask-image: radial-gradient(75% 80% at 50% 40%, #000 20%, transparent 100%);
}
.alt-hero .kicker { border-color: var(--violet-200); color: var(--violet-700); }
.alt-hero .kicker svg.arr { color: var(--violet); }
.alt-checks li svg { background: var(--violet-50); border-radius: 50%; padding: 3px; width: 20px; height: 20px; margin-top: 2px; }
.alt-tab[aria-selected="true"] { border-color: var(--violet-200); box-shadow: 0 2px 6px -2px rgba(124, 58, 237, .35); }
.alt-shot {
  border-color: rgba(124, 58, 237, .28);
  box-shadow: 0 50px 100px -40px rgba(79, 70, 229, .5), 0 0 0 6px rgba(124, 58, 237, .06), 0 1px 3px rgba(0, 0, 0, .06);
  animation: alt-float 9s ease-in-out infinite;
}
@keyframes alt-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.alt-shot .panel.on { animation: alt-fade .4s var(--ease); }
@keyframes alt-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.alt-shot .topbar .pub { background: var(--gradient); }

/* partner row */
.alt-partners { background: var(--bg-soft); }
.alt-partners li { opacity: .55; transition: opacity .2s; }
.alt-partners li:hover { opacity: 1; }

/* journey: soft cards with step numbers */
.alt-journey .squiggle { color: var(--violet-200); }
.alt-journey .cols { counter-reset: step; }
.alt-journey .col {
  border-left: 0; border: 1px solid var(--border); border-radius: 20px; background: #fff; padding: 24px 24px 20px; box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.alt-journey .col:hover { transform: translateY(-3px); box-shadow: var(--shadow-violet); border-color: var(--violet-200); }
.alt-journey .col .chips i { background: var(--violet-50); border-color: var(--violet-100); }
.alt-journey .col .chips .bubble { border-color: var(--violet-100); }
.alt-journey .col h3::before { counter-increment: step; content: "0" counter(step); display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--violet); margin-bottom: 6px; }

/* feature wall: breathable tiles instead of a spreadsheet */
.alt-wall { gap: 8px; border: 0; border-radius: 0; background: transparent; overflow: visible; }
.alt-wall .cell {
  border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); color: var(--text);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.alt-wall .cell svg { color: var(--violet); }
.alt-wall .cell:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-violet); border-color: var(--violet-200); }
.alt-wall .big { border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-md); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.alt-wall .big:hover { transform: translateY(-3px); box-shadow: var(--shadow-violet); border-color: var(--violet-200); }
.alt-wall .big .art { box-shadow: var(--shadow); }

/* design-intelligence moment */
.alt-era { background: radial-gradient(60% 55% at 50% 0%, var(--violet-100), transparent 70%), var(--bg-soft); }
.alt-era .stage { box-shadow: 0 40px 90px -50px rgba(124, 58, 237, .5); border-color: var(--violet-200); }
.alt-era .facts div svg { background: var(--violet-50); border-radius: 50%; padding: 3px; width: 22px; height: 22px; margin-top: 0; }

/* dark sections: glow + gradient hairline cards */
.alt-dark { position: relative; isolation: isolate; background: #0b0b0f; }
.alt-dark::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(55% 45% at 50% 0%, rgba(124, 58, 237, .30), transparent 70%); }
.alt-dark + .alt-dark::before { background: radial-gradient(60% 45% at 50% 100%, rgba(79, 70, 229, .26), transparent 70%); }
.alt-dark .platforms span { transition: border-color .2s, color .2s; }
.alt-dark .platforms span:hover { border-color: var(--violet); color: #fff; }
.alt-three .col, .alt-six .card6 {
  border: 1px solid transparent;
  background: linear-gradient(#151518, #151518) padding-box, linear-gradient(160deg, rgba(124, 58, 237, .55), #27272a 40%, #27272a 70%, rgba(79, 70, 229, .45)) border-box;
  box-shadow: 0 24px 50px -30px rgba(0, 0, 0, .9);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.alt-three .col:hover, .alt-six .card6:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -30px rgba(124, 58, 237, .45); }
.alt-mini-cta .row a.more:hover { color: #fff; }

/* audience cards */
.alt-sol { position: relative; overflow: hidden; }
.alt-sol::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--gradient); opacity: 0; transition: opacity .25s; }
.alt-sol:hover::before { opacity: 1; }
.alt .alt-sol .tools > span > i { background: var(--gradient); }

/* metrics, trust, final CTA */
.alt-metrics .m { background: linear-gradient(180deg, #fff 55%, var(--violet-50)); }
.alt-trust .t:hover .icon-box { background: var(--gradient); color: #fff; border-color: transparent; }
.alt-trust .t .icon-box { transition: background .25s, color .25s; }
.alt-final { background: radial-gradient(55% 60% at 50% 100%, var(--violet-100), transparent 70%), linear-gradient(180deg, #fff, var(--violet-50)); }
.alt-final .desk { border-color: var(--violet-200); box-shadow: 0 -30px 90px -30px rgba(124, 58, 237, .6); }
.alt-final .mob { box-shadow: 0 -20px 60px -30px rgba(79, 70, 229, .6); }
.alt-hero { padding-bottom: 56px; }
@media (min-width: 768px) { .alt-journey .squiggle { margin-bottom: -14px; } }

/* =====================================================================
   Legal documents (privacy, terms, fair usage) and comparison page
   ===================================================================== */
.legal-meta { margin-top: 14px; font-size: 13.5px; color: var(--muted-2); }
.legal-meta a { color: var(--violet); font-weight: 500; }
.legal-doc { max-width: 800px; }
.legal-note { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius-sm); background: #fffbeb; border: 1px solid #fde68a; color: #92400e; font-size: 14px; margin-bottom: 8px; }
.legal-note svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: #d97706; }
.legal-sec { padding-top: 40px; scroll-margin-top: calc(var(--header-h) + 72px); }
.legal-sec + .legal-sec { border-top: 1px solid var(--border); }
.legal-sec h2 { font-size: 24px; letter-spacing: -0.02em; margin-bottom: 14px; }
.legal-sec h3 { font-size: 16.5px; font-weight: 600; margin: 22px 0 8px; }
.legal-sec p, .legal-sec li { font-size: 15.5px; line-height: 1.7; color: var(--muted); }
.legal-sec p + p { margin-top: 12px; }
.legal-sec b { color: var(--text); font-weight: 600; }
.legal-sec ul, .legal-sec ol { padding-left: 22px; margin: 10px 0 14px; }
.legal-sec li + li { margin-top: 8px; }
.legal-sec a { color: var(--violet); text-decoration: underline; text-decoration-color: var(--violet-200); text-underline-offset: 3px; }
.legal-sec a:hover { text-decoration-color: var(--violet); }
.legal-sec .ph { background: #fffbeb; border-bottom: 2px dotted #f59e0b; color: #92400e; padding: 0 3px; border-radius: 3px; font-weight: 500; cursor: help; }
.legal-table { width: 100%; border-collapse: collapse; margin: 14px 0 6px; font-size: 14.5px; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.legal-table th, .legal-table td { text-align: left; padding: 12px 14px; vertical-align: top; border-bottom: 1px solid var(--border); }
.legal-table th { background: var(--zinc-50); font-weight: 600; font-size: 13px; color: var(--text); }
.legal-table td { color: var(--muted); }
.legal-table td:first-child { color: var(--text); font-weight: 500; width: 38%; }
.legal-table tr:last-child td { border-bottom: 0; }
@media (min-width: 768px) { .legal-sec { padding-top: 56px; } .legal-sec h2 { font-size: 28px; } }

/* comparison table */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.cmp-table { width: 100%; min-width: 960px; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.cmp-table th, .cmp-table td { padding: 16px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
.cmp-table thead th { position: sticky; top: 0; background: var(--zinc-50); font-size: 13.5px; font-weight: 600; color: var(--text); z-index: 1; }
.cmp-table thead th small { display: block; font-size: 12px; font-weight: 500; color: var(--muted-2); margin-top: 3px; }
.cmp-table thead th.cmp-us { background: var(--violet-50); color: var(--violet-700); }
.cmp-table tbody th { font-weight: 600; color: var(--text); width: 18%; background: #fff; }
.cmp-table tbody td { color: var(--muted); }
.cmp-table tbody td:nth-child(2) { background: var(--violet-50); color: var(--text); box-shadow: inset 2px 0 0 var(--violet-200), inset -2px 0 0 var(--violet-200); }
.cmp-table tbody tr:last-child th, .cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-table tbody tr:hover th, .cmp-table tbody tr:hover td { background-color: var(--zinc-50); }
.cmp-table tbody tr:hover td:nth-child(2) { background-color: var(--violet-100); }
.cmp-table td svg { width: 16px; height: 16px; flex: none; margin-top: 2px; }
.cmp-table td > span { display: block; }
.cmp-table td.c-yes, .cmp-table td.c-part, .cmp-table td.c-no { display: table-cell; }
.cmp-table td.c-yes svg, .cmp-table td.c-part svg, .cmp-table td.c-no svg { float: left; margin-right: 8px; }
.cmp-table td.c-yes svg { color: var(--emerald); }
.cmp-table td.c-part svg { color: var(--amber); }
.cmp-table td.c-no svg { color: #ef4444; }
.cmp-brand { display: inline-flex; align-items: center; gap: 8px; }
.cmp-brand .logo-mark { width: 22px; height: 22px; border-radius: 6px; box-shadow: none; }
.cmp-brand .logo-mark svg { width: 13px; height: 13px; }
.cmp-foot { margin-top: 14px; max-width: 900px; }
.cmp-table tbody th, .cmp-table thead th:first-child { position: sticky; left: 0; z-index: 2; box-shadow: inset -1px 0 0 var(--border); }
.cmp-table thead th:first-child { z-index: 3; }

/* =====================================================================
   Mobile: no sideways panning; drawer stays inside the viewport
   ===================================================================== */
/* iOS Safari ignores overflow-x:hidden on body for touch panning; `clip` is honoured and,
   unlike `hidden`, does not turn html/body into scroll containers (so position:sticky keeps working). */
@supports (overflow-x: clip) { html, body { overflow-x: clip; } }
/* Off-canvas drawer: reveal with a clip-path wipe + inner slide instead of translating the whole
   fixed box 100% off-screen, so nothing ever sits outside the viewport. */
.drawer { transform: none; clip-path: inset(0 0 0 100%); overflow-x: hidden; transition: clip-path .3s var(--ease), visibility .3s; }
.drawer.open { clip-path: inset(0); }
.drawer > nav { transform: translateX(28px); opacity: 0; transition: transform .3s var(--ease), opacity .25s; }
.drawer.open > nav { transform: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) { .drawer, .drawer > nav { transition: none; } }

/* Mega-menu icon boxes: `.alt-menu a span { display:block }` was overriding .icon-box's grid centering */
.alt-menu a span.icon-box { display: grid; place-items: center; }

/* footer brand mark next to the copyright line */
.footer-mark { display: inline-flex; align-items: center; gap: 10px; }
.footer-mark-img { display: block; width: 26px; height: 26px; }
