: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);
}

.site-nav a.creator-offer-nav,
.site-nav a[data-nav-creator-program] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 214px;
  min-height: 54px;
  padding: 10px 16px;
  color: #fff7cf;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02em;
  white-space: normal;
  background:
    linear-gradient(135deg, rgba(255, 210, 60, 0.26), transparent 34%),
    linear-gradient(100deg, #101211 0%, #101211 38%, #06c7a7 49%, #101211 60%, #101211 100%);
  background-size: 100% 100%, 260% 100%;
  border: 1px solid rgba(255, 218, 92, 0.82);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(0, 191, 159, 0.28),
    0 0 18px rgba(0, 191, 159, 0.55),
    0 0 34px rgba(255, 218, 92, 0.22);
  animation: creator-offer-pulse 1.35s ease-in-out infinite;
}

.site-nav a.creator-offer-nav::before,
.site-nav a[data-nav-creator-program]::before {
  content: "\1F381";
  margin-right: 7px;
  font-size: 15px;
  line-height: 1;
}

.site-nav a.creator-offer-nav:hover,
.site-nav a[data-nav-creator-program]:hover {
  color: #101211;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 34%),
    linear-gradient(100deg, #ffd84d 0%, #00bf9f 100%);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 2px rgba(255, 248, 216, 0.6),
    0 0 26px rgba(0, 191, 159, 0.78),
    0 0 42px rgba(255, 218, 92, 0.38);
}

@keyframes creator-offer-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    background-position: 0 0, 0% 50%;
    box-shadow:
      0 0 0 1px rgba(0, 191, 159, 0.28),
      0 0 18px rgba(0, 191, 159, 0.48),
      0 0 30px rgba(255, 218, 92, 0.16);
  }

  48% {
    transform: translateY(-1px) scale(1.06);
    background-position: 0 0, 100% 50%;
    box-shadow:
      0 0 0 2px rgba(255, 248, 216, 0.5),
      0 0 26px rgba(0, 191, 159, 0.82),
      0 0 46px rgba(255, 218, 92, 0.42);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav a.creator-offer-nav,
  .site-nav a[data-nav-creator-program] {
    animation: none;
  }
}

.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;
}

@media (min-width: 981px) and (max-width: 1360px) {
  .site-header {
    gap: 12px;
    padding: 0 18px;
  }

  .brand {
    gap: 9px;
  }

  .brand__name {
    font-size: 18px;
  }

  .site-nav {
    gap: 3px;
  }

  .site-nav a {
    padding: 10px 7px;
    font-size: 14px;
  }

  .language-switcher {
    gap: 2px;
    margin-left: 4px;
    padding: 3px;
  }

  .language-switcher button {
    min-width: 34px;
    min-height: 32px;
    padding: 6px 7px;
    font-size: 12px;
  }
}

.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;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 3.6vw, 58px);
  line-height: 1.08;
}

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__problem {
  max-width: 100%;
  margin: 0 0 12px;
  color: #00c79d;
  font-size: clamp(23px, 2.1vw, 29px);
  font-weight: 900;
  line-height: 1.25;
}

@media (min-width: 900px) {
  .hero__problem {
    white-space: nowrap;
  }
}

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

.hero__reassurance {
  max-width: 760px;
  margin: 0 0 18px;
  color: rgba(247, 242, 232, 0.88);
  font-size: 15px;
  font-weight: 800;
}

.hero-interface {
  width: min(620px, 100%);
  margin: 0 0 30px;
  overflow: hidden;
  color: rgba(247, 242, 232, 0.78);
  background: rgba(20, 23, 22, 0.72);
  border: 1px solid rgba(247, 242, 232, 0.18);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
}

.hero-interface img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  object-position: top left;
}

.hero-interface figcaption {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
}

.download-security {
  max-width: 760px;
  margin: 0 0 24px;
  padding: 18px;
  background: rgba(247, 242, 232, 0.1);
  border: 1px solid rgba(247, 242, 232, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.download-security__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--cream);
  font-size: 18px;
}

.download-security__header svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.download-security dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.download-security div {
  min-width: 0;
}

