/* =========================================================
   Vizbl — Light minimalist design system
   Inspired by Apple / Linear / Vercel
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-mute: #f4f4f5;
  --line: #ececee;
  --line-strong: #d4d4d8;
  --ink: #0a0a0a;
  --ink-2: #27272a;
  --ink-3: #52525b;
  --ink-4: #8a8a92;
  --accent: #0a0a0a;
  --brand: #f97316;
  --brand-2: #ef4444;
  --brand-soft: #fff4ed;
  --cta: #0263e0;
  --cta-hover: #0050b8;
  --cta-soft: #e7f0fd;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 15, 20, 0.04), 0 1px 1px rgba(15, 15, 20, 0.03);
  --shadow: 0 8px 30px rgba(15, 15, 20, 0.06), 0 2px 6px rgba(15, 15, 20, 0.04);
  --shadow-lg: 0 24px 60px rgba(15, 15, 20, 0.08), 0 4px 12px rgba(15, 15, 20, 0.04);
  --container: 1180px;
  --header-h: 112px;
  --font: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "JetBrains Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--brand-soft); color: var(--ink); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.section.no-border { border-top: none; }
.section.tight { padding: 64px 0; }

.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1100px) {
  .grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .grid.cols-5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .grid.cols-5 { grid-template-columns: 1fr; }
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1.display {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 600;
}

h2.display {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 { font-size: 22px; line-height: 1.3; }
h4 { font-size: 17px; line-height: 1.35; }

p { margin: 0; color: var(--ink-3); }
.lead {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 720px;
}

.muted { color: var(--ink-3); }
.kicker { font-size: 13px; color: var(--ink-4); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 8px 24px rgba(2, 99, 224, 0.25);
}
.btn-primary:hover { background: var(--cta-hover); }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-secondary:hover { border-color: var(--ink); }
.btn-ghost { color: var(--ink); padding: 10px 12px; }
.btn-ghost:hover { background: var(--bg-mute); border-radius: 10px; }
.btn-brand {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.30);
}
.btn-brand:hover { background: #ea640c; }

.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: -0.01em;
  flex: 0 0 auto;
  flex-shrink: 0;
}
.brand img {
  height: 72px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  aspect-ratio: 880 / 344;
}
@media (max-width: 1280px) { .brand img { height: 56px; } }
@media (max-width: 980px)  { .brand img { height: 44px; } }
.site-footer .brand img { height: 84px; aspect-ratio: 880 / 344; }
@media (max-width: 700px) { .site-footer .brand img { height: 64px; } }
.cta-banner .brand img,
.brand.brand-light img { filter: brightness(0) invert(1) drop-shadow(0 0 0 transparent); }
/* keep colored icon, but the .brand-light variant exists if needed for dark surfaces */

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a,
.nav-links .nav-trigger {
  padding: 8px 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover,
.nav-links .nav-trigger:hover { background: var(--bg-mute); color: var(--ink); }
.nav-links a.active,
.nav-links .nav-dd.active .nav-trigger { color: var(--ink); font-weight: 500; }

/* Dropdown */
.nav-dd { position: relative; }
.nav-dd .nav-trigger svg { transition: transform .15s ease; opacity: 0.6; }
.nav-dd:hover .nav-trigger,
.nav-dd:focus-within .nav-trigger { background: var(--bg-mute); color: var(--ink); }
.nav-dd:hover .nav-trigger svg,
.nav-dd:focus-within .nav-trigger svg { transform: rotate(180deg); opacity: 1; }

.nav-panel {
  position: absolute;
  top: 100%; left: 0;
  margin-top: 8px;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease;
  z-index: 60;
}
.nav-dd::before {
  /* invisible bridge so the panel doesn't close as you move down to it */
  content: "";
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 12px;
  display: none;
}
.nav-dd:hover::before,
.nav-dd:focus-within::before { display: block; }
.nav-dd:hover .nav-panel,
.nav-dd:focus-within .nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-panel a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: 8px;
  white-space: nowrap;
}
.nav-panel a:hover { background: var(--bg-mute); color: var(--ink); }
.nav-panel a strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
}
.nav-panel a span.sub {
  display: block;
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 2px;
  font-weight: 400;
}
.nav-panel .group-title {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 10px 14px 6px;
  font-weight: 500;
}
.nav-panel hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 6px 8px;
}
.nav-panel a.ext::after {
  content: " ↗";
  color: var(--ink-4);
  font-size: 11px;
}

.nav-cta { display: flex; align-items: center; gap: 8px; }

