:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #101114;
  --muted: #686b73;
  --line: #e8e9ee;
  --accent: #6756ff;
  --accent-dark: #4a39d8;
  --accent-soft: #efedff;
  --dark: #11131a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 248, 251, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232,233,238,.8);
}
.nav-wrap { height: 76px; display: flex; align-items: center; gap: 32px; }
.brand { font-size: 21px; font-weight: 800; letter-spacing: .18em; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a, .footer-right a { color: var(--muted); font-size: 14px; font-weight: 600; }
.nav a:hover, .footer-right a:hover { color: var(--text); }
.menu-button { display: none; margin-left: auto; border: 0; background: transparent; font-size: 24px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  background: var(--text);
  color: #fff;
  font-weight: 700;
  transition: .2s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); background: #262832; }
.button-small { min-height: 42px; padding: 0 18px; border-radius: 12px; font-size: 14px; }
.button-full { width: 100%; }
.button-light { background: #fff; color: var(--text); }
.button-light:hover { background: #f2f2f5; }
.text-link { font-weight: 700; display: inline-flex; gap: 8px; align-items: center; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; padding: 98px 0 84px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { font-size: 13px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; color: var(--accent); margin-bottom: 18px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(46px, 6.4vw, 78px); line-height: 1.02; letter-spacing: -.055em; margin-bottom: 26px; }
h1 span { color: var(--accent); }
.hero-text { font-size: 19px; color: var(--muted); max-width: 660px; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin: 34px 0 22px; }
.hero-note { font-size: 13px; color: #858890; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(12px); opacity: .75; }
.hero-glow-one { width: 460px; height: 460px; background: radial-gradient(circle, rgba(103,86,255,.16), transparent 70%); right: 5%; top: 5%; }
.hero-glow-two { width: 380px; height: 380px; background: radial-gradient(circle, rgba(90,185,255,.12), transparent 70%); left: -8%; bottom: -10%; }

.dashboard-card {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 28px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 30px 80px rgba(49,41,120,.14);
  backdrop-filter: blur(24px);
  padding: 24px;
  transform: rotate(1deg);
}
.dashboard-top, .chart-head, .lead-row { display: flex; align-items: center; justify-content: space-between; }
.dashboard-brand { font-size: 11px; letter-spacing: .18em; font-weight: 800; color: var(--accent); }
.dashboard-title { font-size: 18px; font-weight: 800; margin-top: 3px; }
.status-pill { background: #ecfff2; color: #21884b; border-radius: 999px; padding: 7px 11px; font-size: 12px; font-weight: 700; }
.status-pill span { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #32c267; }
.metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0 12px; }
.metric-card, .chart-card, .lead-list { border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.metric-card { padding: 18px; }
.metric-label, .metric-change, .chart-head, .lead-row span { font-size: 12px; color: var(--muted); }
.metric-value { font-size: 30px; font-weight: 800; letter-spacing: -.04em; margin: 8px 0 2px; }
.metric-change { color: #4d8f65; }
.chart-card { padding: 18px; }
.chart-head { font-weight: 700; }
.chart-bars { height: 128px; display: flex; align-items: end; gap: 8px; margin-top: 22px; }
.chart-bars span { flex: 1; border-radius: 8px 8px 3px 3px; background: linear-gradient(180deg, #8074ff, #c9c5ff); }
.lead-list { margin-top: 12px; padding: 6px 14px; }
.lead-row { justify-content: flex-start; gap: 12px; padding: 12px 0; }
.lead-row + .lead-row { border-top: 1px solid var(--line); }
.lead-row div:nth-child(2) { display: flex; flex-direction: column; }
.lead-avatar { width: 34px; height: 34px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.lead-row strong { font-size: 13px; }
.lead-time { margin-left: auto; }

.logo-strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-strip-inner { min-height: 86px; display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; gap: 18px; }
.logo-strip span { text-align: center; color: #8b8e96; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.section { padding: 112px 0; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading h2, .platform-copy h2, .pricing-copy h2, .cta-card h2 { font-size: clamp(36px, 5vw, 58px); line-height: 1.08; letter-spacing: -.045em; margin-bottom: 20px; }
.section-heading p, .platform-copy p, .pricing-copy p, .cta-card p { color: var(--muted); font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 30px; min-height: 260px; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.feature-card-accent { background: var(--dark); color: #fff; border-color: var(--dark); }
.feature-card h3 { font-size: 22px; margin: 32px 0 12px; }
.feature-card p { color: var(--muted); }
.feature-card-accent p { color: #b8bbc5; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: var(--accent-soft); color: var(--accent); font-size: 12px; font-weight: 800; }
.feature-card-accent .feature-icon { background: rgba(255,255,255,.1); color: #fff; }

.platform-section { background: #fff; }
.platform-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 80px; }
.check-list { padding: 0; margin: 30px 0 0; list-style: none; display: grid; gap: 16px; }
.check-list li { display: flex; gap: 12px; align-items: center; font-weight: 600; }
.check-list span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-size: 13px; }
.platform-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.phone-shell { width: 290px; height: 560px; padding: 12px; border-radius: 44px; background: #161820; box-shadow: 0 30px 70px rgba(16,17,20,.22); transform: rotate(3deg); }
.phone-notch { width: 92px; height: 22px; background: #161820; border-radius: 0 0 14px 14px; margin: -1px auto -11px; position: relative; z-index: 2; }
.phone-screen { height: 100%; border-radius: 34px; padding: 42px 20px 20px; background: linear-gradient(180deg, #f9f9ff, #ece9ff); }
.mobile-brand { font-size: 13px; letter-spacing: .16em; font-weight: 800; }
.mobile-welcome { margin: 22px 0 16px; font-size: 22px; font-weight: 800; }
.mobile-stat, .mobile-panel { background: #fff; border-radius: 18px; padding: 18px; margin-top: 12px; box-shadow: 0 12px 30px rgba(91,77,190,.09); }
.mobile-stat { display: flex; align-items: center; justify-content: space-between; }
.mobile-stat span { font-size: 13px; color: var(--muted); }
.mobile-stat strong { font-size: 24px; }
.mobile-panel { margin-top: 20px; }
.mobile-panel span { font-size: 12px; font-weight: 700; }
.mobile-line { height: 11px; background: #e3e0ff; border-radius: 999px; margin-top: 18px; }
.mobile-line.short { width: 74%; }
.mobile-line.shorter { width: 54%; }
.floating-card { position: absolute; z-index: 3; width: 220px; padding: 18px; background: rgba(255,255,255,.95); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 50px rgba(54,47,116,.12); }
.floating-card span, .floating-card small { display: block; color: var(--muted); }
.floating-card strong { display: block; margin: 4px 0; }
.mini-label { font-size: 11px; font-weight: 800; color: var(--accent) !important; text-transform: uppercase; letter-spacing: .1em; }
.card-one { left: 0; top: 88px; }
.card-two { right: 0; bottom: 84px; }

.process-section { background: var(--dark); color: #fff; }
.compact-heading { margin-bottom: 56px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; }
.process-step span { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); color: #c7c2ff; font-weight: 800; }
.process-step h3 { font-size: 22px; margin: 22px 0 10px; }
.process-step p { color: #aaadb8; }

.pricing-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.pricing-card { background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 34px; box-shadow: 0 26px 60px rgba(38,33,85,.08); }
.pricing-badge { display: inline-block; padding: 7px 11px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-size: 12px; font-weight: 800; }
.pricing-card h3 { font-size: 28px; margin: 24px 0 8px; }
.price-note { color: var(--muted); }
.pricing-card ul { padding: 0; margin: 28px 0; list-style: none; display: grid; gap: 14px; }
.pricing-card li::before { content: "✓"; color: var(--accent); font-weight: 900; margin-right: 10px; }

.cta-section { padding-top: 30px; }
.cta-card { background: linear-gradient(135deg, #6251f6, #4030bb); color: #fff; border-radius: 34px; padding: 58px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.eyebrow.light { color: #d9d5ff; }
.cta-card p { color: #dedcff; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form label span { font-size: 12px; font-weight: 700; color: #e7e5ff; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; background: rgba(255,255,255,.11); color: #fff; padding: 14px 15px; outline: none; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #c8c4ed; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #fff; }
.full-field { grid-column: 1 / -1; }
.form-note { font-size: 11px; color: #d1cdf2; text-align: center; }

.site-footer { padding: 50px 0; }
.footer-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.footer-brand { margin-bottom: 10px; }
.footer-inner p { color: var(--muted); font-size: 14px; margin: 0; }
.footer-right { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; color: var(--muted); font-size: 13px; }

@media (max-width: 920px) {
  .nav { display: none; position: absolute; top: 76px; left: 20px; right: 20px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; flex-direction: column; box-shadow: 0 18px 40px rgba(20,20,40,.08); }
  .nav.open { display: flex; }
  .nav-wrap > .button-small { display: none; }
  .menu-button { display: block; }
  .hero-grid, .platform-grid, .pricing-grid, .cta-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 54px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .platform-grid { gap: 50px; }
  .pricing-grid { gap: 42px; }
  .cta-card { padding: 42px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero { padding: 72px 0 60px; }
  h1 { font-size: 48px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .dashboard-card { padding: 16px; border-radius: 22px; transform: none; }
  .metrics-grid, .feature-grid, .process-grid, .contact-form { grid-template-columns: 1fr; }
  .logo-strip-inner { grid-template-columns: repeat(3, 1fr); padding: 20px 0; row-gap: 24px; }
  .section { padding: 84px 0; }
  .platform-visual { min-height: 520px; overflow: hidden; }
  .phone-shell { width: 260px; height: 520px; }
  .floating-card { width: 188px; }
  .card-one { left: -20px; }
  .card-two { right: -20px; }
  .cta-card { padding: 30px 22px; border-radius: 24px; }
  .full-field { grid-column: auto; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 8px; }
.footer-brand .brand-mark { width: 28px; height: 28px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-success { padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.26); color: #fff; font-weight: 600; }
