:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #111417;
  color: #eef3f6;
  --bg: #111417;
  --panel: #181d21;
  --panel-2: #222a30;
  --line: #36434c;
  --text: #eef3f6;
  --muted: #a9b7bf;
  --cyan: #44bba4;
  --blue: #6bb7ff;
  --yellow: #f6c85f;
  --red: #ef767a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.site-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.button-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 20, 23, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
}

nav {
  display: flex;
  gap: clamp(10px, 2vw, 24px);
  flex-wrap: wrap;
  color: var(--muted);
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--text);
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(320px, 2fr) minmax(0, 3fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  padding: clamp(34px, 5vw, 68px) clamp(20px, 4vw, 56px) clamp(30px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 72px;
  line-height: 0.94;
}

.lead {
  max-width: 520px;
  margin: 22px 0;
  color: #d7e2e7;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.45;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions,
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button,
button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 16px;
  background: #20272d;
  color: var(--text);
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.button:not(.disabled):hover,
button:not(:disabled):hover {
  border-color: #63727c;
  background: #273139;
}

.button.primary,
button.primary {
  border-color: rgba(68, 187, 164, 0.7);
  background: #1c4c45;
}

.button.disabled,
button:disabled {
  border-color: rgba(99, 114, 124, 0.48);
  background: #192026;
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.78;
}

button.primary:disabled {
  border-color: rgba(68, 187, 164, 0.42);
  background: rgba(28, 76, 69, 0.5);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.hero-metrics div {
  border-left: 3px solid var(--cyan);
  padding-left: 12px;
}

.hero-metrics dt {
  color: var(--muted);
  font-size: 13px;
}

.hero-metrics dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  background: #0d1012;
}

.section {
  padding: clamp(44px, 7vw, 88px) clamp(20px, 4vw, 56px);
}

.section.alt {
  background: #151a1e;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 26px;
}

.section h2 {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.02;
}

.feature-grid,
.pricing-grid,
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.feature-card,
.pricing-card,
.portal-content,
.docs-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.pricing-card,
.portal-content {
  padding: 18px;
}

.feature-grid .feature-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  color: inherit;
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease;
}

.feature-grid .feature-card:hover,
.feature-grid .feature-card:focus-visible {
  border-color: rgba(68, 187, 164, 0.8);
  outline: 0;
  transform: translateY(-2px);
}

.feature-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-bottom: 1px solid var(--line);
  background: #0d1012;
}

.feature-copy {
  display: grid;
  gap: 10px;
  padding: 16px 18px 18px;
}

.feature-grid h3,
.pricing-card h3 {
  margin: 0;
}

.feature-grid h3,
.pricing-card h3,
.feature-detail-copy h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-title-icon,
.pricing-card-icon,
.compare-feature-icon {
  color: var(--cyan);
}

.compare-feature-icon {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  vertical-align: -4px;
}

.feature-title-icon {
  width: 22px;
  height: 22px;
}

.pricing-card-icon {
  width: 24px;
  height: 24px;
}

.feature-grid p,
.pricing-card p,
.status {
  margin: 0;
  color: var(--muted);
}

.feature-detail-list {
  display: grid;
  gap: clamp(44px, 7vw, 88px);
  margin-top: clamp(36px, 6vw, 72px);
}

.feature-detail {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding-top: clamp(22px, 4vw, 42px);
  border-top: 1px solid var(--line);
}

.feature-detail-reverse {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.feature-detail-reverse .feature-image-button {
  order: 2;
}

.feature-detail-reverse .feature-detail-copy {
  order: 1;
}

.feature-image-button {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #0d1012;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  cursor: zoom-in;
  overflow: hidden;
}

.feature-image-button:hover,
.feature-image-button:focus-visible {
  border-color: rgba(68, 187, 164, 0.8);
  background: #0d1012;
}

.feature-image-button:focus-visible {
  outline: 3px solid rgba(68, 187, 164, 0.34);
  outline-offset: 4px;
}

.feature-detail img {
  display: block;
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
}

.feature-detail-copy {
  display: grid;
  gap: 14px;
}

.feature-detail-copy h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
}

