/* ── Zapify Billing · Landing Styles ── */

:root {
  --primary:      oklch(20.5% 0 0);
  --primary-hover: oklch(28% 0 0);
  --primary-fg:   oklch(98.5% 0 0);
  --brand-highlight: #6f6f6fb8;
  --brand-highlight-bright: #ffffff;
  --accent:       var(--brand-highlight);
  --accent-dark:  oklch(32% 0 0);
  --cta-bg-base:  var(--primary);
  --cta-bg-mid:   var(--primary-hover);
  --cta-bg-deep:  oklch(17% 0 0);
  --cta-final-bg: linear-gradient(
    165deg,
    var(--cta-bg-base) 0%,
    var(--cta-bg-mid) 52%,
    var(--cta-bg-deep) 100%
  );
  --accent-soft:  var(--primary);
  --accent-soft-fade: linear-gradient(180deg, var(--surface) 0%, var(--off) 38%, var(--white) 100%);
  --accent-muted: oklch(84% 0.01 260);
  --navy:         oklch(20.5% 0 0);
  --ink:          oklch(20.5% 0 0);
  --muted:        oklch(52% 0.01 260);
  --muted-light:  oklch(68% 0.01 260);
  --white:        oklch(100% 0 0);
  --off:          oklch(97.5% 0.005 260);
  --surface:      oklch(96% 0.006 260);
  --mint-bg:      oklch(96.5% 0.005 260);
  --lavender-bg:  oklch(97% 0.02 290);
  --warm-bg:      oklch(97.5% 0.015 80);
  --cool-bg:      oklch(97% 0.02 158);
  --rule:         oklch(90% 0.01 260);
  --success:      oklch(52% 0.14 145);
  --warn:         oklch(62% 0.14 75);
  --error:        oklch(55% 0.2 25);
  --shadow-sm:    0 1px 2px oklch(20.5% 0 0 / 0.06);
  --shadow-md:    0 8px 30px oklch(20.5% 0 0 / 0.08);
  --shadow-lg:    0 24px 60px oklch(20.5% 0 0 / 0.12);
  --shadow-btn:   0 4px 14px oklch(20.5% 0 0 / 0.25);
  --radius:       12px;
  --radius-lg:    16px;
  --radius-xl:    20px;
  --content-max:  1320px;
  --content-padding: 24px;
  --nav-height:   72px;
  /* Typography */
  --font-sans:    'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-brand:   'Outfit', var(--font-sans);
  --font-display: 'Outfit', var(--font-sans);
  --font-mono:    ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  font-family: var(--font-sans);
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-feature-settings: 'cv02' 1, 'cv03' 1, 'cv04' 1, 'cv11' 1;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
}

.breadcrumbs {
  padding: 0.75rem 0 0;
  background: var(--white);
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.breadcrumbs__item:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--border);
}

.breadcrumbs__item a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs__item a:hover {
  color: var(--ink);
}

.breadcrumbs__item span[aria-current='page'] {
  color: var(--ink);
  font-weight: 500;
}

button,
input,
textarea,
select {
  font-family: var(--font-sans);
}

