:root {
  color-scheme: dark;
  --ink: #071110;
  --ink-2: #0d1d1b;
  --ink-3: #142724;
  --paper: #f7f0e6;
  --paper-soft: #dce8e1;
  --muted: #9fb1aa;
  --line: rgba(247, 240, 230, 0.16);
  --line-strong: rgba(247, 240, 230, 0.28);
  --green: #26f59a;
  --green-dark: #0da667;
  --blue: #56a7ff;
  --red: #ff5e59;
  --amber: #ffb75a;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 2.7rem;
}

h3 {
  font-size: 1.25rem;
}

.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: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 30px;
  transition: background 160ms ease, border-color 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 16, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img,
.footer-brand img {
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--paper-soft);
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--paper);
}

.nav-links .nav-cta {
  border: 1px solid rgba(38, 245, 154, 0.55);
  border-radius: 8px;
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 240, 230, 0.06);
  color: var(--paper);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 128px 30px 64px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 29, 27, 0.42);
  border-bottom: 1px solid rgba(247, 240, 230, 0.08);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 60px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.hero-copy {
  min-width: 0;
}

.hero-content .eyebrow,
.section .eyebrow,
.article-hero .eyebrow,
.cta-band .eyebrow {
  margin-bottom: 14px;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 680px;
  margin-top: 24px;
  color: var(--paper-soft);
  font-size: 1.32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  color: #062017;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(38, 245, 154, 0.18);
}

.button.primary:hover {
  background: #54ffb1;
}

.button.secondary {
  border-color: rgba(247, 240, 230, 0.34);
  background: rgba(247, 240, 230, 0.08);
  color: var(--paper);
}

.button.secondary.dark {
  background: rgba(7, 17, 16, 0.58);
}

