:root {
  --bg: #f7f8fb;
  --bg-elevated: #ffffff;
  --ink: #0B1220;
  --ink-soft: #1c2a40;
  --muted: #5c6b82;
  --primary-purple: #B53DFF;
  --royal-purple: #7A3EFF;
  --indigo: #4F57FF;
  --brand-blue: #2196FF;
  --accent-blue: #2C8FFF;
  --light-blue: #4A82FF;
  --divider-purple: #9C45FF;
  --dark-navy: #0B1220;
  --brand: #7A3EFF;
  --brand-mid: #4F57FF;
  --brand-bright: #2196FF;
  --accent: #B53DFF;
  --accent-bright: #9C45FF;
  --brand-gradient: linear-gradient(135deg, var(--primary-purple) 0%, var(--royal-purple) 35%, var(--indigo) 70%, var(--brand-blue) 100%);
  --brand-gradient-soft: linear-gradient(135deg, var(--royal-purple) 0%, var(--indigo) 55%, var(--brand-blue) 100%);
  --line: rgba(11, 18, 32, 0.09);
  --line-strong: rgba(11, 18, 32, 0.16);
  --success: #0d8f63;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(11, 18, 32, 0.1);
  --shadow-sm: 0 8px 24px rgba(11, 18, 32, 0.06);
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --display: "Sora", "Source Sans 3", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1180px;
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(70% 50% at 100% 0%, rgba(79, 87, 255, 0.07), transparent 55%),
    radial-gradient(50% 40% at 0% 20%, rgba(181, 61, 255, 0.05), transparent 50%),
    var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-mid); text-decoration-thickness: 1px; text-underline-offset: 0.2em; transition: color 0.2s ease; }
a:hover { color: var(--brand); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
}

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.main-content:focus { outline: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

.grad-text {
  background: linear-gradient(105deg, #FFFFFF 0%, #E8C4FF 35%, #B53DFF 55%, #4A82FF 75%, #FFFFFF 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlow 5s ease-in-out infinite;
}

.grad-text-ink {
  background: linear-gradient(105deg, var(--primary-purple) 0%, var(--indigo) 40%, var(--brand-blue) 70%, var(--primary-purple) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlow 6s ease-in-out infinite;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--primary-purple), var(--royal-purple), var(--indigo), var(--brand-blue));
  background-size: 200% 100%;
  animation: scrollBarFlow 3s linear infinite;
  pointer-events: none;
  transform-origin: left center;
  box-shadow:
    0 0 12px rgba(181, 61, 255, 0.55),
    0 0 24px rgba(33, 150, 255, 0.28);
  transition: width 0.12s linear;
}

.scroll-progress::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(181, 61, 255, 0.35),
    0 0 16px rgba(33, 150, 255, 0.85),
    0 0 28px rgba(181, 61, 255, 0.55);
  animation: scrollTipPulse 1.4s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.scroll-progress.is-active::after { opacity: 1; }

@keyframes scrollBarFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes scrollTipPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.35); }
}

/* Native scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: #7A3EFF #e8ecf5;
}

html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #eef1f8, #e4e9f4);
}

html::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
  background-image: linear-gradient(180deg, #B53DFF, #7A3EFF, #2196FF);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

html::-webkit-scrollbar-thumb:hover {
  background-image: linear-gradient(180deg, #C65CFF, #8B55FF, #45A6FF);
}

/* Custom cursor */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  mix-blend-mode: normal;
  will-change: transform;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--brand-gradient);
  box-shadow: 0 0 12px rgba(181, 61, 255, 0.65);
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, margin 0.2s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1.5px solid rgba(122, 62, 255, 0.55);
  background: rgba(181, 61, 255, 0.06);
  transition: opacity 0.2s ease, width 0.25s var(--ease), height 0.25s var(--ease), margin 0.25s var(--ease), border-color 0.25s, background 0.25s;
}

.has-custom-cursor,
.has-custom-cursor * {
  cursor: none !important;
}

.has-custom-cursor .cursor-dot,
.has-custom-cursor .cursor-ring {
  opacity: 1;
}

.has-custom-cursor.is-cursor-hover .cursor-dot {
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
}

.has-custom-cursor.is-cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-color: rgba(33, 150, 255, 0.7);
  background: rgba(33, 150, 255, 0.1);
}

