@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/chakrapetch-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/chakrapetch-700.woff2') format('woff2');
}

:root {
  --void:      #0B0F16;
  --panel:     #121926;
  --panel-2:   #182133;
  --line:      #22304A;
  --line-soft: #1A2436;

  --ink:       #EEF3FB;
  --ink-2:     #B6C3D8;
  --muted:     #7E8DA7;

  --gold:      #F6C445;
  --gold-deep: #C9931B;
  --on-gold:   #1A1206;
  --sky:       #79C0F5;
  --live:      #67D89B;

  --w:      1120px;
  --w-text: 68ch;

  --display: 'Chakra Petch', ui-sans-serif, system-ui, sans-serif;
  --body: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto,
          'Helvetica Neue', Arial, sans-serif;

  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(1100px 520px at 50% -280px,
                    rgba(121, 192, 245, .14), transparent 70%);
  background-repeat: no-repeat;
}

img { max-width: 100%; display: block; }

a { color: var(--sky); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--w); margin: 0 auto; padding: 0 24px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--on-gold);
  padding: 10px 16px; font-family: var(--display); font-weight: 700; z-index: 50;
}
.skip:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(11, 15, 22, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 6px 20px;
  min-height: 66px; flex-wrap: wrap;
  padding-top: 11px; padding-bottom: 11px;
}

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand:hover { text-decoration: none; }
.brand img {
  width: 34px; height: 34px; border-radius: 50%;
  box-shadow: 0 0 0 1.5px var(--line);
}
.brand span {
  font-family: var(--display); font-weight: 700; font-size: 15px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink);
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; margin-left: -12px; }
.nav a {
  font-family: var(--display); font-weight: 500; font-size: 13px;
  letter-spacing: .11em; text-transform: uppercase;
  color: var(--muted); padding: 8px 12px; border-radius: 8px;
}
.nav a:hover { color: var(--ink); background: var(--panel); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--gold); }
.nav a.ext { color: var(--ink-2); }

h1, h2, h3 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.1;
  text-wrap: balance;
  margin: 0;
}
h1 { font-weight: 700; font-size: clamp(32px, 5.4vw, 52px); letter-spacing: -.005em; }
h2 { font-weight: 700; font-size: clamp(24px, 3.2vw, 32px); }
h3 { font-weight: 700; font-size: 19px; }

p { margin: 0 0 1em; color: var(--ink-2); max-width: var(--w-text); }

.lede { font-size: 19px; line-height: 1.6; color: var(--ink-2); }

.pills { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 0; margin: 0; list-style: none; }
.pill {
  font-family: var(--display); font-weight: 500; font-size: 11.5px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px;
  border: 1px solid var(--line); color: var(--muted);
  background: var(--panel); white-space: nowrap;
}
.pill.status { color: var(--ink-2); }
.pill.status::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--muted);
  margin-right: 7px; vertical-align: 1px;
}
.pill.status.live { color: var(--live); border-color: rgba(103, 216, 155, .35); }
.pill.status.live::before { background: var(--live); }
.pill.status.dev { color: var(--gold); border-color: rgba(246, 196, 69, .32); }
.pill.status.dev::before { background: var(--gold); }

