/* ═══════════════════════════════════════════════════════
   raihan.dev — domain for sale landing page styles
   ═══════════════════════════════════════════════════════ */

:root {
  --bg: #05070f;
  --panel: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.09);
  --text: #eef1f8;
  --muted: #9aa3b8;
  --indigo: #818cf8;
  --cyan: #22d3ee;
  --grad: linear-gradient(90deg, #818cf8, #22d3ee);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Ambient glowing orbs in the background */
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  z-index: -1;
  pointer-events: none;
}
body::before {
  width: 520px; height: 520px;
  background: rgba(99, 102, 241, 0.22);
  top: -160px; left: -120px;
  animation: drift 14s ease-in-out infinite alternate;
}
body::after {
  width: 620px; height: 620px;
  background: rgba(34, 211, 238, 0.13);
  bottom: -220px; right: -180px;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(70px, 50px) scale(1.12); }
}

::selection { background: rgba(129, 140, 248, 0.35); }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ─────────────────────────────── */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.wordmark {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em;
  text-decoration: none; color: var(--text);
}
.wordmark span { color: var(--cyan); }
.sale-pill {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #04060d; text-decoration: none;
  background: var(--grad);
  padding: 6px 14px; border-radius: 999px;
  animation: glow 2.4s ease-in-out infinite;
  transition: transform 0.22s ease;
}
.sale-pill:hover { transform: translateY(-2px) scale(1.05); }

/* ── Hero ─────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
}

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.07);
  color: #6ee7b7;
  font-size: 0.85rem; font-weight: 500;
  padding: 8px 18px; border-radius: 999px;
  margin-bottom: 34px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: ping 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes ping {
  70%  { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 6.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 .tld {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.tagline {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  margin: 26px auto 38px;
}
.tagline strong { color: var(--text); font-weight: 600; }

.price-label {
  display: block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
/* ✏️ EDIT: your asking price */
.price-value {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 38px;
}

.cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: clamp(1rem, 2.4vw, 1.15rem);
  color: #04060d; text-decoration: none;
  background: var(--grad);
  padding: 18px 44px; border-radius: 999px;
  animation: glow 2.4s ease-in-out infinite;
  transition: transform 0.22s ease;
}
.cta:hover { transform: translateY(-3px) scale(1.03); }
.cta .arrow { transition: transform 0.22s ease; }
.cta:hover .arrow { transform: translateX(5px); }
@keyframes glow {
  0%, 100% { box-shadow: 0 10px 34px rgba(99, 102, 241, 0.38); }
  50%      { box-shadow: 0 10px 54px rgba(34, 211, 238, 0.58); }
}

.cta-note {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--muted);
}

.trust {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 14px 34px;
  margin-top: 34px;
  font-size: 0.9rem; color: var(--muted);
}
.trust span::before { content: "✓  "; color: #34d399; font-weight: 700; }

/* ── Ticker ─────────────────────────────── */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
}
.ticker-track {
  display: inline-block;
  animation: marquee 26s linear infinite;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.ticker-track b { color: var(--indigo); font-weight: 600; padding: 0 1.4em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Sections ─────────────────────────────── */
.section { padding: 96px 0; }
.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: block; text-align: center;
  margin-bottom: 14px;
}
h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 56px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(129, 140, 248, 0.45);
}
.card .icon { font-size: 1.7rem; display: block; margin-bottom: 16px; }
.card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem; font-weight: 600;
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 0.94rem; }

/* ── Steps ─────────────────────────────── */
.steps {
  display: flex; gap: 24px;
  align-items: stretch;
}
.step {
  flex: 1; text-align: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 24px;
}
.step-num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 2.1rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: block; margin-bottom: 12px;
}
.step h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem; font-weight: 600;
  margin-bottom: 8px;
}
.step p { color: var(--muted); font-size: 0.92rem; }

/* ── Final CTA ─────────────────────────────── */
.final {
  text-align: center;
  padding: 70px 34px;
  border-radius: 26px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
}
.final h2 { margin-bottom: 18px; }
.final p {
  color: var(--muted);
  max-width: 520px; margin: 0 auto 36px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 34px 0 44px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
footer b { color: var(--text); font-weight: 600; }

@media (max-width: 760px) {
  .steps { flex-direction: column; }
  .hero { min-height: 82vh; }
}

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