.download-security dt {
  margin-bottom: 3px;
  color: rgba(247, 242, 232, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.download-security dd {
  margin: 0;
  color: rgba(247, 242, 232, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.download-security__hash {
  grid-column: 1 / -1;
}

.download-security__hash dd {
  overflow-wrap: anywhere;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  font-weight: 600;
}

.download-security p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 14px 0 0;
  color: rgba(247, 242, 232, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.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);
}

.portal-page .button--secondary {
  color: var(--ink);
  background: #fffdf6;
  border-color: var(--line);
}

.portal-page .button--secondary:hover {
  background: rgba(0, 191, 155, 0.12);
  border-color: rgba(0, 191, 155, 0.45);
}

.portal-page .site-header {
  min-height: 72px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.portal-page .site-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 4px;
}

.portal-page .site-nav a {
  padding: 8px 9px;
}

.admin-licenses-page .admin-shell {
  display: block;
}

.admin-login-panel {
  max-width: 760px;
  margin: 0 auto;
}

.admin-sms-recovery {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.admin-sms-recovery__head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.admin-sms-recovery__head p {
  margin: 4px 0 0;
  color: var(--muted);
}

.admin-sms-recovery__icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--green);
  border: 1px solid rgba(0, 191, 155, 0.35);
  border-radius: 8px;
  background: rgba(0, 191, 155, 0.08);
  flex: 0 0 auto;
}

.admin-sms-recovery form {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
  margin-top: 12px;
}

.admin-sms-recovery .button {
  width: auto;
  justify-self: start;
}

.admin-2fa-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(14, 19, 17, 0.72);
  backdrop-filter: blur(4px);
}

.admin-2fa-modal {
  width: min(640px, 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.admin-2fa-modal h2 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.admin-2fa-modal p {
  color: var(--muted);
}

.admin-2fa-modal__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--green);
  border: 1px solid rgba(0, 191, 155, 0.35);
  border-radius: 10px;
  background: rgba(0, 191, 155, 0.1);
}

.admin-2fa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.admin-dashboard {
  display: grid;
  gap: 22px;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.admin-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.admin-section-head h3 {
  margin: 4px 0 6px;
}

.admin-section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.admin-create-license-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.admin-create-license-send {
  grid-column: span 2;
}

.admin-create-license-actions {
  display: flex;
  align-items: end;
}

.admin-create-license-result {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.admin-create-license-result__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.admin-create-license-result__head h4 {
  margin: 4px 0 6px;
}

.admin-create-license-result__head p {
  margin: 0;
  color: var(--muted);
}

.portal-check {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  font-weight: 800;
}

.portal-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--green);
}

.admin-filters {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px auto;
  align-items: end;
  gap: 14px;
}

.admin-filters select,
.admin-filters input {
  width: 100%;
}

.admin-table-panel {
  overflow: hidden;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-license-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

.admin-license-table th,
.admin-license-table td {
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.admin-license-table th {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(0, 191, 155, 0.12);
}

.admin-license-table td small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.button--compact {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 13px;
}

.button--danger {
  color: var(--white);
  background: #b83232;
  border-color: #b83232;
}

.button--danger:hover {
  background: #9f2929;
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(94, 102, 96, 0.14);
}

.admin-status-pill.is-active {
  color: #09634f;
  background: rgba(0, 191, 155, 0.18);
}

.admin-status-pill.is-expired {
  color: #705100;
  background: rgba(244, 185, 66, 0.24);
}

.admin-status-pill.is-disabled,
.admin-status-pill.is-revoked,
.admin-status-pill.is-suspended {
  color: #8d2525;
  background: rgba(184, 50, 50, 0.16);
}

.admin-license-type {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(94, 102, 96, 0.12);
  white-space: nowrap;
}

.admin-license-type.is-paid_customer {
  color: #09634f;
  background: rgba(0, 191, 155, 0.18);
}

.admin-license-type.is-creator_free {
  color: #805100;
  background: rgba(244, 185, 66, 0.24);
}

.admin-license-type.is-manual_admin,
.admin-license-type.is-imported {
  color: #243f87;
  background: rgba(57, 108, 214, 0.14);
}

.admin-detail {
  display: grid;
  gap: 18px;
}

.admin-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-detail-grid article {
  padding: 14px;
  background: rgba(0, 191, 155, 0.09);
  border: 1px solid rgba(0, 191, 155, 0.22);
  border-radius: 8px;
}

.admin-detail-grid span,
.admin-activation-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

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

.admin-activation-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.admin-audit-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: var(--muted);
}

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

.admin-portal-card {
  display: grid;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.admin-portal-card:hover {
  border-color: rgba(0, 191, 155, 0.5);
  box-shadow: 0 18px 42px rgba(20, 22, 20, 0.08);
  transform: translateY(-2px);
}

.admin-portal-card strong {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
}

.admin-portal-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: rgba(0, 191, 155, 0.14);
  border: 1px solid rgba(0, 191, 155, 0.28);
  border-radius: 8px;
  place-items: center;
}

.admin-security-note {
  margin-top: 18px;
}

.admin-dashboard-shell {
  margin-top: 22px;
}

.admin-dashboard-shell .admin-login-panel {
  margin-left: 0;
  margin-right: auto;
}

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

.admin-overview-wide {
  grid-column: 1 / -1;
}

.admin-log-preview span {
  overflow-wrap: anywhere;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
}

.admin-status-pill.is-error {
  color: #8d2525;
  background: rgba(184, 50, 50, 0.16);
}

.admin-status-pill.is-warning {
  color: #705100;
  background: rgba(244, 185, 66, 0.24);
}

.admin-status-pill.is-info {
  color: #09634f;
  background: rgba(0, 191, 155, 0.16);
}

.admin-status-pill.is-ok {
  color: #09634f;
  background: rgba(0, 191, 155, 0.18);
}

.admin-sales-table,
.admin-log-table {
  min-width: 920px;
}

.admin-sales-table small,
.admin-log-table code {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
}

.admin-log-table code {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.admin-log-filters {
  grid-template-columns: 220px minmax(220px, 1fr) 140px auto;
}

.admin-email-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
}

.admin-email-actions,
.admin-stats-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
}

.admin-email-help strong {
  display: block;
  padding: 12px;
  word-break: break-word;
  background: rgba(0, 191, 155, 0.1);
  border: 1px solid rgba(0, 191, 155, 0.2);
  border-radius: 8px;
}

.admin-mail-filters {
  grid-template-columns: minmax(260px, 1fr) 160px auto;
}

.admin-mailbox-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: start;
}

.admin-mailbox-list-panel,
.admin-mail-detail {
  min-height: 520px;
}

.admin-mail-list {
  display: grid;
  gap: 10px;
  max-height: 680px;
  overflow-y: auto;
  padding-right: 4px;
}

