:root {
  --home-bg: #080b10;
  --home-panel: #10161e;
  --home-panel-strong: #141c25;
  --home-line: rgba(139, 158, 183, 0.24);
  --home-line-strong: rgba(139, 178, 201, 0.44);
  --home-text: #f0f4f6;
  --home-muted: #8c99a8;
  --home-dim: #5d6976;
  --home-cyan: #58dce5;
  --home-lime: #a7df78;
  --home-coral: #ff806f;
}

.home-body {
  min-height: 100vh;
  color: var(--home-text);
  background: var(--home-bg);
}

.home-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 32px), 1240px);
  min-height: 62px;
  margin: 12px auto 0;
  padding: 9px 10px 9px 14px;
  background: rgba(10, 14, 20, 0.9);
  border: 1px solid var(--home-line);
  border-radius: 7px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease;
}

.home-header.is-scrolled {
  background: rgba(7, 10, 15, 0.97);
  border-color: rgba(139, 178, 201, 0.34);
}

.home-brand {
  display: flex;
  flex: none;
  align-items: center;
  gap: 10px;
  min-width: 176px;
}

.home-brand img {
  width: 38px;
  height: 38px;
  padding: 5px;
  object-fit: contain;
  background: #101a1f;
  border: 1px solid rgba(88, 220, 229, 0.48);
  border-radius: 6px;
}

.home-brand strong,
.home-brand small {
  display: block;
}

.home-brand strong {
  font-size: 16px;
}

.home-brand small {
  margin-top: 2px;
  color: var(--home-dim);
  font: 8px/1.3 Consolas, monospace;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: auto;
}

.home-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  color: #a9b4bf;
  font-size: 10px;
  font-weight: 800;
  border-radius: 5px;
  transition: color 160ms ease, background 160ms ease;
}

.home-nav a:hover {
  color: var(--home-text);
  background: rgba(139, 158, 183, 0.1);
}

.home-actions {
  display: flex;
  flex: none;
  gap: 6px;
}

.home-actions a,
.hero-buttons a,
.access-commands-new a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  font-size: 10px;
  font-weight: 900;
  border: 1px solid var(--home-line);
  border-radius: 5px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.home-actions a:hover,
.hero-buttons a:hover,
.access-commands-new a:hover {
  transform: translateY(-1px);
}

.home-purchase,
.hero-secondary {
  color: #ced6dd;
  background: #151b23;
}

.home-purchase:hover,
.hero-secondary:hover {
  color: var(--home-coral);
  border-color: rgba(255, 128, 111, 0.52);
}

.home-account,
.hero-primary,
.access-commands-new .is-primary {
  color: #071012;
  background: var(--home-cyan);
  border-color: var(--home-cyan);
}

.home-account:hover,
.hero-primary:hover,
.access-commands-new .is-primary:hover {
  color: #071012;
  background: #8ce9ee;
  border-color: #8ce9ee;
}

.home-menu-toggle {
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  background: #151b23;
  border: 1px solid var(--home-line);
  border-radius: 5px;
}

.home-menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  background: #dce3e8;
  transition: transform 180ms ease;
}

.home-menu-toggle span + span {
  margin-top: -11px;
}

.home-menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.home-menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.home-body main,
.home-footer {
  position: relative;
  z-index: 2;
}

.home-hero {
  position: relative;
  isolation: isolate;
  width: min(calc(100% - 20px), 1400px);
  height: min(740px, calc(100svh - 112px));
  min-height: 590px;
  margin: 10px auto 0;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 7px;
  background: #0b1016;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(1.05);
  animation: hero-image-enter 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.97) 0, rgba(5, 8, 12, 0.88) 34%, rgba(5, 8, 12, 0.44) 66%, rgba(5, 8, 12, 0.14)),
    linear-gradient(180deg, rgba(5, 8, 12, 0.2), transparent 50%, rgba(5, 8, 12, 0.76));
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 760px);
  height: 100%;
  padding: 48px 7%;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--home-cyan);
  font: 9px/1.4 Consolas, monospace;
}

.hero-kicker i {
  width: 23px;
  height: 1px;
  background: var(--home-cyan);
  box-shadow: 0 0 8px rgba(88, 220, 229, 0.66);
}

