:root {
  color-scheme: light;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-muted: #edf2f7;
  --ink: #202124;
  --muted: #5f6368;
  --line: #d7dce2;
  --teal: #0f766e;
  --teal-dark: #0b5f59;
  --blue: #2563eb;
  --amber: #d97706;
  --red: #dc2626;
  --shadow: 0 24px 70px rgba(32, 33, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(215, 220, 226, 0.78);
  background: rgba(246, 247, 249, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.nav-links a:hover,
.inline-link:hover,
.site-footer a:hover {
  color: var(--teal-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(86vh - 72px);
  overflow: hidden;
  align-items: center;
  padding: 88px 28px 96px;
  background: var(--bg);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, 100%);
  margin-left: max(0px, calc((100vw - 1160px) / 2));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 74px;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: #34383d;
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 760;
}

.button.primary {
  background: var(--teal);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  border-color: var(--line);
  background: #ffffff;
}

.button.secondary:hover {
  border-color: #b9c0ca;
}

.full-width {
  width: 100%;
}

.trust-line {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.hero-preview {
  position: absolute;
  top: 80px;
  right: max(-120px, calc((100vw - 1160px) / 2 - 40px));
  z-index: 1;
  width: min(540px, 44vw);
  transform: rotate(-2deg);
}

.report-sheet {
  min-height: 620px;
  border: 1px solid #cbd3dd;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 34px;
}

.report-topline,
.report-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.report-topline {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.report-title {
  align-items: flex-start;
  margin-bottom: 28px;
}

.report-title span {
  max-width: 220px;
  font-size: 34px;
  font-weight: 780;
  line-height: 1.06;
}

.report-title strong {
  border-radius: 8px;
  background: #e7f6f1;
  color: var(--teal-dark);
  padding: 9px 12px;
  font-size: 13px;
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.status-grid div {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: #34383d;
  font-size: 14px;
  font-weight: 690;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
}

.status-dot.ok {
  background: var(--teal);
}

.status-dot.warn {
  background: var(--amber);
}

.mini-chart {
  display: flex;
  height: 148px;
  align-items: end;
  gap: 12px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-muted);
  padding: 18px;
}

.mini-chart span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: var(--blue);
}

.mini-chart span:nth-child(2n) {
  background: var(--teal);
}

.report-note {
  border-left: 4px solid var(--amber);
  background: #fff7ed;
  padding: 16px;
  color: #3c4043;
  font-size: 15px;
}

.section {
  padding: 86px 28px;
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.two-column,
.offer-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: start;
}

.two-column p:last-child,
.offer-layout p {
  color: #34383d;
  font-size: 19px;
}

.problem-section {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.feature-card,
.offer-panel,
.step,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.feature-card {
  padding: 24px;
}

.feature-card p,
.step p,
details p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 790;
}

.inline-link {
  display: inline-flex;
  color: var(--teal-dark);
  font-weight: 760;
}

.offer-section {
  background: #202124;
  color: #ffffff;
}

.offer-section .eyebrow {
  color: #8ee0d0;
}

.offer-layout p {
  color: #d8dde4;
}

.offer-panel {
  padding: 28px;
  background: #ffffff;
  color: var(--ink);
}

.price-line {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
}

.price-line span {
  font-size: 42px;
  font-weight: 820;
  line-height: 1;
}

.price-line small {
  color: var(--muted);
  font-size: 15px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #34383d;
}

.check-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step {
  padding: 24px;
}

.step span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: #e7f6f1;
  color: var(--teal-dark);
  font-weight: 800;
}

.faq-section {
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 760;
}

details p {
  padding-top: 14px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 26px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.legal-page {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 76px 28px 92px;
}

.legal-hero {
  margin-bottom: 36px;
}

.legal-hero h1 {
  margin-bottom: 12px;
  font-size: 56px;
}

.legal-hero p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.legal-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 34px;
}

.legal-content h2 {
  margin: 32px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  max-width: 760px;
  margin-bottom: 16px;
  color: #34383d;
}

.legal-content a {
  color: var(--teal-dark);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-preview {
    position: relative;
    top: auto;
    right: auto;
    width: min(560px, 100%);
    margin: 38px auto 0;
    transform: none;
  }

  .report-sheet {
    min-height: auto;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 35px;
  }

  .feature-grid,
  .steps,
  .two-column,
  .offer-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .two-column,
  .offer-layout,
  .faq-layout {
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 60px;
    align-items: center;
    padding: 12px 18px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .section,
  .legal-page {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: 42px;
    line-height: 1;
  }

  .legal-hero h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 29px;
    line-height: 1.12;
  }

  .hero-copy {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .report-sheet {
    min-height: auto;
    padding: 18px;
    box-shadow: 0 14px 42px rgba(32, 33, 36, 0.12);
  }

  .report-title,
  .report-topline {
    display: grid;
  }

  .report-title span {
    max-width: none;
    font-size: 25px;
  }

  .status-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }

  .status-grid div {
    min-height: 48px;
    padding: 10px 11px;
    font-size: 13px;
  }

  .mini-chart {
    height: 98px;
    gap: 8px;
    margin-bottom: 18px;
    padding: 14px;
  }

  .report-note {
    padding: 13px;
    font-size: 14px;
  }

  .feature-card,
  .offer-panel,
  .step,
  details {
    padding: 20px;
  }

  .feature-icon,
  .step span {
    margin-bottom: 18px;
  }

  .price-line span {
    font-size: 36px;
  }

  summary {
    font-size: 16px;
  }

  .legal-content {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .hero,
  .section,
  .legal-page {
    padding-right: 14px;
    padding-left: 14px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 26px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero-copy,
  .two-column p:last-child,
  .offer-layout p {
    font-size: 17px;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 46px;
    padding: 12px 14px;
  }

  .hero-preview {
    margin-top: 30px;
  }

  .report-topline,
  .report-title {
    gap: 10px;
    margin-bottom: 18px;
  }

  .report-title strong {
    width: fit-content;
  }

  .report-sheet {
    padding: 14px;
  }

  .report-title span {
    font-size: 22px;
  }

  .mini-chart {
    display: none;
  }

  .feature-grid,
  .steps,
  .faq-list,
  .check-list {
    gap: 12px;
  }

  .site-footer {
    display: grid;
    justify-content: stretch;
    padding: 22px 14px;
  }
}
