/* BiznizCard — landing page only */
:root {
  --bg: #f3f5fb;
  --bg-subtle: #eef1f8;
  --bg-elevated: #ffffff;
  --ink: #070b14;
  --muted: #5b6474;
  --line: rgba(15, 23, 42, 0.07);
  --accent: #4f46e5;
  --accent-2: #6366f1;
  --accent-soft: rgba(79, 70, 229, 0.1);
  --accent-strong: #3730a3;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.11);
  --shadow-xl: 0 36px 90px rgba(15, 23, 42, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --max: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --tracking-tight: -0.035em;
  --section-y: clamp(4.25rem, 9.5vw, 6.75rem);
  --line-faint: rgba(15, 23, 42, 0.055);
  --text-display: clamp(2.35rem, 4.8vw, 3.75rem);
  --text-h2: clamp(1.92rem, 3.5vw, 2.6rem);
  --text-lead: clamp(1.04rem, 1.4vw, 1.22rem);
  /* Global UI — cards, motion, prose (shared with about.css) */
  --ui-radius-card: var(--radius-lg);
  --ui-card-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.78) inset;
  --ui-card-shadow-hover: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.88) inset;
  --ui-card-lift: translateY(-2px);
  --ui-transition: 0.26s var(--ease-out);
  --motion-polish: 0.26s var(--ease-out);
  --ui-border-hover: rgba(79, 70, 229, 0.18);
  --prose-max: 68ch;
  --reveal-distance: 26px;
  --reveal-slide-x: 40px;
  --reveal-duration: 0.72s;
  --reveal-delay: 0ms;
  /* Smooth deceleration (Framer-like, CSS-only) */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 28px;
  --card-radius-unified: 18px;
  --card-shadow-unified: 0 12px 28px rgba(15, 23, 42, 0.1);
}

