
:root {
  --bg: #0b1220;
  --bg-soft: #0f1b31;
  --page: linear-gradient(180deg, #eef5ff 0%, #f7fbff 45%, #ffffff 100%);
  --surface: rgba(255,255,255,.9);
  --surface-strong: rgba(255,255,255,.96);
  --text: #0f2038;
  --muted: #53657e;
  --line: rgba(15,23,42,.08);
  --line-strong: rgba(15,23,42,.14);
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #0ea5e9;
  --ok: #16a34a;
  --shadow: 0 26px 60px rgba(2,6,23,.14);
  --shadow-soft: 0 14px 28px rgba(2,6,23,.08);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --nav-height: 78px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, rgba(59,130,246,.16), transparent 24%), radial-gradient(circle at bottom left, rgba(14,165,233,.12), transparent 28%), var(--page);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
.container { width: min(calc(100% - 32px), 1240px); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 12px; }
.skip-link:focus { left: 12px; background: white; padding: 10px 14px; border-radius: 10px; z-index: 1000; }
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.74); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(15,23,42,.06);
}
.site-header .container { min-height: var(--nav-height); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.brand img { height: 46px; width: auto; }
.nav-toggle {
  display: none; border: 1px solid var(--line-strong); background: white; border-radius: 12px; padding: 10px 12px; font-weight: 700;
}
.main-nav ul { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 22px; }
.main-nav a { font-weight: 600; color: #1e293b; }
.main-nav .nav-cta { padding: 12px 16px; border-radius: 14px; background: var(--primary); color: white; box-shadow: 0 12px 24px rgba(37,99,235,.22); }
.hero { padding: 58px 0 32px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 38px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 999px; background: rgba(37,99,235,.08); color: var(--primary-dark); font-weight: 700;
}
.eyebrow::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1.04; margin: 18px 0 18px; }
.hero p.lead { font-size: 1.14rem; line-height: 1.72; color: var(--muted); margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 20px; border-radius: 16px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; box-shadow: 0 16px 30px rgba(37,99,235,.24); }
.btn-secondary { background: white; color: var(--text); border: 1px solid var(--line-strong); box-shadow: var(--shadow-soft); }
.btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,.28); color: white; }
.badge-list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 12px; }
.badge-list li { padding: 10px 14px; border-radius: 14px; background: rgba(255,255,255,.82); border: 1px solid rgba(15,23,42,.06); color: #27405f; font-weight: 600; }
.glass-card { background: var(--surface); border: 1px solid rgba(255,255,255,.72); box-shadow: var(--shadow); border-radius: 32px; overflow: hidden; backdrop-filter: blur(18px); }
.hero-shot { padding: 18px; position: relative; }
.hero-shot picture { display: block; width: 100%; }
.window-bar { display: flex; align-items: center; gap: 8px; padding: 4px 0 16px 4px; }
.window-dot { width: 12px; height: 12px; border-radius: 50%; }
.window-dot:nth-child(1) { background: #ef4444; }
.window-dot:nth-child(2) { background: #f59e0b; }
.window-dot:nth-child(3) { background: #10b981; }
.hero-shot img { width: 100%; height: auto; max-height: none; object-fit: contain; aspect-ratio: auto; border-radius: 22px; box-shadow: 0 18px 34px rgba(15,23,42,.16); }
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px; }
.stat-card { background: rgba(255,255,255,.84); border-radius: 22px; padding: 18px; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.stat-card strong { display: block; font-size: 1.62rem; margin-bottom: 6px; }
.stat-card span { color: var(--muted); font-size: .96rem; }
.section { padding: 48px 0; }
.section-title { text-align: center; max-width: 780px; margin: 0 auto 36px; }
.section-title h2 { margin: 0 0 14px; font-size: clamp(1.95rem, 3vw, 3rem); }
.section-title p { margin: 0; color: var(--muted); line-height: 1.72; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { background: rgba(255,255,255,.88); border: 1px solid rgba(15,23,42,.07); border-radius: 24px; padding: 22px; box-shadow: var(--shadow-soft); }
.feature-icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 16px; background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(14,165,233,.16)); color: var(--primary-dark); font-size: 1.22rem; font-weight: 800; }
.feature-card h3 { margin: 0 0 10px; font-size: 1.12rem; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.highlight-band { background: linear-gradient(135deg, #0f172a, #14213c 58%, #123158); color: white; border-radius: 36px; padding: 34px; box-shadow: var(--shadow); }
.highlight-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: center; }
.highlight-band h2 { margin: 0 0 16px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.highlight-band p, .highlight-band li { color: rgba(255,255,255,.88); line-height: 1.7; }
.highlight-band .card {
  background: #f8fafc;
  color: var(--text);
  border-color: rgba(255,255,255,.18);
}
.highlight-band .card h3 { color: var(--text); }
.highlight-band .card p { color: var(--muted); }


/* High-contrast card inside the dark highlight section */
.highlight-band .use-cases-card {
  background: #ffffff !important;
  color: #0f2038 !important;
  border: 1px solid rgba(15, 23, 42, .10) !important;
}
.highlight-band .use-cases-card h3 { color: #0f2038 !important; }
.highlight-band .use-cases-card p,
.highlight-band .use-cases-card strong { color: #334155 !important; }

.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: #7dd3fc; font-weight: 800; }
.card { background: rgba(255,255,255,.88); border-radius: 28px; border: 1px solid rgba(15,23,42,.07); padding: 26px; box-shadow: var(--shadow-soft); }
.screenshot-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.shot-card { background: rgba(255,255,255,.9); border: 1px solid rgba(15,23,42,.08); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-soft); }
.shot-card picture { display: block; padding: 16px; background: #f4f8fc; }
.shot-card img { display: block; width: 100%; height: auto; max-height: none; aspect-ratio: auto; object-fit: contain; cursor: zoom-in; border-radius: 16px; }
.shot-content { padding: 18px 18px 22px; }
.shot-content h3 { margin: 0 0 8px; font-size: 1.12rem; }
.shot-content p { margin: 0; color: var(--muted); line-height: 1.65; }
.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { padding: 24px; border-radius: 24px; background: rgba(255,255,255,.88); border: 1px solid rgba(15,23,42,.08); box-shadow: var(--shadow-soft); }
.step-number { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; font-weight: 800; }
.step-card h3 { margin: 0 0 8px; }
.step-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.faq-item + .faq-item { margin-top: 12px; }
.faq-item summary { list-style: none; cursor: pointer; font-weight: 700; padding: 18px 22px; border-radius: 18px; background: rgba(255,255,255,.74); border: 1px solid rgba(15,23,42,.07); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { background: white; }
.faq-item .faq-answer { padding: 12px 22px 6px; color: var(--muted); line-height: 1.7; }
.cta-box { background: linear-gradient(135deg, rgba(37,99,235,.96), rgba(14,165,233,.92)); color: white; border-radius: 34px; padding: 34px; box-shadow: 0 28px 60px rgba(37,99,235,.26); }
.cta-box h2 { margin: 0 0 14px; font-size: clamp(1.9rem, 3vw, 2.8rem); }
.cta-box p { margin: 0 0 24px; color: rgba(255,255,255,.9); line-height: 1.75; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.site-footer { padding: 22px 0 50px; color: var(--muted); font-size: .96rem; }
.footer-grid { display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.modal { position: fixed; inset: 0; z-index: 90; display: none; place-items: center; padding: 24px; background: rgba(2,6,23,.84); backdrop-filter: blur(10px); }
.modal.open { display: grid; }
.modal-inner { width: min(1400px, calc(100vw - 24px)); position: relative; }
.modal img { width: 100%; border-radius: 24px; box-shadow: 0 24px 60px rgba(0,0,0,.36); }
.modal-close { position: absolute; top: -14px; right: -4px; width: 44px; height: 44px; border-radius: 999px; border: 0; background: white; font-size: 24px; cursor: pointer; }
@media (max-width: 1100px) {
  .hero-grid, .highlight-grid, .two-col { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .stat-strip, .screenshot-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 780px) {
  .main-nav { position: absolute; left: 12px; right: 12px; top: calc(var(--nav-height) - 2px); background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-soft); padding: 12px; display: none; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 8px; }
  .main-nav a { display: block; padding: 12px 14px; border-radius: 14px; }
  .main-nav .nav-cta { text-align: center; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .features-grid, .steps, .stat-strip, .screenshot-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
  .hero { padding-top: 34px; }
  .cta-actions, .hero-actions { flex-direction: column; }
}