main { display: block; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-off { background: var(--off); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-12 { margin-bottom: 48px; }
.mb-10 { margin-bottom: 40px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }

/* ── Typography helpers ── */
.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.section-tag-light { color: oklch(75% 0.02 260); }

.eyebrow::before,
.section-tag::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.section-header-light .section-title,
.section-header-light .section-sub {
  color: var(--white);
}

.section-header-light .section-sub {
  color: rgba(255, 255, 255, 0.72);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}

.highlight {
  color: var(--primary);
}

.text-warn { color: var(--warn); }
.text-success { color: var(--success); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s, border-color 0.2s;
  white-space: nowrap;
}

.btn-sm { font-size: 14px; padding: 8px 18px; }
.btn-md { font-size: 14px; padding: 11px 22px; }
.btn-lg { font-size: 15px; padding: 14px 28px; }
.btn-xl { font-size: 16px; padding: 16px 32px; }

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 8px 24px oklch(20.5% 0 0 / 0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--rule);
}

.btn-secondary:hover {
  border-color: transparent;
  background: var(--cta-final-bg);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost:hover { color: var(--accent-dark); }

.btn-white {
  background: var(--white);
  color: var(--accent);
}

.btn-white:hover { background: var(--off); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.navbar.scrolled {
  border-bottom-color: var(--rule);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.nav-wordmark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--off);
}

.nav-links a.active { color: var(--accent); }

.nav-cta { flex-shrink: 0; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) { opacity: 0; }

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 16px var(--content-padding) 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 12px 8px;
  border-radius: 8px;
}

.nav-mobile a:hover { background: var(--off); }
.nav-mobile .btn { margin-top: 12px; width: 100%; }

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter {
  background: var(--cta-final-bg);
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, oklch(100% 0 0 / 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.footer-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-newsletter-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.footer-newsletter-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 360px;
}

.footer-newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 440px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  outline: none;
}

.footer-newsletter-form input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.footer-newsletter-form .btn-primary {
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(11, 26, 51, 0.35);
  flex-shrink: 0;
  padding: 12px 24px;
}

.footer-newsletter-form .btn-primary:hover {
  background: var(--ink);
}

.footer-main {
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-col { max-width: 280px; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-wordmark {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-brand-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a,
.footer-links span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Hero (centered) ── */
.hero {
  padding: calc(var(--nav-height) + 56px) 0 0;
  background: var(--accent-soft-fade);
  position: relative;
  overflow: hidden;
}

.hero-centered {
  text-align: center;
  padding-bottom: 48px;
}

.hero-centered::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, oklch(20.5% 0 0 / 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-center {
  max-width: 720px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--white);
  border: 1px solid var(--accent-muted);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-sub-center {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions-center {
  justify-content: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.hero-trust-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.hero-trust-stars svg,
.hero-trust-stars i[data-lucide] {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.hero-product {
  margin-top: 56px;
  padding-bottom: 72px;
}

/* Legacy hero layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--accent-muted);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-badge-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-num .accent { color: var(--accent); }

.hero-stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Product mockup ── */
.product-mockup {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.product-mockup-glow {
  position: absolute;
  inset: 10% 5% -8%;
  background: radial-gradient(ellipse at center, oklch(20.5% 0 0 / 0.08) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.product-mockup .mockup {
  position: relative;
  z-index: 1;
}

.product-mockup--app {
  max-width: 680px;
  width: 100%;
}

.product-mockup--app .dash-mock {
  position: relative;
  z-index: 1;
}

.dash-mock {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  min-height: 400px;
  background: oklch(98% 0.004 260);
  border: 1px solid oklch(90% 0.01 260);
  border-radius: 14px;
  box-shadow:
    0 0 0 1px oklch(100% 0 0 / 0.6) inset,
    0 24px 48px oklch(20% 0 0 / 0.12),
    0 4px 12px oklch(20% 0 0 / 0.06);
  overflow: hidden;
  font-family: var(--font-sans);
}

.dash-mock__sidebar {
  background: oklch(98.5% 0.002 260);
  border-right: 1px solid oklch(92% 0.01 260);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-mock__sidebar-head {
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid oklch(92% 0.01 260);
}

.dash-mock__switcher {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  border: none;
  border-radius: 10px;
  background: transparent;
  text-align: left;
  cursor: default;
  color: var(--ink);
}

.dash-mock__switcher.is-open {
  background: oklch(96% 0.01 260);
}

.dash-mock__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px oklch(20% 0 0 / 0.1);
}

.dash-mock__switcher-copy {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 1px;
  line-height: 1.25;
}

.dash-mock__switcher-org {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-mock__switcher-branch {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-mock__switcher-chevron {
  flex-shrink: 0;
  color: var(--muted);
  opacity: 0.75;
}

.dash-mock__branch-menu {
  margin-top: 6px;
  background: var(--white);
  border: 1px solid oklch(90% 0.01 260);
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 10px 28px oklch(20% 0 0 / 0.12);
}

.dash-mock__branch-menu-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 8px 4px;
}

.dash-mock__branch-menu-sep {
  height: 1px;
  margin: 4px 6px;
  background: oklch(92% 0.01 260);
}

.dash-mock__branch-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 500;
  color: var(--ink);
}

.dash-mock__branch-option-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid oklch(90% 0.01 260);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
}

.dash-mock__branch-option-name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-mock__branch-option.is-active {
  background: oklch(96% 0.02 158);
  color: var(--primary);
  font-weight: 600;
}

.dash-mock__branch-option.is-active .dash-mock__branch-option-icon {
  border-color: oklch(86% 0.05 158);
  color: var(--primary);
}

.dash-mock__branch-option--add .dash-mock__branch-option-name {
  color: var(--muted);
  font-weight: 500;
}

.dash-mock__sidebar--menu-open {
  gap: 8px;
}

.dash-mock__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}

.dash-mock__nav span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}

.dash-mock__nav span svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.dash-mock__nav span.is-active {
  background: oklch(96% 0.01 260);
  color: var(--ink);
  font-weight: 600;
}

.dash-mock__main {
  padding: 14px 14px 12px;
  overflow: hidden;
  background: oklch(97.5% 0.003 260);
}

.dash-mock__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid oklch(92% 0.01 260);
}

.dash-mock__crumb {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2px;
}

.dash-mock__header h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 4px;
}

.dash-mock__header p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
  max-width: 220px;
}

.dash-mock__header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.dash-mock__search {
  font-size: 11px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid oklch(90% 0.01 260);
  background: var(--white);
  min-width: 72px;
}

.dash-mock__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-mock__section-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 8px;
}

.dash-mock__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.dash-mock__cards--4 {
  grid-template-columns: repeat(4, 1fr);
}

.dash-mock__card {
  position: relative;
  background: linear-gradient(180deg, oklch(100% 0 0 / 0.55) 0%, var(--white) 100%);
  border: 1px solid oklch(90% 0.01 260 / 0.85);
  border-radius: 12px;
  padding: 10px 10px 8px;
  min-height: 72px;
  box-shadow: 0 1px 2px oklch(20% 0 0 / 0.04);
}

.dash-mock__card-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 4px;
  line-height: 1.3;
}

.dash-mock__card strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.dash-mock__card strong.is-warn { color: oklch(52% 0.14 55); }
.dash-mock__card strong.is-muted { color: oklch(48% 0.02 260); }

.dash-mock__card em {
  display: block;
  font-size: 9px;
  font-style: normal;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-mock__chart-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dash-mock__chart-card {
  background: var(--white);
  border: 1px solid oklch(90% 0.01 260);
  border-radius: 12px;
  padding: 10px;
  min-height: 88px;
}

.dash-mock__chart-title {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.dash-mock__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
}

.dash-mock__chart-bars span {
  flex: 1;
  height: var(--h, 50%);
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  opacity: 0.88;
}

.dash-mock__spark {
  width: 100%;
  height: 52px;
  color: var(--primary);
}

/* Hero app mocks — compact variants */
.dash-mock--hero {
  min-height: 400px;
  width: 100%;
  min-width: 0;
}

.dash-mock--hero .dash-mock__cards--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dash-mock--hero .dash-mock__card em {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.dash-mock__header--compact {
  margin-bottom: 10px;
  padding-bottom: 8px;
}

.dash-mock__header--compact h3 {
  font-size: 15px;
}

.dash-mock__header--compact p {
  max-width: 100%;
}

.dash-mock__header--server .dash-mock__mono {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  margin: 0;
}

.dash-mock__pill {
  flex-shrink: 0;
  align-self: flex-start;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid oklch(88% 0.02 260);
  background: var(--white);
  color: var(--muted);
}

.dash-mock__pill--success {
  color: oklch(42% 0.12 155);
  border-color: oklch(88% 0.06 155);
  background: oklch(96% 0.03 155);
}

.dash-mock__pill--ai {
  color: oklch(48% 0.14 290);
  border-color: oklch(88% 0.06 290);
  background: oklch(96% 0.04 290);
}

.dash-mock__cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.dash-mock__card--accent {
  border-color: oklch(86% 0.05 158);
  box-shadow: 0 0 0 1px oklch(58% 0.16 250 / 0.08);
}

.dash-mock__panel {
  background: var(--white);
  border: 1px solid oklch(90% 0.01 260);
  border-radius: 12px;
  overflow: hidden;
}

.dash-mock__map-head,
.dash-mock__map-row {
  display: grid;
  grid-template-columns: 1.1fr 16px 1fr 44px;
  gap: 6px;
  align-items: center;
  padding: 7px 10px;
  font-size: 10px;
}

.dash-mock__map-head {
  background: oklch(97% 0.004 260);
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 8px;
  border-bottom: 1px solid oklch(92% 0.01 260);
}

.dash-mock__map-row {
  border-bottom: 1px solid oklch(94% 0.01 260);
}

.dash-mock__map-row:last-of-type {
  border-bottom: none;
}

.dash-mock__map-row code {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
  background: oklch(97% 0.004 260);
  padding: 2px 5px;
  border-radius: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-mock__map-row strong {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
}

.dash-mock__map-arrow {
  text-align: center;
  color: var(--muted);
  font-size: 11px;
}

.dash-mock__conf {
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  text-align: right;
  color: var(--muted);
}

.dash-mock__conf.is-high {
  color: oklch(48% 0.12 155);
}

.dash-mock__map-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background: oklch(97.5% 0.006 158);
  border-top: 1px solid oklch(92% 0.01 260);
  font-size: 10px;
  color: var(--muted);
}

.dash-mock__map-foot strong {
  color: var(--ink);
  font-weight: 800;
}

.dash-mock__table-wrap {
  background: var(--white);
  border: 1px solid oklch(90% 0.01 260);
  border-radius: 12px;
  overflow: hidden;
}

.dash-mock__table-head,
.dash-mock__table-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.7fr 0.55fr;
  gap: 6px;
  align-items: center;
  padding: 7px 10px;
  font-size: 10px;
}

.dash-mock__table-head {
  background: oklch(97% 0.004 260);
  color: var(--muted);
  font-weight: 600;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid oklch(92% 0.01 260);
}

.dash-mock__table-row {
  border-bottom: 1px solid oklch(94% 0.01 260);
}

.dash-mock__table-row:last-child {
  border-bottom: none;
}

.dash-mock__table-row span:first-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.dash-mock__table-row strong {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-mock__table-row em {
  font-size: 8px;
  font-style: normal;
  color: var(--muted);
}

.dash-mock__table-row .is-warn {
  color: oklch(52% 0.14 55);
  font-weight: 600;
}

.dash-mock__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 6px;
  width: fit-content;
}

.dash-mock__badge--paid {
  background: oklch(94% 0.04 155);
  color: oklch(40% 0.1 155);
}

.dash-mock__badge--due {
  background: oklch(94% 0.04 55);
  color: oklch(48% 0.12 55);
}

.dash-mock__badge--online {
  background: oklch(58% 0.16 155);
  color: var(--white);
}

.dash-mock__badge--active {
  background: oklch(96% 0.01 260);
  color: var(--ink);
  border: 1px solid oklch(88% 0.01 260);
}

.dash-mock__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex-shrink: 0;
}

.dash-mock__panel--router {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-mock__router-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}

.dash-mock__router-line strong {
  flex: 1;
  font-weight: 600;
  color: var(--ink);
}

.dash-mock__router-line em {
  font-style: normal;
  font-size: 9px;
  color: oklch(48% 0.12 155);
  font-weight: 600;
}

.dash-mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dash-mock__dot--ok {
  background: oklch(58% 0.16 155);
}

.dash-mock__dot--pulse {
  background: var(--primary);
  box-shadow: 0 0 0 3px oklch(58% 0.16 250 / 0.25);
}

.dash-mock__main--ai {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.dash-mock__ai-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
  min-height: 0;
}

.dash-mock__ai-msg {
  max-width: 92%;
  font-size: 10px;
  line-height: 1.45;
}

.dash-mock__ai-msg p {
  margin: 0;
}

.dash-mock__ai-msg--user {
  align-self: flex-end;
  background: var(--primary);
  color: var(--white);
  padding: 7px 10px;
  border-radius: 12px 12px 4px 12px;
}

.dash-mock__ai-msg--bot {
  align-self: flex-start;
  display: flex;
  gap: 6px;
  background: var(--white);
  border: 1px solid oklch(90% 0.01 260);
  padding: 8px 10px;
  border-radius: 12px 12px 12px 4px;
}

.dash-mock__ai-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: oklch(94% 0.06 290);
  color: oklch(48% 0.14 290);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-mock__ai-msg--bot em {
  font-style: normal;
  color: var(--muted);
  font-size: 9px;
}

.dash-mock__ai-chip {
  margin-top: 6px;
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid oklch(88% 0.05 158);
  background: oklch(97% 0.02 158);
  color: var(--primary);
  cursor: default;
}

.dash-mock__ai-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid oklch(90% 0.01 260);
  background: var(--white);
  font-size: 10px;
  color: var(--muted);
}

.dash-mock__ai-send {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-slide__visual .hero-app-mock,
.hero-slide__visual .product-mockup--app {
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: 0;
}

.hero-slide__visual--import .dash-mock--import,
.hero-slide__visual--ai .dash-mock--ai,
.hero-slide__visual--billing .dash-mock--billing,
.hero-slide__visual--router .dash-mock--server {
  min-height: 400px;
}

.hero-slide__visual--import .import-hero-mock,
.hero-slide__visual--ai .ai-mock,
.import-hero-mock {
  min-height: 400px;
}

.mockup {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 24px 64px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: var(--off);
  border-bottom: 1px solid var(--rule);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rule);
}

.mockup-dot:nth-child(1) { background: #fca5a5; }
.mockup-dot:nth-child(2) { background: #fde68a; }
.mockup-dot:nth-child(3) { background: #86efac; }

.mockup-bar-title {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.mockup-body { padding: 20px; }

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.mockup-search {
  flex: 1;
  font-size: 12px;
  color: var(--muted-light);
  background: var(--off);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 8px 12px;
}

.mockup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.mockup-stat {
  background: var(--off);
  border-radius: var(--radius);
  padding: 14px;
}

.mockup-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.mockup-stat-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.mockup-stat-val.accent { color: var(--accent); }
.mockup-stat-val.warn { color: var(--warn); }

.mockup-stat-change {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.mockup-stat-change.up {
  color: var(--success);
  font-weight: 600;
}

.mockup-chart-wrap {
  background: var(--off);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}

.mockup-chart-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.mockup-chart {
  height: 100px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.mockup-bar-col {
  flex: 1;
  background: var(--accent-muted);
  border-radius: 4px 4px 0 0;
  min-height: 8px;
  transition: height 0.3s;
}

.mockup-bar-col.active { background: var(--accent); }

.mockup-table { margin-top: 0; }

.mockup-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.mockup-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
}

.mockup-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
}

.mockup-row:last-child { border-bottom: none; }

.mockup-row-name { font-weight: 600; color: var(--ink); }
.mockup-row-amt { font-weight: 700; color: var(--accent); }

.status-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
}

.status-paid { background: #dcfce7; color: #166534; }
.status-due { background: #fef3c7; color: #92400e; }

/* ── Trust bar ── */
.trust-bar {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-metric-val {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.trust-metric-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ── Use cases ── */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usecase-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.usecase-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--accent-muted);
}

.usecase-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.usecase-icon svg,
.usecase-icon i[data-lucide] {
  width: 22px;
  height: 22px;
}

.usecase-icon-brand {
  background: var(--cta-final-bg);
  color: var(--brand-highlight-bright);
}

.usecase-icon-green {
  background: #dcfce7;
  color: #15803d;
}

.usecase-icon-purple {
  background: var(--lavender-bg);
  color: #7c3aed;
}

.usecase-icon-orange {
  background: #ffedd5;
  color: #c2410c;
}

.usecase-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.usecase-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Split sections ── */
.split-section {
  padding: 88px 0;
}

.split-section-mint {
  background: var(--mint-bg);
}

.split-section-lavender {
  background: var(--lavender-bg);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-grid-reverse .split-visual { order: -1; }

.split-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.split-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.split-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.split-list {
  list-style: none;
  margin-bottom: 28px;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.5;
}

.split-list li svg,
.split-list li i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.split-visual {
  display: flex;
  justify-content: center;
}

/* ── Mini mockups ── */
.mini-mockup {
  width: 100%;
  max-width: 380px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.mini-mockup-header {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.mini-invoice-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 10px 0;
  color: var(--muted);
}

.mini-invoice-row strong {
  font-weight: 700;
  color: var(--ink);
}

.mini-progress {
  height: 8px;
  background: var(--rule);
  border-radius: 100px;
  margin: 16px 0 8px;
  overflow: hidden;
}

.mini-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 100px;
}

.mini-caption {
  font-size: 12px;
  color: var(--muted);
}

.router-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 14px;
  background: #dcfce7;
  border-radius: var(--radius);
  margin-bottom: 14px;
}

.router-status.online .router-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.router-stat {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
}

.router-stat:last-child { border-bottom: none; }

.router-stat strong {
  color: var(--ink);
  font-weight: 700;
}

.reseller-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--off);
  border-radius: var(--radius);
  margin-bottom: 10px;
  font-size: 14px;
}

.reseller-card:last-child { margin-bottom: 0; }

.reseller-card span { color: var(--muted); }
.reseller-card strong { font-weight: 700; color: var(--ink); }

/* ── Dark integration section ── */
.section-dark {
  background: var(--navy);
  padding: 88px 0;
  color: var(--white);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.integration-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.integration-item svg,
.integration-item i[data-lucide] {
  width: 28px;
  height: 28px;
  color: var(--accent);
  stroke: var(--accent);
}

/* ── Steps row ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-box {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.step-box:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-muted);
}

.step-box-num {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step-box-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.step-box-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Testimonial wall ── */
.wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 20px;
}

.wall-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.wall-card-tall {
  grid-row: span 2;
}

.wall-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  margin-bottom: 14px;
}

.wall-stars svg,
.wall-stars i[data-lucide] {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.wall-quote {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.wall-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wall-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.wall-author span {
  font-size: 13px;
  color: var(--muted);
}

.wall-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cta-final-bg);
  color: var(--brand-highlight-bright);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Final CTA ── */
.cta-final {
  background: var(--cta-final-bg);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% -20%, oklch(100% 0 0 / 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.cta-final .container {
  position: relative;
  z-index: 1;
}

.cta-final-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-final-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.cta-final .cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── CTA band (inner pages) ── */
.cta-band {
  background: var(--cta-final-bg);
  padding: 80px var(--content-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band .section-title { color: var(--white); }
.cta-band .section-sub {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 32px;
}

.cta-band .eyebrow { color: rgba(255, 255, 255, 0.7); }
.cta-band .eyebrow::before { background: rgba(255, 255, 255, 0.5); }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── Logo strip ── */
.logo-strip {
  background: var(--off);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-light);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-muted);
  border-radius: 50%;
}

/* ── Feature cards (legacy) ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--accent-muted);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--cta-final-bg);
  color: var(--brand-highlight-bright);
}

.feature-icon svg,
.feature-icon i[data-lucide] {
  width: 22px;
  height: 22px;
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Steps grid (legacy) ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 24px 16px;
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Testimonials (legacy) ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  margin-bottom: 14px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.testimonial-text {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.testimonial-role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-height) + 48px) 0 64px;
  background: var(--accent-soft-fade);
  position: relative;
}

.page-hero-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Blog ── */
.section-blog {
  padding-top: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--off);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.03);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 28px 28px;
  flex: 1;
}

.blog-card:hover {
  border-color: color-mix(in srgb, var(--ink) 18%, var(--border));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0;
}

.blog-card--featured .blog-card__media {
  aspect-ratio: auto;
  min-height: 100%;
}

.blog-card--featured .blog-card__body {
  justify-content: center;
  padding: 32px 36px;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.blog-card__category {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--off);
  color: var(--ink);
  font-weight: 600;
}

.blog-card__title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--primary);
}

.blog-card__excerpt {
  flex: 1;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.blog-card__link:hover {
  color: var(--primary);
}

.blog-card__link svg {
  width: 16px;
  height: 16px;
}

.blog-article__header {
  padding: calc(var(--nav-height) + 32px) 0 40px;
  background: var(--accent-soft-fade);
}

.blog-article__header-inner {
  max-width: 760px;
}

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--muted);
}

.blog-article__title {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 16px;
}

.blog-article__excerpt {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 14px;
}

.blog-article__byline {
  font-size: 14px;
  color: var(--muted);
}

.blog-article__cover {
  max-width: 960px;
  margin: -24px auto 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.blog-article__cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-article__content {
  max-width: 760px;
  margin: 48px auto 0;
}

.blog-article__content a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-article__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 760px;
  margin: 48px auto 80px;
}

.blog-article__footer .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-article__footer svg {
  width: 16px;
  height: 16px;
}

/* ── Features page ── */
.feat-module {
  margin-bottom: 48px;
}

.feat-module-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.feat-module-icon {
  width: 44px;
  height: 44px;
  background: var(--cta-final-bg);
  color: var(--brand-highlight-bright);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-module-icon svg,
.feat-module-icon i[data-lucide] {
  width: 22px;
  height: 22px;
}

.feat-module-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.feat-module-count {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--off);
  padding: 4px 12px;
  border-radius: 100px;
}

.feat-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feat-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feat-item:hover {
  border-color: var(--accent-muted);
  box-shadow: var(--shadow-sm);
}

.feat-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.feat-item-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.feat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
}

.feat-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.feat-legend__item svg {
  width: 16px;
  height: 16px;
}

.feat-legend__item--live svg { color: var(--ink); }
.feat-legend__item--soon svg { color: var(--muted); }

.feat-module-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--off);
  border: 1px solid var(--rule);
  padding: 4px 10px;
  border-radius: 100px;
}

.section-features-page {
  padding-top: 0;
}

.feat-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.feat-item-top .feat-item-title {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

.feat-soon-badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--off);
  border: 1px dashed var(--rule);
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

.feat-live-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px oklch(20.5% 0 0 / 0.12);
}

.feat-item--soon {
  background: var(--off);
  border-style: dashed;
}

.feat-item--soon:hover {
  border-color: var(--rule);
  box-shadow: none;
}

.feat-item--soon .feat-item-title {
  color: var(--muted);
}

/* ── Pricing ── */
.billing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.toggle-label.active { color: var(--ink); }

.toggle-wrap {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--accent);
  border-radius: 100px;
  cursor: pointer;
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s;
}

.toggle-wrap.annual .toggle-knob {
  transform: translateX(20px);
}

.save-badge {
  background: #dcfce7;
  color: #166534;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: 0;
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.plan-card:hover {
  box-shadow: var(--shadow-md);
  transform: none;
}

.plan-card.is-featured,
.plan-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: none;
}

.plan-card__badge,
.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 1;
}

.plan-card__header { padding: 28px 28px 0; }

.plan-card__tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}

.plan-card__limits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plan-card__limits li {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.55;
}