@media (max-width: 640px) {
  :root {
    --section-y: clamp(3.35rem, 8.5vw, 5.25rem);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

main section[id] {
  scroll-margin-top: 4.5rem;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-media-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
  object-fit: cover;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - clamp(1.5rem, 5vw, 3rem), var(--max));
  margin-inline: auto;
}

/* Header / primary nav → css/navbar.css */

.logo {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
}

.logo--footer {
  display: inline-block;
  margin-bottom: 0.35rem;
}

/* Hero */
.hero {
  padding: clamp(3.5rem, 8vw, 6.25rem) 0 clamp(3.5rem, 8.5vw, 6.5rem);
  position: relative;
  overflow: visible;
  background: radial-gradient(120% 80% at 10% 0%, rgba(99, 102, 241, 0.12), transparent 55%),
    radial-gradient(90% 60% at 90% 10%, rgba(14, 165, 233, 0.06), transparent 50%),
    linear-gradient(180deg, #f8f9ff 0%, var(--bg) 42%, var(--bg) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -25% 35% auto -40%;
  height: 85%;
  background: radial-gradient(closest-side, rgba(79, 70, 229, 0.16), transparent 72%);
  pointer-events: none;
}

html.motion-ok .hero::before {
  animation: heroGlowDrift 14s ease-in-out infinite alternate;
}

@keyframes heroGlowDrift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(4%, 2%) scale(1.06);
    opacity: 0.88;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  column-gap: clamp(2.5rem, 6.5vw, 5rem);
  row-gap: clamp(1.25rem, 3vw, 1.75rem);
  align-items: start;
  position: relative;
}

@media (min-width: 901px) {
  .hero-grid {
    grid-template-rows: auto;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .hero-mosaic {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    transform: translateY(4px);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: clamp(1.25rem, 4vw, 2rem);
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-mosaic {
    justify-self: center;
    margin-inline: auto;
    width: min(100%, 520px);
  }

  .hero-trust {
    justify-content: center;
    margin-inline: auto;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent-strong);
  margin: 0 0 1rem;
}

.hero-title {
  font-size: clamp(1.72rem, 2.85vw + 0.85rem, 3.42rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: var(--tracking-tight);
  margin: 0 0 1.25rem;
  max-width: min(40rem, 100%);
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.hero-title__line {
  display: block;
}

.hero-title__line + .hero-title__line {
  margin-top: 0.035em;
}

/* Homepage hero headline — natural wrap, balanced measure (no line cap) */
.hero-title--home {
  font-size: clamp(1.65rem, 2.35vw + 1rem, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: min(100%, 19em);
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-title--home .gradient-text {
  font-weight: 900;
  letter-spacing: -0.035em;
}

@media (max-width: 900px) {
  .hero-title--home {
    margin-inline: auto;
    max-width: min(100%, 22rem);
    text-align: center;
    font-size: clamp(1.45rem, 3.5vw + 0.85rem, 2.65rem);
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: clamp(1.52rem, 5.2vw + 0.5rem, 1.82rem);
  }

  .hero-title--home {
    font-size: clamp(1.32rem, 4.5vw + 0.65rem, 2.2rem);
    letter-spacing: -0.032em;
    max-width: 100%;
  }
}

.gradient-text {
  background: linear-gradient(115deg, var(--accent) 0%, #7c3aed 45%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 1.85rem;
  font-size: clamp(0.98rem, 0.85vw + 0.88rem, 1.14rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: min(var(--prose-max), 100%);
  font-weight: 500;
  text-wrap: pretty;
}

/* Hero subcopy — smaller than global .lead (main page hero only) */
.hero .lead {
  font-size: clamp(0.8rem, 0.45vw + 0.72rem, 0.95rem);
  line-height: 1.58;
  font-weight: 500;
  margin-bottom: 0.65rem;
}

@media (max-width: 900px) {
  .lead {
    margin-inline: auto;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.hero-actions__primary,
.hero-actions__secondary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.hero-actions__hint {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-strong);
  letter-spacing: 0.01em;
  line-height: 1.35;
  max-width: 14rem;
}

.hero-actions__hint--muted {
  color: var(--muted);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.32s var(--ease-premium), box-shadow 0.32s var(--ease-premium), background 0.32s var(--ease-premium),
    border-color 0.32s var(--ease-premium), color 0.32s var(--ease-premium), filter 0.32s var(--ease-premium);
}

.btn:hover {
  filter: brightness(1.03);
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.btn-chevron,
.btn-play {
  flex-shrink: 0;
  opacity: 0.95;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #4338ca 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(79, 70, 229, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.btn-hero-primary {
  min-height: 48px;
  padding-inline: 1.5rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.btn-secondary-strong {
  min-height: 48px;
  padding-inline: 1.35rem;
  font-size: 1.02rem;
  font-weight: 600;
  background: var(--bg-elevated);
  color: var(--ink);
  border: 1.5px solid rgba(79, 70, 229, 0.35);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.btn-secondary-strong:hover {
  border-color: rgba(79, 70, 229, 0.55);
  background: #fafbff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--bg-elevated);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: rgba(15, 23, 42, 0.14);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 23, 42, 0.12);
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  max-width: 36rem;
}

.hero-copy .hero-trust {
  border-top: none;
  margin-top: 0.35rem;
  padding-top: 0;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.65rem 0.35rem 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-trust li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.24);
  flex-shrink: 0;
}

/* Hero picture + corner CTAs (reference: half on image, half past edge) */
.hero-mosaic {
  position: relative;
  width: min(100%, 560px);
  margin-inline: auto;
  z-index: 1;
}

.hero-mosaic .hero-visual {
  width: 100%;
  margin-inline: 0;
}

.hero-cta-float {
  position: absolute;
  z-index: 4;
  pointer-events: auto;
  max-width: min(100%, 18rem);
}

.hero-cta-float--tl {
  top: clamp(2.5%, 5.5vw, 10%);
  left: clamp(3%, 5vw, 9%);
  transform: translate(-44%, -48%);
}

.hero-cta-float--br {
  bottom: clamp(3%, 5.5vw, 9.5%);
  right: clamp(3%, 5vw, 9%);
  transform: translate(44%, 54%);
}

.hero-cta-float .btn {
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
}

@media (max-width: 900px) {
  .hero-cta-float--tl {
    transform: translate(-30%, -40%);
  }

  .hero-cta-float--br {
    transform: translate(30%, 46%);
  }
}

@media (max-width: 480px) {
  .hero-cta-float--tl {
    top: 1.5%;
    left: 2%;
    transform: translate(-20%, -32%);
  }

  .hero-cta-float--br {
    bottom: 1.5%;
    right: 2%;
    transform: translate(20%, 38%);
  }

  .hero-cta-float .btn-hero-primary,
  .hero-cta-float .btn-secondary-strong {
    padding-inline: 1.05rem;
    font-size: 0.9rem;
  }
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(100%, 560px);
  margin-inline: auto;
}

.hero-main-image {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  max-height: min(70vh, 660px);
  object-fit: contain;
  border-radius: 20px;
  margin-top: 0.35rem;
}

.hero-visual .hero-main-image.section-media-image,
.hero-visual .hero-main-image {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07), 0 2px 8px rgba(15, 23, 42, 0.04);
}

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

html.motion-ok .hero-visual .hero-main-image {
  animation: heroMainImageFloat 5.5s ease-in-out infinite;
}

.hero-live-pill {
  position: relative;
  z-index: 2;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem 0.4rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.hero-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.28);
  animation: pulse-dot 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-live-dot {
    animation: none;
  }

  .glow {
    animation: none;
  }

  .hero-visual .hero-main-image {
    animation: none;
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

.glow {
  position: absolute;
  width: min(100%, 380px);
  height: 380px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.38), transparent 62%);
  filter: blur(18px);
  top: 8%;
  animation: glow-drift 10s ease-in-out infinite alternate;
}

@keyframes glow-drift {
  from {
    transform: translate(-4%, 0) scale(1);
  }
  to {
    transform: translate(4%, 2%) scale(1.05);
  }
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 292px);
  aspect-ratio: 9 / 19.1;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(165deg, #1e293b 0%, #0f172a 40%, #020617 100%);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.07) inset, 0 -20px 50px rgba(79, 70, 229, 0.15);
}

.phone-notch {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 24px;
  background: #020617;
  border-radius: 999px;
  z-index: 4;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.phone-screen {
  height: 100%;
  min-height: 0;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1224 0%, #020617 100%);
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem 0.25rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #cbd5e1;
  flex-shrink: 0;
}

.phone-status__icons {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.phone-signal,
.phone-wifi,
.phone-battery {
  display: block;
  border-radius: 2px;
  background: #e2e8f0;
  opacity: 0.9;
}

.phone-signal {
  width: 14px;
  height: 8px;
  background: linear-gradient(90deg, #e2e8f0 20%, transparent 20%, transparent 40%, #e2e8f0 40%, #e2e8f0 60%, transparent 60%, transparent 80%, #e2e8f0 80%);
}

.phone-wifi {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 100%, transparent 40%, #e2e8f0 41%, #e2e8f0 55%, transparent 56%);
}

.phone-battery {
  width: 20px;
  height: 9px;
  border: 1.5px solid #e2e8f0;
  background: transparent;
  border-radius: 3px;
  position: relative;
}

.phone-battery::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 2px;
  width: 2px;
  height: 5px;
  background: #e2e8f0;
  border-radius: 0 1px 1px 0;
}

.phone-home-bar {
  flex-shrink: 0;
  height: 4px;
  width: 104px;
  margin: 0.2rem auto 0.5rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
}

/* Hero phone — full card layout, fits frame (no crop) */
.mini-card {
  flex: 1 1 0;
  min-height: 0;
  margin: 0 0.4rem 0.35rem;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.92) 0%, rgba(15, 23, 42, 0.98) 100%);
  border: 1px solid rgba(148, 163, 184, 0.14);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.mini-card__banner {
  flex-shrink: 0;
  height: 50px;
  background: linear-gradient(125deg, #6366f1 0%, #8b5cf6 42%, #a855f7 78%, #ec4899 100%);
  position: relative;
}

.mini-card__share {
  position: absolute;
  top: 0.35rem;
  right: 0.4rem;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.15rem 0.35rem;
  border-radius: 5px;
  color: #f8fafc;
  background: rgba(2, 6, 23, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mini-card__body {
  flex: 1 1 0;
  min-height: 0;
  padding: 0.35rem 0.45rem 0.45rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.28rem;
  text-align: left;
  overflow: hidden;
}

.mini-card__profile-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: -1.15rem;
  margin-bottom: 0.05rem;
  position: relative;
  z-index: 1;
}

.mini-card__avatar {
  width: 2.35rem;
  height: 2.35rem;
  min-width: 2.35rem;
  border-radius: 10px;
  border: 2px solid rgba(15, 23, 42, 0.95);
  background: linear-gradient(145deg, #e0e7ff, #a5b4fc);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.mini-card__id {
  display: flex;
  flex-direction: column;
  gap: 0.04rem;
  min-width: 0;
  padding-top: 0.85rem;
}

.mini-card__name {
  display: block;
  font-weight: 700;
  color: #f8fafc;
  font-size: 0.68rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mini-card__title {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  color: #cbd5e1;
  line-height: 1.2;
}

.mini-card__company {
  display: block;
  font-size: 0.5rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.2;
}

.mini-card__contacts {
  list-style: none;
  margin: 0;
  padding: 0.1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  width: 100%;
}

.mini-card__contacts li {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  min-width: 0;
}

.mini-card__contact-ico {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  display: grid;
  place-items: center;
  color: #a5b4fc;
  opacity: 0.95;
}

.mini-card__contact-ico svg {
  width: 11px;
  height: 11px;
}

.mini-card__contact-text {
  font-size: 0.5rem;
  font-weight: 500;
  color: #e2e8f0;
  letter-spacing: 0.01em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-card__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  padding: 0.08rem 0;
}

.mini-soc {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #e2e8f0;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.mini-soc svg {
  width: 11px;
  height: 11px;
}

.mini-card__qr-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0.2rem 0.15rem;
  margin-top: auto;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.mini-card__qr-svg {
  width: 2.35rem;
  height: 2.35rem;
  min-width: 2.35rem;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.mini-card__qr-label {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  line-height: 1.2;
  text-align: right;
  flex: 1;
}

.mini-card__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.28rem;
  width: 100%;
  justify-content: stretch;
}

.mini-card__actions .mini-pill {
  flex: 1;
  text-align: center;
  justify-content: center;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 0.28rem 0.35rem;
  border-radius: 7px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.mini-pill--solid {
  background: #f8fafc;
  color: #0f172a;
}

.mini-pill--ghost {
  background: rgba(148, 163, 184, 0.1);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.22);
}

@media (min-width: 901px) {
  .mini-card__banner {
    height: 54px;
  }

  .mini-card__body {
    gap: 0.32rem;
    padding: 0.4rem 0.5rem 0.5rem;
  }

  .mini-card__avatar {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
  }

  .mini-card__name {
    font-size: 0.72rem;
  }

  .mini-card__title {
    font-size: 0.58rem;
  }

  .mini-card__company {
    font-size: 0.52rem;
  }

  .mini-card__contact-text {
    font-size: 0.52rem;
  }

  .mini-card__qr-svg {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
  }
}

/* Who it's for */
.audiences {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-subtle) 45%, var(--bg) 100%);
  border-block: 1px solid var(--line);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }
}

.audience-card {
  padding: 1.5rem 1.4rem 1.6rem;
  border-radius: var(--ui-radius-card);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--ui-card-shadow);
  transition: transform var(--ui-transition), box-shadow var(--ui-transition), border-color var(--ui-transition);
}

.audience-card:hover {
  transform: var(--ui-card-lift);
  box-shadow: var(--ui-card-shadow-hover);
  border-color: var(--ui-border-hover);
}

.audience-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--accent-strong);
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.12), rgba(99, 102, 241, 0.06));
  border: 1px solid rgba(79, 70, 229, 0.1);
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}

html.motion-ok .audience-card:hover .audience-card__icon {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.14);
}

.audience-card__icon svg {
  width: 28px;
  height: 28px;
}

.audience-card__title {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.audience-card__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--muted);
}

.audience-micro {
  margin: 2rem auto 0;
  max-width: 42ch;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .audience-card {
    transition: none;
  }

  .audience-card:hover {
    transform: none;
  }

  .audience-card__icon {
    transition: none;
  }

  html.motion-ok .audience-card:hover .audience-card__icon {
    transform: none;
    box-shadow: none;
  }
}

/* Trust */
.trust {
  padding: var(--section-y) 0;
  background: var(--bg-elevated);
  border-block: 1px solid var(--line);
}

.trust-micro {
  margin: 0 auto 1.5rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
  background: var(--bg-subtle);
  border: 1px dashed rgba(79, 70, 229, 0.2);
  max-width: 52rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2.5rem;
}

.trust-strip__label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  max-width: 20rem;
  letter-spacing: -0.015em;
}

.trust-logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.trust-logo-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

@media (max-width: 720px) {
  .trust-stats {
    grid-template-columns: 1fr;
  }

  .trust-logos {
    justify-content: flex-start;
  }

  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

.trust-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 7.75rem;
  height: 100%;
  padding: 1.4rem 1.35rem 1.45rem 1.45rem;
  border-radius: var(--ui-radius-card);
  background: linear-gradient(180deg, #fafbff 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--ui-card-shadow);
}

.trust-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  opacity: 0.85;
}

.trust-stat__value {
  display: block;
  font-size: clamp(1.8rem, 4.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 0.5rem;
}

.trust-stat__label {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.55;
  max-width: 24ch;
  margin-top: auto;
}

.trust-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
}

@media (max-width: 820px) {
  .trust-reviews {
    grid-template-columns: 1fr;
  }
}

.trust-quote {
  margin: 0;
  height: 100%;
  padding: 1.45rem 1.5rem 1.4rem;
  border-radius: var(--ui-radius-card);
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: var(--ui-card-shadow);
}

.trust-quote blockquote {
  margin: 0 0 1.05rem;
  font-size: clamp(0.95rem, 1.5vw, 1.02rem);
  font-weight: 500;
  line-height: 1.62;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.trust-quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.trust-stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.trust-quote__who {
  font-weight: 600;
  color: var(--muted);
}

.trust-disclaimer {
  margin: 1.75rem 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  line-height: 1.5;
}

/* Sections */
.section {
  padding: var(--section-y) 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(2.15rem, 4.2vw, 3.15rem);
}

.section-head--features {
  max-width: 720px;
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

.section-head h2 {
  margin: 0 0 0.85rem;
  font-size: var(--text-h2);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: 1.14;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.65;
  max-width: min(var(--prose-max), 100%);
}

.section-sub a {
  color: var(--accent-strong, #4338ca);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Demo */
.demo {
  background: linear-gradient(180deg, var(--bg) 0%, #eef0f7 100%);
}

/* Split live preview — intro above; preview + aside row below */
.demo-split {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4.5vw, 3rem);
}

.demo-split__main {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: start;
}

.demo-split__visual {
  min-width: 0;
}

.demo-split__rail {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.demo-split__rail-lead {
  margin: 0;
  max-width: 100%;
}

/* Centered title band so the short intro matches the visual weight of the wide row below */
.section-head--demo-split {
  max-width: min(46rem, 100%);
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
  text-wrap: balance;
}

.section-head--demo-split .eyebrow {
  margin-inline: auto;
}

.section-head--demo-split h2 {
  margin-bottom: 0;
  margin-inline: auto;
  max-width: min(100%, 38rem);
  text-wrap: balance;
}

.demo-stage__play-badge {
  display: none;
}

/* Live preview: flat image, no glow/plate/play, smaller frame */
.demo--split .demo-stage--plain {
  max-width: min(100%, 520px);
  margin-inline: 0;
  perspective: none;
}

.demo--split .demo-stage--plain .demo-preview-image {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: none;
  transform: none;
  filter: none;
  transition: none;
}

.demo--split .demo-stage--plain .demo-preview-image:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--line);
  filter: none;
}

.demo--split .demo-aside h3 {
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.demo-aside--numbered ul {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: demo-split-step;
}

.demo-aside--numbered li {
  position: relative;
  display: grid;
  grid-template-columns: 2.85rem minmax(0, 1fr);
  gap: 0.35rem 1rem;
  align-items: start;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.demo-aside--numbered li::before {
  counter-increment: demo-split-step;
  content: counter(demo-split-step, decimal-leading-zero);
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(79, 70, 229, 0.14);
}

.demo-aside--numbered li + li {
  margin-top: 1.15rem;
}

@media (max-width: 880px) {
  .demo-split__main {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 2.5rem);
  }

  .demo--split .demo-stage--plain {
    margin-inline: auto;
  }
}

.demo-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(100%, 400px);
  perspective: 1400px;
  transition: filter 0.35s ease;
}

.demo-stage:has(.demo-preview-image:hover) .demo-stage__ambient {
  background: radial-gradient(ellipse at 50% 28%, rgba(79, 70, 229, 0.32), transparent 58%);
  filter: blur(32px);
}

.demo-stage__ambient {
  position: absolute;
  inset: 8% -12% -6% -12%;
  background: radial-gradient(ellipse at 50% 30%, rgba(79, 70, 229, 0.22), transparent 62%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  transition: background 0.35s ease, filter 0.35s ease;
}

.demo-stage__plate {
  position: absolute;
  bottom: -0.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.12);
  filter: blur(6px);
  z-index: 0;
}

.demo-preview-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 0 48px rgba(79, 70, 229, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, filter 0.35s ease, border-color 0.35s ease;
}

.demo-preview-image:hover {
  transform: translateY(-10px) rotateX(4deg) scale(1.012);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.07) inset, 0 0 64px rgba(99, 102, 241, 0.22);
  border-color: rgba(129, 140, 248, 0.28);
  filter: saturate(1.07) brightness(1.03);
}

/* #demo card — mirrors hero mini-card structure & dark treatment */
.sample-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  max-width: 400px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.96) 0%, rgba(15, 23, 42, 1) 100%);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 0 48px rgba(79, 70, 229, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, filter 0.35s ease, border-color 0.35s ease;
}

.sample-card--live:hover {
  transform: translateY(-10px) rotateX(4deg) scale(1.012);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.07) inset, 0 0 64px rgba(99, 102, 241, 0.22);
  border-color: rgba(129, 140, 248, 0.28);
  filter: saturate(1.07) brightness(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .sample-card--live:hover {
    transform: translateY(-4px);
    filter: none;
  }
}

.sample-card__sheen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(52px, 14vw, 68px);
  z-index: 2;
  pointer-events: none;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.38) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: card-sheen 7s ease-in-out infinite;
  opacity: 0.48;
  mix-blend-mode: soft-light;
}

@media (prefers-reduced-motion: reduce) {
  .sample-card__sheen {
    animation: none;
    opacity: 0.18;
  }
}

@keyframes card-sheen {
  0%,
  100% {
    background-position: 130% 0;
  }
  50% {
    background-position: -30% 0;
  }
}

.sample-card__banner {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  height: clamp(52px, 14vw, 64px);
  padding: 0.45rem 0.55rem 0.4rem;
  background: linear-gradient(125deg, #6366f1 0%, #8b5cf6 42%, #a855f7 78%, #ec4899 100%);
  overflow: hidden;
}

.sample-card__live-tag {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: clamp(0.55rem, 1.6vw, 0.62rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.45rem 0.22rem 0.35rem;
  border-radius: 999px;
  color: #ecfdf5;
  background: rgba(6, 78, 59, 0.55);
  border: 1px solid rgba(52, 211, 153, 0.45);
  backdrop-filter: blur(6px);
}

.sample-card__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.35);
  animation: pulse-dot 2s ease-in-out infinite;
}

.sample-card__share {
  position: relative;
  z-index: 3;
  font-size: clamp(0.52rem, 1.5vw, 0.58rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.18rem 0.4rem;
  border-radius: 6px;
  color: #f8fafc;
  background: rgba(2, 6, 23, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sample-card__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(0.28rem, 1.1vw, 0.45rem);
  padding: clamp(0.35rem, 1.2vw, 0.55rem) clamp(0.45rem, 1.8vw, 0.7rem) clamp(0.45rem, 1.8vw, 0.65rem);
  text-align: left;
}

.sample-card__profile-row {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1.4vw, 0.55rem);
  margin-top: clamp(-1.05rem, -3vw, -0.85rem);
  margin-bottom: 0.05rem;
  position: relative;
  z-index: 1;
}

.sample-card__avatar {
  width: clamp(2.35rem, 7vw, 2.85rem);
  height: clamp(2.35rem, 7vw, 2.85rem);
  min-width: clamp(2.35rem, 7vw, 2.85rem);
  border-radius: 11px;
  border: 2px solid rgba(15, 23, 42, 0.95);
  background: linear-gradient(145deg, #fde68a, #f97316);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.38);
}

.sample-card__id {
  display: flex;
  flex-direction: column;
  gap: 0.06rem;
  min-width: 0;
  padding-top: clamp(0.55rem, 2vw, 0.85rem);
}

.sample-card__name {
  display: block;
  font-weight: 700;
  color: #f8fafc;
  font-size: clamp(0.68rem, 2.1vw, 0.82rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.sample-card__title {
  display: block;
  font-size: clamp(0.54rem, 1.7vw, 0.64rem);
  font-weight: 600;
  color: #cbd5e1;
  line-height: 1.25;
}

.sample-card__company {
  display: block;
  font-size: clamp(0.48rem, 1.5vw, 0.56rem);
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.25;
}

.sample-card__contacts {
  list-style: none;
  margin: 0;
  padding: 0.08rem 0 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.14rem, 0.8vw, 0.22rem);
  width: 100%;
}

.sample-card__contacts li {
  display: flex;
  align-items: center;
  gap: clamp(0.22rem, 1vw, 0.35rem);
  min-width: 0;
}

.sample-card__contact-ico {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  display: grid;
  place-items: center;
  color: #a5b4fc;
  opacity: 0.95;
}

.sample-card__contact-ico svg {
  width: clamp(10px, 2.8vw, 12px);
  height: clamp(10px, 2.8vw, 12px);
}

.sample-card__contact-text {
  font-size: clamp(0.48rem, 1.45vw, 0.58rem);
  font-weight: 500;
  color: #e2e8f0;
  letter-spacing: 0.01em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sample-card__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.26rem, 1.1vw, 0.4rem);
  padding: 0.06rem 0;
}

#demo .sample-card .mini-soc {
  width: clamp(1.28rem, 4vw, 1.48rem);
  height: clamp(1.28rem, 4vw, 1.48rem);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #e2e8f0;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.16);
  transition: transform 0.2s var(--ease-out), border-color 0.2s ease, background 0.2s ease;
}

#demo .sample-card .mini-soc svg {
  width: clamp(10px, 2.8vw, 12px);
  height: clamp(10px, 2.8vw, 12px);
}

#demo .sample-card--live:hover .mini-soc {
  transform: translateY(-1px);
  border-color: rgba(165, 180, 252, 0.35);
  background: rgba(129, 140, 248, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  #demo .sample-card--live:hover .mini-soc {
    transform: none;
  }
}

.sample-card__qr-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.18rem 0.1rem 0;
  margin-top: auto;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.sample-card__qr-svg {
  width: clamp(2.2rem, 6.5vw, 2.65rem);
  height: clamp(2.2rem, 6.5vw, 2.65rem);
  min-width: clamp(2.2rem, 6.5vw, 2.65rem);
  border-radius: 7px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

.sample-card__qr-label {
  font-size: clamp(0.45rem, 1.35vw, 0.52rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  line-height: 1.2;
  text-align: right;
  flex: 1;
}

.sample-card__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.22rem, 1vw, 0.35rem);
  width: 100%;
}

#demo .sample-card .mini-pill {
  flex: 1;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  font-size: clamp(0.48rem, 1.4vw, 0.56rem);
  font-weight: 700;
  padding: clamp(0.26rem, 1vw, 0.34rem) clamp(0.28rem, 1vw, 0.4rem);
  border-radius: 8px;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: default;
  appearance: none;
  -webkit-appearance: none;
}

