:root {
  --bg: #1c1c1e;
  --panel: #252527;
  --text: #e6e8ec;
  --muted: #a7adb8;
  --blue: #00afff;
  --blue-deep: #0077ff;
  --orange: #f97316;
  --line: rgba(255, 255, 255, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font: 17px/1.75 Inter, system-ui, sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); font-weight: 700; text-decoration: none; }
a:hover { color: var(--orange); }

.article-hero {
  background: radial-gradient(circle at 70% 20%, rgba(0, 119, 255, .2), transparent 56%);
  border-bottom: 1px solid var(--line);
  padding: clamp(4.5rem, 10vw, 7.5rem) 1.25rem clamp(3.5rem, 8vw, 5.5rem);
}
.article-hero__inner,
.article,
.article-footer__inner {
  margin: 0 auto;
  max-width: 760px;
}
.article-hero__kicker {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
h1,
h2 {
  letter-spacing: -.03em;
  line-height: 1.12;
}
h1 {
  font-size: clamp(2.5rem, 7vw, 4.7rem);
  margin: .75rem 0 1.25rem;
}
h2 {
  font-size: clamp(1.65rem, 4vw, 2.3rem);
  margin: 3rem 0 1rem;
}
.article-hero__dek {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  margin: 0;
  max-width: 680px;
}
.article-hero__meta {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 1.5rem;
}
.article {
  padding: clamp(3.25rem, 8vw, 5.5rem) 1.25rem;
}
.article p { margin: 0 0 1.5rem; }
.article strong { color: #fff; }
.article blockquote {
  background: rgba(0, 119, 255, .1);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  color: #fff;
  font-size: clamp(1.12rem, 2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.55;
  margin: 2.5rem 0;
  padding: 1.5rem 1.75rem;
}
.article blockquote p { margin: 0; }
.article blockquote cite {
  color: var(--muted);
  display: block;
  font-size: .85rem;
  font-style: normal;
  font-weight: 600;
  margin-top: 1rem;
}
.article-cta {
  border-top: 1px solid var(--line);
  margin-top: 3.5rem;
  padding-top: 1.5rem;
}
.article-cta p { color: var(--muted); margin: 0; }
.article-back {
  display: inline-block;
  font-size: .9rem;
  margin-bottom: 2rem;
}
.article-footer {
  background: rgba(0, 0, 0, .16);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 2rem 1.25rem;
}
.article-footer__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  max-width: 1120px;
}
.article-footer__links { display: flex; flex-wrap: wrap; gap: 1rem; }
.article-footer a { color: var(--muted); font-size: .9rem; }
.article-footer a:hover { color: var(--orange); }

@media (max-width: 640px) {
  body { font-size: 16px; }
  .article blockquote { padding: 1.25rem; }
}
