:root {
  --ink: #141716;
  --ink-soft: #2b2d2c;
  --cream: #f7f2e8;
  --paper: #fffaf0;
  --muted: #5e6660;
  --line: #ded7c9;
  --green: #00b894;
  --coral: #ee6052;
  --amber: #f4b942;
  --steel: #4c889a;
  --violet: #7358a8;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 23, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 28px;
  color: var(--cream);
  background: rgba(20, 23, 22, 0.94);
  border-bottom: 1px solid rgba(247, 242, 232, 0.14);
  backdrop-filter: blur(16px);
}

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

.brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: var(--green);
  border-radius: 8px;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__name {
  font-size: 19px;
}

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

.site-nav a {
  padding: 10px 12px;
  color: rgba(247, 242, 232, 0.82);
  border-radius: 8px;
  font-size: 15px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--cream);
  background: rgba(247, 242, 232, 0.1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  margin-left: 8px;
  background: rgba(247, 242, 232, 0.08);
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-radius: 8px;
}

.language-switcher button {
  min-width: 38px;
  min-height: 34px;
  padding: 7px 9px;
  color: rgba(247, 242, 232, 0.78);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button:hover,
.language-switcher button.is-active,
.language-switcher button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--green);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--cream);
  background: rgba(247, 242, 232, 0.09);
  border: 1px solid rgba(247, 242, 232, 0.18);
  border-radius: 8px;
}

.nav-toggle svg,
.button svg,
.signal-strip svg,
.feature-card svg,
.faq-item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero {
  min-height: 68vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background-image:
    linear-gradient(90deg, rgba(20, 23, 22, 0.92) 0%, rgba(20, 23, 22, 0.72) 45%, rgba(20, 23, 22, 0.28) 100%),
    url("./assets/streamerpro-app-screenshot.png");
  background-size: cover;
  background-position: center;
}

.hero__content {
  padding: 72px 0 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: 72px;
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

p {
  line-height: 1.7;
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: 21px;
  color: rgba(247, 242, 232, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  color: var(--ink);
  background: var(--green);
}

.button--secondary {
  color: var(--cream);
  background: rgba(247, 242, 232, 0.1);
  border-color: rgba(247, 242, 232, 0.2);
}

.button--dark {
  margin-top: 12px;
  color: var(--cream);
  background: var(--ink);
}

.button--ghost {
  color: var(--cream);
  background: rgba(247, 242, 232, 0.08);
  border-color: rgba(247, 242, 232, 0.2);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.hero__stats div {
  min-width: 148px;
  padding: 14px 16px;
  background: rgba(247, 242, 232, 0.1);
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 8px;
}

.hero__stats dt {
  font-size: 20px;
  font-weight: 900;
}

.hero__stats dd {
  margin: 4px 0 0;
  color: rgba(247, 242, 232, 0.78);
  font-size: 14px;
}

.signal-strip {
  color: var(--cream);
  background: var(--ink);
  border-top: 1px solid rgba(247, 242, 232, 0.12);
}

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

.signal-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 74px;
  padding: 18px;
  color: rgba(247, 242, 232, 0.86);
  background: rgba(247, 242, 232, 0.04);
  text-align: center;
  font-weight: 700;
}

.section {
  padding: 88px 0;
  background: var(--paper);
}

.section--light {
  background: var(--cream);
}

.section--warm {
  background: #efe3cf;
}

.section--payment {
  background: var(--cream);
}

.section--highlights {
  background: var(--paper);
}

.section--live-menu {
  color: var(--cream);
  background:
    linear-gradient(145deg, rgba(0, 184, 148, 0.15), transparent 46%),
    linear-gradient(320deg, rgba(244, 185, 66, 0.13), transparent 42%),
    var(--ink);
}

.section--encoder {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(0, 184, 148, 0.12), transparent 42%),
    var(--ink);
}

.split,
.install-layout,
.support,
.live-menu-layout,
.streaming-layout,
.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.section-copy p,
.install-layout p {
  color: var(--muted);
  font-size: 17px;
}

.section--encoder .section-copy p {
  color: rgba(247, 242, 232, 0.76);
}

.section--live-menu .section-copy p {
  color: rgba(247, 242, 232, 0.76);
}

.install-layout .install-requirement {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 24px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 209, 102, 0.38);
  border: 1px solid rgba(195, 127, 46, 0.28);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

.install-layout .install-requirement svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.product-shot {
  margin: 0;
  box-shadow: var(--shadow);
}

.product-shot img {
  border-radius: 8px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

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

.feature-card {
  min-height: 228px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(20, 23, 22, 0.07);
}

.feature-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--steel);
}

.feature-card:nth-child(2) svg,
.feature-card:nth-child(5) svg {
  color: var(--coral);
}

.feature-card:nth-child(3) svg,
.feature-card:nth-child(6) svg {
  color: var(--violet);
}

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

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

.highlight-card {
  min-height: 218px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(20, 23, 22, 0.07);
}

.highlight-card--wide,
.highlight-card--formats {
  grid-column: span 2;
}

.highlight-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--green);
}

