:root {
  color-scheme: dark;
  --bg-0: #03050a;
  --bg-1: #0a1020;
  --text: #d9e3f0;
  --muted: #92a2ba;
  --accent: #ff5b6a;
  --accent-2: #8ad9ff;
  --surface: rgba(9, 16, 31, 0.8);
  --border: rgba(138, 217, 255, 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background-color: #080c16;
  background-image:
    radial-gradient(ellipse 1200px 700px at 12% 8%, rgba(180, 40, 60, 0.18), transparent 55%),
    radial-gradient(ellipse 900px 600px at 88% 6%, rgba(20, 55, 120, 0.22), transparent 50%),
    radial-gradient(ellipse 600px 400px at 50% 90%, rgba(120, 20, 40, 0.08), transparent 60%),
    radial-gradient(1px 1px at 10% 15%, #c8daf0 0.5px, transparent 0.5px),
    radial-gradient(1px 1px at 22% 68%, #c8daf0 0.5px, transparent 0.5px),
    radial-gradient(1px 1px at 35% 32%, #c8daf0 0.5px, transparent 0.5px),
    radial-gradient(1px 1px at 48% 88%, #c8daf0 0.5px, transparent 0.5px),
    radial-gradient(1px 1px at 55% 12%, #c8daf0 0.5px, transparent 0.5px),
    radial-gradient(1px 1px at 68% 45%, #c8daf0 0.5px, transparent 0.5px),
    radial-gradient(1px 1px at 72% 75%, #c8daf0 0.5px, transparent 0.5px),
    radial-gradient(1px 1px at 85% 25%, #c8daf0 0.5px, transparent 0.5px),
    radial-gradient(1px 1px at 92% 58%, #c8daf0 0.5px, transparent 0.5px),
    radial-gradient(1px 1px at 5% 48%, #c8daf0 0.4px, transparent 0.4px),
    radial-gradient(1px 1px at 42% 55%, #c8daf0 0.4px, transparent 0.4px),
    radial-gradient(1px 1px at 78% 92%, #c8daf0 0.4px, transparent 0.4px),
    radial-gradient(1px 1px at 15% 90%, #c8daf0 0.3px, transparent 0.3px),
    radial-gradient(1px 1px at 60% 35%, #c8daf0 0.3px, transparent 0.3px),
    radial-gradient(1px 1px at 95% 82%, #c8daf0 0.3px, transparent 0.3px);
  background-attachment: fixed;
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #101827;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  z-index: 9;
}

.site-main {
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 4rem;
}

.hero {
  text-align: center;
  padding-top: 3.6rem;
  margin-bottom: 2.4rem;
}

.brand-logo-link {
  display: block;
  width: fit-content;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
}

.brand-logo-link:focus-visible {
  outline: 2px solid #ffc6ce;
  outline-offset: 6px;
}

.brand-logo {
  width: 96px;
  height: auto;
  display: block;
  margin: 0;
}

.brand-wordmark {
  width: min(420px, 34vw);
  height: auto;
  display: block;
  margin: 0 auto 0.55rem;
}

.brand-punchline {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff7784;
}

.brand-support {
  margin: 0.6rem 0 0;
  color: #8a99b0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.brand-subtitle {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.brand-credibility {
  margin: 0.3rem 0 0;
  color: #6b7d96;
  font-size: 0.8rem;
}

a {
  color: #ff7682;
  text-decoration: none;
}

a:hover {
  color: #ffc6ce;
}

.install-shell {
  max-width: 760px;
  margin: 1.5rem auto 1rem;
  background: linear-gradient(180deg, rgba(12, 20, 38, 0.95), rgba(7, 12, 24, 0.95));
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.post-install-heading {
  text-align: center;
  color: #6b7d96;
  font-size: 0.82rem;
  margin: 1.4rem 0 0.4rem;
  letter-spacing: 0.04em;
}

.post-install-commands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  max-width: 760px;
  margin: 0 auto;
}

.install-shell--compact {
  margin: 0;
  border-radius: 12px;
}

.install-shell--compact .shell-head {
  padding: 0.6rem 0.8rem;
}

.install-shell--compact pre {
  padding: 0.7rem 0.8rem;
  font-size: 0.9rem;
}

@media (max-width: 540px) {
  .post-install-commands {
    grid-template-columns: 1fr;
  }
}

.shell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(138, 217, 255, 0.2);
}

.shell-dots {
  display: inline-flex;
  gap: 0.35rem;
}

.shell-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2f425f;
}

.shell-dots span:nth-child(1) {
  background: #ff5f57;
}

.shell-dots span:nth-child(2) {
  background: #febc2e;
}

.shell-dots span:nth-child(3) {
  background: #28c840;
}

.copy-btn {
  appearance: none;
  border: 1px solid rgba(138, 217, 255, 0.4);
  background: rgba(16, 29, 53, 0.85);
  color: var(--text);
  border-radius: 9px;
  padding: 0.42rem 0.72rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.copy-btn:hover,
.copy-btn:focus-visible {
  border-color: #ffc9cf;
  box-shadow: 0 0 20px rgba(255, 91, 106, 0.28);
  outline: none;
}

.install-shell pre {
  margin: 0;
  padding: 1rem;
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.supporting-line,
.page-note {
  text-align: center;
  color: #a9bbd1;
  margin: 0.9rem auto;
  max-width: 720px;
}

.quick-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin: 1.35rem auto;
}

.flow-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(138, 217, 255, 0.26);
  border-radius: 8px;
  padding: 0.62rem 0.82rem;
  background: rgba(9, 16, 31, 0.74);
  color: #d8e8fa;
  font-size: 0.88rem;
  font-weight: 700;
}

.flow-link:hover,
.flow-link:focus-visible {
  border-color: rgba(255, 198, 206, 0.7);
  box-shadow: 0 0 22px rgba(255, 91, 106, 0.2);
  color: #ffffff;
  outline: none;
}

.flow-link--primary {
  background: linear-gradient(90deg, rgba(255, 91, 106, 0.26), rgba(138, 217, 255, 0.16));
  border-color: rgba(255, 198, 206, 0.58);
}

.visitor-counter {
  margin: 1.2rem auto 1.7rem;
  border: 1px solid rgba(138, 217, 255, 0.28);
  border-radius: 10px;
  background: #050812;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 18px 44px rgba(0, 0, 0, 0.36);
  padding: 0.95rem;
  text-align: center;
}

.counter-kicker {
  margin: 0 0 0.55rem;
  color: #8ad9ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.counter-display {
  display: inline-block;
  min-width: 11ch;
  border: 1px solid rgba(255, 198, 206, 0.5);
  border-radius: 6px;
  background: #020409;
  color: #ffefe8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  padding: 0.48rem 0.7rem;
  text-shadow: 0 0 14px rgba(255, 91, 106, 0.45);
}

.counter-caption {
  margin: 0.55rem 0 0.85rem;
  color: #8ea2bf;
  font-size: 0.78rem;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.counter-mini {
  border: 1px solid rgba(138, 217, 255, 0.16);
  border-radius: 6px;
  background: rgba(12, 20, 38, 0.72);
  padding: 0.48rem;
}

.counter-mini-value {
  display: block;
  color: #fff4f6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.1;
}

.counter-mini-label {
  display: block;
  margin-top: 0.24rem;
  color: #8ea2bf;
  font-size: 0.68rem;
}

.pricing-section {
  margin: 2rem auto 1.6rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.pricing-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(138, 217, 255, 0.24);
  border-radius: 16px;
  background: rgba(8, 15, 29, 0.86);
  padding: 1rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.pricing-card--featured {
  border-color: rgba(255, 198, 206, 0.58);
  background: linear-gradient(180deg, rgba(30, 17, 29, 0.94), rgba(8, 15, 29, 0.92));
}

.tier-kicker {
  margin: 0 0 0.35rem;
  color: #8ad9ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  font-size: 1rem;
}

.tier-price {
  margin: 0.55rem 0;
  color: #fff4f6;
  font-size: 1.15rem;
  font-weight: 700;
}

.tier-summary {
  margin: 0 0 0.8rem;
  color: #a9bbd1;
  font-size: 0.88rem;
  line-height: 1.5;
}

.pricing-card ul {
  margin: 0;
  padding-left: 1rem;
  color: #c4d3e4;
  font-size: 0.84rem;
  line-height: 1.55;
}

.pricing-card li {
  margin: 0.24rem 0;
}

.tier-action {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  border: 1px solid rgba(255, 198, 206, 0.48);
  border-radius: 999px;
  padding: 0.58rem 0.78rem;
  background: rgba(255, 91, 106, 0.12);
  color: #ffe9ed;
  font-size: 0.82rem;
  font-weight: 700;
}

.tier-action:hover,
.tier-action:focus-visible {
  border-color: #ffc6ce;
  box-shadow: 0 0 22px rgba(255, 91, 106, 0.24);
  color: #ffffff;
  outline: none;
}

.explain-section {
  width: min(760px, 100%);
  margin: 1.3rem auto 0;
}

.explain-section--compact {
  width: min(680px, 100%);
  margin-top: 1rem;
  border-top: 1px solid rgba(138, 217, 255, 0.16);
  padding-top: 1rem;
}

.section-heading {
  margin: 0.2rem 0 0.55rem;
  text-align: center;
  font-size: 1.12rem;
  font-weight: 600;
  color: #d6e2f1;
}

.explain-section p {
  margin: 0.55rem auto;
  max-width: 760px;
  color: #acbdd4;
  line-height: 1.6;
}

.page-link-line {
  text-align: center;
  margin-top: 1.2rem;
  color: #a9bbd1;
}

.page-link-line a {
  margin-left: 0.35rem;
}

.bullet-list {
  width: min(540px, 100%);
  margin: 1.25rem auto;
  padding-left: 1.2rem;
  color: #c4d3e4;
}

.bullet-list li {
  margin: 0.35rem 0;
}

.command-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}

.command-list code {
  display: block;
  border: 1px solid rgba(138, 217, 255, 0.2);
  border-radius: 8px;
  background: rgba(3, 5, 10, 0.72);
  color: #f7fbff;
  padding: 0.72rem 0.78rem;
  overflow-x: auto;
}

.service-panel {
  max-width: 720px;
  margin: 1.4rem auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
}

.request-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.request-form label {
  display: grid;
  gap: 0.35rem;
  color: #c4d3e4;
}

.request-form input,
.request-form textarea {
  background: #0c162a;
  color: #e1e9f5;
  border: 1px solid rgba(138, 217, 255, 0.24);
  border-radius: 10px;
  padding: 0.66rem 0.75rem;
}

.request-form button {
  margin-top: 0.25rem;
  width: fit-content;
  appearance: none;
  border: 1px solid rgba(255, 198, 206, 0.55);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: linear-gradient(90deg, rgba(255, 91, 106, 0.2), rgba(138, 217, 255, 0.2));
  color: #f4f8ff;
  cursor: pointer;
}

.request-form button:hover,
.request-form button:focus-visible {
  box-shadow: 0 0 22px rgba(255, 91, 106, 0.28);
  outline: none;
}

.form-status {
  margin-top: 0.65rem;
  color: #c9f4cc;
}

.site-footer {
  text-align: center;
  border-top: 1px solid rgba(138, 217, 255, 0.16);
  margin-top: 2.5rem;
  padding: 1.2rem 0 2rem;
}

.footer-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  color: #8ea2bf;
}

.footer-nav a[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}

@media (max-width: 640px) {
  .site-main {
    width: calc(100% - 1.2rem);
    padding-bottom: 3rem;
  }

  .hero {
    padding-top: 1.6rem;
    margin-bottom: 1.4rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .brand-logo-link {
    width: 68px;
    margin-bottom: 1rem;
  }

  .brand-logo {
    width: 68px;
  }

  .brand-wordmark {
    width: min(280px, 64vw);
  }

  .brand-punchline {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
  }

  .brand-support {
    font-size: 0.86rem;
  }

  .service-panel {
    padding: 1rem;
  }

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

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

  .counter-display {
    font-size: 1.7rem;
  }

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

  .flow-link {
    justify-content: center;
  }

  .command-list {
    grid-template-columns: 1fr;
  }
}