/* Small icon button in top nav (Discord) */
.nav-icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-2);
  background: #fff;
  transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
  flex-shrink: 0;
}
.nav-icon:hover { background: #5865f2; border-color: #5865f2; color: #fff; transform: translateY(-1px); }

/* ---------- Footer social + apps ---------- */
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--bg-mute);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { color: #fff; border-color: transparent; transform: translateY(-1px); }
.footer-social a[aria-label="X (Twitter)"]:hover { background: #000; }
.footer-social a[aria-label="Facebook"]:hover  { background: #1877F2; }
.footer-social a[aria-label="Instagram"]:hover  { background: #E4405F; }
.footer-social a[aria-label="LinkedIn"]:hover   { background: #0A66C2; }

.footer-apps {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.site-footer .app-badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 9px 18px;
  border-radius: 12px;
  background: #0a0a0a;
  color: #fff !important;
  text-decoration: none;
  width: 196px;
  box-sizing: border-box;
  transition: background .15s ease, transform .15s ease;
}
.site-footer .app-badge:hover { background: #1f1f22; transform: translateY(-1px); }
.site-footer .app-badge svg { flex: 0 0 auto; }
.site-footer .app-badge .txt { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.site-footer .app-badge .txt small {
  font-size: 9.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  white-space: nowrap;
}
.site-footer .app-badge .txt strong {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 2px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  border-radius: 8px;
  align-items: center; justify-content: center;
  background: var(--bg-mute);
}
.menu-toggle span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--ink);
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content:""; position:absolute; left:0; width:16px; height:1.5px; background: var(--ink);
}
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after  { top:  5px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-cta .btn:not(.btn-primary) { display: none; }
}

.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.mobile-menu.open { display: block; }
.mobile-menu .container { padding: 12px 24px 20px; }
.mobile-menu a {
  display: block;
  padding: 12px 4px;
  font-size: 16px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 64px;
  overflow: hidden;
  border-top: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% -10% 0 -10%;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(249, 115, 22, 0.10), transparent 70%),
    radial-gradient(40% 40% at 80% 10%, rgba(239, 68, 68, 0.10), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 24px; color: var(--ink-3); font-size: 14px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { color: var(--brand); }

.hero-visual {
  margin-top: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
  box-shadow: var(--shadow-lg);
}

/* ---------- Cards ---------- */
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }

.card .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-3); font-size: 15px; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
}
.card-link .arrow { transition: transform .2s ease; }
.card-link:hover .arrow { transform: translateX(3px); }

/* feature list */
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
  display: flex; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.feature-list strong { display: block; color: var(--ink); margin-bottom: 2px; }
.feature-list span { color: var(--ink-3); font-size: 14.5px; }

/* ---------- Section heading ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head .text { max-width: 720px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--ink-3); font-size: 17px; }

@media (max-width: 800px) {
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 32px; }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stats > div { padding: 28px; border-right: 1px solid var(--line); }
.stats > div:last-child { border-right: none; }
.stats .num {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stats .lab { color: var(--ink-3); font-size: 14px; margin-top: 4px; }
@media (max-width: 800px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div:nth-child(2) { border-right: none; }
  .stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ---------- Code block ---------- */
.code {
  font-family: var(--mono);
  font-size: 13.5px;
  background: #0b0b0d;
  color: #e5e7eb;
  border-radius: var(--radius);
  padding: 22px 24px;
  overflow-x: auto;
  line-height: 1.6;
  border: 1px solid #1f1f22;
}
.code .c1 { color: #71717a; }
.code .k  { color: #c4b5fd; }
.code .s  { color: #86efac; }
.code .t  { color: #f0abfc; }
.code .n  { color: #fbcfe8; }

/* ---------- Logos / pills ---------- */
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  font-size: 14px;
}
.pill svg { color: var(--ink-3); }

/* ---------- Devices visual ---------- */
.device-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 800px) { .device-row { grid-template-columns: 1fr; } }

.phone {
  width: 260px; height: 520px;
  border: 10px solid #111;
  border-radius: 44px;
  background: linear-gradient(180deg, #f7f7f8 0%, #ececee 100%);
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.phone .notch {
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: #111; border-radius: 0 0 12px 12px;
}
.phone .ar-scene {
  position: absolute; inset: 30px 16px 16px;
  border-radius: 22px;
  background:
    radial-gradient(80% 60% at 50% 30%, #fff 0%, #f0f0f4 70%),
    linear-gradient(180deg, #f9f9fb, #ececee);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.phone .cube {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 16px;
  transform: rotate3d(1, 1, 0, 30deg);
  box-shadow: 0 30px 60px rgba(249, 115, 22, 0.35);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: rotate3d(1,1,0,30deg) translateY(0); }
  50%      { transform: rotate3d(1,1,0,30deg) translateY(-12px); }
}
.phone .grid-floor {
  position: absolute;
  bottom: 16px; left: 0; right: 0; height: 60px;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  transform: perspective(220px) rotateX(60deg);
  transform-origin: bottom;
  opacity: 0.7;
}

.browser {
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.browser .bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fafafa;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-3);
}
.browser .bar .dot {
  width: 10px; height: 10px; border-radius: 999px; background: #d4d4d8;
}
.browser .bar .url {
  margin-left: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  flex: 1;
  text-align: center;
  color: var(--ink-3);
  font-family: var(--mono);
}
.browser .body { padding: 28px; min-height: 240px; display:flex; gap:24px; }
.browser .body .product {
  flex: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, #f4f4f7, #fff);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  min-height: 200px;
}
.browser .body .product .obj {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, #fed7aa, #f97316 60%, #ef4444);
  border-radius: 50%;
  box-shadow: inset -10px -14px 24px rgba(0,0,0,0.15), 0 30px 50px rgba(0,0,0,0.08);
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Pricing ---------- */
/* Billing cycle toggle (Monthly / Annual) */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  margin: 0 auto 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-mute);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}
.billing-toggle .bt-opt {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.billing-toggle .bt-opt:hover { color: var(--ink); }
.billing-toggle .bt-opt.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.billing-toggle .bt-save {
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 999px;
}

.plan .price-note {
  font-size: 12.5px;
  color: var(--ink-4);
  margin: 0 0 4px;
  letter-spacing: 0.005em;
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .plans { grid-template-columns: 1fr; } }

/* 3-column variant (product-page pricing) — responsive without inline overrides */
.plans.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .plans.cols-3 { grid-template-columns: 1fr; } }
.plan {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease;
  display: flex;
  flex-direction: column;
}
.plan.featured { border-color: var(--ink); box-shadow: var(--shadow-lg); position: relative; }
.plan.featured::before {
  content: "★ Most Popular";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff;
  font-size: 12px; padding: 6px 14px; border-radius: 999px;
  letter-spacing: 0.04em; white-space: nowrap;
  font-weight: 500;
}
.plan .plan-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
}
.plan h3 { font-size: 18px; font-weight: 600; }
.plan .price {
  font-size: 40px; font-weight: 700;
  letter-spacing: -0.03em;
  margin: 14px 0 4px;
  line-height: 1;
}
.plan .price small { font-size: 14px; font-weight: 400; color: var(--ink-3); }
.plan .desc { color: var(--ink-3); font-size: 14px; margin-bottom: 16px; min-height: 36px; }
.plan .trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}
.plan .trial-badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--brand);
}
.plan hr.plan-div {
  border: none; border-top: 1px solid var(--line);
  margin: 4px 0 12px;
}
.plan ul { list-style: none; padding: 0; margin: 4px 0 22px; flex: 1; }
.plan ul li {
  padding: 7px 0;
  font-size: 14px;
  color: var(--ink-2);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.45;
}
.plan ul li::before {
  content: "";
  flex: 0 0 auto;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 13 9 17 19 7'/%3E%3C/svg%3E") center/10px no-repeat;
  margin-top: 2px;
}
.plan .btn { width: 100%; margin-top: auto; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 56px;
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(249, 115, 22, 0.22), transparent 60%),
    radial-gradient(60% 80% at 100% 100%, rgba(239, 68, 68, 0.20), transparent 60%),
    #0a0a0c;
  color: #fff;
  overflow: hidden;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-top: 10px; max-width: 540px; }
.cta-banner .actions { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.cta-banner .btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}
.cta-banner .btn-secondary:hover { border-color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: #fafafa;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 32px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-grid h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-4); font-weight: 500; margin-bottom: 14px; }
.footer-grid a { display: block; padding: 6px 0; font-size: 14px; color: var(--ink-2); }
.footer-grid a:hover { color: var(--ink); }
.footer-grid p { font-size: 14px; color: var(--ink-3); }

.footer-bottom {
  padding: 20px 0 40px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--ink-4);
}

/* ---------- Step / pipeline ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  position: relative;
}
.step .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-4);
  letter-spacing: 0.1em;
}
.step h4 { margin: 8px 0 6px; }
.step p { font-size: 14.5px; color: var(--ink-3); }

/* ---------- Page header ---------- */
.page-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% 30% -10%;
  background: radial-gradient(50% 60% at 50% 0%, rgba(249, 115, 22, 0.09), transparent 70%);
  pointer-events: none;
}
.page-hero > .container { position: relative; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-hero .lead { max-width: 760px; }

/* ---------- Industry chips ---------- */
.chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .chips { grid-template-columns: repeat(2, 1fr); } }
.chip {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 14.5px;
  color: var(--ink-2);
  transition: border-color .15s ease, transform .15s ease;
}
.chip:hover { border-color: var(--ink); }
.chip .ico {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--bg-mute);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
}

