:root {
  color-scheme: light;
  font-family: "Segoe UI", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
  color: #10203a;
}

.page-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #2b7cff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1;
}

.subtitle {
  margin: 14px 0 0;
  color: #5b6b84;
  font-size: 15px;
  line-height: 1.6;
}

.card {
  margin-top: 24px;
  border: 1px solid rgba(16, 32, 58, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(16, 32, 58, 0.08);
  padding: 20px;
}

.card + .card {
  margin-top: 16px;
}

.status {
  margin: 0;
  color: #5b6b84;
  font-size: 14px;
  line-height: 1.6;
}

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

.feature-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.price-card {
  display: grid;
  gap: 18px;
}

.price {
  margin: 10px 0;
  color: #10203a;
  font-size: clamp(34px, 7vw, 54px);
  font-weight: 800;
  line-height: 0.95;
}

.price span {
  color: #5b6b84;
  font-size: 18px;
  font-weight: 700;
}

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

button,
input {
  font: inherit;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  padding: 12px 16px;
  text-decoration: none;
}

.button {
  border: 0;
  background: #2b7cff;
  color: #ffffff;
}

.button:hover {
  background: #1f66db;
}

.button-secondary {
  border: 1px solid rgba(16, 32, 58, 0.1);
  background: #edf2fa;
  color: #10203a;
}

.button-secondary:hover {
  background: #e1e9f5;
}

.button[disabled],
.button-secondary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.code-box {
  margin-top: 18px;
  border-radius: 8px;
  background: #10203a;
  color: #ffffff;
  padding: 18px;
  font-size: clamp(16px, 4vw, 24px);
  font-weight: 800;
  letter-spacing: 0.04em;
  word-break: break-word;
}

.small {
  color: #5b6b84;
  font-size: 12px;
  line-height: 1.5;
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.field label {
  font-size: 13px;
  font-weight: 700;
}

.field input {
  width: 100%;
  border: 1px solid rgba(16, 32, 58, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  padding: 12px 14px;
}

.hidden {
  display: none !important;
}

.error {
  color: #b42318;
}

.doc-shell {
  max-width: 840px;
}

.doc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.doc-nav a {
  border-radius: 999px;
  background: #edf2fa;
  color: #10203a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 12px;
  text-decoration: none;
}

.doc-shell h2 {
  margin: 30px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.doc-shell p,
.doc-shell li {
  font-size: 16px;
  line-height: 1.7;
}

.doc-shell ul,
.card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.card li {
  line-height: 1.65;
}

.note {
  margin-top: 18px;
  border: 1px solid rgba(16, 32, 58, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(16, 32, 58, 0.08);
  padding: 16px 18px;
}

.legal-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 32, 58, 0.1);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.legal-links a {
  color: #2b7cff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
