/* ================================================================
   Variant B — Bold Gradient · aspirational SaaS
   ================================================================ */

:root {
  --bg: #0a0616;
  --bg-2: #120a24;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hi: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-hi: rgba(255, 255, 255, 0.16);

  --text: #f5f0ff;
  --text-muted: #a89dc4;
  --text-faint: #6f6688;

  --grad: linear-gradient(120deg, #ec4899 0%, #f97316 60%, #facc15 100%);
  --grad-2: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --pink: #ec4899;
  --orange: #f97316;
  --violet: #8b5cf6;
  --success: #34d399;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.82rem + 0.25vw, 0.9375rem);
  --text-base: 1rem;
  --text-lg: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem);
  --text-2xl: clamp(2rem, 1.4rem + 2.5vw, 3.25rem);
  --text-hero: clamp(2.5rem, 1.5rem + 5vw, 5rem);

  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-6: 24px; --space-8: 32px; --space-10: 40px; --space-12: 48px;
  --space-16: 64px; --space-20: 80px;

  --shadow-lg: 0 30px 80px rgba(236, 72, 153, 0.18);
  --shadow-glow: 0 20px 60px rgba(236, 72, 153, 0.35);
  --transition: 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100dvh;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(1200px 800px at 10% 0%, rgba(139, 92, 246, 0.25), transparent 55%),
    radial-gradient(1000px 700px at 90% 20%, rgba(236, 72, 153, 0.2), transparent 55%),
    radial-gradient(800px 600px at 50% 100%, rgba(249, 115, 22, 0.12), transparent 55%);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: var(--radius-sm); }
input, select, textarea, button { font: inherit; }
h1, h2, h3 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.03em; font-weight: 700; }
p { text-wrap: pretty; }
::selection { background: var(--pink); color: white; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }

.sr-only-focusable { position: absolute; left: -9999px; }
.sr-only-focusable:focus {
  left: var(--space-4); top: var(--space-4); background: var(--pink); color: white;
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-sm); z-index: 100;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 6, 22, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: var(--space-4);
}
.logo {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-weight: 700; font-size: var(--text-sm); letter-spacing: -0.01em;
}
.logo-mark { font-style: italic; font-weight: 400; opacity: 0.75; }
.nav { display: flex; gap: var(--space-6); font-size: var(--text-sm); color: var(--text-muted); font-weight: 500; }
.nav a:hover { color: var(--text); }
@media (max-width: 720px) { .nav { display: none; } }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: var(--text-sm);
  line-height: 1; white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}
.btn:active { transform: scale(0.97); }
.btn-sm { padding: 10px 18px; font-size: var(--text-xs); }
.btn-lg { padding: 17px 28px; font-size: var(--text-base); }
.btn-xl { padding: 20px 34px; font-size: var(--text-lg); font-weight: 700; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--grad);
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 68px rgba(236, 72, 153, 0.55);
  filter: brightness(1.06);
}

/* ========== HERO ========== */
.hero {
  padding: clamp(2rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.orbs {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.55;
  animation: float 12s ease-in-out infinite;
}
.orb-1 { width: 480px; height: 480px; background: var(--pink); top: -100px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: var(--violet); bottom: -100px; left: -100px; animation-delay: -3s; }
.orb-3 { width: 300px; height: 300px; background: var(--orange); top: 40%; left: 30%; animation-delay: -6s; opacity: 0.3; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-6);
}
.hero h1 {
  font-size: var(--text-hero);
  margin-bottom: var(--space-6);
}
.lede {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: var(--space-8);
}
.lede em { font-style: italic; color: var(--text); }
.hero-checks {
  list-style: none;
  display: flex; flex-direction: column; gap: var(--space-3);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
}
.hero-cta {
  display: flex; align-items: center; gap: var(--space-6); flex-wrap: wrap;
  margin-bottom: var(--space-3);
}
.avatars { display: flex; align-items: center; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.avatar-num {
  margin-left: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
}
.micro { font-size: var(--text-xs); color: var(--text-faint); }

/* ========== FORM ========== */
.form-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.form-card::after {
  content: ""; position: absolute; inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.5; pointer-events: none;
}
.form-head { margin-bottom: var(--space-6); position: relative; }
.form-head h2 { font-size: var(--text-xl); margin-bottom: var(--space-2); }
.form-head p { font-size: var(--text-sm); color: var(--text-muted); }
#signupForm { position: relative; display: flex; flex-direction: column; gap: var(--space-4); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.field input {
  padding: 15px 18px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border-hi);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 16px;
  min-height: 50px;
  width: 100%;
  transition: all var(--transition);
}
.field input::placeholder { color: var(--text-faint); }
.field input:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(236, 72, 153, 0.05);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.15);
}
.disclaimer { font-size: var(--text-xs); color: var(--text-faint); text-align: center; margin-top: 4px; }
[hidden] { display: none !important; }
.form-success {
  text-align: center; padding: var(--space-8) 0;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
}
.check-anim {
  width: 64px; height: 64px;
  background: var(--grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: white; font-weight: 700;
  animation: pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.form-success h3 { font-size: var(--text-lg); }
.form-success p { color: var(--text-muted); font-size: var(--text-sm); }

/* ========== LOGOS BAR ========== */
.logos-bar {
  padding: var(--space-10) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.logos-label {
  display: block; margin-bottom: var(--space-6);
  font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint); font-weight: 600;
}
.logos-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted); opacity: 0.6;
  letter-spacing: -0.02em;
}

