*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  background: #05070f;
  color: #eef1f8;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(5, 7, 15, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-weight: 800; letter-spacing: 2px; font-size: 22px;
  background: linear-gradient(90deg, #7c5cff, #29c4ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: #b8c1d9; font-size: 14px; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: 9px 18px;
  background: linear-gradient(135deg, #7c5cff, #29c4ff);
  border-radius: 8px;
  color: #fff !important;
  font-weight: 600; font-size: 14px;
}
@media (max-width: 768px) { .nav-links a:not(.nav-cta) { display: none; } }

/* GENERIC SECTIONS */
section { padding: 100px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.container.narrow { max-width: 820px; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-tag {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: #29c4ff; margin-bottom: 14px; font-weight: 600;
}
h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05; font-weight: 800;
  margin-bottom: 24px; letter-spacing: -2px;
}
h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 16px;
}
.gradient {
  background: linear-gradient(90deg, #7c5cff, #29c4ff, #7c5cff);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 5s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }
.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: #b8c1d9; max-width: 640px; margin: 0 auto 40px;
}
.section-sub { color: #b8c1d9; font-size: 17px; max-width: 600px; margin: 0 auto; }

/* PAGE HERO */
.page-hero {
  text-align: center;
  padding: 90px 24px 60px;
  background:
    radial-gradient(800px 400px at 30% 10%, rgba(124,92,255,0.18), transparent 60%),
    radial-gradient(700px 400px at 70% 20%, rgba(41,196,255,0.12), transparent 60%);
}

/* HERO (home) */
.hero {
  position: relative;
  padding: 100px 24px 80px;
  text-align: center;
  background:
    radial-gradient(800px 400px at 20% 10%, rgba(124,92,255,0.25), transparent 60%),
    radial-gradient(700px 400px at 80% 20%, rgba(41,196,255,0.18), transparent 60%);
}
.hero-inner { max-width: 880px; margin: 0 auto; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(124,92,255,0.15); color: #c8b8ff;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(124,92,255,0.3);
}
.pill::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: #29c4ff;
  box-shadow: 0 0 8px #29c4ff;
}

/* BUTTONS */
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.btn {
  padding: 14px 28px; border-radius: 12px;
  font-weight: 600; font-size: 15px;
  transition: transform .15s, box-shadow .25s;
  cursor: pointer; border: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary {
  background: linear-gradient(135deg, #7c5cff, #29c4ff);
  color: #fff;
  box-shadow: 0 10px 30px rgba(124,92,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(41,196,255,0.45); }
.btn-secondary {
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* MOCKUP */
.hero-mockup {
  max-width: 900px; margin: 40px auto 0;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(124,92,255,0.15), rgba(41,196,255,0.05));
  padding: 1px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.mockup-frame { background: #0c1024; border-radius: 15px; padding: 14px; }
.mockup-bar { display: flex; gap: 6px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 14px; }
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot.r { background: #ff5f57; } .mockup-dot.y { background: #febc2e; } .mockup-dot.g { background: #28c840; }
.mockup-content { display: grid; grid-template-columns: 200px 1fr; gap: 14px; min-height: 320px; }
.mockup-side { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 14px; }
.mockup-side div { height: 12px; background: rgba(255,255,255,0.08); border-radius: 4px; margin-bottom: 12px; }
.mockup-side div:nth-child(1) { width: 60%; background: linear-gradient(90deg, #7c5cff, #29c4ff); height: 14px; }
.mockup-side div:nth-child(2) { width: 90%; }
.mockup-side div:nth-child(3) { width: 75%; }
.mockup-side div:nth-child(4) { width: 85%; }
.mockup-main { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mockup-card { background: rgba(255,255,255,0.04); border-radius: 8px; padding: 14px; }
.mockup-card .num { font-size: 22px; font-weight: 700; background: linear-gradient(90deg, #7c5cff, #29c4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 4px; }
.mockup-card .lbl { font-size: 11px; color: #8a96b8; }
.mockup-chart { grid-column: span 3; height: 140px; background: linear-gradient(180deg, rgba(124,92,255,0.15) 0%, transparent 100%); border-radius: 8px; position: relative; overflow: hidden; }
.mockup-chart::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(180deg, transparent, rgba(41,196,255,0.1)); clip-path: polygon(0 100%, 0 60%, 10% 50%, 20% 65%, 30% 40%, 40% 50%, 50% 30%, 60% 35%, 70% 20%, 80% 25%, 90% 10%, 100% 15%, 100% 100%); }
@media (max-width: 768px) { .mockup-content { grid-template-columns: 1fr; } .mockup-side { display: none; } }

/* TRUST */
.trust { padding: 60px 24px; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.trust-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.trust-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #6b7595; margin-bottom: 24px; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 50px; opacity: 0.6; }
.logos span { font-weight: 700; letter-spacing: 1px; color: #97a2bf; font-size: 18px; }

/* FEATURES */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 32px;
  transition: transform .25s, border-color .25s, background .25s;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(124,92,255,0.4); background: rgba(124,92,255,0.05); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(124,92,255,0.2), rgba(41,196,255,0.2));
  border: 1px solid rgba(124,92,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.feature h3 { font-size: 19px; margin-bottom: 10px; }
.feature p { color: #97a2bf; font-size: 15px; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; counter-reset: step; }
.step {
  position: relative; padding: 32px 24px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute; top: -22px; left: 24px;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #7c5cff, #29c4ff);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: #fff;
  box-shadow: 0 8px 24px rgba(124,92,255,0.4);
}
.step h3 { font-size: 18px; margin: 12px 0 8px; }
.step p { color: #97a2bf; font-size: 14px; }

/* STATS */
.stats-bg { background: linear-gradient(135deg, rgba(124,92,255,0.08), rgba(41,196,255,0.08)); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; text-align: center; }
.stat-num {
  font-size: clamp(36px, 5vw, 52px); font-weight: 800;
  background: linear-gradient(90deg, #7c5cff, #29c4ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stat-lbl { color: #97a2bf; font-size: 14px; }

/* PRICING */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 36px 28px; position: relative;
  transition: transform .25s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { border-color: rgba(124,92,255,0.5); background: linear-gradient(180deg, rgba(124,92,255,0.08), rgba(41,196,255,0.04)); }
.price-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -12px;
  left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #7c5cff, #29c4ff);
  padding: 5px 14px; font-size: 10px; letter-spacing: 1.5px;
  font-weight: 700; border-radius: 999px;
}
.price-name { font-size: 14px; color: #97a2bf; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.price-amount { font-size: 44px; font-weight: 800; margin-bottom: 4px; }
.price-amount span { font-size: 16px; color: #97a2bf; font-weight: 400; }
.price-desc { color: #b8c1d9; font-size: 14px; margin-bottom: 24px; min-height: 42px; }
.price-list { list-style: none; margin-bottom: 28px; }
.price-list li { padding: 8px 0; font-size: 14px; color: #d6dceb; display: flex; align-items: center; gap: 10px; }
.price-list li::before { content: '✓'; color: #29c4ff; font-weight: 700; }
.price-card .btn { width: 100%; justify-content: center; }

/* TESTIMONIALS */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.quote { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 28px; }
.quote-stars { color: #ffd44d; margin-bottom: 14px; letter-spacing: 2px; }
.quote-text { color: #d6dceb; margin-bottom: 20px; font-size: 15px; line-height: 1.6; }
.quote-person { display: flex; align-items: center; gap: 12px; }
.quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #7c5cff, #29c4ff);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.quote-name { font-weight: 600; font-size: 14px; }
.quote-title { color: #97a2bf; font-size: 12px; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-q { padding: 22px 0; font-weight: 600; font-size: 16px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; transition: color .2s; }
.faq-q:hover { color: #29c4ff; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 24px; color: #97a2bf; transition: transform .2s; }
details[open] .faq-q::after { content: '−'; }
.faq-a { color: #b8c1d9; font-size: 15px; padding-bottom: 22px; }

/* CTA SECTION */
.cta-section { background: radial-gradient(600px 300px at 50% 50%, rgba(124,92,255,0.15), transparent 60%); text-align: center; }
.cta-card {
  max-width: 720px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(124,92,255,0.1), rgba(41,196,255,0.06));
  border: 1px solid rgba(124,92,255,0.2);
  border-radius: 24px; padding: 60px 40px;
}
.cta-card h2 { margin-bottom: 16px; }
.cta-card p { color: #b8c1d9; margin-bottom: 32px; font-size: 17px; }

/* PROSE (long-form text on legal/about pages) */
.prose h2 { font-size: 22px; margin: 40px 0 14px; letter-spacing: -0.5px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: #c5cce0; margin-bottom: 16px; font-size: 16px; }
.prose a { color: #29c4ff; text-decoration: underline; text-underline-offset: 3px; }
.prose .bullets { list-style: none; padding: 0; margin: 0 0 20px; }
.prose .bullets li {
  position: relative; padding: 8px 0 8px 28px;
  color: #c5cce0; font-size: 16px;
}
.prose .bullets li::before {
  content: '→'; position: absolute; left: 0; top: 8px;
  color: #29c4ff; font-weight: 700;
}

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 22px;
}
.info-card .feature-icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 14px; }
.info-card h3 { font-size: 16px; margin-bottom: 6px; }
.info-card p { font-size: 13px; color: #97a2bf; margin-bottom: 12px; }
.info-link { font-size: 13px; color: #29c4ff; font-weight: 600; }
.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 32px;
}
.contact-form h3 { margin-bottom: 20px; font-size: 19px; }
.contact-form label { display: block; margin-bottom: 16px; font-size: 13px; color: #97a2bf; font-weight: 500; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 11px 14px;
  color: #fff; font-size: 14px;
  font-family: inherit;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: #7c5cff;
}
.contact-form textarea { resize: vertical; }

/* BLOG */
.blog-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: #29c4ff;
  margin-bottom: 12px; font-weight: 600;
}
.blog-featured {
  background: linear-gradient(135deg, rgba(124,92,255,0.1), rgba(41,196,255,0.05));
  border: 1px solid rgba(124,92,255,0.2);
  border-radius: 20px; padding: 40px;
  margin-bottom: 50px;
}
.blog-featured h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.blog-featured p { color: #b8c1d9; font-size: 16px; margin-bottom: 18px; }
.blog-meta { color: #6b7595; font-size: 13px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
  transition: transform .25s, border-color .25s;
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(124,92,255,0.4); }
.blog-img { height: 180px; }
.blog-img.g1 { background: linear-gradient(135deg, #7c5cff, #29c4ff); }
.blog-img.g2 { background: linear-gradient(135deg, #ff5e7e, #ffaa5e); }
.blog-img.g3 { background: linear-gradient(135deg, #29c4ff, #5eff9e); }
.blog-img.g4 { background: linear-gradient(135deg, #b35eff, #ff5eaa); }
.blog-img.g5 { background: linear-gradient(135deg, #ffd44d, #ff8e5e); }
.blog-img.g6 { background: linear-gradient(135deg, #5e7eff, #b35eff); }
.blog-card .blog-tag,
.blog-card h3,
.blog-card p,
.blog-card .blog-meta { padding: 0 24px; }
.blog-card .blog-tag { padding-top: 24px; }
.blog-card h3 { font-size: 18px; margin: 8px 0 10px; }
.blog-card p { color: #97a2bf; font-size: 14px; margin-bottom: 16px; }
.blog-card .blog-meta { padding-bottom: 24px; }

/* FOOTER */
footer { padding: 60px 24px 30px; border-top: 1px solid rgba(255,255,255,0.06); background: #03040a; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 50px;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #97a2bf; margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; color: #b8c1d9; font-size: 14px; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-about { font-size: 14px; color: #97a2bf; margin-top: 16px; max-width: 280px; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  color: #6b7595; font-size: 13px;
}
