:root {
  --bg: #0b1320;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --brand: #17477d;
  --brandHover: #123860;
  --border: rgba(2, 6, 23, 0.12);
  --shadow: 0 18px 60px rgba(2, 6, 23, 0.25);
  --soft: #f8fafc;
  --accent: var(--brand);
  --accent-soft: rgba(23, 71, 125, 0.14);
  --orange: #f59e0b;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: transparent;
  padding: 20px;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(23, 71, 125, 0.55), transparent 60%),
    radial-gradient(900px 600px at 85% 30%, rgba(14, 165, 233, 0.25), transparent 55%),
    linear-gradient(160deg, #08101d 0%, #0b1320 40%, #0b1320 100%);
}

.shell {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

@media (min-width: 720px) {
  body {
    padding: 32px;
  }

  .card {
    padding: 36px;
  }
}

.hero {
  text-align: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}


.hero-logo {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: inline-block;
}

.subtitle {
  margin: 14px auto 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.lead {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--soft);
  padding: 16px;
}

.lead h2 {
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.features li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
}

/* Check icon (inline SVG data URI), no external libraries */
.features li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 999px;
  background-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M7.6 13.2 4.7 10.3a1 1 0 0 1 1.4-1.4l1.5 1.5 6-6a1 1 0 1 1 1.4 1.4l-6.7 6.7a1 1 0 0 1-1.4 0Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.contact {
  display: grid;
  gap: 12px;
}

.item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  background: #ffffff;
}

.label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.value {
  font-size: 15px;
  font-weight: 700;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 14px;
  font-weight: 800;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brandHover);
}

a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 800;
}

a:hover {
  text-decoration: underline;
}

.email-fallback {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.footer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.footer-label {
  color: var(--muted);
  font-weight: 700;
}

.sep {
  opacity: 0.7;
}

.pricing {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  padding: 16px;
}

.pricing h2 {
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.plan {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}

.plan-head > * {
  min-width: 0;
}

.plan-name {
  font-weight: 900;
}

.plan-price {
  color: var(--muted);
  font-weight: 500;
  white-space: normal;
  overflow-wrap: anywhere;
}


.plan-features {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  font-weight: 300;
  line-height: 1.5;
}

.plan-features li {
  margin: 6px 0;
}

.plan-features small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.star {
  color: var(--orange);
  font-weight: 900;
  margin-left: 4px;
}

.pricing-dns-note {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  color: #b45309;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.pricing-cta {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}

.pricing-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}

.pricing-custom {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  text-align: right;
  font-weight: 700;
}

@media (min-width: 820px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
}