.button.light {
  color: var(--ink);
  background: var(--paper);
  white-space: nowrap;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  max-width: 720px;
  margin: 34px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.hero-facts div {
  padding: 14px 16px;
  background: rgba(7, 17, 16, 0.74);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: var(--paper);
  font-weight: 800;
}

.hero-preview {
  width: min(100%, 470px);
  justify-self: end;
  margin: 0;
  border: 1px solid rgba(247, 240, 230, 0.16);
  border-radius: 18px;
  overflow: hidden;
  background: #1a1c1b;
  box-shadow: var(--shadow);
}

.hero-preview img {
  width: 100%;
  height: auto;
}

.signal-strip {
  padding: 24px 30px;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid rgba(7, 17, 16, 0.12);
}

.signal-strip p {
  max-width: var(--max);
  margin: 0 auto;
  font-size: 1.2rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 30px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.intro-grid p,
.compare-section p {
  color: var(--paper-soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 58px;
  align-items: start;
}

.intro-grid h2,
.compare-section h2,
.section-heading h2 {
  margin-bottom: 18px;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list div,
.device-card,
.comparison article,
.link-grid a,
.article-aside,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 240, 230, 0.055);
}

.proof-list div {
  padding: 18px;
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list span {
  margin-top: 5px;
  color: var(--muted);
}

.screenshot-section {
  max-width: none;
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
}

.screenshot-section .section-heading,
.screenshots {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.screenshots {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.screenshots figure {
  margin: 0;
}

.screenshots img {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.screenshots figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.device-card {
  padding: 22px;
}

.device-card h3,
.comparison h3 {
  margin-bottom: 8px;
}

.device-card p,
.comparison p {
  color: var(--muted);
}

.compare-section {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 42px;
}

.comparison {
  display: grid;
  gap: 14px;
}

.comparison article {
  padding: 22px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.link-grid a {
  min-height: 118px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 850;
}

.link-grid a:hover {
  border-color: rgba(38, 245, 154, 0.58);
  background: rgba(38, 245, 154, 0.08);
}

.link-grid strong {
  display: block;
  color: var(--paper);
  line-height: 1.15;
}

.link-grid span {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.link-grid.compact a {
  min-height: 96px;
}

.faq {
  padding-top: 56px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
}

.faq-list summary::marker {
  color: var(--green);
}

.faq-list details p {
  padding: 0 22px 20px;
  color: var(--paper-soft);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 58px 30px;
  background: var(--green);
  color: var(--ink);
}

.cta-band > div {
  width: min(760px, 100%);
  margin-left: calc((100% - min(var(--max), calc(100% - 60px))) / 2);
}

.cta-band .button {
  margin-right: calc((100% - min(var(--max), calc(100% - 60px))) / 2);
}

.cta-band .eyebrow {
  color: #06351f;
}

.cta-band p:not(.eyebrow) {
  margin-top: 12px;
  color: rgba(7, 17, 16, 0.76);
  font-size: 1.1rem;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 150px 30px 72px;
}

.article-hero p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--paper-soft);
  font-size: 1.22rem;
}

.article-hero img {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-body {
  display: grid;
  grid-template-columns: 310px minmax(0, 760px);
  gap: 46px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px;
}

.article-aside {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.article-aside h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.article-aside p {
  color: var(--paper-soft);
}

.article-aside a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 850;
}

.article-body article > h2 {
  margin: 44px 0 16px;
  font-size: 2rem;
}

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

.article-body article > p {
  color: var(--paper-soft);
  font-size: 1.04rem;
}

.article-body article > p + p {
  margin-top: 14px;
}

.check-list,
.step-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li,
.step-list li {
  list-style: none;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 240, 230, 0.05);
  color: var(--paper-soft);
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 11px;
  border-radius: 50%;
  background: var(--green);
}

.step-list {
  counter-reset: steps;
}

.step-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 10px;
}

.step-list li::before {
  content: counter(steps);
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(86, 167, 255, 0.18);
  color: var(--blue);
  font-weight: 900;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--paper);
  background: rgba(247, 240, 230, 0.06);
}

td {
  color: var(--paper-soft);
}

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

.related {
  padding-top: 62px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 34px;
  padding: 58px 30px 36px;
  border-top: 1px solid var(--line);
  background: #050c0b;
}

.site-footer > div,
.site-footer .footer-nav,
.site-footer .fine-print {
  max-width: var(--max);
}

.site-footer p {
  max-width: 430px;
  margin-top: 14px;
  color: var(--muted);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 26px 34px;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav h2 {
  font-size: 0.78rem;
  line-height: 1;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 900;
}

.footer-nav a {
  color: var(--paper-soft);
}

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

.site-footer .fine-print {
  grid-column: 1 / -1;
  margin-top: 20px;
  color: rgba(247, 240, 230, 0.5);
  font-size: 0.9rem;
}

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

  h2 {
    font-size: 2.2rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 18px;
    display: none;
    width: min(300px, calc(100vw - 36px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 17, 16, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-preview {
    width: min(100%, 470px);
    justify-self: start;
  }

  .device-grid,
  .link-grid,
  .screenshots,
  .intro-grid,
  .compare-section,
  .article-hero,
  .article-body,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .screenshots {
    gap: 34px;
  }

  .cta-band,
  .site-footer {
    display: grid;
  }

  .cta-band > div,
  .cta-band .button {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand span {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding: 108px 20px 44px;
  }

  .hero-lede {
    font-size: 1.1rem;
  }

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

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    border-radius: 14px;
  }

  .section,
  .article-hero,
  .article-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .article-hero {
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .device-card,
  .comparison article,
  .proof-list div,
  .link-grid a,
  .article-aside,
  .faq-list summary,
  .faq-list details p {
    padding-left: 16px;
    padding-right: 16px;
  }

  .step-list li {
    grid-template-columns: 30px 1fr;
  }

  .step-list li::before {
    width: 30px;
    height: 30px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
  }

  table {
    min-width: 0;
  }

  thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(247, 240, 230, 0.05);
    overflow: hidden;
  }

  td {
    border-bottom: 1px solid var(--line);
  }

  td:first-child {
    color: var(--paper);
    font-weight: 900;
    background: rgba(247, 240, 230, 0.05);
  }

  td:nth-child(2)::before,
  td:nth-child(3)::before {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  td:nth-child(2)::before {
    content: "Alternative";
  }

  td:nth-child(3)::before {
    content: "Media Server Pro";
  }

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