.has-custom-cursor.is-cursor-down .cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
}

.has-custom-cursor.is-cursor-down .cursor-ring {
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
}

.has-custom-cursor.is-cursor-hidden .cursor-dot,
.has-custom-cursor.is-cursor-hidden .cursor-ring {
  opacity: 0;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 248, 251, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.brand img { height: 54px; width: auto; transition: opacity 0.2s; }
.brand:hover img { opacity: 0.85; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.nav-list a:hover,
.nav-list a.is-active { color: var(--brand); }

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.15rem;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav-list a:hover::after,
.nav-list a.is-active::after { transform: scaleX(1); }

.nav-actions { display: flex; gap: 0.55rem; align-items: center; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.25s var(--ease);
}
.nav-toggle span:first-of-type { top: 16px; }
.nav-toggle span:last-of-type { top: 24px; }
.nav-toggle[aria-expanded="true"] span:first-of-type { top: 20px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-of-type { top: 20px; transform: rotate(-45deg); }

/* ── Buttons ── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.3rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s, color 0.25s;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.3) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brand-gradient);
  background-size: 200% 200%;
  animation: gradientShift 7s ease infinite;
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(122, 62, 255, 0.32);
}
.btn-primary:hover {
  color: #FFFFFF;
  background-position: 100% 50%;
  box-shadow: 0 14px 34px rgba(33, 150, 255, 0.38);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.18); color: #fff; }

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  border-color: rgba(79, 87, 255, 0.3);
  color: var(--brand);
  background: linear-gradient(135deg, rgba(181, 61, 255, 0.06), rgba(33, 150, 255, 0.08));
}

.btn-dark {
  background: var(--brand-gradient-soft);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: #fff;
  box-shadow: 0 10px 28px rgba(122, 62, 255, 0.28);
}
.btn-dark:hover {
  color: #fff;
  background-position: 100% 50%;
  box-shadow: 0 14px 34px rgba(79, 87, 255, 0.36);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cta-note {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 60% at 90% -10%, rgba(181, 61, 255, 0.4), transparent 55%),
    radial-gradient(ellipse 50% 50% at 5% 80%, rgba(33, 150, 255, 0.25), transparent 50%),
    linear-gradient(160deg, #0B1220 0%, #1A1240 35%, #7A3EFF 65%, #2196FF 100%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-canvas span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-canvas span:nth-child(1) {
  width: 420px; height: 420px;
  top: -8%; right: 5%;
  background: rgba(181, 61, 255, 0.35);
}
.hero-canvas span:nth-child(2) {
  width: 280px; height: 280px;
  bottom: 15%; left: 5%;
  background: rgba(74, 130, 255, 0.25);
  animation-delay: -4s;
}
.hero-canvas span:nth-child(3) {
  width: 200px; height: 200px;
  top: 40%; left: 40%;
  background: rgba(33, 150, 255, 0.2);
  animation-delay: -7s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 2.5rem;
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.25rem 0 3rem;
}

.hero-copy { max-width: 36rem; }

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

.hero-brand img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(181, 61, 255, 0.4));
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6.5vw, 4.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #fff;
  max-width: 10ch;
}

.hero-lead {
  margin: 1.35rem 0 0;
  font-size: 1.125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34ch;
  font-weight: 400;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 580px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% -10% -14% 8%;
  background: linear-gradient(135deg, rgba(181, 61, 255, 0.35), rgba(33, 150, 255, 0.22));
  filter: blur(48px);
  border-radius: 40px;
  z-index: -1;
}

.device-frame {
  position: relative;
  z-index: 1;
  margin: 1.85rem 2.85rem 2.35rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.device-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  background: rgba(6, 13, 26, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.device-chrome i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  display: block;
}

.device-chrome i:nth-child(1) { background: #ff5f57; }
.device-chrome i:nth-child(2) { background: #febc2e; }
.device-chrome i:nth-child(3) { background: #28c840; }

.device-chrome span {
  margin-left: 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--display);
}

.hero-visual img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

/* Magic QR interactive hero demo */
.magic-qr-demo {
  position: relative;
  min-height: 420px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  color: var(--ink);
  overflow: hidden;
}

.mq-screen {
  display: none;
  padding: 1.15rem 1.15rem 1.25rem;
  min-height: 420px;
  animation: mqIn 0.35s var(--ease);
}

.mq-screen.is-active {
  display: flex;
  flex-direction: column;
}

@keyframes mqIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.mq-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.mq-logo {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: var(--brand-gradient-soft);
  color: #fff;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
}

.mq-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  line-height: 1.2;
}

.mq-brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.mq-qr-stage,
.mq-loading,
.mq-redirect,
.mq-done {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mq-qr {
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: #0B1220;
  box-shadow: 0 16px 36px rgba(11, 18, 32, 0.22);
  overflow: hidden;
}

.mq-qr span {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 3px solid #fff;
}

.mq-qr span:nth-child(1) { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.mq-qr span:nth-child(2) { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.mq-qr span:nth-child(3) { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.mq-qr span:nth-child(4) { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }

.mq-qr::after {
  content: "";
  position: absolute;
  inset: 34px;
  background:
    linear-gradient(#fff 0 0) 0 0 / 12px 12px,
    linear-gradient(#fff 0 0) 18px 0 / 12px 12px,
    linear-gradient(#fff 0 0) 0 18px / 12px 12px,
    linear-gradient(#fff 0 0) 36px 18px / 12px 12px,
    linear-gradient(#fff 0 0) 18px 36px / 24px 12px,
    linear-gradient(#fff 0 0) 0 36px / 12px 12px;
  background-repeat: no-repeat;
  opacity: 0.92;
}

.mq-scan-line {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #34d399, transparent);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.8);
  animation: mqScan 1.6s ease-in-out infinite;
  z-index: 2;
}

@keyframes mqScan {
  0%, 100% { top: 18%; }
  50% { top: 78%; }
}

.mq-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-mid);
}

.mq-title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.mq-sub {
  margin: 0.45rem 0 0;
  max-width: 28ch;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.mq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.1rem;
  padding: 0.7rem 1.15rem;
  border: none;
  border-radius: 999px;
  background: var(--brand-gradient-soft);
  color: #fff;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(122, 62, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

.mq-btn.is-active,
.mq-btn.is-ready {
  opacity: 1;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 14px 28px rgba(79, 87, 255, 0.34);
}

.mq-btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.mq-btn-ghost.is-active {
  border-color: rgba(79, 87, 255, 0.35);
  color: var(--brand);
  box-shadow: 0 8px 18px rgba(79, 87, 255, 0.12);
}

.mq-spinner {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 3px solid rgba(122, 62, 255, 0.18);
  border-top-color: var(--brand);
  animation: mqSpin 0.8s linear infinite;
}

@keyframes mqSpin {
  to { transform: rotate(360deg); }
}

.mq-reviews {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.9rem;
  overflow: auto;
  max-height: 280px;
  padding-right: 0.15rem;
}

.mq-review {
  display: grid;
  gap: 0.35rem;
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: left;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  font: inherit;
  color: inherit;
  opacity: 0.72;
}

.mq-review.is-active {
  opacity: 1;
  border-color: rgba(79, 87, 255, 0.4);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 28px rgba(79, 87, 255, 0.14);
}

.mq-review.is-selected {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.16);
}

.mq-review.is-selected em {
  color: #059669;
}

.mq-review-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.mq-review span:last-of-type {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.mq-review em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-mid);
}

.mq-check {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.35);
}

.mq-countdown {
  margin-top: 0.85rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(122, 62, 255, 0.1);
  color: var(--brand);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}

.mq-next {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.mq-next li + li { margin-top: 0.25rem; }

.mq-google-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.mq-g-mark {
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: #4285f4;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
}

.mq-google-bar strong {
  font-family: var(--display);
  font-size: 0.95rem;
}

.mq-google-biz {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.mq-google-biz strong {
  font-family: var(--display);
  font-size: 0.92rem;
}

.mq-google-stars {
  color: #f59e0b;
  letter-spacing: 0.06em;
}

.mq-google-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.mq-google-text {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.45;
  resize: none;
  min-height: 7.5rem;
}

.mq-google-text:focus {
  outline: 2px solid rgba(66, 133, 244, 0.35);
  outline-offset: 1px;
}

.mq-google-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.85rem;
}

.mq-google-actions .mq-btn {
  margin-top: 0;
  width: 100%;
}

.mq-toast {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 5;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.92);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  animation: mqIn 0.25s var(--ease);
}

@media (max-width: 960px) {
  .magic-qr-demo,
  .mq-screen {
    min-height: 380px;
  }
}

.hero-copy > * {
  opacity: 0;
  animation: riseIn 0.9s var(--ease-out) forwards;
}
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.18s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.3s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.42s; }

.hero-visual {
  opacity: 0;
  animation: riseIn 1s var(--ease-out) 0.25s forwards, floatSoft 7s ease-in-out 1.4s infinite;
  will-change: transform;
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-sparkles i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(181, 61, 255, 0.8), 0 0 24px rgba(33, 150, 255, 0.45);
  opacity: 0;
  animation: sparkle 4.5s ease-in-out infinite;
}

.hero-sparkles i:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.hero-sparkles i:nth-child(2) { top: 32%; left: 78%; width: 4px; height: 4px; animation-delay: 0.8s; }
.hero-sparkles i:nth-child(3) { top: 62%; left: 22%; width: 5px; height: 5px; animation-delay: 1.6s; }
.hero-sparkles i:nth-child(4) { top: 48%; left: 88%; animation-delay: 2.2s; }
.hero-sparkles i:nth-child(5) { top: 78%; left: 58%; width: 3px; height: 3px; animation-delay: 3s; }
.hero-sparkles i:nth-child(6) { top: 14%; left: 48%; width: 4px; height: 4px; animation-delay: 1.1s; }

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.4) translateY(0); }
  35% { opacity: 1; transform: scale(1) translateY(-10px); }
  70% { opacity: 0.35; transform: scale(0.7) translateY(-18px); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

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

/* ── Metrics bar ── */
.metrics {
  position: relative;
  z-index: 3;
  margin-top: -2rem;
  margin-bottom: 0;
}

.metrics-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.metric {
  position: relative;
  background: var(--bg-elevated);
  padding: 1.65rem 1.85rem;
  transition: background 0.3s;
}
.metric:hover { background: #fafbfd; }

.metric strong {
  display: block;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(105deg, var(--brand), var(--brand-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.35s var(--ease);
}

.metric span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── Marquee ── */
.marquee-band {
  padding: 1.5rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.marquee-label {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: marquee 40s linear infinite;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }

.marquee-track li {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.marquee-track li:hover { opacity: 1; color: var(--brand); }

.marquee-track li::before {
  content: "●";
  margin-right: 2.5rem;
  color: var(--accent);
  font-size: 0.45rem;
  vertical-align: middle;
}

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

/* ── Sections ── */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt,
.section-muted {
  background:
    linear-gradient(180deg, rgba(79, 87, 255, 0.04), transparent 40%),
    #eef1f7;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 3rem;
}

.section-head h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-mid);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-gradient);
  box-shadow: 0 0 0 0 rgba(181, 61, 255, 0.45);
  animation: eyebrowPulse 2.4s ease-out infinite;
}
@keyframes eyebrowPulse {
  0% { box-shadow: 0 0 0 0 rgba(181, 61, 255, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(181, 61, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(181, 61, 255, 0); }
}

/* ── Feature grid ── */
.feature-grid,
.card-grid,
.testimonial-grid {
  display: grid;
  gap: 1.15rem;
}

.feature-grid { grid-template-columns: repeat(3, 1fr); }
.card-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.price-grid { display: grid; grid-template-columns: 1fr; gap: 1.15rem; }

.feature-card,
.content-card,
.quote-card,
.price-card,
.step-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}

.feature-card::after,
.content-card::after,
.step-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-mid), var(--accent));
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.35s, transform 0.4s var(--ease);
}

.feature-card:hover::after,
.content-card:hover::after,
.step-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.feature-card::before,
.content-card::before,
.quote-card::before,
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(180px 100px at var(--mx, 50%) var(--my, 0%), rgba(79, 87, 255, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.feature-card:hover,
.content-card:hover,
.quote-card:hover,
.step-card:hover,
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(79, 87, 255, 0.18);
}

.feature-card:hover::before,
.content-card:hover::before,
.quote-card:hover::before,
.step-card:hover::before { opacity: 1; }

.feature-icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(122, 62, 255, 0.1), rgba(181, 61, 255, 0.12));
  color: var(--brand);
  transition: transform 0.45s var(--ease), box-shadow 0.45s, background 0.35s;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 10px 24px rgba(122, 62, 255, 0.18);
  background: linear-gradient(145deg, rgba(181, 61, 255, 0.18), rgba(33, 150, 255, 0.16));
}
.feature-icon svg { display: block; }

.feature-card h2,
.feature-card h3,
.content-card h3,
.price-card h2,
.price-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.feature-card p,
.content-card p,
.quote-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.975rem;
}

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 2.35rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 87, 255, 0.22), transparent);
  pointer-events: none;
}

.step-card { padding: 1.85rem; z-index: 1; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.1rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand);
  background: linear-gradient(145deg, rgba(79, 87, 255, 0.1), rgba(181, 61, 255, 0.1));
  border: 1px solid rgba(79, 87, 255, 0.12);
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.975rem;
}