#demo .sample-card .mini-pill--solid {
  border: none;
  background: #f8fafc;
  color: #0f172a;
}

#demo .sample-card .mini-pill--ghost {
  background: rgba(148, 163, 184, 0.1);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.demo-aside {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.demo-aside h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.demo-aside ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.demo-aside li + li {
  margin-top: 0.65rem;
}

/* How it works — visual flow */
.how {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border-block: 1px solid var(--line);
  padding-block: calc(var(--section-y) + 0.25rem);
}

.how .section-head {
  margin-bottom: clamp(2.35rem, 4.6vw, 3.45rem);
}

.how-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  margin: 0.35rem auto 0;
  padding: 0;
  max-width: 1080px;
}

.flow-card {
  min-width: 0;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--ui-card-shadow);
  transition: transform var(--ui-transition), box-shadow var(--ui-transition), border-color var(--ui-transition);
}

.flow-card:hover {
  transform: var(--ui-card-lift);
  box-shadow: var(--ui-card-shadow-hover);
  border-color: var(--ui-border-hover);
}

.flow-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
  flex-shrink: 0;
}

.flow-card__visual {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: var(--bg-subtle);
  margin-bottom: 1.25rem;
  line-height: 0;
}

.flow-mock {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 360 / 220;
}

.flow-card__title-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.flow-card__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  color: var(--accent);
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.14);
  flex-shrink: 0;
}

