* {
  box-sizing: border-box;
}

html {
  background: #000;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

.blog-page {
  min-height: 100vh;
  background: #000;
}

.blog-shell {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 24px 20px 52px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 92px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 22px;
  display: block;
  object-fit: contain;
}

.brand-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(47,111,237,0.8);
  border-radius: 999px;
  color: #fff;
  background: rgba(47,111,237,0.10);
  box-shadow: 0 0 24px rgba(47,111,237,0.12);
}

.blog-header {
  margin-bottom: 64px;
}

.blog-kicker {
  margin: 0 0 18px;
  color: #2F6FED;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.blog-header h1 {
  margin: 0;
  font-size: clamp(56px, 12vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 700;
}

.blog-subheader {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.68);
  font-size: clamp(18px, 4vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.post-list {
  border-top: 1px solid rgba(255,255,255,0.12);
}

.post-card {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.post-link {
  display: grid;
  gap: 14px;
  padding: 34px 0;
}

.post-label {
  color: #2F6FED;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card h2 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 6vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.post-card p {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.015em;
}

.read-link {
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
  transition: color 180ms ease, transform 180ms ease;
}

.post-link:hover .read-link {
  color: #2F6FED;
  transform: translateX(4px);
}

.blog-footer {
  margin-top: 68px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.54);
  font-size: 14px;
  line-height: 1.5;
}

.blog-footer strong {
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .blog-shell {
    padding: 44px 32px 72px;
  }

  .post-link {
    padding: 42px 0;
  }
}

@media (max-width: 720px) {
  .site-nav {
    justify-content: flex-end;
    margin-bottom: 70px;
  }

  .brand-link {
    display: none;
  }

  .nav-links {
    gap: 16px;
    font-size: 13px;
  }

  .nav-links a:nth-child(1),
  .nav-links a:nth-child(2),
  .nav-links a:nth-child(3) {
    display: none;
  }

  .blog-header {
    margin-bottom: 52px;
  }
}


/* Article pages */
.article-shell {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 24px 20px 72px;
}

.article-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 86px;
}

.article-header {
  margin-bottom: 54px;
}

.article-kicker {
  margin: 0 0 18px;
  color: #2F6FED;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-header h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.072em;
  font-weight: 800;
}

.article-dek {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.68);
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.38;
  letter-spacing: -0.035em;
}

.article-meta {
  margin-top: 24px;
  color: rgba(255,255,255,0.42);
  font-size: 13px;
  line-height: 1.6;
}

.article-body {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 42px;
}

.article-body h2 {
  margin: 52px 0 16px;
  color: #fff;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.article-body p {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.78;
  letter-spacing: -0.02em;
}

.article-body .lead {
  color: rgba(255,255,255,0.84);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.article-callout {
  margin: 40px 0;
  padding: 26px;
  border: 1px solid rgba(47,111,237,0.34);
  border-radius: 24px;
  background: rgba(47,111,237,0.08);
}

.article-callout p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-weight: 600;
}

.article-list {
  margin: 18px 0 28px;
  padding-left: 22px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.8;
}

.article-list li {
  margin-bottom: 8px;
}

.article-footer {
  margin-top: 68px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 12px;
  color: rgba(255,255,255,0.54);
  font-size: 14px;
  line-height: 1.5;
}

.article-footer a {
  color: rgba(255,255,255,0.78);
}

.article-footer a:hover {
  color: #2F6FED;
}

.blue { color: #2F6FED; }

@media (min-width: 768px) {
  .article-shell {
    padding: 44px 32px 88px;
  }
}

@media (max-width: 720px) {
  .article-nav {
    justify-content: flex-end;
    margin-bottom: 70px;
  }

  .article-nav .brand-link {
    display: none;
  }

  .article-body p,
  .article-list {
    font-size: 16px;
  }

  .article-callout {
    padding: 22px;
    border-radius: 20px;
  }
}
