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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--dark);
  color: #f1f5f9;
  overflow-x: hidden;
  position: relative;
  line-height: 1.5;
}

/* ---------- animated background ---------- */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  will-change: transform;
}

.blob-1 {
  width: 40vw;
  height: 40vw;
  max-width: 520px;
  max-height: 520px;
  background: var(--primary);
  top: -10%;
  left: -10%;
  animation: float1 18s ease-in-out infinite;
}

.blob-2 {
  width: 35vw;
  height: 35vw;
  max-width: 460px;
  max-height: 460px;
  background: var(--secondary);
  bottom: -15%;
  right: -10%;
  animation: float2 22s ease-in-out infinite;
}

.blob-3 {
  width: 25vw;
  height: 25vw;
  max-width: 340px;
  max-height: 340px;
  background: var(--accent);
  top: 40%;
  left: 55%;
  animation: float3 16s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6vw, 8vh) scale(1.1); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-5vw, -6vh) scale(1.08); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4vw, 5vh) scale(0.95); }
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

/* ---------- layout ---------- */
.page {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 6rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* ---------- hero ---------- */
.hero {
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.domain-name {
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(120deg, #fff, var(--accent) 60%, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  word-break: break-word;
}

.tagline {
  margin-top: 0.9rem;
  font-size: 1.15rem;
  color: #cbd5e1;
}

.price-badge {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1.6rem;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  box-shadow: 0 8px 30px -8px rgba(99, 102, 241, 0.6);
}

.description {
  max-width: 560px;
  margin: 1.75rem auto 0;
  color: #94a3b8;
  font-size: 1rem;
}

.features {
  list-style: none;
  margin: 2.25rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem 1.5rem;
  max-width: 640px;
  text-align: left;
}

.features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.features svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--accent);
  background: rgba(34, 211, 238, 0.12);
  border-radius: 50%;
  padding: 2px;
}

/* ---------- contact card ---------- */
.contact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5);
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.contact-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-sub {
  margin-top: 0.4rem;
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.field {
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
}

.field input,
.field textarea {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  color: #f1f5f9;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

/* Honeypot: hidden from sighted users and screen readers, still reachable by simple bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem 1.2rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.7);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(99, 102, 241, 0.85);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.banner {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.banner-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.banner-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.form-message[data-state="success"] {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.form-message[data-state="error"] {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.form-message {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

/* ---------- footer ---------- */
.page-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem;
  color: #64748b;
  font-size: 0.8rem;
}

@media (max-width: 480px) {
  .contact-card {
    padding: 1.5rem;
  }
}