/* ── Quotes ── */
.quote-card {
  display: flex;
  flex-direction: column;
  padding-top: 1.85rem;
}

.quote-card::after {
  content: "“";
  position: absolute;
  top: 0.55rem;
  right: 1.1rem;
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(79, 87, 255, 0.1);
  pointer-events: none;
}

.quote-stars {
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.quote-card p {
  flex: 1;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.quote-card footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.quote-avatar {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid !important;
  place-items: center;
  font-family: var(--display);
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: linear-gradient(145deg, var(--brand), var(--brand-bright));
  letter-spacing: -0.02em;
}

.quote-meta { min-width: 0; }
.quote-card footer strong {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--ink);
}
.quote-card footer span {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
}
.quote-project {
  display: inline-block !important;
  margin-top: 0.35rem;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: var(--brand-mid) !important;
  letter-spacing: 0.02em;
}

/* ── Page hero (inner) ── */
.page-hero {
  position: relative;
  padding: 4.25rem 0 2rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(79, 87, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 35% 60% at 0% 100%, rgba(181, 61, 255, 0.06), transparent 50%),
    linear-gradient(180deg, #fff, transparent);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 87, 255, 0.25), transparent);
  pointer-events: none;
}

.page-hero h1 {
  margin: 0.45rem 0 0.85rem;
  font-size: clamp(2.2rem, 4.2vw, 3.25rem);
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

/* ── Breadcrumbs ── */
.breadcrumbs { margin-bottom: 1rem; font-size: 0.875rem; }
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  list-style: none; margin: 0; padding: 0;
  color: var(--muted);
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  opacity: 0.45;
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ── Prose ── */
.prose { color: var(--ink); }
.prose p { margin: 0 0 1rem; color: var(--muted); }
.prose h2, .prose h3 { margin-top: 1.75rem; }
.prose ul { padding-left: 1.2rem; color: var(--muted); }

/* ── Split ── */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.media-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease);
}
.media-panel:hover { transform: translateY(-4px); }
.media-panel img { width: 100%; }

.checklist { list-style: none; margin: 1.15rem 0 0; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.7rem;
  color: var(--muted);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5rem;
  width: 0.55rem; height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-mid), var(--accent));
}