.plan-card__pricing {
  margin-top: 20px;
  padding: 22px 28px;
  background: var(--surface);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.plan-card__amount {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.plan-card__amount--custom {
  font-size: 40px;
  display: block;
}

.plan-card__currency {
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
}

.plan-card__unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin: 8px 0 0;
}

.plan-card__billing {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 0;
}

.plan-card__setup {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 4px 0 0;
}

.plan-card__features {
  list-style: none;
  margin: 0;
  padding: 20px 28px;
  flex: 1;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 10px;
}

.plan-card__features li:last-child { margin-bottom: 0; }

.plan-card__features li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-card__features li.is-highlight {
  background: var(--off);
  margin-left: -8px;
  margin-right: -8px;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  font-weight: 600;
}

.plan-card__cta {
  margin: 0 28px 28px;
  width: auto;
  align-self: stretch;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.plan-price {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price .currency {
  font-size: 20px;
  font-weight: 700;
  vertical-align: super;
}

.plan-price .period {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.plan-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.plan-features {
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 10px;
}

.plan-features li::before { display: none; }

.plan-features li i[data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Two-layer pricing (Shared / Dedicated Cloud) ── */
.section-pricing {
  padding-top: 48px;
  background: var(--off);
}

/* ── Smart Import showcase ── */
.section-import {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--off) 50%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.section-import::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(oklch(92% 0.01 260) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}

.section-import .container { position: relative; z-index: 1; }

.import-showcase__badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.import-showcase__flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
}

.import-showcase__flag svg { width: 16px; height: 16px; }

.import-showcase__exclusive {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  background: var(--white);
}

.import-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 48px;
}

.import-showcase__copy .section-title { text-align: left; }
.import-showcase__copy .section-sub { text-align: left; margin-left: 0; max-width: none; }

.import-showcase__points {
  list-style: none;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.import-showcase__points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.import-showcase__points li > i[data-lucide] {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.import-showcase__points strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}

.import-showcase__points span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.import-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.import-showcase__visual { position: relative; }

.import-mock {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.import-mock__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--primary);
  color: var(--white);
}

.import-mock__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.import-mock__title svg { width: 18px; height: 18px; }

.import-mock__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
}

.import-mock__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: oklch(72% 0.16 145);
  box-shadow: 0 0 0 3px oklch(72% 0.16 145 / 0.35);
}

.import-mock__dropzone {
  padding: 20px 18px;
  text-align: center;
  border-bottom: 1px dashed var(--rule);
  background: var(--surface);
}

.import-mock__files {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.import-mock__file {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  background: var(--white);
}

.import-mock__file--csv { color: oklch(45% 0.12 145); border-color: oklch(85% 0.06 145); }
.import-mock__file--xlsx { color: oklch(42% 0.12 158); border-color: oklch(88% 0.05 158); }

.import-mock__dropzone p {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.import-mock__mapping {
  padding: 14px 18px;
}

.import-mock__mapping-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}

.import-mock__mapping-head span:last-child { text-align: right; }

.import-mock__mapping-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 12px;
  border-radius: var(--radius);
  margin-bottom: 4px;
  background: var(--off);
}

.import-mock__mapping-row span { color: var(--muted); font-family: var(--font-mono); font-size: 11px; }
.import-mock__mapping-row em { font-style: normal; font-weight: 600; text-align: right; color: var(--ink); }
.import-mock__mapping-row svg { width: 14px; height: 14px; color: var(--muted); }
.import-mock__mapping-row--auto { background: oklch(96% 0.02 80); border: 1px solid oklch(90% 0.04 80); }
.import-mock__mapping-row--auto svg { color: var(--primary); }

.import-mock__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-top: 1px solid var(--rule);
  background: var(--surface);
}

.import-mock__stat strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.import-mock__stat span {
  font-size: 11px;
  color: var(--muted);
}

.import-mock__btn {
  margin-left: auto;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  color: var(--white);
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  cursor: default;
}

.import-showcase__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.import-showcase__float svg { width: 16px; height: 16px; color: var(--primary); }
.import-showcase__float--1 { top: -12px; right: -8px; }
.import-showcase__float--2 { bottom: 24px; left: -16px; }

.import-showcase__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.import-compare-card {
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
}

.import-compare-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.import-compare-card ul { list-style: none; }

.import-compare-card li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  color: var(--muted);
}

.import-compare-card li:last-child { margin-bottom: 0; }

.import-compare-card--bad {
  background: var(--white);
}

.import-compare-card--bad li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--error);
  font-weight: 700;
}

.import-compare-card--good {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.import-compare-card--good h4 { color: var(--white); }
.import-compare-card--good li { color: oklch(88% 0.02 260); }

.import-compare-card--good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: oklch(78% 0.12 145);
  font-weight: 700;
}

/* Hero import slide */
.hero-pill--accent {
  background: oklch(96% 0.02 80);
  border: 1px solid oklch(88% 0.04 80);
  color: var(--ink);
}

.hero-pill--accent .hero-pill-dot {
  background: var(--primary);
  box-shadow: 0 0 0 4px oklch(88% 0.02 80);
}

.hero-pill--ai {
  background: oklch(96% 0.03 280);
  border: 1px solid oklch(88% 0.06 280);
  color: var(--ink);
}

.hero-pill--ai .hero-pill-dot {
  background: var(--primary);
  box-shadow: 0 0 0 4px oklch(90% 0.04 280);
}

.hero-slide__visual--ai {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── AI showcase ── */
.section-ai {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--off) 0%, var(--white) 40%, var(--off) 100%);
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

.section-ai::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, oklch(94% 0.04 280 / 0.35), transparent 70%);
  pointer-events: none;
}

.section-ai .container { position: relative; z-index: 1; }

.ai-showcase__badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.ai-showcase__flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
}

.ai-showcase__flag svg { width: 16px; height: 16px; }

.ai-showcase__exclusive {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  background: var(--white);
}

.ai-showcase__soon-pill {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px dashed var(--rule);
  color: var(--muted);
  background: var(--white);
}

.ai-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 40px 48px;
  align-items: center;
  margin-bottom: 56px;
}

.ai-showcase__copy {
  min-width: 0;
}

.ai-showcase__copy .section-title { text-align: left; }
.ai-showcase__copy .section-sub { text-align: left; margin-left: 0; max-width: none; }

.ai-showcase__capabilities {
  list-style: none;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ai-showcase__capabilities li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ai-showcase__capabilities li > i[data-lucide] {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-showcase__capabilities strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}

.ai-showcase__capabilities span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.ai-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ai-showcase__visual {
  position: relative;
  min-width: 0;
  overflow: visible;
  padding: 12px 24px 12px 8px;
}

.ai-showcase__visual .product-mockup--app,
.ai-showcase__visual .ai-app-mock {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.ai-showcase__visual .dash-mock--ai {
  grid-template-columns: 184px minmax(0, 1fr);
  min-height: 420px;
  width: 100%;
  min-width: 0;
}

.ai-showcase__visual .dash-mock__ai-msg {
  max-width: 88%;
}

.ai-showcase__visual .dash-mock__main--ai {
  overflow: visible;
}

.ai-showcase__visual .dash-mock__ai-chat {
  min-height: 200px;
}

.ai-mock {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.ai-mock__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule);
  background: var(--off);
}

.ai-mock__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.ai-mock__title svg { width: 18px; height: 18px; }

.ai-mock__badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--white);
  border: 1px dashed var(--rule);
  color: var(--muted);
}

.ai-mock__chat {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}

.ai-mock__msg {
  max-width: 92%;
  font-size: 13px;
  line-height: 1.5;
}

.ai-mock__msg--user {
  align-self: flex-end;
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 14px 14px 4px 14px;
}

.ai-mock__msg--ai {
  align-self: flex-start;
  display: flex;
  gap: 10px;
  background: var(--off);
  border: 1px solid var(--rule);
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  color: var(--ink);
}

.ai-mock__msg--ai > i[data-lucide] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

.ai-mock__chip {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--rule);
}

.ai-mock__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
}

.ai-mock__input button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.ai-mock__input button svg { width: 16px; height: 16px; }

.ai-showcase__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.ai-showcase__float svg { width: 16px; height: 16px; color: var(--primary); }
.ai-showcase__float--1 { top: 4px; right: 16px; }
.ai-showcase__float--2 { bottom: 20px; left: 8px; }

.ai-showcase__pros-cons {
  padding-top: 8px;
  border-top: 1px solid var(--rule);
}

.ai-pros-cons__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.ai-pros-cons__intro h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
}

.ai-pros-cons__intro p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.ai-pros-cons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.ai-pros-card,
.ai-cons-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.ai-pros-card h4,
.ai-cons-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

.ai-pros-card h4 svg,
.ai-cons-card h4 svg {
  width: 20px;
  height: 20px;
}

.ai-pros-card h4 svg { color: var(--ink); }
.ai-cons-card h4 svg { color: var(--muted); }

.ai-pros-card ul,
.ai-cons-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-pros-card li,
.ai-cons-card li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  padding-left: 0;
}

.ai-pros-card li strong,
.ai-cons-card li strong {
  color: var(--ink);
  font-weight: 700;
}

.ai-cons-card {
  background: var(--off);
  border-style: dashed;
}

.ai-pros-cons__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 16px 18px;
  max-width: 800px;
  margin: 0 auto;
}

.ai-pros-cons__note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

/* ── Multi-branch showcase ── */
.section-branches {
  padding: 96px 0;
  background: var(--white);
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

.section-branches::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(oklch(94% 0.01 200) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.45;
  pointer-events: none;
}

.section-branches .container { position: relative; z-index: 1; }

.branch-showcase__badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.branch-showcase__flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
}

.branch-showcase__flag svg { width: 16px; height: 16px; }

.branch-showcase__exclusive {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  background: var(--off);
}

.branch-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 40px 48px;
  align-items: center;
  margin-bottom: 48px;
}

.branch-showcase__copy .section-title { text-align: left; }
.branch-showcase__copy .section-sub { text-align: left; margin-left: 0; max-width: none; }

.branch-showcase__points {
  list-style: none;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.branch-showcase__points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.branch-showcase__points li > i[data-lucide] {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.branch-showcase__points strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}

.branch-showcase__points span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.branch-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.branch-showcase__visual {
  position: relative;
  min-width: 0;
  overflow: visible;
  padding: 8px 20px 8px 4px;
}

.branch-showcase__visual .branch-app-mock,
.branch-showcase__visual .product-mockup--app {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.dash-mock--branch {
  grid-template-columns: 200px minmax(0, 1fr);
  min-height: 400px;
  width: 100%;
  min-width: 0;
}

.dash-mock--branch .dash-mock__main {
  overflow: visible;
}

.dash-mock--branch .dash-mock__cards--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dash-mock--branch .dash-mock__card em {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.branch-showcase__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.branch-showcase__float svg { width: 16px; height: 16px; color: var(--primary); }
.branch-showcase__float--1 { top: 4px; right: 12px; }
.branch-showcase__float--2 { bottom: 20px; left: 8px; }

.branch-showcase__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.branch-split-card {
  background: var(--off);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.branch-split-card--hq {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.branch-split-card h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

.branch-split-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.branch-split-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.branch-split-card li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.branch-showcase__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.branch-compare-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--rule);
}

.branch-compare-card--bad {
  background: var(--off);
}

.branch-compare-card--good {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.branch-compare-card h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--ink);
}

.branch-compare-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.branch-compare-card li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.branch-compare-card--bad li::before {
  content: '×';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: oklch(55% 0.12 25);
}

.branch-compare-card--good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--ink);
}

.import-hero-mock {
  width: 100%;
  max-width: 380px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}

.import-hero-mock__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
}

.import-hero-mock__head svg { width: 20px; height: 20px; color: var(--primary); }

.import-hero-mock__tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  background: var(--primary);
  color: var(--white);
  border-radius: 100px;
  font-style: normal;
}

.import-hero-mock__files {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.import-hero-mock__files span {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 100px;
}

.import-hero-mock__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 12px;
  background: var(--off);
  border-radius: var(--radius);
  margin-bottom: 6px;
}

.import-hero-mock__row span { color: var(--muted); font-family: var(--font-mono); font-size: 11px; }
.import-hero-mock__row strong { text-align: right; font-weight: 600; }
.import-hero-mock__row svg { width: 14px; height: 14px; color: var(--muted); }

.import-hero-mock__result {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  text-align: center;
}

.import-hero-mock__result strong { font-size: 20px; font-weight: 800; }
.import-hero-mock__result span { color: var(--muted); }

.pricing-layer-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.pricing-layer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1.5px solid var(--rule);
  border-radius: 100px;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.pricing-layer-btn svg { width: 18px; height: 18px; }

.pricing-layer-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.pricing-layer-panel { display: none; }
.pricing-layer-panel.is-active { display: block; animation: fadeUp 0.35s ease; }

.pricing-cloud-intro {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 0 auto 24px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}

.pricing-cloud-intro__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-cloud-intro__icon--dedicated {
  background: var(--white);
  color: var(--primary);
}

.pricing-cloud-intro__icon svg { width: 24px; height: 24px; }

.pricing-cloud-intro__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.25;
  color: var(--ink);
}

.pricing-cloud-intro__title span {
  color: var(--muted);
  font-weight: 600;
}

.pricing-cloud-intro__sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-cloud-benefits {
  list-style: none;
  margin: 0 auto 32px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}

.pricing-cloud-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}

.pricing-cloud-benefits li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

