:root {
  --bg: #070910;
  --bg-2: #101827;
  --panel: #111720;
  --panel-2: #161f2d;
  --line: #2b3544;
  --text: #f6f8fc;
  --muted: #aeb8c8;
  --lime: #94ef00;
  --cyan: #61d8ff;
  --gold: #ffc857;
  --red: #ff6b6b;
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 10%, rgba(97, 216, 255, .14), transparent 28%),
    radial-gradient(circle at 8% 8%, rgba(148, 239, 0, .11), transparent 24%),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  color: var(--text);
  font: 16px/1.55 Arial, sans-serif;
}

a { color: inherit; }

.wrap {
  width: min(1160px, calc(100% - 36px));
  margin: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 9, 16, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 10px 30px rgba(148, 239, 0, .16);
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
  line-height: 1;
}

.nav-links {
  flex: 1;
  min-width: 0;
}

.desktop-links,
.property-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.property-menu {
  display: none;
}

.network-menu-slot {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  line-height: 1;
}

.property-menu-toggle {
  display: none;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: #d7dce6;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.property-menu-toggle:hover,
.property-menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, .1);
  color: var(--lime);
}

nav a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #d7dce6;
  font-weight: 800;
  font-size: 14px;
  min-height: 38px;
}

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

.hero {
  padding: 92px 0 58px;
}

.hero-split,
.split,
.premium-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

h1 {
  font-size: clamp(48px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -.05em;
  margin: 12px 0 20px;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin: 0 0 14px;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.18;
}

.hero p,
.lead,
.section-head p {
  color: var(--muted);
  font-size: 20px;
  max-width: 850px;
}

.muted,
.card p,
.notice,
.stack-list span,
.timeline p {
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 10px;
  border: 1px solid #3a414c;
  background: #171b23;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.primary {
  background: var(--lime);
  color: #071000;
  border-color: var(--lime);
}

.section {
  padding: 50px 0;
}

.account-hero {
  padding-bottom: 26px;
}

.account-section {
  padding-top: 18px;
}

.section-head {
  max-width: 900px;
  margin-bottom: 26px;
}

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

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

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

.network-command-center {
  --ncc-bg: rgba(7, 9, 16, .62);
  --ncc-panel: rgba(18, 21, 29, .9);
  --ncc-soft: rgba(7, 9, 16, .55);
  --ncc-text: var(--text);
  --ncc-muted: var(--muted);
  --ncc-line: var(--line);
  --ncc-accent: var(--lime);
  --ncc-accent-2: var(--cyan);
  box-sizing: border-box;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 20px;
  color: var(--ncc-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

.network-command-center *,
.network-command-center *::before,
.network-command-center *::after {
  box-sizing: border-box;
}

.network-command-center > header {
  margin-bottom: 16px;
  padding: 18px 20px;
  border: 1px solid var(--ncc-line);
  border-radius: 8px;
  background: var(--ncc-panel);
}

.network-command-center h2,
.network-command-center h3,
.network-command-center h4,
.network-command-center p {
  margin-top: 0;
}

.network-command-center h2 {
  margin-bottom: 6px;
  font-size: 1.6rem;
  letter-spacing: 0;
}

.network-command-center h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.network-command-center h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.network-command-center header p,
.network-command-section p {
  color: var(--ncc-muted);
}

.network-command-section {
  max-width: 760px;
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid var(--ncc-line);
  border-radius: 8px;
  background: var(--ncc-panel);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

.network-command-section.is-wide {
  max-width: none;
}

.network-command-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.network-command-search {
  width: min(100%, 360px);
  color: var(--ncc-text);
  font-weight: 700;
}

.network-command-search input {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--ncc-line);
  border-radius: 6px;
  padding: 10px 12px;
  background: #0c0f15;
  color: #fff;
  font: inherit;
}

.network-command-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.network-command-groups.single {
  grid-template-columns: 1fr;
}

.network-command-group {
  border: 1px solid var(--ncc-line);
  border-radius: 8px;
  padding: 14px;
  background: var(--ncc-soft);
}

.network-command-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.network-command-link {
  display: block;
  min-height: 74px;
  border: 1px solid var(--ncc-line);
  border-radius: 7px;
  padding: 10px;
  background: rgba(18, 21, 29, .95);
  color: var(--ncc-text);
  text-decoration: none;
}

.network-command-link:hover {
  border-color: var(--ncc-accent-2);
  background: rgba(97, 216, 255, .12);
  text-decoration: none;
}

.network-command-link strong,
.network-command-link span {
  display: block;
}

.network-command-link span {
  margin-top: 3px;
  color: var(--ncc-muted);
  font-size: .9rem;
  font-weight: 500;
}

.network-command-empty {
  display: none;
  margin: 12px 0 0;
  color: var(--ncc-muted);
}

.network-command-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  margin: 14px 0;
  padding: 8px 0;
  background: transparent;
}

.network-command-tab {
  border: 1px solid var(--ncc-line);
  background: var(--ncc-panel);
  color: var(--ncc-text);
  border-radius: 6px;
  padding: 9px 13px;
  font: inherit;
}

.network-command-tab.is-active {
  border-color: var(--ncc-accent);
  background: var(--ncc-accent);
  color: #071000;
}

.network-command-center .notice {
  max-width: 760px;
  padding: 10px 12px;
  border: 1px solid rgba(97, 216, 255, .55);
  border-radius: 6px;
  background: rgba(97, 216, 255, .12);
}

.network-command-center .notice.bad {
  border-color: rgba(255, 107, 107, .65);
  background: rgba(255, 107, 107, .12);
  color: var(--text);
}

.card {
  background: rgba(18, 21, 29, .86);
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 23px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .15);
}

.plan-card {
  min-height: 100%;
  background: rgba(18, 21, 29, .9);
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .15);
}

