:root {
  color-scheme: dark;
  --bg: #090217;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.8);
  --soft: rgba(255, 255, 255, 0.11);
  --card-radius: 20px;
  --purple: #6119f2;
  --purple-soft: #ffffff;
  --font-ui: "Inter Variable", Inter, "Inter Placeholder", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: ".SFNSDisplay-Semibold", "SFProDisplay-Semibold", "SFUIDisplay-Semibold", ".SFUIDisplay-Semibold", "SF Pro Display", -apple-system, BlinkMacSystemFont, var(--font-ui);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  line-height: 1.5;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 12px;
  background: transparent;
  pointer-events: none;
}

.orbit-nav {
  width: 100%;
  max-width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 22px 16px 32px;
  border: 1px solid transparent;
  border-radius: 0;
  background: rgba(0, 0, 0, 0);
  box-shadow: none;
  pointer-events: auto;
  transition:
    width 380ms cubic-bezier(0.16, 1, 0.3, 1),
    max-width 380ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 380ms cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 380ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 380ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 380ms cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

.local-orbit-nav-scrolled .orbit-nav {
  width: min(760px, calc(100vw - 24px));
  border-color: rgba(255, 255, 255, 0.04);
  border-radius: 160px;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.22), inset 0 -4px 18px rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(36px);
  backdrop-filter: blur(36px);
}

.brand,
.nav-links,
.nav-cta,
.footer-bottom {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  flex: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.nav-links {
  gap: 26px;
  margin-left: auto;
}

.nav-links a,
.nav-cta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 500;
  line-height: 30px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  flex: none;
  height: 46px;
  min-height: 46px;
  justify-content: center;
  padding: 0 34px;
  border-radius: 130px;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 22.4px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.18), 0 10px 28px rgba(255, 255, 255, 0.08);
}

main {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  flex: 1 0 auto;
}

.home-main {
  width: min(1120px, calc(100% - 48px));
  padding-bottom: 48px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: ".SFNSDisplay", "SFProDisplay-Regular", "SFUIDisplay-Regular", ".SFUIDisplay", "SF Pro Display", -apple-system, BlinkMacSystemFont, var(--font-ui);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 40px;
  line-height: 44px;
}

.lede,
.article-dek {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

.hub-hero {
  display: block;
  padding: 76px 0 32px;
}

.hub-hero-copy {
  width: 100%;
}

.hub-hero h1 {
  max-width: 840px;
  font-size: 56px;
  line-height: 60px;
}

.hub-hero h2 {
  max-width: 100%;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.topic-chip {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.045);
}

.topic-chip:hover,
.topic-chip:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.075);
}

.topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  max-width: 100%;
}

.topic-chip {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

.featured-band {
  padding: 24px 0 28px;
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
}

.featured-media {
  min-width: 0;
  min-height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  background: #efa0de;
}

.featured-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}

.featured-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 38px;
}

.article-card-date {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.featured-title {
  color: var(--ink);
  font-family: ".SFNSDisplay", "SFProDisplay-Regular", "SFUIDisplay-Regular", ".SFUIDisplay", "SF Pro Display", -apple-system, BlinkMacSystemFont, var(--font-ui);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
}

.featured-copy small,
.article-card small,
.resource-section-header p,
.body-note {
  color: var(--muted);
}

.article-card:hover .article-card-title,
.article-card:focus-visible .article-card-title,
.body-note a,
.article-body a {
  color: #fff;
}

.resource-section {
  padding: 60px 0 0;
  scroll-margin-top: 120px;
}

.resource-section-header {
  display: block;
  padding-top: 30px;
  border-top: 1px solid var(--soft);
}

.resource-section-header h2,
.related-heading h2 {
  font-size: 32px;
  line-height: 1.2;
}

.resource-section-header p {
  max-width: 640px;
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 27px;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.article-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
}

.article-card-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #efa0de;
}

.featured-media::after,
.article-card-media::after,
.article-hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(223, 64, 205, 0.13);
  mix-blend-mode: multiply;
}

.article-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
  filter: saturate(1.08) contrast(1.03);
}

.article-card-copy {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
}

.article-card-title {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.28;
}

.article-card small {
  font-size: 14px;
  line-height: 21px;
}

.body-note {
  margin: 28px 0 0;
  font-size: 17px;
}

.article-main {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0 112px;
}

.locale-suggestion {
  width: min(760px, calc(100% - 48px));
  margin: 24px auto 0;
  padding: 12px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.locale-suggestion[hidden] {
  display: none;
}

.locale-suggestion-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.locale-suggestion-link:hover,
.locale-suggestion-link:focus-visible {
  text-decoration: underline;
}

.language-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 20px;
}

.language-links span {
  color: rgba(255, 255, 255, 0.55);
}

.language-links a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.language-links a:hover,
.language-links a:focus-visible {
  text-decoration: underline;
}

