:root {
  --ink: #010103;
  --navy-950: #061024;
  --navy-900: #0a1732;
  --navy-800: #13213d;
  --navy-700: #19284b;
  --navy-600: #243359;
  --panel: rgba(19, 33, 61, 0.72);
  --panel-strong: rgba(10, 23, 50, 0.92);
  --border: rgba(166, 170, 182, 0.18);
  --border-bright: rgba(87, 210, 188, 0.36);
  --text: #fdfdfd;
  --muted: #d0d2d9;
  --subtle: #a6aab6;
  --blue: #3c6efd;
  --sky: #41aefd;
  --cyan: #0bdacb;
  --mint: #57d2bc;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --radius-card: 8px;
  --radius-media: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(10, 23, 50, 0.96) 0%, var(--ink) 48%, #061024 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--mint);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--text);
  color: var(--ink);
  padding: 0.65rem 0.9rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.8rem 1rem;
  background: linear-gradient(180deg, rgba(1, 1, 3, 0.86), rgba(1, 1, 3, 0.56));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(166, 170, 182, 0.1);
}

.nav-shell {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 800;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(60, 110, 253, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a,
.site-nav .download-link {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  padding: 0.55rem 0.8rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .download-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  color: var(--ink);
  background: linear-gradient(135deg, var(--mint), var(--sky));
  box-shadow: 0 10px 28px rgba(11, 218, 203, 0.18);
}

.site-nav a.download-link:hover {
  color: var(--ink);
  filter: brightness(1.06);
}

.site-nav .download-link-disabled {
  filter: saturate(0.76);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  gap: 0.28rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 7rem 0 6rem;
  border-bottom: 1px solid rgba(87, 210, 188, 0.14);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background: var(--navy-900);
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.78;
  filter: saturate(1.08) contrast(1.05);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 1, 3, 0.96) 0%, rgba(1, 1, 3, 0.72) 42%, rgba(1, 1, 3, 0.2) 100%),
    linear-gradient(180deg, rgba(1, 1, 3, 0.5) 0%, rgba(1, 1, 3, 0.18) 46%, rgba(1, 1, 3, 0.88) 100%);
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.08;
}

h1 {
  margin-bottom: 1rem;
  font-size: 5rem;
  font-weight: 850;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.7rem;
  font-weight: 820;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.18rem;
  font-weight: 780;
}

.hero-subtitle {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 700;
}

.hero-body {
  max-width: 680px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  font-weight: 780;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--cyan), var(--sky) 48%, var(--blue));
  box-shadow: 0 18px 48px rgba(60, 110, 253, 0.32);
}

.button-primary:hover {
  color: var(--ink);
  filter: brightness(1.07);
}

.button-disabled {
  flex-direction: column;
  gap: 0.12rem;
  cursor: not-allowed;
  filter: saturate(0.76);
}

.button-disabled:hover {
  color: var(--ink);
  filter: saturate(0.76);
  transform: none;
}

.button-label,
.button-subtitle {
  display: block;
}

.button-subtitle {
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1;
  opacity: 0.72;
  text-transform: uppercase;
}

.coming-soon-control {
  position: relative;
  cursor: not-allowed;
}