.pricing-preview-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ── FAQ ── */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.faq-trigger svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.acc-open .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body-inner {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── About ── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.value-icon {
  width: 44px;
  height: 44px;
  background: var(--cta-final-bg);
  color: var(--brand-highlight-bright);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-icon svg,
.value-icon i[data-lucide] {
  width: 22px;
  height: 22px;
}

.value-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.stat-big {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-small {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.team-avatar {
  width: 64px;
  height: 64px;
  background: var(--cta-final-bg);
  color: var(--brand-highlight-bright);
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
}

.team-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── Contact & Forms ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--off);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}

.ci-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--cta-final-bg);
  color: var(--brand-highlight-bright);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg,
.ci-icon i[data-lucide] {
  width: 20px;
  height: 20px;
}

.ci-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 4px;
}

.ci-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.ci-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.contact-form,
.demo-form-wrap {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(20.5% 0 0 / 0.1);
}

input.field-error,
textarea.field-error,
select.field-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  cursor: pointer;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.landing-flash {
  position: fixed;
  top: calc(var(--nav-height) + 12px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: min(560px, calc(100% - 32px));
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landing-flash__item {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: var(--shadow-md);
  border: 1px solid transparent;
}

.landing-flash__item--success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.landing-flash__item--error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.landing-flash__item ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.recaptcha-notice {
  margin-top: 14px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

.recaptcha-notice a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.recaptcha-notice a:hover {
  color: var(--ink);
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ── Demo page ── */
.demo-page {
  min-height: 100vh;
  padding-top: var(--nav-height);
}

.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: calc(100vh - var(--nav-height));
}

.demo-left {
  background: var(--cta-final-bg);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.demo-left .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.demo-left .eyebrow::before {
  background: rgba(255, 255, 255, 0.5);
}

.demo-left-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.demo-left-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
}

.demo-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.dp-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.dp-icon svg,
.dp-icon i[data-lucide] {
  width: 18px;
  height: 18px;
}

.dp-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.dp-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.demo-testimonial {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 40px;
}

.dt-quote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 14px;
}

.dt-author {
  font-size: 13px;
  font-weight: 700;
}

.dt-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.demo-right {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.demo-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.ds-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.ds-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
}

.ds-step.done .ds-num {
  background: var(--accent);
  color: var(--white);
}

.ds-sep {
  flex: 1;
  height: 1px;
  background: var(--rule);
  min-width: 12px;
}

/* ── Legal pages ── */
.legal-content {
  padding: calc(var(--nav-height) + 48px) 0 80px;
}

.legal-body {
  max-width: 720px;
  margin: 0 auto;
}

.legal-body h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
}

.legal-body h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--ink);
}

.legal-body p,
.legal-body li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ── Page overlay ── */
.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-overlay.hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.page-overlay-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.overlay-mark {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-wordmark {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.overlay-wordmark em {
  font-style: normal;
  color: var(--accent);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.mt-12 { margin-top: 48px; }
.section-surface { background: var(--surface); }

/* ── Brand logo ── */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: block;
}

.logo-mark-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-mark-bg { fill: var(--primary); }
.logo-mark-bar { fill: oklch(98.5% 0 0); }
.logo-mark-bar-accent { fill: var(--brand-highlight); }
.logo-mark-z { stroke: oklch(98.5% 0 0); fill: none; }

/* Inline wordmark — BohudurPay-style: one line, one weight, color split */
.brand-logo-text {
  display: block;
  font-family: var(--font-brand);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}

.brand-logo-name {
  color: var(--ink);
}

.brand-logo-product {
  margin-left: 0.06em;
  color: var(--brand-highlight);
}

/* Nav */
.nav-logo.brand-logo {
  gap: 5px;
}

.nav-logo .brand-logo-mark {
  width: 30px;
  height: 30px;
}

.nav-logo .brand-logo-text {
  font-size: 18px;
  letter-spacing: -0.036em;
}

/* Footer */
.footer-logo .brand-logo-mark {
  width: 36px;
  height: 36px;
}

.footer-logo .brand-logo-text {
  font-size: 1.0625rem;
}

.footer-logo .brand-logo-name {
  color: var(--white);
}

.footer-logo .brand-logo-product {
  color: var(--brand-highlight-bright);
}

.footer-logo .logo-mark-bg { fill: var(--white); }
.footer-logo .logo-mark-bar { fill: var(--primary); }
.footer-logo .logo-mark-bar-accent { fill: var(--brand-highlight); }
.footer-logo .logo-mark-z { stroke: var(--primary); }

/* CTA */
.cta-logo {
  margin: 0 auto 24px;
  justify-content: center;
  gap: 11px;
}

.cta-logo .brand-logo-text {
  font-size: 1.1875rem;
  letter-spacing: -0.04em;
}

.cta-logo .brand-logo-name {
  color: var(--white);
}

.cta-logo .brand-logo-product {
  color: var(--brand-highlight-bright);
}

.cta-logo .logo-mark-bg { fill: var(--white); }
.cta-logo .logo-mark-bar { fill: var(--primary); }
.cta-logo .logo-mark-bar-accent { fill: var(--brand-highlight); }
.cta-logo .logo-mark-z { stroke: var(--primary); }

@media (max-width: 380px) {
  .nav-logo .brand-logo-text {
    font-size: 0.875rem;
  }

  .nav-logo .brand-logo-mark {
    width: 28px;
    height: 28px;
  }
}

/* ── Hero split ── */
.hero-split {
  padding: calc(var(--nav-height) + 48px) 0 72px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, oklch(98% 0.006 260) 0%, var(--white) 55%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(oklch(90% 0.01 260 / 0.5) 1px, transparent 1px),
    linear-gradient(90deg, oklch(90% 0.01 260 / 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.hero-split .hero-title {
  font-size: clamp(36px, 4.8vw, 54px);
  text-align: left;
  margin-bottom: 18px;
}

.hero-split .hero-sub {
  text-align: left;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

.hero-trust-row strong { color: var(--ink); }

.hero-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 24px;
  list-style: none;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.hero-checklist svg { width: 16px; height: 16px; color: var(--success); }

.hero-visual-wrap {
  position: relative;
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  z-index: 2;
}

.hero-float-card svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-float-card strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
}

.hero-float-card span { color: var(--muted); font-size: 12px; }

.hero-float-card-1 { top: 12%; right: -12px; animation: float 4s ease-in-out infinite; }
.hero-float-card-2 { bottom: 18%; left: -20px; animation: float 4s ease-in-out infinite 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.product-mockup-glow {
  background: radial-gradient(ellipse 70% 50% at 50% 40%, oklch(88% 0.04 260 / 0.6) 0%, transparent 70%);
}

/* ── Trust logos ── */
.trust-logos {
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}

.trust-logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 20px;
}

.trust-logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 32px;
}

.trust-logos-row span {
  font-size: 15px;
  font-weight: 700;
  color: oklch(75% 0.01 260);
  letter-spacing: -0.02em;
}

/* ── Problem section ── */
.section-problem {
  padding: 80px 0;
  background: var(--primary);
  color: var(--primary-fg);
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.section-problem .section-title { color: var(--primary-fg); }
.section-problem .section-sub { color: oklch(85% 0.01 260); }
.section-problem .section-tag { color: oklch(70% 0.02 260); }
.section-problem .section-tag::before { background: oklch(55% 0.02 260); }

.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.problem-card {
  background: oklch(28% 0 0);
  border: 1px solid oklch(35% 0 0);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.problem-card svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: oklch(75% 0.08 75);
}

.problem-card p {
  font-size: 14px;
  font-weight: 500;
  color: oklch(90% 0.01 260);
  line-height: 1.5;
}

/* ── Platform features showcase ── */
.section-features {
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}

.features-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 22px 22px 0;
  overflow: hidden;
  min-height: 320px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: oklch(82% 0.01 260);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card--span-2 { grid-column: span 2; }

.feature-card__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.feature-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-card__icon--dark {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.feature-card__icon svg { width: 20px; height: 20px; }

.feature-card__head h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.feature-card__head p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.feature-card__visual {
  margin-top: auto;
  margin-left: -22px;
  margin-right: -22px;
  padding: 16px 22px 20px;
  background: var(--surface);
  border-top: 1px solid var(--rule);
  min-height: 148px;
}

/* Billing visual */
.feature-visual-billing { display: flex; flex-direction: column; gap: 12px; }

.fv-billing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.fv-billing-stats > div {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 8px 10px;
}

.fv-billing-stats span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 2px;
}

.fv-billing-stats strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.fv-warn { color: oklch(55% 0.18 35); }
.fv-success { color: oklch(45% 0.12 145); }

.fv-billing-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
  padding: 0 4px;
}

.fv-billing-bars > div {
  flex: 1;
  background: var(--primary);
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}

.fv-billing-bars > div:nth-child(even) { opacity: 0.45; }

.fv-billing-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fv-billing-rows > div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 6px 10px;
}

.fv-billing-rows span { font-weight: 500; color: var(--text); }
.fv-billing-rows em { font-style: normal; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; padding: 2px 6px; border-radius: 100px; }
.fv-paid { background: oklch(94% 0.04 145); color: oklch(40% 0.1 145); }
.fv-due { background: oklch(94% 0.04 35); color: oklch(45% 0.14 35); }
.fv-billing-rows strong { font-weight: 700; font-size: 12px; }

/* Router visual */
.feature-visual-router { display: flex; flex-direction: column; gap: 10px; }

.fv-router-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.fv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: oklch(55% 0.18 145);
  box-shadow: 0 0 0 3px oklch(90% 0.06 145);
}

.fv-router-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding: 8px 10px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}

.fv-router-metric span { color: var(--muted); }
.fv-router-metric strong { font-size: 15px; font-weight: 700; }

.fv-router-sync {
  font-size: 11px;
  color: var(--muted);
  margin-top: auto;
}

.fv-router-sync strong { color: var(--text); }

/* Reseller visual */
.feature-visual-reseller { display: flex; flex-direction: column; gap: 8px; }

.fv-reseller-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  padding: 8px 10px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}

.fv-avatar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-reseller-row strong { font-weight: 700; font-size: 14px; }

/* Payments visual */
.feature-visual-payments { display: flex; flex-direction: column; gap: 10px; }

.fv-payment {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}

.fv-payment-logo {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.fv-payment-flow {
  display: flex;
  justify-content: center;
  color: var(--muted);
}

.fv-payment-flow svg { width: 16px; height: 16px; }

.fv-payment-status {
  font-size: 11px;
  font-weight: 700;
  color: oklch(40% 0.1 145);
}

.fv-payment-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

/* Reports visual */
.feature-visual-reports {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.fv-report-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
}

.fv-report-chart > div {
  flex: 1;
  background: var(--primary);
  border-radius: 4px 4px 0 0;
  opacity: 0.7;
}

.fv-report-chart > div:nth-child(odd) { opacity: 0.35; }

.fv-export-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: default;
}

.fv-export-btn svg { width: 14px; height: 14px; }

/* SMS visual */
.feature-visual-sms {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fv-sms-bubble {
  font-size: 12px;
  line-height: 1.45;
  padding: 10px 12px;
  border-radius: 12px;
  max-width: 92%;
}

.fv-sms-out {
  align-self: flex-end;
  background: var(--primary);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.fv-sms-in {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--rule);
  border-bottom-left-radius: 4px;
}

.fv-sms-meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.fv-sms-meta svg { width: 14px; height: 14px; color: oklch(45% 0.1 145); }

.features-showcase-footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.features-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.features-pill-row span {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 100px;
  color: var(--muted);
}

/* ── Compare table ── */
.compare-table {
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  padding: 16px 24px;
  align-items: center;
}

.compare-head {
  background: var(--surface);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 1px solid var(--rule);
}

.compare-highlight {
  color: var(--ink) !important;
  font-weight: 800 !important;
}

.compare-row {
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
}

.compare-row:last-child { border-bottom: none; }

.compare-feature { font-weight: 600; color: var(--ink); }
.compare-bad { color: var(--muted); }
.compare-good { color: var(--ink); font-weight: 600; }

/* ── Split warm/cool ── */
.split-section-warm { background: var(--warm-bg); }
.split-section-cool { background: var(--cool-bg); }

/* ── Stats band ── */
.stats-band {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 56px 0;
}

.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats-band-val {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stats-band-label {
  font-size: 13px;
  color: oklch(75% 0.02 260);
  font-weight: 500;
}

/* ── Pricing preview ── */
.pricing-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-preview-card {
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  position: relative;
}

.pricing-preview-featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-preview-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-preview-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-preview-price {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.pricing-preview-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.pricing-preview-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.55;
  min-height: 44px;
}

/* ── Security ── */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.security-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.security-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px;
}

.security-card svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  margin-bottom: 10px;
}

.security-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.security-card span {
  font-size: 13px;
  color: var(--muted);
}

.section-dark {
  background: var(--primary);
}

.section-dark .integration-item {
  background: oklch(28% 0 0);
  border-color: oklch(35% 0 0);
  color: oklch(90% 0.01 260);
}

.section-dark .integration-item svg { color: oklch(85% 0.02 260); }

.nav-links a.active { color: var(--primary); background: var(--surface); }

.nav-logo-mark,
.nav-logo .nav-logo-mark { display: none; }

.mockup-stat-val.accent,
.mockup-stat-val.warn { color: var(--accent); }
.mockup-stat-val.warn { color: var(--warn); }

.mini-progress-fill { background: var(--primary); }

.mockup-bar-col.active { background: var(--primary); }
.mockup-bar-col { background: oklch(88% 0.02 260); }

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: var(--surface);
  color: var(--primary);
}

.nav-login {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 12px;
  transition: color 0.2s;
}

.nav-login:hover { color: var(--primary); }

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

.text-muted { color: var(--muted); font-weight: 500; }

