:root {
  --bg: #0c0a14;
  --bg-soft: #131020;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-border: rgba(255, 255, 255, 0.09);
  --text: #f4f1fb;
  --text-dim: #aaa3c4;
  --violet: #8b5cf6;
  --pink: #ec5d99;
  --peach: #ffae73;
  --grad: linear-gradient(100deg, #a78bfa 0%, #ec5d99 50%, #ffae73 100%);
  --radius: 18px;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.12; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }

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

/* glow orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.orb-1 { width: 520px; height: 520px; top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(236,93,153,0.6), transparent 70%); }
.orb-2 { width: 480px; height: 480px; top: 420px; left: -160px;
  background: radial-gradient(circle, rgba(139,92,246,0.55), transparent 70%); }

/* brand mark */
.brand-mark {
  width: 22px; height: 22px; border-radius: 7px;
  background: var(--grad);
  box-shadow: 0 0 18px rgba(236,93,153,0.6);
  display: inline-block;
}
.brand, .footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'Sora'; font-weight: 600; font-size: 1.05rem; }
.brand strong, .footer-brand strong { font-weight: 800; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px 24px;
  backdrop-filter: blur(10px);
}
.nav-links { display: flex; gap: 28px; font-size: 0.95rem; color: var(--text-dim); }
.nav-links a:hover { color: var(--text); }

/* buttons */
.btn {
  display: inline-block;
  background: var(--grad);
  color: #1a0f1f;
  font-weight: 700;
  font-family: 'Sora';
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.97rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 24px rgba(236,93,153,0.35);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(236,93,153,0.5); }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-lg { padding: 17px 40px; font-size: 1.08rem; }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--surface-border);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--surface); box-shadow: none; }

/* layout */
section { position: relative; z-index: 1; }
.section { max-width: var(--maxw); margin: 0 auto; padding: 90px 24px; }
.section-alt { background: var(--bg-soft); max-width: 100%; }
.section-alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 14px;
}

/* hero */
.hero { max-width: 880px; margin: 0 auto; text-align: center; padding: 90px 24px 70px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; margin-bottom: 22px; }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.32rem); color: var(--text-dim); max-width: 620px; margin: 0 auto 36px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-products { margin-top: 40px; color: var(--text-dim); font-family: 'Sora'; font-weight: 600; letter-spacing: 0.04em; display: flex; gap: 14px; justify-content: center; }
.hero-products .dot { color: var(--pink); }

/* section head */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 14px; }
.section-head p { color: var(--text-dim); font-size: 1.08rem; }

/* cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(236,93,153,0.4); }
.card-featured { border-color: rgba(236,93,153,0.35); box-shadow: 0 0 40px rgba(236,93,153,0.12); }
.card-icon { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px; background: var(--grad); position: relative; }
.icon-crm { background: linear-gradient(135deg, #8b5cf6, #ec5d99); }
.icon-ads { background: linear-gradient(135deg, #ec5d99, #ffae73); }
.icon-ugc { background: linear-gradient(135deg, #a78bfa, #6ee7e0); }
.card h3 { font-size: 1.5rem; font-weight: 700; }
.card-tag { font-size: 0.82rem; color: var(--pink); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.card > p { color: var(--text-dim); font-size: 0.98rem; }
.card-list { list-style: none; margin: 18px 0 22px; display: flex; flex-direction: column; gap: 9px; }
.card-list li { position: relative; padding-left: 24px; font-size: 0.93rem; color: var(--text); }
.card-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: var(--grad); }
.card-link { margin-top: auto; font-family: 'Sora'; font-weight: 600; color: var(--text); transition: color 0.15s; }
.card-link:hover { color: var(--pink); }

/* flow */
.flow { display: flex; align-items: stretch; justify-content: center; gap: 16px; flex-wrap: wrap; }
.flow-step { flex: 1; min-width: 220px; background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius); padding: 28px 24px; }
.flow-num { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--grad); color: #1a0f1f; font-family: 'Sora'; font-weight: 800; margin-bottom: 14px; }
.flow-step h4 { font-size: 1.18rem; margin-bottom: 8px; }
.flow-step p { color: var(--text-dim); font-size: 0.96rem; }
.flow-arrow { align-self: center; font-size: 1.6rem; color: var(--pink); }

/* benefits */
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 820px; margin: 0 auto; }
.benefit { background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius); padding: 26px; }
.benefit h4 { font-size: 1.15rem; margin-bottom: 8px; }
.benefit p { color: var(--text-dim); font-size: 0.96rem; }

/* cta */
.cta { text-align: center; max-width: 720px; margin: 0 auto; padding: 100px 24px; }
.cta h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; margin-bottom: 16px; }
.cta p { color: var(--text-dim); font-size: 1.15rem; margin-bottom: 32px; }

/* footer */
.footer { border-top: 1px solid var(--surface-border); max-width: var(--maxw); margin: 0 auto; padding: 40px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 24px; color: var(--text-dim); font-size: 0.93rem; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--text-dim); font-size: 0.85rem; width: 100%; text-align: center; margin-top: 8px; }

/* responsive */
@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .flow-arrow { transform: rotate(90deg); }
  .benefits { grid-template-columns: 1fr; }
}