.home-hero h1 {
  margin-top: 18px;
  font-size: 72px;
  line-height: 0.95;
}

.hero-statement {
  max-width: 650px;
  margin-top: 22px;
  color: #e5ecef;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-copy {
  max-width: 590px;
  margin-top: 12px;
  color: #9aa7b3;
  font-size: 13px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 26px;
}

.hero-buttons a {
  min-height: 45px;
  padding: 0 16px;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(151, 171, 192, 0.25);
  border-bottom: 1px solid rgba(151, 171, 192, 0.25);
}

.hero-status > div {
  min-width: 128px;
  padding: 12px 20px 12px 0;
}

.hero-status > div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(151, 171, 192, 0.25);
}

.hero-status dt {
  color: var(--home-dim);
  font-size: 9px;
}

.hero-status dd {
  margin-top: 5px;
  color: var(--home-lime);
  font: 10px/1.3 Consolas, monospace;
}

.hero-frame-label {
  position: absolute;
  right: 18px;
  bottom: 15px;
  display: flex;
  gap: 17px;
  color: rgba(209, 221, 228, 0.55);
  font: 8px/1 Consolas, monospace;
}

[data-hero-item] {
  animation: hero-copy-enter 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-hero-item]:nth-child(2) { animation-delay: 70ms; }
[data-hero-item]:nth-child(3) { animation-delay: 120ms; }
[data-hero-item]:nth-child(4) { animation-delay: 170ms; }
[data-hero-item]:nth-child(5) { animation-delay: 220ms; }
[data-hero-item]:nth-child(6) { animation-delay: 270ms; }

.home-signal {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 32px), 1240px);
  margin: 10px auto 0;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-signal > div {
  min-width: 0;
  padding: 15px 17px;
}

.home-signal > div + div {
  border-left: 1px solid var(--home-line);
}

.home-signal small,
.home-signal strong {
  display: block;
}

.home-signal small {
  color: var(--home-dim);
  font: 8px/1.3 Consolas, monospace;
}

.home-signal strong {
  margin-top: 4px;
  font-size: 11px;
}

.home-section {
  position: relative;
  padding: 84px 0;
  scroll-margin-top: 84px;
}

.home-section + .home-section {
  border-top: 1px solid rgba(139, 158, 183, 0.1);
}

.home-section-inner {
  width: min(calc(100% - 32px), 1240px);
  margin: 0 auto;
}

.home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--home-line);
}

.home-section-heading p,
.interface-copy > p,
.access-copy-new > p {
  color: var(--home-cyan);
  font: 9px/1.4 Consolas, monospace;
}

.home-section-heading h2,
.access-copy-new h2 {
  margin-top: 7px;
  font-size: 34px;
  line-height: 1.1;
}

.home-section-heading > span {
  max-width: 380px;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.6;
  text-align: right;
}

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

.capability-item {
  min-height: 272px;
  padding: 18px;
  background: rgba(15, 21, 29, 0.9);
  border: 1px solid var(--home-line);
  border-radius: 6px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.capability-item:hover {
  border-color: var(--home-line-strong);
  transform: translateY(-3px);
}

.capability-item > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  color: var(--home-dim);
  font: 8px/1 Consolas, monospace;
}

.capability-item > div i {
  height: 1px;
  background: rgba(139, 158, 183, 0.25);
}

.capability-item h3 {
  margin-top: 42px;
  font-size: 20px;
}

.capability-item p {
  margin-top: 12px;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.75;
}

.capability-item > span {
  display: block;
  margin-top: 32px;
  color: var(--home-cyan);
  font: 8px/1.5 Consolas, monospace;
}

.interface-section {
  background: rgba(8, 12, 17, 0.62);
}

.interface-workbench {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr) 245px;
  min-height: 500px;
  overflow: hidden;
  background: rgba(12, 17, 24, 0.96);
  border: 1px solid var(--home-line);
  border-radius: 7px;
}

.interface-tabs {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 14px;
  border-right: 1px solid var(--home-line);
}

.interface-tabs button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 10px;
  color: var(--home-muted);
  font-size: 10px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
}

.interface-tabs button small {
  color: var(--home-dim);
  font: 8px/1 Consolas, monospace;
}

.interface-tabs button:hover {
  color: var(--home-text);
  border-color: var(--home-line);
}