/* ── Hero slider (BohudurPay-style) ── */
.hero-slider {
  position: relative;
  padding: calc(var(--nav-height) + 48px) 0 72px;
  background: linear-gradient(180deg, var(--off) 0%, var(--white) 70%);
  overflow: hidden;
}

.hero-slider__track {
  display: grid;
  grid-template-areas: 'hero-slide';
  align-items: stretch;
}

.hero-slide {
  grid-area: hero-slide;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
  pointer-events: none;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: 32px 40px;
  align-items: center;
  min-height: 440px;
}

.hero-slide__copy {
  align-self: center;
  min-width: 0;
}

.hero-slide .hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.hero-slide .hero-sub {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-compliance {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.hero-compliance svg { width: 16px; height: 16px; color: var(--success); }

.hero-slide__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
  min-height: 400px;
  min-width: 0;
}

.hero-slide__visual > * {
  width: 100%;
  max-width: 680px;
}

.hero-mini-panel {
  width: 100%;
  max-width: 520px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

.hero-mini-panel__head {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.hero-mini-stat {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
}

.hero-mini-stat span { color: var(--muted); }
.hero-mini-stat strong { font-weight: 700; }

.hero-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  margin-top: 16px;
}

.hero-mini-bars span {
  flex: 1;
  background: var(--primary);
  border-radius: 6px 6px 0 0;
  opacity: 0.75;
}

.hero-router-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-router-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px oklch(90% 0.06 145);
}

.hero-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.hero-slider__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-slider__arrow:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.hero-slider__arrow svg { width: 18px; height: 18px; }

.hero-slider__dots { display: flex; gap: 8px; }

.hero-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: oklch(85% 0.01 260);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s, background 0.25s;
}

.hero-slider__dot.is-active {
  width: 28px;
  border-radius: 100px;
  background: var(--primary);
}

/* ── Logo marquee ── */
.logo-marquee {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  overflow: hidden;
}

.logo-marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.logo-marquee__item {
  font-size: 15px;
  font-weight: 700;
  color: oklch(72% 0.01 260);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Feature tabs ── */
.section-features-tabs { background: var(--white); }

.feature-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 6px;
  background: var(--surface);
  border-radius: 100px;
  border: 1px solid var(--rule);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.feature-tabs-btn {
  flex: 1;
  min-width: 140px;
  padding: 10px 16px;
  border: none;
  background: transparent;
  border-radius: 100px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.feature-tabs-btn.is-active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.feature-tabs-panel {
  display: none;
  animation: fadeUp 0.35s ease;
}

.feature-tabs-panel.is-active { display: block; }

.feature-tabs-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.feature-tabs-panel__head h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feature-tabs-explore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.feature-tabs-explore svg { width: 16px; height: 16px; }

.feature-tabs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-tabs-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.feature-tabs-card:hover {
  border-color: oklch(82% 0.01 260);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-tabs-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--primary);
}

.feature-tabs-card__icon svg { width: 20px; height: 20px; }

.feature-tabs-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-tabs-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.feature-tabs-cta {
  text-align: center;
  margin-top: 40px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* ── Industry tabs ── */
.section-industry { background: var(--off); }

.industry-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.industry-tabs-btn {
  padding: 10px 20px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  background: var(--white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.industry-tabs-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.industry-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.industry-panel.is-active {
  display: grid;
  animation: fadeUp 0.35s ease;
}

.industry-panel__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}

.industry-panel__copy h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.industry-panel__copy p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.industry-mock {
  background: linear-gradient(145deg, var(--surface) 0%, var(--white) 100%);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 220px;
  position: relative;
}

.industry-mock__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 16px;
}

.industry-mock__live {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
}

.industry-mock__live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.industry-mock__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin-bottom: 10px;
  font-size: 14px;
}

.industry-mock__row strong { font-weight: 700; }

/* ── Dark dev / integration section ── */
.section-dev {
  padding: 88px 0;
  background: var(--primary);
  color: var(--white);
}

.section-dev__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.section-dev__copy,
.section-dev__code {
  min-width: 0;
}

.section-dev__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: oklch(75% 0.02 260);
  margin-bottom: 16px;
}

.section-dev__eyebrow svg { width: 16px; height: 16px; }

.section-dev__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  line-height: 1.15;
}

.section-dev__list { list-style: none; display: flex; flex-direction: column; gap: 24px; }

.section-dev__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.section-dev__list li > div:not(.section-dev__list-icon) {
  flex: 1;
  min-width: 0;
}

.section-dev__list-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: oklch(28% 0 0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-dev__list-icon svg { width: 20px; height: 20px; }

.section-dev__list strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.section-dev__list span {
  font-size: 14px;
  color: oklch(78% 0.02 260);
  line-height: 1.5;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.code-window {
  background: oklch(16% 0 0);
  border: 1px solid oklch(32% 0 0);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}

.code-window__tabs {
  display: flex;
  gap: 4px;
  padding: 12px 16px 0;
  border-bottom: 1px solid oklch(28% 0 0);
}

.code-window__tabs span {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  color: oklch(55% 0.02 260);
  border-radius: 8px 8px 0 0;
  cursor: default;
}

.code-window__tabs .is-active {
  background: oklch(22% 0 0);
  color: var(--white);
}

.code-window__body {
  padding: 20px;
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: oklch(82% 0.04 155);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  font-family: var(--font-mono);
}

.code-window__body code {
  display: block;
  white-space: pre;
  min-width: min-content;
}

/* ── Featured testimonial ── */
.section-testimonial { background: var(--off); }

.testimonial-featured {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
}

.testimonial-featured p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--ink);
}

.testimonial-featured footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-featured__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-featured footer strong {
  display: block;
  font-size: 15px;
  text-align: left;
}

.testimonial-featured footer span {
  font-size: 13px;
  color: var(--muted);
}

/* ── FAQ split ── */
.section-faq { background: var(--white); }

.faq-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.faq-split__intro .section-title {
  text-align: left;
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 36px);
}

.faq-split__intro .section-sub {
  text-align: left;
  margin-bottom: 24px;
}

/* ── Responsive: 1024px ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid,
  .split-grid-reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .split-grid-reverse .split-visual {
    order: -1;
  }

  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .wall-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wall-card-tall {
    grid-row: span 1;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: span 2;
    max-width: none;
  }

  .two-col {
    gap: 40px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-split .hero-title,
  .hero-split .hero-sub { text-align: center; max-width: none; }
  .hero-actions { justify-content: center; }
  .hero-trust-row,
  .hero-checklist { justify-content: center; }

  .problem-inner { grid-template-columns: 1fr; }
  .features-showcase { grid-template-columns: repeat(2, 1fr); }
  .feature-card--span-2 { grid-column: span 2; }
  .hero-slide__grid { grid-template-columns: 1fr; gap: 32px; min-height: 0; }
  .hero-slide__visual { justify-content: center; }
  .hero-slide__visual .hero-app-mock,
  .hero-slide__visual .product-mockup--app { margin-left: auto; margin-right: auto; }
  .hero-slide .hero-title,
  .hero-slide .hero-sub { text-align: center; margin-left: auto; margin-right: auto; max-width: none; }
  .hero-slide .hero-actions { justify-content: center; }
  .hero-compliance { justify-content: center; flex-wrap: wrap; text-align: center; }
  .hero-pill { margin-left: auto; margin-right: auto; }
  .import-showcase__grid,
  .ai-showcase__grid,
  .branch-showcase__grid { grid-template-columns: 1fr; gap: 40px; }
  .import-showcase__visual,
  .ai-showcase__visual,
  .branch-showcase__visual { padding: 0; }
  .feature-tabs-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-panel { grid-template-columns: 1fr; }
  .section-dev__grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-split { grid-template-columns: 1fr; gap: 32px; }
  .compare-head,
  .compare-row { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .compare-head div:first-child { display: none; }
  .security-grid { grid-template-columns: 1fr; }
  .pricing-preview { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-preview-featured { transform: none; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-float-card { display: none; }
}

/* ── Responsive: 768px ── */
@media (max-width: 768px) {
  :root {
    --content-padding: 20px;
  }

  html {
    overflow-x: clip;
  }

  .section,
  .split-section,
  .section-dark,
  .cta-final {
    padding: 56px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 42px);
  }

  .hero-product {
    margin-top: 40px;
    padding-bottom: 48px;
  }

  .hero-actions-center {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions-center .btn {
    width: 100%;
    max-width: 320px;
  }

  .trust-bar-grid,
  .usecase-grid,
  .integration-grid,
  .steps-row,
  .wall-grid,
  .feature-grid,
  .feat-list,
  .testimonial-grid,
  .pricing-grid,
  .steps-grid,
  .value-grid,
  .stat-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-newsletter-form {
    width: 100%;
    max-width: none;
    flex-direction: column;
  }

  .footer-newsletter-form .btn-primary {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand-col {
    grid-column: span 1;
  }

  .two-col,
  .contact-layout,
  .demo-layout {
    grid-template-columns: 1fr;
  }

  .demo-left {
    padding: 48px 24px;
  }

  .demo-right {
    padding: 40px 24px;
  }

  .plan-card.popular {
    transform: none;
  }

  .hero-stats {
    gap: 20px;
  }

  .mockup-stats {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .features-showcase { grid-template-columns: 1fr; }
  .feature-card--span-2 { grid-column: span 1; }
  .pricing-cloud-benefits { grid-template-columns: 1fr; }
  .pricing-cloud-intro { flex-direction: column; }
  .import-showcase__compare { grid-template-columns: 1fr; }
  .import-showcase__float { display: none; }
  .import-showcase__copy .section-title,
  .import-showcase__copy .section-sub,
  .ai-showcase__copy .section-title,
  .ai-showcase__copy .section-sub,
  .branch-showcase__copy .section-title,
  .branch-showcase__copy .section-sub { text-align: center; }
  .import-showcase__actions,
  .ai-showcase__actions,
  .branch-showcase__actions { justify-content: center; }
  .ai-pros-cons__grid { grid-template-columns: 1fr; }
  .ai-showcase__float { display: none; }
  .branch-showcase__split,
  .branch-showcase__compare { grid-template-columns: 1fr; }
  .branch-showcase__float { display: none; }
  .section-import,
  .section-ai,
  .section-branches,
  .section-dev { padding: 56px 0; }

  .section-dev__title {
    font-size: clamp(24px, 6vw, 30px);
    margin-bottom: 24px;
  }

  .section-dev__list { gap: 18px; }

  .section-dev__list strong { font-size: 15px; }

  .section-dev__list span { font-size: 13px; }

  .section-dev__grid { gap: 28px; }

  .code-window__tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .code-window__tabs::-webkit-scrollbar { display: none; }

  .code-window__tabs span {
    flex-shrink: 0;
    font-size: 11px;
    padding: 6px 10px;
  }

  .code-window__body {
    padding: 14px 12px;
    font-size: 10px;
    line-height: 1.55;
    overflow-x: visible;
  }

  .code-window__body code {
    white-space: pre-wrap;
    word-break: break-word;
    min-width: 0;
  }
  .plan-card__badge, .plan-badge { top: 12px; right: 12px; }
  .feature-tabs-nav { border-radius: var(--radius-lg); }
  .feature-tabs-btn { min-width: 100%; flex: 1 1 45%; }
  .feature-tabs-grid { grid-template-columns: 1fr; }
  .industry-tabs-nav { gap: 6px; }
  .industry-tabs-btn { font-size: 12px; padding: 8px 14px; }
  .industry-panel { padding: 24px; }
  .testimonial-featured p { font-size: 18px; }
  .hero-slider {
    padding: calc(var(--nav-height) + 24px) 0 40px;
  }

  .hero-slide .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .hero-slide .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-slide__grid { min-height: 0; gap: 24px; }
  .hero-slide .hero-sub { font-size: 16px; }
  .hero-slide__visual { min-height: 0; padding: 0; }
  .hero-slide__visual > *,
  .hero-slide__visual .product-mockup--app { max-width: 100%; }

  .hero-slider__controls {
    margin-top: 20px;
    gap: 12px;
    padding: 0 var(--content-padding);
  }

  /* App mockups — stacked layout on mobile */
  .dash-mock {
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-width: 100%;
  }

  .dash-mock__sidebar {
    flex-direction: column;
    align-items: stretch;
    border-right: none;
    border-bottom: 1px solid oklch(92% 0.01 260);
    padding: 10px 12px;
    gap: 8px;
  }

  .dash-mock__sidebar-head {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .dash-mock__switcher {
    padding: 8px 10px;
    background: oklch(97% 0.004 260);
    border-radius: 10px;
  }

  .dash-mock__switcher-org { font-size: 12px; }
  .dash-mock__switcher-branch { font-size: 10px; }

  .dash-mock__branch-menu {
    margin-top: 0;
  }

  .dash-mock__sidebar--menu-open {
    flex-direction: column;
    align-items: stretch;
  }

  .dash-mock__nav { display: none; }

  .dash-mock__main {
    flex: 1;
    min-height: 240px;
    padding: 12px;
    overflow: hidden;
  }

  .dash-mock__header {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }

  .dash-mock__header h3 { font-size: 14px; }
  .dash-mock__header p { max-width: none; font-size: 10px; }
  .dash-mock__section-label { margin-bottom: 6px; }

  .dash-mock__cards--4 { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .dash-mock__cards--3 { grid-template-columns: 1fr; gap: 6px; }
  .dash-mock__card { min-height: 58px; padding: 8px; }
  .dash-mock__card strong { font-size: 12px; }
  .dash-mock__card em { white-space: normal; }

  .dash-mock__map-head { display: none; }
  .dash-mock__map-row { grid-template-columns: 1fr 12px 1fr auto; padding: 6px 8px; }
  .dash-mock__table-head { display: none; }
  .dash-mock__table-row { grid-template-columns: 1fr auto; gap: 4px; padding: 6px 8px; }
  .dash-mock__table-row span:nth-child(2),
  .dash-mock__table-row span:nth-child(4) { display: none; }
  .dash-mock__chart-row { grid-template-columns: 1fr; }
  .dash-mock__chart-card { min-height: 72px; }
  .dash-mock__ai-chat { min-height: 160px; }
  .dash-mock__ai-msg { max-width: 95%; font-size: 9px; }
  .problem-cards { grid-template-columns: 1fr; }
  .security-cards { grid-template-columns: 1fr; }
  .stats-band-grid { grid-template-columns: 1fr; }

  .billing-toggle {
    flex-wrap: wrap;
  }

  .cta-final .cta-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-final .cta-actions .btn,
  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .page-hero {
    padding: calc(var(--nav-height) + 32px) 0 40px;
  }

  .page-hero-title { font-size: clamp(28px, 7vw, 36px); }
  .page-hero-sub { font-size: 15px; }

  .import-showcase__badge-row,
  .ai-showcase__badge-row,
  .branch-showcase__badge-row {
    justify-content: center;
  }

  .product-mockup--app {
    max-width: 100%;
  }

  .feat-module-head { flex-wrap: wrap; }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .blog-card--featured .blog-card__media {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .blog-article__cover {
    margin-top: 0;
    border-radius: 16px;
  }

  .blog-article__title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .blog-article__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-article__footer .btn {
    justify-content: center;
  }
}

/* ── Responsive: 480px (small phones) ── */
@media (max-width: 480px) {
  :root {
    --content-padding: 16px;
  }

  .hero-slide .hero-title {
    font-size: clamp(26px, 7.5vw, 32px);
  }

  .hero-slide .hero-sub {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-slide .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .dash-mock__cards--4 {
    grid-template-columns: 1fr 1fr;
  }

  .dash-mock__header-actions {
    display: none;
  }

  .dash-mock__search {
    display: none;
  }

  .dash-mock__badges {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section-dev__list-icon {
    width: 40px;
    height: 40px;
  }

  .code-window__body {
    font-size: 9px;
    padding: 12px 10px;
  }

  .code-window__body code {
    font-size: 9px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Home v2 — SaaS landing (preserves all V1 rules above)
   ═══════════════════════════════════════════════════════════════ */

.home-v2 {
  color: var(--ink);
}

.home-v2 .home-v2-title,
.home-v2 .home-v2-hero__brand,
.home-v2 .home-v2-hero__title,
.home-v2 .home-v2-price-card__name,
.home-v2 .home-v2-price-card__price,
.home-v2 .home-v2-stat__val,
.home-v2 .home-v2-feature h3,
.home-v2 .home-v2-step h3 {
  font-family: var(--font-display);
}

.home-v2-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.home-v2-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}

.home-v2-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 36rem;
}

.home-v2-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 48px;
}

.home-v2-section-head .home-v2-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero ── */
.home-v2-hero {
  position: relative;
  padding: calc(var(--nav-height) + 48px) 0 0;
  overflow: hidden;
  background: var(--accent-soft-fade);
}

.home-v2-hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.home-v2-hero__mesh {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 140vw);
  height: 620px;
  background:
    radial-gradient(ellipse 50% 45% at 30% 40%, oklch(20.5% 0 0 / 0.07), transparent 70%),
    radial-gradient(ellipse 45% 40% at 72% 30%, oklch(20.5% 0 0 / 0.05), transparent 70%),
    radial-gradient(ellipse 40% 35% at 50% 70%, oklch(20.5% 0 0 / 0.05), transparent 70%);
  filter: blur(4px);
}

.home-v2-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 72%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 72%);
}

.home-v2-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
}

.home-v2-hero__copy {
  max-width: 44rem;
  padding-top: 12px;
}

.home-v2-hero__brand {
  font-size: clamp(1.5rem, 4vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent-dark);
  margin-bottom: 16px;
  line-height: 1.1;
}

.home-v2-hero__title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 18px;
}

.home-v2-hero__sub {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: 1.65;
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 34rem;
}

.home-v2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.home-v2-hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted);
}

