:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --text: #fafafa;
  --text-2: #b5b5b0;
  --text-3: #8a8a82;
  --text-4: #5a5a55;
  --accent: #ff5f6d;
  --accent-2: #ffc371;
  --hot: #ff3b6b;
  --green: #34d399;
  --blue: #60a5fa;
  --purple: #a78bfa;
}
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: "Heebo", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  direction: rtl;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ======= Nav ======= */
.nav {
  position: fixed; top: 0; right: 0; left: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; gap: 28px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 15px;
  letter-spacing: -0.01em;
}
.logo img { height: 32px; width: auto; display: block; }
.logo-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--hot) 0%, var(--accent-2) 100%);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 15px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .name { font-weight: 700; }
.logo-text .by { font-size: 10.5px; color: var(--text-3); font-weight: 500; }
.logo-text .by b { color: var(--text-2); font-weight: 600; }
.nav-actions { margin-inline-start: auto; display: flex; gap: 8px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-size: 14px; font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  transition: all .18s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.24); }
.btn-hot {
  background: linear-gradient(135deg, var(--hot) 0%, var(--accent) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 59, 107, 0.30);
}
.btn-hot:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(255, 59, 107, 0.40); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-ghost { background: transparent; border-color: transparent; color: var(--text-2); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); color: var(--text); border-color: transparent; }

/* ======= Hero ======= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 140px 32px 80px;
  overflow: hidden;
  text-align: center;
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(255, 59, 107, 0.18) 0%, transparent 60%),
    radial-gradient(40% 40% at 80% 70%, rgba(255, 195, 113, 0.10) 0%, transparent 60%),
    radial-gradient(40% 40% at 20% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  color: var(--text-2);
  margin-bottom: 32px;
}
.eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 28px;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--hot) 0%, var(--accent) 40%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero-marquee {
  position: relative; z-index: 2;
  margin-top: 80px;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 56px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 14px; color: var(--text-3);
  font-weight: 500;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item { display: inline-flex; align-items: center; gap: 8px; }
.marquee-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-4); }

/* ======= Section base ======= */
section { padding: 100px 32px; position: relative; }
.container { max-width: 1280px; margin: 0 auto; }
.kicker {
  display: inline-block;
  font-size: 12.5px; font-weight: 700;
  color: var(--hot);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0;
}
.center { text-align: center; }

/* ======= Workflow Timeline ======= */
.workflow {
  margin-top: 80px;
  position: relative;
}
.workflow-track {
  position: absolute;
  top: 50%; right: 6%; left: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--hot) 0%, var(--accent-2) 33%, var(--purple) 66%, var(--green) 100%);
  opacity: 0.4;
  z-index: 0;
}
@media (max-width: 1100px) { .workflow-track { display: none; } }
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) {
  .workflow-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}