.admin-mail-item {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px;
  text-align: left;
  color: var(--ink);
  background: #fffdf6;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.admin-mail-item:hover,
.admin-mail-item.is-selected {
  border-color: rgba(0, 191, 155, 0.62);
  box-shadow: 0 12px 28px rgba(20, 22, 20, 0.08);
}

.admin-mail-item.is-unread {
  background: rgba(0, 191, 155, 0.09);
}

.admin-mail-item strong {
  font-size: 16px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.admin-mail-item span,
.admin-mail-item small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.admin-mail-item__date {
  color: var(--green) !important;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-mail-detail__head {
  display: grid;
  gap: 12px;
}

.admin-mail-detail__head dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.admin-mail-detail__head div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
}

.admin-mail-detail__head dt {
  color: var(--muted);
  font-weight: 900;
}

.admin-mail-detail__head dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.admin-mail-attachments {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 12px;
  background: rgba(0, 191, 155, 0.08);
  border: 1px solid rgba(0, 191, 155, 0.22);
  border-radius: 8px;
}

.admin-mail-body {
  width: 100%;
  max-height: 620px;
  margin: 18px 0;
  padding: 16px;
  white-space: pre-wrap;
  overflow: auto;
  overflow-wrap: anywhere;
  color: var(--ink);
  background: #fffdf6;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.6;
}

.admin-stats-controls {
  justify-content: flex-start;
}

.admin-stats-controls .portal-field {
  min-width: 220px;
  margin: 0;
}

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

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

.admin-stats-list article {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: rgba(0, 191, 155, 0.08);
  border: 1px solid rgba(0, 191, 155, 0.2);
  border-radius: 8px;
}

.admin-stats-list span {
  color: var(--muted);
}

.admin-stats-table {
  overflow: hidden;
}

.admin-stats-table table {
  width: 100%;
  border-collapse: collapse;
}

.admin-stats-table td {
  padding: 9px 0;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.admin-stats-table td:last-child {
  width: 110px;
  font-weight: 900;
  text-align: right;
}

.admin-text-report {
  max-height: 520px;
  margin: 0;
  padding: 16px;
  overflow: auto;
  white-space: pre-wrap;
  color: var(--cream);
  background: var(--ink);
  border-radius: 8px;
}

@media (max-width: 900px) {
  .admin-summary,
  .admin-detail-grid,
  .admin-create-license-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-filters {
    grid-template-columns: 1fr;
  }

  .admin-detail-head,
  .admin-activation-item {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-portal-grid,
  .admin-email-layout,
  .admin-mailbox-grid,
  .admin-overview-grid,
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }

  .admin-log-filters,
  .admin-mail-filters {
    grid-template-columns: 1fr;
  }

  .admin-sms-recovery form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .admin-summary,
  .admin-detail-grid,
  .admin-create-license-form {
    grid-template-columns: 1fr;
  }

  .admin-create-license-send {
    grid-column: auto;
  }
}

.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;
}

.hero__stats-note {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(247, 242, 232, 0.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.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--demo-video {
  padding-top: 42px;
  background: var(--cream);
}

.section--youtube-live {
  padding-top: 52px;
  background: var(--paper);
}

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

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

.section--signage-choice {
  padding-bottom: 38px;
  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--recording {
  background: var(--cream);
}

.section--resources {
  padding-bottom: 48px;
  background: var(--paper);
}

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

.section--sourceforge {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #f7f0e4;
}

.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,
.recording-layout,
.positioning-layout,
.streaming-layout,
.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

#support {
  padding-top: 48px;
}

.demo-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: center;
}

.youtube-live-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 46px;
  align-items: center;
}

.live-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.live-badges span {
  padding: 9px 11px;
  color: var(--ink);
  background: rgba(0, 184, 148, 0.12);
  border: 1px solid rgba(0, 184, 148, 0.24);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.demo-video-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.demo-video-points span {
  padding: 9px 11px;
  color: var(--ink);
  background: rgba(0, 184, 148, 0.12);
  border: 1px solid rgba(0, 184, 148, 0.24);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.demo-video-frame {
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(20, 23, 22, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.demo-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.youtube-live-frame {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(20, 23, 22, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.youtube-live-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.56;
  filter: saturate(1.05);
}

.youtube-live-embed {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--ink);
}

.youtube-live-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: min(86%, 430px);
  min-height: 58px;
  padding: 16px 20px;
  color: var(--ink);
  background: var(--green);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  font: inherit;
  font-weight: 900;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.youtube-live-play:hover {
  background: #18d4ad;
}

.youtube-live-play svg {
  width: 22px;
  height: 22px;
}

.youtube-live-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 7px 10px;
  color: var(--cream);
  background: #d93025;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.youtube-live-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 560px;
  padding: 12px 14px;
  color: var(--cream);
  background: rgba(20, 23, 22, 0.82);
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 8px;
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.youtube-live-overlay strong {
  font-size: 15px;
  line-height: 1.2;
}

.youtube-live-overlay span {
  color: rgba(247, 242, 232, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

.youtube-live-frame.is-loaded .youtube-live-overlay {
  bottom: 12px;
}

.youtube-live-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: -18px;
}

.youtube-live-actions .button--primary {
  grid-column: 1 / -1;
  width: min(100%, 430px);
  min-width: 0;
}

.youtube-live-actions .button--secondary,
.youtube-live-actions .button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(20, 23, 22, 0.16);
  min-width: 0;
}

.youtube-live-actions .button--secondary:hover,
.youtube-live-actions .button--ghost:hover {
  background: rgba(0, 184, 148, 0.12);
  border-color: rgba(0, 184, 148, 0.34);
}

.obs-comparison {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
}

.obs-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 12px;
}

.obs-points span {
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(0, 184, 148, 0.12);
  border: 1px solid rgba(0, 184, 148, 0.26);
  border-radius: 8px;
  font-weight: 900;
}

.obs-shot {
  overflow: hidden;
  margin: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.obs-shot img {
  width: 100%;
}

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

.signage-choice {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

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

.signage-choice__grid article {
  min-width: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.signage-choice__grid svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.signage-choice__grid h3 {
  margin: 16px 0 8px;
  font-size: 18px;
}

.signage-choice__grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section--local-costs {
  padding-top: 42px;
  padding-bottom: 36px;
  background: var(--cream);
}

.local-costs {
  display: grid;
  gap: 24px;
}

.local-costs__table {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.local-costs__head,
.local-costs__row {
  display: grid;
  grid-template-columns: 1.15fr 1.05fr 1fr 0.8fr 0.9fr 1.2fr;
  align-items: stretch;
}

.local-costs__head {
  color: var(--ink);
  background: rgba(0, 184, 148, 0.13);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.local-costs__head span,
.local-costs__row strong,
.local-costs__row span {
  min-width: 0;
  padding: 15px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  line-height: 1.45;
}

.local-costs__head span:last-child,
.local-costs__row span:last-child {
  border-right: 0;
}

.local-costs__row:last-child strong,
.local-costs__row:last-child span {
  border-bottom: 0;
}

.local-costs__row strong {
  color: var(--ink);
  font-size: 16px;
}

.local-costs__row span {
  color: var(--muted);
  font-size: 15px;
}

.local-costs__row--featured {
  background: rgba(0, 184, 148, 0.08);
}

.local-costs__row--featured strong,
.local-costs__row--featured span {
  color: var(--ink);
  font-weight: 800;
}

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

.local-setup article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.local-setup svg {
  width: 26px;
  height: 26px;
  color: var(--green);
}

.local-setup h3 {
  margin: 14px 0 8px;
  font-size: 19px;
}

.local-setup p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.local-costs__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 12px;
}

.local-costs__actions .button--primary {
  grid-column: 1 / -1;
  width: min(100%, 360px);
}

.local-costs__actions .button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(20, 23, 22, 0.16);
}

.local-costs__actions .button--ghost:hover {
  background: rgba(0, 184, 148, 0.12);
  border-color: rgba(0, 184, 148, 0.34);
}

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

.section-copy--center {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.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;
}

.positioning-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  align-items: stretch;
}

.problem-panel {
  padding: 28px;
  color: var(--cream);
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.problem-panel h3 {
  max-width: 620px;
  font-size: 30px;
  line-height: 1.18;
}

.problem-panel p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(247, 242, 232, 0.78);
}

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

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

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

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

.audience-card:nth-child(3) svg {
  color: var(--steel);
}

.audience-card:nth-child(4) svg {
  color: var(--violet);
}

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

.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:nth-child(7) svg {
  color: var(--amber);
}

.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;
}

.recording-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.recording-points {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.recording-point {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(0, 184, 148, 0.1);
  border: 1px solid rgba(0, 184, 148, 0.22);
  border-radius: 8px;
}

.recording-point p {
  margin: 0;
  min-width: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.recording-point svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.recording-specs {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.recording-specs div {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.recording-specs span {
  color: var(--muted);
  line-height: 1.55;
}

.recording-shot {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.recording-shot img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: top left;
  background: #111312;
}

.recording-shot figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  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;
}

.payment-license-intro {
  margin: 0;
  padding: 18px 20px;
  color: var(--cream);
  background: rgba(0, 184, 148, 0.16);
  border: 1px solid rgba(0, 184, 148, 0.34);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.payment-email-box {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding: 20px;
  color: var(--cream);
  background: var(--ink);
  border: 1px solid rgba(0, 184, 148, 0.28);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(20, 23, 22, 0.12);
}

.payment-email-box h3 {
  margin-bottom: 8px;
  color: var(--cream);
}

.payment-email-box p {
  margin: 0;
  color: rgba(247, 242, 232, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.payment-email-fields {
  display: grid;
  gap: 12px;
}

.payment-email-fields label {
  display: grid;
  gap: 7px;
  color: rgba(247, 242, 232, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.payment-email-fields input {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--cream);
  background: rgba(247, 242, 232, 0.08);
  border: 1px solid rgba(247, 242, 232, 0.2);
  border-radius: 8px;
  font: inherit;
}

.payment-email-fields input:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.section--windows-security {
  color: var(--cream);
  background: linear-gradient(135deg, var(--ink) 0%, #1d2824 58%, #27342f 100%);
}

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

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

.windows-security {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

.windows-security .section-copy p:not(.eyebrow) {
  color: rgba(247, 242, 232, 0.76);
}

.windows-security-grid {
  display: grid;
  gap: 14px;
}

.windows-security-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px 14px;
  min-height: 142px;
  padding: 18px;
  background: rgba(247, 242, 232, 0.08);
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 8px;
}

.windows-security-card svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--green);
}

.windows-security-card h3 {
  margin: 0;
  color: var(--cream);
  font-size: 18px;
}

.windows-security-card p {
  margin: 0;
  color: rgba(247, 242, 232, 0.74);
  font-size: 15px;
  line-height: 1.6;
}

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

.showcase-shot {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 23, 22, 0.12);
}

.showcase-shot--wide {
  grid-column: 1 / -1;
}

.showcase-shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
  background: var(--ink);
}

.showcase-shot--wide img {
  aspect-ratio: 16 / 8.2;
}

.showcase-shot figcaption {
  display: grid;
  gap: 6px;
  padding: 16px 18px 18px;
}

.showcase-shot strong {
  font-size: 18px;
  line-height: 1.25;
}

.showcase-shot span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.mini-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.mini-faq-card {
  min-height: 190px;
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 23, 22, 0.08);
}

.mini-faq-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.25;
}

.mini-faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.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 22px 54px rgba(0, 184, 148, 0.24);
  transform: translateY(-4px);
}

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

.pricing-card__top h3 {
  flex: 0 0 auto;
  margin: 0;
  font-size: 19px;
  white-space: nowrap;
}

.pricing-card__top span {
  max-width: min(100%, 210px);
  padding: 6px 8px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.pricing-card--featured .pricing-card__top span {
  color: var(--cream);
  background: var(--ink);
  font-size: 10px;
}

.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__monthly {
  width: fit-content;
  margin: -6px 0 0;
  padding: 6px 10px;
  color: var(--ink);
  background: rgba(244, 185, 66, 0.28);
  border: 1px solid rgba(195, 127, 46, 0.22);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.pricing-card--featured .pricing-card__monthly {
  color: var(--cream);
  background: var(--green);
  border-color: var(--green);
}

.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);
}

.pricing-card__legacy {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

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

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

.payment-checkout.is-disabled {
  cursor: not-allowed;
  background: #4f5a57;
}

a.is-disabled,
.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

a.download-paused-link {
  pointer-events: auto;
}

.sales-paused-notice {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 18px;
  color: #221f1b;
  background: #fff7db;
  border: 1px solid rgba(217, 138, 0, 0.34);
  border-radius: 8px;
}

.sales-paused-notice .eyebrow {
  margin: 0;
  color: #b15f00;
}

.sales-paused-notice h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.sales-paused-notice p {
  margin: 0;
}

.security-restored-notice {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 18px;
  color: #10251f;
  background: #e8f8f0;
  border: 1px solid rgba(0, 184, 148, 0.36);
  border-radius: 8px;
}

.security-restored-notice .eyebrow {
  margin: 0;
  color: #008c6d;
}

.security-restored-notice h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.security-restored-notice p {
  margin: 0;
}

.payment-email-box.is-paused {
  opacity: 0.58;
}

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

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

.resource-card {
  min-height: 178px;
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 23, 22, 0.08);
}

.section--resources .resource-card:last-child {
  grid-column: 1 / -1;
  min-height: 132px;
}

.sourceforge-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(15, 20, 18, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.sourceforge-proof .section-copy {
  max-width: 780px;
}

.sourceforge-proof__actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.sourceforge-proof__badge {
  display: grid;
  width: 156px;
  min-height: 96px;
  place-items: center;
  padding: 14px;
  background: var(--ink);
  border: 1px solid rgba(247, 242, 232, 0.18);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 23, 22, 0.16);
}

.sourceforge-proof__badge .sf-root {
  display: block;
}

.sourceforge-proof__badge a {
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
}

.sourceforge-proof__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(15, 20, 18, 0.14);
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.sourceforge-proof__link:hover {
  background: var(--green);
  color: #071210;
}

.resource-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 184, 148, 0.55);
}

.resource-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.25;
}

.resource-card small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.tester-card {
  min-height: 220px;
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 23, 22, 0.08);
}

.tester-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  color: var(--green);
}

.tester-card h3 {
  font-size: 18px;
  line-height: 1.25;
}

.tester-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.seo-main {
  background: var(--paper);
}

.seo-hero {
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(20, 23, 22, 0.96), rgba(20, 23, 22, 0.74)),
    url("./assets/streamerpro-app-screenshot.png");
  background-size: cover;
  background-position: center;
}

.seo-hero__inner {
  padding: 78px 0 64px;
}

.seo-breadcrumb {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(247, 242, 232, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.seo-breadcrumb:hover {
  color: var(--green);
}

.seo-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: 56px;
  line-height: 1.04;
}

.seo-hero p {
  max-width: 820px;
  color: rgba(247, 242, 232, 0.82);
  font-size: 20px;
}

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

.seo-hero__actions .button,
.hero-actions .button {
  min-width: 220px;
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 34px;
  align-items: start;
}

.seo-layout--wide {
  grid-template-columns: minmax(0, 1fr);
}

.seo-layout--wide .seo-article {
  max-width: 1050px;
  margin: 0 auto;
}

.seo-layout--wide .seo-table,
.seo-layout--wide .seo-table--compare,
.seo-layout--wide .seo-table--six {
  min-width: 0;
}

.seo-layout--wide .seo-table th,
.seo-layout--wide .seo-table td {
  padding: 14px 16px;
  white-space: normal;
}

.seo-layout > * {
  min-width: 0;
}

.seo-article {
  display: grid;
  gap: 26px;
  min-width: 0;
  max-width: 100%;
}

.seo-card,
.seo-cta {
  min-width: 0;
  max-width: 100%;
  padding: 28px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-wrap: break-word;
}

.seo-card h2,
.seo-card h3,
.seo-cta h2 {
  margin-bottom: 12px;
}

.seo-card p,
.seo-card li,
.seo-cta p {
  color: var(--muted);
  line-height: 1.75;
}

.seo-intro-card p {
  font-size: 17px;
}

.seo-intro-card {
  max-width: 1000px;
  margin-top: 26px;
  padding: 22px 26px;
}

.seo-intro-card h2 {
  max-width: 900px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.14;
}

.seo-shot {
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 23, 22, 0.1);
}

.seo-shot img {
  width: 100%;
}

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

.seo-card ul,
.seo-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.seo-table-wrap {
  width: 100%;
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid rgba(0, 184, 148, 0.28);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(20, 23, 22, 0.03);
}

.seo-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
  table-layout: fixed;
}

