:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #17212b;
  --muted: #607080;
  --line: #d8e0e8;
  --brand: #0847f7;
  --accent: #0f9f8f;
  --warm: #f2b84b;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px;
}

.brand {
  font-weight: 850;
  text-decoration: none;
  font-size: 20px;
}

.brand span {
  color: var(--brand);
}

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

nav a {
  text-decoration: none;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
}

.hero,
.plugin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 28px;
  align-items: center;
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.status {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 7vw, 72px);
  line-height: .96;
}

h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.product-visual {
  min-height: 300px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(8, 71, 247, .08), rgba(15, 159, 143, .12)),
    var(--surface);
  padding: 24px;
  box-shadow: 0 24px 70px rgba(23, 33, 43, .12);
}

.visual-bar {
  width: 64%;
  height: 18px;
  background: var(--brand);
  margin-bottom: 28px;
}

.visual-row {
  height: 14px;
  background: #cad5e0;
  margin: 14px 0;
}

.visual-row.strong {
  width: 86%;
  background: var(--accent);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.visual-grid span {
  min-height: 74px;
  border: 1px solid var(--line);
  background: #fff;
}

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

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

.plugin-card,
.content-grid article,
.facts {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(23, 33, 43, .08);
}

.plugin-card p,
.content-grid p,
li {
  color: var(--muted);
  line-height: 1.6;
}

.muted-card {
  background: #f0f4f8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
}

.button.ghost {
  background: transparent;
  color: var(--brand);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.facts dl {
  margin: 0;
}

.facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.facts div:last-child {
  border-bottom: 0;
}

.facts dt {
  color: var(--muted);
}

.facts dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

ul {
  padding-left: 20px;
}

li::marker {
  color: var(--warm);
}

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

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

  h1 {
    font-size: 42px;
  }
}