.flow-card__title-row h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.flow-card__body p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--muted);
}

html.motion-ok .how.reveal.is-visible .flow-card--reveal {
  opacity: 1;
  transform: translateY(0);
}

html.motion-ok .how.reveal.is-visible .flow-card--reveal:nth-child(1) {
  transition-delay: 0.07s;
}

html.motion-ok .how.reveal.is-visible .flow-card--reveal:nth-child(3) {
  transition-delay: 0.15s;
}

html.motion-ok .how.reveal.is-visible .flow-card--reveal:nth-child(5) {
  transition-delay: 0.23s;
}

.flow-card--reveal {
  opacity: 1;
  transform: none;
}

html.motion-ok .flow-card--reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition: opacity var(--reveal-duration) var(--ease-premium), transform var(--reveal-duration) var(--ease-premium);
}

.how-flow__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: clamp(1.25rem, 3vw, 2.5rem);
  min-height: 120px;
}

.how-flow__line {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.55) 0 6px,
    transparent 6px 14px
  );
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

@media (max-width: 900px) {
  .how-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 420px;
  }

  .flow-card {
    width: 100%;
    max-width: 420px;
  }

  .how-flow__connector {
    width: 100%;
    min-height: 2.25rem;
    height: 2.25rem;
  }

  .how-flow__line {
    width: 3px;
    height: 100%;
    min-height: 2rem;
    background: repeating-linear-gradient(
      180deg,
      rgba(99, 102, 241, 0.55) 0 6px,
      transparent 6px 14px
    );
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-card {
    transition: none;
  }

  .flow-card:hover {
    transform: none;
  }

  .flow-card--reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Real use cases */
.use-cases {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, #fbfcfe 0%, #f5f7fc 50%, #fbfcfe 100%);
  border-block: 1px solid var(--line-faint);
}

.section-head--use-cases {
  max-width: 38rem;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.55rem);
  margin-top: 0.65rem;
  max-width: 1120px;
  margin-inline: auto;
  align-items: stretch;
}

