:root {
  color-scheme: light;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-2: #eef4f0;
  --text: #17202a;
  --muted: #627083;
  --line: #d9dee6;
  --accent: #0f6d5e;
  --accent-2: #b74159;
  --ink: #0d1b2a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.footer a {
  text-decoration: none;
}

.nav a:hover,
.footer a:hover {
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 92px) clamp(20px, 5vw, 64px) clamp(48px, 7vw, 80px);
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #354253;
  font-size: clamp(18px, 2vw, 22px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

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

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

.product-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.08);
}

.panel-top {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-top span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.panel-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric-grid div {
  min-height: 86px;
  padding: 14px;
  border-radius: 6px;
  background: #f8fafb;
  border: 1px solid #e7ebf0;
}

.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 18px;
}

.report-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.report-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #dfe5ec;
}

.report-lines span:nth-child(1) {
  width: 92%;
}

.report-lines span:nth-child(2) {
  width: 76%;
  background: #c8dad4;
}

.report-lines span:nth-child(3) {
  width: 84%;
  background: #e3c5cc;
}

.report-lines span:nth-child(4) {
  width: 62%;
}

.section {
  padding: clamp(48px, 7vw, 76px) clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  min-height: 190px;
  padding: 20px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.feature-grid p,
.text-block p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.muted {
  background: var(--surface-2);
}

.text-block {
  display: grid;
  gap: 14px;
  font-size: 17px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
  background: #101820;
}

.footer strong {
  color: #ffffff;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer a {
  color: #d7e1ea;
}

.policy-main {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 72px) 20px;
}

.policy-main h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.policy-main h2 {
  margin-top: 34px;
  font-size: 24px;
}

.policy-main p,
.policy-main li {
  color: #3f4b5b;
}

.policy-main ul {
  padding-left: 22px;
}

.policy-box {
  margin-top: 24px;
  padding: 18px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .feature-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .product-panel {
    padding: 18px;
  }
}