.plan-card.featured {
  border-color: rgba(148, 239, 0, .72);
  box-shadow: 0 18px 58px rgba(148, 239, 0, .13);
}

.plan-card.wide {
  grid-column: 1 / -1;
}

.plan-card h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.tier-price {
  color: var(--text) !important;
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 14px;
}

.tier-price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.plan-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: #071000;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card.wide {
  grid-column: 1 / -1;
}

.notice {
  border-left: 3px solid var(--cyan);
  background: rgba(17, 27, 39, .9);
  padding: 18px;
  margin-top: 20px;
  border-radius: 0 14px 14px 0;
}

.browser-card {
  background: linear-gradient(145deg, #080a0d, #111827);
  border: 1px solid #303946;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.browser-top {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: #050607;
  border-bottom: 1px solid #26303e;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #556170;
}

.browser-top strong {
  margin-left: auto;
  color: #c9d3df;
  font-size: 13px;
}

.button-preview {
  width: 86px;
  height: 86px;
  margin: 28px auto 22px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #071000;
  font-size: 36px;
  font-weight: 900;
  box-shadow: 0 16px 50px rgba(148, 239, 0, .2);
}

.button-preview img {
  width: 74px;
  height: 74px;
  display: block;
}

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

.preview-grid div,
.timeline article {
  background: #171a20;
  border: 1px solid #2a2e36;
  border-radius: 11px;
  padding: 13px;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
}

.timeline {
  padding: 0;
  gap: 16px;
}

.timeline article {
  text-align: left;
  padding: 22px;
}

.timeline span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
}

.premium-band {
  background: linear-gradient(135deg, rgba(17, 27, 39, .86), rgba(22, 31, 45, .86));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
}

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

.stack-list div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(7, 9, 16, .55);
}

.stack-list strong,
.stack-list span {
  display: block;
}

.form {
  max-width: 860px;
}

.form label {
  display: block;
  font-weight: 900;
  margin: 16px 0 6px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #343b46;
  border-radius: 9px;
  background: #0c0f15;
  color: #fff;
  font: inherit;
}

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

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}

.check {
  font-weight: 400 !important;
  margin: 0 !important;
}

.check input {
  width: auto;
  margin-right: 7px;
}

.code {
  white-space: pre-wrap;
  background: #06080c;
  border: 1px solid #292f38;
  border-radius: 12px;
  padding: 16px;
  color: #d9e2ee;
}

.clean-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.clean-list li + li {
  margin-top: 6px;
}

.clean-list.columns {
  columns: 2;
  column-gap: 30px;
}

.workspace-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.billing-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(18, 21, 29, .72);
}

.billing-strip h2,
.billing-strip p {
  margin: 0;
}

.billing-strip .plan-label {
  margin-bottom: 8px;
}

.workspace-bar form {
  flex: 1 1 420px;
}

.workspace-bar select {
  width: 100%;
  padding: 12px;
  border: 1px solid #343b46;
  border-radius: 9px;
  background: #0c0f15;
  color: #fff;
  font: inherit;
}

.workspace-bar-actions-only {
  justify-content: flex-end;
}

.compact-actions {
  margin-top: 0;
}

.project-view {
  display: grid;
  gap: 16px;
}

.inline-post {
  display: inline;
}

.notice.bad {
  border-left-color: var(--red);
}

.requirement-card,
.business-note {
  border: 1px solid rgba(97, 216, 255, .28);
  border-radius: 14px;
  background: rgba(97, 216, 255, .08);
}

.requirement-card {
  margin: 14px 0 4px;
  padding: 16px;
}

.requirement-card strong,
.business-note strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.requirement-card p,
.business-note p {
  margin: 0 0 8px;
}

code {
  color: var(--gold);
}

footer {
  border-top: 1px solid rgba(148, 239, 0, .2);
  margin-top: 70px;
  padding: 44px 0;
  color: #9ea7b5;
  background:
    linear-gradient(135deg, rgba(148, 239, 0, .08), transparent 32%),
    rgba(5, 7, 12, .74);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 560px;
}

.footer-mark {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(148, 239, 0, .18);
}

.footer-brand strong {
  display: block;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 10px;
}

.footer-brand p {
  margin: 0;
  max-width: 520px;
}

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

.footer-links span,
.footer-links a {
  display: block;
}

.footer-links span {
  color: var(--text);
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfd6e2;
  text-decoration: none;
  font-weight: 700;
  margin: 7px 0;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 18px;
  color: #858f9f;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .grid,
  .plan-grid,
  .summary-grid,
  .preview-grid,
  .timeline,
  .hero-split,
  .split,
  .premium-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: 64px;
    padding: 10px 0;
    position: relative;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .nav-links {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .desktop-links {
    display: none;
  }

  .property-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .property-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    padding: 12px;
    background: rgba(7, 9, 16, .98);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
    flex-direction: column;
    align-items: stretch;
  }

  .property-menu.open {
    display: flex;
  }

  .property-menu a {
    display: block;
    width: 100%;
    padding: 12px;
  }

  .workspace-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .billing-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: 42px;
  }

  .hero p,
  .lead,
  .section-head p {
    font-size: 17px;
  }

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

  .clean-list.columns {
    columns: 1;
  }

  .network-command-center {
    padding: 12px;
    width: 100%;
  }

  .network-command-center > header,
  .network-command-section {
    padding: 14px;
  }

  .network-command-intro,
  .network-command-groups,
  .network-command-links {
    grid-template-columns: 1fr;
  }

  .network-command-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-command-tab {
    width: 100%;
  }
}