.home-v2-hero__trust i[data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.home-v2-hero__visual {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: 56px;
  animation: homeV2FloatIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-v2-hero__visual .hero-app-mock,
.home-v2-hero__visual .product-mockup--app {
  margin: 0 auto;
  transform: perspective(1400px) rotateX(6deg);
  transform-origin: center top;
  transition: transform 0.5s ease;
}

.home-v2-hero__visual:hover .hero-app-mock,
.home-v2-hero__visual:hover .product-mockup--app {
  transform: perspective(1400px) rotateX(2deg);
}

@keyframes homeV2FloatIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Social proof ── */
.home-v2-proof {
  padding: 28px 0 40px;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}

.home-v2-proof__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 20px;
}

.home-v2-proof__marquee {
  margin: 0;
  border: none;
  padding: 0;
}

/* ── Value / problem ── */
.home-v2-value {
  background: var(--white);
}

.home-v2-value__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.home-v2-value__pains {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.home-v2-pain {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--off);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.home-v2-pain i[data-lucide] {
  width: 18px;
  height: 18px;
  color: #b45309;
  flex-shrink: 0;
  margin-top: 2px;
}

.home-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--primary);
  color: #fff;
}

.home-v2-stat__val {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.home-v2-stat__label {
  font-size: 0.875rem;
  opacity: 0.75;
  line-height: 1.4;
}


/* Shared SVG stage alias (used by hero + all sections) */
.home-v2-stage {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, oklch(20.5% 0 0 / 0.05), transparent 70%),
    var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.home-v2-stage--tall { min-height: 560px; }
.home-v2-stage--compact { min-height: 420px; }
.home-v2-stage__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.home-v2-stage__path {
  stroke-dasharray: 6 8;
  animation: homeV2Dash 18s linear infinite;
}
.home-v2-stage__pulse {
  animation: homeV2PulseRing 3.2s ease-out infinite;
}
.home-v2-stage__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  pointer-events: none;
}
.home-v2-stage__hub strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.home-v2-stage__hub span {
  display: block;
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.home-v2-stage__card {
  position: absolute;
  z-index: 3;
  width: min(220px, 42vw);
  padding: 14px 14px 12px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: oklch(100% 0 0 / 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-v2-stage__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.home-v2-stage__card header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}
.home-v2-stage__card header i[data-lucide] {
  width: 15px;
  height: 15px;
  color: var(--accent-dark);
}
.home-v2-stage__card header em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--off);
  padding: 2px 7px;
  border-radius: 999px;
}
.home-v2-stage__card header em.is-live {
  color: var(--accent-dark);
  background: var(--mint-bg);
}
.home-v2-stage__card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.home-v2-stage__card li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--muted);
}
.home-v2-stage__card li strong {
  color: var(--ink);
  font-weight: 600;
}
.home-v2-stage__card > p {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
}
.home-v2-stage__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.home-v2-stage__chips span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--off);
  border: 1px solid var(--rule);
  padding: 3px 8px;
  border-radius: 999px;
}
.home-v2-stage__bar {
  height: 6px;
  border-radius: 999px;
  background: var(--off);
  overflow: hidden;
  margin: 10px 0 6px;
}
.home-v2-stage__bar span {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: inherit;
  background: var(--accent-dark);
}
.home-v2-stage__card small {
  font-size: 0.68rem;
  color: var(--muted);
}
.home-v2-stage__card--tl { top: 7%; left: 4%; }
.home-v2-stage__card--tr { top: 7%; right: 4%; }
.home-v2-stage__card--ml { top: 38%; left: 2%; }
.home-v2-stage__card--mr { top: 38%; right: 2%; }
.home-v2-stage__card--bl { bottom: 6%; left: 8%; }
.home-v2-stage__card--br { bottom: 6%; right: 8%; }
.home-v2-stage__card--tc { top: 6%; left: 50%; transform: translateX(-50%); width: min(260px, 70vw); }
.home-v2-stage__card--bc { bottom: 6%; left: 50%; transform: translateX(-50%); width: min(260px, 70vw); }

.home-v2-hero__visual {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.home-v2-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin-top: 22px;
  list-style: none;
}
.home-v2-hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}
.home-v2-hero__points i[data-lucide] {
  width: 15px;
  height: 15px;
  color: var(--ink);
}

/* ── Hero constellation (feature-rich hub) ── */
.hv2-constellation {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--rule);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 55% 45% at 50% 48%, oklch(20.5% 0 0 / 0.035), transparent 70%),
    linear-gradient(180deg, oklch(99% 0.002 260) 0%, var(--white) 100%);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hv2-constellation__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hv2-constellation__pulse {
  transform-origin: 490px 310px;
  animation: homeV2PulseRing 3.4s ease-out infinite;
}
.hv2-constellation__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 150px;
  pointer-events: none;
}
.hv2-constellation__live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px 8px;
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
}
.hv2-constellation__live i[data-lucide] {
  width: 11px;
  height: 11px;
}
.hv2-constellation__hub strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}
.hv2-constellation__hub > span:last-child {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.hv2-constellation__ribbon {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  width: min(92%, 720px);
}
.hv2-constellation__ribbon span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink);
  background: oklch(100% 0 0 / 0.92);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 5px 10px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.hv2-constellation__ribbon i[data-lucide] {
  width: 12px;
  height: 12px;
}

.hv2-c-card {
  position: absolute;
  z-index: 4;
  width: min(228px, 40vw);
  padding: 14px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: oklch(100% 0 0 / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px oklch(20.5% 0 0 / 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: hv2FloatY 6s ease-in-out infinite;
}
.hv2-c-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  animation-play-state: paused;
}
.hv2-c-card header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.hv2-c-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv2-c-card__icon i[data-lucide] {
  width: 15px;
  height: 15px;
}
.hv2-c-card header strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.hv2-c-card header em {
  display: inline-block;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--off);
  padding: 2px 6px;
  border-radius: 999px;
}
.hv2-c-card header em.is-live {
  color: var(--ink);
}
.hv2-c-card ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hv2-c-card li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--muted);
}
.hv2-c-card li b {
  color: var(--ink);
  font-weight: 600;
}
.hv2-c-card li b.ok {
  color: oklch(38% 0.06 150);
}
.hv2-c-card > p {
  font-size: 0.74rem;
  line-height: 1.4;
  color: var(--muted);
  margin-bottom: 8px;
}
.hv2-c-card small {
  display: block;
  margin-top: 6px;
  font-size: 0.65rem;
  color: var(--muted-light);
}
.hv2-c-card__spark {
  width: 100%;
  height: 28px;
  margin-top: 10px;
  display: block;
}
.hv2-c-card--tl { top: 11%; left: 3%; animation-delay: 0s; }
.hv2-c-card--tr { top: 11%; right: 3%; animation-delay: 0.7s; }
.hv2-c-card--ml { top: 40%; left: 2%; animation-delay: 1.1s; }
.hv2-c-card--mr { top: 40%; right: 2%; animation-delay: 0.35s; }
.hv2-c-card--bl { bottom: 7%; left: 6%; animation-delay: 1.5s; }
.hv2-c-card--br { bottom: 7%; right: 6%; animation-delay: 0.9s; }

.hv2-c-pill {
  position: absolute;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  padding: 7px 14px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hv2-c-pill i[data-lucide] {
  width: 13px;
  height: 13px;
}
.hv2-c-pill--top { top: 20%; }
.hv2-c-pill--bottom { bottom: 5%; top: auto; background: var(--white); color: var(--ink); border: 1px solid var(--rule); }

@keyframes hv2FloatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 1024px) {
  .hv2-constellation {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
  }
  .hv2-constellation__svg,
  .hv2-constellation__hub,
  .hv2-constellation__ribbon,
  .hv2-c-pill {
    display: none;
  }
  .hv2-c-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100%;
    animation: none;
  }
}

@media (max-width: 640px) {
  .hv2-constellation {
    grid-template-columns: 1fr;
  }
  .home-v2-hero__points {
    flex-direction: column;
    align-items: center;
  }
}

.home-v2-hl__visual .home-v2-stage,
.home-v2-hero__visual .home-v2-stage {
  margin: 0;
}
.home-v2-hl__visual .home-v2-stage {
  min-height: 440px;
}

@media (max-width: 1024px) {
  .home-v2-stage,
  .home-v2-hero__visual .home-v2-stage {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
  }
  .home-v2-stage__svg,
  .home-v2-stage__hub {
    display: none;
  }
  .home-v2-stage__card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    transform: none !important;
  }
}
@media (max-width: 640px) {
  .home-v2-stage,
  .home-v2-hero__visual .home-v2-stage {
    grid-template-columns: 1fr;
  }
}


/* ── Unique SVG stage layouts ── */
.home-v2-stage__card--static {
  position: relative;
  width: 100%;
  top: auto; left: auto; right: auto; bottom: auto;
}
.home-v2-stage__card header em.is-live,
.hv2-hero-card header em.is-live,
.hv2-chat header em.is-live,
.hv2-tree header em.is-live,
.hv2-flow header em.is-live,
.hv2-lane header em.is-live {
  color: var(--ink);
  background: var(--off);
}

