:root {
  --blue: #07639f;
  --cyan: #06c7e6;
  --cyan-dark: #00a8c4;
  --hero: #292f34;
  --body: #1f2428;
  --text: #d9e0e5;
  --muted: #8e9aa4;
  --lime: #bed62e;
  --line: #3a4147;
  --shell: 792px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--body);
  color: var(--text);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.45;
}

a {
  color: inherit;
}

.shell {
  width: min(var(--shell), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  height: 36px;
  background: var(--blue);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  margin-right: 21px;
  color: #fff;
}

.brand-mark {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}

.brand-name {
  font-size: 12px;
}

.nav-primary,
.nav-secondary {
  display: flex;
  align-items: center;
  gap: 13px;
}

.nav-secondary {
  margin-left: auto;
}

.nav-primary a,
.nav-secondary a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.96);
  font-size: 9px;
}

.nav-primary a:hover,
.nav-secondary a:hover {
  text-decoration: underline;
}

.hero {
  min-height: 340px;
  background: var(--hero);
  padding: 29px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 392px;
  gap: 46px;
  align-items: start;
}

.parody-label {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 6px;
  border: 1px solid rgba(6, 199, 230, 0.55);
  border-radius: 3px;
  color: var(--cyan);
  font-size: 8px;
  letter-spacing: .07em;
}

h1 {
  margin: 0 0 7px;
  color: #f1f3f4;
  font-size: 26px;
  line-height: 1.08;
  font-weight: 600;
}

.hero-description {
  max-width: 370px;
  margin: 0;
  color: #bfc8cf;
  font-size: 12px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 31px;
  padding: 0 14px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 12px;
}

.button-primary {
  background: var(--cyan);
  color: #07171a;
  font-weight: 600;
}

.button-primary:hover {
  background: #20d5ef;
}

.button-muted {
  border: 1px solid #5a6268;
  color: #77838d;
}

.release-note {
  margin-top: 28px;
}

.stable-version {
  color: var(--lime);
  font-size: 10px;
  font-weight: 600;
}

.release-note p {
  margin: 4px 0 0;
  color: #6f7a83;
  font-size: 9px;
  line-height: 1.45;
}

.date-pill {
  display: inline-block;
  margin-right: 3px;
  padding: 0 4px;
  border-radius: 7px;
  background: #e9eef1;
  color: #283038;
  font-size: 8px;
  line-height: 14px;
  vertical-align: 1px;
}

.hero-image-wrap {
  padding-top: 2px;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #62717b;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.25);
}

.content-area {
  background: var(--body);
  padding: 15px 0 0;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 600;
}

.news-section {
  padding-bottom: 28px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.news-card h3 {
  margin: 0 0 2px;
  font-size: 10px;
  font-weight: 500;
}

.news-card h3 a,
.feature-card > a {
  color: var(--cyan);
}

.news-card p {
  margin: 0;
  color: #d1d7dc;
  font-size: 9px;
  line-height: 1.45;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 44px;
  row-gap: 32px;
}

.feature-card h3 {
  margin: 7px 0 3px;
  color: #eef1f3;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 500;
}

.feature-card p {
  min-height: 52px;
  margin: 0 0 2px;
  color: #d3d8dc;
  font-size: 9px;
  line-height: 1.45;
}

.feature-card > a {
  font-size: 9px;
}

.icon-box {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: var(--cyan);
}

.icon-box svg {
  width: 18px;
  height: 18px;
  fill: #08272d;
}

.learn-more-wrap {
  display: flex;
  justify-content: center;
  padding: 34px 0 31px;
}

.button-outline {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--cyan-dark);
  color: var(--cyan);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 35px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.footer h4 {
  margin: 0 0 8px;
  color: #aab4bc;
  font-size: 9px;
  font-weight: 500;
}

.footer a {
  display: block;
  margin: 0 0 7px;
  color: #65727d;
  text-decoration: none;
  font-size: 9px;
}

.footer a:hover {
  color: var(--cyan);
}

.small-dot {
  display: inline-grid;
  width: 9px;
  height: 9px;
  place-items: center;
  margin-left: 2px;
  border-radius: 50%;
  background: #0877bd;
  color: #fff;
  font-size: 6px;
}

.disclaimer {
  margin: 22px 0 0;
  color: #68757f;
  font-size: 8px;
  text-align: center;
}

@media (max-width: 820px) {
  .topbar {
    height: auto;
  }

  .nav-wrap {
    min-height: 44px;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 8px 0;
  }

  .nav-primary,
  .nav-secondary {
    flex-wrap: wrap;
  }

  .nav-secondary {
    margin-left: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-image-wrap {
    max-width: 520px;
  }

  .news-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  body {
    font-size: 13px;
  }

  .brand {
    width: 100%;
  }

  .hero {
    padding-top: 24px;
  }

  h1 {
    font-size: 30px;
  }

  .hero-description {
    font-size: 14px;
  }

  .news-grid,
  .features-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card p {
    min-height: auto;
  }

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


.pros-cons {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.list-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.015);
}

.list-card h3 {
  margin: 0 0 10px;
  color: #eef1f3;
  font-size: 15px;
}

.list-card ul {
  margin: 0;
  padding-left: 18px;
  color: #bfc8cf;
  font-size: 10px;
  line-height: 1.7;
}

@media (max-width: 620px) {
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
}