.coming-soon-control::before,
.coming-soon-control::after {
  position: absolute;
  left: 50%;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.coming-soon-control::before {
  content: "";
  bottom: calc(100% + 0.32rem);
  transform: translate(-50%, 0.22rem);
  border: 6px solid transparent;
  border-top-color: rgba(1, 1, 3, 0.96);
}

.coming-soon-control::after {
  content: attr(data-tooltip);
  bottom: calc(100% + 0.7rem);
  transform: translate(-50%, 0.22rem);
  border: 1px solid rgba(253, 253, 253, 0.12);
  border-radius: 6px;
  background: rgba(1, 1, 3, 0.96);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1;
  padding: 0.55rem 0.65rem;
  white-space: nowrap;
}

.coming-soon-control:hover::before,
.coming-soon-control:hover::after,
.coming-soon-control:focus-visible::before,
.coming-soon-control:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(253, 253, 253, 0.22);
  background: rgba(253, 253, 253, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.button-secondary:hover {
  color: var(--text);
  border-color: var(--border-bright);
  background: rgba(87, 210, 188, 0.12);
}

.format-strip {
  border-bottom: 1px solid rgba(166, 170, 182, 0.1);
  background: rgba(1, 1, 3, 0.34);
}

.strip-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 0;
}

.strip-items span {
  border: 1px solid rgba(87, 210, 188, 0.18);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(10, 23, 50, 0.72);
  padding: 0.34rem 0.66rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.section {
  padding: 6rem 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.4rem;
}

.section-heading p:last-child,
.large-copy,
.audience-panel p,
.callout-copy p,
.final-cta p,
.content-page p,
.content-page li {
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: start;
  gap: 3rem;
}

.large-copy {
  margin-bottom: 0;
  font-size: 1.16rem;
}

.video-section {
  border-bottom: 1px solid rgba(166, 170, 182, 0.1);
  background:
    linear-gradient(180deg, rgba(1, 1, 3, 0.34), rgba(19, 33, 61, 0.3)),
    var(--ink);
}

.video-section .section-heading {
  max-width: 840px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(19, 33, 61, 0.82), rgba(10, 23, 50, 0.66)),
    rgba(10, 23, 50, 0.72);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.3);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--sky), transparent);
  opacity: 0.78;
}

.video-embed {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(87, 210, 188, 0.18);
  background:
    radial-gradient(circle at 18% 18%, rgba(87, 210, 188, 0.18), transparent 32%),
    var(--navy-900);
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-copy {
  padding: 1.25rem;
}

.video-title {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.video-description {
  margin-bottom: 0;
  color: var(--muted);
}

.features-section {
  background:
    linear-gradient(180deg, rgba(19, 33, 61, 0.36), rgba(1, 1, 3, 0.05)),
    var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  min-height: 250px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(19, 33, 61, 0.78), rgba(10, 23, 50, 0.58));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
  padding: 1.35rem;
}

.feature-card-wide {
  grid-column: span 3;
  min-height: 0;
}

.feature-number {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 850;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--subtle);
}

.audience-section {
  padding-top: 5rem;
}

.audience-panel {
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(11, 218, 203, 0.14), rgba(60, 110, 253, 0.1)),
    rgba(10, 23, 50, 0.78);
  padding: 2rem;
}

.audience-panel p:last-child {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 1.12rem;
}

.screenshots-section {
  background: linear-gradient(180deg, rgba(6, 16, 36, 0.1), rgba(10, 23, 50, 0.42));
}

.screenshot-list {
  display: grid;
  gap: 2rem;
}

.screenshot-panel {
  margin: 0;
}

.screenshot-panel picture {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(166, 170, 182, 0.2);
  border-radius: var(--radius-media);
  background: var(--navy-800);
  box-shadow: var(--shadow);
}

.screenshot-panel img {
  width: 100%;
}

.screenshot-panel figcaption {
  margin-top: 0.9rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 780;
}

.privacy-callout {
  border-top: 1px solid rgba(166, 170, 182, 0.1);
  border-bottom: 1px solid rgba(166, 170, 182, 0.1);
  background: rgba(1, 1, 3, 0.36);
}

.callout-copy p {
  font-size: 1.1rem;
}

.text-link {
  color: var(--mint);
  font-weight: 800;
}

.text-link:hover {
  color: var(--sky);
}

.final-cta {
  text-align: center;
}

.final-cta img {
  margin: 0 auto 1.3rem;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(60, 110, 253, 0.26);
}

.final-cta h2 {
  margin-inline: auto;
  max-width: 760px;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 1.8rem;
  font-size: 1.1rem;
}

.site-footer {
  border-top: 1px solid rgba(166, 170, 182, 0.12);
  background: var(--ink);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: 1.5rem;
}

.footer-grid p {
  margin: 0.25rem 0 0;
  color: var(--subtle);
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.footer-grid nav a,
.footer-disabled-link {
  color: var(--muted);
  font-weight: 700;
}

.footer-grid nav a:hover {
  color: var(--mint);
}

.footer-disabled-link {
  display: inline-flex;
  flex-direction: column;
  gap: 0.05rem;
  cursor: not-allowed;
  filter: saturate(0.76);
}

.copyright {
  text-align: right;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  padding: 7rem 0 3rem;
}

.page-hero h1 {
  font-size: 4rem;
}

.page-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.2rem;
}