.interface-tabs button.is-active {
  color: #071012;
  background: var(--home-cyan);
  border-color: var(--home-cyan);
}

.interface-tabs button.is-active small {
  color: rgba(7, 16, 18, 0.58);
}

.interface-stage {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #05080c;
  border-right: 1px solid var(--home-line);
}

.interface-stage img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: opacity 160ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.interface-stage:hover img {
  transform: scale(1.015);
}

.interface-stage.is-switching img {
  opacity: 0.25;
}

.interface-stage > small {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  color: #c8d3da;
  font: 8px/1 Consolas, monospace;
  background: rgba(5, 8, 12, 0.8);
  border: 1px solid rgba(139, 158, 183, 0.3);
  border-radius: 4px;
}

.stage-corners::before,
.stage-corners::after {
  position: absolute;
  top: 14px;
  width: 18px;
  height: 18px;
  content: "";
  border-top: 1px solid var(--home-cyan);
}

.stage-corners::before {
  left: 14px;
  border-left: 1px solid var(--home-cyan);
}

.stage-corners::after {
  right: 14px;
  border-right: 1px solid var(--home-cyan);
}

.interface-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.interface-copy h3 {
  margin-top: 9px;
  font-size: 24px;
}

.interface-copy > span {
  margin-top: 12px;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.75;
}

.gallery-variant-controls {
  display: grid;
  grid-template-columns: 38px minmax(58px, auto) 38px;
  gap: 6px;
  align-items: center;
  width: max-content;
  margin-top: 18px;
}

.gallery-variant-controls[hidden] {
  display: none;
}

.gallery-variant-controls button {
  display: grid;
  width: 38px;
  height: 34px;
  padding: 0;
  place-items: center;
  color: var(--home-text);
  font-size: 17px;
  cursor: pointer;
  background: #151b23;
  border: 1px solid var(--home-line);
  border-radius: 5px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.gallery-variant-controls button:hover {
  color: #071012;
  background: var(--home-cyan);
  border-color: var(--home-cyan);
  transform: translateY(-1px);
}

.gallery-variant-controls span {
  color: var(--home-muted);
  font: 9px/1 Consolas, monospace;
  text-align: center;
}

.interface-copy dl {
  margin-top: 26px;
  border-top: 1px solid var(--home-line);
}

.interface-copy dl > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--home-line);
}

.interface-copy dt {
  color: var(--home-dim);
  font-size: 9px;
}

.interface-copy dd {
  color: var(--home-lime);
  font: 9px/1.3 Consolas, monospace;
}

.install-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: install;
}

.install-flow li {
  position: relative;
  min-height: 190px;
  padding: 24px 24px 20px 0;
  border-top: 1px solid var(--home-line-strong);
}

.install-flow li + li {
  padding-left: 24px;
  border-left: 1px solid var(--home-line);
}

.install-flow li::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 10px rgba(88, 220, 229, 0.62);
}

.install-flow li + li::before {
  left: 24px;
}

.install-flow small {
  color: var(--home-cyan);
  font: 8px/1.3 Consolas, monospace;
}

.install-flow strong {
  display: block;
  margin-top: 22px;
  font-size: 17px;
}

.install-flow p {
  margin-top: 10px;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.7;
}

.access-section-new {
  color: #091113;
  background: var(--home-cyan);
}

.access-layout-new {
  display: grid;
  grid-template-columns: 1fr minmax(400px, 0.8fr);
  gap: 70px;
  align-items: center;
}

.access-copy-new > p {
  color: rgba(7, 16, 18, 0.6);
}

.access-copy-new h2 {
  font-size: 44px;
}

.access-copy-new > span {
  display: block;
  max-width: 570px;
  margin-top: 14px;
  color: rgba(7, 16, 18, 0.68);
  font-size: 12px;
  line-height: 1.7;
}

.access-console {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1px;
  overflow: hidden;
  background: rgba(7, 16, 18, 0.28);
  border: 1px solid rgba(7, 16, 18, 0.3);
  border-radius: 6px;
}

.access-version,
.access-commands-new {
  padding: 18px;
  background: rgba(236, 252, 252, 0.88);
}

.access-version small,
.access-version strong,
.access-version span {
  display: block;
}