.article {
  max-width: 760px;
  margin: 0 auto;
}

.article-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.article-back:hover,
.article-back:focus-visible {
  color: var(--ink);
}

.article-meta {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.article-hero-figure {
  max-width: 760px;
  margin: 34px 0 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: #efa0de;
}

.article-hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  display: block;
  border-radius: var(--card-radius);
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
  filter: saturate(1.08) contrast(1.03);
}

.article-body {
  max-width: 760px;
  margin-top: 58px;
}

.article-body h2 {
  margin-top: 48px;
  font-size: 32px;
  line-height: 1.2;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 34px 0 0;
  font-size: 22px;
  line-height: 1.3;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

.article-body p {
  margin: 18px 0 0;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.article-body ol {
  padding-left: 26px;
}

.article-body strong {
  color: var(--ink);
}

.related-articles {
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid var(--soft);
}

.related-heading h2 {
  margin: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.article-card-compact .article-card-copy {
  padding: 14px;
}

.article-card-compact .article-card-title {
  font-size: 16px;
}

.article-card-compact small {
  display: none;
}

.all-guides-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 24px;
}

.all-guides-list a {
  min-width: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 21px;
  text-decoration: none;
}

.all-guides-list a:hover,
.all-guides-list a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.orbit-footer {
  width: min(1200px, calc(100% - 60px));
  min-height: 315px;
  margin: 0 auto 48px;
  padding: 40px 32px 24px;
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 64px;
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  color: #ffffff;
}

.orbit-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  border-radius: inherit;
  pointer-events: none;
}

.footer-links {
  display: grid;
  grid-template-columns: 80px repeat(5, minmax(112px, max-content));
  justify-content: space-between;
  gap: 42px;
  width: 100%;
  max-width: 100%;
}

.footer-brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  text-decoration: none;
}

.footer-brand-mark img {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 11px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 19px;
  width: max-content;
}

.footer-column p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
}

.footer-column a,
.footer-column span,
.footer-bottom {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
}

.footer-column a,
.footer-signature {
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-signature:hover,
.footer-signature:focus-visible {
  color: #fff;
}

.footer-bottom {
  justify-content: space-between;
  gap: 20px;
  color: rgba(187, 176, 209, 0.5);
}

.footer-bottom p {
  margin: 0;
  color: rgba(187, 176, 209, 0.5);
  font-family: ".SFNSDisplay-Medium", "SFProDisplay-Medium", "SFUIDisplay-Medium", ".SFUIDisplay-Medium", "SF Pro Display", -apple-system, BlinkMacSystemFont, var(--font-ui);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.footer-signature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgb(196, 173, 240);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
}

.footer-made-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  overflow: hidden;
}

.footer-made-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

@media (max-width: 1080px) {
  .footer-links {
    grid-template-columns: 80px repeat(3, minmax(128px, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .orbit-nav {
    gap: 16px;
    min-height: 64px;
    padding: 12px 12px 12px 20px;
  }

  .local-orbit-nav-scrolled .orbit-nav {
    width: calc(100vw - 32px);
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
    padding: 0 22px;
  }

  main,
  .article-main {
    width: min(100% - 32px, 860px);
  }

  .hub-hero,
  .article-main {
    padding-top: 16px;
  }

  .hub-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 22px;
  }

  .home-main {
    padding-bottom: 32px;
  }

  .hub-hero h1 {
    font-size: 43px;
    line-height: 46px;
  }

  .hub-hero h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .topic-nav {
    justify-content: flex-start;
  }

  .featured-band {
    padding-top: 16px;
  }

  .featured-article {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .featured-media img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .featured-copy {
    padding: 24px;
  }

  .featured-title {
    font-size: 28px;
  }

  .resource-section {
    padding-top: 46px;
  }

  .resource-section-header {
    display: block;
  }

  .article-card-grid {
    grid-template-columns: 1fr;
  }

  .all-guides-list {
    grid-template-columns: 1fr;
  }

  .article-back {
    margin-bottom: 20px;
  }

  h1,
  .article h1 {
    font-size: 44px;
  }

  .lede,
  .article-dek {
    font-size: 19px;
  }

  .article-body {
    margin-top: 42px;
  }

  .article-hero-figure {
    margin-top: 28px;
  }

  .article-hero-image {
    border-radius: var(--card-radius);
  }

  .article-body h2 {
    font-size: 28px;
  }

  .article-body p,
  .article-body li {
    font-size: 17px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-card-compact small {
    display: block;
  }

  .orbit-footer {
    width: calc(100% - 32px);
    min-height: 0;
    margin-bottom: 32px;
    padding: 32px 24px 24px;
    gap: 48px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .brand {
    gap: 8px;
    font-size: 23px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .orbit-nav {
    gap: 10px;
    padding-left: 16px;
  }

  .nav-cta {
    padding: 0 16px;
    font-size: 14px;
  }
}
