:root {
  --bg-ink: #07141f;
  --bg-ink-soft: #0d1f2e;
  --panel: rgba(11, 28, 42, 0.9);
  --line: rgba(139, 175, 202, 0.35);
  --text-main: #f4f8fc;
  --text-muted: #b7c8d7;
  --accent: #f2a742;
  --accent-cool: #52d1c9;
  --ok: #7ed786;
  --warn: #ffd27a;
  --bad: #ff9e9e;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(1200px 800px at 10% -20%, #214058 0%, rgba(33, 64, 88, 0) 55%),
    radial-gradient(900px 650px at 100% 0%, #173448 0%, rgba(23, 52, 72, 0) 60%),
    linear-gradient(160deg, var(--bg-ink) 0%, var(--bg-ink-soft) 100%);
  padding: 32px 18px 48px;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(48px);
  z-index: -1;
  opacity: 0.45;
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-1 {
  width: 280px;
  height: 280px;
  background: #3f8ec9;
  top: -70px;
  left: -50px;
}

.orb-2 {
  width: 220px;
  height: 220px;
  background: #2e7f71;
  right: -50px;
  bottom: 20%;
  animation-delay: 2s;
}

.hero {
  max-width: 1080px;
  margin: 0 auto 22px;
}

.kicker {
  display: inline-block;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(82, 209, 201, 0.18);
  color: #c8f7f4;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.04;
  max-width: 780px;
}

.subhead {
  margin-top: 14px;
  max-width: 760px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-points span {
  background: rgba(242, 167, 66, 0.15);
  color: #ffd9a6;
  border: 1px solid rgba(242, 167, 66, 0.4);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.87rem;
}

.layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  backdrop-filter: blur(3px);
  box-shadow: 0 18px 40px rgba(3, 9, 14, 0.38);
  padding: 20px;
}

.offer-panel ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.offer-panel li {
  border-left: 3px solid rgba(82, 209, 201, 0.6);
  padding-left: 12px;
}

.offer-panel strong {
  font-size: 1.02rem;
}

.offer-panel p {
  margin: 6px 0 0;
  color: var(--text-muted);
}

.panel-note {
  margin: 10px 0 16px;
  color: var(--text-muted);
}

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

label {
  display: grid;
  gap: 7px;
  font-size: 0.95rem;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(147, 176, 199, 0.4);
  background: rgba(8, 21, 32, 0.95);
  color: var(--text-main);
  padding: 10px 12px;
  border-radius: 10px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-cool);
  box-shadow: 0 0 0 3px rgba(82, 209, 201, 0.2);
}

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

.honeypot {
  display: none;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--text-muted);
}

button[type='submit'] {
  margin-top: 10px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
  background: linear-gradient(140deg, var(--accent) 0%, #f09035 100%);
  color: #1b160f;
  cursor: pointer;
  transition: transform 0.2s ease;
}

button[type='submit']:hover {
  transform: translateY(-1px);
}

button[type='submit'][disabled] {
  opacity: 0.75;
  cursor: wait;
}

#formStatus {
  min-height: 1.5em;
  margin: 10px 0 0;
  color: var(--text-muted);
}

#formStatus.ok {
  color: var(--ok);
}

#formStatus.error {
  color: var(--bad);
}

.proof {
  max-width: 1080px;
  margin: 16px auto 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card {
  border: 1px solid rgba(147, 176, 199, 0.3);
  border-radius: 12px;
  padding: 14px;
  background: rgba(8, 21, 32, 0.85);
}

.proof-card p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.93rem;
}

footer {
  max-width: 1080px;
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    padding: 18px 12px 32px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }
}

@keyframes drift {
  0% {
    transform: translateY(0) translateX(0);
  }

  100% {
    transform: translateY(20px) translateX(12px);
  }
}
