:root {
  color-scheme: dark;
  --bg: #10110f;
  --bg-deep: #0a0b09;
  --surface: #191a17;
  --surface-strong: #20211d;
  --line: #383a33;
  --line-soft: #292b26;
  --text: #f6f7f2;
  --muted: #b8bcae;
  --cyan: #6fc4d0;
  --green: #62b77b;
  --amber: #e0ad45;
  --red: #e56a62;
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

button,
a {
  font: inherit;
}

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

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

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

.skipLink {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--text);
  color: var(--bg);
}

.skipLink:focus {
  transform: translateY(0);
}

.siteHeader {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px max(24px, calc((100% - var(--content)) / 2));
  border-bottom: 1px solid var(--line-soft);
  background: rgba(16, 17, 15, 0.96);
  backdrop-filter: blur(12px);
}

.brand,
.footerBrand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 750;
}

.brand img,
.footerBrand img {
  border-radius: 50%;
}

.siteNav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.siteNav a {
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.siteNav a:hover,
.siteNav a:focus-visible,
.footerLinks a:hover,
.footerLinks a:focus-visible,
.textLink:hover,
.textLink:focus-visible {
  color: var(--text);
}

.siteNav .navDownload {
  padding: 9px 15px;
  border: 1px solid #4b8e5f;
  border-radius: 6px;
  background: #315f3e;
  color: #fff;
  font-weight: 700;
}

.siteNav .navDownload:hover,
.siteNav .navDownload:focus-visible {
  background: #3b724a;
}

.menuButton {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menuButton span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.hero {
  position: relative;
  height: calc(100svh - 104px);
  min-height: 600px;
  max-height: 820px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
}

.heroScene,
.heroShade {
  position: absolute;
  inset: 0;
}

.heroScene {
  background: #11120f;
}

.heroShade {
  z-index: 1;
  background: rgba(8, 9, 7, 0.7);
  pointer-events: none;
}

.sceneWindow {
  position: absolute;
  top: 22px;
  left: 40%;
  width: 1360px;
  height: 720px;
  overflow: hidden;
  border: 1px solid #4a4c43;
  border-radius: 8px;
  background: #10110f;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65);
  transform: perspective(1400px) rotateX(2deg) rotateY(-4deg);
  transform-origin: center;
  opacity: 0.92;
}

.sceneTitlebar,
.sceneToolbar,
.scenePath,
.sceneTabs,
.sceneSectionTitle,
.sceneStatus {
  display: flex;
  align-items: center;
}

.sceneTitlebar {
  justify-content: space-between;
  height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid #2d2f29;
  background: #20211f;
  font-size: 14px;
}

.sceneBrand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.sceneBrand img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.sceneControls {
  display: flex;
  gap: 12px;
}

.sceneControls i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #74786c;
}

.sceneToolbar {
  justify-content: space-between;
  height: 70px;
  padding: 0 24px;
  border-bottom: 1px solid #36382f;
  color: #bfc3b3;
}

.sceneToolbar div,
.sceneTabs {
  display: flex;
  gap: 10px;
}

.sceneToolbar b,
.sceneTabs b {
  padding: 9px 14px;
  border: 1px solid #3c3d36;
  border-radius: 5px;
  background: #1b1c19;
  color: #eceee7;
  font-size: 13px;
}

.sceneToolbar .sceneStart,
.sceneTabs .active {
  border-color: var(--green);
  background: #45885a;
  color: #07120a;
}

.scenePath {
  justify-content: space-between;
  height: 42px;
  padding: 0 24px;
  border-bottom: 1px solid #303229;
  color: #b8bcad;
  font-family: Consolas, monospace;
  font-size: 12px;
}

.sceneTabs {
  height: 64px;
  padding: 12px 24px;
}

.sceneTabs .active {
  border-color: var(--cyan);
  background: var(--cyan);
}

.sceneDashboard {
  margin: 0 24px;
  border: 1px solid #393b33;
  border-radius: 6px;
  background: #171815;
}

.sceneSectionTitle {
  justify-content: space-between;
  height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid #34362e;
}

.sceneSectionTitle span {
  color: #aeb2a4;
  font-size: 12px;
}

.sceneMetrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px;
}

