:root {
  --bg: #060a07;
  --bg-soft: #0b120d;
  --line: #1e3322;
  --text: #dff0e2;
  --muted: #7a9982;
  --accent: #22dd55;
  --accent-soft: rgba(34, 221, 85, 0.14);
  --warn: #ffca55;
  --bad: #ff6b6b;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Sans", "Inter", Arial, sans-serif;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top {
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.top-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.nav {
  display: inline-flex;
  gap: 14px;
  font-size: 14px;
}

.main {
  width: 100%;
}

.hero {
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 44px 20px 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0;
  color: var(--muted);
  margin-bottom: 12px;
}

h1.tight {
  margin: 0;
  line-height: 1.15;
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: 0;
}

h1 {
  margin: 0 0 10px;
  line-height: 1.1;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.panel {
  border: 1px solid var(--line);
  background: #0a100b;
  border-radius: 8px;
  padding: 18px;
}

.price {
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0;
}

.price-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

label {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

input[type="text"] {
  width: 100%;
  padding: 12px 13px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #070b08;
  color: var(--text);
  outline: none;
  font-size: 14px;
  letter-spacing: 0;
}

input[type="text"]:focus {
  border-color: var(--accent);
}

.row {
  margin-top: 14px;
}

.btn {
  width: 100%;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #021206;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 12px;
  cursor: pointer;
}

.btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

.btn-alt {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.msg {
  margin-top: 10px;
  min-height: 20px;
  font-size: 13px;
}

.msg.ok { color: var(--accent); }
.msg.warn { color: var(--warn); }
.msg.bad { color: var(--bad); }

.section {
  border-bottom: 1px solid var(--line);
}

.section-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 20px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a100b;
  padding: 14px;
}

.tile h2 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: 0;
}

.tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.status-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 42px 20px;
}

.status-mark {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.status-mark.ok {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-soft);
}

.check {
  width: 32px;
  height: 20px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
  margin-top: -4px;
}

.spinner {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 3px solid #1b2b1d;
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.status-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.status-text {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

.status-meta {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.status-meta div { margin-top: 6px; }

.faq-list {
  display: grid;
  gap: 10px;
}

.qa {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #0a100b;
}

.qa h2 {
  margin: 0 0 7px;
  font-size: 16px;
}

.qa p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.foot {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 18px 20px;
  color: var(--muted);
  font-size: 13px;
}

.foot-inner {
  max-width: 1040px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
}
