:root {
  color-scheme: dark;
  --page: #08090b;
  --surface: #111316;
  --surface-raised: #171a1e;
  --line: #282c30;
  --text: #f4f5f6;
  --muted: #9ba1a6;
  --accent: #42c4e9;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--page);
  color: var(--text);
}

body,
button,
a {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  z-index: 10;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--text);
  color: var(--page);
  font-size: 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement-bar {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 7px 18px;
  background: #141619;
  color: #d7dadd;
  text-align: center;
}

.announcement-bar p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.announcement-bar span {
  margin: 0 7px;
  color: var(--accent);
}

.site-header {
  position: relative;
  z-index: 5;
  width: min(1710px, calc(100% - 72px));
  min-height: 116px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  width: fit-content;
  color: var(--text);
  font-size: 19px;
  font-weight: 850;
  letter-spacing: .055em;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 36px);
}

.primary-nav a,
.header-cta,
.footer-links a,
.footer-socials a {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .055em;
  transition: color .18s ease;
}

.primary-nav a {
  color: #d9dcde;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.footer-links a:hover,
.footer-socials a:hover {
  color: var(--accent);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid #e7e9ea;
  background: #f0f1f1;
  color: #101214;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.header-cta:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.menu-toggle {
  display: none;
}

.showcase,
.catalog,
.community {
  width: min(1710px, calc(100% - 72px));
  margin: 0 auto;
}

.showcase {
  position: relative;
  min-height: clamp(490px, 42vw, 700px);
  overflow: hidden;
  background: #090d14;
  isolation: isolate;
}

.showcase-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: .9fr 1.14fr .82fr;
  gap: 1px;
  background: #252a31;
}

.showcase-grid::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(5 7 10 / 88%) 0%, rgb(5 7 10 / 72%) 28%, rgb(5 7 10 / 26%) 58%, rgb(5 7 10 / 8%) 100%), linear-gradient(0deg, rgb(5 7 10 / 56%) 0%, transparent 28%);
  content: "";
  pointer-events: none;
}

.showcase-panel {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #111a27;
}

.showcase-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.04);
}

.showcase-panel--purple .showcase-video {
  object-position: 50% center;
}

.showcase-panel--gold .showcase-video {
  object-position: 49% center;
}

.showcase-panel--pink .showcase-video {
  object-position: 52% center;
}

.showcase-panel figcaption {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 17px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #f3f4f5;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-shadow: 0 1px 5px #000;
}

.showcase-panel figcaption span {
  color: var(--accent);
}

.showcase-copy {
  position: absolute;
  top: 50%;
  left: 5.3%;
  z-index: 2;
  width: min(52%, 790px);
  transform: translateY(-50%);
}

.eyebrow {
  margin: 0 0 20px;
  color: #d0d5d8;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.showcase h1 {
  margin: 0;
  font-size: clamp(56px, 6.4vw, 112px);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .88;
  text-shadow: 0 5px 25px rgb(0 0 0 / 45%);
}

.showcase h1 span {
  color: #e2e5e7;
}

.showcase-description {
  max-width: 560px;
  margin: 20px 0 0;
  color: #d1d5d8;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.65;
  text-shadow: 0 2px 12px rgb(0 0 0 / 65%);
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 25px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 0 19px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 11px;
  letter-spacing: .035em;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.button-light {
  background: #f1f3f3;
  color: #101214;
}

.button-light:hover {
  background: var(--accent);
}

.text-link {
  color: #eef0f2;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .05em;
}

.text-link span,
.community-links span {
  color: var(--accent);
}

.showcase-note {
  position: absolute;
  right: 21px;
  top: 18px;
  z-index: 2;
  margin: 0;
  color: #d7dbde;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-shadow: 0 1px 5px #000;
}

.showcase-note span {
  margin: 0 5px;
  color: var(--accent);
}

.catalog {
  padding: clamp(62px, 7vw, 105px) 0 90px;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
  color: var(--muted);
}

.section-heading h2,
.community h2,
.policy-page h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 850;
  letter-spacing: -.065em;
}

.section-note {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 12px;
}

