* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: #16161a;
  color: #d5dde6;
  font: 16px/1.6 "Segoe UI", system-ui, sans-serif;
}
a { color: #6aa5e8; text-decoration: none; }
a:hover { text-decoration: underline; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  border-bottom: 1px solid #2a2a30;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.brand:hover { text-decoration: none; color: #fff; filter: brightness(1.06); }
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}
.brand-name { line-height: 1; }
.nav nav a { margin-left: 20px; color: #aab6c2; }

.hero { text-align: center; padding: 70px 20px 50px; max-width: 780px; margin: 0 auto; }
.hero h1 { font-size: 44px; color: #fff; margin-bottom: 16px; }
.tagline { font-size: 19px; color: #9fb0c0; margin-bottom: 28px; }
.cta { display: flex; gap: 12px; justify-content: center; margin-bottom: 24px; }
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  background: #2c2c33;
  color: #e8e8ea;
  font-weight: 600;
}
.btn:hover { text-decoration: none; filter: brightness(1.15); }
.btn.primary { background: #3d84d6; color: #fff; }
.pledge { color: #8a97a5; font-size: 14px; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}
.feature {
  background: #1e1e24;
  border: 1px solid #2c2c33;
  border-radius: 10px;
  padding: 22px;
}
.feature h3 { color: #fff; margin-bottom: 8px; font-size: 17px; }
.feature p { color: #9fb0c0; font-size: 14px; }

footer { text-align: center; padding: 26px; color: #667; font-size: 13px; border-top: 1px solid #2a2a30; }

/* pricing */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
}
.plan {
  background: #1e1e24;
  border: 1px solid #2c2c33;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.plan.highlight { border-color: #3d84d6; box-shadow: 0 0 24px rgba(61, 132, 214, 0.25); }
.plan h2 { color: #fff; }
.plan .price { font-size: 40px; color: #fff; margin: 12px 0; }
.plan .price small { font-size: 15px; color: #8a97a5; }
.plan ul { list-style: none; margin: 16px 0 22px; text-align: left; }
.plan li { padding: 5px 0 5px 26px; position: relative; color: #b7c2ce; font-size: 14px; }
.plan li::before { content: "✓"; position: absolute; left: 4px; color: #6fbf73; }

/* checkout / forms */
.panel {
  max-width: 520px;
  margin: 40px auto;
  background: #1e1e24;
  border: 1px solid #2c2c33;
  border-radius: 12px;
  padding: 28px;
}
.panel h1 { color: #fff; font-size: 24px; margin-bottom: 14px; }
.panel label { display: block; margin: 14px 0 4px; color: #b7c2ce; font-size: 14px; }
.panel input[type="email"], .panel input[type="text"], .panel select, .panel textarea {
  width: 100%;
  background: #16161a;
  border: 1px solid #34343c;
  color: #fff;
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
}
.panel button, .panel .btn { margin-top: 18px; width: 100%; border: none; cursor: pointer; font-size: 16px; text-align: center; }
.keybox {
  background: #16161a;
  border: 1px dashed #3d84d6;
  border-radius: 8px;
  padding: 14px;
  font-family: Consolas, monospace;
  font-size: 12px;
  word-break: break-all;
  margin: 14px 0;
  color: #cfe2f7;
}
.notice { background: rgba(111, 191, 115, 0.1); border: 1px solid #3c6e40; border-radius: 8px; padding: 12px 16px; margin: 14px 0; font-size: 14px; }
.warn { background: rgba(214, 138, 61, 0.1); border-color: #6e5a3c; }
table.admin { width: 100%; border-collapse: collapse; font-size: 13px; }
table.admin th, table.admin td { border: 1px solid #2c2c33; padding: 6px 10px; text-align: left; }
table.admin th { background: #24242a; color: #cfe2f7; }

.contact-line {
  margin-top: 10px;
  color: #8a97a5;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
img.contact-email {
  height: 28px;
  width: auto;
  vertical-align: middle;
  image-rendering: auto;
  /* No title/alt email text — scraper bait stays out of HTML */
  user-select: none;
  -webkit-user-drag: none;
}
