/* ============ Variables ============ */
:root {
  --bg: #0a0612;
  --bg-2: #110a1f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f3ff;
  --text-dim: #a8a1bd;
  --text-muted: #6f6885;
  --pink: #ff2d92;
  --magenta: #c026d3;
  --violet: #7c3aed;
  --cyan: #22d3ee;
  --grad: linear-gradient(135deg, #ff2d92 0%, #c026d3 50%, #7c3aed 100%);
  --grad-2: linear-gradient(135deg, #22d3ee 0%, #7c3aed 60%, #ff2d92 100%);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 20px 60px -15px rgba(124, 58, 237, 0.45);
  --shadow-pink: 0 20px 60px -15px rgba(255, 45, 146, 0.5);
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ============ Background blobs ============ */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  animation: float 18s ease-in-out infinite;
}
.blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #ff2d92, transparent 70%);
  top: -100px; left: -120px;
}
.blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  top: 30%; right: -180px;
  animation-delay: -6s;
}
.blob-3 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #22d3ee, transparent 70%);
  bottom: -150px; left: 30%;
  animation-delay: -12s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.08); }
  66% { transform: translate(-40px, 50px) scale(0.94); }
}

/* ============ Layout ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.container-narrow { max-width: 880px; }

.section {
  padding: 120px 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  padding: 6px 14px;
  border: 1px solid rgba(255, 45, 146, 0.25);
  border-radius: 999px;
  background: rgba(255, 45, 146, 0.08);
  margin-bottom: 18px;
}
h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.lead {
  margin-top: 18px;
  font-size: 18px;
  color: var(--text-dim);
}

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

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, opacity .2s ease;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px -15px rgba(255, 45, 146, 0.7);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  backdrop-filter: blur(20px);
  background: rgba(10, 6, 18, 0.65);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 6, 18, 0.85);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  box-shadow: 0 8px 24px -6px rgba(255, 45, 146, 0.6);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.05); }
.logo-text i { font-style: normal; opacity: 0.55; font-weight: 600; }

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav a { color: var(--text-dim); }
.nav a:hover { color: var(--text); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 100px 0 140px;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22ee7a;
  box-shadow: 0 0 12px #22ee7a;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 28px;
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 44px;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-dim);
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-marquee {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Cards (About) ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: -1;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 146, 0.35);
  background: var(--surface-2);
}
.card-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--grad);
  box-shadow: 0 12px 30px -10px rgba(255, 45, 146, 0.6);
}
.card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.card p { color: var(--text-dim); font-size: 15px; }

/* ============ Benefits ============ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.benefit {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .35s ease, border-color .35s ease;
}
.benefit:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.benefit-num {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.benefit h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.benefit p { color: var(--text-dim); font-size: 15px; }

/* ============ Stats ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 56px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}
.stat { text-align: center; }
.stat-num,
.stat-suffix {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat p {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 500;
}

/* ============ Stories ============ */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.story {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform .35s ease, border-color .35s ease;
}
.story:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.story-quote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  position: relative;
  padding-left: 18px;
  border-left: 3px solid;
  border-image: var(--grad) 1;
}
.story-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.avatar-1 { background: linear-gradient(135deg, #ff2d92, #c026d3); }
.avatar-2 { background: linear-gradient(135deg, #7c3aed, #22d3ee); }
.avatar-3 { background: linear-gradient(135deg, #c026d3, #7c3aed); }
.story-author strong { display: block; font-size: 15px; }
.story-author span { font-size: 13px; color: var(--text-muted); }

/* ============ FAQ ============ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] {
  background: var(--surface-2);
  border-color: rgba(255, 45, 146, 0.3);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--pink);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 28px 24px;
  color: var(--text-dim);
  font-size: 15px;
}

/* ============ CTA / Form ============ */
.section-cta { padding-bottom: 140px; }
.cta-card {
  padding: 56px 48px;
  background: linear-gradient(160deg, rgba(255, 45, 146, 0.12), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(255, 45, 146, 0.3);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,146,0.3), transparent 70%);
  top: -200px; right: -150px;
  filter: blur(60px);
}
.cta-text { text-align: center; margin-bottom: 40px; position: relative; }
.cta-text p { color: var(--text-dim); margin-top: 14px; font-size: 17px; }

.form { display: flex; flex-direction: column; gap: 18px; position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.field input,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--text);
  transition: border-color .25s ease, background .25s ease;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 45, 146, 0.15);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dim);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox input {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--pink);
  flex-shrink: 0;
}
.checkbox a { color: var(--pink); text-decoration: underline; }

.form-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  min-height: 20px;
}
.form-note.success { color: #22ee7a; }
.form-note.error { color: #ff5f7a; }

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 16px;
  max-width: 280px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.footer-cols a {
  display: block;
  color: var(--text-dim);
  font-size: 14px;
  padding: 5px 0;
}
.footer-cols a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* ============ Legal pages ============ */
.legal {
  padding: 140px 0 100px;
  position: relative;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 32px;
  transition: color .2s ease, transform .2s ease;
}
.legal-back:hover { color: var(--pink); transform: translateX(-3px); }
.legal h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 18px;
}
.legal-meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 56px;
}
.legal-prose h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 2.6vw, 28px);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p,
.legal-prose li {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-prose ul { padding-left: 22px; margin-bottom: 18px; }
.legal-prose strong { color: var(--text); }
.legal-prose a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }

/* ============ Reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============ Responsive ============ */
@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header .btn-primary { display: none; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 44px; }
  .hero { padding: 60px 0 100px; }
  .hero-cta { margin-bottom: 60px; }
  .form-row { grid-template-columns: 1fr; }
  .stats { padding: 36px 24px; }
  .cta-card { padding: 36px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .btn-lg { padding: 16px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .marquee-track, .dot { animation: none; }
  html { scroll-behavior: auto; }
}