/* ---------- Two col split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split h2 { margin-bottom: 16px; }
.split p { font-size: 17px; }

/* ---------- Tag list ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-mute);
  color: var(--ink-2);
  font-size: 12.5px;
}

/* ---------- Quote ---------- */
.quote {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  background: #fff;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.quote .who { display: block; margin-top: 16px; font-size: 14px; color: var(--ink-3); font-weight: 500; letter-spacing: 0; }

/* ---------- Helpers ---------- */
.row { display: flex; align-items: center; gap: 16px; }
.row.gap-8 { gap: 8px; }
.center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-brand { color: var(--brand); }

/* ---------- Anchored animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(8px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   Industry colour cards
   ========================================================= */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .ind-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ind-grid { grid-template-columns: 1fr; } }

.ind {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  border: 1px solid transparent;
  background: #fff;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ind:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.ind .ind-bg {
  position: absolute; inset: 0;
  z-index: 0;
  opacity: 0.92;
}
.ind .ind-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ind.has-photo::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,12,0.30) 0%, rgba(10,10,12,0.42) 45%, rgba(10,10,12,0.72) 100%);
}
.ind .ind-content { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; }
.ind h3 { color: #fff; font-size: 22px; }
.ind p { color: rgba(255,255,255,0.85); font-size: 14.5px; margin-top: 8px; }
.ind .ind-stats { margin-top: auto; padding-top: 20px; display: flex; gap: 18px; }
.ind .ind-stats .num { font-size: 20px; font-weight: 600; color: #fff; }
.ind .ind-stats .lab { font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }
.ind .ind-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.ind.furniture .ind-bg { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }
.ind.fashion   .ind-bg { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }
.ind.cosmetics .ind-bg { background: linear-gradient(135deg, #f43f5e 0%, #9f1239 100%); }
.ind.electronics .ind-bg { background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%); }
.ind.fitness   .ind-bg { background: linear-gradient(135deg, #10b981 0%, #047857 100%); }
.ind.designers .ind-bg { background: linear-gradient(135deg, #8b5cf6 0%, #5b21b6 100%); }
.ind.home      .ind-bg { background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%); }
.ind.kids      .ind-bg { background: linear-gradient(135deg, #06b6d4 0%, #0e7490 100%); }
.ind.amusement .ind-bg { background: linear-gradient(135deg, #d946ef 0%, #86198f 100%); }

/* invisible deep-link anchor inside cards (kept for backward-compatible URLs) */
.anchor-only { position: absolute; width: 0; height: 0; opacity: 0; pointer-events: none; }

/* =========================================================
   Lead-capture section on product pages (high-conversion form)
   ========================================================= */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .lead-grid { grid-template-columns: 1fr; gap: 32px; } }

.lead-text h2 { margin-top: 14px; }
.lead-text > p { color: var(--ink-3); font-size: 16px; line-height: 1.6; margin-top: 14px; max-width: 460px; }

.lead-trust { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.lead-trust li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.lead-trust li .check {
  flex: 0 0 auto;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 14px;
}
.lead-form h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.lead-form-sub { color: var(--ink-3); font-size: 14px; margin: 0 0 8px; }
.lead-form label { display: flex; flex-direction: column; gap: 6px; }
.lead-form label span {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.01em;
}
.lead-form input {
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  transition: border-color .15s ease, background .15s ease;
}
.lead-form input::placeholder { color: var(--ink-4); }
.lead-form input:focus {
  outline: none;
  border-color: var(--cta);
  background: #fff;
  box-shadow: 0 0 0 3px var(--cta-soft);
}
.lead-submit { margin-top: 8px; width: 100%; justify-content: center; padding: 13px 18px; font-size: 15px; }
.lead-form-foot { font-size: 12px; color: var(--ink-4); margin: 6px 0 0; text-align: center; }

/* =========================================================
   AR Public Catalog preview (homepage) — uniform grid
   ========================================================= */
.catalog-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .catalog-masonry { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .catalog-masonry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .catalog-masonry { grid-template-columns: 1fr; } }

.cat-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}
.cat-card .cat-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 86px;
}
.cat-card .cat-img::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 100% 0%, rgba(255,255,255,0.25), transparent 60%),
    radial-gradient(80% 90% at 0% 100%, rgba(0,0,0,0.18), transparent 60%);
  pointer-events: none;
}
.cat-card .cat-img .glyph2 {
  position: relative; z-index: 1;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.2));
}
.cat-card .cat-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* Bookmark icon top-left */
.cat-card .cat-bookmark {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Title shown on the image — sits inside .cat-img, bottom-left */
.cat-card .cat-img { position: relative; }
.cat-card .cat-title-overlay {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 3;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
  pointer-events: none;
}

/* Author avatar bubble */
.cat-card .cat-avatar {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  margin-right: 8px;
  vertical-align: middle;
  color: #fff;
}
.cat-card .cat-avatar.t  { background: #6b7280; }
.cat-card .cat-avatar.mf { background: #1f2937; }
.cat-card .cat-avatar.v  { background: linear-gradient(135deg, #f97316, #ef4444); }
.cat-card .cat-avatar.g  { background: #0ea5e9; }
.cat-card .cat-meta .cat-by { display: flex; align-items: center; }
.cat-card .cat-stats .vw { color: var(--ink-4); font-weight: 500; }
/* Uniform tile size — every image area is the same height */
.cat-card .cat-img { aspect-ratio: 4 / 3; height: auto; }
.cat-card.cat-tall   .cat-img,
.cat-card.cat-medium .cat-img,
.cat-card.cat-short  .cat-img { aspect-ratio: 4 / 3; height: auto; }

.cat-card .cat-ar {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  background: rgba(10,10,10,0.78);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cat-card .cat-meta {
  padding: 14px 16px 16px;
}
.cat-card .cat-meta h4 {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cat-card .cat-meta .cat-by {
  margin: 4px 0 10px;
  font-size: 12.5px;
  color: var(--ink-4);
}
.cat-card .cat-stats {
  display: flex;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink-3);
}
.cat-card .cat-stats .lk { color: #ef4444; font-weight: 500; }
.cat-card .cat-stats .rt { color: #b45309; font-weight: 500; }

/* reuse the same gradient backgrounds the top-products slider uses */
.cat-card.bg-furniture .cat-img { background: linear-gradient(135deg, #f97316, #ea580c); }
.cat-card.bg-pools     .cat-img { background: linear-gradient(135deg, #06b6d4, #0e7490); }
.cat-card.bg-rugs      .cat-img { background: linear-gradient(135deg, #f43f5e, #9f1239); }
.cat-card.bg-flooring  .cat-img { background: linear-gradient(135deg, #92400e, #451a03); }
.cat-card.bg-wallart   .cat-img { background: linear-gradient(135deg, #8b5cf6, #5b21b6); }
.cat-card.bg-electronics .cat-img { background: linear-gradient(135deg, #1e40af, #0c1e5e); }
.cat-card.bg-autofit   .cat-img { background: linear-gradient(135deg, #1f2937, #4b5563); }
.cat-card.bg-construct .cat-img { background: linear-gradient(135deg, #f59e0b, #b45309); }
.cat-card.bg-showroom  .cat-img { background: linear-gradient(135deg, #10b981, #047857); }
.ind .ind-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(255,255,255,0.25), transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(0,0,0,0.18), transparent 60%);
}

/* =========================================================
   ROI Calculator
   ========================================================= */
.roi-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
}
@media (max-width: 900px) { .roi-wrap { grid-template-columns: 1fr; } }

.roi-inputs { padding: 36px; border-right: 1px solid var(--line); }
@media (max-width: 900px) { .roi-inputs { border-right: none; border-bottom: 1px solid var(--line); } }

.roi-inputs h3 { font-size: 22px; margin-bottom: 6px; }
.roi-inputs p   { font-size: 14.5px; margin-bottom: 24px; color: var(--ink-3); }

.roi-row { margin-bottom: 22px; }
.roi-row label {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink-2);
  margin-bottom: 8px;
  font-weight: 500;
}
.roi-row label .val { font-family: var(--mono); color: var(--ink); font-size: 13px; }
.roi-row input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: var(--line);
  border-radius: 999px;
  outline: none;
}
.roi-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px;
  background: var(--brand);
  border-radius: 999px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--brand), 0 4px 14px rgba(249,115,22,0.4);
  cursor: pointer;
  transition: transform .1s ease;
}
.roi-row input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.1); }
.roi-row input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--brand); border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--brand), 0 4px 14px rgba(249,115,22,0.4);
  cursor: pointer;
}
.roi-row .hint { font-size: 12px; color: var(--ink-4); margin-top: 6px; }

.roi-out {
  padding: 36px;
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(249, 115, 22, 0.07), transparent 60%),
    radial-gradient(60% 80% at 100% 100%, rgba(239, 68, 68, 0.07), transparent 60%),
    #fafafa;
  display: flex;
  flex-direction: column;
}
.roi-out h3 { font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; margin-bottom: 20px; }
.roi-big {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.roi-big-lab { font-size: 14px; color: var(--ink-3); margin-top: 6px; margin-bottom: 24px; }
.roi-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}
.roi-mini > div {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 16px;
}
.roi-mini .num { font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.roi-mini .lab { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
.roi-foot { font-size: 12px; color: var(--ink-4); margin-top: 16px; }

/* =========================================================
   Help center
   ========================================================= */
.help-search {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  max-width: 540px;
}
.help-search svg { color: var(--ink-3); flex: 0 0 auto; }
.help-search input {
  border: none; outline: none; background: transparent;
  font-size: 15px; flex: 1;
  font-family: var(--font);
  color: var(--ink);
}

.topics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .topics { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .topics { grid-template-columns: 1fr; } }
.topic {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  background: #fff;
  transition: border-color .15s ease, transform .15s ease;
}
.topic:hover { border-color: var(--ink); transform: translateY(-2px); }
.topic .ti {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
}
.topic h4 { font-size: 16px; margin-bottom: 4px; }
.topic p  { font-size: 13.5px; color: var(--ink-3); }

.article-list {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.article {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  transition: background .15s ease;
  cursor: pointer;
}
.article:last-child { border-bottom: none; }
.article:hover { background: var(--bg-soft); }
.article summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.article summary::-webkit-details-marker { display: none; }
.article summary h4 { font-size: 16px; font-weight: 500; }
.article summary .arrow {
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  transition: transform .2s ease, background .2s ease;
}
.article[open] summary .arrow { transform: rotate(90deg); background: var(--bg-mute); }
.article .body {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.65;
}
.article .body code {
  background: var(--bg-mute);
  border-radius: 6px;
  padding: 1px 6px;
  font-family: var(--mono);
  font-size: 13px;
}
.article .body pre.code { margin-top: 10px; }
.article .body ol, .article .body ul { margin: 8px 0; padding-left: 20px; }
.article .body li { margin: 4px 0; }

/* =========================================================
   Lifestyle / colour blocks
   ========================================================= */
.lifestyle {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: #fff;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 100%),
    radial-gradient(80% 80% at 30% 30%, #fed7aa 0%, transparent 60%),
    radial-gradient(80% 80% at 70% 70%, #fda4af 0%, transparent 60%),
    linear-gradient(135deg, #fb923c 0%, #f43f5e 100%);
}
.lifestyle h2 { color: #fff; font-size: clamp(32px, 4vw, 44px); }
.lifestyle p  { color: rgba(255,255,255,0.85); margin-top: 8px; max-width: 540px; }

.lifestyle::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04) 2px, transparent 2px, transparent 14px);
  z-index: 0;
}
.lifestyle .lifestyle-content { position: relative; z-index: 1; }

/* Floating product mock */
.lifestyle .floater {
  position: absolute;
  right: 8%; top: 18%;
  width: 180px; height: 180px;
  border-radius: 30px;
  background: linear-gradient(135deg, #fff 0%, #ffe4cc 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  transform: rotate(-8deg);
  display: flex; align-items: center; justify-content: center;
  font-size: 70px;
}

/* =========================================================
   Updated footer (5-column)
   ========================================================= */
.site-footer .footer-grid {
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 1000px) { .site-footer .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (max-width: 700px)  { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-tm {
  font-size: 12px;
  color: var(--ink-4);
  max-width: 520px;
  line-height: 1.5;
}

/* =========================================================
   Platform logo strip
   ========================================================= */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
}
@media (max-width: 900px) { .logo-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .logo-strip { grid-template-columns: repeat(2, 1fr); } }
.logo-tile {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transition: border-color .2s ease, transform .2s ease;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.logo-tile:hover { border-color: var(--ink); transform: translateY(-2px); }
.logo-tile .mark {
  display: inline-flex; align-items: center; gap: 8px;
}
.logo-tile .mark .swatch {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: inline-block;
}
.logo-tile.shopify  .swatch { background: #95bf47; }
.logo-tile.wp       .swatch { background: #21759b; }
.logo-tile.wix      .swatch { background: #fbbf24; }
.logo-tile.bigcom   .swatch { background: #34313f; }
.logo-tile.squarsp  .swatch { background: #111; }

/* =========================================================
   ROI gain bar
   ========================================================= */
.bar-row { display: flex; gap: 8px; align-items: center; margin-top: 14px; }
.bar { flex: 1; height: 8px; background: var(--bg-mute); border-radius: 999px; overflow: hidden; }
.bar > div { height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); border-radius: 999px; transition: width .35s ease; }
.bar-row .pct { font-family: var(--mono); font-size: 13px; color: var(--ink); width: 50px; text-align: right; }

/* =========================================================
   Legal pages
   ========================================================= */
.legal-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .legal-wrap { grid-template-columns: 1fr; gap: 24px; } }

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  font-size: 13.5px;
  max-height: calc(100vh - var(--header-h) - 48px);
  overflow-y: auto;
}
@media (max-width: 900px) { .legal-toc { position: static; max-height: none; } }
.legal-toc h4 {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4);
  margin-bottom: 10px; font-weight: 500;
}
.legal-toc a {
  display: block;
  padding: 6px 8px;
  color: var(--ink-3);
  border-radius: 6px;
  line-height: 1.4;
}
.legal-toc a:hover { background: var(--bg-mute); color: var(--ink); }

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-3);
  padding: 14px 0 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.legal-meta strong { color: var(--ink); font-weight: 500; }

.legal-body { max-width: 760px; }
.legal-body h2 {
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 40px 0 12px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-size: 17px;
  margin: 24px 0 8px;
  font-weight: 600;
}
.legal-body p, .legal-body li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-body p { margin: 12px 0; }
.legal-body ul, .legal-body ol { margin: 12px 0; padding-left: 22px; }
.legal-body li { margin: 6px 0; }
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body code {
  background: var(--bg-mute);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 13.5px;
}
.legal-body .callout {
  margin: 24px 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 10px;
  background: var(--bg-soft);
  font-size: 14.5px;
  color: var(--ink-2);
}
.legal-body .callout strong { color: var(--ink); }

.legal-body a { color: var(--brand); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--ink); }

/* =========================================================
   Cookie / privacy banner (US state-privacy notice)
   ========================================================= */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: #ECEEF0;
  border-top: 1px solid #d6d8db;
  color: #1f2937;
  font-size: 13.5px;
  line-height: 1.55;
  padding: 18px 24px 18px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-bar.hidden { display: none; }
.cookie-bar p {
  margin: 0;
  flex: 1;
  min-width: 280px;
  color: #1f2937;
  max-width: 1100px;
}
.cookie-bar a { color: #1f2937; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.cookie-bar a:hover { color: #000; }
.cookie-bar .actions {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}
.cookie-bar .actions button {
  font: inherit;
  padding: 10px 18px;
  border-radius: 4px;
  border: 1px solid #1f2937;
  background: #1f2937;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: opacity .15s ease;
}
.cookie-bar .actions button:hover { opacity: 0.85; }
.cookie-bar .actions button.alt { background: #1f2937; color: #fff; }
@media (max-width: 700px) {
  .cookie-bar { padding: 14px 18px; }
  .cookie-bar .actions { width: 100%; margin-left: 0; }
  .cookie-bar .actions button { flex: 1; padding: 12px 10px; }
}

/* =========================================================
   Hero video stage (cinematic placeholder for real footage)
   ========================================================= */
.video-hero {
  position: relative;
  border-top: none;
  padding: 56px 0 0;
  overflow: hidden;
}
.video-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 540px;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(255,210,180,0.55), transparent 60%),
    radial-gradient(60% 60% at 70% 80%, rgba(120,160,255,0.30), transparent 60%),
    linear-gradient(135deg, #2a1810 0%, #4a2a1a 40%, #1a1a2e 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);
}
@media (max-width: 980px) {
  .video-stage { grid-template-columns: 1fr; min-height: 0; }
}

.video-stage video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}

/* Foreground product video/iframe inside the stage */
.video-stage .yt-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
  opacity: 1;
  object-fit: cover;
}
.video-stage .yt-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
/* Subtle vignette so right-side video sits well under left-side copy */
.video-stage .yt-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.10) 45%, transparent 70%),
    radial-gradient(80% 80% at 100% 100%, rgba(0,0,0,0.30), transparent 60%);
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 980px) {
  .video-stage .yt-wrap::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.20));
  }
}

.video-stage .copy {
  position: relative;
  z-index: 2;
  padding: 56px 56px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(110deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, transparent 100%);
}
@media (max-width: 980px) { .video-stage .copy { padding: 40px 28px; background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25)); } }
.video-stage .copy .eyebrow {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: max-content;
}
.video-stage .copy .eyebrow .dot { box-shadow: 0 0 0 4px rgba(249,115,22,0.30); }
.video-stage h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 18px 0 18px;
  text-wrap: balance;
}
.video-stage p.lead {
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  font-size: 18px;
  margin-bottom: 28px;
}
.video-stage .stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 24px;
}
.video-stage .stats-inline div { color: rgba(255,255,255,0.85); font-size: 13px; }
.video-stage .stats-inline strong {
  display: block; color: #fff;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.video-stage .stage {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 980px) { .video-stage .stage { min-height: 360px; } }

/* Decorative cinematic CSS scene used until a real video is dropped in */
.video-stage .scene {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 70% at 30% 20%, rgba(255,180,120,0.40), transparent 60%),
    radial-gradient(60% 60% at 80% 80%, rgba(120,80,200,0.30), transparent 60%);
}
.video-stage .scene::before {
  /* film-grain shimmer */
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: overlay;
  animation: grain 6s steps(6) infinite;
  opacity: 0.6;
}
@keyframes grain {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-1%,1%); }
  40%  { transform: translate(1%,-1%); }
  60%  { transform: translate(-1%,-1%); }
  80%  { transform: translate(1%,1%); }
  100% { transform: translate(0,0); }
}

/* iPad in the scene */
.video-stage .ipad {
  position: absolute;
  bottom: 8%; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 460px; max-width: 78%;
  aspect-ratio: 4/3;
  background: #0c0c10;
  border-radius: 28px;
  padding: 18px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}
.video-stage .ipad-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8e9d8 0%, #efd6bd 60%, #d8b899 100%);
}
.video-stage .ipad-screen::before {
  /* fake floor grid */
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 60%;
  background:
    linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px) 0 0/24px 24px,
    linear-gradient(to bottom, rgba(0,0,0,0.05) 1px, transparent 1px) 0 0/24px 24px,
    linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
  transform: perspective(380px) rotateX(60deg);
  transform-origin: bottom;
}
.video-stage .ipad-screen .sofa {
  position: absolute; left: 50%; bottom: 22%;
  transform: translateX(-50%);
  width: 60%; height: 30%;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(180deg, #d97757 0%, #b85a3c 100%);
  box-shadow:
    inset 0 -8px 20px rgba(0,0,0,0.25),
    0 30px 30px -10px rgba(0,0,0,0.30);
  animation: float-sofa 5s ease-in-out infinite;
}
.video-stage .ipad-screen .sofa::before,
.video-stage .ipad-screen .sofa::after {
  content: "";
  position: absolute; bottom: 0;
  width: 18%; height: 70%;
  background: linear-gradient(180deg, #b85a3c, #8a3f2a);
  border-radius: 8px;
}
.video-stage .ipad-screen .sofa::before { left: 0; }
.video-stage .ipad-screen .sofa::after  { right: 0; }
@keyframes float-sofa {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-4px); }
}

.video-stage .ipad-screen .ar-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.video-stage .ipad-screen .ar-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: #ff4444;
  box-shadow: 0 0 0 4px rgba(255,68,68,0.25);
  animation: rec 1.6s ease-in-out infinite;
}
@keyframes rec { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.video-stage .ipad-screen .label-pill {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.85);
  color: #0a0a0a;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--mono);
}

/* Hand silhouette holding iPad */
.video-stage .hand {
  position: absolute;
  bottom: -8%; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 90px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0,0,0,0.45), transparent 70%);
  filter: blur(8px);
}

/* Floating UI annotations around iPad */
.video-stage .annot {
  position: absolute;
  background: rgba(255,255,255,0.95);
  color: #0a0a0a;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
  animation: pop 4s ease-in-out infinite;
}
.video-stage .annot strong { color: var(--brand); }
.video-stage .annot.a1 { top: 18%; left: 6%; animation-delay: 0s; }
.video-stage .annot.a2 { top: 30%; right: 4%; animation-delay: 0.7s; }
.video-stage .annot.a3 { bottom: 24%; left: 8%; animation-delay: 1.4s; }
@keyframes pop {
  0%, 90%, 100% { opacity: 0; transform: translateY(8px); }
  10%, 80%      { opacity: 1; transform: translateY(0); }
}

/* Play overlay */
.video-stage .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform .2s ease;
  z-index: 5;
}
.video-stage .play:hover { transform: translate(-50%, -50%) scale(1.06); }
.video-stage .play::before {
  content: "";
  width: 0; height: 0;
  border-left: 22px solid var(--ink);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.video-stage .play .ring-pulse {
  position: absolute; inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.5);
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.video-stage .live-tag {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 5;
}
.video-stage .live-tag .dot {
  width: 6px; height: 6px; background: #fff; border-radius: 999px;
}

/* =========================================================
   Top products slider
   ========================================================= */
.tp-wrap { position: relative; }
.tp-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.tp-head h2 { margin-bottom: 8px; }
.tp-head .tp-controls { display: flex; gap: 8px; }
.tp-btn {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.tp-btn:hover { border-color: var(--ink); }
.tp-btn:disabled { opacity: 0.4; cursor: default; }
.tp-btn svg { color: var(--ink); }

.tp-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 360px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.tp-track::-webkit-scrollbar { height: 6px; }
.tp-track::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
.tp-track::-webkit-scrollbar-track { background: var(--bg-mute); border-radius: 999px; }

.tp-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.tp-card .img {
  position: relative;
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
  color: rgba(255,255,255,0.92);
  overflow: hidden;
}
.tp-card .img::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.22) 0%, transparent 42%);
}
.tp-card .img .tp-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.tp-card .img > .glyph2 { position: relative; z-index: 1; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.30)); }
.tp-card .img > .tp-ic {
  position: relative; z-index: 1;
  width: 84px; height: 84px;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.28));
}
.tp-card .img > .tp-ic svg {
  width: 100%; height: 100%;
  fill: none;
  stroke: rgba(255,255,255,0.96);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tp-card .img .pill-tag {
  position: absolute; top: 14px; left: 14px;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  color: #0a0a0a;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.tp-card .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tp-card h3 { font-size: 19px; margin-bottom: 6px; letter-spacing: -0.01em; }
.tp-card p { font-size: 14px; color: var(--ink-3); margin-bottom: 14px; }
.tp-card ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.tp-card ul li {
  font-size: 12px;
  background: var(--bg-mute);
  color: var(--ink-2);
  padding: 4px 8px;
  border-radius: 999px;
}
.tp-card .more {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink);
}
.tp-card .more .arrow { transition: transform .2s ease; }
.tp-card:hover .more .arrow { transform: translateX(3px); }

.tp-card.bg-furniture .img { background: linear-gradient(135deg, #f97316 0%, #ef4444 100%); }
.tp-card.bg-pools     .img { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.tp-card.bg-rugs      .img { background: linear-gradient(135deg, #f43f5e 0%, #9f1239 100%); }
.tp-card.bg-flooring  .img { background: linear-gradient(135deg, #d97706 0%, #92400e 100%); }
.tp-card.bg-wallart   .img { background: linear-gradient(135deg, #8b5cf6 0%, #5b21b6 100%); }
.tp-card.bg-showroom  .img { background: linear-gradient(135deg, #1f2937 0%, #4b5563 100%); }
.tp-card.bg-construct .img { background: linear-gradient(135deg, #0ea5e9 0%, #1e3a8a 100%); }
.tp-card.bg-autofit   .img { background: linear-gradient(135deg, #111827 0%, #374151 70%, #f97316 100%); }
.tp-card.bg-electronics .img { background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%); }
.tp-card.bg-sdk       .img { background: linear-gradient(135deg, #0f172a 0%, #312e81 60%, #6366f1 100%); }
.tp-card.bg-sdk       .img .glyph2 { font-family: var(--mono); font-size: 90px; font-weight: 600; }

/* =========================================================
   Explore-more SEO tag cloud
   ========================================================= */
.explore {
  border-top: 1px solid var(--line);
  padding: 56px 0 64px;
}
.explore .head {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.explore .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.explore .pills a {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg-mute);
  color: var(--ink-2);
  font-size: 14.5px;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.explore .pills a:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

/* =========================================================
   Picture / lifestyle media blocks
   ========================================================= */
.media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
}
.media .label {
  position: relative; z-index: 1;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.18);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.media .glyph {
  position: absolute; z-index: 0;
  font-size: 140px;
  line-height: 1;
  right: -10px; top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  opacity: 0.85;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.35));
}
.media .ring {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(50% 50% at 30% 30%, rgba(255,255,255,0.25), transparent 60%),
    radial-gradient(50% 50% at 70% 70%, rgba(0,0,0,0.18), transparent 60%);
  z-index: 0;
}
.media.m-livingroom { background: linear-gradient(135deg, #f97316 0%, #ef4444 60%, #db2777 100%); }
.media.m-studio     { background: linear-gradient(135deg, #1f2937 0%, #4b5563 100%); }
.media.m-store      { background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%); }
.media.m-tech       { background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%); }
.media.m-people     { background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%); }
.media.m-globe      { background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%); }

/* Mosaic of image cards */
.mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}
.mosaic .media:nth-child(1) { grid-row: 1 / 3; min-height: 0; }
@media (max-width: 800px) {
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic .media:nth-child(1) { grid-column: 1 / 3; grid-row: auto; min-height: 220px; }
}

/* Office / address card */
.office {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: #fff;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.office .map {
  flex: 0 0 220px;
  height: 200px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #fff4ed 0%, #ffe4cc 50%, #ffd4b3 100%),
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(0,0,0,0.04) 18px, rgba(0,0,0,0.04) 19px);
  position: relative;
  border: 1px solid var(--line);
}
.office .map::after {
  content: "📍";
  position: absolute;
  top: 50%; left: 50%;
  font-size: 36px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.office .map .lines {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, transparent 30%, rgba(249,115,22,0.4) 30%, rgba(249,115,22,0.4) 32%, transparent 32%),
    linear-gradient(0deg, transparent 50%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.08) 51%, transparent 51%);
}
@media (max-width: 700px) {
  .office { flex-direction: column; }
  .office .map { flex: none; width: 100%; }
}

/* Founder card */
.founder {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}
.founder .avatar {
  width: 220px; height: 220px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97316 0%, #ef4444 50%, #db2777 100%);
  position: relative;
  overflow: hidden;
}
.founder .avatar::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 50%;
  width: 130px; height: 130px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: inset 0 -20px 40px rgba(0,0,0,0.05);
}
.founder .avatar::after {
  content: "";
  position: absolute;
  top: 38%;
  left: 50%;
  width: 70px; height: 70px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  transform: translateX(-50%);
}
@media (max-width: 700px) {
  .founder { grid-template-columns: 1fr; text-align: left; }
  .founder .avatar { width: 100%; height: 240px; }
}
.founder h3 { font-size: 22px; }
.founder .role { color: var(--ink-3); font-size: 14px; margin-top: 4px; margin-bottom: 12px; }

/* Legal index */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .legal-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .legal-grid { grid-template-columns: 1fr; } }
.legal-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  background: #fff;
  display: block;
  transition: border-color .15s ease, transform .15s ease;
}
.legal-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.legal-card .lc-kicker { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); }
.legal-card h3 { margin: 6px 0 4px; font-size: 17px; }
.legal-card p { font-size: 13.5px; color: var(--ink-3); }

/* ---------- Testimonials ---------- */
.tlist { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; margin-top: 40px; }
.tcard {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: #fff;
  display: flex; flex-direction: column;
}
.tcard .mark { font-size: 30px; line-height: 1; color: var(--line-strong); font-weight: 700; margin-bottom: 8px; }
.tcard .quote { font-size: 15px; line-height: 1.55; color: var(--ink); }
.tcard .who { margin-top: auto; padding-top: 18px; }
.tcard .who .name { font-weight: 600; font-size: 14px; color: var(--ink); }
.tcard .who .dom { font-size: 12.5px; color: var(--ink-4); margin-top: 1px; }

/* ---------- Dual device showcase (web + AR phone), arizo-style ---------- */
.device-showcase { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: center; margin-top: 44px; }
@media (max-width: 820px) { .device-showcase { grid-template-columns: 1fr; gap: 32px; } }
.device-web { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #fff; }
.device-web .bar { height: 36px; background: var(--bg-mute); display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid var(--line); }
.device-web .bar span { width: 10px; height: 10px; border-radius: 999px; background: var(--line-strong); }
.device-web img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; }
.device-phone { width: 232px; margin: 0 auto; border-radius: 34px; border: 9px solid #111; overflow: hidden; box-shadow: var(--shadow-lg); background: #111; aspect-ratio: 9/19; }
.device-phone img { width: 100%; height: 100%; object-fit: cover; display: block; }
.device-cap { text-align: center; font-size: 13px; color: var(--ink-3); margin-top: 12px; letter-spacing: 0.02em; }

/* ---------- Arizo-style closing CTA: "first step to selling more" ---------- */
.sell-more { text-align: center; padding-bottom: 8px; }
.sell-more h2 { margin: 0 auto; max-width: 640px; }
.sell-more .arrow-down {
  margin: 28px auto 0; display: block;
  width: 30px; height: 88px; color: var(--cta);
}
.sell-more .arrow-down svg { width: 100%; height: 100%; }
.demo-band { background: var(--cta); color: #fff; text-align: center; padding: 72px 0; }
.demo-band h2 { color: #fff; margin: 0 auto; max-width: 720px; }
.demo-band p { color: rgba(255,255,255,0.88); font-size: 17px; margin: 16px auto 28px; max-width: 560px; }
.demo-band .btn { background: #fff; color: var(--cta); }
.demo-band .btn:hover { background: #f0f0f0; }

/* ---------- Product-page feature visuals: photo fill ---------- */
.pwa-feature-visual { overflow: hidden; }
.pwa-feature-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pwa-stage img, .pwa-stage video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Without / With Vizbl comparison ---------- */
.cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
@media (max-width: 800px) { .cmp { grid-template-columns: 1fr; gap: 18px; } }
.cmp-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--bg);
}
.cmp-card.is-with { border-color: var(--cta); box-shadow: var(--shadow); }
.cmp-head { margin-bottom: 18px; }
.cmp-head .tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-4);
}
.cmp-card.is-with .cmp-head .tag { color: var(--cta); }
.cmp-head h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; margin: 8px 0 0; }
.cmp-list { list-style: none; margin: 0; padding: 0; }
.cmp-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 0; border-top: 1px solid var(--line);
  font-size: 15px; line-height: 1.5; color: var(--ink-2);
}
.cmp-list li:first-child { border-top: none; }
.cmp-ic {
  flex: 0 0 20px; width: 20px; height: 20px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.cmp-ic svg { width: 11px; height: 11px; }
.cmp-ic.no { background: var(--bg-mute); color: var(--ink-4); }
.cmp-ic.yes { background: var(--cta-soft); color: var(--cta); }

/* ---------- Line-icon treatment (replaces emoji glyphs) ---------- */
.ind .ind-icon svg {
  width: 24px; height: 24px;
  fill: none; stroke: #fff; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
/* plan-icon: ensure a consistent rounded box even inside .card pricing */
.plan-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.plan-icon svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.cat-card .cat-stats svg {
  width: 13px; height: 13px;
  vertical-align: -2px; margin-right: 3px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  display: inline-block;
}
.cat-card .cat-stats svg.ic-fill { fill: currentColor; stroke: none; }
.lifestyle .floater svg {
  width: 40px; height: 40px;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ============== BLOG (index + article) ============== */
.blog-hero{padding:56px 0 24px;text-align:center}
.blog-hero .eyebrow{color:var(--brand);font-weight:700;letter-spacing:.04em;text-transform:uppercase;font-size:.8rem;margin:0 0 8px}
.blog-hero h1{font-size:clamp(2rem,4vw,3rem);margin:0 0 12px}
.blog-hero .lead{max-width:680px;margin:0 auto 22px;color:#444;font-size:1.1rem}
.blog-search{width:min(520px,90%);padding:13px 18px;border:1px solid #e2e2e2;border-radius:999px;font-size:1rem;outline:none}
.blog-search:focus{border-color:var(--cta);box-shadow:0 0 0 3px rgba(2,99,224,.12)}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:26px;padding:34px 0 70px}
.blog-card{display:flex;flex-direction:column;background:#fff;border:1px solid #ededed;border-radius:16px;overflow:hidden;transition:transform .18s ease,box-shadow .18s ease}
.blog-card:hover{transform:translateY(-4px);box-shadow:0 14px 34px rgba(0,0,0,.08)}
.blog-card-img{display:block;aspect-ratio:16/9;overflow:hidden;background:#f4f4f5}
.blog-card-img img{width:100%;height:100%;object-fit:cover;display:block}
.blog-card-body{padding:18px 20px 22px;display:flex;flex-direction:column;gap:9px;flex:1}
.blog-card-body h3{font-size:1.12rem;line-height:1.32;margin:0}
.blog-card-body h3 a{color:var(--ink);text-decoration:none}
.blog-card-body h3 a:hover{color:var(--cta)}
.blog-card-body p{color:#5a5a5a;font-size:.94rem;line-height:1.55;margin:0;flex:1}
.blog-card-more{color:var(--cta);font-weight:600;font-size:.9rem;text-decoration:none;margin-top:4px}
.blog-card-more:hover{text-decoration:underline}
/* article */
.blog-article{padding:40px 0 60px}
.blog-narrow{max-width:760px}
.blog-kicker{font-size:.85rem;color:#777;margin:0 0 10px}
.blog-kicker a{color:var(--brand);text-decoration:none;font-weight:600}
.blog-article h1{font-size:clamp(1.8rem,3.4vw,2.7rem);line-height:1.2;margin:0 0 26px}
.blog-body{font-size:1.08rem;line-height:1.75;color:#2b2b2b}
.blog-body p{margin:0 0 20px}
.blog-body h2{font-size:1.6rem;margin:38px 0 14px;line-height:1.3}
.blog-body h3{font-size:1.28rem;margin:28px 0 12px}
.blog-body ul,.blog-body ol{margin:0 0 20px;padding-left:24px}
.blog-body li{margin:0 0 9px}
.blog-body a{color:var(--cta)}
.blog-body img{max-width:100%;height:auto;border-radius:12px;margin:20px 0}
.blog-body figure{margin:20px 0}
.blog-back{margin:36px 0 0}
.blog-back a{color:var(--cta);text-decoration:none;font-weight:600}
.blog-cta{margin-top:46px;padding:32px;background:linear-gradient(135deg,#0263e0,#0a4fb0);border-radius:18px;color:#fff;text-align:center}
.blog-cta h2{color:#fff;margin:0 0 8px;font-size:1.5rem}
.blog-cta p{color:rgba(255,255,255,.9);margin:0 0 18px}
@media(max-width:600px){.blog-grid{grid-template-columns:1fr}}

/* ---- blog hero image + gradient covers + chips ---- */
.blog-hero-img{margin:0 0 28px;border-radius:18px;overflow:hidden;aspect-ratio:16/8;background:#f4f4f5}
.blog-hero-img img{width:100%;height:100%;object-fit:cover;display:block}
.blog-card-img{position:relative}
.blog-tag{position:absolute;left:12px;top:12px;background:rgba(10,10,10,.72);color:#fff;font-size:.72rem;font-weight:600;letter-spacing:.03em;text-transform:uppercase;padding:5px 10px;border-radius:999px;backdrop-filter:blur(4px)}
.blog-card-grad{position:relative;display:flex;align-items:center;justify-content:center;min-height:172px;overflow:hidden}
.blog-card-grad::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 80% 18%,rgba(255,255,255,.24),transparent 56%),radial-gradient(circle at 8% 98%,rgba(0,0,0,.22),transparent 52%)}
.blog-card-grad::after{content:"VIZBL";position:absolute;right:14px;bottom:11px;color:rgba(255,255,255,.34);font-weight:800;font-size:.78rem;letter-spacing:.12em}
.blog-grad-cat{position:relative;color:#fff;font-weight:800;font-size:1.5rem;letter-spacing:.01em;text-shadow:0 2px 16px rgba(0,0,0,.22)}
.blog-grad-cat::before{content:"";display:block;width:34px;height:34px;margin:0 auto 12px;border-radius:10px;background:rgba(255,255,255,.92);-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2 3 7v10l9 5 9-5V7zm0 2.3 6.5 3.6L12 11.5 5.5 7.9zM5 9.3l6 3.3v6.9l-6-3.3zm14 0v6.9l-6 3.3v-6.9z'/%3E%3C/svg%3E") center/contain no-repeat;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2 3 7v10l9 5 9-5V7zm0 2.3 6.5 3.6L12 11.5 5.5 7.9zM5 9.3l6 3.3v6.9l-6-3.3zm14 0v6.9l-6 3.3v-6.9z'/%3E%3C/svg%3E") center/contain no-repeat}
.blog-chips{display:flex;flex-wrap:wrap;gap:8px;justify-content:center;margin-top:18px}
.blog-chip{border:1px solid #e2e2e2;background:#fff;color:#444;padding:7px 15px;border-radius:999px;font-size:.86rem;font-weight:600;cursor:pointer;transition:all .15s}
.blog-chip:hover{border-color:var(--cta);color:var(--cta)}
.blog-chip.is-on{background:var(--ink);color:#fff;border-color:var(--ink)}
