:root {
  --bg: #f6f7f8;
  --surface: #ffffff;
  --ink: #0b0d10;
  --muted: #666d78;
  --line: #dde0e5;
  --line-dark: #242830;
  --dark: #0b0d10;
  --dark-soft: #11151a;
  --green: #22a06b;
  --red: #d74b4b;
  --amber: #c68b22;
  --radius: 18px;
  --shadow: 0 30px 80px rgba(11, 13, 16, .13);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { position: relative; padding: 118px 0; overflow: clip; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(246, 247, 248, .84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: rgba(11, 13, 16, .08); background: rgba(246, 247, 248, .94); }
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; width: 142px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; color: #404650; font-size: 14px; font-weight: 620; }
.site-nav > a:not(.button) { transition: color .2s ease; }
.site-nav > a:not(.button):hover { color: #000; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 1.5px; margin: 5px 0; background: var(--ink); transition: transform .2s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: #20242a; border-color: #20242a; }
.button-small { min-height: 40px; padding: 0 16px; }
.button-light { background: #fff; color: #0b0d10; border-color: #fff; }
.button-light:hover { background: #e9ebee; border-color: #e9ebee; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, 3px); }

.hero { padding-top: 155px; padding-bottom: 80px; }
.hero-grid { display: grid; grid-template-columns: .84fr 1.25fr; align-items: center; gap: 58px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; font-size: 12px; font-weight: 760; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow > span { width: 22px; height: 1px; background: currentColor; }
.eyebrow.light { color: #aeb5bf; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(47px, 5.5vw, 76px); line-height: .99; letter-spacing: -.065em; font-weight: 730; }
.hero-subheading { max-width: 680px; margin-bottom: 18px; font-size: clamp(25px, 2.5vw, 36px); line-height: 1.15; letter-spacing: -.035em; font-weight: 650; }
.hero-description { max-width: 680px; margin-bottom: 31px; color: #535a65; font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-bottom: 35px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 25px; padding: 0; margin: 0; list-style: none; color: #656c76; font-size: 12px; font-weight: 630; }
.hero-points li { position: relative; padding-left: 14px; }
.hero-points li::before { content: ""; position: absolute; left: 0; top: .72em; width: 4px; height: 4px; border-radius: 50%; background: var(--ink); }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 480px; height: 480px; top: 40px; right: -180px; background: radial-gradient(circle, rgba(181, 189, 201, .28), transparent 67%); }
.hero-glow-two { width: 360px; height: 360px; left: -220px; bottom: 0; background: radial-gradient(circle, rgba(214, 218, 224, .35), transparent 68%); }

.dashboard-shell { position: relative; z-index: 1; border: 1px solid #cfd3d9; border-radius: 18px; background: #eef0f3; box-shadow: var(--shadow); overflow: hidden; transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.dashboard-topbar { height: 47px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 14px; border-bottom: 1px solid #d6d9de; background: #f7f8f9; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #c8ccd2; }
.dashboard-company { display: flex; align-items: center; gap: 7px; padding: 5px 9px; border: 1px solid #d8dbe0; border-radius: 6px; background: #fff; font-size: 9px; font-weight: 670; }
.dashboard-company b { font-size: 8px; color: #7c838e; }
.mini-logo { display: inline-block; width: 13px; height: 13px; flex: 0 0 13px; background: url("favicon.svg") center / contain no-repeat; }
.dashboard-user { justify-self: end; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: #16191d; color: #fff; font-size: 7px; font-weight: 700; }
.dashboard-body { display: grid; grid-template-columns: 118px 1fr; min-height: 438px; background: #fff; }
.dashboard-sidebar { padding: 17px 10px; border-right: 1px solid #e1e3e7; background: #fafafa; }
.dash-wordmark { display: flex; align-items: center; gap: 7px; padding: 0 7px 20px; font-size: 9px; }
.dashboard-sidebar nav { display: grid; gap: 4px; }
.dashboard-sidebar nav a { display: flex; align-items: center; gap: 7px; min-height: 30px; padding: 0 7px; border-radius: 6px; color: #707781; font-size: 7.5px; font-weight: 630; }
.dashboard-sidebar nav a span { width: 13px; text-align: center; font-weight: 800; }
.dashboard-sidebar nav a b { margin-left: auto; display: grid; place-items: center; min-width: 13px; height: 13px; border-radius: 50%; background: #eceef1; color: #535a63; font-size: 6px; }
.dashboard-sidebar nav a.active { background: #eaecf0; color: #111; }
.dashboard-content { min-width: 0; padding: 25px 26px; background: #fff; }
.dashboard-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.dashboard-heading small { display: block; margin-bottom: 5px; color: #858b94; font-size: 6px; letter-spacing: .14em; font-weight: 700; }
.dashboard-heading h2 { margin: 0; font-size: 17px; letter-spacing: -.04em; }
.dashboard-heading button { border: 1px solid #e0e2e5; border-radius: 6px; padding: 6px 8px; background: #fff; color: #616873; font-size: 7px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 13px; }
.metric-row article { padding: 13px; border: 1px solid #e5e7ea; border-radius: 9px; }
.metric-row span { display: block; margin-bottom: 8px; color: #747b85; font-size: 7px; }
.metric-row strong { display: block; margin-bottom: 3px; font-size: 18px; line-height: 1; letter-spacing: -.04em; }
.metric-row strong small { color: #858b94; font-size: 8px; }
.metric-row em { display: block; color: #858b94; font-size: 6.5px; font-style: normal; }
.metric-row em.positive { color: var(--green); }
.dashboard-panels { display: grid; grid-template-columns: 1.45fr .9fr; gap: 11px; }
.chart-card, .attention-card { min-width: 0; padding: 14px; border: 1px solid #e5e7ea; border-radius: 9px; }
.panel-title { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 12px; font-size: 7px; }
.panel-title span { color: #7a818c; }
.chart-card svg { width: 100%; height: auto; }
.chart-grid { fill: none; stroke: #eceef1; stroke-width: 1; }
.chart-area { fill: url(#area); }
.chart-line { fill: none; stroke: #272c33; stroke-width: 2; }
.chart-labels { display: flex; justify-content: space-between; color: #9a9fa7; font-size: 5.5px; }
.issue-item { display: grid; grid-template-columns: 6px 1fr auto; align-items: center; gap: 7px; padding: 10px 0; border-top: 1px solid #edeef0; }
.issue-item:first-of-type { border-top: 0; }
.issue-item i { width: 5px; height: 5px; border-radius: 50%; }
.issue-dot { background: var(--red); }
.warning-dot { background: var(--amber); }
.opportunity-dot { background: var(--green); }
.issue-item div strong, .issue-item div span { display: block; }
.issue-item div strong { font-size: 6.7px; }
.issue-item div span { color: #848b95; font-size: 5.7px; }
.issue-item > b { padding: 2px 4px; border-radius: 3px; background: #fbecec; color: #b83d3d; font-size: 5px; }
.issue-item > b.medium { background: #fbf3e4; color: #a47418; }
.issue-item > b.good { background: #e7f5ee; color: #17875a; }

.tool-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.45); }
.tool-strip-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.tool-strip-inner > span { color: #818791; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.tool-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 25px; }
.tool-list span { display: inline-flex; align-items: center; gap: 8px; color: #515862; font-size: 12px; font-weight: 650; }
.tool-list i { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid #cfd3d8; border-radius: 6px; background: #fff; color: #171a1e; font-size: 9px; font-style: normal; font-weight: 800; }

.section-heading { max-width: 720px; margin-bottom: 55px; }
.section-heading.centred { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.centred .eyebrow { justify-content: center; }
.section-heading h2, .benefits-copy h2, .cta-inner h2 { margin-bottom: 20px; font-size: clamp(38px, 4.6vw, 62px); line-height: 1.05; letter-spacing: -.055em; }
.section-heading p, .benefits-copy > p, .cta-inner > div > p { max-width: 620px; margin-bottom: 0; color: var(--muted); font-size: 17px; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card { position: relative; min-height: 330px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.76); overflow: hidden; }
.feature-wide { grid-column: 1 / -1; min-height: 390px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 60px; }
.feature-number { display: block; margin-bottom: 60px; color: #9298a1; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.feature-wide .feature-number { margin-bottom: 35px; }
.feature-card h3 { max-width: 440px; margin-bottom: 14px; font-size: 27px; line-height: 1.15; letter-spacing: -.035em; }
.feature-card p { max-width: 470px; margin-bottom: 0; color: var(--muted); }
.feature-card a { display: inline-flex; gap: 8px; margin-top: 25px; font-size: 13px; font-weight: 720; }
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; margin: -30px 0 31px auto; border: 1px solid #d7dae0; border-radius: 16px; background: #f5f6f8; font-size: 22px; font-weight: 730; }
.issue-icon { color: var(--red); }
.opportunity-icon { color: var(--green); }
.monitor-icon, .ai-icon { color: #2e343b; }
.mini-analytics { min-height: 260px; padding: 27px; border: 1px solid #dce0e4; border-radius: 14px; background: #fff; box-shadow: 0 20px 50px rgba(11,13,16,.08); }
.mini-analytics-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.mini-analytics-head span { color: #79808a; font-size: 12px; }
.mini-analytics-head b { font-size: 28px; letter-spacing: -.04em; }
.bar-group { height: 130px; display: flex; align-items: flex-end; gap: 9px; padding: 20px 0 0; border-bottom: 1px solid #e4e6e9; }
.bar-group i { flex: 1; min-width: 10px; border-radius: 4px 4px 0 0; background: #23282e; opacity: .88; }
.mini-analytics-foot { display: flex; justify-content: space-between; gap: 20px; padding-top: 14px; color: #747b85; font-size: 11px; }
.mini-analytics-foot strong { color: var(--green); }

.section-dark { background: var(--dark); color: #fff; }
.benefits-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; align-items: start; }
.benefits-copy { position: sticky; top: 120px; }
.benefits-copy > p { color: #9ea5af; margin-bottom: 31px; }
.benefit-list article { display: grid; grid-template-columns: 58px 1fr; gap: 25px; padding: 34px 0; border-top: 1px solid var(--line-dark); }
.benefit-list article:last-child { border-bottom: 1px solid var(--line-dark); }
.benefit-list article > span { color: #646b75; font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.benefit-list h3 { margin-bottom: 10px; font-size: 24px; letter-spacing: -.035em; }
.benefit-list p { max-width: 520px; margin-bottom: 0; color: #9ca3ad; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps-grid article { min-height: 285px; padding: 34px 38px 34px 0; border-right: 1px solid var(--line); }
.steps-grid article + article { padding-left: 38px; }
.steps-grid article:last-child { border-right: 0; }
.step-no { display: block; margin-bottom: 88px; color: #9097a0; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.steps-grid h3 { margin-bottom: 10px; font-size: 24px; letter-spacing: -.035em; }
.steps-grid p { max-width: 320px; margin-bottom: 0; color: var(--muted); }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 95px; align-items: start; }
.faq-grid .section-heading { margin-bottom: 0; }
.faq-grid .section-heading h2 { font-size: clamp(36px, 4vw, 52px); }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; font-size: 17px; font-weight: 680; }
.accordion-item button i { font-size: 20px; font-style: normal; font-weight: 400; }
.accordion-panel { padding: 0 50px 25px 0; }
.accordion-panel p { margin: 0; color: var(--muted); }

.cta-section { position: relative; padding: 100px 0; overflow: hidden; background: #0b0d10; color: #fff; }
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .82fr; align-items: center; gap: 80px; }
.cta-inner h2 { max-width: 650px; }
.cta-inner > div > p { color: #9fa6b0; }
.cta-glow { position: absolute; width: 700px; height: 700px; right: -260px; top: -280px; border-radius: 50%; background: radial-gradient(circle, rgba(96, 105, 117, .34), transparent 67%); }
.signup-form { width: 100%; }
.form-row { display: flex; gap: 10px; padding: 7px; border: 1px solid #383d45; border-radius: 13px; background: #15191e; }
.form-row input { flex: 1; min-width: 0; height: 48px; padding: 0 14px; border: 0; outline: 0; background: transparent; color: #fff; }
.form-row input::placeholder { color: #737a84; }
.form-row input:focus { box-shadow: inset 0 -1px #fff; }
.form-message { min-height: 22px; margin: 10px 0 0; font-size: 12px; }
.form-message.success { color: #77d6ab; }
.form-message.error { color: #ef8d8d; }
.form-note { margin: 6px 0 0; color: #6f7680; font-size: 10px; }

.site-footer { padding: 32px 0; border-top: 1px solid #20242a; background: #0b0d10; color: #7f8791; }
.footer-disclosure { padding-bottom: 24px; margin-bottom: 26px; border-bottom: 1px solid #20242a; }
.footer-disclosure p { max-width: 760px; margin: 0; color: #a4abb5; font-size: 13px; line-height: 1.6; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; font-size: 11px; }
.footer-inner p { margin: 0; }
.footer-inner p:last-child { justify-self: end; }
.footer-brand .brand-logo { width: 126px; filter: invert(1); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 790px; }
  .dashboard-shell { width: 100%; max-width: 860px; margin: 0 auto; transform: none; }
  .benefits-grid, .faq-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .section { padding: 88px 0; }
  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 20px;
    background: rgba(246, 247, 248, .98);
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav > a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 17px; }
  .site-nav .button { margin-top: 20px; border-bottom: 0; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.2px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.2px) rotate(-45deg); }
  .hero { padding-top: 125px; }
  .hero-grid { gap: 45px; }
  .tool-strip-inner { padding: 22px 0; align-items: flex-start; flex-direction: column; }
  .tool-list { justify-content: flex-start; }
  .feature-wide, .benefits-grid, .faq-grid, .cta-inner { grid-template-columns: 1fr; }
  .benefits-copy { position: static; }
  .steps-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .steps-grid article, .steps-grid article + article { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .step-no { margin-bottom: 35px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-inner > * { justify-self: center !important; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: 46px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-points { display: grid; gap: 8px; }
  .dashboard-shell { border-radius: 12px; }
  .dashboard-body { grid-template-columns: 1fr; min-height: 390px; }
  .dashboard-sidebar { display: none; }
  .dashboard-content { padding: 18px; }
  .dashboard-panels { grid-template-columns: 1fr; }
  .attention-card { display: none; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .metric-row article:last-child { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: auto; gap: 35px; }
  .feature-card { min-height: 290px; padding: 26px; }
  .feature-number { margin-bottom: 45px; }
  .mini-analytics { min-height: 220px; padding: 20px; }
  .benefit-list article { grid-template-columns: 38px 1fr; }
  .form-row { flex-direction: column; padding: 8px; }
  .form-row .button { width: 100%; }
  .cta-inner { gap: 40px; }
}


/* Legal pages */
.footer-links { display: flex; align-items: center; justify-content: center; gap: 22px; }
.footer-links a { color: #9ca3ad; text-decoration: none; transition: color .2s ease; }
.footer-links a:hover, .footer-links a:focus-visible { color: #fff; }
.legal-header-nav a { color: var(--text); font-size: 13px; font-weight: 650; text-decoration: none; }
.legal-header-nav a:hover { color: var(--muted); }
.legal-main { padding: 150px 0 110px; background: #f6f7f8; }
.legal-layout { display: grid; grid-template-columns: minmax(230px, .52fr) minmax(0, 1.35fr); gap: 100px; align-items: start; }
.legal-aside { position: sticky; top: 120px; }
.legal-aside .eyebrow { margin-bottom: 28px; }
.legal-aside h1 { margin: 0 0 18px; font-size: clamp(44px, 5vw, 70px); line-height: .98; letter-spacing: -.06em; }
.legal-aside > p { margin: 0; color: var(--muted); font-size: 13px; }
.legal-content { max-width: 790px; }
.legal-intro { margin: 0 0 54px; color: #343941; font-size: 21px; line-height: 1.65; }
.legal-content section { padding: 34px 0; border-top: 1px solid var(--line); }
.legal-content section:last-child { border-bottom: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 16px; font-size: 23px; line-height: 1.25; letter-spacing: -.03em; }
.legal-content p, .legal-content li { color: #59616c; font-size: 15px; line-height: 1.78; }
.legal-content p { margin: 0 0 15px; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul { margin: 13px 0 18px; padding-left: 22px; }
.legal-content li + li { margin-top: 7px; }
.legal-content a { color: #15191e; font-weight: 650; text-underline-offset: 3px; }

@media (max-width: 820px) {
  .legal-main { padding: 120px 0 80px; }
  .legal-layout { grid-template-columns: 1fr; gap: 55px; }
  .legal-aside { position: static; }
  .legal-intro { font-size: 19px; }
}

@media (max-width: 620px) {
  .legal-main { padding-top: 105px; }
  .legal-aside h1 { font-size: 45px; }
  .legal-content section { padding: 28px 0; }
  .footer-links { gap: 16px; }
}
