:root {
  --blue: #064aa8;
  --blue-2: #0b5ed7;
  --blue-3: #eaf2ff;
  --navy: #071f4d;
  --ink: #17213a;
  --muted: #64728b;
  --line: #dde6f2;
  --soft: #f6f8fb;
  --soft-2: #eef4ff;
  --green: #13a66b;
  --purple: #6852d9;
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(9, 34, 73, .10);
  --shadow-sm: 0 10px 30px rgba(9, 34, 73, .08);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section-pad { padding: 92px 0; }
.center { text-align: center; margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 230, 245, .9);
}
.nav { height: 74px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 21px; color: var(--navy); letter-spacing: -.03em; }
.brand span span { color: #3d8cff; }
.brand-mark { width: 31px; height: 31px; border-radius: 9px; background: linear-gradient(145deg, var(--blue), #0e84ff); position: relative; overflow: hidden; }
.brand-mark::before { content: ""; position: absolute; background: #fff; width: 17px; height: 23px; left: 8px; top: 2px; transform: skewY(-22deg); border-radius: 2px 2px 0 0; }
.brand-mark span { position: absolute; width: 24px; height: 6px; background: #fff; bottom: 4px; right: -1px; border-radius: 10px; }
.nav-links { display: flex; gap: 24px; margin-left: auto; font-size: 14px; font-weight: 650; color: #33415c; }
.nav-links a:hover { color: var(--blue-2); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-menu { display: none; border: 0; background: transparent; font-size: 24px; color: var(--navy); margin-left: auto; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 42px; padding: 0 18px; border-radius: 10px; font-weight: 750; font-size: 14px;
  border: 1px solid transparent; transition: .18s ease; cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 18px rgba(6,74,168,.22); }
.btn-primary:hover { transform: translateY(-1px); background: #083f8c; }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-outline { background: #fff; color: var(--blue); border-color: #bfd3f4; }
.btn-outline:hover, .btn-ghost:hover { border-color: var(--blue-2); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--blue); border-color: #fff; }
.btn-lg { min-height: 54px; border-radius: 13px; padding-inline: 25px; font-size: 15px; }
.full { width: 100%; }
.hero {
  background:
    radial-gradient(circle at 82% 17%, rgba(11,94,215,.16), transparent 35%),
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
  padding-top: 82px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.04fr; gap: 72px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); background: var(--blue-3); border: 1px solid #d6e6ff; padding: 7px 11px; border-radius: 999px; text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .04em; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(44px, 6vw, 68px); line-height: .98; letter-spacing: -.065em; color: var(--navy); margin: 24px 0 24px; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.06; letter-spacing: -.045em; color: var(--navy); margin: 16px 0 18px; }
h3 { font-size: 21px; line-height: 1.2; color: var(--navy); letter-spacing: -.02em; }
.hero-subtitle { font-size: 18px; color: var(--muted); max-width: 610px; }
.hero-actions { display: flex; gap: 14px; margin: 34px 0 26px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 13px; align-items: center; color: var(--muted); font-size: 14px; }
.trust-row span { color: #f5b301; letter-spacing: 2px; }
.hero-visual { min-height: 560px; position: relative; perspective: 900px; }
.screen { background: rgba(255,255,255,.92); border: 1px solid rgba(209,222,241,.95); box-shadow: var(--shadow); border-radius: 24px; }
.screen-main { position: absolute; inset: 20px 16px 50px 60px; padding: 24px; transform: rotateY(-7deg) rotateX(3deg); }
.screen-topbar { display: flex; gap: 12px; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 18px; }
.screen-topbar span { display: block; font-size: 12px; color: var(--muted); font-weight: 600; }
.logo-dot { width: 42px; height: 42px; border-radius: 13px; background: linear-gradient(145deg, var(--blue), #4b8df6); }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 20px; }
.metric-row div { padding: 16px; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; }
.metric-row small { display:block; color: var(--muted); font-size: 11px; font-weight: 700; }
.metric-row strong { font-size: 20px; color: var(--navy); }
.green { color: var(--green)!important; }
.mock-chart { height: 180px; display: flex; align-items: end; gap: 18px; padding: 18px 18px 0; border: 1px solid var(--line); background: repeating-linear-gradient(to top, transparent 0 39px, #e6eef9 40px); border-radius: 18px; }
.mock-chart span { flex: 1; background: linear-gradient(180deg, #5575c9, #0b5ed7); border-radius: 6px 6px 0 0; }
.mock-chart span:nth-child(even) { background: linear-gradient(180deg, #8ccd78, #61ad50); }
.mock-table { margin-top: 18px; border: 1px solid var(--line); border-radius: 16px; overflow:hidden; }
.mock-table div { display: flex; justify-content: space-between; padding: 13px 15px; border-bottom: 1px solid var(--line); font-size: 13px; }
.mock-table div:last-child { border-bottom: 0; }
.mock-table b { color: var(--green); }
.screen-ai { position: absolute; left: 6px; bottom: 18px; width: 230px; padding: 18px; transform: translateZ(70px); }
.screen-ai p { font-size: 13px; color: var(--muted); margin: 13px 0 10px; }
.screen-ai strong { display:block; color: var(--navy); margin-bottom: 8px; }
.screen-ai a { color: var(--blue); font-weight: 800; font-size: 13px; }
.pill, .tag { display:inline-flex; align-items:center; padding: 6px 9px; border-radius: 999px; background: #edf4ff; color: var(--blue); font-size: 11px; text-transform: uppercase; font-weight: 850; letter-spacing: .04em; }
.screen-allocation { position: absolute; right: 0; top: 150px; width: 210px; padding: 20px; transform: translateZ(85px); }
.donut { width: 118px; height: 118px; margin: 4px auto 14px; border-radius: 50%; background: conic-gradient(#0b5ed7 0 60%, #8ccd78 60% 88%, #f2b84b 88% 97%, #32a6a8 97% 100%); position: relative; }
.donut::after { content:""; position:absolute; inset:26px; background:#fff; border-radius:50%; }
.legend { font-size: 12px; color: var(--muted); margin: 7px 0; font-weight: 700; }
.legend span { display:inline-block; width: 10px; height: 10px; border-radius: 3px; background: var(--blue); margin-right: 7px; }
.legend:nth-of-type(2) span { background: #8ccd78; }
.legend:nth-of-type(3) span { background: #f2b84b; }
.value-strip { background: #f0f6ff; border-block: 1px solid #dce9fb; }
.value-grid { min-height: 74px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: center; }
.value-grid div { display: flex; gap: 10px; align-items: center; justify-content: center; font-weight: 750; color: #253556; font-size: 14px; }
.value-grid span { color: var(--blue); font-size: 20px; }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading p { color: var(--muted); font-size: 17px; }
.features-section { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); transition: .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon { width: 52px; height: 52px; display:grid; place-items:center; background: var(--blue-3); color: var(--blue); border-radius: 16px; font-size: 26px; margin-bottom: 18px; }
.feature-card p, .workflow-copy p, .showcase-card p, .analytics-card p { color: var(--muted); }
.workflow-section { background: linear-gradient(180deg, var(--soft) 0%, #fff 100%); }
.workflow-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 58px; align-items: center; }
.product-shot { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 14px; box-shadow: var(--shadow); overflow: hidden; }
.product-shot img { width: 100%; border-radius: 16px; }
.soft-mask img { filter: saturate(.94) contrast(.98); }
.soft-mask::after { content:""; position:absolute; inset:0; pointer-events:none; background: linear-gradient(180deg, rgba(255,255,255,0) 64%, rgba(255,255,255,.26) 100%); }
.shot-label { position: absolute; z-index: 2; top: 24px; left: 24px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.86); color: var(--blue); border: 1px solid var(--line); font-weight: 850; font-size: 12px; box-shadow: var(--shadow-sm); }
.steps { padding: 0; margin: 26px 0 0; list-style: none; display: grid; gap: 18px; }
.steps li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; }
.steps span { width: 32px; height: 32px; border-radius: 50%; display:grid; place-items:center; background: var(--blue); color:#fff; font-weight:800; font-size: 13px; }
.steps strong { color: var(--navy); font-size: 16px; }
.steps p { margin: 2px 0 0; font-size: 14px; }
.product-showcase { background: #fff; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.showcase-card, .analytics-card { background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); overflow: hidden; }
.showcase-card.large { grid-column: span 2; display: grid; grid-template-columns: .75fr 1.25fr; gap: 20px; align-items: center; padding: 34px; }
.showcase-card:not(.large) { padding: 30px; }
.card-copy { max-width: 430px; }
.compact-shot { margin-top: 22px; max-height: 520px; }
.compact-shot img { object-fit: cover; object-position: top center; max-height: 480px; }
.analytics-section { background: var(--soft); }
.analytics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.analytics-card { padding: 28px; }
.analytics-card.wide { grid-column: span 2; display: grid; grid-template-columns: .42fr .58fr; gap: 22px; align-items: center; }
.analytics-copy { margin-bottom: 18px; }
.tall-shot { max-height: 580px; }
.tall-shot img { object-fit: cover; object-position: top center; max-height: 545px; }
.factor-shot { max-height: 520px; }
.factor-shot img { object-fit: cover; object-position: top center; max-height: 490px; }
.proof-section { background: linear-gradient(135deg, #061c42, #0b54b6); color: #fff; }
.proof-section h2 { color: #fff; }
.proof-section .eyebrow { background: rgba(255,255,255,.1); color: #dcecff; border-color: rgba(255,255,255,.18); }
.proof-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 62px; align-items: start; }
.proof-points { display: grid; gap: 16px; }
.proof-points div { padding: 20px; border-radius: 18px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); }
.proof-points strong { display:block; font-size: 18px; margin-bottom: 6px; }
.proof-points span { color: #cfe0ff; }
.pricing-section { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-card { position: relative; border: 1px solid var(--line); border-radius: 24px; padding: 30px 26px; background: #fff; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price-card.muted { opacity: .88; }
.price-card h3 { font-size: 24px; margin-bottom: 12px; }
.price { color: var(--blue); margin-bottom: 8px; }
.price span { font-size: 46px; font-weight: 800; letter-spacing: -.05em; }
.price.contact span { font-size: 34px; letter-spacing: -.035em; }
.price-card p { color: var(--muted); min-height: 52px; }
.price-card ul { padding-left: 19px; margin: 18px 0 26px; color: #33415c; display: grid; gap: 10px; font-size: 14px; }
.price-card .btn { margin-top: auto; }
.featured-price { background: linear-gradient(160deg, #073c86, #045fd1 56%, #04316f); color: #fff; transform: translateY(-12px); box-shadow: 0 32px 80px rgba(6,74,168,.26); border-color: transparent; }
.featured-price h3, .featured-price .price, .featured-price p, .featured-price ul { color: #fff; }
.featured-price p, .featured-price ul { opacity: .92; }
.ribbon { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); padding: 8px 13px; border-radius: 999px; background: #13a66b; color: #fff; font-size: 12px; font-weight: 850; white-space: nowrap; text-transform: uppercase; }
.cta-section { padding: 32px 0 90px; background: #fff; }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 42px; border-radius: 28px; background: linear-gradient(135deg, #eef5ff, #fff); border: 1px solid #dce9fb; box-shadow: var(--shadow-sm); }
.cta-card h2 { max-width: 660px; margin-bottom: 10px; }
.cta-card p { color: var(--muted); margin: 0; }
.cta-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.site-footer { background: #f7f9fc; border-top: 1px solid var(--line); padding: 52px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .6fr .7fr .7fr 1.35fr; gap: 34px; align-items: start; }
.footer-brand { margin-bottom: 14px; }
.site-footer p, .site-footer a { color: var(--muted); font-size: 14px; }
.site-footer h4 { margin: 0 0 13px; color: var(--navy); }
.site-footer a { display:block; margin: 9px 0; }
.footer-disclaimer { border-left: 1px solid var(--line); padding-left: 24px; }
.copyright { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; text-align: center; }
@media (max-width: 1060px) {
  .hero-grid, .workflow-grid, .proof-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .feature-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-card.large, .analytics-card.wide { grid-template-columns: 1fr; }
  .showcase-card.large { grid-column: span 1; }
  .showcase-grid, .analytics-grid { grid-template-columns: 1fr; }
  .analytics-card.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .container { width: min(100% - 32px, 1180px); }
  .section-pad { padding: 68px 0; }
  .nav-links, .nav-actions { display: none; }
  .mobile-menu { display: block; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .hero-visual { min-height: 480px; }
  .screen-main { inset: 15px 0 70px 0; transform: none; }
  .screen-ai { left: 10px; bottom: 8px; width: 205px; }
  .screen-allocation { right: 6px; top: auto; bottom: 35px; width: 178px; }
  .value-grid { grid-template-columns: 1fr 1fr; padding: 16px 0; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .featured-price { transform: none; }
  .cta-card { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-disclaimer { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
}
@media (max-width: 540px) {
  .hero-actions, .cta-actions { flex-direction: column; }
  .btn-lg { width: 100%; }
  .hero-visual { display: none; }
  .value-grid { grid-template-columns: 1fr; }
  .showcase-card.large, .showcase-card, .analytics-card { padding: 18px; }
  .metric-row { grid-template-columns: 1fr; }
}

/* Updated real-screenshot homepage treatment */
.micro-disclaimer {
  margin-top: 18px;
  max-width: 560px;
  color: #71809a;
  font-size: 12px;
}
.hero-product {
  position: relative;
  min-height: 640px;
  perspective: 1000px;
}
.hero-browser {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(203, 218, 240, .95);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(6, 35, 85, .18);
  overflow: hidden;
}
.main-browser {
  inset: 12px 54px 26px 0;
  transform: rotateY(-8deg) rotateX(3deg);
}
.browser-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: rgba(248, 251, 255, .94);
  border-bottom: 1px solid #dfe8f6;
  color: #41506f;
  font-size: 12px;
}
.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd7ea;
}
.browser-bar strong {
  margin-left: 8px;
  color: var(--navy);
  font-weight: 800;
}
.main-browser img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  opacity: .92;
}
.floating-shot {
  position: absolute;
  width: 205px;
  height: 186px;
  background: #fff;
  border: 1px solid #dce6f4;
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(6, 35, 85, .18);
  overflow: hidden;
  z-index: 3;
}
.floating-shot img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: top center;
  opacity: .9;
}
.floating-shot b {
  display: block;
  padding: 12px 14px;
  color: var(--navy);
  font-size: 13px;
}
.floating-stress {
  right: 6px;
  top: 78px;
}
.floating-factor {
  left: -20px;
  bottom: 58px;
}
.floating-note {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: 245px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(6, 74, 168, .95), rgba(104, 82, 217, .94));
  color: #fff;
  box-shadow: 0 22px 52px rgba(6, 35, 85, .24);
  z-index: 4;
}
.floating-note span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: .04em;
}
.floating-note p {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.9);
}
.split-card { min-height: 100%; }
.dark-card {
  background: radial-gradient(circle at top right, rgba(88, 144, 255, .35), transparent 36%), linear-gradient(135deg, #071f4d, #063a83);
  color: #fff;
}
.dark-card h3 { color: #fff; }
.dark-card p, .dark-card li { color: rgba(255,255,255,.82); }
.light-tag { background: rgba(255,255,255,.14); color: #dcecff; border: 1px solid rgba(255,255,255,.2); }
.mini-list {
  margin: 22px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  font-weight: 650;
}
.product-shot .shot-label {
  backdrop-filter: blur(10px);
}
@media (max-width: 1060px) {
  .hero-product { min-height: 600px; }
  .main-browser { inset: 10px 0 22px 0; transform: none; }
  .floating-stress { right: 12px; top: 90px; }
  .floating-factor { left: 12px; bottom: 46px; }
  .floating-note { right: 24px; bottom: 34px; }
}
@media (max-width: 800px) {
  .hero-product { min-height: 520px; }
  .main-browser img { height: 475px; }
  .floating-shot { width: 170px; height: 150px; }
  .floating-shot img { height: 108px; }
  .floating-note { width: 220px; }
}
@media (max-width: 540px) {
  .hero-product { display: block; min-height: auto; }
  .main-browser { position: relative; inset: auto; margin-top: 30px; }
  .main-browser img { height: 360px; }
  .floating-shot, .floating-note { display: none; }
}

.solutions-section { background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%); }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.solution-card { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.solution-card .icon { width: 54px; height: 54px; font-size: 14px; font-weight: 850; letter-spacing: -.02em; }
.solution-card p { color: var(--muted); }
.solution-card a { color: var(--blue); font-weight: 800; }
.footer-brand .brand-mark { flex: 0 0 auto; }
.legal-page { background: #f7f9fc; }
.legal-hero { padding: 74px 0 34px; }
.legal-card { background:#fff; border:1px solid var(--line); border-radius:24px; box-shadow:var(--shadow-sm); padding:38px; margin-bottom:34px; }
.legal-card h1 { font-size: clamp(36px, 5vw, 54px); margin-bottom: 12px; }
.legal-card h2 { font-size: 26px; margin-top: 32px; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-note { background:#eef5ff; border:1px solid #d8e8ff; border-radius:18px; padding:18px; color:#33415c; }
@media (max-width: 900px) { .solution-grid { grid-template-columns: 1fr; } }
