:root {
  --bg: #06101f;
  --bg-soft: #0a1830;
  --panel: #111f39;
  --panel-2: #152848;
  --line: rgba(255, 255, 255, 0.14);
  --text: #eef5ff;
  --muted: #a4b2cc;
  --accent: #12d2a7;
  --accent-2: #2d84ff;
  --danger: #ff7f77;
  --shadow: 0 24px 50px rgba(2, 8, 18, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(45, 132, 255, 0.25), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(18, 210, 167, 0.16), transparent 40%),
    linear-gradient(160deg, #040a14 0%, #081226 48%, #0a1730 100%);
}

.shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 5px rgba(18, 210, 167, 0.15);
}

.brand-text {
  margin: 0;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.link-pill {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(16, 29, 54, 0.76);
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.link-pill:hover {
  border-color: rgba(18, 210, 167, 0.45);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #0eb892);
  color: #05211a;
}

.btn.secondary {
  background: rgba(17, 31, 57, 0.85);
  color: var(--text);
  border-color: var(--line);
}

.btn.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  margin-top: 6px;
}

.hero-card,
.stats-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(170deg, rgba(17, 31, 57, 0.9), rgba(11, 21, 39, 0.94));
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
}

.kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.08;
  text-wrap: balance;
}

.subhead {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.mini-proof {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.stats-card {
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 27, 49, 0.95);
  padding: 12px;
}

.stat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.stat strong {
  display: block;
  margin-top: 6px;
  font-size: 1.45rem;
}

.section {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 27, 49, 0.86);
  box-shadow: var(--shadow);
  padding: 16px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

h2 {
  margin: 0;
  font-size: 1.1rem;
  text-wrap: balance;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.three-col,
.two-col {
  display: grid;
  gap: 10px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.tile {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 12px;
}

.tile h3 {
  margin: 0;
  font-size: 0.95rem;
}

.tile p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.price {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(170deg, rgba(19, 36, 64, 0.96), rgba(14, 28, 52, 0.96));
  padding: 14px;
}

.price.featured {
  border-color: rgba(18, 210, 167, 0.6);
  background: linear-gradient(160deg, rgba(18, 210, 167, 0.2), rgba(14, 28, 52, 0.96) 52%);
}

.price h3 {
  margin: 0;
  font-size: 1rem;
}

.amount {
  margin: 8px 0;
  font-size: 2rem;
  font-weight: 800;
}

.amount span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

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

.checks li {
  color: var(--muted);
  font-size: 0.84rem;
}

.checks li::before {
  content: "•";
  color: var(--accent);
  margin-right: 7px;
}

.form-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(14, 27, 50, 0.9);
  box-shadow: var(--shadow);
  padding: 16px;
}

form {
  display: grid;
  gap: 10px;
}

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

label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(10, 19, 34, 0.9);
  color: var(--text);
  padding: 11px 12px;
  font-family: inherit;
  font-size: 0.9rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(45, 132, 255, 0.5);
  border-color: rgba(45, 132, 255, 0.7);
}

.note {
  font-size: 0.82rem;
  color: var(--muted);
}

.success {
  margin: 0 0 10px;
  border: 1px solid rgba(18, 210, 167, 0.5);
  border-radius: 10px;
  background: rgba(18, 210, 167, 0.12);
  color: #a3ffe6;
  padding: 10px;
  font-size: 0.86rem;
}

.error {
  margin: 0 0 10px;
  border: 1px solid rgba(255, 127, 119, 0.45);
  border-radius: 10px;
  background: rgba(255, 127, 119, 0.12);
  color: #ffc0bb;
  padding: 10px;
  font-size: 0.86rem;
}

.footer {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 900px) {
  .hero,
  .three-col,
  .two-col,
  .price-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

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