.use-case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 158px;
  padding: 1.35rem 1.2rem 1.5rem;
  border-radius: var(--ui-radius-card);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--ui-card-shadow);
  transition: transform var(--ui-transition), box-shadow var(--ui-transition), border-color var(--ui-transition);
}

.use-case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 2px transparent;
  transition: box-shadow var(--ui-transition);
}

.use-case-card:hover {
  transform: var(--ui-card-lift);
  box-shadow: var(--ui-card-shadow-hover);
  border-color: var(--ui-border-hover);
}

.use-case-card:hover::after {
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.18);
}

.use-case-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
  color: var(--accent-strong);
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.11), rgba(99, 102, 241, 0.05));
  border: 1px solid rgba(79, 70, 229, 0.12);
  transition: color var(--ui-transition), background var(--ui-transition), border-color var(--ui-transition);
}

.use-case-card__icon svg {
  width: 24px;
  height: 24px;
}

.use-case-card:hover .use-case-card__icon {
  color: var(--accent);
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.16), rgba(99, 102, 241, 0.08));
  border-color: rgba(79, 70, 229, 0.22);
}

.use-case-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
}

.use-case-card__desc {
  margin: 0;
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.58;
  font-weight: 500;
  color: var(--muted);
}

.use-cases-journey {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.35rem;
  margin-top: clamp(2.25rem, 4.5vw, 3.25rem);
  padding: 1.1rem 1.25rem;
  max-width: 44rem;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.use-cases-journey__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.use-cases-journey__arrow {
  display: flex;
  color: rgba(79, 70, 229, 0.45);
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .use-cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 880px;
    row-gap: 1.35rem;
  }
}

@media (max-width: 720px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
    row-gap: clamp(1rem, 3vw, 1.2rem);
  }

  .use-case-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .use-case-card {
    transition: none;
  }

  .use-case-card::after {
    transition: none;
  }

  .use-case-card:hover {
    transform: none;
  }

  .use-case-card:hover .use-case-card__icon {
    transition: none;
  }
}

/* Features */
.features {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-subtle) 55%, var(--bg) 100%);
}

.feature-grid--modern {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.35rem);
  max-width: 1080px;
  margin-inline: auto;
  align-items: stretch;
}

@media (max-width: 640px) {
  .feature-grid--modern {
    grid-template-columns: 1fr;
  }
}

.feature--row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.15rem;
  min-height: 100%;
  padding: 1.35rem 1.45rem;
  border-radius: var(--ui-radius-card);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--ui-card-shadow);
  transition: box-shadow var(--ui-transition), transform var(--ui-transition), border-color var(--ui-transition);
}

.feature--row:hover {
  box-shadow: var(--ui-card-shadow-hover);
  transform: var(--ui-card-lift);
  border-color: var(--ui-border-hover);
}

.feature--row .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.14), rgba(99, 102, 241, 0.08));
  color: var(--accent-strong);
  margin: 0;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.08) inset;
}

.feature--row .feature-icon svg {
  width: 23px;
  height: 23px;
}

.feature__body {
  min-width: 0;
}

.feature__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.25;
  color: var(--ink);
}

.feature__benefit {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.62;
  font-weight: 500;
  max-width: min(var(--prose-max), 42ch);
}

/* CTA */
.cta {
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.cta-inner {
  display: flex;
  justify-content: center;
}

.cta-card {
  width: min(100%, 760px);
  text-align: center;
  padding: clamp(2.25rem, 5.5vw, 3.25rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(155deg, #0b1220 0%, #1e1b4b 42%, #312e81 100%);
  color: #e5e7eb;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fde68a;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: 999px;
}

.cta-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  color: #fff;
  letter-spacing: var(--tracking-tight);
  line-height: 1.15;
  font-weight: 800;
}

.cta-lead {
  margin: 0 auto 1.35rem;
  max-width: 44ch;
  color: #c7d2fe;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 500;
}

.cta-lead a {
  color: #eef2ff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-points {
  list-style: none;
  margin: 0 auto 1.75rem;
  padding: 0;
  max-width: 28rem;
  text-align: left;
}

.cta-points li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #e0e7ff;
  line-height: 1.45;
}

.cta-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.24);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  justify-content: center;
  margin-bottom: 0.65rem;
}

