@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ─────────────────────────────────────────────────────────
   Tokens
───────────────────────────────────────────────────────── */
:root {
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --primary: #0057ff;
  --primary-dark: #003ecc;
  --primary-light: rgba(0, 87, 255, 0.08);
  --accent: #7c3aed;
  --accent-light: rgba(124, 58, 237, 0.1);
  --text-dark: #0a0e1a;
  --text-body: #3d4458;
  --text-muted: #7a8099;
  --bg: #ffffff;
  --bg-soft: #f7f8fc;
  --bg-dark: #080c1a;
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --max: 1160px;
  --nav-h: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ─────────────────────────────────────────────────────────
   Nav
───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.25s, box-shadow 0.25s, border-color 0.25s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
  stroke: currentColor;
}

.nav-logo-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: var(--text-dark);
  background: var(--bg-soft);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   Buttons
───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  font-family: var(--font);
  white-space: nowrap;
}

.btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  flex-shrink: 0;
}

.btn-ghost {
  color: var(--text-body);
  background: transparent;
}
.btn-ghost:hover { color: var(--text-dark); background: var(--bg-soft); }

.btn-outline {
  color: var(--text-dark);
  background: transparent;
  border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--bg-soft); border-color: #c4c8d8; }

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(0, 87, 255, 0.28);
  transform: translateY(-1px);
}

.btn-primary-lg {
  padding: 13px 28px;
  font-size: 15px;
  border-radius: 11px;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover {
  background: #f0f4ff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-white-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

/* ─────────────────────────────────────────────────────────
   Hero
───────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Ambient light blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.07) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0 100px;
}

/* Badge / eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 8px;
  border-radius: 100px;
  background: var(--primary-light);
  border: 1px solid rgba(0, 87, 255, 0.15);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.2px;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 87, 255, 0.35); }
  50% { box-shadow: 0 0 0 5px rgba(0, 87, 255, 0); }
}

.hero-h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 480px;
  margin-bottom: 36px;
}

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

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-avatars {
  display: flex;
}

.proof-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: 2px solid #fff;
  margin-right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.proof-avatar:nth-child(2) { background: linear-gradient(135deg, #f093fb, #f5576c); }
.proof-avatar:nth-child(3) { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.proof-avatar:nth-child(4) { margin-right: 0; background: linear-gradient(135deg, #43e97b, #38f9d7); }

.proof-text {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 10px;
}

.proof-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* Hero Visual — animated flow widget */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.flow-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 24px;
  width: 100%;
  max-width: 420px;
  position: relative;
}

.flow-widget-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flow-widget-title::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: block;
  animation: pulse-badge 2s infinite;
}

.fnode {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.fnode:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.08);
}

.fnode-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.fnode-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fnode-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.fi-green { background: rgba(34,197,94,0.12); color: #16a34a; }
.fi-purple { background: rgba(124,58,237,0.12); color: #7c3aed; }
.fi-blue { background: rgba(0,87,255,0.1); color: var(--primary); }
.fi-orange { background: rgba(245,158,11,0.12); color: #d97706; }

.fnode-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
}

.fnode-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  padding-left: 38px;
}

.fnode-arrow {
  text-align: center;
  padding: 6px 0;
  color: var(--text-muted);
}

.fnode-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  opacity: 0.4;
}

.fnode-pill {
  display: inline-flex;
  gap: 5px;
  margin-top: 8px;
  margin-left: 38px;
}

.fpill {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid;
}

.fpill-blue { background: rgba(0,87,255,0.08); color: var(--primary); border-color: rgba(0,87,255,0.2); }
.fpill-green { background: rgba(34,197,94,0.08); color: #16a34a; border-color: rgba(34,197,94,0.2); }

/* Floating stat bubbles */
.bubble {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

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

.bubble.bubble-1 {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}

.bubble.bubble-2 {
  bottom: 40px;
  left: -40px;
  animation-delay: 1.5s;
}

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

/* ─────────────────────────────────────────────────────────
   Section Commons
───────────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.75px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 520px;
}

.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }

/* ─────────────────────────────────────────────────────────
   Logos / Trust bar
───────────────────────────────────────────────────────── */
.trust-bar {
  padding: 32px 0 48px;
  border-bottom: 1px solid var(--border);
}

.trust-bar-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.trust-logo {
  font-size: 15px;
  font-weight: 800;
  color: #bcc0cc;
  letter-spacing: -0.3px;
  transition: color 0.2s;
}

.trust-logo:hover { color: var(--text-muted); }

/* ─────────────────────────────────────────────────────────
   Features (bento grid)
───────────────────────────────────────────────────────── */
.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 56px;
}

.bento-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #d4d8e8;
  transform: translateY(-2px);
}