.seo-table th,
.seo-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.45;
}

.seo-table th + th,
.seo-table td + td {
  border-left: 1px solid var(--line);
}

.seo-table th {
  color: var(--ink);
  background: rgba(0, 184, 148, 0.12);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.seo-table th:nth-child(1),
.seo-table td:nth-child(1) {
  width: 24%;
}

.seo-table th:nth-child(2),
.seo-table td:nth-child(2) {
  width: 17%;
}

.seo-table th:nth-child(3),
.seo-table td:nth-child(3) {
  width: 17%;
}

.seo-table th:nth-child(4),
.seo-table td:nth-child(4) {
  width: 9%;
  text-align: center;
}

.seo-table th:nth-child(5),
.seo-table td:nth-child(5) {
  width: 33%;
  white-space: nowrap;
}

.seo-table--settings th:nth-child(1),
.seo-table--settings td:nth-child(1) {
  width: 28%;
}

.seo-table--settings th:nth-child(2),
.seo-table--settings td:nth-child(2) {
  width: 28%;
}

.seo-table--settings th:nth-child(3),
.seo-table--settings td:nth-child(3) {
  width: 44%;
  text-align: left;
}

.seo-table--compare {
  min-width: 1060px;
}

.seo-table--cloud-choice {
  min-width: 980px;
}

.seo-table--cloud-choice th,
.seo-table--cloud-choice td {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.seo-table--cloud-choice th:nth-child(1),
.seo-table--cloud-choice td:nth-child(1) {
  width: 23%;
}

.seo-table--cloud-choice th:nth-child(2),
.seo-table--cloud-choice td:nth-child(2) {
  width: 17%;
}

.seo-table--cloud-choice th:nth-child(3),
.seo-table--cloud-choice td:nth-child(3) {
  width: 16%;
}

.seo-table--cloud-choice th:nth-child(4),
.seo-table--cloud-choice td:nth-child(4) {
  width: 20%;
  text-align: left;
}

.seo-table--cloud-choice th:nth-child(5),
.seo-table--cloud-choice td:nth-child(5) {
  width: 24%;
  white-space: normal;
}

.seo-table--six {
  min-width: 940px;
}

.seo-table--six th:nth-child(1),
.seo-table--six td:nth-child(1) {
  width: 18%;
}

.seo-table--six th:nth-child(2),
.seo-table--six td:nth-child(2) {
  width: 17%;
}

.seo-table--six th:nth-child(3),
.seo-table--six td:nth-child(3) {
  width: 16%;
}

.seo-table--six th:nth-child(4),
.seo-table--six td:nth-child(4) {
  width: 12%;
  text-align: left;
}

.seo-table--six th:nth-child(5),
.seo-table--six td:nth-child(5) {
  width: 15%;
  white-space: normal;
}

.seo-table--six th:nth-child(6),
.seo-table--six td:nth-child(6) {
  width: 22%;
}

.seo-table--compare th:nth-child(1),
.seo-table--compare td:nth-child(1) {
  width: 24%;
}

.seo-table--compare th:nth-child(2),
.seo-table--compare td:nth-child(2),
.seo-table--compare th:nth-child(3),
.seo-table--compare td:nth-child(3),
.seo-table--compare th:nth-child(4),
.seo-table--compare td:nth-child(4) {
  width: 25.333%;
  text-align: left;
}

.seo-table-wrap--compare {
  background: var(--cream);
}

.seo-video-frame {
  overflow: hidden;
  margin-top: 18px;
  background: var(--ink);
  border: 1px solid rgba(20, 23, 22, 0.18);
  border-radius: 8px;
}

.seo-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.seo-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.seo-pill-list span {
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(0, 184, 148, 0.1);
  border: 1px solid rgba(0, 184, 148, 0.22);
  border-radius: 8px;
  font-weight: 900;
}

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

.seo-table td:first-child {
  color: var(--ink);
  font-weight: 900;
}

.seo-note {
  margin-top: 14px !important;
  color: var(--muted);
  font-size: 14px !important;
}

.seo-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.seo-checklist span {
  padding: 12px 14px;
  background: rgba(0, 184, 148, 0.1);
  border: 1px solid rgba(0, 184, 148, 0.22);
  border-radius: 8px;
  font-weight: 800;
}

.seo-checklist--wide span {
  min-height: 54px;
}

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

.seo-config-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-problem-card,
.seo-config-card {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-problem-card h3,
.seo-config-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
}

.seo-problem-card p,
.seo-config-card p {
  margin: 0;
  font-size: 14px;
}

.section--seo-intent-home {
  padding-top: 52px;
  padding-bottom: 52px;
}

.seo-intent-card {
  display: grid;
  gap: 18px;
}

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

.seo-intent-panel h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.seo-intent-panel p {
  margin: 0;
}

.seo-intent-faq-list {
  gap: 8px;
}

.seo-intent-faq-list .seo-faq-item summary {
  padding: 12px 13px;
  font-size: 14px;
}

.seo-intent-faq-list .seo-faq-item p {
  padding: 0 13px 13px;
  font-size: 14px;
}

.seo-intent-links {
  padding-top: 2px;
}

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

.seo-faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-faq-item summary {
  padding: 15px 16px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.seo-faq-item p {
  margin: 0;
  padding: 0 16px 16px;
}

.config-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.config-table [role="row"] {
  display: grid;
  grid-template-columns: 0.75fr 1.35fr 1.15fr;
}

.config-table [role="row"] + [role="row"] {
  border-top: 1px solid var(--line);
}

.config-table span {
  padding: 14px;
  color: var(--muted);
  line-height: 1.55;
  border-left: 1px solid var(--line);
}

.config-table span:first-child {
  color: var(--ink);
  border-left: 0;
  font-weight: 900;
}

.config-table__head span {
  color: var(--cream);
  background: var(--ink);
  font-weight: 900;
}

.seo-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  width: 100%;
  min-width: 0;
  max-width: 320px;
  justify-self: stretch;
}

.seo-side__box {
  width: 100%;
  min-width: 0;
  padding: 22px;
  color: var(--cream);
  background: var(--ink);
  border-radius: 8px;
}

.seo-side__box p {
  color: rgba(247, 242, 232, 0.76);
}

.seo-side__links {
  display: grid;
  gap: 8px;
  width: 100%;
  min-width: 0;
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-side__links a {
  color: var(--ink-soft);
  font-weight: 800;
}

.seo-side__links a:hover {
  color: var(--green);
}

.seo-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  width: 100%;
  min-width: 0;
  max-width: 320px;
  justify-self: stretch;
}

.seo-aside-card {
  display: grid;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 22px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-aside-card--dark {
  color: var(--cream);
  background: var(--ink);
  overflow: hidden;
}

.seo-aside-card--dark p {
  color: rgba(247, 242, 232, 0.76);
}

.seo-aside-card strong {
  color: inherit;
  font-weight: 900;
  min-width: 0;
  overflow-wrap: anywhere;
}

.seo-aside-card span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.seo-aside-card--dark span {
  color: rgba(247, 242, 232, 0.78);
}

.seo-aside-card code {
  display: block;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  font-size: 11px;
  line-height: 1.55;
}

.seo-aside-card--download .button {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-top: 14px;
  padding-inline: 14px;
  white-space: normal;
}

.seo-aside-card--download .button span {
  color: inherit;
  overflow-wrap: normal;
}

.seo-aside-card--fr-download h2 {
  max-width: 100%;
  font-size: clamp(30px, 2.1vw, 34px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.seo-aside-card--fr-download .button {
  font-size: 15px;
}

.changelog-entry__top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--green);
  font-weight: 900;
}

.changelog-entry__top time {
  color: var(--muted);
  font-size: 14px;
}

.changelog-list {
  padding-left: 22px;
}

.changelog-list li {
  padding-left: 2px;
}

.seo-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  color: var(--cream);
  background: var(--ink);
  overflow-wrap: normal;
}

.seo-cta h2 {
  max-width: 900px;
  color: var(--cream);
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.14;
  word-break: normal;
}

.seo-cta p {
  color: rgba(247, 242, 232, 0.76);
}

.seo-cta .seo-hero__actions {
  margin-top: 0;
}

.seo-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.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;
}

.support-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  justify-items: start;
}