.cta-hints {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.75rem;
  margin: 0 auto 1.1rem;
  max-width: 36rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 500;
}

.cta-hints__primary {
  color: #e0e7ff;
}

.cta-hints__secondary {
  color: rgba(226, 232, 240, 0.72);
}

.cta-card .btn-cta-primary {
  min-height: 52px;
  padding-inline: 1.65rem;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  background: #fff !important;
  color: var(--ink) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5) inset !important;
}

.cta-card .btn-cta-primary:hover {
  background: #f8fafc !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.55) inset !important;
}

.cta-card .btn-cta-secondary {
  min-height: 52px;
  padding-inline: 1.5rem;
  font-weight: 600;
  font-size: 1.02rem;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.46) !important;
  color: rgba(255, 255, 255, 0.96) !important;
}

.cta-card .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.cta-card .btn-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.cta-card .btn-primary:hover {
  background: #f8fafc;
}

.cta-card .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.cta-card .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.cta-note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.65);
}

/* Footer — matches site theme (light surface, indigo accents) */
.site-footer {
  --footer-accent: var(--accent-2);
  --footer-accent-2: var(--accent);
  background: linear-gradient(180deg, #fafbff 0%, var(--bg-subtle) 55%, var(--bg) 100%);
  color: var(--muted);
  padding: clamp(2.75rem, 6vw, 4rem) 0 0;
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: inherit;
}

.site-footer a:hover {
  color: var(--accent-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col--brand .logo--footer,
.site-footer .logo.logo--footer {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
}

.footer-eyebrow {
  margin: 0.35rem 0 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.footer-tagline {
  margin: 0.65rem 0 0;
  max-width: 34ch;
  line-height: 1.55;
  color: var(--muted);
}

.footer-social {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--accent-strong);
  transition: background 0.28s var(--ease-premium), border-color 0.28s var(--ease-premium), color 0.28s var(--ease-premium),
    transform 0.28s var(--ease-premium), box-shadow 0.28s var(--ease-premium);
}

.footer-social__btn:hover {
  background: var(--accent-soft);
  border-color: rgba(79, 70, 229, 0.22);
  color: var(--accent-2);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.12);
}

.footer-social__btn svg {
  display: block;
}

.footer-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.12rem 0;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a::before {
  content: "→";
  font-size: 0.85em;
  opacity: 0.45;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover::before {
  opacity: 0.95;
  transform: translateX(3px);
}

.footer-nav a[aria-current="page"] {
  color: var(--accent-strong);
  font-weight: 600;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact__row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border: 1px solid rgba(79, 70, 229, 0.12);
  color: var(--accent-2);
}

.footer-contact__icon svg {
  display: block;
}

.footer-contact__body strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.footer-contact__body a,
.footer-contact__body span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.footer-contact__body a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.35rem 0 1.75rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-bottom p,
.footer-bottom__text {
  margin: 0;
}

.footer-bottom__text {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  justify-content: center;
  align-items: center;
  max-width: 52rem;
  line-height: 1.5;
}

.footer-bottom__sep {
  opacity: 0.45;
  user-select: none;
}

.footer-bottom__heart {
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  flex-shrink: 0;
  color: #e11d48;
  vertical-align: -0.12em;
}

/* Legacy: pages still using .footer-links with bare <a> children */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links > a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}

.footer-links > a::before {
  content: "→";
  font-size: 0.85em;
  opacity: 0.45;
}

.site-footer .logo {
  color: var(--ink);
}

/* Scroll reveal */
.reveal {
  opacity: 1;
  transform: none;
}

@keyframes uiFadeUp {
  from {
    opacity: 0;
    transform: translateY(1.125rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trustPillFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes audienceMicroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -3px, 0);
  }
}

/* Home hero — staggered load (subtle SaaS entrance) */
html.motion-ok .hero .hero-copy .eyebrow {
  animation: uiFadeUp 0.64s var(--ease-premium) 0.04s both;
}

html.motion-ok .hero .hero-copy .hero-title--home {
  animation: uiFadeUp 0.7s var(--ease-premium) 0.1s both;
}

html.motion-ok .hero .hero-copy .lead {
  animation: uiFadeUp 0.7s var(--ease-premium) 0.17s both;
}

html.motion-ok .hero .hero-copy .hero-trust {
  animation: uiFadeUp 0.68s var(--ease-premium) 0.24s both;
}

html.motion-ok .hero .hero-mosaic {
  animation: uiFadeUp 0.78s var(--ease-premium) 0.12s both;
}

html.motion-ok .reveal {
  opacity: 0;
  --reveal-tx: 0px;
  --reveal-ty: var(--reveal-distance);
  transform: translate3d(var(--reveal-tx), var(--reveal-ty), 0);
  transition:
    opacity var(--reveal-duration) var(--ease-premium) var(--reveal-delay),
    transform var(--reveal-duration) var(--ease-premium) var(--reveal-delay);
}

html.motion-ok .reveal.is-visible {
  opacity: 1;
  --reveal-tx: 0px;
  --reveal-ty: 0px;
  transform: translate3d(0, 0, 0);
}

html.motion-ok .reveal.reveal--from-left {
  --reveal-tx: calc(-1 * var(--reveal-slide-x));
  --reveal-ty: 0px;
}

html.motion-ok .reveal.reveal--from-right {
  --reveal-tx: var(--reveal-slide-x);
  --reveal-ty: 0px;
}

html.motion-ok .reveal.reveal--from-below {
  --reveal-tx: 0px;
  --reveal-ty: var(--reveal-distance);
}

html.motion-ok body.is-page-ready .hero-trust li:nth-child(1) {
  animation: trustPillFloat 4.75s ease-in-out infinite;
  animation-delay: 0s;
}

html.motion-ok body.is-page-ready .hero-trust li:nth-child(2) {
  animation: trustPillFloat 4.75s ease-in-out infinite;
  animation-delay: 0.28s;
}

html.motion-ok body.is-page-ready .hero-trust li:nth-child(3) {
  animation: trustPillFloat 4.75s ease-in-out infinite;
  animation-delay: 0.56s;
}

html.motion-ok body.is-page-ready .hero-trust li:nth-child(4) {
  animation: trustPillFloat 4.75s ease-in-out infinite;
  animation-delay: 0.84s;
}

html.motion-ok .audiences.reveal.is-visible .audience-micro {
  animation: audienceMicroFloat 5.25s ease-in-out infinite;
  animation-delay: 0.35s;
}

html.motion-ok [data-parallax] {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  html.motion-ok .hero .hero-copy .eyebrow,
  html.motion-ok .hero .hero-copy .hero-title--home,
  html.motion-ok .hero .hero-copy .lead,
  html.motion-ok .hero .hero-copy .hero-trust,
  html.motion-ok .hero .hero-mosaic {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  html.motion-ok body.is-page-ready .hero-trust li {
    animation: none !important;
  }

  html.motion-ok .audiences.reveal.is-visible .audience-micro {
    animation: none !important;
  }

  [data-parallax] {
    transform: none !important;
    will-change: auto;
  }

  html.motion-ok .reveal,
  html.motion-ok .reveal.reveal--from-left,
  html.motion-ok .reveal.reveal--from-right,
  html.motion-ok .reveal.reveal--from-below,
  html.motion-ok .flow-card--reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    --reveal-delay: 0ms !important;
  }

  html.motion-ok .hero::before {
    animation: none !important;
  }

  .feature--row {
    transition: none !important;
  }

  .feature--row:hover {
    transform: none !important;
  }

  .use-case-card {
    transition: none !important;
  }

  .use-case-card:hover {
    transform: none !important;
  }

  .template-card {
    transition: none !important;
  }

  .template-card:hover {
    transform: none !important;
  }

  .template-card:hover .template-card__preview {
    transform: none !important;
  }
}

/* Template gallery */
.template-gallery {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg-elevated) 45%, var(--bg) 100%);
  border-block: 1px solid var(--line-faint);
}