.content-page {
  max-width: 840px;
  padding-bottom: 6rem;
}

.content-page h2 {
  margin-top: 2.4rem;
  font-size: 1.65rem;
}

.content-page h3 {
  font-size: 1.1rem;
}

.content-page a {
  color: var(--mint);
  font-weight: 750;
}

.content-page a:hover {
  color: var(--sky);
}

.content-page ul {
  margin: 0.3rem 0 1.6rem;
  padding-left: 1.3rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.faq-list section {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: rgba(19, 33, 61, 0.6);
  padding: 1rem 1.1rem;
}

.faq-list p {
  margin-bottom: 0;
}

.last-updated {
  margin-top: 3rem;
  color: var(--subtle);
  font-size: 0.95rem;
}

.docs-main {
  min-height: 70vh;
}

.docs-hero {
  padding-bottom: 2.25rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  color: var(--subtle);
  font-size: 0.88rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--mint);
}

.breadcrumbs a:hover {
  color: var(--sky);
}

.docs-shell {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 6rem;
}

.docs-sidebar {
  position: sticky;
  top: 5.4rem;
  max-height: calc(100svh - 6.4rem);
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: rgba(10, 23, 50, 0.74);
  padding: 1rem;
}

.docs-search {
  margin-bottom: 1.2rem;
}

.docs-search label,
.docs-nav h2 {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.docs-search input {
  width: 100%;
  min-height: 2.75rem;
  border: 1px solid rgba(166, 170, 182, 0.22);
  border-radius: 8px;
  color: var(--text);
  background: rgba(1, 1, 3, 0.3);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.docs-search input::placeholder {
  color: var(--subtle);
}

.docs-search-results {
  display: none;
  margin-top: 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: rgba(1, 1, 3, 0.42);
  overflow: hidden;
}

.docs-search-results.is-visible {
  display: block;
}

.docs-search-results a,
.docs-search-empty {
  display: block;
  padding: 0.72rem 0.8rem;
}

.docs-search-results a + a {
  border-top: 1px solid rgba(166, 170, 182, 0.12);
}

.docs-search-results span {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 780;
}

.docs-search-results small,
.docs-search-empty {
  color: var(--subtle);
  font-size: 0.82rem;
}

.docs-nav {
  display: grid;
  gap: 1.1rem;
}

.docs-nav section {
  display: grid;
  gap: 0.18rem;
}

.docs-nav a {
  border-radius: 6px;
  color: var(--muted);
  padding: 0.42rem 0.55rem;
  font-size: 0.94rem;
  font-weight: 680;
  line-height: 1.35;
}

.docs-nav a:hover,
.docs-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.docs-content {
  min-width: 0;
  max-width: 840px;
}

.docs-home {
  max-width: none;
}

.docs-content > :first-child {
  margin-top: 0;
}

.docs-content h2 {
  margin: 2.6rem 0 0.85rem;
  font-size: 1.75rem;
}

.docs-content h3 {
  margin: 2rem 0 0.7rem;
  font-size: 1.18rem;
}

.docs-content p,
.docs-content li,
.docs-content td {
  color: var(--muted);
}

.docs-content p {
  margin-bottom: 1rem;
}

.docs-content ul,
.docs-content ol {
  margin: 0.35rem 0 1.35rem;
  padding-left: 1.35rem;
}

.docs-content li + li {
  margin-top: 0.28rem;
}

.docs-content a {
  color: var(--mint);
  font-weight: 760;
}

.docs-content a:hover {
  color: var(--sky);
}

.docs-content code {
  border: 1px solid rgba(87, 210, 188, 0.18);
  border-radius: 6px;
  color: var(--text);
  background: rgba(87, 210, 188, 0.1);
  padding: 0.1rem 0.32rem;
  font-family: "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.9em;
}

.docs-content pre {
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: rgba(1, 1, 3, 0.5);
  padding: 1rem;
}

.docs-content pre code {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 0.94rem;
}

.table-scroll {
  overflow-x: auto;
  margin: 1.1rem 0 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.docs-content table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: rgba(10, 23, 50, 0.55);
}

.docs-content th,
.docs-content td {
  border-bottom: 1px solid rgba(166, 170, 182, 0.14);
  padding: 0.78rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

.docs-content th {
  color: var(--text);
  background: rgba(19, 33, 61, 0.8);
  font-size: 0.88rem;
  font-weight: 820;
}

.docs-content tr:last-child td {
  border-bottom: 0;
}

.docs-card-grid,
.docs-section-grid {
  display: grid;
  gap: 1rem;
}

.docs-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 3rem;
}

.docs-card,
.docs-section-card,
.screenshot-placeholder {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(19, 33, 61, 0.76), rgba(10, 23, 50, 0.58));
}

.docs-card {
  min-height: 150px;
  padding: 1.1rem;
}

.docs-card:hover {
  border-color: var(--border-bright);
  color: var(--text);
}

.docs-card span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 820;
}

