:root {
  --void: #0b0c0c;
  --card: #17191a;
  --txt: #f2f2f2;
  --dim: #8f969b;
  --ok: #32b34f;
  --amber: #f0a202;
  --stroke: #2c3032;
}

* { box-sizing: border-box; }
html { overflow-x: clip; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(50, 179, 79, .16), transparent 42%),
    var(--void);
  color: var(--txt);
  font: 17px/1.65 "Nunito Sans", "Segoe UI", sans-serif;
  overflow-x: clip;
  overflow-wrap: anywhere;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }

.atlas-bar {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
}
.atlas-logo { text-decoration: none; font-weight: 800; }
.atlas-logo em { font-style: normal; color: var(--ok); }
.atlas-bar nav { display: flex; flex-wrap: wrap; gap: 12px 16px; font-size: 14px; color: var(--dim); justify-content: flex-end; }
.atlas-bar nav a { text-decoration: none; }

.atlas-hero {
  text-align: center;
  padding: 28px 16px 8px;
}
.atlas-hero p.tag { color: var(--ok); letter-spacing: .16em; text-transform: uppercase; font-size: 12px; }
.atlas-hero h1 { font-size: clamp(26px, 8vw, 52px); line-height: 1.12; margin: 8px auto 14px; max-width: 16ch; }
.atlas-hero .intro { max-width: 42rem; margin: 0 auto 22px; color: var(--dim); }
.atlas-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.atlas-cta a {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 800;
}
.atlas-cta .go { background: var(--ok); color: #fff; }
.atlas-cta .soft { border: 1px solid var(--stroke); }

.atlas-strip {
  width: min(1080px, calc(100% - 32px));
  margin: 36px auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.atlas-strip article {
  background: var(--card);
  border: 1px solid var(--stroke);
  padding: 16px;
  min-height: 110px;
  min-width: 0;
}
.atlas-strip b { display: block; color: var(--amber); font-size: 12px; margin-bottom: 6px; }

.atlas-read {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto 48px;
}
.atlas-read h2 { font-size: clamp(22px, 6vw, 28px); margin: 36px 0 10px; }
.atlas-read h3 { font-size: 20px; margin: 24px 0 8px; }
.atlas-figure { margin: 20px 0; }
.atlas-figure img { width: 100%; background: #101212; }
.atlas-figure figcaption { color: var(--dim); font-size: 13px; margin-top: 8px; }

.atlas-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.atlas-cmp { width: 100%; border-collapse: collapse; }
.atlas-cmp th, .atlas-cmp td { border: 1px solid var(--stroke); padding: 10px; text-align: left; }
.atlas-cmp th { background: #101312; }

.atlas-quote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--ok);
  background: #121614;
  color: var(--dim);
}

.atlas-end {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto 56px;
  padding: 28px;
  background: linear-gradient(100deg, #1d3a22, #2a1c0c);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.atlas-end a {
  background: var(--amber);
  color: #1a1204;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 4px;
  text-align: center;
  flex: 0 1 auto;
}
.atlas-foot { text-align: center; color: var(--dim); padding: 24px 16px; font-size: 13px; }

@media (max-width: 900px) {
  .atlas-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .atlas-bar {
    flex-direction: column;
    text-align: center;
    padding: 16px 0 8px;
  }
  .atlas-bar nav { justify-content: center; }
  .atlas-end {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 16px;
  }
  .atlas-end a { width: 100%; }
  .atlas-hero h1 { max-width: none; }
  .atlas-quote { padding: 16px; }
}

@media (max-width: 560px) {
  .atlas-strip { grid-template-columns: 1fr; }
  .atlas-cta a { width: 100%; text-align: center; }
  .atlas-cmp thead { display: none; }
  .atlas-cmp, .atlas-cmp tbody, .atlas-cmp tr, .atlas-cmp td { display: block; width: 100%; }
  .atlas-cmp tr { margin-bottom: 12px; border: 1px solid var(--stroke); }
  .atlas-cmp td { border: 0; }
}
