:root {
  --bg: #070812;
  --panel: #111426;
  --panel-2: #171b31;
  --line: rgba(255,255,255,.1);
  --text: #f8fafc;
  --muted: #aab3c5;
  --brand: #ff2f6d;
  --brand-2: #21d4fd;
  --ok: #26d07c;
  --warning: #ffd166;
  --shadow: 0 24px 70px rgba(0,0,0,.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(33,212,253,.18), transparent 32rem),
    radial-gradient(circle at 85% 8%, rgba(255,47,109,.2), transparent 28rem),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7,8,18,.88);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(33,212,253,.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 11px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,.08);
}

.button,
button {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), #d71955);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(255,47,109,.25);
}

.button:hover,
button:hover {
  transform: translateY(-1px);
}

.button.secondary {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7,8,18,.96), rgba(7,8,18,.7), rgba(7,8,18,.36)),
    url("https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-copy {
  max-width: 690px;
  padding: 80px 0 96px;
}

.eyebrow {
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(36px, 7vw, 72px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
  margin-bottom: 14px;
}

h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
}

.lead {
  font-size: clamp(17px, 2vw, 21px);
  max-width: 650px;
  margin-top: 18px;
}

.hero-actions,
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  color: #dce6f8;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 74px 0;
}

.section.alt {
  background: rgba(255,255,255,.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid {
  display: grid;
  gap: 16px;
}

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 20px;
}

.feature {
  min-height: 150px;
  padding: 22px;
}

.feature strong {
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}

.form-shell {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: start;
}

.form-card {
  padding: 24px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: #e8edf8;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: var(--text);
  padding: 12px 13px;
  outline: none;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(33,212,253,.75);
  box-shadow: 0 0 0 3px rgba(33,212,253,.15);
}

select option {
  background: #111426;
  color: #fff;
}

.status {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(38,208,124,.12);
  border: 1px solid rgba(38,208,124,.35);
  color: #dfffee;
}

.status.show {
  display: block;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mini-list div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  padding: 14px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 860px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(7,8,18,.82), rgba(7,8,18,.98)),
      url("https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&w=1200&q=80") center/cover;
  }

  .hero-copy {
    padding: 64px 0 76px;
  }

  .grid.three,
  .grid.four,
  .form-shell,
  .field-grid {
    grid-template-columns: 1fr;
  }
}