/* ── Pricing ── */
.pricing-single { max-width: 680px; }
.price-card-single { padding: 2.25rem; }
.price-card.highlighted {
  border-color: rgba(79, 87, 255, 0.25);
  background:
    linear-gradient(180deg, rgba(79, 87, 255, 0.05), transparent 40%),
    #fff;
  box-shadow: var(--shadow);
}

.price-badge {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  background: rgba(181, 61, 255, 0.12);
  color: #6B1FB8;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card .amount {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.15rem;
}

.price-note { margin: 0.15rem 0 1.25rem; color: var(--muted); font-size: 0.9rem; }

.price-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.price-features li {
  position: relative;
  padding: 0.75rem 0.9rem 0.75rem 2.1rem;
  border-radius: 10px;
  background: rgba(122, 62, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0.85rem; top: 1.05rem;
  width: 0.45rem; height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-mid), var(--accent));
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  padding: 1.2rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

.stat span { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; }

/* ── FAQ ── */
.faq-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
}

.toc {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.toc h2 { margin: 0 0 0.75rem; font-size: 0.95rem; }
.toc ol { margin: 0; padding-left: 1.1rem; }
.toc a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.toc a:hover { color: var(--brand); }

.faq-list { display: grid; gap: 0.7rem; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.975rem;
  letter-spacing: -0.015em;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brand-mid);
  font-weight: 400;
}
.faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: rgba(79, 87, 255, 0.2);
  transform: translateY(-1px);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  animation: fadeUp 0.3s var(--ease);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