.support-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.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 !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.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,
.contact-form select {
  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 select {
  appearance: none;
}

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

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

.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.contact-form__checkbox input {
  width: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.creator-steps {
  display: grid;
  gap: 14px;
  counter-reset: creator-step;
}

.creator-step {
  position: relative;
  padding: 18px 18px 18px 64px;
  background: rgba(0, 184, 148, 0.08);
  border: 1px solid rgba(0, 184, 148, 0.25);
  border-radius: 8px;
}

.creator-step::before {
  content: counter(creator-step);
  counter-increment: creator-step;
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ink);
  background: var(--teal);
  border-radius: 999px;
  font-weight: 900;
}

.creator-step h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.creator-step p {
  margin: 0;
  color: var(--muted);
}

.creator-disclosure {
  padding: 16px;
  color: var(--ink);
  background: #f4efe4;
  border: 1px dashed rgba(20, 23, 22, 0.28);
  border-radius: 8px;
  font-weight: 900;
}

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

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

.contact-form__rgpd {
  line-height: 1.55;
}

.contact-form__rgpd a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.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-panel__hint {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  color: var(--cream);
  background: rgba(0, 184, 148, 0.13);
  border: 1px solid rgba(0, 184, 148, 0.34);
  border-radius: 8px;
}

.download-panel__hint svg {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: var(--green);
}

.download-panel__hint strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 900;
}