.docs-card p,
.docs-section-card p {
  margin-bottom: 0;
}

.docs-section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.docs-section-card {
  padding: 1.15rem;
}

.docs-section-card h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.docs-section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.docs-section-links a {
  border: 1px solid rgba(87, 210, 188, 0.16);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(1, 1, 3, 0.22);
  padding: 0.34rem 0.6rem;
  font-size: 0.84rem;
}

.docs-section-links a:hover {
  color: var(--text);
  border-color: var(--border-bright);
}

.docs-placeholders,
.docs-screenshots {
  margin-top: 3rem;
}

.screenshot-figure {
  margin: 1.2rem 0 2rem;
}

.screenshot-figure.screenshot-tall {
  max-width: 640px;
}

.screenshot-figure.screenshot-standard {
  max-width: 760px;
}

.screenshot-figure.screenshot-wide {
  max-width: 100%;
}

.screenshot-frame {
  overflow: hidden;
  border: 1px solid rgba(166, 170, 182, 0.2);
  border-radius: var(--radius-media);
  background: var(--navy-800);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.26);
}

.screenshot-frame img {
  width: 100%;
  height: auto;
}

.screenshot-figure figcaption {
  margin-top: 0.75rem;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 780;
}

.screenshot-placeholder {
  margin: 1rem 0;
  padding: 1rem;
  border-style: dashed;
}

.placeholder-label {
  margin-bottom: 0.55rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.screenshot-placeholder h3 {
  margin-top: 0;
}

.screenshot-placeholder p:last-child,
.screenshot-placeholder ul:last-child {
  margin-bottom: 0;
}

.docs-prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(166, 170, 182, 0.14);
}

.docs-prev-next a {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  color: var(--text);
  background: rgba(19, 33, 61, 0.5);
  padding: 0.9rem;
}

.docs-prev-next a:hover {
  border-color: var(--border-bright);
}

.docs-prev-next span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--subtle);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.docs-prev-next .next {
  text-align: right;
}

@media (max-width: 980px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .split-layout,
  .video-grid,
  .feature-grid,
  .docs-shell,
  .docs-card-grid,
  .docs-section-grid {
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    position: static;
    max-height: none;
  }

  .feature-card-wide {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.65rem 1rem;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 4.4rem 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: rgba(6, 16, 36, 0.96);
    box-shadow: var(--shadow);
    padding: 0.65rem;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a,
  .site-nav .download-link {
    border-radius: 6px;
    padding: 0.85rem;
  }

  .hero {
    min-height: 76svh;
    padding: 5.5rem 0 4.5rem;
  }

  .hero-media img {
    object-position: 62% bottom;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(1, 1, 3, 0.96), rgba(1, 1, 3, 0.68)),
      linear-gradient(180deg, rgba(1, 1, 3, 0.28), rgba(1, 1, 3, 0.88));
  }

  h1,
  .page-hero h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-body,
  .large-copy,
  .audience-panel p:last-child,
  .callout-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .feature-card,
  .video-copy,
  .audience-panel {
    padding: 1rem;
  }

  .screenshot-panel picture {
    border-radius: 12px;
  }

  .screenshot-frame {
    border-radius: 12px;
  }

  .page-hero {
    padding: 5.5rem 0 2rem;
  }

  .docs-shell {
    gap: 1.5rem;
    padding-bottom: 4rem;
  }

  .docs-content h2 {
    font-size: 1.5rem;
  }

  .docs-prev-next {
    grid-template-columns: 1fr;
  }

  .docs-prev-next .next {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
