@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #020406;
  --panel: #071014;
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --cyan: #00d4ff;
  --blue: #2268ff;
  --danger: #ff6b7a;
  --success: #69f5b4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 212, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 75%, rgba(34, 104, 255, 0.14), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 48px 0;
}

.brand {
  display: inline-flex;
  width: 160px;
  margin-bottom: 40px;
}

.brand img {
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
}

h2 {
  font-size: 2rem;
}

.lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.checks {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
}

.checks li {
  position: relative;
  padding-inline-start: 28px;
}

.checks li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.8);
}

.panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 16, 20, 0.84);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  padding: 32px;
}

.panel-header {
  margin-bottom: 28px;
}

.panel h2:not(:first-child) {
  margin-top: 28px;
}

.panel p {
  color: var(--muted);
  line-height: 1.8;
}

.panel a {
  color: var(--cyan);
}

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

.website-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0 14px;
  font: inherit;
  outline: none;
}

select option {
  background: #05080a;
}

input:focus,
select:focus {
  border-color: rgba(0, 212, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.12);
}

.hint {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
  font-weight: 400;
}

.consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.error {
  min-height: 1rem;
  color: var(--danger);
  font-size: 0.8rem;
  font-weight: 600;
}

.message {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 600;
}

.message.is-error {
  display: block;
  border-color: rgba(255, 107, 122, 0.45);
  background: rgba(255, 107, 122, 0.1);
  color: #ffd6dc;
}

.message.is-success {
  display: block;
  border-color: rgba(105, 245, 180, 0.45);
  background: rgba(105, 245, 180, 0.1);
  color: var(--success);
}

button {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #001116;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(0, 212, 255, 0.24);
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

@media (max-width: 860px) {
  .shell {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 0;
  }

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

  .panel {
    padding: 22px;
  }
}
