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

:root {
  --bg: #050508;
  --bg-2: #0c0c14;
  --surface: rgba(18, 18, 28, 0.75);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --primary: #8b5cf6;
  --primary-2: #a78bfa;
  --accent: #ec4899;
  --cyan: #22d3ee;
  --success: #34d399;
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1180px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 10% -10%, rgba(139, 92, 246, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 20%, rgba(236, 72, 153, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(34, 211, 238, 0.08), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-2); text-decoration: none; transition: color 0.2s; }
a:hover { color: #e9d5ff; }

.muted { color: var(--muted); }

.corp-mark {
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.product-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.45);
  text-decoration: none;
  color: inherit;
}

.product-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.product-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
  width: fit-content;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 960px) {
  .values-grid { grid-template-columns: 1fr; }
}

.timeline {
  max-width: 720px;
  margin: 0 auto;
  border-left: 2px solid var(--border);
  padding-left: 28px;
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
}

.timeline-year {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #c4b5fd;
  margin-bottom: 8px;
}

.timeline-item h3 {
  margin: 0 0 8px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  margin: 0;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.testimonial-card p {
  margin: 0 0 12px;
  font-style: italic;
  color: #e2e8f0;
}

.testimonial-card cite {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: normal;
}

.social-row a {
  color: var(--muted);
  font-size: 0.9rem;
}

.social-row a:hover {
  color: var(--text);
}

@media (max-width: 960px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.site-header.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.brand:hover { color: var(--text); text-decoration: none; }

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-desktop a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #db2777);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
  color: #fff;
  text-decoration: none;
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  text-decoration: none;
}

.btn-lg { padding: 16px 28px; font-size: 1rem; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 16px;
  background: rgba(5, 5, 8, 0.98);
  border-bottom: 1px solid var(--border);
  z-index: 199;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
}

.mobile-nav a:hover { background: rgba(255, 255, 255, 0.06); text-decoration: none; }

/* Hero */
.hero {
  padding: calc(var(--header-h) + 48px) 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #c4b5fd;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  font-weight: 800;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, #c4b5fd, #f472b6, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-visual {
  position: relative;
}

.phone-mock {
  position: relative;
  margin: 0 auto;
  width: min(100%, 320px);
  aspect-ratio: 9/18;
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(139, 92, 246, 0.2);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-2);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 60%);
  z-index: -1;
}

.floating-badge {
  position: absolute;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(12, 12, 20, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.floating-badge.b1 { top: 12%; right: -8%; }
.floating-badge.b2 { bottom: 18%; left: -12%; color: #6ee7b7; }

/* Stats */
.stats-bar {
  padding: 32px 0 64px;
}

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

.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.stat-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Sections */
section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-head-wide {
  max-width: 720px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light, #c4b5fd);
  margin-bottom: 10px;
}

.hero-lead-secondary {
  font-size: 1rem;
  color: #cbd5e1;
  max-width: 520px;
  margin: 0 0 24px;
  line-height: 1.7;
}

.section-muted {
  background: rgba(20, 20, 30, 0.6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.steps-list {
  max-width: 680px;
  margin: 0 auto;
  padding-left: 1.25rem;
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 1rem;
}

.steps-list li {
  margin-bottom: 16px;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s, border-color 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  background: var(--primary-dim, rgba(139, 92, 246, 0.15));
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Screenshots */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.shot-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 9/16;
  background: var(--bg-2);
  transition: transform 0.25s;
}

.shot-card:hover { transform: scale(1.02); }

.shot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(139, 92, 246, 0.5);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(18, 18, 28, 0.8));
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.15);
  transform: scale(1.03);
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.price-card .price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.price-card li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.price-card li::before {
  content: '✓ ';
  color: var(--success);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* CTA */
.cta-band {
  margin: 48px 0 0;
  padding: 56px 40px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(219, 39, 119, 0.15));
  border: 1px solid rgba(139, 92, 246, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 12px;
}

.cta-band p {
  color: var(--muted);
  margin: 0 0 28px;
}

/* Footer */
.site-footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 6px 0;
}

.footer-col a:hover { color: var(--text); text-decoration: none; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

/* Legal pages */
.page-hero {
  padding: calc(var(--header-h) + 40px) 0 40px;
}

.page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 12px;
}

.legal-content {
  padding-bottom: 80px;
}

.legal-content .prose {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  margin: 40px 0 12px;
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
  color: #cbd5e1;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content code {
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9em;
}

.page-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.75;
  margin-top: 12px;
}

.prose-wide {
  max-width: 820px;
  margin: 0 auto;
}

.prose-wide h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.prose-wide p {
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0 0 16px;
}

.faq-list .faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  margin-bottom: 12px;
  padding: 4px 18px;
}

.faq-list .faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
}

.faq-list .faq-item p {
  margin: 0 0 16px;
  color: #cbd5e1;
  line-height: 1.75;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .pricing-grid, .benefits-row { grid-template-columns: 1fr; }
  .hero-lead-secondary { margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-desktop, .header-cta .btn-ghost { display: none; }
  .menu-toggle { display: grid; place-items: center; }
}

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