.btns { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 4px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: 13.5px;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 12px 22px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--panel-2); color: var(--ink);
  transition: transform .12s ease, background-color .12s ease, border-color .12s ease;
}
.btn:hover { text-decoration: none; background: #1E2A40; border-color: #33456A; transform: translateY(-1px); }
.btn-primary { background: var(--gold); border-color: var(--gold); color: var(--on-gold); }
.btn-primary:hover { background: #FFD463; border-color: #FFD463; }

.hero { padding: 68px 0 12px; }
.hero-inner { display: grid; grid-template-columns: 168px 1fr; gap: 38px; align-items: center; }
.hero-mark img {
  width: 168px; height: 168px; border-radius: 50%;
  box-shadow: 0 0 0 2px var(--line), 0 18px 50px -18px rgba(121, 192, 245, .5);
}
.hero h1 { margin-bottom: 16px; }
.hero .lede { max-width: 56ch; margin: 0; }

@media (max-width: 720px) {
  .hero { padding-top: 44px; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-mark img { width: 116px; height: 116px; }
}

.section { padding: 56px 0 8px; }
.section-head { margin-bottom: 26px; }
.section-head .row { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.section-head .row .more {
  font-family: var(--display); font-weight: 500; font-size: 12.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  margin-left: auto;
}
.section-head .row .more:hover { color: var(--gold); text-decoration: none; }
.section-head p { margin: 12px 0 0; color: var(--muted); font-size: 15.5px; }
.rule { border: 0; border-top: 1px solid var(--line-soft); margin: 64px 0 0; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr)); gap: 26px; }

.card {
  display: flex; flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  box-shadow: 0 0 0 0 var(--gold);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card:hover {
  text-decoration: none;
  transform: translate(-3px, -3px);
  border-color: var(--gold-deep);
  box-shadow: 6px 6px 0 0 rgba(201, 147, 27, .55);
}
.card-media { aspect-ratio: 920 / 430; background: var(--panel-2); overflow: hidden; }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.92) brightness(.94);
  transition: filter .16s ease, transform .3s ease;
}
.card:hover .card-media img { filter: none; transform: scale(1.02); }

.card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-body h3 { font-size: 21px; }
.card-body .sub {
  font-family: var(--display); font-weight: 500; font-size: 12.5px;
  letter-spacing: .09em; text-transform: uppercase; color: var(--muted);
  margin: -6px 0 0;
}
.card-body p { margin: 0; font-size: 15px; color: var(--ink-2); }
.card-body .pills { margin-top: auto; padding-top: 4px; }

.product-hero { padding: 40px 0 0; }
.crumbs { margin-bottom: 24px; }
.crumbs ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0 10px;
}
.crumbs li {
  font-family: var(--display); font-weight: 500; font-size: 12.5px;
  letter-spacing: .11em; text-transform: uppercase; color: var(--muted);
}
.crumbs li + li::before {
  content: "/"; margin-right: 10px; color: var(--muted); opacity: .5;
}
.crumbs a { color: var(--muted); }
.crumbs .home a { display: flex; align-items: center; }
.crumbs .home svg { display: block; }
.crumbs a:hover { color: var(--gold); text-decoration: none; }
.crumbs [aria-current="page"] { color: var(--ink-2); }

.banner {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); margin-bottom: 30px;
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, .9);
}
.banner img { width: 100%; aspect-ratio: 920 / 430; object-fit: cover; }

.product-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.product-head .sub { font-size: 18px; color: var(--ink-2); margin: 0; }

.product-body { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; align-items: start; }
@media (max-width: 880px) { .product-body { grid-template-columns: 1fr; gap: 32px; } }

.aside {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
  display: flex; flex-direction: column; gap: 18px;
  position: sticky; top: 90px;
}
@media (max-width: 880px) { .aside { position: static; } }
.aside h3 {
  font-size: 12px; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 12px;
}
.aside .btns { flex-direction: column; }
.aside .btn { justify-content: center; }
.aside dl { margin: 0; display: grid; gap: 14px; }
.aside dt {
  font-family: var(--display); font-weight: 500; font-size: 11.5px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 3px;
}
.aside dd { margin: 0; font-size: 14.5px; color: var(--ink-2); }
.aside .sep { border: 0; border-top: 1px solid var(--line-soft); margin: 0; }

.features {
  list-style: none; padding: 0; margin: 26px 0 8px;
  display: grid; gap: 14px; max-width: var(--w-text);
}
.features li {
  position: relative; padding-left: 26px;
  color: var(--ink-2); font-size: 15.5px;
}
.features li:has(video) { margin-bottom: 8px; }
.features video {
  display: block; width: 100%; max-width: 420px; height: auto;
  margin-top: 9px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--panel-2);
}
.features li::before {
  content: ""; position: absolute; left: 2px; top: .62em;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--gold); transform: rotate(45deg);
}

.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 16px; margin-top: 12px; }
.shot {
  display: block; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--line); background: var(--panel-2);
  transition: border-color .16s ease, transform .16s ease;
}
.shot:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.shot img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.prose { padding: 44px 0 0; }
.prose.flush { padding-top: 0; }
.prose h1 { margin-bottom: 8px; }
.prose h2 { font-size: 22px; margin: 40px 0 12px; }
.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .88em;
  background: var(--panel-2); border: 1px solid var(--line);
  border-radius: 4px; padding: .1em .35em; color: var(--ink);
}

.site-footer { margin-top: 90px; border-top: 1px solid var(--line-soft); padding: 44px 0 60px; }
.footer-grid { display: flex; gap: 40px 60px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { display: flex; gap: 14px; align-items: center; margin-right: auto; }
.footer-brand img { width: 46px; height: 46px; border-radius: 50%; box-shadow: 0 0 0 1.5px var(--line); }
.footer-brand div { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }

.footer-col h4 {
  font-family: var(--display); font-weight: 500; font-size: 11.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  margin: 0 0 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a { color: var(--ink-2); font-size: 14.5px; }
.footer-col a:hover { color: var(--gold); }

.copyright { margin-top: 40px; color: var(--muted); font-size: 13.5px; }
.copyright p { color: var(--muted); font-size: 13.5px; margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .card:hover, .shot:hover, .btn:hover { transform: none; }
}
