/* soldcrazy.com — domain for sale landing page */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg:      #0b0b0f;
  --panel:   #131319;
  --line:    #26262f;
  --text:    #ececf1;
  --muted:   #9b9ba7;
  --accent:  #f5a524;
  --accent-2:#ffce6b;
  --ok:      #34d399;
  --bad:     #f87171;
  --radius:  14px;
}

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Soft light behind the hero */
.glow {
  position: fixed;
  top: -320px; left: 50%;
  width: 900px; height: 900px;
  margin-left: -450px;
  background: radial-gradient(circle, rgba(245,165,36,.16) 0%, rgba(245,165,36,0) 65%);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
  padding: 72px 22px 56px;
}

/* ---------------------------------------------------------------- hero --- */

.hero { text-align: center; }

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

.domain {
  margin: 0;
  font-size: clamp(2.1rem, 9vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
  background: linear-gradient(180deg, #fff 25%, #b9b9c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  word-break: break-word;
}

.lede {
  margin: 14px 0 34px;
  font-size: clamp(1.05rem, 3.4vw, 1.3rem);
  color: var(--muted);
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 26px 24px;
  background: linear-gradient(180deg, var(--panel), #101015);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.price {
  font-size: clamp(2.3rem, 10vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--accent);
}

.currency {
  margin-right: .3em;
  font-size: .42em;
  font-weight: 600;
  letter-spacing: .1em;
  vertical-align: .55em;
  color: var(--muted);
}

.price-note {
  font-size: 13.5px;
  color: var(--muted);
}

.cta {
  display: inline-block;
  margin-top: 26px;
  padding: 13px 30px;
  background: var(--accent);
  color: #1a1206;
  font-weight: 650;
  text-decoration: none;
  border-radius: 999px;
  transition: background .18s ease, transform .18s ease;
}

.cta:hover { background: var(--accent-2); transform: translateY(-1px); }

/* --------------------------------------------------------------- pitch --- */

.pitch {
  margin: 56px 0;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  color: #c8c8d2;
}

.pitch p { margin: 0 0 16px; }
.pitch strong { color: var(--text); font-weight: 650; }
.pitch-meta { color: var(--muted); font-size: 15px; }

/* ---------------------------------------------------------------- form --- */

.form-section {
  padding: 30px 26px 34px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scroll-margin-top: 24px;
}

.form-section h2 {
  margin: 0 0 22px;
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -.01em;
}

.field { margin-bottom: 18px; }

label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #d9d9e2;
}

.hint {
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
}

input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 12px 14px;
  background: #0d0d12;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--text);
  font: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}

textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

input:focus-visible, textarea:focus-visible, .cta:focus-visible, .submit:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,165,36,.25);
}

.cta:focus-visible, .submit:focus-visible { box-shadow: 0 0 0 3px rgba(245,165,36,.45); }

input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--bad); }

.err { margin: 7px 0 0; font-size: 13.5px; color: var(--bad); }

.captcha { margin: 22px 0 20px; }

.submit {
  width: 100%;
  padding: 14px 20px;
  background: var(--accent);
  border: 0;
  border-radius: 9px;
  color: #1a1206;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  transition: background .18s ease;
}

.submit:hover { background: var(--accent-2); }

.privacy {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

/* Honeypot: kept in the layout for bots, invisible and unreachable for people. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* -------------------------------------------------------------- alerts --- */

.alert {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 9px;
  border: 1px solid;
  font-size: 14.5px;
  line-height: 1.55;
}

.alert:focus { outline: none; }

.alert--success {
  background: rgba(52,211,153,.09);
  border-color: rgba(52,211,153,.4);
  color: #a7f3d0;
}

.alert--error {
  background: rgba(248,113,113,.09);
  border-color: rgba(248,113,113,.4);
  color: #fecaca;
}

/* -------------------------------------------------------------- footer --- */

.foot {
  margin-top: 48px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}

.foot p { margin: 0 0 6px; }
.foot-note { font-size: 13px; opacity: .8; }

/* ------------------------------------------------------------ responsive - */

@media (max-width: 480px) {
  .wrap { padding: 52px 16px 40px; }
  .form-section { padding: 24px 18px 28px; }
  .price-card { padding: 22px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* Proof-of-work status line + locked submit button */
.submit:disabled {
  background: #3a3a44;
  color: var(--muted);
  cursor: progress;
}

.pow-status {
  margin: 10px 0 0;
  font-size: 13.5px;
  color: var(--muted);
}

/* No-JavaScript fallback question */
.nojs {
  padding: 16px;
  background: #0d0d12;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.nojs-q {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}