.sceneMetrics div {
  min-width: 0;
  padding: 15px;
  border: 1px solid #3a3c33;
  border-radius: 5px;
  background: #1d1e1a;
}

.sceneMetrics strong,
.sceneMetrics span {
  display: block;
}

.sceneMetrics strong {
  overflow: hidden;
  color: var(--green);
  font-size: 28px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sceneMetrics span {
  margin-top: 4px;
  color: #bdc1b3;
  font-size: 11px;
  text-transform: uppercase;
}

.sceneStatus {
  gap: 32px;
  margin: 0 18px;
  padding: 13px 0;
  border-top: 1px solid #303229;
  border-bottom: 1px solid #303229;
  color: #c8cbbf;
  font-size: 12px;
}

.sceneStatus i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
}

.sceneStatus .ok {
  background: var(--green);
}

.sceneStatus .warn {
  background: var(--amber);
}

.sceneChart {
  position: relative;
  display: flex;
  align-items: end;
  gap: 18px;
  height: 190px;
  margin: 18px;
  padding: 20px 26px 0;
  border: 1px solid #34362e;
  background: #151613;
}

.sceneChart::before,
.sceneChart::after {
  position: absolute;
  right: 26px;
  left: 26px;
  height: 1px;
  background: #33352e;
  content: "";
}

.sceneChart::before {
  top: 36%;
}

.sceneChart::after {
  top: 68%;
}

.sceneChart i {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 14px;
  max-width: 56px;
  background: #4f9865;
  animation: chartPulse 4s ease-in-out infinite alternate;
}

.sceneChart i:nth-child(3n) {
  animation-delay: 500ms;
}

.sceneChart i:nth-child(2n) {
  animation-delay: 900ms;
}

@keyframes chartPulse {
  from { opacity: 0.62; }
  to { opacity: 1; }
}

.heroContent {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: min(var(--content), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  padding: 0 0 58px;
  text-shadow: 0 2px 22px #000;
}

.releaseFlag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #dfe6d8;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.releaseFlag span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(98, 183, 123, 0.9);
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
}

.heroContent > p:not(.releaseMeta) {
  max-width: 720px;
  margin-bottom: 28px;
  color: #e0e3da;
  font-size: 21px;
  line-height: 1.45;
}

.heroActions,
.workflowActions,
.communityLinks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  text-align: center;
  text-shadow: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.buttonPrimary {
  border-color: #569e69;
  background: #4d9561;
  color: #08120b;
}

.buttonPrimary:hover,
.buttonPrimary:focus-visible {
  background: #66b77a;
}

.buttonSecondary {
  border-color: #5c6055;
  background: #1d1f1b;
  color: var(--text);
}

.buttonSecondary:hover,
.buttonSecondary:focus-visible {
  border-color: #858a7c;
  background: #282a25;
}

.releaseMeta {
  margin: 13px 0 0;
  color: #bfc4b5;
  font-size: 13px;
}

.pricingLine {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 16px;
  font-size: 14px;
}

.pricingLine strong {
  color: #80cf93;
}

.pricingLine span {
  color: #c7cbbf;
}

.sectionInner {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.signalBand {
  border-bottom: 1px solid var(--line);
  background: #151613;
}

.signalGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signalGrid div {
  min-width: 0;
  padding: 24px 22px;
  border-right: 1px solid var(--line-soft);
}

.signalGrid div:first-child {
  padding-left: 0;
}

.signalGrid div:last-child {
  border-right: 0;
}

.signalGrid strong,
.signalGrid span {
  display: block;
}

.signalGrid strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.signalGrid span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line-soft);
}

.sectionDark {
  background: #151613;
}

.sectionHeading {
  display: grid;
  grid-template-columns: 170px minmax(0, 680px) minmax(240px, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 62px;
}

.sectionHeading > span,
.communityInner > div:first-child > span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.sectionHeading h2,
.communityInner h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

.sectionHeading > p {
  margin-bottom: 0;
  color: var(--muted);
}

.compactHeading {
  grid-template-columns: 170px minmax(0, 760px);
}

.featureGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 36px;
}

