:root {
  --bg: #f5f7fb;
  --panel: #ffffff;
  --muted: #61708a;
  --text: #0d1728;
  --line: #dfe6f1;
  --primary: #3767ff;
  --primary-soft: #edf2ff;
  --dark: #0f172a;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(55,103,255,0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(41,195,255,0.09), transparent 23%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
.site-shell { width: min(1220px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 16px; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  margin: 16px 0 24px; padding: 14px 18px;
  background: rgba(255,255,255,0.84); backdrop-filter: blur(16px);
  border: 1px solid rgba(223,230,241,0.9); border-radius: 999px; box-shadow: var(--shadow);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, #3767ff, #58b7ff); color: white; font-weight: 800;
}
.brand strong { display: block; font-size: 0.98rem; }
.brand small { color: var(--muted); display: block; margin-top: 2px; }
.nav { display: flex; gap: 24px; color: var(--muted); font-weight: 500; }
.nav a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; padding: 14px 20px; font-weight: 700; transition: 0.25s ease;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 18px 40px rgba(55,103,255,0.28); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-light { background: white; border: 1px solid var(--line); }
.btn-dark { background: var(--dark); color: white; }
.hero {
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 34px; align-items: center;
  padding: 44px 0 50px;
}
.eyebrow {
  display: inline-flex; padding: 9px 14px; border-radius: 999px;
  background: var(--primary-soft); color: var(--primary); font-size: 0.84rem; font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.1rem); line-height: 0.95; letter-spacing: -0.05em; margin: 0;
}
.hero h1 span { color: var(--primary); }
.hero-text { font-size: 1.08rem; line-height: 1.78; color: var(--muted); max-width: 700px; margin: 22px 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.metrics { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.metrics div {
  min-width: 150px; padding: 16px 18px; background: rgba(255,255,255,0.78); border: 1px solid var(--line);
  border-radius: 20px;
}
.metrics strong { display: block; font-size: 1.6rem; margin-bottom: 4px; }
.metrics span { color: var(--muted); }
.hero-visual { position: relative; min-height: 640px; }
.dashboard-card.main {
  position: absolute; inset: 22px 0 0 10px; background: rgba(255,255,255,0.88);
  border: 1px solid rgba(223,230,241,0.9); border-radius: 34px; padding: 18px; box-shadow: var(--shadow);
}
.window-bar { display: flex; gap: 8px; margin-bottom: 16px; }
.window-bar span { width: 10px; height: 10px; border-radius: 999px; background: #d5dceb; }
.dashboard-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; grid-template-rows: 1.1fr 0.9fr; gap: 16px; height: calc(100% - 26px);
}
.mini-panel {
  background: linear-gradient(180deg, rgba(248,250,255,0.95), rgba(240,244,251,0.92));
  border: 1px solid rgba(223,230,241,0.95); border-radius: 26px; padding: 18px; overflow: hidden;
}
.large { grid-row: span 2; }
.panel-title { font-weight: 700; margin-bottom: 12px; }
.line-chart {
  height: 260px; border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(55,103,255,0.18), transparent),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='320' viewBox='0 0 800 320'%3E%3Cpath d='M0 260 C80 250, 120 120, 200 130 S320 220, 420 170 S580 40, 800 80' fill='none' stroke='%233767ff' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E") center/cover no-repeat,
    linear-gradient(180deg,#f7faff,#edf3ff);
  border: 1px solid rgba(55,103,255,0.12);
}
.panel-stats { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; color: var(--muted); }
.panel-stats span, .tag-list li {
  list-style: none; background: white; border: 1px solid var(--line); padding: 8px 11px; border-radius: 999px;
}
.tag-list { padding: 0; margin: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.phone-stack { position: relative; display: flex; align-items: center; justify-content: center; min-height: 290px; }
.phone {
  width: 155px; height: 300px; border: 8px solid #111827; border-radius: 34px; background: linear-gradient(180deg,#f3f7ff,#dce8ff);
  box-shadow: 0 18px 34px rgba(15,23,42,0.16); position: absolute;
}
.phone::before {
  content: ''; position: absolute; left: 50%; top: 12px; transform: translateX(-50%); width: 62px; height: 8px; border-radius: 999px; background: #111827;
}
.ui-one { transform: rotate(-8deg) translateX(-34px); }
.ui-two {
  transform: rotate(8deg) translateX(34px);
  background: linear-gradient(180deg,#edf9ff,#d4f2ff);
}
.small-callout p { margin: 0; color: var(--muted); line-height: 1.7; }
.floating-note {
  position: absolute; background: white; border: 1px solid var(--line); padding: 12px 16px;
  border-radius: 999px; box-shadow: var(--shadow); font-weight: 700;
}
.note-one { left: -10px; bottom: 72px; }
.note-two { right: 12px; top: 0; }
.logo-strip, .section, .footer { margin-bottom: 26px; }
.logo-strip {
  padding: 24px 28px; background: rgba(255,255,255,0.78); border: 1px solid var(--line);
  border-radius: 28px;
}
.logo-strip p { margin: 0 0 16px; color: var(--muted); }
.logo-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.logo-grid span {
  background: white; border: 1px solid var(--line); border-radius: 18px; padding: 16px; text-align: center; font-weight: 700;
}
.section {
  padding: 34px; background: rgba(255,255,255,0.78); border: 1px solid var(--line); border-radius: 32px;
}
.section-heading { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 26px; }
.section-heading h2 { margin: 0; font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.02; letter-spacing: -0.04em; max-width: 740px; }
.section-heading p { max-width: 420px; color: var(--muted); line-height: 1.8; }
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.product-card {
  background: white; border: 1px solid var(--line); border-radius: 26px; padding: 22px; min-height: 260px;
  display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 10px 25px rgba(15,23,42,0.03);
}
.app-icon {
  width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; color: white; font-weight: 800; margin-bottom: 18px;
}
.accent-blue .app-icon { background: linear-gradient(135deg,#3767ff,#58b7ff); }
.accent-purple .app-icon { background: linear-gradient(135deg,#7c3aed,#c084fc); }
.accent-green .app-icon { background: linear-gradient(135deg,#059669,#34d399); }
.accent-orange .app-icon { background: linear-gradient(135deg,#ea580c,#fdba74); }
.accent-cyan .app-icon { background: linear-gradient(135deg,#0891b2,#67e8f9); }
.accent-pink .app-icon { background: linear-gradient(135deg,#db2777,#f9a8d4); }
.product-card h3 { margin: 0 0 10px; font-size: 1.3rem; }
.product-card p { margin: 0 0 20px; color: var(--muted); line-height: 1.75; }
.product-footer { display: flex; justify-content: space-between; color: var(--muted); font-weight: 600; gap: 12px; }
.narrative-band { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 18px; background: transparent; border: none; padding: 0; }
.narrative-card {
  padding: 34px; border-radius: 30px; border: 1px solid var(--line); background: rgba(255,255,255,0.78);
}
.narrative-card h2 { margin: 0 0 14px; font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.04em; }
.narrative-card p, .narrative-card li { color: var(--muted); line-height: 1.8; }
.narrative-card ul { margin: 0; padding-left: 18px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-grid article, .testimonial-grid article {
  background: white; border: 1px solid var(--line); border-radius: 24px; padding: 24px;
}
.process-grid span {
  display: inline-flex; width: 44px; height: 44px; border-radius: 14px; background: var(--primary-soft); color: var(--primary); align-items: center; justify-content: center; font-weight: 800;
}
.process-grid h3 { margin: 16px 0 10px; }
.process-grid p { margin: 0; color: var(--muted); line-height: 1.75; }
.compliance-layout { display: grid; grid-template-columns: 1fr 0.92fr; gap: 22px; align-items: start; }
.compliance-layout h2 { margin: 0 0 14px; font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.04em; }
.compliance-layout p { color: var(--muted); line-height: 1.8; margin: 0; }
.compliance-points { display: grid; gap: 14px; }
.compliance-points div {
  padding: 20px; background: white; border: 1px solid var(--line); border-radius: 22px; display: flex; justify-content: space-between; gap: 14px;
}
.compliance-points strong { display: block; }
.compliance-points span { color: var(--muted); text-align: right; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testimonial-grid p { font-size: 1.02rem; line-height: 1.8; margin: 0 0 16px; }
.testimonial-grid strong { color: var(--muted); }
.narrow { max-width: 720px; }
.faq-list { display: grid; gap: 14px; }
details {
  background: white; border: 1px solid var(--line); border-radius: 22px; padding: 18px 22px;
}
summary { cursor: pointer; font-weight: 700; }
details p { margin: 12px 0 0; color: var(--muted); line-height: 1.75; }
.cta-card {
  display: flex; justify-content: space-between; gap: 20px; align-items: center;
  background: linear-gradient(135deg,#0f172a,#1d4ed8); color: white; border-radius: 28px; padding: 34px;
}
.cta-card h2 { margin: 10px 0 0; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.03; letter-spacing: -0.04em; }
.cta-card .eyebrow { background: rgba(255,255,255,0.12); color: white; margin-bottom: 0; }
.footer {
  display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 28px 0 40px;
}
.footer p, .footer-links { color: var(--muted); }
.footer-links { display: flex; gap: 18px; }
@media (max-width: 1100px) {
  .hero, .section-heading, .compliance-layout, .narrative-band, .cta-card { grid-template-columns: 1fr; display: grid; }
  .product-grid, .process-grid, .testimonial-grid, .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 560px; }
}
@media (max-width: 780px) {
  .site-shell { width: min(100% - 20px, 1220px); }
  .topbar { border-radius: 24px; padding: 16px; display: grid; gap: 14px; }
  .nav { flex-wrap: wrap; gap: 14px; }
  .hero { padding-top: 12px; }
  .hero-visual { min-height: 500px; }
  .dashboard-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .large { grid-row: auto; }
  .product-grid, .process-grid, .testimonial-grid, .logo-grid { grid-template-columns: 1fr; }
  .section, .narrative-card { padding: 24px; }
  .cta-card { display: block; }
  .footer { flex-direction: column; align-items: start; }
}