.highlight-card:nth-child(2) svg,
.highlight-card:nth-child(5) svg {
  color: var(--steel);
}

.highlight-card:nth-child(3) svg,
.highlight-card:nth-child(6) svg {
  color: var(--coral);
}

.highlight-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.format-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 14px;
  background: rgba(0, 184, 148, 0.08);
  border: 1px solid rgba(0, 184, 148, 0.2);
  border-radius: 8px;
}

.format-list strong {
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
}

.format-list span {
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.media-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.media-shot {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(20, 23, 22, 0.08);
}

.media-shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.media-shot figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.live-menu-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.live-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.live-feature {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  min-height: 124px;
  padding: 18px;
  background: rgba(247, 242, 232, 0.07);
  border: 1px solid rgba(247, 242, 232, 0.13);
  border-radius: 8px;
}

.live-feature svg {
  width: 30px;
  height: 30px;
  color: var(--green);
}

.live-feature:nth-child(2) svg {
  color: #2b9ae6;
}

.live-feature:nth-child(3) svg {
  color: var(--amber);
}

.live-feature:nth-child(4) svg {
  color: var(--coral);
}

.live-feature h3 {
  margin-bottom: 6px;
  color: var(--cream);
}

.live-feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.live-menu-shot {
  width: min(100%, 520px);
  justify-self: end;
  margin: 0;
  overflow: hidden;
  background: rgba(247, 242, 232, 0.08);
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.live-menu-shot img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  object-position: top center;
  background: #111312;
}

.live-menu-shot figcaption {
  padding: 14px 16px 16px;
  color: rgba(247, 242, 232, 0.76);
  background: rgba(20, 23, 22, 0.92);
  font-size: 14px;
  line-height: 1.5;
}

.encoder-panel {
  padding: 28px;
  background: rgba(247, 242, 232, 0.08);
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.encoder-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(247, 242, 232, 0.14);
}

.encoder-panel__header span {
  font-size: 22px;
  font-weight: 900;
}

.encoder-panel__header strong {
  padding: 8px 10px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 6px;
}

.encoder-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.encoder-metrics div {
  min-height: 108px;
  padding: 18px;
  background: rgba(20, 23, 22, 0.45);
  border: 1px solid rgba(247, 242, 232, 0.12);
  border-radius: 8px;
}

.encoder-metrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 30px;
  font-weight: 900;
}

.encoder-metrics small {
  color: rgba(247, 242, 232, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.encoder-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  color: rgba(247, 242, 232, 0.82);
  background: rgba(244, 185, 66, 0.14);
  border: 1px solid rgba(244, 185, 66, 0.28);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.55;
}

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

.tech-grid article {
  min-height: 210px;
  padding: 22px;
  background: rgba(247, 242, 232, 0.07);
  border: 1px solid rgba(247, 242, 232, 0.13);
  border-radius: 8px;
}

.tech-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--green);
}

.tech-grid h3 {
  color: var(--cream);
}

.tech-grid p {
  margin-bottom: 0;
  color: rgba(247, 242, 232, 0.72);
}

.install-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.install-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  padding: 20px;
  color: var(--cream);
  background: var(--ink);
  border-radius: 8px;
}

.install-steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 8px;
  font-weight: 900;
}

.install-steps strong {
  font-size: 19px;
}

.install-steps p {
  grid-column: 2;
  margin: 0;
  color: rgba(247, 242, 232, 0.72);
}

.payment-offers {
  display: grid;
  gap: 16px;
}

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

.pricing-card {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(20, 23, 22, 0.08);
}

.pricing-card--featured {
  border-color: rgba(0, 184, 148, 0.7);
  box-shadow: 0 18px 42px rgba(0, 184, 148, 0.18);
}

