:root {
  --primary: #1f1978;
  --primary-light: #4a3fb0;
  --accent: #22c55e;
  --bg: #f7f7fa;
  --bg-card: #fff;
  --text: #1a1a2e;
  --text-muted: #6b6b80;
  --text-light: #8e8ea8;
  --border: #e8e8ef;
  --max-width: 1140px;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(31, 25, 120, 0.06);
  --shadow-md: 0 2px 12px rgba(31, 25, 120, 0.08);
  --shadow-lg: 0 8px 32px rgba(31, 25, 120, 0.14);
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { opacity: 0.75; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 16px;
  font-weight: 700;
}
h1 { font-size: 44px; letter-spacing: -0.02em; }
h2 { font-size: 32px; letter-spacing: -0.015em; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
p { margin: 0 0 16px; color: var(--text); }
.muted { color: var(--text-muted); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-bg { background: var(--bg); }
.section-dark { background: #0f0d2e; color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.85); }
.align-center { text-align: center; }
.align-left { text-align: left; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--max-width); margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--primary); }
.nav-logo img { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 14px; }
.nav-cta {
  background: var(--primary); color: #fff !important;
  padding: 8px 18px; border-radius: 6px; font-weight: 600;
}
.nav-cta:hover { background: var(--primary-light); opacity: 1; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 24px; color: var(--primary); }

.nav-dropdown { position: relative; }
.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  padding-right: 14px;
  position: relative;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after {
  content: "▾";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 9px; color: var(--text-muted);
}
.nav-dropdown[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: -16px;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: 8px 0; margin: 0;
  list-style: none;
  z-index: 60;
}
.nav-dropdown-menu li { padding: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text);
}
.nav-dropdown-menu a:hover { background: var(--bg); opacity: 1; }
@media (max-width: 800px) {
  .nav-dropdown summary::after { display: none; }
  .nav-dropdown[open] .nav-dropdown-menu {
    position: static; box-shadow: none; border: 0;
    padding: 4px 0 4px 12px; min-width: 0;
  }
  .nav-dropdown:not([open]) .nav-dropdown-menu { display: none; }
}
@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; right: 24px; left: 24px;
    background: #fff; padding: 16px 20px; gap: 16px;
    border: 1px solid var(--border); border-radius: 8px;
    box-shadow: var(--shadow-md);
  }
}

.hero {
  background: linear-gradient(135deg, #1f1978 0%, #4a3fb0 100%);
  color: #fff;
  padding: 96px 0 104px;
  text-align: center;
}
.hero h1 { color: #fff; font-size: 60px; letter-spacing: -0.025em; line-height: 1.08; margin: 0 auto 24px; max-width: 900px; }
.hero .lead {
  color: rgba(255,255,255,0.92);
  font-size: 20px; line-height: 1.5;
  margin: 0 auto 32px; max-width: 720px;
}
.hero-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 4px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.18); color: #fff;
  margin-bottom: 20px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer; transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); opacity: 1; }
