:root {
  --bg: #0c1220;
  --bg-2: #141c2e;
  --card: rgba(20, 28, 46, 0.86);
  --line: rgba(232, 197, 107, 0.18);
  --gold: #e8c56b;
  --gold-2: #c9a227;
  --mint: #7ee0b0;
  --text: #f4f0e6;
  --muted: #a8b0c2;
  --danger: #ff8b8b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(232, 197, 107, 0.12), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, rgba(126, 224, 176, 0.08), transparent 50%),
    var(--bg);
  line-height: 1.55;
}

.glow {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.45;
}

.glow-a {
  width: 280px;
  height: 280px;
  background: #e8c56b;
  top: 120px;
  right: 8%;
}

.glow-b {
  width: 340px;
  height: 340px;
  background: #1f6f55;
  bottom: 8%;
  left: -80px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(12, 18, 32, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner,
.hero-grid,
.split,
.form-grid,
.footer-inner,
.banner,
.contacts {
  display: flex;
  gap: 24px;
}

.header-inner,
.footer-inner {
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.logo strong,
.logo small {
  display: block;
}

.logo small {
  color: var(--muted);
  font-size: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #1a1408;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  color: #1a1408;
  background: linear-gradient(180deg, #f0d48a, var(--gold-2));
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn:focus-visible,
.nav a:focus-visible,
.form input:focus-visible,
.form textarea:focus-visible,
.pills label:focus-within,
.contact-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-ghost,
.btn-tg,
.contact-link,
.banks span,
.card,
.hero-card,
.form,
.banner,
.note {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
}

.btn-ghost,
.btn-tg {
  min-height: 44px;
}

.btn-full {
  width: 100%;
}

.hero,
.section {
  padding: 72px 0;
}

.hero-grid,
.split,
.form-grid {
  align-items: start;
}

.hero-grid > *,
.split > *,
.form-grid > * {
  flex: 1;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

h1,
h2,
h3,
.logo strong,
.hero-card strong {
  font-family: Unbounded, sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 12px 0 16px;
}

h2 {
  font-size: 28px;
  margin: 0 0 20px;
}

.lead,
.hero-card-foot,
.form-fine,
.footer {
  color: var(--muted);
}

.hero-actions,
.hero-notes,
.cards,
.banks,
.pills,
.sum-list,
.checklist {
  display: flex;
  gap: 12px;
}

.hero-actions {
  margin: 28px 0 20px;
  flex-wrap: wrap;
}

.hero-notes,
.checklist {
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-notes li,
.checklist li {
  padding-left: 22px;
  position: relative;
}

.hero-notes li::before,
.checklist li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  position: absolute;
  left: 0;
  top: 0.55em;
}

.hero-card,
.card,
.form,
.banner,
.note,
.contact-link {
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.sum-list {
  flex-direction: column;
  list-style: none;
  padding: 0;
}

.sum-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cards,
.banks {
  flex-wrap: wrap;
}

.card,
.banks span {
  flex: 1 1 220px;
}

.card:hover,
.banks span:hover,
.contact-link:hover {
  border-color: rgba(232, 197, 107, 0.45);
}

.card-kicker {
  margin: 0;
  color: var(--gold);
  font-weight: 700;
}

.banks span {
  text-align: center;
  padding: 18px 12px;
  border-radius: 16px;
  font-weight: 700;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.note {
  margin-top: 18px;
}

.banner {
  align-items: center;
  justify-content: space-between;
}

.contacts {
  flex-direction: column;
}

.contact-link {
  text-decoration: none;
}

.contact-link span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.form {
  display: grid;
  gap: 14px;
}

.form label,
.form legend {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d1524;
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.pills {
  flex-wrap: wrap;
}

.pills label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-weight: 700;
}

.form-status.ok {
  color: var(--mint);
}

.form-status.err {
  color: var(--danger);
}

.form-fine {
  margin: 0;
  font-size: 13px;
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer a {
  color: var(--gold);
}

.mobile-cta {
  display: none;
}

@media (max-width: 860px) {
  .nav,
  .header-tg {
    display: none;
  }

  .hero-grid,
  .split,
  .form-grid,
  .banner,
  .header-inner {
    flex-direction: column;
  }

  .hero,
  .section {
    padding: 48px 0;
  }

  body {
    padding-bottom: 84px;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(12, 18, 32, 0.92);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-cta .btn {
    width: 100%;
  }
}