.step {
  position: relative;
  padding: 36px 28px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: all .3s cubic-bezier(.2,.7,.3,1);
}
.step::before {
  content: ""; position: absolute;
  top: 0; right: 0; left: 0; height: 200px;
  background: radial-gradient(60% 100% at 50% 0%, var(--step-color, var(--hot)) 0%, transparent 70%);
  opacity: 0.18;
  pointer-events: none;
}
.step:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}
.step:hover::before { opacity: 0.28; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--step-color, var(--hot));
  color: #fff;
  font-size: 18px; font-weight: 800;
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.step h3 {
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.1;
}
.step p {
  font-size: 15px; color: var(--text-2);
  margin: 0 0 24px;
  line-height: 1.55;
}
.step-stage {
  position: relative;
  height: 180px;
  border-radius: 16px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
/* Stage QR */
.stage-qr {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(60% 80% at 50% 50%, rgba(255, 195, 113, 0.08) 0%, transparent 70%);
}
.qr-card {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  transform: rotate(-4deg);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.qr-grid {
  width: 86px; height: 86px;
  background: #000;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(11, 1fr);
  gap: 1px;
  padding: 4px;
  border-radius: 4px;
}
.qr-grid > i { background: #fff; }
.qr-grid > i.on { background: #000; }
.qr-card .name {
  font-size: 10.5px; font-weight: 700; color: #1a1a17;
  letter-spacing: -0.01em;
}
.qr-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: linear-gradient(135deg, var(--accent-2), var(--hot));
  color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 195, 113, 0.4);
  text-transform: uppercase; letter-spacing: 0.05em;
}
/* Stage 1 — bubble SMS */
.stage-sms {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px;
  width: 100%;
}
.bubble {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--hot) 0%, var(--accent) 100%);
  color: #fff;
  padding: 10px 14px 12px;
  border-radius: 18px 18px 18px 4px;
  font-size: 13px;
  max-width: 80%;
  line-height: 1.45;
  box-shadow: 0 8px 24px rgba(255, 59, 107, 0.25);
}
.bubble .b-link {
  color: #fff; font-family: "JetBrains Mono", monospace;
  font-size: 11px; text-decoration: underline; opacity: 0.95;
}
.bubble-time {
  font-size: 10px; color: var(--text-4);
  margin-inline-start: 12px;
}
.bubble-typing {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 10px 14px;
  display: flex; gap: 4px;
}
.bubble-typing span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--text-3);
  animation: typing 1.4s infinite;
}
.bubble-typing span:nth-child(2) { animation-delay: 0.2s; }
.bubble-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}
/* Stage 2 — RSVP card */
.stage-rsvp {
  padding: 14px;
  background: linear-gradient(180deg, #fff 0%, #f6f6f5 100%);
  color: #1a1a17;
  width: 80%;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  transform: rotate(-2deg);
}
.rsvp-row {
  display: flex; justify-content: space-between;
  padding: 5px 0;
  font-size: 11px;
  border-bottom: 1px solid #e8e7e3;
}
.rsvp-row:last-child { border-bottom: none; padding-top: 8px; }
.rsvp-row b { font-weight: 600; }
.rsvp-row .grey { color: #8a8a82; }
.rsvp-stepper {
  display: flex; align-items: center; gap: 8px;
}
.rsvp-stepper .s {
  width: 18px; height: 18px; border-radius: 50%;
  background: #f0efec; color: #565651;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}
.rsvp-stepper b { font-size: 12px; }
.rsvp-buttons {
  display: flex; gap: 6px; margin-top: 10px;
}
.rsvp-buttons .y {
  flex: 1;
  background: #1a1a17; color: #fff;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-size: 11px; font-weight: 600;
}
.rsvp-buttons .n {
  width: 36px;
  background: #f6f6f5; color: #8a8a82;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-size: 14px;
}
/* Stage 3 — QR scanner */
.stage-scan {
  position: relative;
  width: 100%; height: 100%;
  background: radial-gradient(60% 80% at 50% 50%, #0a1a14 0%, #000 100%);
}
.scan-frame {
  position: absolute;
  inset: 30px 70px;
  border-radius: 12px;
  background: rgba(0,0,0,0.6);
  border: 1px dashed rgba(52, 211, 153, 0.4);
}
.scan-corner-s {
  position: absolute; width: 18px; height: 18px;
  border: 3px solid var(--green);
}
.scan-corner-s.tl { top: 26px; right: 66px; border-bottom: none; border-left: none; border-top-right-radius: 4px; }
.scan-corner-s.tr { top: 26px; left: 66px; border-bottom: none; border-right: none; border-top-left-radius: 4px; }
.scan-corner-s.bl { bottom: 26px; right: 66px; border-top: none; border-left: none; border-bottom-right-radius: 4px; }
.scan-corner-s.br { bottom: 26px; left: 66px; border-top: none; border-right: none; border-bottom-left-radius: 4px; }
.scan-line {
  position: absolute;
  left: 70px; right: 70px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  animation: scanline 2s ease-in-out infinite;
}
@keyframes scanline {
  0%, 100% { top: 40px; opacity: 0.6; }
  50% { top: 134px; opacity: 1; }
}
.scan-pill {
  position: absolute;
  bottom: 12px; right: 50%; transform: translateX(50%);
  background: rgba(52, 211, 153, 0.16);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 11px; font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.scan-pill .d { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); }

/* ======= Scanner big spotlight ======= */
.scanner-hero {
  position: relative;
  padding: 120px 32px;
  overflow: hidden;
}
.scanner-bg {
  position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 50% 50%, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.scanner-grid {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.scanner-text .kicker { color: var(--green); }
.scanner-text h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0 0 20px;
}
.scanner-text h2 em {
  font-style: normal;
  color: var(--green);
}
.scanner-text p {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 0 28px;
}
.scanner-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.scanner-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
}
.scanner-bullets li svg { color: var(--green); flex-shrink: 0; margin-top: 4px; }
.scanner-visual {
  position: relative;
  display: flex; justify-content: center;
}
.phone-scanner {
  position: relative;
  width: 280px;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  transform: rotate(-6deg);
}
.phone-scanner-screen {
  background: #000;
  border-radius: 26px;
  aspect-ratio: 9 / 19;
  padding: 24px 18px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.ps-header {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: var(--text-3);
  margin-bottom: 16px;
}
.ps-header .ev { color: var(--text); font-weight: 700; font-size: 13px; }
.ps-camera {
  flex: 1;
  background: linear-gradient(180deg, #0f1a1a 0%, #050505 100%);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.ps-camera::before {
  content: ""; position: absolute;
  inset: 30%;
  box-shadow: 0 0 0 200px rgba(0,0,0,0.45);
}
.ps-camera::after {
  content: ""; position: absolute;
  left: 30%; right: 30%; top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 12px var(--green);
  animation: scan-y 2s ease-in-out infinite;
}
@keyframes scan-y {
  0%, 100% { transform: translateY(-50px); opacity: 0.8; }
  50% { transform: translateY(50px); opacity: 1; }
}
.ps-corner {
  position: absolute; width: 24px; height: 24px;
  border: 2px solid var(--green);
}
.ps-corner.tl { top: 30%; right: 30%; border-bottom: none; border-left: none; }
.ps-corner.tr { top: 30%; left: 30%; border-bottom: none; border-right: none; }
.ps-corner.bl { bottom: 30%; right: 30%; border-top: none; border-left: none; }
.ps-corner.br { bottom: 30%; left: 30%; border-top: none; border-right: none; }
.ps-status {
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--green);
  display: flex; align-items: center; gap: 8px;
}
.ps-status .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.2s infinite;
}
.ps-recent {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-3);
  display: flex; justify-content: space-between;
}
.ps-recent b { color: var(--text); }

/* ======= Audience ======= */
.audience {
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.audience-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all .2s;
}
.audience-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.audience-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.audience-card h4 {
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.audience-card p { font-size: 13.5px; color: var(--text-3); margin: 0; line-height: 1.5; }

/* ======= Bento power features ======= */
.bento {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}
.b {
  position: relative;
  padding: 28px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: all .25s;
}
.b:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.b-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 12px;
}
.b h3 {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.15;
}
.b p { font-size: 14px; color: var(--text-3); margin: 0; line-height: 1.55; }

/* Bento sizes */
.b-1 { grid-column: span 3; grid-row: span 2; }
.b-2 { grid-column: span 3; }
.b-3 { grid-column: span 3; }
.b-4 { grid-column: span 2; }
.b-5 { grid-column: span 2; }
.b-6 { grid-column: span 2; }

/* Bento accents */
.b-1 {
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(167, 139, 250, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.b-2 {
  background:
    radial-gradient(80% 100% at 0% 100%, rgba(255, 59, 107, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.b-3 {
  background:
    radial-gradient(80% 100% at 100% 100%, rgba(96, 165, 250, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.b-5 {
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(52, 211, 153, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
}

/* Bento mini-dashboard for b-1 */
.b-dash {
  margin-top: 20px;
  padding: 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.b-dash-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 12px;
}
.b-dash-row .v {
  font-size: 32px; font-weight: 800; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.b-dash-row .v .t { color: var(--text-3); font-size: 16px; font-weight: 500; }
.b-dash-row .pct {
  font-size: 12px; color: var(--green); font-weight: 600;
  background: rgba(52, 211, 153, 0.12);
  padding: 3px 10px;
  border-radius: 999px;
}
.b-dash-bar {
  height: 6px; background: rgba(255,255,255,0.06);
  border-radius: 999px; overflow: hidden;
  margin-bottom: 14px;
}
.b-dash-fill {
  height: 100%;
  width: 79%;
  background: linear-gradient(90deg, var(--purple) 0%, var(--hot) 100%);
  border-radius: 999px;
}
.b-funnel {
  display: flex; flex-direction: column; gap: 6px;
}
.b-funnel-row {
  display: grid; grid-template-columns: 6px 1fr auto;
  align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-2);
}
.b-funnel-row .dot { width: 6px; height: 6px; border-radius: 50%; }
.b-funnel-row .num { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--text); }

/* Bento groups visual b-2 */
.b-groups {
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.b-group {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.b-group .swatch { width: 8px; height: 8px; border-radius: 2px; }
.b-group .name { font-size: 13px; font-weight: 600; flex: 1; }
.b-group .count { font-size: 12px; color: var(--text-3); font-variant-numeric: tabular-nums; }
.b-group .bar { width: 60px; height: 4px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.b-group .bar > div { height: 100%; border-radius: 999px; }

/* Bento report visual b-3 */
.b-report {
  margin-top: 18px;
  padding: 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.b-report .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 6px 0;
  font-size: 12.5px; color: var(--text-2);
  border-bottom: 1px solid var(--line);
}
.b-report .row:last-child { border-bottom: none; }
.b-report .row b { color: var(--text); font-variant-numeric: tabular-nums; font-weight: 700; }
.b-report .row .big { font-size: 18px; }

/* Bento small icon top-right */
.b-pill {
  position: absolute;
  top: 24px; left: 24px;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--text);
}

/* ======= Form Builder section ======= */
.builder {
  position: relative;
  padding: 120px 32px;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 20% 30%, rgba(167, 139, 250, 0.10) 0%, transparent 60%),
    radial-gradient(60% 80% at 80% 70%, rgba(255, 59, 107, 0.08) 0%, transparent 60%);
}
.builder-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.builder-head .kicker { color: var(--purple); }
.builder-head h2 .gradient2 {
  background: linear-gradient(135deg, var(--purple) 0%, var(--hot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.builder-head p {
  font-size: 18px; color: var(--text-2);
  line-height: 1.55; margin: 22px auto 0;
}

.forms-row {
  display: flex; justify-content: center; gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0 40px;
}
.brand-phone {
  width: 230px;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 32px;
  padding: 10px;
  box-shadow:
    0 50px 100px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
}
.brand-phone:hover { transform: translateY(-12px) scale(1.02); z-index: 2; }
.brand-phone.tilt-l { transform: rotate(-4deg); margin-top: 30px; }
.brand-phone.tilt-r { transform: rotate(4deg); margin-top: 30px; }
.brand-phone.tilt-l:hover { transform: rotate(-2deg) translateY(-12px) scale(1.02); }
.brand-phone.tilt-r:hover { transform: rotate(2deg) translateY(-12px) scale(1.02); }
.brand-screen {
  border-radius: 24px;
  aspect-ratio: 9 / 18;
  padding: 28px 20px 22px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.brand-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 18px;
  margin-bottom: 14px;
}
.brand-screen h5 {
  font-size: 16px; font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.brand-screen .meta {
  font-size: 11px; opacity: 0.6;
  margin-bottom: 18px;
}
.brand-field {
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12px;
  margin-bottom: 8px;
}
.brand-cta {
  margin-top: auto;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  font-size: 13px; font-weight: 700;
}

/* Brand 1: Elegant wedding */
.b-wedding { background: linear-gradient(180deg, #fef3f0 0%, #fce4dd 100%); color: #5a2d28; }
.b-wedding .brand-logo {
  background: #5a2d28; color: #fef3f0;
  font-family: "Heebo", serif; font-weight: 400;
  font-size: 22px;
}
.b-wedding h5 { color: #5a2d28; font-size: 17px; font-weight: 600; }
.b-wedding .meta { color: #8a5a52; }
.b-wedding .brand-field { background: rgba(90, 45, 40, 0.06); color: #8a5a52; border: 1px solid rgba(90, 45, 40, 0.12); }
.b-wedding .brand-cta { background: #5a2d28; color: #fef3f0; }

/* Brand 2: Corporate tech */
.b-corp { background: #0f1729; color: #e2e8f0; }
.b-corp .brand-logo {
  background: #1e40af; color: #fff;
  border-radius: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
}
.b-corp h5 { color: #f1f5f9; }
.b-corp .meta { color: #94a3b8; }
.b-corp .brand-field { background: rgba(255,255,255,0.04); color: #94a3b8; border: 1px solid rgba(255,255,255,0.08); }
.b-corp .brand-cta { background: #1e40af; color: #fff; }

/* Brand 3: Neon party */
.b-neon { background: linear-gradient(180deg, #0a0014 0%, #1a0028 100%); color: #fff; position: relative; }
.b-neon::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 40% at 50% 0%, rgba(255, 0, 200, 0.25) 0%, transparent 60%);
  border-radius: 24px;
}
.b-neon .brand-logo {
  background: linear-gradient(135deg, #ff00aa, #00d4ff);
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 8px 24px rgba(255, 0, 200, 0.4);
}
.b-neon h5 { color: #fff; font-weight: 800; letter-spacing: -0.02em; font-size: 18px; }
.b-neon .meta { color: #ff66cc; font-weight: 600; }
.b-neon .brand-field { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.5); border: 1px solid rgba(255, 0, 200, 0.2); }
.b-neon .brand-cta {
  background: linear-gradient(90deg, #ff00aa, #00d4ff);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px rgba(255, 0, 200, 0.5);
}

/* Builder controls strip */
.builder-controls {
  max-width: 920px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.control-card {
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all .2s;
}
.control-card:hover { border-color: var(--line-strong); }
.control-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(167, 139, 250, 0.12);
  color: var(--purple);
  display: grid; place-items: center;
  margin-bottom: 10px;
}
.control-card h6 { font-size: 13px; font-weight: 700; margin: 0 0 3px; letter-spacing: -0.01em; }
.control-card p { font-size: 11.5px; color: var(--text-3); margin: 0; line-height: 1.5; }
.control-swatches { display: flex; gap: 5px; margin-top: 8px; }
.control-swatches > i {
  width: 14px; height: 14px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-block;
}

@media (max-width: 900px) {
  .builder { padding: 80px 20px; }
  .builder-controls { grid-template-columns: 1fr 1fr; }
  .brand-phone, .brand-phone.tilt-l, .brand-phone.tilt-r { transform: none; margin-top: 0; }
}

/* ======= Final CTA ======= */
.final {
  padding: 140px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-glow {
  position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 50% 50%, rgba(255, 59, 107, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.final-content { position: relative; z-index: 1; }
.final h2 {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0 0 20px;
}
.final h2 .gradient {
  background: linear-gradient(135deg, var(--hot) 0%, var(--accent) 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final p { font-size: 18px; color: var(--text-2); max-width: 560px; margin: 0 auto 36px; }

/* ======= Footer ======= */
footer {
  padding: 32px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.foot-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 12.5px; color: var(--text-3);
}
.foot-meta .sep { color: var(--text-4); }
.foot-meta a:hover { color: var(--text-2); }
@media (max-width: 640px) {
  .foot-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }
  .foot-meta {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    font-size: 12px;
  }
  .foot-meta .sep { display: none; }
}

/* ======= Responsive ======= */
@media (max-width: 960px) {
  .workflow-grid { grid-template-columns: 1fr; gap: 32px; }
  .workflow-track { display: none; }
  .scanner-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .b-1, .b-2, .b-3, .b-4, .b-5, .b-6 { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 640px) {
  .nav-inner { padding: 12px 20px; }
  section { padding: 80px 20px; }
  .audience { padding: 80px 20px; }
  .scanner-hero { padding: 80px 20px; }
  .final { padding: 100px 20px; }
  .audience-grid, .bento { grid-template-columns: 1fr; }
  .b-1, .b-2, .b-3, .b-4, .b-5, .b-6 { grid-column: span 1; }
  .hero { padding: 120px 20px 60px; }
  .step { padding: 28px 22px; }
}