/* ── Forms ── */
.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 0.35rem; }
.form-row label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
}
.form-row label .required {
  color: var(--accent, #B53DFF);
  font-weight: 700;
  margin-left: 0.15em;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235C6B82' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: rgba(79, 87, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(79, 87, 255, 0.1);
}

.field-error { color: #b42318; font-size: 0.85rem; }
.field-error[hidden] { display: none; }
.form-row .field-error:empty { display: none; }

.form-row input.is-invalid,
.form-row textarea.is-invalid,
.form-row select.is-invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.form-panel .btn:disabled,
.form-panel button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-success {
  padding: 0.95rem 1.05rem;
  border-radius: 10px;
  background: #e6f7f0;
  color: #0b6b4a;
  border: 1px solid #b5e8d2;
  margin-bottom: 1rem;
}

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.map-frame {
  border: 0;
  width: 100%;
  height: 280px;
  border-radius: var(--radius);
  background: #e8edf5;
  box-shadow: var(--shadow-sm);
}

/* ── Blog ── */
.post-list { display: grid; gap: 0.9rem; }
.post-card {
  display: grid;
  gap: 0.4rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.3s;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
  border-color: rgba(79, 87, 255, 0.18);
}
.post-meta { color: var(--muted); font-size: 0.875rem; }
.article h2 { margin-top: 2rem; }
.article p { color: var(--muted); }

/* ── CTA band ── */
.cta-band {
  position: relative;
  margin: 2.5rem 0 0;
  padding: 2.75rem;
  border-radius: var(--radius-lg);
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(181, 61, 255, 0.4), transparent 55%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(33, 150, 255, 0.3), transparent 50%),
    linear-gradient(135deg, #0B1220, #1A1240 40%, #7A3EFF 70%, #2196FF);
  box-shadow: 0 24px 50px rgba(122, 62, 255, 0.25);
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  right: -60px; top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  animation: orbFloat 10s ease-in-out infinite;
}

.cta-band h2,
.cta-band p,
.cta-band .cta-row { position: relative; z-index: 1; }

.cta-band h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 42ch;
}

/* ── Footer ── */
.site-footer {
  position: relative;
  margin-top: 5rem;
  padding: 4rem 0 2rem;
  background:
    radial-gradient(ellipse 50% 60% at 90% 0%, rgba(181, 61, 255, 0.15), transparent 55%),
    linear-gradient(180deg, #0B1220, #0B1220);
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.site-footer .brand img {
  height: 50px;
  width: auto;
  opacity: 0.98;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 32ch;
  font-size: 0.975rem;
}

.footer-heading {
  margin: 0 0 0.9rem;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0;
  font-size: 0.9375rem;
  transition: color 0.2s, transform 0.25s var(--ease);
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.whatsapp-link {
  display: inline-flex;
  margin-top: 0.85rem;
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}
.whatsapp-link:hover { color: var(--accent-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.75rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.7); }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
  filter: blur(4px);
}
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
  filter: blur(4px);
}
.reveal-left.is-visible { opacity: 1; transform: none; filter: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
  filter: blur(4px);
}
.reveal-right.is-visible { opacity: 1; transform: none; filter: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.94) translateY(18px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out), filter 0.85s var(--ease-out);
  filter: blur(4px);
}
.reveal-scale.is-visible { opacity: 1; transform: none; filter: none; }

.feature-grid .feature-card:nth-child(1),
.steps-grid .step-card:nth-child(1),
.testimonial-grid .quote-card:nth-child(1),
.card-grid .content-card:nth-child(1) { transition-delay: 0ms; }
.feature-grid .feature-card:nth-child(2),
.steps-grid .step-card:nth-child(2),
.testimonial-grid .quote-card:nth-child(2),
.card-grid .content-card:nth-child(2) { transition-delay: 80ms; }
.feature-grid .feature-card:nth-child(3),
.steps-grid .step-card:nth-child(3),
.testimonial-grid .quote-card:nth-child(3),
.card-grid .content-card:nth-child(3) { transition-delay: 160ms; }
.feature-grid .feature-card:nth-child(4),
.card-grid .content-card:nth-child(4) { transition-delay: 240ms; }
.feature-grid .feature-card:nth-child(5) { transition-delay: 320ms; }
.feature-grid .feature-card:nth-child(6) { transition-delay: 400ms; }

.stagger > *.reveal,
[data-stagger] > *.reveal {
  transition-delay: calc(var(--stagger-i, 0) * 70ms);
}

.checklist li {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.is-visible .checklist li,
.reveal.is-visible .checklist li {
  opacity: 1;
  transform: none;
}
.is-visible .checklist li:nth-child(1) { transition-delay: 120ms; }
.is-visible .checklist li:nth-child(2) { transition-delay: 200ms; }
.is-visible .checklist li:nth-child(3) { transition-delay: 280ms; }
.is-visible .checklist li:nth-child(4) { transition-delay: 360ms; }

.page-hero .container > * {
  opacity: 0;
  animation: riseIn 0.75s var(--ease-out) forwards;
}
.page-hero .container > *:nth-child(1) { animation-delay: 0.05s; }
.page-hero .container > *:nth-child(2) { animation-delay: 0.12s; }
.page-hero .container > *:nth-child(3) { animation-delay: 0.2s; }
.page-hero .container > *:nth-child(4) { animation-delay: 0.28s; }

.metric:hover strong { transform: scale(1.06); }

.demo-ai-box.is-updating {
  opacity: 0;
  transform: translateY(8px);
}

.btn[data-magnetic] {
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s, color 0.25s;
}

.site-footer.js-animate .footer-brand,
.site-footer.js-animate .footer-links,
.site-footer.js-animate .footer-heading {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.site-footer.js-animate.is-visible .footer-brand,
.site-footer.js-animate.is-visible .footer-heading,
.site-footer.js-animate.is-visible .footer-links {
  opacity: 1;
  transform: none;
}
.site-footer.js-animate.is-visible .footer-brand { transition-delay: 0ms; }
.site-footer.js-animate.is-visible .footer-heading { transition-delay: 80ms; }
.site-footer.js-animate.is-visible .footer-links { transition-delay: 140ms; }

/* ── Page transitions ── */
#main-content {
  transition: opacity 0.28s ease, transform 0.35s var(--ease);
}
#main-content.is-page-leaving {
  opacity: 0;
  transform: translateY(16px) scale(0.992);
}
#main-content.is-page-entering {
  animation: pageIn 0.55s var(--ease-out) both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(20px) scale(0.992); }
  to { opacity: 1; transform: none; }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2rem 0 2.25rem;
  }
  .hero { min-height: auto; }
  .hero h1 { max-width: 12ch; }
  .hero-visual {
    justify-self: stretch;
    animation: riseIn 1s var(--ease-out) 0.2s forwards;
  }
  .device-frame {
    margin: 1.5rem 1.15rem 2rem;
  }
  .float-badge {
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
  }
  .float-badge-2 {
    top: auto;
    bottom: 38%;
  }
  .metrics { margin-top: -1rem; }
  .metrics-inner { grid-template-columns: 1fr; }
  .feature-grid,
  .card-grid,
  .testimonial-grid,
  .stat-row,
  .footer-grid,
  .faq-layout,
  .contact-layout,
  .split,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .toc { position: static; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem 1.25rem 1.35rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(11, 18, 32, 0.1);
  }
  .site-nav.is-open {
    display: flex;
    animation: menuIn 0.28s var(--ease);
  }
  @keyframes menuIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: none; }
  }
  .nav-list { flex-direction: column; }
  .nav-list a::after { display: none; }
  .nav-actions { justify-content: stretch; }
  .nav-actions .btn { flex: 1; }
  .steps-grid::before { display: none; }
  .page-hero h1 { max-width: none; }
}