.bento-card.bento-wide { grid-column: span 2; }
.bento-card.bento-dark {
  background: var(--bg-dark);
  border-color: rgba(255,255,255,0.08);
  color: #fff;
}

.bento-card.bento-blue {
  background: linear-gradient(135deg, #0057ff 0%, #3b82f6 100%);
  border-color: transparent;
  color: #fff;
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.bento-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.bi-blue { background: var(--primary-light); color: var(--primary); }
.bi-purple { background: var(--accent-light); color: var(--accent); }
.bi-green { background: rgba(34,197,94,0.1); color: #16a34a; }
.bi-orange { background: rgba(245,158,11,0.1); color: #d97706; }
.bi-white { background: rgba(255,255,255,0.15); color: #fff; }

.bento-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 14px;
}

.bento-h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.bento-dark .bento-h3,
.bento-blue .bento-h3 { color: #fff; }

.bento-p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
}

.bento-dark .bento-p { color: rgba(255,255,255,0.6); }
.bento-blue .bento-p { color: rgba(255,255,255,0.75); }

/* Mini flow preview inside bento */
.mini-flow {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mf-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  padding: 9px 12px;
}

.mf-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mf-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* Stat strip inside card */
.bento-stat-row {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.bstat-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.bstat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─────────────────────────────────────────────────────────
   How it works — alternating rows
───────────────────────────────────────────────────────── */
.how-bg { background: var(--bg-soft); }

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 64px;
}

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

.how-step.reverse { direction: rtl; }
.how-step.reverse > * { direction: ltr; }

.step-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
}

.step-h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.step-p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
}

.step-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 87, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--primary);
  stroke-width: 2.5;
}

.step-visual {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

/* Comment stream mock */
.comment-stream {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comment-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 12px;
  background: var(--bg-soft);
  border-radius: 11px;
  border: 1px solid var(--border);
  animation: slide-in 0.4s ease both;
}

@keyframes slide-in {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

.comment-row:nth-child(2) { animation-delay: 0.15s; }
.comment-row:nth-child(3) { animation-delay: 0.3s; }

.comment-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.ca-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.ca-2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.ca-3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }

.comment-body { flex: 1; min-width: 0; }
.comment-name { font-size: 11px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.comment-text { font-size: 12px; color: var(--text-body); }

.comment-reply-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(0,87,255,0.08);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  margin-top: 4px;
}

/* Keyword table mock */
.kw-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kw-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
  background: var(--bg-soft);
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 12px;
}

.kw-word {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(0,87,255,0.2);
  border-radius: 100px;
  padding: 2px 9px;
  font-weight: 700;
  font-size: 11px;
  white-space: nowrap;
}

.kw-reply { color: var(--text-body); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kw-status { background: rgba(34,197,94,0.1); color: #16a34a; border-radius: 100px; padding: 2px 8px; font-weight: 700; font-size: 10px; white-space: nowrap; }

/* ─────────────────────────────────────────────────────────
   Stats Section
───────────────────────────────────────────────────────── */
.stats-section {
  background: var(--bg-dark);
  padding: 88px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.stat-item { text-align: center; }

.stat-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────
   Testimonials
───────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: box-shadow 0.2s;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.ta-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.ta-2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.ta-3 { background: linear-gradient(135deg, #43e97b, #38f9d7); }

.t-name { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.t-handle { font-size: 11.5px; color: var(--text-muted); }

/* ─────────────────────────────────────────────────────────
   CTA Banner
───────────────────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--bg);
}

.cta-card {
  background: linear-gradient(135deg, #0c1445 0%, #1a0a3d 50%, #0a1520 100%);
  border-radius: 28px;
  padding: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.2) 0%, transparent 65%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-card::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 65%);
  bottom: -100px;
  right: -50px;
  pointer-events: none;
}

.cta-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.75px;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-lead {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

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

.cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────────────────
   Footer
───────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}

.footer-logo-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 15px;
  height: 15px;
  color: #fff;
  stroke: currentColor;
}

.footer-logo-text {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  max-width: 240px;
}

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

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-links-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links-list a:hover { color: rgba(255,255,255,0.9); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-meta-links {
  display: flex;
  gap: 20px;
}

.footer-meta-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s;
}

.footer-meta-links a:hover { color: rgba(255,255,255,0.7); }

/* ─────────────────────────────────────────────────────────
   Scroll animations
───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

/* ─────────────────────────────────────────────────────────
   Responsive
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.bento-wide { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 0 80px;
    text-align: center;
  }

  .hero-lead { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }

  .hero-visual { display: none; }

  .features-bento { grid-template-columns: 1fr; }
  .how-step,
  .how-step.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .how-step.reverse .step-visual { order: -1; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