.featureItem {
  min-width: 0;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
}

.featureItem > span {
  display: block;
  margin-bottom: 30px;
  color: var(--amber);
  font-family: Consolas, monospace;
  font-size: 13px;
}

.featureItem h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

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

.workflowList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.workflowList li {
  display: flex;
  gap: 20px;
  min-width: 0;
  padding: 28px;
  background: #171815;
}

.workflowList li > b {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #597964;
  border-radius: 50%;
  color: var(--green);
}

.workflowList h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.workflowList p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.workflowActions {
  margin-top: 30px;
}

.textLink {
  padding: 10px 4px;
  color: var(--muted);
  font-weight: 700;
}

.interfaceLayout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: 66px;
  align-items: center;
}

.interfaceCopy {
  display: block;
  margin-bottom: 0;
}

.interfaceCopy > span {
  display: block;
  margin-bottom: 20px;
}

.interfaceCopy h2 {
  margin-bottom: 22px;
}

.interfaceCopy > p {
  margin-bottom: 24px;
}

.plainList {
  margin: 0;
  padding: 0;
  color: #d7dacd;
  list-style: none;
}

.plainList li {
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid var(--line-soft);
}

.plainList li::before {
  margin-left: -20px;
  margin-right: 10px;
  color: var(--green);
  content: "•";
}

.interfacePreview {
  overflow: hidden;
  border: 1px solid #4a4c43;
  border-radius: 7px;
  background: #11120f;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.previewTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 16px;
  border-bottom: 1px solid #35372f;
  background: #1e1f1c;
}

.previewTop span {
  padding: 6px 10px;
  border: 1px solid #4b8d5e;
  border-radius: 4px;
  background: #356747;
  font-size: 12px;
}

.previewColumns {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  min-height: 330px;
}

.previewColumns > div {
  min-width: 0;
  padding: 14px;
  border-right: 1px solid #34362f;
}

.previewColumns > div:last-child {
  border-right: 0;
}

.previewColumns b,
.previewColumns span {
  display: block;
}

.previewColumns b {
  padding-bottom: 12px;
  border-bottom: 1px solid #34362f;
  font-size: 13px;
}

.previewColumns span {
  overflow: hidden;
  padding: 13px 4px;
  border-bottom: 1px solid #2c2e28;
  color: #c6cabb;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.previewColumns i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
}

.previewColumns .green {
  background: var(--green);
}

.previewColumns .amber {
  background: var(--amber);
}

.previewColumns .previewSelected {
  margin-top: 8px;
  border: 1px solid #826b36;
  background: #30291a;
  color: #f0c86c;
}

.safetyBand {
  background: #172019;
}

.safetyLayout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 76px;
}

.safetyLayout .sectionHeading {
  display: block;
  margin-bottom: 0;
}

.safetyLayout .sectionHeading > span {
  display: block;
  margin-bottom: 20px;
  color: #8fd5a3;
}

.safetyPoints p {
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #3a4a3d;
  color: #c8d0c7;
}

.safetyPoints p:last-child {
  border-bottom: 1px solid #3a4a3d;
}

.safetyPoints b {
  color: var(--text);
}

.safetyPoints code {
  color: #dce7dd;
  font-family: Consolas, monospace;
  font-size: 0.92em;
}

.faqLayout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(520px, 1.45fr);
  gap: 76px;
}

.faqLayout .sectionHeading {
  display: block;
  margin-bottom: 0;
}

.faqLayout .sectionHeading > span {
  display: block;
  margin-bottom: 20px;
}

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

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

.faqList summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

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

.faqList summary::after {
  position: absolute;
  top: 19px;
  right: 4px;
  width: 26px;
  height: 26px;
  color: var(--cyan);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.faqList details[open] summary::after {
  content: "−";
}

.faqList p {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--muted);
}

.communityBand {
  padding: 66px 0;
  border-bottom: 1px solid var(--line);
  background: #191c18;
}

.communityInner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.communityInner > div:first-child > span {
  display: block;
  margin-bottom: 15px;
}

.communityInner h2 {
  max-width: 760px;
}