.access-version small {
  color: rgba(7, 16, 18, 0.55);
  font: 8px/1.3 Consolas, monospace;
}

.access-version strong {
  margin-top: 6px;
  font-size: 30px;
}

.access-version span {
  margin-top: 5px;
  color: rgba(7, 16, 18, 0.58);
  font: 8px/1.3 Consolas, monospace;
}

.access-commands-new {
  display: grid;
  gap: 7px;
}

.access-commands-new a {
  justify-content: space-between;
  color: #1a2528;
  background: transparent;
  border-color: rgba(7, 16, 18, 0.24);
}

.access-commands-new .is-primary {
  color: #f1f5f6;
  background: #10171d;
  border-color: #10171d;
}

.pricing-catalog {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.price-plan {
  min-height: 168px;
  padding: 17px;
  color: #111b1e;
  background: rgba(236, 252, 252, 0.9);
  border: 1px solid rgba(7, 16, 18, 0.28);
  border-radius: 6px;
}

.price-plan small {
  display: block;
  color: rgba(7, 16, 18, 0.55);
  font: 8px/1.3 Consolas, monospace;
}

.price-plan h3 {
  margin-top: 18px;
  font-size: 14px;
}

.price-plan strong {
  display: block;
  min-height: 43px;
  margin-top: 7px;
  font-size: 34px;
  line-height: 1.15;
}

.price-plan strong span {
  margin-right: 3px;
  color: rgba(7, 16, 18, 0.55);
  font-size: 16px;
}

.price-plan p {
  margin-top: 9px;
  color: rgba(7, 16, 18, 0.62);
  font-size: 9px;
}

.price-plan-pending {
  color: #eef3f4;
  background: #10171d;
  border-color: #10171d;
}

.price-plan-pending small,
.price-plan-pending p {
  color: rgba(238, 243, 244, 0.58);
}

.price-plan-pending strong {
  display: flex;
  align-items: center;
  font-size: 19px;
}

.price-plan-pending p {
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-plan-pending p i {
  width: 6px;
  height: 6px;
  background: var(--home-coral);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 128, 111, 0.56);
}

.faq-list {
  border-top: 1px solid var(--home-line);
}

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  color: #dce4e8;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary b {
  color: var(--home-cyan);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  padding: 0 0 20px;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.75;
}

.home-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), 1240px);
  min-height: 92px;
  margin: 0 auto;
  color: var(--home-dim);
  border-top: 1px solid var(--home-line);
}

.home-footer > a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--home-text);
}

.home-footer img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.home-footer span,
.home-footer small {
  font: 8px/1.3 Consolas, monospace;
}

