/* SLA Reporter landing page */
:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-2: #f0f3f8;
  --text: #172033;
  --muted: #667085;
  --line: #e1e6ee;
  --accent: #3156d9;
  --accent-dark: #2442ac;
  --accent-soft: #e9eeff;
  --cyan-soft: #e8f8fb;
  --warning-soft: #fff5d8;
  --shadow: 0 24px 70px rgba(23, 32, 51, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.page-shell {
  overflow: hidden;
}
.site-header {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: white;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: #475467;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button-small {
  min-height: 38px;
  padding: 0 14px;
}
.button-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 8px 22px rgba(49, 86, 217, 0.18);
}
.button-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.65);
}
.button-light {
  background: white;
  color: #172033;
}
.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 72px;
  align-items: center;
  padding-top: 58px;
  padding-bottom: 94px;
}
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.13em;
  font-weight: 800;
  margin-bottom: 16px;
}
h1,
h2,
h3,
strong {
  font-family: "Manrope", sans-serif;
}
h1 {
  font-size: clamp(50px, 6.3vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 0 0 24px;
  max-width: 780px;
}
h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}
h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 0 0 9px;
}
.hero-subtitle {
  color: var(--muted);
  max-width: 670px;
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.microcopy {
  color: var(--muted);
  font-size: 13px;
}
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: #526077;
  font-size: 13px;
  font-weight: 600;
}
.proof-row span::before {
  content: "✓";
  color: var(--accent);
  margin-right: 7px;
}
.product-card-wrap {
  position: relative;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.product-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.product-topbar > div:first-child {
  display: flex;
  flex-direction: column;
}
.product-label {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px;
}
.product-topbar strong {
  font-size: 21px;
}
.status-pill {
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.metric {
  background: var(--surface-2);
  border-radius: 13px;
  padding: 14px;
  display: flex;
  flex-direction: column;
}
.metric span,
.metric small {
  color: var(--muted);
  font-size: 11px;
}
.metric strong {
  font-size: 26px;
  line-height: 1.1;
  margin: 6px 0 3px;
}
.report-list {
  border-top: 1px solid var(--line);
}
.report-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.report-row span {
  color: #5b6679;
}
.send-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 19px;
}
.send-row > div {
  display: flex;
  flex-direction: column;
}
.send-row small {
  color: var(--muted);
}
.send-row button,
.action-row button {
  border: 1px solid var(--line);
  background: white;
  border-radius: 9px;
  padding: 9px 13px;
  font-weight: 700;
  color: var(--text);
}
.floating-note {
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 305px;
  background: #172033;
  color: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(23, 32, 51, 0.22);
  display: flex;
  flex-direction: column;
}
.floating-note span {
  color: #aebcfa;
  font-size: 12px;
  font-weight: 700;
}
.floating-note strong {
  margin: 5px 0;
  line-height: 1.25;
}
.floating-note small {
  color: #c9d0df;
  line-height: 1.45;
}
.pain-strip {
  background: #172033;
  color: white;
}
.pain-grid {
  min-height: 145px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  align-items: center;
}
.pain-grid div {
  display: flex;
  flex-direction: column;
}
.pain-grid strong {
  margin-bottom: 5px;
}
.pain-grid span {
  color: #b8c0d1;
  font-size: 14px;
}
.section {
  padding: 112px 0;
}
.section-alt {
  background: #eef2f9;
}
.section-heading {
  margin-bottom: 48px;
  max-width: 790px;
}
.section-heading.narrow {
  max-width: 700px;
}
.section-heading p,
.large-copy {
  color: var(--muted);
  font-size: 18px;
}
.steps-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card,
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.step-number {
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  margin-bottom: 36px;
}
.step-card p,
.feature-card p {
  color: var(--muted);
  margin: 0;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}
.detail-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 16px 50px rgba(34, 48, 78, 0.08);
}
.detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 17px;
}
.detail-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}
.detail-header div {
  display: flex;
  flex-direction: column;
}
.detail-header small {
  color: var(--muted);
}
.breach-block {
  padding: 22px 0;
  display: flex;
  flex-direction: column;
}
.breach-block small,
.breach-block span {
  color: var(--muted);
}
.breach-block strong {
  font-size: 22px;
  margin: 5px 0;
}
.signal-box {
  background: var(--cyan-soft);
  border-radius: 13px;
  padding: 18px;
  color: #235466;
}
.signal-box p {
  margin: 7px 0 0;
  font-size: 14px;
}
.action-row {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding-top: 18px;
}
.action-row .action-primary {
  background: var(--text);
  color: white;
  border-color: var(--text);
}
.feature-icon {
  display: inline-flex;
  min-width: 46px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: 0 9px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.roi-section {
  background: var(--accent);
  color: white;
}
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 70px;
  align-items: center;
}
.roi-section .eyebrow {
  color: #cbd5ff;
}
.roi-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 28px;
}
.roi-card span {
  color: #d7defd;
  font-size: 13px;
}
.roi-card strong {
  display: block;
  font-size: 34px;
  margin: 5px 0 12px;
}
.roi-card p {
  margin: 0;
  color: #edf0ff;
}
.cta-section {
  padding: 104px 0 24px;
}
.cta-card {
  background: #172033;
  color: white;
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.cta-card p {
  color: #c2cad9;
  max-width: 610px;
}
.eyebrow-light {
  color: #aebcfa;
}
.signup-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.signup-form input {
  width: 100%;
  min-height: 50px;
  border-radius: 11px;
  border: 1px solid #44506a;
  background: #212c43;
  color: white;
  padding: 0 15px;
  outline: none;
}
.signup-form input:focus {
  border-color: #92a5ff;
}
.form-message {
  grid-column: 1/-1;
  min-height: 20px;
  margin: 2px 0 0;
  font-size: 13px;
  color: #ffcbc2;
}
.form-message.success {
  color: #c6f1d4;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  font-weight: 700;
}
details p {
  color: var(--muted);
  margin-bottom: 0;
}
.site-footer {
  min-height: 116px;
  border-top: 1px solid var(--line);
  margin-top: 65px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 12px;
}
.site-footer p {
  text-align: center;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
@media (max-width: 900px) {
  nav a:not(.button) {
    display: none;
  }
  .hero,
  .split-section,
  .roi-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 56px;
    gap: 48px;
  }
  .floating-note {
    position: static;
    width: auto;
    margin: 12px 8px 0;
  }
  .pain-grid,
  .steps-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .pain-grid {
    padding: 30px 0;
    gap: 24px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 0;
    text-align: center;
  }
  .site-footer .brand {
    justify-self: center;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 26px, 1160px);
  }
  .site-header {
    height: 68px;
  }
  h1 {
    font-size: 48px;
  }
  .hero {
    min-height: auto;
    padding-bottom: 70px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 80px 0;
  }
  .cta-card {
    padding: 30px 24px;
  }
  .signup-form {
    grid-template-columns: 1fr;
  }
}