.download-panel__hint p,
.download-panel__hint small {
  display: block;
  margin: 0;
  color: rgba(247, 242, 232, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.download-panel__hint small {
  margin-top: 6px;
  color: rgba(247, 242, 232, 0.68);
}

.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;
  flex-wrap: wrap;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}

.footer-links a {
  font-size: 14px;
}

@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;
  }

  .site-nav a.creator-offer-nav,
  .site-nav a[data-nav-creator-program] {
    align-self: stretch;
    max-width: none;
    min-height: 64px;
    font-size: 15px;
  }

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

  .hero {
    min-height: 66vh;
  }

  h1 {
    font-size: 52px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(38px, 6vw, 50px);
  }

  h2 {
    font-size: 32px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__problem {
    font-size: 22px;
  }

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

  .sourceforge-proof {
    grid-template-columns: 1fr;
  }

  .sourceforge-proof__actions {
    justify-items: start;
  }

  .split,
  .install-layout,
  .support,
  .live-menu-layout,
  .recording-layout,
  .signage-choice,
  .local-setup,
  .positioning-layout,
  .windows-security,
  .streaming-layout,
  .payment-layout,
  .demo-video-layout,
  .youtube-live-layout,
  .obs-comparison,
  .seo-layout {
    grid-template-columns: 1fr;
  }

  .seo-side,
  .seo-aside {
    position: static;
  }

  .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;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.12;
  }

  h2 {
    font-size: 28px;
  }

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

  .hero__problem {
    max-width: 100%;
    font-size: 20px;
  }

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

  .button {
    width: 100%;
  }

  .local-costs__actions,
  .youtube-live-actions {
    grid-template-columns: 1fr;
  }

  .local-costs__actions .button--primary,
  .youtube-live-actions .button--primary {
    grid-column: auto;
    width: 100%;
  }

  .hero__stats {
    display: none;
  }

  .signal-strip__grid,
  .audience-grid,
  .feature-grid,
  .highlight-grid,
  .tech-grid,
  .media-showcase,
  .signage-choice__grid,
  .windows-security-grid,
  .showcase-grid,
  .mini-faq-grid,
  .contact-form__grid,
  .encoder-metrics,
  .pricing-grid,
  .resource-grid,
  .tester-grid,
  .seo-checklist,
  .seo-intent-grid,
  .seo-problem-grid,
  .seo-config-grid,
  .obs-points,
  .seo-cta {
    grid-template-columns: 1fr;
  }

  .sourceforge-proof__link {
    width: 100%;
    white-space: normal;
  }

  .seo-hero__inner {
    padding: 54px 0 46px;
  }

  .seo-hero h1 {
    font-size: 38px;
  }

  .seo-hero p {
    font-size: 17px;
  }

  .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;
  }

  .recording-shot img {
    aspect-ratio: 16 / 10;
  }

  .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;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .download-security dl {
    grid-template-columns: 1fr;
  }

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

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

  .youtube-live-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
  }

  .youtube-live-overlay strong {
    font-size: 13px;
  }

  .youtube-live-overlay span {
    font-size: 11px;
  }

  .config-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .config-table span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .config-table span:first-child {
    border-top: 0;
  }
}