.pricing-card__top {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pricing-card__top h3 {
  margin: 0;
  font-size: 19px;
}

.pricing-card__top span {
  padding: 6px 8px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card__price {
  margin: 0;
  color: var(--green);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.pricing-card__period {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.pricing-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.pricing-card__compatibility {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 2px 0 0;
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(0, 184, 148, 0.12);
  border: 1px solid rgba(0, 184, 148, 0.28);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.pricing-card__compatibility svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--green);
}

.payment-checkout {
  margin-top: auto;
  width: 100%;
  border: 0;
  cursor: pointer;
}

.payment-checkout.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.payment-note {
  min-height: 22px;
  margin: 0;
  color: rgba(247, 242, 232, 0.76);
  font-size: 14px;
}

.is-hidden {
  display: none !important;
}

.success-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(20, 23, 22, 0.94) 0%, rgba(20, 23, 22, 0.82) 58%, rgba(20, 23, 22, 0.56) 100%),
    url("./assets/streamerpro-app-screenshot.png");
  background-position: center;
  background-size: cover;
}

.success-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.success-card {
  width: min(520px, 100%);
  padding: 34px;
  color: var(--cream);
  background: rgba(20, 23, 22, 0.88);
  border: 1px solid rgba(247, 242, 232, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.success-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.success-card h1 {
  margin-bottom: 12px;
  font-size: 42px;
}

.success-card p:not(.eyebrow) {
  color: rgba(247, 242, 232, 0.78);
}

.success-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

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

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item svg {
  transition: transform 180ms ease;
}

.faq-item[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-panel.is-open {
  display: block;
}

.faq-panel p {
  margin: 0;
}

.support-stack {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(20, 23, 22, 0.08);
}

.contact-card__intro {
  margin-bottom: 18px;
}

.contact-card__intro h3 {
  margin: 4px 0 8px;
  font-size: 24px;
}

.contact-card__intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid rgba(20, 23, 22, 0.16);
  border-radius: 8px;
  font: inherit;
  font-weight: 500;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 184, 148, 0.18);
}

.contact-form__actions {
  display: grid;
  gap: 10px;
  align-items: center;
}

.contact-form__actions p,
.contact-form__status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-form__status[data-state="success"] {
  color: #0b7a56;
  font-weight: 800;
}

.contact-form__status[data-state="error"] {
  color: #b42318;
  font-weight: 800;
}

.download-panel {
  position: fixed;
  inset: auto 20px 20px auto;
  z-index: 40;
  width: min(420px, calc(100vw - 40px));
  color: var(--cream);
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.download-panel.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.download-panel__dialog {
  padding: 20px;
  background: rgba(20, 23, 22, 0.97);
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.download-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.download-panel__header .eyebrow {
  margin-bottom: 6px;
}

.download-panel__header h2 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.25;
}

.download-panel__close {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--cream);
  background: rgba(247, 242, 232, 0.08);
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-radius: 8px;
  cursor: pointer;
}

.download-panel__close svg {
  width: 18px;
  height: 18px;
}

.download-progress {
  height: 12px;
  overflow: hidden;
  background: rgba(247, 242, 232, 0.12);
  border-radius: 99px;
}

.download-progress__bar {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--amber));
  border-radius: inherit;
  transition: width 140ms ease;
}

.download-panel__meta,
.download-panel__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.download-panel__meta {
  margin-top: 12px;
  font-weight: 800;
}

.download-size {
  text-align: right;
  color: rgba(247, 242, 232, 0.76);
}

.download-panel__stats {
  margin: 14px 0 0;
}

.download-panel__stats div {
  padding: 12px;
  background: rgba(247, 242, 232, 0.07);
  border: 1px solid rgba(247, 242, 232, 0.1);
  border-radius: 8px;
}

.download-panel__stats dt {
  color: rgba(247, 242, 232, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.download-panel__stats dd {
  margin: 6px 0 0;
  font-size: 17px;
  font-weight: 900;
}

.download-status {
  margin: 14px 0 0;
  color: rgba(247, 242, 232, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer {
  color: rgba(247, 242, 232, 0.76);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.footer-inner a {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    padding: 0 20px;
    width: 100vw;
    max-width: 100vw;
  }

  .nav-toggle {
    position: absolute;
    top: 15px;
    right: auto;
    left: min(328px, calc(100vw - 62px));
    display: inline-flex;
    color: var(--ink);
    background: var(--green);
    border-color: var(--green);
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 22px;
    background: rgba(20, 23, 22, 0.98);
    border-bottom: 1px solid rgba(247, 242, 232, 0.14);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .language-switcher {
    align-self: stretch;
    justify-content: center;
    margin: 8px 0 0;
  }

  .hero {
    min-height: 66vh;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 32px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .signal-strip__grid,
  .feature-grid,
  .highlight-grid,
  .tech-grid,
  .media-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .install-layout,
  .support,
  .live-menu-layout,
  .streaming-layout,
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .live-menu-shot {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand__name {
    font-size: 17px;
  }

  .hero {
    min-height: 64vh;
    background-image:
      linear-gradient(90deg, rgba(20, 23, 22, 0.96) 0%, rgba(20, 23, 22, 0.84) 62%, rgba(20, 23, 22, 0.45) 100%),
      url("./assets/streamerpro-app-screenshot.png");
    background-position: center top;
  }

  .hero__content {
    padding: 44px 0 38px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .hero__lead {
    max-width: 320px;
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 362px;
  }

  .button {
    width: 100%;
  }

  .hero__stats {
    display: none;
  }

  .signal-strip__grid,
  .feature-grid,
  .highlight-grid,
  .tech-grid,
  .media-showcase,
  .contact-form__grid,
  .encoder-metrics,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card--wide,
  .highlight-card--formats {
    grid-column: auto;
  }

  .live-feature {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
  }

  .live-menu-shot img {
    max-height: 620px;
  }

  .signal-strip span {
    min-height: 58px;
  }

  .section {
    padding: 64px 0;
  }

  .install-steps li {
    grid-template-columns: 52px 1fr;
    padding: 16px;
  }

  .install-steps span {
    width: 42px;
    height: 42px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .download-panel {
    inset: auto 14px 14px 14px;
    width: auto;
  }

  .download-panel__meta,
  .download-panel__stats {
    grid-template-columns: 1fr;
  }

  .download-size {
    text-align: left;
  }
}