.btn-primary { background: var(--primary); color: #fff !important; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); }
.btn-light { background: #fff; color: var(--primary) !important; border-color: #fff; }
.btn-light:hover { background: #f0f0f5; }
.btn-outline-light { background: transparent; color: #fff !important; border-color: rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }
.btn-outline { background: transparent; color: var(--primary) !important; border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff !important; }
.btn-lg { padding: 14px 28px; font-size: 16px; }

.steps {
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f1978 0%, #4a3fb0 100%);
  color: #fff; font-weight: 700; font-size: 16px;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }

.features {
  display: grid; gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 800px) { .features { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, #1f1978 0%, #4a3fb0 100%);
  color: #fff; font-size: 22px; margin-bottom: 16px;
}
.feature-card h3 { color: var(--primary); margin-bottom: 10px; }
.feature-card ul { list-style: none; padding: 0; margin: 12px 0 0; }
.feature-card ul li {
  padding: 5px 0 5px 24px;
  position: relative;
  color: var(--text);
  font-size: 15px;
}
.feature-card ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 5px;
  color: var(--accent); font-weight: 700;
}

.integrations-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) { .integrations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .integrations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .integrations-grid { grid-template-columns: 1fr; } }
.integration-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
}
.integration-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary-light);
  opacity: 1;
}
.integration-card.is-soon { background: #fafafd; }
.integration-card.is-soon:hover { border-color: var(--accent); }
.integration-logo {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 20px; font-weight: 700; color: var(--primary);
  overflow: hidden;
}
.integration-logo img {
  width: 32px; height: 32px;
  object-fit: contain;
  display: block;
}
.integration-card.is-soon .integration-logo { opacity: 0.55; }
.integration-card h3 {
  font-size: 16px; margin: 0 0 4px;
  color: var(--text); font-weight: 700;
}
.integration-card p {
  font-size: 13px; margin: 0;
  color: var(--text-muted); line-height: 1.45;
}
.status-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 3px 8px; border-radius: 12px;
}
.status-live { background: rgba(34,197,94,0.12); color: #166534; }
.status-soon { background: rgba(31,25,120,0.08); color: var(--primary); }

.search-bar { max-width: 540px; margin: 0 auto 40px; position: relative; }
.search-bar input {
  width: 100%; box-sizing: border-box;
  padding: 14px 18px 14px 44px;
  font: inherit; font-size: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.search-bar input:focus { outline: 2px solid var(--primary-light); outline-offset: 1px; }
.search-bar::before {
  content: "⌕";
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted); font-size: 22px;
}
.search-empty { text-align: center; color: var(--text-muted); padding: 40px 0; display: none; }
.is-hidden { display: none !important; }

.pricing {
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 800px) { .pricing { grid-template-columns: 1fr; } }
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}
.price-card.featured { border-color: var(--primary); box-shadow: var(--shadow-md); }
.price-tag { font-size: 36px; font-weight: 700; color: var(--primary); margin: 16px 0; }
.price-tag small { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.price-card ul { text-align: left; list-style: none; padding: 0; margin: 24px 0; }
.price-card li { padding: 6px 0 6px 22px; position: relative; font-size: 14px; }
.price-card li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}

.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--primary); font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { padding: 0 0 18px; color: var(--text-muted); }

.cta-band {
  background: linear-gradient(135deg, #1f1978 0%, #4a3fb0 100%);
  color: #fff;
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
  margin: 24px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 24px; }

footer.site-footer {
  background: #0f0d2e;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
  margin-top: 40px;
}
footer.site-footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
footer.site-footer a { color: rgba(255,255,255,0.7); font-size: 14px; }
footer.site-footer a:hover { color: #fff; opacity: 1; }
footer.site-footer ul { list-style: none; padding: 0; margin: 0; }
footer.site-footer ul li { padding: 4px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-bottom {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px; color: rgba(255,255,255,0.5);
  text-align: center;
}

.screenshot {
  margin: 40px auto 0;
  max-width: 960px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 12px;
}

.lead { font-size: 19px; color: var(--text-muted); line-height: 1.55; max-width: 720px; }
.lead-center { margin-left: auto; margin-right: auto; text-align: center; }

.logos-section { padding: 28px 0 56px; }
.logos-label {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-align: center;
  font-weight: 600;
}
.logos-row {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 32px 56px;
}
.logos-row img {
  height: 30px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: opacity 0.2s, filter 0.2s;
}
.logos-row img:hover { opacity: 1; filter: grayscale(0); }

.contact-massive {
  background: linear-gradient(135deg, #1f1978 0%, #4a3fb0 100%);
  color: #fff;
  padding: 104px 24px 112px;
  text-align: center;
}
.contact-massive .eyebrow {
  color: rgba(255,255,255,0.75);
}
.contact-massive h2 {
  color: #fff;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 8px 0 36px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.contact-email {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 64px;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: -0.025em;
  text-decoration: none;
  border-bottom: 4px solid rgba(255,255,255,0.35);
  padding: 4px 0 10px;
  transition: border-color 0.2s;
  word-break: break-word;
}
.contact-email:hover { border-color: #fff; opacity: 1; }
.contact-sub {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  line-height: 1.55;
  margin: 36px auto 32px;
  max-width: 560px;
}
.contact-massive .btn-light { background: #fff; color: var(--primary) !important; }
@media (max-width: 800px) {
  .contact-massive { padding: 64px 24px 72px; }
  .contact-massive h2 { font-size: 28px; }
  .contact-email { font-size: 30px; }
  .contact-sub { font-size: 16px; }
}

.intro-prose { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.75; color: var(--text-muted); }

@media (max-width: 800px) {
  .hero { padding: 64px 0 72px; }
  .hero h1 { font-size: 38px; line-height: 1.12; }
  .hero .lead { font-size: 17px; }
  .section { padding: 56px 0; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
}