.section-head--templates {
  max-width: 40rem;
}

.template-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.1rem, 2.2vw, 1.5rem);
  margin-top: 0.5rem;
  align-items: stretch;
  max-width: 960px;
  margin-inline: auto;
}

@media (min-width: 701px) and (max-width: 999px) {
  .template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .template-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.template-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  border-radius: var(--ui-radius-card);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--ui-card-shadow);
  cursor: pointer;
  transition: transform var(--ui-transition), box-shadow var(--ui-transition), border-color var(--ui-transition);
  outline: none;
}

.template-card__link {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  height: 100%;
  padding: 0.85rem 0.85rem 1rem;
  text-decoration: none;
  color: inherit;
  border-radius: inherit;
  outline: none;
}

.template-card:focus-within {
  box-shadow: var(--shadow-md), 0 0 0 2px rgba(79, 70, 229, 0.35);
}

.template-card:hover {
  transform: var(--ui-card-lift);
  box-shadow: var(--ui-card-shadow-hover);
  border-color: var(--ui-border-hover);
}

.template-card__chrome {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-subtle);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.template-card__preview {
  aspect-ratio: 4 / 5;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out);
}

.template-card:hover .template-card__preview {
  transform: translateY(-1px);
}

.template-card__preview::after {
  content: "";
  position: absolute;
  inset: 12% 10% auto;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 0.9;
}