.siteFooter {
  padding: 38px 0;
  background: #0b0c0a;
  color: var(--muted);
}

.footerInner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footerBrand {
  color: var(--text);
}

.footerLinks {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.footerInner > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid #24261f;
  font-size: 12px;
}

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

@media (max-width: 1080px) {
  .sectionHeading {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .sectionHeading > p {
    grid-column: 2;
  }

  .signalGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signalGrid div:nth-child(2) {
    border-right: 0;
  }

  .signalGrid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .signalGrid div:nth-child(3) {
    padding-left: 0;
  }

  .featureGrid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .interfaceCopy {
    max-width: 760px;
  }
}

@media (max-width: 860px) {
  .siteHeader {
    padding-inline: 20px;
  }

  .menuButton {
    display: block;
  }

  .siteNav {
    position: absolute;
    top: 68px;
    right: 12px;
    left: 12px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #171815;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  }

  .siteNav.isOpen {
    display: grid;
  }

  .siteNav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line-soft);
  }

  .siteNav a:last-child {
    margin-top: 6px;
    border-bottom: 0;
    text-align: center;
  }

  .hero {
    min-height: 560px;
  }

  .sceneWindow {
    left: 20%;
    width: 1180px;
    transform: perspective(1400px) rotateX(2deg) rotateY(-3deg);
  }

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

  .heroContent > p:not(.releaseMeta) {
    max-width: 620px;
    font-size: 18px;
  }

  .section {
    padding: 76px 0;
  }

  .sectionHeading,
  .compactHeading {
    display: block;
  }

  .sectionHeading > span {
    display: block;
    margin-bottom: 16px;
  }

  .sectionHeading h2 {
    margin-bottom: 20px;
    font-size: 36px;
  }

  .safetyLayout,
  .faqLayout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .communityInner {
    display: block;
  }

  .communityLinks {
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  .brand span {
    font-size: 14px;
  }

  .sectionInner,
  .heroContent {
    width: calc(100% - 32px);
  }

  .hero {
    height: calc(100svh - 92px);
    min-height: 540px;
    max-height: 720px;
  }

  .heroShade {
    background: rgba(8, 9, 7, 0.76);
  }

  .sceneWindow {
    top: 16px;
    left: 8%;
    width: 960px;
    height: 620px;
    transform: none;
  }

  .heroContent {
    padding-bottom: 38px;
  }

  .releaseFlag {
    margin-bottom: 13px;
    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: 40px;
    line-height: 1;
  }

  .heroContent > p:not(.releaseMeta) {
    margin-bottom: 21px;
    font-size: 16px;
  }

  .heroActions .button,
  .workflowActions .button,
  .communityLinks .button {
    width: 100%;
  }

  .signalGrid,
  .featureGrid {
    grid-template-columns: 1fr;
  }

  .signalGrid div,
  .signalGrid div:first-child,
  .signalGrid div:nth-child(3) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .signalGrid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 62px 0;
  }

  .sectionHeading {
    margin-bottom: 42px;
  }

  .sectionHeading h2,
  .communityInner h2 {
    font-size: 30px;
  }

  .featureGrid {
    column-gap: 0;
  }

  .featureItem > span {
    margin-bottom: 18px;
  }

  .workflowList li {
    padding: 22px 18px;
  }

  .interfaceLayout {
    gap: 42px;
  }

  .interfacePreview {
    overflow: hidden;
  }

  .previewColumns {
    grid-template-columns: 1fr;
    width: auto;
    min-height: 0;
  }

  .previewColumns > div {
    border-right: 0;
    border-bottom: 1px solid #34362f;
  }

  .previewColumns > div:last-child {
    border-bottom: 0;
  }

  .safetyLayout,
  .faqLayout {
    gap: 34px;
  }

  .communityBand {
    padding: 52px 0;
  }

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

  .footerLinks {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .footerInner > p {
    grid-column: auto;
  }
}

@media (max-height: 620px) and (min-width: 641px) {
  .hero {
    min-height: 500px;
  }

  .heroContent {
    padding-bottom: 34px;
  }

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

  .heroContent > p:not(.releaseMeta) {
    margin-bottom: 18px;
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