.feature-heading-icon {
  width: 38px;
  height: 38px;
  color: var(--cyan);
}

.feature-detail-copy p {
  margin: 0;
  color: #d7e2e7;
  font-size: 17px;
  line-height: 1.5;
}

.feature-detail-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.feature-detail-copy li {
  line-height: 1.45;
}

.image-viewer {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 76px clamp(14px, 3vw, 32px) clamp(14px, 3vw, 32px);
  background: rgba(6, 8, 10, 0.96);
}

.image-viewer::backdrop {
  background: rgba(0, 0, 0, 0.84);
}

.image-viewer img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 108px);
  margin: 0 auto;
  object-fit: contain;
}

.image-viewer form {
  position: fixed;
  top: 18px;
  right: 18px;
  margin: 0;
}

.image-viewer-close {
  min-width: 84px;
  background: #20272d;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card strong {
  font-size: 38px;
}

.pricing-card ul {
  margin: 0;
  padding-left: 18px;
  color: #ced9de;
}

.pricing-card > .button,
.pricing-card > button {
  align-self: flex-start;
  margin-top: auto;
}

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

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

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

th {
  background: var(--panel-2);
}

.compare-table-wrap {
  position: relative;
  overflow: visible;
  margin-bottom: 34px;
  border-color: rgba(68, 187, 164, 0.32);
  background: linear-gradient(180deg, rgba(68, 187, 164, 0.08), rgba(24, 29, 33, 0));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.compare-table-scroll {
  overflow-x: auto;
  border-radius: inherit;
}

.compare-table-stage {
  position: relative;
  min-width: 920px;
}

.compare-table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 0;
  background: rgba(15, 19, 22, 0.72);
}

.compare-table .feature-column {
  width: 34%;
}

.compare-table .plan-column {
  width: 22%;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid rgba(54, 67, 76, 0.72);
  padding: 16px 18px;
}

.compare-table th {
  position: relative;
  background: #1b2228;
  color: #dce6eb;
  font-size: 15px;
  font-weight: 800;
}

.compare-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.018);
}

.compare-table tbody tr:hover td {
  background: rgba(68, 187, 164, 0.06);
}

.compare-table .feature-cell {
  color: #eef3f6;
  font-weight: 800;
}

.compare-table .standard-col {
  border-left: 1px solid rgba(68, 187, 164, 0.36);
  border-right: 1px solid rgba(68, 187, 164, 0.36);
  background: rgba(68, 187, 164, 0.08);
}

.compare-table th.standard-col {
  background: linear-gradient(180deg, rgba(68, 187, 164, 0.28), rgba(28, 76, 69, 0.44));
  color: #f3fffc;
}

.compare-table tbody tr:nth-child(even) .standard-col,
.compare-table tbody tr:hover .standard-col {
  background: rgba(68, 187, 164, 0.12);
}

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

.plan-badge,
.compare-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.plan-badge {
  width: fit-content;
  gap: 6px;
  padding: 0 9px;
}

.compare-status {
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
}

.plan-badge {
  border: 1px solid rgba(246, 200, 95, 0.76);
  background: rgba(246, 200, 95, 0.16);
  color: #ffe5a3;
}

.badge-icon {
  width: 14px;
  height: 14px;
}

.compare-status-icon {
  width: 18px;
  height: 18px;
}

.compare-status.included {
  border: 1px solid rgba(68, 187, 164, 0.6);
  background: rgba(68, 187, 164, 0.12);
  color: #9cf3df;
}

.compare-status.limited {
  border: 1px solid rgba(246, 200, 95, 0.56);
  background: rgba(246, 200, 95, 0.12);
  color: #ffe0a1;
}

.compare-status.unavailable {
  border: 1px solid rgba(255, 91, 105, 0.58);
  background: rgba(255, 91, 105, 0.12);
  color: #ff6b7a;
}

.split,
.portal-layout,
.admin-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}

.downloads-section {
  display: grid;
  gap: clamp(36px, 6vw, 72px);
}

