:root {
  --bg: #08090b;
  --card: #121419;
  --card2: #181b21;
  --line: #2a2e36;
  --text: #f6f3ed;
  --dim: #aaa9a4;
  --muted: #74777f;
  --orange: #f7931a;
  --cyan: #45c9e8;
  --green: #31d587;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: Inter, system-ui, -apple-system, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  color-scheme: dark;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 0, rgba(69, 201, 232, 0.11), transparent 30%),
    radial-gradient(
      circle at 15% 10%,
      rgba(247, 147, 26, 0.1),
      transparent 27%
    ),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
}
a {
  color: inherit;
}
header,
footer,
main {
  width: min(1120px, calc(100% - 32px));
  margin: auto;
}
header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 19px;
}
.brand span {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-right: 9px;
  border: 1px solid rgba(247, 147, 26, 0.45);
  border-radius: 9px;
  background: rgba(247, 147, 26, 0.1);
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dim);
  font: 600 11px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px var(--green);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-actions > a {
  color: var(--dim);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.header-actions > a:hover,
.header-actions > a:focus-visible {
  color: var(--text);
}
main {
  padding: 76px 0;
}
.hero {
  max-width: 900px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font: 700 11px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
h1 em {
  font-style: normal;
  color: var(--cyan);
}
.lede {
  max-width: 700px;
  color: var(--dim);
  font-size: 19px;
  margin: 24px 0;
}
.disclosure {
  display: flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 10px 13px;
  border: 1px solid rgba(69, 201, 232, 0.22);
  border-radius: 10px;
  background: rgba(69, 201, 232, 0.055);
  font-size: 12px;
}
.disclosure strong {
  color: var(--cyan);
  white-space: nowrap;
}
.disclosure span {
  color: var(--dim);
}
.tor-note {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(49, 213, 135, 0.2);
  border-radius: 10px;
  color: var(--dim);
  font: 600 11px var(--mono);
}
.tor-note strong {
  color: var(--green);
  white-space: nowrap;
}
.tor-pulse {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px var(--green);
}
.tabs {
  display: flex;
  gap: 9px;
  margin: 60px 0 18px;
}
.tabs button {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 16px;
  background: var(--card);
  color: var(--dim);
  font-weight: 700;
  cursor: pointer;
}
.tabs button.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #171009;
}
.service {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(24, 27, 33, 0.97),
    rgba(15, 17, 21, 0.98)
  );
  padding: 27px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.section-head h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.04em;
}
.section-head > p {
  max-width: 420px;
  color: var(--dim);
  font-size: 14px;
}
.controls {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.controls label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font: 600 11px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.controls select {
  min-width: 250px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #0d0f12;
  color: var(--text);
  padding: 11px;
  font: 600 14px var(--sans);
}
.plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.plans.loading {
  display: block;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
}
.plan {
  display: flex;
  flex-direction: column;
  min-height: 184px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(8, 9, 11, 0.56);
  padding: 18px;
}
.plan:hover {
  border-color: #454b57;
}
.plan .kind {
  color: var(--muted);
  font: 600 10px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.plan h3 {
  margin: 12px 0 5px;
  font-size: 19px;
  letter-spacing: -0.025em;
}
.plan p {
  margin: 0;
  color: var(--dim);
  font-size: 12px;
}
.price {
  margin-top: auto;
  padding-top: 20px;
  font: 800 24px var(--mono);
}
.price small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}
.plan a {
  margin-top: 12px;
  text-decoration: none;
  text-align: center;
  border: 1px solid rgba(49, 213, 135, 0.28);
  border-radius: 8px;
  padding: 9px;
  background: rgba(49, 213, 135, 0.08);
  font-size: 12px;
  font-weight: 750;
}
.plan a:hover {
  border-color: var(--green);
  color: #9df0c5;
}
.error {
  color: #ff8f8f;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 12px;
}
footer strong,
footer span {
  display: block;
}
footer strong {
  color: var(--text);
  margin-bottom: 4px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}
footer a {
  color: var(--green);
  text-decoration: none;
}
@media (max-width: 850px) {
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-head > p {
    margin: 0;
  }
}
@media (max-width: 520px) {
  main {
    padding-top: 50px;
  }
  .disclosure,
  .tor-note {
    align-items: flex-start;
    flex-direction: column;
  }
  .header-actions > a {
    display: none;
  }
  footer {
    flex-direction: column;
  }
  footer nav {
    justify-content: flex-start;
  }
  .plans {
    grid-template-columns: 1fr;
  }
  .controls select {
    width: 100%;
    min-width: 0;
  }
  .controls label {
    width: 100%;
  }
  .service {
    padding: 18px;
  }
  .tabs button {
    flex: 1;
  }
  .section-head h2 {
    font-size: 28px;
  }
}