/* Hero command center */
.home-v2-stage--hero { min-height: 520px; }
.hv2-hero-card {
  position: absolute; z-index: 3;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: oklch(100% 0 0 / 0.94);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 14px;
}
.hv2-hero-card header {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; font-weight: 600; margin-bottom: 10px;
}
.hv2-hero-card header i[data-lucide] { width: 15px; height: 15px; color: var(--ink); }
.hv2-hero-card header em {
  margin-left: auto; font-style: normal; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  background: var(--off); padding: 2px 7px; border-radius: 999px; color: var(--muted);
}
.hv2-hero-card ul { display: flex; flex-direction: column; gap: 6px; }
.hv2-hero-card li { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted); }
.hv2-hero-card li strong { color: var(--ink); }
.hv2-hero-card--strip {
  top: 8%; left: 6%; right: 6%; width: auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.hv2-hero-card--strip span { display: block; font-size: 0.7rem; color: var(--muted); margin-bottom: 4px; }
.hv2-hero-card--strip strong { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -0.02em; }
.hv2-hero-card--stack { top: 28%; left: 6%; width: min(220px, 28%); }
.hv2-hero-card--stack2 { top: 58%; left: 6%; width: min(220px, 28%); }
.hv2-hero-card--panel { top: 28%; right: 6%; width: min(420px, 52%); bottom: 10%; }
.hv2-hero-card--panel p { font-size: 0.9rem; line-height: 1.55; color: var(--muted); margin-bottom: 14px; }

/* Split before/after */
.home-v2-stage--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 420px;
  padding: 28px 24px;
}
.home-v2-stage--split .home-v2-stage__svg { z-index: 0; }
.hv2-split__col { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; padding: 8px 28px; }
.hv2-split__label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.hv2-split__col--right .hv2-split__label { color: var(--ink); }

/* Vertical pipeline */
.home-v2-stage--pipeline { min-height: 480px; }
.hv2-pipe {
  position: absolute; z-index: 3; width: min(280px, 40%);
  padding: 14px; border: 1px solid var(--rule); border-radius: 14px;
  background: oklch(100% 0 0 / 0.94); box-shadow: var(--shadow-sm);
}
.hv2-pipe header { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; font-weight: 600; margin-bottom: 8px; }
.hv2-pipe header i[data-lucide] { width: 15px; height: 15px; }
.hv2-pipe header em { margin-left: auto; font-style: normal; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; background: var(--off); padding: 2px 7px; border-radius: 999px; }
.hv2-pipe p, .hv2-pipe small { font-size: 0.78rem; color: var(--muted); }
.hv2-pipe--1 { top: 8%; left: 8%; }
.hv2-pipe--2 { top: 28%; right: 8%; }
.hv2-pipe--3 { top: 52%; left: 8%; }
.hv2-pipe--4 { bottom: 8%; right: 8%; }

/* AI chat */
.home-v2-stage--chat { min-height: 480px; display: flex; align-items: center; justify-content: center; }
.hv2-chat {
  position: relative; z-index: 3; width: min(420px, 78%);
  border: 1px solid var(--rule); border-radius: 16px; background: var(--white);
  box-shadow: var(--shadow-md); padding: 16px; display: flex; flex-direction: column; gap: 10px;
}
.hv2-chat header { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; }
.hv2-chat header i[data-lucide] { width: 16px; height: 16px; }
.hv2-chat header em { margin-left: auto; font-style: normal; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; background: var(--off); padding: 2px 8px; border-radius: 999px; }
.hv2-chat__bubble { max-width: 90%; padding: 10px 12px; border-radius: 12px; font-size: 0.8125rem; line-height: 1.45; }
.hv2-chat__bubble--user { align-self: flex-end; background: var(--ink); color: var(--white); border-bottom-right-radius: 4px; }
.hv2-chat__bubble--ai { align-self: flex-start; background: var(--off); color: var(--ink); border-bottom-left-radius: 4px; }
.hv2-chat__compose { margin-top: 4px; padding: 10px 12px; border: 1px dashed var(--rule); border-radius: 10px; font-size: 0.75rem; color: var(--muted); }
.hv2-chip {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--rule); background: var(--white); box-shadow: var(--shadow-sm);
}
.hv2-chip i[data-lucide] { width: 13px; height: 13px; }
.hv2-chip--1 { top: 14%; left: 5%; }
.hv2-chip--2 { top: 18%; right: 5%; }
.hv2-chip--3 { bottom: 16%; left: 6%; }
.hv2-chip--4 { bottom: 14%; right: 6%; }

/* Branch tree */
.home-v2-stage--tree { min-height: 480px; }
.hv2-tree {
  position: absolute; z-index: 3; width: min(240px, 30%);
  padding: 14px; border: 1px solid var(--rule); border-radius: 14px;
  background: oklch(100% 0 0 / 0.94); box-shadow: var(--shadow-sm);
}
.hv2-tree header { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; font-weight: 600; margin-bottom: 8px; }
.hv2-tree header i[data-lucide] { width: 15px; height: 15px; }
.hv2-tree header em { margin-left: auto; font-style: normal; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; background: var(--off); padding: 2px 7px; border-radius: 999px; }
.hv2-tree p, .hv2-tree li { font-size: 0.75rem; color: var(--muted); }
.hv2-tree ul { display: flex; flex-direction: column; gap: 4px; }
.hv2-tree li { display: flex; justify-content: space-between; }
.hv2-tree li strong { color: var(--ink); }
.hv2-tree--root { top: 6%; left: 50%; transform: translateX(-50%); width: min(300px, 50%); }
.hv2-tree--a { bottom: 10%; left: 6%; }
.hv2-tree--b { bottom: 10%; left: 50%; transform: translateX(-50%); }
.hv2-tree--c { bottom: 10%; right: 6%; }

/* MikroTik flow */
.home-v2-stage--flow {
  min-height: 360px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  align-items: center; padding: 48px 28px;
}
.hv2-flow {
  position: relative; z-index: 3;
  padding: 16px; border: 1px solid var(--rule); border-radius: 14px;
  background: oklch(100% 0 0 / 0.94); box-shadow: var(--shadow-sm);
}
.hv2-flow header { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; font-weight: 600; margin-bottom: 8px; }
.hv2-flow header i[data-lucide] { width: 15px; height: 15px; }
.hv2-flow header em { margin-left: auto; font-style: normal; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; background: var(--off); padding: 2px 7px; border-radius: 999px; }
.hv2-flow p { font-size: 0.78rem; color: var(--muted); }

/* Features bento */
.home-v2-stage--bento {
  min-height: 0; display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px; padding: 20px;
}
.hv2-bento {
  position: relative; z-index: 2;
  padding: 18px; border: 1px solid var(--rule); border-radius: 14px; background: var(--white);
}
.hv2-bento--lg { grid-row: span 2; background: var(--off); }
.hv2-bento--md { grid-column: span 2; }
.hv2-bento header { display: flex; align-items: center; gap: 8px; font-weight: 600; margin-bottom: 8px; }
.hv2-bento header i[data-lucide] { width: 16px; height: 16px; }
.hv2-bento p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* Compare VS */
.home-v2-stage--vs {
  min-height: 380px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 32px 24px;
}
.hv2-vs__badge {
  position: absolute; z-index: 4; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 999px; background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.04em;
}
.hv2-vs__side { position: relative; z-index: 2; padding: 12px 36px; }
.hv2-vs__side h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 16px; }
.hv2-vs__side ul { display: flex; flex-direction: column; gap: 10px; }
.hv2-vs__side li { font-size: 0.9rem; color: var(--muted); padding-left: 18px; position: relative; }
.hv2-vs__side--bad li::before { content: '×'; position: absolute; left: 0; color: var(--muted-light); font-weight: 700; }
.hv2-vs__side--good li::before { content: '✓'; position: absolute; left: 0; color: var(--ink); font-weight: 700; }
.hv2-vs__side--good h3 { color: var(--ink); }

/* Pricing tiers */
.home-v2-stage--tiers {
  min-height: 420px; display: grid; grid-template-columns: repeat(3, 1fr);
  align-items: end; gap: 16px; padding: 40px 28px 28px;
}
.hv2-tier {
  position: relative; z-index: 2; padding: 20px 18px; border: 1px solid var(--rule);
  border-radius: 14px; background: var(--white); text-align: center;
}
.hv2-tier--1 { min-height: 160px; }
.hv2-tier--2 { min-height: 220px; border-color: var(--ink); box-shadow: var(--shadow-md); }
.hv2-tier--3 { min-height: 260px; background: var(--off); }
.hv2-tier__tag { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 8px; }
.hv2-tier strong { display: block; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; }
.hv2-tier__price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 8px; }
.hv2-tier__price span { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.hv2-tier p { font-size: 0.8rem; color: var(--muted); }

/* Security rings */
.home-v2-stage--rings { min-height: 460px; }
.hv2-rings__core {
  position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%, -50%);
  text-align: center; pointer-events: none;
}
.hv2-rings__core i[data-lucide] { width: 28px; height: 28px; margin: 0 auto 6px; display: block; }
.hv2-rings__core strong { font-family: var(--font-display); font-size: 0.95rem; }
.hv2-ring {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border: 1px solid var(--rule); border-radius: 999px;
  background: var(--white); box-shadow: var(--shadow-sm); font-size: 0.8rem; font-weight: 600;
}
.hv2-ring i[data-lucide] { width: 14px; height: 14px; }
.hv2-ring--1 { top: 14%; left: 50%; transform: translateX(-50%); }
.hv2-ring--2 { top: 42%; right: 8%; }
.hv2-ring--3 { bottom: 14%; left: 50%; transform: translateX(-50%); }
.hv2-ring--4 { top: 42%; left: 8%; }

/* Steps timeline */
.home-v2-stage--timeline {
  min-height: 320px; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; align-items: start; padding: 48px 24px 28px;
}
.hv2-time { position: relative; z-index: 2; text-align: center; padding-top: 36px; }
.hv2-time__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 999px; background: var(--ink); color: var(--white);
  font-size: 0.75rem; font-weight: 700; margin-bottom: 12px;
}
.hv2-time strong { display: block; font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 6px; }
.hv2-time p { font-size: 0.8rem; color: var(--muted); }

/* Ops swimlanes */
.home-v2-stage--lanes { min-height: 520px; }
.hv2-lane__label {
  position: absolute; z-index: 1; left: 16px; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-light);
}
.hv2-lane__label--1 { top: 18%; }
.hv2-lane__label--2 { top: 46%; }
.hv2-lane__label--3 { top: 74%; }
.hv2-lane {
  position: absolute; z-index: 3; width: min(220px, 28%);
  padding: 12px 14px; border: 1px solid var(--rule); border-radius: 12px;
  background: oklch(100% 0 0 / 0.94); box-shadow: var(--shadow-sm);
}
.hv2-lane header { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; margin-bottom: 6px; }
.hv2-lane header i[data-lucide] { width: 14px; height: 14px; }
.hv2-lane header em { margin-left: auto; font-style: normal; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; background: var(--off); padding: 2px 6px; border-radius: 999px; }
.hv2-lane p, .hv2-lane li { font-size: 0.72rem; color: var(--muted); }
.hv2-lane ul { display: flex; flex-direction: column; gap: 4px; }
.hv2-lane li { display: flex; justify-content: space-between; }
.hv2-lane li strong { color: var(--ink); }
.hv2-lane--a { top: 10%; left: 14%; }
.hv2-lane--b { top: 10%; right: 14%; }
.hv2-lane--c { top: 40%; left: 28%; }
.hv2-lane--d { top: 40%; right: 10%; }
.hv2-lane--e { bottom: 10%; left: 18%; }
.hv2-lane--f { bottom: 10%; right: 16%; }

@media (max-width: 1024px) {
  .home-v2-stage--hero,
  .home-v2-stage--pipeline,
  .home-v2-stage--chat,
  .home-v2-stage--tree,
  .home-v2-stage--rings,
  .home-v2-stage--lanes {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    min-height: 0;
  }
  .home-v2-stage--hero .home-v2-stage__svg,
  .home-v2-stage--pipeline .home-v2-stage__svg,
  .home-v2-stage--chat .home-v2-stage__svg,
  .home-v2-stage--tree .home-v2-stage__svg,
  .home-v2-stage--rings .home-v2-stage__svg,
  .home-v2-stage--lanes .home-v2-stage__svg,
  .hv2-rings__core,
  .hv2-lane__label,
  .hv2-chip,
  .hv2-vs__badge { display: none; }
  .hv2-hero-card, .hv2-pipe, .hv2-tree, .hv2-lane, .hv2-ring, .hv2-chat {
    position: relative !important; top: auto !important; left: auto !important;
    right: auto !important; bottom: auto !important; width: 100% !important;
    transform: none !important;
  }
  .hv2-hero-card--strip { grid-column: 1 / -1; }
  .hv2-chat { width: 100%; grid-column: 1 / -1; }
  .home-v2-stage--split,
  .home-v2-stage--vs,
  .home-v2-stage--flow,
  .home-v2-stage--tiers,
  .home-v2-stage--timeline,
  .home-v2-stage--bento {
    grid-template-columns: 1fr;
  }
  .hv2-bento--lg, .hv2-bento--md { grid-row: auto; grid-column: auto; }
}

@media (max-width: 640px) {
  .home-v2-stage--hero,
  .home-v2-stage--pipeline,
  .home-v2-stage--chat,
  .home-v2-stage--tree,
  .home-v2-stage--rings,
  .home-v2-stage--lanes {
    grid-template-columns: 1fr;
  }
  .hv2-hero-card--strip { grid-template-columns: 1fr 1fr; }
}

/* ── Ops canvas (Laravel Cloud–inspired SVG composition) ── */
.home-v2-ops {
  background: var(--off);
  padding-top: 72px;
  padding-bottom: 72px;
  overflow: hidden;
}