.downloads-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}

.download-list,
.docs-grid {
  align-content: start;
}

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

.download-list a,
.download-list-item,
.docs-grid a {
  min-height: 54px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 0 16px;
  text-decoration: none;
}

.download-list a,
.download-list-item {
  border-left: 3px solid var(--yellow);
  background: var(--panel);
}

.download-list a strong,
.download-list-item strong {
  color: var(--text);
}

.download-list a span,
.download-list-item span {
  color: var(--muted);
  font-size: 14px;
}

.download-list-item .download-requirements {
  color: #d8e0e5;
}

.download-list-item.disabled {
  opacity: 0.74;
}

.download-list-item.has-icon {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  align-content: center;
  column-gap: 12px;
}

.download-list-item.has-icon > :not(.download-list-icon) {
  grid-column: 2;
}

.download-list-icon {
  grid-column: 1;
  grid-row: 1 / -1;
  width: 24px;
  height: 24px;
  color: var(--yellow);
}

.install-help {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(246, 200, 95, 0.34);
  background: rgba(246, 200, 95, 0.07);
}

.install-help-status,
.install-help p,
.install-help h3,
.install-help ol {
  margin: 0;
}

.install-help-status {
  color: #ffe5a3;
  font-weight: 700;
}

.install-help article {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(246, 200, 95, 0.22);
}

.install-help h3 {
  color: var(--text);
  font-size: 18px;
}

.install-help ol {
  display: grid;
  gap: 6px;
  padding-left: 22px;
  color: var(--muted);
}

.install-help p {
  color: var(--muted);
}

.install-help strong,
.install-help code {
  color: var(--text);
}

.install-help code {
  display: inline-block;
  max-width: 100%;
  padding: 2px 5px;
  border: 1px solid rgba(216, 224, 229, 0.16);
  background: rgba(10, 13, 16, 0.58);
  overflow-wrap: anywhere;
  font-size: 13px;
}

.release-history {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(20px, 4vw, 48px);
  padding-top: clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.release-history-heading h3,
.release-history-heading p {
  margin: 0;
}

.release-history-heading h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.release-history-heading > p:last-child {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.release-timeline {
  border-top: 1px solid var(--line);
}

.release-timeline details {
  border-bottom: 1px solid var(--line);
}

.release-timeline summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 58px;
  cursor: pointer;
  list-style: none;
}

.release-timeline summary::-webkit-details-marker {
  display: none;
}

.release-timeline summary span {
  color: var(--yellow);
  font-size: 18px;
  font-weight: 800;
}

.release-timeline summary::after {
  content: "+";
  grid-column: 2;
  color: var(--muted);
  font-size: 22px;
}

.release-timeline details[open] summary::after {
  content: "-";
}

.release-timeline ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0 0 20px 22px;
  color: var(--muted);
  line-height: 1.5;
}

.coming-soon-flag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 22px;
  border: 1px solid rgba(246, 200, 95, 0.6);
  border-radius: 999px;
  padding: 0 8px;
  background: rgba(246, 200, 95, 0.12);
  color: #ffe5a3;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

button .coming-soon-flag {
  margin-left: 8px;
}

.stack {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

input,
select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 11px;
  background: #20272d;
  color: var(--text);
  font: inherit;
}

.portal-content {
  min-height: 180px;
}

.portal-content article {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 14px;
}

.portal-content article:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.activation-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.activation-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px;
  background: #13191d;
}

.key {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 1500px) {
  .hero h1 {
    font-size: 78px;
  }
}

@media (max-width: 1120px) {
  .hero,
  .split,
  .downloads-layout,
  .release-history,
  .portal-layout,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-media img {
    max-height: none;
  }

  .feature-detail {
    grid-template-columns: 1fr;
  }

  .feature-detail-reverse .feature-image-button,
  .feature-detail-reverse .feature-detail-copy {
    order: initial;
  }

  .feature-detail img {
    max-height: 56vh;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 48px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-detail img {
    max-height: none;
  }
}