/* ========== SECTIONS ========== */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--space-16); }
.pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-4);
}
.section-head h2 { font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.section-head p { color: var(--text-muted); font-size: var(--text-lg); }

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: clamp(0.75rem, 2vw, 1.25rem);
}
.bento-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.bento-card:hover { transform: translateY(-4px); border-color: var(--border-hi); }
.bento-card.big { grid-column: span 2; grid-row: span 2; }
.bento-card.wide { grid-column: span 3; }
@media (max-width: 780px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card.big, .bento-card.wide { grid-column: span 1; grid-row: auto; }
}
.bcard-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
  filter: grayscale(0) contrast(1.1);
}
.bento-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); font-weight: 700; }
.bento-card p { color: var(--text-muted); font-size: var(--text-sm); }
.preview-chart {
  margin-top: auto; padding-top: var(--space-6);
  display: flex; align-items: flex-end; gap: 6px;
  height: 100px;
}
.chart-bar {
  flex: 1; height: var(--h);
  background: var(--grad);
  border-radius: 4px 4px 0 0;
  animation: rise 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.chart-bar:nth-child(1) { animation-delay: 0.05s; }
.chart-bar:nth-child(2) { animation-delay: 0.10s; }
.chart-bar:nth-child(3) { animation-delay: 0.15s; }
.chart-bar:nth-child(4) { animation-delay: 0.20s; }
.chart-bar:nth-child(5) { animation-delay: 0.25s; }
.chart-bar:nth-child(6) { animation-delay: 0.30s; }
@keyframes rise { from { height: 0; opacity: 0; } to { height: var(--h); opacity: 1; } }

/* How it works */
.how-section { background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.06), transparent); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-6);
  align-items: center;
}
@media (max-width: 780px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-arrow { transform: rotate(90deg); justify-self: center; }
}
.how-card {
  padding: var(--space-8);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.how-num {
  width: 44px; height: 44px;
  background: var(--grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; font-weight: 700; color: white;
  margin: 0 auto var(--space-4);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}
.how-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.how-card p { color: var(--text-muted); font-size: var(--text-sm); }
.how-arrow {
  font-size: 1.5rem;
  color: var(--pink);
  font-weight: 700;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-16);
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.tcard {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.stars {
  color: #facc15;
  font-size: var(--text-sm);
  letter-spacing: 2px;
  margin-bottom: var(--space-3);
}
.tcard blockquote {
  font-size: var(--text-base);
  color: var(--text);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}
.tcard figcaption {
  display: flex; align-items: center; gap: var(--space-3);
}
.tavatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.tcard figcaption strong { display: block; font-weight: 600; font-size: var(--text-sm); }
.tcard figcaption span { display: block; font-size: var(--text-xs); color: var(--text-muted); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  padding: var(--space-8);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-xl);
  text-align: center;
}
@media (max-width: 720px) { .stat-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); } }
.stat-big {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat-lbl { font-size: var(--text-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* FAQ */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq { display: flex; flex-direction: column; gap: var(--space-3); }
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  transition: border-color var(--transition);
}
.faq details[open] { border-color: var(--border-hi); }
.faq summary {
  padding: var(--space-4) var(--space-6);
  font-weight: 600; font-size: var(--text-base);
  cursor: pointer; list-style: none; position: relative;
  padding-right: var(--space-12);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: var(--space-6); top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  transition: transform var(--transition);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 var(--space-6) var(--space-6); color: var(--text-muted); font-size: var(--text-sm); }

/* Final CTA */
.final-cta {
  padding: clamp(4rem, 10vw, 7rem) 0;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.15), transparent 60%);
  border-top: 1px solid var(--border);
}
.final-cta h2 { font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.final-cta > .container > p { font-size: var(--text-lg); color: var(--text-muted); margin-bottom: var(--space-8); max-width: 46ch; margin-inline: auto; }
.final-cta .btn { margin-bottom: var(--space-3); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-inner {
  display: flex; justify-content: space-between; gap: var(--space-8);
  flex-wrap: wrap; margin-bottom: var(--space-8);
}
.footer-note {
  font-size: var(--text-xs); color: var(--text-faint);
  max-width: 48ch; margin-top: var(--space-3);
}
.foot-links { display: flex; gap: var(--space-6); font-size: var(--text-sm); color: var(--text-muted); }
.foot-links a:hover { color: var(--text); }
.copy {
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  font-size: var(--text-xs); color: var(--text-faint); text-align: center;
}