/* ── Extra polish ── */
::selection {
  background: rgba(79, 87, 255, 0.18);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--brand-bright);
  outline-offset: 3px;
}

.btn:focus-visible { outline-offset: 3px; }

.section-head {
  position: relative;
}

.media-panel {
  border: 1px solid var(--line);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 40%);
  pointer-events: none;
  z-index: 2;
}

.cta-band {
  display: grid;
  gap: 0.25rem;
}

.contact-aside-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-channels h2 {
  font-size: 1.1rem;
  margin: 0 0 0.55rem;
}

.contact-channels {
  margin-bottom: 1rem;
}

.contact-channels .whatsapp-link {
  color: var(--brand);
  margin-top: 0.35rem;
}

.aside-stack {
  display: grid;
  gap: 1rem;
}

/* ── Modern Dynamic Enhancements ── */
.float-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(10, 25, 55, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32), 0 0 20px rgba(33, 150, 255, 0.22);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  --fx: 0px;
  animation: floatBadge 6s ease-in-out infinite;
}

.float-badge-1 {
  top: 0.15rem;
  left: 0;
  animation-delay: 0s;
}

.float-badge-2 {
  top: 42%;
  right: 0;
  animation-delay: 2s;
}

.float-badge-3 {
  bottom: 0.15rem;
  left: 50%;
  --fx: -50%;
  animation-delay: 4s;
}

