:root {
  --void: #070908;
  --pitch: #111614;
  --lime: #d6ff4b;
  --lime-deep: #c2eb2a;
  --paper: #eef2e8;
  --muted: #8f988c;
  --line: rgba(214, 255, 75, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--void);
  color: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }

h1, h2, h3, .brand, .price__amount, .stats dt {
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 0;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--lime { background: var(--lime); color: var(--void); }
.btn--lime:hover { background: #e7ff7a; }
.btn--lime:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--paper); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn--block { width: 100%; margin-top: 12px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 9, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--lime);
}
.nav__inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 22px; }
.brand__mark {
  width: 14px;
  height: 14px;
  background: var(--lime);
  display: inline-block;
}
.nav__links { display: flex; align-items: center; gap: 22px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
.nav__links a:not(.btn):hover { color: var(--lime); }

.hero {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(52px, 8vw, 88px); margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: var(--lime); }
.lead { color: #cdd6c6; font-size: 18px; max-width: 42ch; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 32px; }
.stats { display: flex; gap: 28px; }
.stats dt { font-size: 36px; color: var(--lime); }
.stats dd { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }

.hero__photo { position: relative; }
.hero__photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 0 100%);
}
.hero__photo figcaption {
  position: absolute;
  left: 0;
  bottom: 28px;
  background: var(--lime);
  color: var(--void);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wrap { width: min(1120px, 92%); margin: 0 auto; padding: 80px 0; }
.intro { max-width: 560px; margin-bottom: 36px; }
.intro h2, .band h2, .pay h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 10px; }
.intro--center { text-align: center; margin-inline: auto; }

.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.card {
  background: var(--pitch);
  border-left: 4px solid var(--lime);
  padding: 26px;
}
.card span { color: var(--lime); font-size: 12px; letter-spacing: 0.16em; font-weight: 800; }
.card h3 { font-size: 32px; margin: 8px 0; }
.card p { color: #c5cebf; }

.band { background: #0d110f; border-block: 1px solid var(--line); }
.band__grid {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.band p { color: #cdd6c6; }
.ticks { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.ticks li { padding-left: 22px; position: relative; }
.ticks li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--lime);
  position: absolute;
  left: 0;
  top: 7px;
}
.band__img {
  min-height: 380px;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
}

.price {
  max-width: 420px;
  margin: 0 auto;
  background: var(--lime);
  color: var(--void);
  padding: 32px;
  text-align: center;
}
.price__badge {
  display: inline-block;
  background: var(--void);
  color: var(--lime);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price__amount { font-size: 64px; margin: 14px 0 18px; }
.price ul { list-style: none; text-align: left; display: grid; gap: 8px; color: #1c2418; margin-bottom: 22px; font-weight: 600; }
.price .btn--lime { background: var(--void); color: var(--lime); }
.price .btn--lime:hover { background: #1a2118; }

.pay { background: #050605; }
.pay__grid {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.pay p { color: #cdd6c6; }
.form { background: var(--pitch); border: 2px solid var(--line); padding: 26px; }
.field { display: block; margin-bottom: 14px; }
.field span { display: block; font-size: 12px; margin-bottom: 6px; color: #cdd6c6; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.field input, .field select, .card-input {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--void);
  color: var(--paper);
  font-size: 16px;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--lime); }
.field-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 12px; }

.message { margin-top: 16px; padding: 12px; overflow-wrap: anywhere; }
.message a { text-decoration: underline; font-weight: 700; }
.message--error { background: #3a1b1b; color: #f3c7c7; }
.message--success { background: #1c3324; color: #c8efd4; }
.message--info { background: #243018; color: #e7ff7a; }

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(7, 9, 8, 0.25);
  border-top-color: var(--void);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none !important; }

.footer { border-top: 2px solid var(--lime); padding: 28px 0 36px; color: var(--muted); font-size: 14px; }
.footer__inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer strong { display: block; color: var(--paper); font-family: "Oswald", sans-serif; font-size: 22px; text-transform: uppercase; }

@media (max-width: 900px) {
  .hero, .cards, .band__grid, .pay__grid { grid-template-columns: 1fr; }
  .nav__links a:not(.btn) { display: none; }
  .hero__photo img { height: 320px; clip-path: none; }
  .band__img { clip-path: none; }
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
}