.empty-state {
  min-height: 220px;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.empty-mark {
  color: #66717a;
  font-family: Consolas, "Courier New", monospace;
  font-size: 24px;
  line-height: 1;
}

.empty-state h3 {
  margin: 11px 0 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 650;
}

.empty-state p {
  margin: 8px 0 0;
  font-size: 12px;
}

.community {
  padding: 56px 0 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}

.community .eyebrow {
  margin-bottom: 14px;
  color: var(--muted);
}

.community h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.community p:not(.eyebrow) {
  max-width: 500px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.community-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.community-links a {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: #e6e8e9;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: border-color .18s ease, background .18s ease;
}

.community-links a:hover {
  border-color: #3a8599;
  background: #121c21;
}

.site-footer {
  margin-top: 70px;
  padding: 54px max(36px, calc((100vw - 1710px) / 2)) 18px;
  background: #050607;
}

.footer-main {
  width: min(1710px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px 45px;
  align-items: start;
}

.footer-brand {
  font-size: 17px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.footer-links a,
.footer-socials a {
  color: #c7cbce;
  font-size: 9px;
}

.footer-socials {
  grid-column: 1 / -1;
  display: flex;
  gap: 22px;
}

.footer-bottom {
  width: min(1710px, 100%);
  margin: 58px auto 0;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid #202326;
  color: #858c91;
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .055em;
}

.policy-page {
  width: min(1120px, calc(100% - 72px));
  min-height: 65vh;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) 0 80px;
}

.policy-breadcrumb {
  margin: 0 0 26px;
  color: var(--muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  letter-spacing: .08em;
}

.policy-breadcrumb a:hover {
  color: var(--accent);
}

.policy-lead {
  max-width: 760px;
  margin: 16px 0 32px;
  color: #b4bbc0;
  font-size: 14px;
  line-height: 1.75;
}

.policy-nav {
  position: sticky;
  top: 0;
  z-index: 3;
  margin-bottom: 32px;
  padding: 14px 0;
  display: flex;
  gap: 23px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgb(8 9 11 / 94%);
}

.policy-nav a {
  flex: 0 0 auto;
  color: #c9ced1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
}

.policy-nav a:hover {
  color: var(--accent);
}

.policy-section {
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 70px;
}

.policy-section .eyebrow {
  margin-bottom: 12px;
  color: var(--muted);
}

.policy-section h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -.04em;
}

.policy-section p,
.policy-section li {
  max-width: 820px;
  color: #bac0c4;
  font-size: 13px;
  line-height: 1.8;
}

.policy-section ul {
  padding-left: 20px;
}

.policy-section a {
  color: #e8ecee;
  text-decoration: underline;
  text-decoration-color: #5b6971;
  text-underline-offset: 3px;
}

.policy-section a:hover {
  color: var(--accent);
}

.policy-note {
  margin-top: 30px;
  padding: 17px 19px;
  border-left: 2px solid var(--accent);
  background: var(--surface);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

@media (max-width: 1120px) {
  .site-header,
  .showcase,
  .catalog,
  .community {
    width: calc(100% - 48px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 20px;
  }

  .primary-nav {
    gap: 15px;
  }

  .primary-nav a {
    font-size: 9px;
  }

  .brand {
    font-size: 16px;
  }

  .header-cta {
    padding: 13px 14px;
    font-size: 9px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 86px;
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform .18s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px 16px 16px;
    border: 1px solid var(--line);
    background: #0e1012;
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 13px 2px;
    border-bottom: 1px solid #24282c;
    font-size: 10px;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .showcase-copy {
    width: min(65%, 700px);
  }

  .showcase h1 {
    font-size: clamp(58px, 8vw, 90px);
  }

  .community {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .community-links {
    max-width: 600px;
  }
}

@media (max-width: 640px) {
  .announcement-bar {
    min-height: 30px;
  }

  .announcement-bar p {
    font-size: 8px;
    letter-spacing: .09em;
  }

  .site-header,
  .showcase,
  .catalog,
  .community,
  .policy-page {
    width: calc(100% - 32px);
  }

  .site-header {
    min-height: 74px;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .brand {
    font-size: 15px;
    letter-spacing: .035em;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    top: calc(100% - 1px);
  }

  .showcase {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .showcase-copy {
    position: relative;
    top: auto;
    left: auto;
    order: -1;
    width: 100%;
    padding: 42px 22px 36px;
    transform: none;
    background: #0b0d10;
  }

  .showcase-copy .eyebrow {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .showcase h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .showcase-description {
    margin-top: 16px;
    font-size: 13px;
  }

  .hero-actions {
    margin-top: 21px;
    gap: 15px 18px;
  }

  .button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 10px;
  }

  .showcase-grid {
    position: relative;
    inset: auto;
    z-index: 0;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(215px, 63vw));
    gap: 1px;
  }

  .showcase-grid::after {
    background: linear-gradient(0deg, rgb(5 7 10 / 35%) 0%, transparent 35%);
  }

  .showcase-panel {
    min-height: 215px;
  }

  .showcase-panel figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .showcase-note {
    position: relative;
    right: auto;
    top: auto;
    order: 2;
    padding: 13px 16px;
    background: #0b0d10;
    font-size: 9px;
  }

  .catalog {
    padding: 54px 0 58px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .section-heading h2 {
    font-size: 37px;
  }

  .empty-state {
    min-height: 185px;
    margin-top: 21px;
  }

  .community {
    padding: 42px 0 46px;
  }

  .community h2 {
    font-size: 32px;
  }

  .community-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .community-links a {
    min-height: 48px;
    padding: 0 12px;
    font-size: 10px;
  }

  .site-footer {
    margin-top: 44px;
    padding: 38px 16px 14px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .footer-socials {
    grid-column: auto;
  }

  .footer-bottom {
    margin-top: 38px;
    font-size: 8px;
  }

  .policy-page {
    padding-top: 50px;
  }

  .policy-page h1 {
    font-size: 39px;
  }

  .policy-lead {
    font-size: 13px;
  }

  .policy-nav {
    gap: 18px;
  }

  .policy-section {
    padding: 28px 0 31px;
  }

  .policy-section h2 {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

