:root {
  color-scheme: light;
  --bg: #eef3ee;
  --paper: #ffffff;
  --ink: #17201b;
  --muted: #5c675f;
  --line: #d9dfd5;
  --yellow: #ffd34d;
  --yellow-dark: #d49a00;
  --green: #0f7b60;
  --green-dark: #084a39;
  --green-deep: #052f25;
  --mint: #bff4d7;
  --green-soft: #e0f1eb;
  --green-wash: #f3faf6;
  --blue: #245c9d;
  --red: #b32929;
  --shadow: 0 18px 42px rgba(20, 35, 28, 0.1);
  --shadow-soft: 0 10px 26px rgba(20, 35, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.topbar {
  align-items: center;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 5;
}

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

.brand-mark {
  align-items: center;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 8px;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.brand-logo {
  display: block;
  height: 42px;
  width: 56px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

nav a {
  color: #33443b;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

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

.language-switcher {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.language-switcher a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #33443b;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 9px;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #ffffff;
}

main {
  margin: 0 auto;
  max-width: 1180px;
  padding: 34px 24px 54px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  min-height: calc(100vh - 180px);
  padding: 28px 0 40px;
}

.hero-copy h1,
.account-strip h1 {
  font-size: clamp(42px, 7vw, 82px);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 20px;
  margin: 24px 0;
  max-width: 700px;
}

.eyebrow,
.kicker {
  color: #00684f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero-actions,
.status-pills,
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-heading {
  margin: 0 0 22px;
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.align-left {
  margin-left: 0;
}

.country-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.country-strip span {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 48px;
}

.country-strip strong {
  align-items: center;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  min-height: 36px;
}

.country-strip-wide {
  max-width: 620px;
}

.button {
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.button:hover {
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-secondary {
  background: #0e8064;
  color: #ffffff;
}

.button-ghost {
  background: var(--paper);
  color: var(--ink);
}

.route-visual {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(15, 123, 96, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(36, 92, 157, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  min-height: 420px;
  padding: 28px;
}

.hero-login-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
  padding: 28px;
}

.login-meta {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.login-meta span {
  align-items: center;
  background: var(--green-wash);
  border: 1px solid #bfdccb;
  border-radius: 8px;
  color: var(--green-dark);
  display: flex;
  font-weight: 850;
  min-height: 38px;
  padding: 8px 10px;
}

.terminal-card {
  background: var(--green-soft);
  border: 2px solid var(--ink);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 18px;
}

.terminal-card span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.terminal-card strong {
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  overflow-wrap: anywhere;
}

.terminal-card-dark {
  background: var(--ink);
  color: #ffffff;
}

.terminal-card-dark span {
  color: var(--mint);
}

.route-line {
  background: var(--green-dark);
  height: 32px;
  margin: 0 auto;
  width: 2px;
}

.route-line-dashed {
  background: repeating-linear-gradient(to bottom, var(--green-dark), var(--green-dark) 6px, transparent 6px, transparent 12px);
}

.node-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.node {
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  display: flex;
  font-weight: 900;
  height: 62px;
  justify-content: center;
}

.node-user {
  background: var(--yellow);
}

.node-entry {
  background: var(--green-soft);
}

.node-exit {
  background: #e6edf8;
}

.node-web {
  background: var(--ink);
  color: #ffffff;
}

.line {
  background: var(--ink);
  height: 24px;
  margin: 0 auto;
  width: 2px;
}

.line-double {
  background: repeating-linear-gradient(to bottom, var(--ink), var(--ink) 5px, transparent 5px, transparent 10px);
}

.workbench,
.download-layout {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-grid {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-section,
.anonym-section,
.faq-section {
  margin-top: 28px;
}

.price-card {
  align-content: start;
  display: grid;
  gap: 12px;
  min-height: 0;
}

.price-card h3 {
  font-size: 34px;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 4px 0 0;
}

.price-amount {
  align-items: flex-end;
  display: flex;
  gap: 12px;
  margin: 2px 0 6px;
}

.price-amount span {
  font-size: clamp(54px, 8vw, 96px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
}

.price-amount small {
  color: #284035;
  font-size: 15px;
  font-weight: 900;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.price-periods {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding-top: 14px;
}

.price-periods span {
  color: #24372e;
  font-weight: 850;
}

.price-card p {
  color: #24372e;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.58;
  margin: 0;
}

.card-link {
  align-self: end;
  color: var(--green-dark);
  font-weight: 900;
  margin-top: 4px;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

.card-link-light {
  color: #ffffff;
}

.price-section .workbench {
  align-items: stretch;
}

.panel.price-card-featured {
  background: var(--green-dark);
  border-color: var(--green-deep);
  color: #ffffff;
}

.panel.price-card-featured h3 {
  color: #ffffff;
}

.panel.price-card-featured p {
  color: #ffffff;
}

.panel.price-card-featured .price-amount small,
.panel.price-card-featured .price-periods span {
  color: #dff7ea;
}

.panel.price-card-featured .price-periods {
  border-top-color: rgba(223, 247, 234, 0.28);
}

.price-tag {
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-self: start;
  padding: 7px 12px;
}

.account-builder {
  margin-top: 28px;
}

.account-panel {
  padding: 28px;
}

.account-panel .panel-heading {
  margin-bottom: 20px;
}

.account-form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.account-panel fieldset {
  background: #fbfdfb;
  border-color: #cbd7cf;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.account-panel legend {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #34473d;
  padding: 4px 10px;
}

.account-panel .choice {
  margin-top: 0;
}

.account-panel .button-primary {
  width: 100%;
}

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

.plan-fieldset legend {
  grid-column: 1 / -1;
}

.billing-options {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.billing-choice {
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 118px;
  padding: 18px 14px 16px 48px;
  text-align: left;
}

.billing-choice span {
  gap: 7px;
  justify-items: start;
}

.billing-choice strong {
  font-size: 18px;
  line-height: 1.2;
}

.billing-lines {
  display: grid;
  gap: 3px;
  line-height: 1.3;
}

.billing-lines span {
  display: block;
  white-space: normal;
}

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

.payment-choice {
  min-height: 96px;
}

.panel,
.section-band,
.account-strip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.panel {
  padding: 24px;
}

.flow-panel {
  align-self: stretch;
}

.flow-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.flow-list li {
  align-items: center;
  background: var(--green-wash);
  border: 1px solid #bfdccb;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 38px 1fr;
  padding: 12px;
}

.flow-list strong {
  align-items: center;
  background: var(--green-dark);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.flow-list span {
  color: #24372e;
  font-weight: 750;
}

.panel-heading h2,
.section-copy h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 18px;
}

.stack {
  display: grid;
  gap: 18px;
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  padding: 16px;
}

legend {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  padding: 0 8px;
}

.choice {
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 0;
  margin-top: 10px;
  min-height: 88px;
  padding: 16px 16px 16px 52px;
  position: relative;
}

.choice::before {
  background: #ffffff;
  border: 1.5px solid #8d9b93;
  border-radius: 999px;
  content: "";
  height: 18px;
  left: 18px;
  position: absolute;
  top: 20px;
  width: 18px;
}

.choice:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
}

.choice:has(input:checked)::before {
  background: var(--green);
  border-color: var(--green);
  box-shadow: inset 0 0 0 4px #ffffff;
}

.choice input[type="radio"] {
  height: 1px;
  left: 18px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 20px;
  width: 1px;
}

.choice:has(input:focus-visible)::before {
  outline: 3px solid rgba(15, 123, 96, 0.22);
  outline-offset: 2px;
}

.choice span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.choice strong {
  color: #06140f;
  line-height: 1.25;
}

.choice small {
  line-height: 1.45;
}

small,
.muted,
.choice small {
  color: var(--muted);
}

.payment-grid,
.two-col {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact {
  margin-top: 0;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: #45564e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select {
  background: #ffffff;
  border: 2px solid #cfd9cf;
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  padding: 0 12px;
  width: 100%;
}

input:focus,
select:focus {
  border-color: var(--green);
  outline: 3px solid rgba(15, 123, 96, 0.18);
}

.protocol-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
}

.protocol-list div {
  align-items: baseline;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.protocol-list span {
  color: #44574e;
  font-size: 14px;
  text-align: right;
}

.section-band {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  margin-top: 22px;
  padding: 28px;
}

.anonym-grid,
.faq-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.anonym-teaser {
  align-items: center;
  background: var(--green-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #ffffff;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 28px;
  padding: 28px;
}

.anonym-teaser .kicker,
.article-hero .eyebrow {
  color: var(--mint);
}

.anonym-teaser h2 {
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0 0 12px;
}

.anonym-teaser p {
  color: #dff7ea;
  margin: 0;
  max-width: 760px;
}

.page-links {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.page-link-card {
  color: inherit;
  display: grid;
  gap: 8px;
  text-decoration: none;
}

.page-link-card span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.page-link-card strong {
  font-size: 24px;
  line-height: 1.1;
}

.article-page {
  display: grid;
  gap: 28px;
}

.article-hero {
  align-items: stretch;
  background: var(--green-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #ffffff;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  padding: 34px;
}

.article-hero h1 {
  font-size: clamp(42px, 7vw, 84px);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.article-hero .lead {
  color: #dff7ea;
}

.artist-brief-card {
  background: #0b3c30;
  border: 1px solid rgba(191, 244, 215, 0.45);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 22px;
}

.artist-brief-card span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.artist-brief-card strong {
  font-size: 24px;
  line-height: 1.1;
}

.artist-brief-card p {
  color: #dff7ea;
  margin: 0;
}

.article-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card,
.deep-explain,
.risk-note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.article-card {
  padding: 22px;
}

.article-card > span {
  align-items: center;
  background: var(--green-dark);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 44px;
}

.article-card h2 {
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 18px 0 10px;
}

.article-card p,
.deep-explain p,
.risk-note p {
  color: #405148;
  font-weight: 600;
  margin: 0;
}

.deep-explain,
.risk-note {
  padding: 28px;
}

.deep-explain h2,
.risk-note h2 {
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0 0 20px;
}

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

.explain-columns div {
  background: var(--green-wash);
  border: 1px solid #bfdccb;
  border-radius: 8px;
  padding: 18px;
}

.explain-columns h3 {
  margin: 0 0 8px;
}

.proof-card,
.faq-grid details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.proof-card span {
  align-items: center;
  background: var(--green-dark);
  border-radius: 8px;
  color: var(--mint);
  display: inline-flex;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 44px;
}

.proof-card h3 {
  font-size: 22px;
  letter-spacing: 0;
  margin: 18px 0 8px;
}

.proof-card p,
.faq-grid p {
  color: var(--muted);
  margin: 0;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-grid p {
  margin-top: 12px;
}

.faq-page .article-hero {
  background: #10221a;
}

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

.section-copy p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.facts span,
.status-pills span {
  background: var(--green-soft);
  border: 1px solid #b7dccc;
  border-radius: 999px;
  color: #0b5b47;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
}

.panel-shell {
  display: grid;
  gap: 22px;
}

.account-strip {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 24px;
}

.account-strip h1 {
  font-size: clamp(34px, 7vw, 66px);
}

.server-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.server-tile {
  background: var(--green-wash);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  min-height: 92px;
  padding: 12px;
}

.server-tile strong {
  font-size: 18px;
}

.server-tile span,
.server-tile small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.file-tree {
  background: #0f1713;
  border-radius: 8px;
  color: #dff7ea;
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  line-height: 1.8;
  list-style: none;
  margin: 0 0 16px;
  padding: 16px;
}

.wallet-panel {
  display: grid;
  gap: 16px;
}

.invoice-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.invoice-meta span {
  background: var(--green-soft);
  border: 1px solid #b7dccc;
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  padding: 7px 11px;
}

.address-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 14px;
}

.address-row div {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
}

.address-row code {
  background: #101a15;
  border-radius: 8px;
  color: #dff7ea;
  display: block;
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  overflow-wrap: anywhere;
  padding: 12px;
}

.icon-button {
  min-height: 38px;
  padding: 0 12px;
  width: fit-content;
}

.notice {
  background: #e7f6ee;
  border: 1px solid #b7dccc;
  color: var(--green-dark);
  border-radius: 8px;
  font-weight: 800;
  margin: 0 0 22px;
  padding: 14px 16px;
}

.notice-error {
  background: #fde9e9;
  border: 1px solid #efb8b8;
  color: var(--red);
}

.locked-download {
  background: #f3f7f1;
  border: 1px solid #c7d8cd;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.locked-download strong {
  color: #13271d;
  font-size: 18px;
}

.locked-download p {
  color: #304238;
  margin: 0;
}

.js-only {
  display: none;
}

.js-enabled .js-only {
  display: inline-flex;
}

div.js-enabled .js-only,
.js-enabled .live-panel,
.js-enabled .form-error {
  display: flex;
}

.live-panel {
  align-items: center;
  background: var(--green-wash);
  border: 1px solid #bfdccb;
  border-radius: 8px;
  color: #0b5b47;
  font-weight: 800;
  min-height: 46px;
  padding: 12px 14px;
}

.form-error {
  align-items: center;
  background: #fde9e9;
  border: 1px solid #efb8b8;
  border-radius: 8px;
  color: var(--red);
  font-weight: 800;
  min-height: 42px;
  padding: 10px 12px;
}

.form-error:empty {
  display: none;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 14px;
  justify-content: center;
  padding: 24px;
}

@media (max-width: 900px) {
  .topbar {
    align-items: center;
    flex-direction: row;
    gap: 14px;
    padding: 16px 20px;
  }

  nav {
    justify-content: flex-end;
    row-gap: 8px;
  }

  nav a {
    font-size: 12px;
  }

  main {
    padding: 20px 16px 42px;
  }

  .hero,
  .workbench,
  .price-grid,
  .account-form-grid,
  .download-layout,
  .section-band,
  .anonym-teaser,
  .article-hero,
  .article-grid,
  .explain-columns,
  .anonym-grid,
  .faq-grid,
  .faq-grid-page,
  .page-links,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .route-visual {
    min-height: 360px;
  }

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

  .server-grid,
  .payment-grid,
  .billing-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .plan-fieldset,
  .payment-fieldset .payment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .hero-copy h1,
  .account-strip h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 18px;
  }

  .server-grid,
  .payment-grid,
  .billing-options {
    grid-template-columns: 1fr;
  }

  .protocol-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .protocol-list span {
    text-align: left;
  }
}
