:root {
  color-scheme: dark;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #0b0b0f;
  color: #f6f4ff;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background:
    radial-gradient(
      ellipse 72% 28% at 50% 0%,
      rgba(91, 72, 183, 0.2),
      transparent 68%
    ),
    #0b0b0f;
}
a {
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 11, 15, 0.88);
  backdrop-filter: blur(16px);
}
.nav {
  width: min(1180px, calc(100% - 40px));
  height: 72px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 750;
}
.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #aaa8b8;
  font-size: 14px;
}
.nav-links a {
  text-decoration: none;
}
.nav-links a:hover {
  color: #fff;
}
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #7160e8;
  padding: 0 18px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.button:hover {
  background: #8475f5;
}
main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}
.eyebrow {
  margin: 0 0 14px;
  color: #b6adff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.14;
}
h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}
p,
li {
  color: #c9c6d5;
  font-size: 1rem;
  line-height: 1.65;
}
.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: 1.15rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.quiet-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 18px;
  color: #eceaf4;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.quiet-link:hover {
  background: rgba(255, 255, 255, 0.06);
}
.featured {
  display: grid;
  gap: 20px;
  margin-top: 68px;
  grid-template-columns: 1.35fr 0.65fr;
}
.featured-card,
.article-card,
.answer,
.article-body,
.article-aside {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(23, 20, 35, 0.75);
}
.featured-card {
  min-height: 330px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.featured-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.card-copy {
  padding: 32px;
}
.card-copy p {
  margin: 14px 0 24px;
}
.answer {
  padding: 28px;
  background: linear-gradient(
    145deg,
    rgba(82, 64, 169, 0.42),
    rgba(22, 18, 36, 0.92)
  );
}
.answer p {
  margin-bottom: 0;
}
.section {
  margin-top: 96px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.section-head p {
  max-width: 530px;
  margin: 0;
}
.article-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  grid-template-columns: repeat(3, 1fr);
}
.article-card {
  overflow: hidden;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.article-card:hover {
  border-color: rgba(140, 122, 245, 0.65);
  transform: translateY(-2px);
}
.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.article-card div {
  padding: 22px;
}
.article-card p {
  margin: 10px 0 0;
  font-size: 0.92rem;
}
.faq {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(23, 20, 35, 0.7);
  padding: 0 20px;
}
summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}
details p {
  margin: 0 0 18px;
}
.disclosure {
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: #9894a7;
  font-size: 0.85rem;
}
.article-layout {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: start;
}
.article-body {
  padding: clamp(24px, 4vw, 52px);
}
.article-body h2 {
  margin: 44px 0 12px;
}
.article-body h3 {
  margin: 28px 0 8px;
}
.article-body p:first-of-type {
  font-size: 1.13rem;
}
.article-body img {
  width: 100%;
  margin: 28px 0 8px;
  border-radius: 8px;
}
.article-aside {
  position: sticky;
  top: 96px;
  padding: 22px;
}
.article-aside strong {
  display: block;
  margin-bottom: 12px;
}
.article-aside a {
  display: block;
  margin: 12px 0;
  color: #c3bcff;
  font-size: 0.92rem;
}
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 34px 20px max(34px, env(safe-area-inset-bottom));
  color: #9894a7;
  font-size: 14px;
}
.footer-inner {
  width: min(1180px, 100%);
  margin: auto;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 860px) {
  .featured,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-aside {
    position: static;
  }
}
@media (max-width: 600px) {
  .nav {
    width: min(100% - 24px, 1180px);
    height: 64px;
  }
  .nav-links {
    display: none;
  }
  main {
    width: min(100% - 28px, 1180px);
    padding-top: 48px;
  }
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-card img {
    max-height: 240px;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .section {
    margin-top: 72px;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 14px;
  }
}