.gallery-dialog {
  width: min(calc(100% - 30px), 1180px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  color: var(--home-text);
  background: #080c11;
  border: 1px solid var(--home-line-strong);
  border-radius: 7px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

.gallery-dialog::backdrop {
  background: rgba(2, 4, 7, 0.86);
  backdrop-filter: blur(10px);
}

.gallery-dialog > button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #d9e2e6;
  font-size: 22px;
  cursor: pointer;
  background: rgba(7, 11, 16, 0.84);
  border: 1px solid var(--home-line-strong);
  border-radius: 5px;
}

.gallery-dialog img {
  width: 100%;
  max-height: calc(92vh - 46px);
  object-fit: contain;
  background: #030508;
}

.gallery-dialog p {
  min-height: 46px;
  padding: 14px 16px;
  color: var(--home-muted);
  font: 9px/1.3 Consolas, monospace;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1), transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-image-enter {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-copy-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1050px) {
  .home-nav a {
    padding: 0 7px;
  }

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

  .capability-item {
    min-height: 230px;
  }

  .interface-workbench {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .interface-copy {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 170px 1fr 240px;
    gap: 18px;
    align-items: center;
    border-top: 1px solid var(--home-line);
  }

  .interface-copy h3,
  .interface-copy > span,
  .interface-copy dl {
    margin-top: 0;
  }

  .access-layout-new {
    gap: 35px;
  }
}

@media (max-width: 820px) {
  .home-header {
    flex-wrap: wrap;
    width: min(calc(100% - 20px), 680px);
    margin-top: 10px;
  }

  .home-brand {
    min-width: 0;
    margin-right: auto;
  }

  .home-menu-toggle {
    display: grid;
  }

  .home-nav {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    background: rgba(10, 14, 20, 0.98);
    border: 1px solid var(--home-line);
    border-radius: 6px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    transform: translateY(-5px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .home-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .home-nav a {
    justify-content: center;
    min-height: 42px;
    border: 1px solid var(--home-line);
  }

  .home-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .home-hero {
    width: calc(100% - 12px);
    height: auto;
    min-height: 620px;
    margin-top: 8px;
  }

  .hero-content {
    padding: 50px 28px;
  }

  .home-hero h1 {
    font-size: 54px;
  }

  .hero-statement {
    font-size: 19px;
  }

  .home-signal {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 20px);
  }

  .home-signal > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--home-line);
  }

  .home-signal > div:nth-child(4) {
    border-top: 1px solid var(--home-line);
  }

  .home-section {
    padding: 64px 0;
  }

  .home-section-heading {
    display: block;
  }

  .home-section-heading > span {
    display: block;
    margin-top: 12px;
    text-align: left;
  }

  .interface-workbench {
    grid-template-columns: 1fr;
  }

  .interface-tabs {
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .interface-tabs button {
    justify-content: center;
    padding: 0 6px;
  }

  .interface-stage {
    min-height: 400px;
    border-right: 0;
  }

  .interface-copy {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .interface-copy h3,
  .interface-copy > span,
  .interface-copy dl {
    margin-top: 10px;
  }

  .install-flow {
    grid-template-columns: 1fr 1fr;
  }

  .install-flow li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .install-flow li:nth-child(3)::before {
    left: 0;
  }

  .access-layout-new {
    grid-template-columns: 1fr;
  }

  .pricing-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .home-hero {
    min-height: 610px;
  }

  .hero-background {
    object-position: 63% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 8, 12, 0.96), rgba(5, 8, 12, 0.74));
  }

  .hero-content {
    padding: 42px 20px;
  }

  .home-hero h1 {
    font-size: 46px;
    line-height: 1;
  }

  .hero-statement {
    font-size: 17px;
  }

  .hero-buttons {
    display: grid;
  }

  .hero-status > div {
    min-width: 0;
    flex: 1 1 33%;
    padding-right: 9px;
  }

  .hero-status > div + div {
    padding-left: 9px;
  }

  .hero-frame-label {
    display: none;
  }

  .home-section-inner {
    width: calc(100% - 20px);
  }

  .home-section-heading h2,
  .access-copy-new h2 {
    font-size: 30px;
  }

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

  .capability-item {
    min-height: 215px;
  }

  .interface-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .interface-stage {
    min-height: 270px;
  }

  .interface-stage img {
    object-fit: contain;
  }

  .install-flow {
    grid-template-columns: 1fr;
  }

  .install-flow li,
  .install-flow li + li,
  .install-flow li:nth-child(3) {
    min-height: 150px;
    padding: 22px 0 18px 24px;
    border-top: 0;
    border-left: 1px solid var(--home-line);
  }

  .install-flow li::before,
  .install-flow li + li::before,
  .install-flow li:nth-child(3)::before {
    top: 26px;
    left: -5px;
  }

  .install-flow strong {
    margin-top: 12px;
  }

  .access-console {
    grid-template-columns: 1fr;
  }

  .price-plan {
    min-height: 150px;
    padding: 14px;
  }

  .home-footer {
    flex-direction: column;
    justify-content: center;
    min-height: 130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-background,
  [data-hero-item],
  [data-reveal] {
    animation: none;
    transition: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .home-header,
  .home-nav,
  .home-menu-toggle span,
  .home-actions a,
  .hero-buttons a,
  .capability-item,
  .interface-stage img,
  .faq-list summary b {
    transition: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  html.has-corner-cursor,
  html.has-corner-cursor * {
    
  }

  .corner-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2147483647;
    width: var(--corner-width, 26px);
    height: var(--corner-height, 26px);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(
      var(--corner-x, -60px),
      var(--corner-y, -60px),
      0
    );
    transition:
      transform 70ms linear,
      width 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
      height 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 120ms ease;
    will-change: transform, width, height;
  }

  .corner-cursor.is-visible {
    opacity: 1;
  }

  .corner-cursor i {
    position: absolute;
    width: 9px;
    height: 9px;
    color: #8ce9ee;
    filter:
      drop-shadow(0 0 1px rgba(2, 8, 12, 0.95))
      drop-shadow(0 0 5px rgba(99, 234, 238, 0.72));
    transition:
      width 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
      height 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
      color 160ms ease;
  }

  .corner-cursor i:nth-child(1) {
    top: 0;
    left: 0;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
  }

  .corner-cursor i:nth-child(2) {
    top: 0;
    right: 0;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
  }

  .corner-cursor i:nth-child(3) {
    right: 0;
    bottom: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }

  .corner-cursor i:nth-child(4) {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
  }

  .corner-cursor.is-locked i {
    width: 12px;
    height: 12px;
    color: #f0feff;
  }
}

.hero-statement-accent {
  color: #8ce9ee;
  text-shadow: 0 0 18px rgba(99, 234, 238, 0.28);
}

@media (hover: hover) and (pointer: fine) {
  .corner-cursor::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #8ce9ee;
    box-shadow:
      0 0 0 1px rgba(2, 8, 12, 0.86),
      0 0 7px rgba(99, 234, 238, 0.82);
    content: "";
    transform: translate(-50%, -50%);
  }
}

.home-hero {
  animation: hero-perspective-arrive 2200ms cubic-bezier(0.16, 0.76, 0.18, 1) both;
  backface-visibility: hidden;
  transform-origin: 100% 100%;
}

.home-hero h1[data-hero-item] {
  opacity: 0;
  animation: hero-title-signal 900ms linear 2300ms both;
}

.hero-statement[data-hero-item] {
  animation: none;
}

.hero-statement.is-typewriter .hero-type-char {
  display: inline-block;
  opacity: 0;
  white-space: pre;
  transform: translateY(0.18em);
  transition:
    opacity 35ms steps(1, end),
    transform 90ms ease;
}

.hero-statement.is-typewriter .hero-type-char.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-perspective-arrive {
  0% {
    opacity: 0.04;
    filter: blur(7px) brightness(0.52) saturate(0.64);
    transform:
      perspective(1400px)
      translate3d(18%, 16%, -520px)
      rotateX(13deg)
      rotateY(-16deg)
      rotateZ(1deg)
      scale(0.9);
  }

  58% {
    opacity: 1;
    filter: blur(1px) brightness(0.9) saturate(0.9);
    transform:
      perspective(1400px)
      translate3d(1.5%, 1.2%, -40px)
      rotateX(2.4deg)
      rotateY(-3deg)
      rotateZ(0.2deg)
      scale(0.985);
  }

  78% {
    filter: blur(0) brightness(1) saturate(1);
    transform:
      perspective(1400px)
      translate3d(-1.1%, -0.7%, 18px)
      rotateX(-0.8deg)
      rotateY(1.1deg)
      rotateZ(-0.1deg)
      scale(1.004);
  }

  100% {
    opacity: 1;
    filter: none;
    transform:
      perspective(1400px)
      translate3d(0, 0, 0)
      rotateX(0)
      rotateY(0)
      rotateZ(0)
      scale(1);
  }
}

@keyframes hero-title-signal {
  0% {
    opacity: 0;
    filter: blur(4px) brightness(1.8);
    transform: translateX(-4px);
    text-shadow: none;
  }

  9% {
    opacity: 1;
    filter: blur(0) brightness(1.45);
    transform: translateX(2px);
    text-shadow: 0 0 24px rgba(140, 233, 238, 0.72);
  }

  17% {
    opacity: 0.18;
  }

  28% {
    opacity: 1;
    transform: translateX(-1px);
  }

  37% {
    opacity: 0.32;
    filter: brightness(1.7);
  }

  49% {
    opacity: 1;
    transform: translateX(1px);
  }

  58% {
    opacity: 0.5;
  }

  72%,
  100% {
    opacity: 1;
    filter: none;
    transform: translateX(0);
    text-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero,
  .home-hero h1[data-hero-item],
  .hero-statement[data-hero-item] {
    opacity: 1;
    animation: none;
    filter: none;
    transform: none;
  }

  .hero-statement .hero-type-char {
    opacity: 1;
    transition: none;
    transform: none;
  }
}


.corner-cursor.is-locked::after {
  opacity: 0;
}
