:root {
  --bg: #0b0e14;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #f2f4f8;
  --text-muted: #9aa3b2;
  --accent: #cf7119;
  --accent-hover: #e6822a;
  --input-bg: rgba(255, 255, 255, 0.03);
  --input-border: rgba(255, 255, 255, 0.12);
  --success: #3ecf8e;
  --error: #ef4444;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(207, 113, 25, 0.18),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 0%,
      rgba(62, 207, 142, 0.1),
      transparent 40%
    ),
    radial-gradient(circle at 50% 100%, rgba(207, 113, 25, 0.1), transparent 50%);
  pointer-events: none;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 24px;
  gap: 24px;
}

.card {
  width: 100%;
  max-width: 480px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.domain-name {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.tagline {
  margin: 0 0 32px;
  color: var(--text-muted);
  font-size: 15px;
}

.field {
  text-align: left;
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 10px;
  outline: none;
  resize: vertical;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6b7280;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(207, 113, 25, 0.15);
}

.disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  margin: 4px 0 20px;
}

.disclaimer input {
  margin-top: 3px;
  cursor: pointer;
}

.disclaimer label {
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}

.cf-turnstile {
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
}

button[type="submit"] {
  width: 100%;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.15s ease,
    transform 0.1s ease;
}

button[type="submit"]:hover {
  background: var(--accent-hover);
}

button[type="submit"]:active {
  transform: scale(0.98);
}

button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.status {
  min-height: 20px;
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 500;
}

.status.success {
  color: var(--success);
}

.status.error {
  color: var(--error);
}

.success-state {
  padding: 12px 0 4px;
}

.success-state .success-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.success-state h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.success-state p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.footer {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  max-width: 480px;
  padding: 0 16px;
}

@media (max-width: 480px) {
  .card {
    padding: 32px 22px;
  }
}