.home-v2-ops__stage {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, oklch(20.5% 0 0 / 0.05), transparent 70%),
    var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.home-v2-ops__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.home-v2-ops__path {
  stroke-dasharray: 6 8;
  animation: homeV2Dash 18s linear infinite;
}

.home-v2-ops__pulse {
  transform-origin: 480px 280px;
  animation: homeV2PulseRing 3.2s ease-out infinite;
}

@keyframes homeV2Dash {
  to { stroke-dashoffset: -280; }
}

@keyframes homeV2PulseRing {
  0% { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.55); }
}

.home-v2-ops__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  pointer-events: none;
}

.home-v2-ops__hub strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}

.home-v2-ops__hub span {
  display: block;
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.home-v2-ops__card {
  position: absolute;
  z-index: 3;
  width: min(220px, 42vw);
  padding: 14px 14px 12px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: oklch(100% 0 0 / 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-v2-ops__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.home-v2-ops__card header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}

.home-v2-ops__card header i[data-lucide] {
  width: 15px;
  height: 15px;
  color: var(--accent-dark);
}

.home-v2-ops__card header em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--off);
  padding: 2px 7px;
  border-radius: 999px;
}

.home-v2-ops__card header em.is-live {
  color: var(--accent-dark);
  background: var(--mint-bg);
}

.home-v2-ops__card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-v2-ops__card li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--muted);
}

.home-v2-ops__card li strong {
  color: var(--ink);
  font-weight: 600;
}

.home-v2-ops__card > p {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
}

.home-v2-ops__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.home-v2-ops__chips span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--off);
  border: 1px solid var(--rule);
  padding: 3px 8px;
  border-radius: 999px;
}

.home-v2-ops__bar {
  height: 6px;
  border-radius: 999px;
  background: var(--off);
  overflow: hidden;
  margin: 10px 0 6px;
}

.home-v2-ops__bar span {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: inherit;
  background: var(--accent-dark);
}

.home-v2-ops__card small {
  font-size: 0.68rem;
  color: var(--muted);
}

.home-v2-ops__card--billing { top: 7%; left: 4%; }
.home-v2-ops__card--router { top: 7%; right: 4%; }
.home-v2-ops__card--import { top: 38%; left: 2%; }
.home-v2-ops__card--pay { top: 38%; right: 2%; }
.home-v2-ops__card--branch { bottom: 6%; left: 8%; }
.home-v2-ops__card--btrc { bottom: 6%; right: 8%; }

/* ── Product highlights ── */
.home-v2-hl {
  padding: 88px 0;
}

.home-v2-hl--alt {
  background: var(--off);
}

.home-v2-hl__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.home-v2-hl__grid--reverse {
  direction: rtl;
}

.home-v2-hl__grid--reverse > * {
  direction: ltr;
}

.home-v2-hl__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 28px;
}

.home-v2-hl__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--ink);
}

.home-v2-hl__list i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.home-v2-hl__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.home-v2-hl__visual {
  position: relative;
}

.home-v2-hl__visual .product-mockup,
.home-v2-hl__visual .dash-mock,
.home-v2-hl__visual .import-hero-mock,
.home-v2-hl__visual .ai-mock {
  max-width: 100%;
}

/* ── Features bento ── */
.home-v2-features {
  background: var(--white);
}

.home-v2-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.home-v2-feature {
  padding: 24px 22px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-v2-feature:hover {
  border-color: var(--accent-muted);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.home-v2-feature__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--mint-bg);
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.home-v2-feature__icon i[data-lucide] {
  width: 20px;
  height: 20px;
}

.home-v2-feature h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}

.home-v2-feature p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.home-v2-features__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

/* ── Compare ── */
.home-v2-compare__table {
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  margin-top: 36px;
}

.home-v2-compare__head,
.home-v2-compare__row {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.15fr;
  gap: 0;
}

.home-v2-compare__table--3col .home-v2-compare__head,
.home-v2-compare__table--3col .home-v2-compare__row {
  grid-template-columns: 1.1fr 1fr 1.05fr 1.15fr;
}

.home-v2-compare__head {
  background: var(--off);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.home-v2-compare__head > div,
.home-v2-compare__row > div {
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  font-size: 0.875rem;
  line-height: 1.45;
}

.home-v2-compare__row:last-child > div {
  border-bottom: none;
}

.home-v2-compare__highlight {
  color: var(--ink) !important;
  background: var(--off);
}

.home-v2-compare__feature {
  font-weight: 600;
  color: var(--ink);
}

.home-v2-compare__bad,
.home-v2-compare__mid {
  color: var(--muted);
}

.home-v2-compare__mid {
  background: oklch(98.5% 0.003 260);
}

.home-v2-compare__good {
  font-weight: 600;
  color: var(--ink);
  background: var(--off);
}

/* Three-way compare strip */
.hv2-compare-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hv2-compare-strip__card {
  padding: 22px 20px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--white);
}
.hv2-compare-strip__card--win {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.hv2-compare-strip__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.hv2-compare-strip__card--win .hv2-compare-strip__label {
  color: oklch(100% 0 0 / 0.65);
}
.hv2-compare-strip__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.hv2-compare-strip__card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hv2-compare-strip__card li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.hv2-compare-strip__card li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 700;
}
.hv2-compare-strip__card--win li {
  color: oklch(100% 0 0 / 0.8);
}
.hv2-compare-strip__card--win li::before {
  content: '✓';
  font-size: 0.75rem;
}

@media (max-width: 1024px) {
  .hv2-compare-strip {
    grid-template-columns: 1fr;
  }
  .home-v2-compare__table--3col {
    overflow-x: auto;
  }
  .home-v2-compare__table--3col .home-v2-compare__head,
  .home-v2-compare__table--3col .home-v2-compare__row {
    grid-template-columns: 140px 160px 180px 180px;
    min-width: 660px;
  }
}

/* ── Why switch ── */
.home-v2-switch__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.home-v2-switch__card {
  position: relative;
  padding: 24px 22px 22px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-v2-switch__card:hover {
  border-color: var(--accent-muted);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.home-v2-switch__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}

.home-v2-switch__card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.home-v2-switch__pain {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 10px;
}

.home-v2-switch__outcome {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--ink);
  padding-top: 10px;
  border-top: 1px solid var(--rule);
}

.home-v2-switch__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

/* ── Who it's for ── */
.home-v2-who__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.home-v2-who__card {
  padding: 22px 18px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-v2-who__card:hover {
  border-color: var(--accent-muted);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.home-v2-who__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--mint-bg);
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.home-v2-who__icon i[data-lucide] {
  width: 20px;
  height: 20px;
}

.home-v2-who__card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}

.home-v2-who__job {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 8px;
}

.home-v2-who__benefit {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--muted);
}

.home-v2-who__actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ── Pricing ── */
.home-v2-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.home-v2-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.home-v2-price-card--featured {
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-md);
  background: var(--mint-bg);
}

.home-v2-price-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 999px;
}

.home-v2-price-card__tag {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.home-v2-price-card__name {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-v2-price-card__price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 4px 0 8px;
}

.home-v2-price-card__price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.home-v2-price-card > p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}

.home-v2-price-card .btn {
  align-self: flex-start;
}

/* ── Security ── */
.home-v2-security__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.home-v2-security__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.home-v2-security__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.975rem;
}

.home-v2-security__list i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--accent-dark);
}

.home-v2-security__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.home-v2-sec-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 18px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
}

.home-v2-sec-card i[data-lucide] {
  width: 22px;
  height: 22px;
  color: var(--accent-dark);
  margin-bottom: 4px;
}

.home-v2-sec-card strong {
  font-size: 0.975rem;
}

.home-v2-sec-card span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Steps ── */
.home-v2-steps {
  background: var(--off);
}

.home-v2-steps__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  counter-reset: none;
}

.home-v2-step {
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}

.home-v2-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--mint-bg);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 14px;
}

.home-v2-step h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.home-v2-step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Security (dense split) ── */
.hv2-sec {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.hv2-sec__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.hv2-sec__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--ink);
}
.hv2-sec__checks i[data-lucide] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--ink);
}
.hv2-sec__panel {
  border: 1px solid var(--rule);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hv2-sec__panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule);
  background: var(--off);
}
.hv2-sec__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: oklch(78% 0 0);
}
.hv2-sec__dot:nth-child(1) { background: #ff5f57; }
.hv2-sec__dot:nth-child(2) { background: #febc2e; }
.hv2-sec__dot:nth-child(3) { background: #28c840; }
.hv2-sec__panel-top strong {
  margin-left: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}
.hv2-sec__panel-top em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 3px 8px;
  border-radius: 999px;
}
.hv2-sec__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hv2-sec__grid article {
  background: var(--white);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hv2-sec__grid i[data-lucide] {
  width: 20px;
  height: 20px;
  margin-bottom: 4px;
}
.hv2-sec__grid strong {
  font-size: 0.95rem;
  font-family: var(--font-display);
}
.hv2-sec__grid span {
  font-size: 0.8rem;
  color: var(--muted);
}
.hv2-sec__meter {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hv2-sec__meter-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
}
.hv2-sec__meter-row b {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: var(--off);
  position: relative;
  overflow: hidden;
  font-size: 0;
}
.hv2-sec__meter-row b::after {
  content: '';
  position: absolute;
  inset: 0;
  width: var(--w, 50%);
  background: var(--ink);
  border-radius: inherit;
}

/* ── Onboarding steps ── */
.hv2-onboard {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: none;
}
.hv2-onboard__step {
  position: relative;
  padding: 28px 22px 24px;
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hv2-onboard__step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.hv2-onboard__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.hv2-onboard__icon i[data-lucide] {
  width: 20px;
  height: 20px;
}
.hv2-onboard__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  margin-bottom: 8px;
}
.hv2-onboard__step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.hv2-onboard__step p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ── Testimonial panel ── */
.home-v2-testimonial {
  background: var(--white);
  padding: 88px 0;
}
.hv2-quote-panel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 48px 40px;
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hv2-quote-panel__mark {
  position: absolute;
  top: 12px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  opacity: 0.12;
  pointer-events: none;
}
.hv2-quote-panel__text {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.4;
  margin-bottom: 36px;
  max-width: 40rem;
}
.hv2-quote-panel__foot {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hv2-quote-panel__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: oklch(100% 0 0 / 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.hv2-quote-panel__foot strong {
  display: block;
  font-size: 0.975rem;
}
.hv2-quote-panel__foot span {
  font-size: 0.85rem;
  opacity: 0.65;
}
.hv2-quote-panel__stats {
  margin-left: auto;
  display: flex;
  gap: 28px;
}
.hv2-quote-panel__stats div {
  text-align: right;
}
.hv2-quote-panel__stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}
.hv2-quote-panel__stats em {
  font-style: normal;
  font-size: 0.75rem;
  opacity: 0.55;
}

/* ── FAQ ── */
.hv2-faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.hv2-faq__intro .home-v2-sub {
  margin-bottom: 24px;
}
.hv2-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hv2-faq__item {
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}
.hv2-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: inherit;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.hv2-faq__trigger i[data-lucide],
.hv2-faq__trigger svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s ease;
}
.hv2-faq__item.acc-open .hv2-faq__trigger i[data-lucide],
.hv2-faq__item.acc-open .hv2-faq__trigger svg {
  transform: rotate(180deg);
}
.hv2-faq__answer {
  padding: 0 20px 18px;
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .hv2-sec,
  .hv2-faq {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hv2-onboard {
    grid-template-columns: 1fr 1fr;
  }
  .hv2-quote-panel {
    padding: 36px 28px 28px;
  }
  .hv2-quote-panel__stats {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    margin-top: 8px;
  }
  .hv2-quote-panel__stats div {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hv2-onboard,
  .hv2-sec__grid {
    grid-template-columns: 1fr;
  }
  .hv2-sec__meter-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ── Legacy testimonial/faq leftovers (unused) ── */
.home-v2-quote { max-width: 44rem; margin: 0 auto; text-align: center; }
.home-v2-faq__split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}


/* ── Responsive ── */
@media (max-width: 1024px) {
  .home-v2-value__grid,
  .home-v2-hl__grid,
  .home-v2-hl__grid--reverse,
  .home-v2-security__grid,
  .home-v2-faq__split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-v2-hl__grid--reverse {
    direction: ltr;
  }

  .home-v2-features__grid,
  .home-v2-switch__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-v2-who__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-v2-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-v2-steps__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-v2-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .home-v2-hero__visual .hero-app-mock,
  .home-v2-hero__visual .product-mockup--app {
    transform: none;
  }

  .home-v2-hero__visual:hover .hero-app-mock,
  .home-v2-hero__visual:hover .product-mockup--app {
    transform: none;
  }

  .home-v2-ops__stage {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
  }

  .home-v2-ops__svg,
  .home-v2-ops__hub {
    display: none;
  }

  .home-v2-ops__card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .home-v2-value__pains,
  .home-v2-features__grid,
  .home-v2-switch__grid,
  .home-v2-who__grid,
  .home-v2-security__cards,
  .home-v2-stats,
  .home-v2-steps__row,
  .home-v2-ops__stage {
    grid-template-columns: 1fr;
  }

  .home-v2-compare__head,
  .home-v2-compare__row {
    grid-template-columns: 1fr;
  }

  .home-v2-compare__table--3col .home-v2-compare__head,
  .home-v2-compare__table--3col .home-v2-compare__row {
    grid-template-columns: 140px 160px 180px 180px;
  }

  .home-v2-compare__head > div:first-child {
    display: none;
  }

  .home-v2-compare__table--3col .home-v2-compare__head > div:first-child {
    display: block;
  }

  .home-v2-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .home-v2-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .home-v2-hl {
    padding: 64px 0;
  }
}