@keyframes floatBadge {
  0%, 100% { transform: translate(var(--fx), 0) scale(1); }
  50% { transform: translate(var(--fx), -8px) scale(1.025); }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDot 2s infinite;
  display: inline-block;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Card Spotlight Glow */
[data-spotlight] {
  position: relative;
  overflow: hidden;
}

[data-spotlight]::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    500px circle at var(--mx, 50%) var(--my, 50%),
    rgba(33, 150, 255, 0.14),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

[data-spotlight]:hover::before {
  opacity: 1;
}

/* Button Shimmer */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 70%
  );
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.8s var(--ease);
}

.btn-primary:hover::after {
  transform: rotate(30deg) translateY(100%);
}

/* Live Rating Demo Widget */
.rating-demo {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.rating-demo-rate {
  text-align: center;
}

.demo-prompt {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.rating-stars-picker {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.65rem;
}

.star-btn {
  background: none;
  border: none;
  font-size: 2.5rem;
  line-height: 1;
  color: #d1d9e6;
  cursor: pointer;
  padding: 0.1rem 0.28rem;
  transition: transform 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
}

.star-btn.is-active,
.star-btn:hover {
  color: #f59e0b;
  transform: scale(1.12);
  text-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.rating-demo-fork {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.demo-fork {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(11, 18, 32, 0.025);
  text-align: left;
  opacity: 0.55;
  transition: opacity 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.demo-fork span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.demo-fork strong {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.demo-fork.is-active {
  opacity: 1;
  border-color: rgba(79, 87, 255, 0.28);
  background: linear-gradient(145deg, rgba(239, 246, 255, 0.95), rgba(243, 232, 255, 0.55));
  box-shadow: 0 8px 22px rgba(79, 87, 255, 0.1);
}

.rating-demo[data-mode="private"] .demo-fork[data-route="private"].is-active {
  border-color: rgba(251, 146, 60, 0.4);
  background: linear-gradient(145deg, rgba(255, 247, 237, 0.98), rgba(254, 242, 242, 0.7));
  box-shadow: 0 8px 22px rgba(251, 146, 60, 0.1);
}

.demo-fork-divider {
  width: 1px;
  align-self: center;
  height: 2rem;
  background: var(--line-strong);
}

.rating-demo-result {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.demo-result-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
}

.demo-route-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1d4ed8;
  background: rgba(33, 150, 255, 0.12);
}

.rating-demo[data-mode="private"] .demo-route-pill {
  color: #c2410c;
  background: rgba(251, 146, 60, 0.16);
}

.demo-result-meta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.demo-ai-box {
  padding: 1.05rem 1.15rem;
  border-radius: 14px;
  background: rgba(11, 18, 32, 0.03);
  border: 1px solid var(--line);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}

.demo-ai-box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.demo-insight {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 560px) {
  .rating-demo {
    padding: 1.35rem 1.15rem;
  }

  .rating-demo-fork {
    grid-template-columns: 1fr;
  }

  .demo-fork-divider {
    width: 2.5rem;
    height: 1px;
    justify-self: center;
  }

  .star-btn {
    font-size: 2.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .hero-copy > *, .hero-visual, .page-hero .container > *,
  .checklist li, .site-footer .footer-brand,
  .site-footer .footer-links, .site-footer .footer-heading,
  .hero-sparkles i {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
  .has-custom-cursor,
  .has-custom-cursor * {
    cursor: auto !important;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
  .has-custom-cursor,
  .has-custom-cursor * {
    cursor: auto !important;
  }
}