@media (max-width: 760px) {
  .local-costs__table {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .local-costs__head {
    display: none;
  }

  .local-costs__row {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .local-costs__row strong,
  .local-costs__row span {
    display: grid;
    grid-template-columns: minmax(96px, 0.72fr) minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .local-costs__row strong::before,
  .local-costs__row span::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .local-costs__row strong::before {
    content: "Solution";
  }

  .local-costs__row span:last-child {
    border-bottom: 0;
  }

  .seo-table-wrap--compare {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .seo-table--compare {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 12px;
  }

  .seo-table--compare thead {
    display: none;
  }

  .seo-table--compare,
  .seo-table--compare tbody,
  .seo-table--compare tr,
  .seo-table--compare td {
    display: block;
    width: 100% !important;
  }

  .seo-table--compare tr {
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .seo-table--compare td {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 14px;
    border-left: 0 !important;
    border-bottom: 1px solid var(--line);
    text-align: left !important;
    white-space: normal !important;
  }

  .seo-table--compare td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .seo-table--compare td:first-child {
    color: var(--ink);
    background: rgba(0, 184, 148, 0.12);
    font-size: 16px;
  }

  .seo-table--compare td:first-child::before {
    content: "Critère";
  }

  .seo-table--compare tr:last-child td {
    border-bottom: 1px solid var(--line);
  }

  .seo-table--compare tr td:last-child {
    border-bottom: 0;
  }
}

.portal-page {
  background: var(--warm);
}

.portal-hero {
  padding: 96px 0 34px;
  background: linear-gradient(180deg, rgba(16, 21, 18, 0.96), rgba(16, 21, 18, 0.88));
  color: var(--cream);
}

.portal-hero__inner {
  max-width: 920px;
}

.portal-hero h1 {
  max-width: 850px;
  margin: 8px 0 12px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.96;
}

.portal-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.portal-section {
  padding: 28px 0;
}

.portal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.portal-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 20px 60px rgba(22, 18, 12, 0.08);
  padding: 24px;
}

.portal-panel h2,
.portal-panel h3 {
  margin: 0 0 10px;
}

.portal-panel p {
  color: var(--muted);
}

.portal-field {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  color: var(--ink);
  font-weight: 900;
}

.portal-field input,
.portal-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf6;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  padding: 12px 14px;
}

.portal-field textarea {
  min-height: 128px;
  resize: vertical;
  word-break: break-all;
}

.portal-divider {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 24px 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-divider::before,
.portal-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.portal-magic {
  margin-top: 0;
}

.portal-magic h3 {
  font-size: 20px;
}

.portal-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.portal-status.is-error {
  color: #b3261e;
}

.portal-version {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
}

.portal-version div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: baseline;
}

.portal-version dt {
  color: var(--muted);
  font-weight: 900;
}

.portal-version dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.portal-account-section {
  padding-top: 6px;
}

.portal-account-head,
.portal-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.portal-account-head h2 {
  margin: 4px 0 0;
  font-size: clamp(28px, 4vw, 44px);
}

.portal-license-picker {
  margin-bottom: 20px;
}

.portal-license-options {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.portal-license-option {
  display: grid;
  grid-template-columns: minmax(180px, 1.3fr) minmax(110px, 0.7fr) minmax(110px, 0.7fr) minmax(110px, 0.7fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf6;
  padding: 16px;
}

.portal-license-option.is-current {
  border-color: rgba(0, 191, 155, 0.45);
  background: rgba(0, 191, 155, 0.08);
}

.portal-license-option span:not(.portal-license-pill) {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-license-option strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.portal-license-pill {
  justify-self: end;
  border: 1px solid rgba(0, 191, 155, 0.4);
  border-radius: 999px;
  background: rgba(0, 191, 155, 0.14);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
  text-transform: uppercase;
}

.portal-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.portal-summary-card {
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf6;
  padding: 18px;
}

.portal-summary-card span,
.portal-activation span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-summary-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.portal-activations {
  display: grid;
  gap: 12px;
}

.portal-activation {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr 0.9fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf6;
  padding: 16px;
}

.portal-activation strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.portal-empty {
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fffdf6;
  padding: 18px;
  color: var(--muted);
  font-weight: 800;
}

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

@media (max-width: 980px) {
  .portal-grid,
  .portal-summary,
  .portal-license-option,
  .portal-activation {
    grid-template-columns: 1fr;
  }

  .portal-account-head,
  .portal-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