.template-card__preview--1 {
  background: linear-gradient(145deg, #e0e7ff, #c7d2fe 40%, #a5b4fc);
}

.template-card__preview--2 {
  background: linear-gradient(160deg, #ede9fe, #ddd6fe 45%, #c4b5fd);
}

.template-card__preview--3 {
  background: linear-gradient(180deg, #f1f5f9, #cbd5e1 50%, #94a3b8);
}

.template-card__preview--4 {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8 40%, #f472b6);
}

.template-card__preview--5 {
  background: linear-gradient(145deg, #1e1b4b, #312e81 50%, #4338ca);
}

.template-card__preview--6 {
  background: linear-gradient(135deg, #ecfdf5, #a7f3d0 45%, #34d399);
}

.template-card__preview--7 {
  background: linear-gradient(180deg, #fff, #f1f5f9 55%, #e2e8f0);
}

.template-card__preview--8 {
  background: linear-gradient(145deg, #dbeafe, #93c5fd 50%, #3b82f6);
}

.template-card__preview--9 {
  background: linear-gradient(160deg, #fef3c7, #fcd34d 40%, #f59e0b);
}

.template-card__preview--10 {
  background: linear-gradient(180deg, #fafafa, #e5e5e5 60%, #a3a3a3);
}

.template-card__name {
  margin: 0;
  padding: 0 0.15rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.template-card__tagline {
  margin: 0.1rem 0 0;
  padding: 0 0.15rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f46e5;
  line-height: 1.35;
}

.template-gallery button.template-card__link {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.template-gallery button.template-card__link:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.45);
  outline-offset: 3px;
  border-radius: inherit;
}

.template-gallery .template-card__cta {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: 100%;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fafafa;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 45%, #4338ca 100%);
  box-shadow: 0 8px 20px -6px rgba(79, 70, 229, 0.45);
  pointer-events: none;
}

.template-gallery .template-card--teal .template-card__cta {
  background: linear-gradient(135deg, #2dd4bf 0%, #0099ae 45%, #007a8b 100%);
  box-shadow: 0 8px 20px -6px rgba(0, 153, 174, 0.35);
}

.template-gallery .template-card--teal .template-card__tagline {
  color: #007a8b;
}

.template-card__preview--biz-corporate {
  background-color: #000;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(227, 28, 28, 0.55) 0%, transparent 42%),
    radial-gradient(circle at 85% 85%, rgba(227, 28, 28, 0.38) 0%, transparent 45%),
    linear-gradient(180deg, #0a0a0a, #000);
}

.template-card__preview--biz-modern {
  background: linear-gradient(145deg, #0f172a 0%, #111827 48%, #1e1b4b 100%);
}

.template-card__preview--biz-minimal {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #eef2ff 100%);
}

.template-card__preview--biz-minimal::after {
  background: rgba(15, 23, 42, 0.12);
  opacity: 0.55;
}

.template-card__preview--biz-corporate::after,
.template-card__preview--biz-modern::after {
  opacity: 0.55;
}

/* Template card previews (home gallery) — flat card, no phone chrome */
.template-card__chrome--preview {
  background: transparent;
  border: 0;
  padding: 0;
  overflow: visible;
}

.template-card:hover .template-card__mock {
  transform: translateY(-4px);
}

.template-card__mock {
  position: relative;
  width: 100%;
  max-width: min(280px, 100%);
  min-width: 0;
  margin-inline: auto;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 10 / 19;
  background: #0f172a;
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(15, 23, 42, 0.1);
  transition: transform 0.45s var(--ease-out);
}

/* Marketing template thumbnails (index + templates chooser) */
.template-card__mock .template-card__thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 420px) {
  .template-card__mock {
    max-width: 260px;
    min-width: 0;
  }
}

.biz-mock {
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
  height: 100%;
  min-height: 100%;
  padding: 0.62rem 0.58rem 0;
  box-sizing: border-box;
  text-align: left;
}

.biz-mock__head {
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.biz-mock__logo {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}

.biz-mock__brand {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.biz-mock__brand-line {
  display: block;
  height: 4px;
  border-radius: 3px;
  width: 84%;
}

.biz-mock__brand-line--short {
  width: 52%;
}

.biz-mock__person {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  margin-top: 0.08rem;
}

.biz-mock__avatar {
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.4), rgba(148, 163, 184, 0.12));
}

.biz-mock__who {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.biz-mock__nm {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.biz-mock__job {
  display: block;
  font-size: 0.5rem;
  font-weight: 600;
  opacity: 0.88;
  line-height: 1.2;
}

.biz-mock__chips {
  display: flex;
  flex-direction: column;
  gap: 0.26rem;
  margin-top: 0.05rem;
}

.biz-mock__chip {
  display: block;
  height: 0.68rem;
  border-radius: 6px;
  width: 100%;
}

.biz-mock__dots {
  display: flex;
  gap: 0.26rem;
  margin-top: 0.12rem;
}

.biz-mock__dots span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.biz-mock__footer-art {
  margin-top: auto;
  flex: 1 1 40%;
  min-height: 3rem;
  border-radius: 10px 10px 0 0;
  margin-inline: -0.58rem;
}

.biz-mock--corporate {
  background: linear-gradient(180deg, #0a0a0a 0%, #171717 40%, #0a0a0a 100%);
  color: #fff;
}

.biz-mock--corporate .biz-mock__logo {
  border: 2px solid #e31c1c;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(227, 28, 28, 0.28);
  background: radial-gradient(circle at 32% 28%, #fecdd3 0%, #dc2626 55%, #7f1d1d 100%);
}

.biz-mock--corporate .biz-mock__brand-line {
  background: rgba(255, 255, 255, 0.16);
}

.biz-mock--corporate .biz-mock__nm {
  color: #fecaca;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.biz-mock--corporate .biz-mock__job {
  color: rgba(255, 255, 255, 0.92);
}

.biz-mock--corporate .biz-mock__chip {
  background: linear-gradient(90deg, #fafaf9, #e7e5e4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

.biz-mock--corporate .biz-mock__dots span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.biz-mock--corporate .biz-mock__footer-art {
  background:
    radial-gradient(120% 85% at 18% 100%, rgba(254, 202, 202, 0.14) 0%, transparent 52%),
    radial-gradient(90% 65% at 92% 18%, rgba(248, 113, 113, 0.16) 0%, transparent 48%),
    repeating-linear-gradient(-16deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 8px),
    linear-gradient(180deg, #111 0%, #030303 100%);
}

.biz-mock--modern {
  background: linear-gradient(188deg, #0f172a 0%, #111827 45%, #0b1024 100%);
  color: #e2e8f0;
}

.biz-mock--modern .biz-mock__logo {
  border-radius: 8px;
  border: 1px solid rgba(34, 211, 238, 0.5);
  background: linear-gradient(135deg, #0e7490, #0f766e 48%, #0f172a);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.22);
}

.biz-mock--modern .biz-mock__brand-line {
  background: rgba(148, 163, 184, 0.32);
}

.biz-mock--modern .biz-mock__nm {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #f8fafc;
}

.biz-mock--modern .biz-mock__job {
  color: rgba(226, 232, 240, 0.72);
}

.biz-mock--modern .biz-mock__chip {
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.biz-mock--modern .biz-mock__dots span {
  background: rgba(52, 211, 153, 0.18);
  border: 1px solid rgba(52, 211, 153, 0.32);
}

.biz-mock--modern .biz-mock__footer-art {
  background:
    linear-gradient(155deg, rgba(14, 116, 144, 0.38) 0%, transparent 42%),
    conic-gradient(from 200deg at 72% 115%, rgba(52, 211, 153, 0.14), transparent 38%, rgba(99, 102, 241, 0.16)),
    linear-gradient(180deg, #0f172a, #020617);
}

.biz-mock--minimal {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 52%, #eef2ff 100%);
  color: #0f172a;
}

.biz-mock--minimal .biz-mock__logo {
  border-radius: 8px;
  border: 1px solid rgba(249, 115, 22, 0.4);
  background: linear-gradient(135deg, #fdba74, #fb923c 42%, #ea580c);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.22);
}

.biz-mock--minimal .biz-mock__brand-line {
  background: rgba(15, 23, 42, 0.12);
}

.biz-mock--minimal .biz-mock__nm {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #9a3412;
}

.biz-mock--minimal .biz-mock__job {
  color: #64748b;
}

.biz-mock--minimal .biz-mock__chip {
  background: linear-gradient(90deg, #c2410c, #9a3412);
  box-shadow: 0 2px 8px rgba(154, 52, 18, 0.28);
}

.biz-mock--minimal .biz-mock__dots span {
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.28);
}

.biz-mock--minimal .biz-mock__footer-art {
  background:
    radial-gradient(110% 80% at 22% 0%, rgba(251, 191, 36, 0.28) 0%, transparent 52%),
    radial-gradient(95% 70% at 88% 8%, rgba(244, 114, 182, 0.2) 0%, transparent 48%),
    linear-gradient(180deg, #fff7ed 0%, #fed7aa 38%, #fb923c 92%);
}

.biz-mock--teal {
  background: linear-gradient(90deg, #0099ae 0%, #0099ae 11%, #ffffff 11%);
  color: #0f172a;
}

.biz-mock--teal .biz-mock__logo {
  border-radius: 0;
  border: none;
  width: 1.65rem;
  height: 1.85rem;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 72%, 0% 100%);
  background: linear-gradient(160deg, #22d3ee, #0099ae 55%, #007a8b);
  box-shadow: 0 2px 8px rgba(0, 122, 139, 0.35);
}

.biz-mock--teal .biz-mock__brand-line {
  background: rgba(0, 153, 174, 0.35);
}

.biz-mock--teal .biz-mock__nm {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.62rem;
  color: #0f172a;
}

.biz-mock--teal .biz-mock__job {
  color: #64748b;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.biz-mock--teal .biz-mock__chip {
  border-radius: 999px;
  border: 1px solid rgba(0, 153, 174, 0.45);
  background: rgba(255, 255, 255, 0.95);
}

.biz-mock--teal .biz-mock__dots span {
  background: rgba(0, 153, 174, 0.2);
  border: 1px solid rgba(0, 153, 174, 0.35);
}

.biz-mock--teal .biz-mock__footer-art {
  background:
    linear-gradient(180deg, rgba(241, 245, 249, 0.95) 0%, #fff 100%),
    repeating-linear-gradient(
      -18deg,
      rgba(0, 153, 174, 0.06) 0 1px,
      transparent 1px 7px
    );
}

/* templates.html marketing preview — Studio Teal (template-01) */
.biz-mock--template-01 {
  background: linear-gradient(90deg, #007a8b 0%, #0099ae 6%, #ffffff 6%);
  color: #0f172a;
}

.biz-mock--template-01 .biz-mock__logo {
  border-radius: 6px;
  border: 1px solid rgba(0, 153, 174, 0.35);
  background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

.biz-mock--template-01 .biz-mock__brand-line {
  background: rgba(0, 153, 174, 0.22);
}

.biz-mock--template-01 .biz-mock__nm {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.biz-mock--template-01 .biz-mock__job {
  color: #64748b;
  font-weight: 600;
}

.biz-mock--template-01 .biz-mock__chip {
  background: rgba(0, 153, 174, 0.12);
  border: 1px solid rgba(0, 153, 174, 0.28);
}

.biz-mock--template-01 .biz-mock__dots span {
  background: rgba(0, 153, 174, 0.15);
  border: 1px solid rgba(0, 153, 174, 0.3);
}

.biz-mock--template-01 .biz-mock__footer-art {
  background:
    linear-gradient(165deg, rgba(241, 245, 249, 0.9) 0%, #f8fafc 100%),
    repeating-linear-gradient(-12deg, rgba(148, 163, 184, 0.08) 0 1px, transparent 1px 7px);
}

@media (max-width: 700px) {
  .template-grid {
    max-width: 360px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .template-card,
  .template-card__preview,
  .template-card__mock {
    transition: none;
  }

  .template-card:hover,
  .template-card:hover .template-card__preview,
  .template-card:hover .template-card__mock {
    transform: none;
  }
}
