/* ═══════════════════════════════════════════════════════════════════
   NAMEHUB.IO — V3 Premium CSS
   ═══════════════════════════════════════════════════════════════════ */

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #06060f;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

/* ── Design Tokens ──────────────────────────────────────────────── */
:root {
  --bg:        #06060f;
  --bg1:       #0b0b1a;
  --bg2:       #0f0f22;
  --card:      rgba(255,255,255,0.03);
  --card-hov:  rgba(255,255,255,0.06);
  --border:    rgba(255,255,255,0.08);
  --border-hov:rgba(99,102,241,0.5);

  --p1:   #6366f1;
  --p2:   #8b5cf6;
  --p3:   #a78bfa;
  --cyan: #06b6d4;
  --gold: #f59e0b;
  --green:#10b981;
  --red:  #ef4444;

  --text:  #f1f5f9;
  --muted: #94a3b8;
  --dim:   #64748b;

  --grad: linear-gradient(135deg, var(--p1), var(--p2));
  --grad2: linear-gradient(135deg, var(--p2), var(--cyan));

  --glow:   0 0 40px rgba(99,102,241,0.25);
  --glow-sm:0 0 20px rgba(99,102,241,0.15);
  --shadow: 0 8px 40px rgba(0,0,0,0.5);

  --r: 14px;
  --r-sm: 8px;
  --r-lg: 20px;
}

/* ── Utilities ──────────────────────────────────────────────────── */
.container  { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.text-center{ text-align: center; }
.w-full     { width: 100%; }
.sr-only    { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }

/* Scroll reveal — JS adds .visible */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Gradient text ──────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--p3) 40%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold), #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Shimmer animation ──────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, #fff 0%, var(--p3) 30%, var(--cyan) 50%, var(--p3) 70%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ── Animated background blobs ──────────────────────────────────── */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-blobs::before,
.bg-blobs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.bg-blobs::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--p1), transparent 70%);
  top: -200px; left: -200px;
  animation: blobDrift1 12s ease-in-out infinite alternate;
}
.bg-blobs::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--p2), transparent 70%);
  bottom: -150px; right: -150px;
  animation: blobDrift2 15s ease-in-out infinite alternate;
}
@keyframes blobDrift1 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(80px, 60px) scale(1.15); }
}
@keyframes blobDrift2 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-60px, -80px) scale(1.2); }
}

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(6,6,15,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: .9rem 0;
  transition: background .3s;
}
.site-header.scrolled {
  background: rgba(6,6,15,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; }
.site-logo { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.logo-text  { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -.5px; }
.logo-dot   { color: var(--p1); }
.logo-img   { height: 38px; width: auto; max-width: 160px; object-fit: contain; object-position: left center; }

/* Header live search */
.header-search {
  flex: 1; max-width: 420px;
  position: relative;
}
.header-search input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  padding: .55rem 1.2rem .55rem 2.6rem;
  outline: none;
  font-size: .88rem;
  transition: border-color .2s, background .2s;
}
.header-search input:focus {
  border-color: var(--p1);
  background: rgba(99,102,241,0.07);
}
.header-search input::placeholder { color: var(--dim); }
.header-search .search-icon {
  position: absolute; left: .9rem; top: 50%;
  transform: translateY(-50%);
  color: var(--dim); pointer-events: none;
}
.search-dropdown {
  position: absolute; top: calc(100% + .5rem); left: 0; right: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  z-index: 300;
  display: none;
  box-shadow: var(--shadow);
}
.search-dropdown.open { display: block; }
.search-result-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem 1rem;
  cursor: pointer;
  transition: background .15s;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: rgba(99,102,241,0.1); }
.search-result-name { font-weight: 600; color: #fff; }
.search-result-price { color: var(--gold); font-weight: 700; font-size: .82rem; }
.search-result-empty { padding: 1rem; text-align: center; color: var(--muted); font-size: .85rem; }

.site-nav { display: flex; gap: 1.75rem; margin-left: auto; }
.site-nav a { color: var(--muted); font-size: .88rem; font-weight: 500; transition: color .2s; white-space: nowrap; }
.site-nav a:hover { color: #fff; }

.nav-cta {
  background: var(--grad);
  color: #fff;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: .85; transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; margin-left: auto; }

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--bg1); border-bottom: 1px solid var(--border);
}
.mobile-nav a { padding: .9rem 1.5rem; border-bottom: 1px solid var(--border); color: var(--muted); font-weight: 500; }
.mobile-nav a:hover { color: #fff; background: var(--card); }
.mobile-nav.open { display: flex; }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 5rem 0 0;
  overflow: hidden;
  z-index: 1;
}

/* Radial grid background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(99,102,241,.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 60%, rgba(139,92,246,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 10% 70%, rgba(6,182,212,.08) 0%, transparent 55%);
  pointer-events: none;
}

/* Dot grid */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.3);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .78rem; font-weight: 600; color: var(--p3);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 1.75rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--p1);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Hero search */
.hero-search-wrap { position: relative; max-width: 580px; margin: 0 auto 2rem; }
.hero-search {
  display: flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  overflow: visible;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.hero-search:focus-within {
  border-color: var(--p1);
  box-shadow: 0 4px 24px rgba(0,0,0,.3), 0 0 0 4px rgba(99,102,241,.12);
}
.hero-search input {
  flex: 1; background: none; border: none; outline: none;
  padding: 1rem 1.5rem;
  color: var(--text); font-size: 1rem;
}
.hero-search input::placeholder { color: var(--dim); }
.hero-search button {
  background: var(--grad);
  color: #fff; border: none;
  padding: .8rem 1.8rem;
  border-radius: 0 50px 50px 0;
  font-weight: 700; font-size: .9rem;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}
.hero-search button:hover { opacity: .85; }

/* Hero TLD pills */
.hero-tlds {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem;
  margin-bottom: 4rem;
}
.hero-tld-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .9rem;
  border-radius: 50px;
  border: 1px solid;
  font-size: .78rem; font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.hero-tld-pill:hover { transform: translateY(-2px); }

/* ── Row layout for domain page related section ─────────────────── */
.domains-rows {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.domains-rows .domain-card {
  flex-direction: row;
  align-items: stretch;
  border-radius: var(--r);
}
.domains-rows .card-accent {
  width: 4px;
  height: auto;
  background: linear-gradient(180deg, var(--glow-color, var(--p1)), transparent);
  flex-shrink: 0;
}
.domains-rows .card-featured-badge {
  top: .6rem; right: .75rem;
}
.domains-rows .card-logo-wrap {
  padding: 1rem 1rem;
  flex-shrink: 0;
  align-items: center;
}
.domains-rows .card-body {
  flex: 1;
  padding: 1rem .5rem 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.domains-rows .card-price-wrap {
  padding: 1rem 1.25rem;
  border-top: none;
  border-left: 1px solid var(--border);
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-width: 130px;
}
.domains-rows .card-view-btn {
  opacity: 1;
  transform: none;
  font-size: .72rem;
  margin-top: .3rem;
}
@media (max-width: 600px) {
  .domains-rows .domain-card { flex-direction: column; }
  .domains-rows .card-accent { width: auto; height: 4px; }
  .domains-rows .card-price-wrap { border-top: 1px solid var(--border); border-left: none; flex-direction: row; min-width: 0; }
}

/* ── Stats Bar ──────────────────────────────────────────────────── */
.stats-section {
  padding: 3.5rem 0;
  position: relative; z-index: 1;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .3s, transform .3s;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity .3s;
}
.stat-card:hover { border-color: var(--p1); transform: translateY(-3px); }
.stat-card:hover::before { opacity: .04; }
.stat-value {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: .4rem;
  font-variant-numeric: tabular-nums;
}
.stat-value.c-purple { color: var(--p3); }
.stat-value.c-cyan   { color: var(--cyan); }
.stat-value.c-gold   { color: var(--gold); }
.stat-value.c-green  { color: var(--green); }
.stat-label { color: var(--muted); font-size: .82rem; font-weight: 500; text-transform: uppercase; letter-spacing: .07em; }

/* ── Category Showcase ──────────────────────────────────────────── */
.categories-section { padding: 4rem 0; position: relative; z-index: 1; }
.section-label {
  display: flex; align-items: center; gap: .75rem;
  font-size: .75rem; font-weight: 700;
  color: var(--p3);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: .75rem;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--grad);
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: .5rem;
}
.section-sub { color: var(--muted); font-size: 1rem; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.category-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all .25s;
  position: relative; overflow: hidden;
}
.category-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform .25s;
}
.category-card:hover {
  border-color: var(--p1);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.category-card:hover::after { transform: scaleX(1); }
.category-tld {
  font-size: 1.5rem; font-weight: 900;
  margin-bottom: .5rem;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.category-count { color: var(--muted); font-size: .78rem; font-weight: 600; }

/* ── Category Showcase (new design) ────────────────────────────── */
.cat-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.cat-showcase-card {
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all .28s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.cat-showcase-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, var(--cat-color, var(--p1)), transparent);
  opacity: .08;
  transition: opacity .28s;
}
.cat-showcase-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cat-color, var(--p1)), transparent);
  transform: scaleX(0);
  transition: transform .28s;
}
.cat-showcase-card:hover {
  border-color: var(--cat-color, var(--p1));
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.35), 0 0 0 1px var(--cat-color, var(--p1));
}
.cat-showcase-card:hover::before { opacity: .14; }
.cat-showcase-card:hover::after  { transform: scaleX(1); }
.cat-showcase-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: .85rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.cat-showcase-name {
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.2px;
  margin-bottom: .35rem;
  font-family: 'Inter', sans-serif;
}
.cat-showcase-count {
  font-size: .72rem;
  font-weight: 600;
  color: var(--cat-color, var(--muted));
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Featured Domains ───────────────────────────────────────────── */
.featured-section { padding: 4rem 0; position: relative; z-index: 1; }

.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.5rem; gap: 1rem;
}

/* ── Domain Cards ───────────────────────────────────────────────── */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}

.domain-card {
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.16,1,.3,1),
              border-color .3s,
              box-shadow .3s;
  position: relative;
  display: flex; flex-direction: column;
}
.domain-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--glow-color, var(--p1)), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.domain-card:hover {
  transform: translateY(-6px);
  border-color: var(--glow-color, var(--p1));
  box-shadow: 0 16px 48px rgba(0,0,0,.45), 0 0 0 1px var(--glow-color, var(--p1));
}
.domain-card:hover::before { opacity: .07; }

.domain-card.card-sold { opacity: .4; pointer-events: none; }

/* Card top accent line */
.card-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--glow-color, var(--p1)), transparent);
}

.card-logo-wrap {
  padding: 1.25rem 1.25rem .75rem;
  display: flex; align-items: center; gap: .85rem;
}
.card-logo-img {
  width: 48px; height: 48px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255,255,255,.07);
  padding: 4px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.card-logo-initials {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: #fff;
  letter-spacing: -.5px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.card-tld-pill {
  display: inline-block;
  font-size: .68rem; font-weight: 800;
  padding: .22rem .65rem;
  border-radius: 50px;
  letter-spacing: .04em;
}

.card-body { padding: 0 1.25rem .85rem; flex: 1; }
.card-name {
  font-size: 1.05rem; font-weight: 800; color: #fff;
  word-break: break-word;
  margin-bottom: .2rem;
  line-height: 1.25;
  letter-spacing: -.2px;
}
.card-category {
  font-size: .72rem; color: var(--dim);
  text-transform: uppercase; letter-spacing: .04em; font-weight: 500;
}

/* Price row */
.card-price-wrap {
  padding: .8rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem;
  background: rgba(0,0,0,.15);
}
.card-price {
  font-size: 1.1rem; font-weight: 900; color: #fff;
  letter-spacing: -.3px;
}
.card-price.price-contact { font-size: .85rem; color: var(--p3); font-weight: 600; }
.card-price.price-sold    { font-size: .8rem; color: var(--red); font-weight: 700; letter-spacing: .04em; }
.card-price.price-offer   { font-size: .8rem; color: var(--gold); font-weight: 700; }
.card-neg { font-size: .68rem; color: var(--gold); background: rgba(245,158,11,.12); padding: .2rem .5rem; border-radius: 4px; font-weight: 700; }

.card-view-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .75rem; font-weight: 700;
  color: var(--p3);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .22s, transform .22s;
  white-space: nowrap;
}
.domain-card:hover .card-view-btn { opacity: 1; transform: translateX(0); }

/* Featured card */
.domain-card.card-featured {
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(139,92,246,.05));
  border-color: rgba(99,102,241,.3);
}
.card-featured-badge {
  position: absolute; top: .85rem; right: .85rem;
  background: var(--grad);
  color: #fff; font-size: .62rem; font-weight: 800;
  padding: .18rem .6rem; border-radius: 50px;
  letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(99,102,241,.4);
}

/* ── Browse Page ────────────────────────────────────────────────── */
.page-hero {
  padding: 3.5rem 0 2rem;
  position: relative; z-index: 1;
}
.page-hero-inner {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; letter-spacing: -1px; }
.page-hero p  { color: var(--muted); margin-top: .4rem; }

/* Filter pills */
.filter-bar {
  background: var(--bg1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky; top: 64px;
  z-index: 100;
  backdrop-filter: blur(16px);
}
.filter-bar-inner {
  display: flex; align-items: center; gap: .75rem;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.filter-bar-inner::-webkit-scrollbar { display: none; }

.pill-group { display: flex; gap: .4rem; flex-shrink: 0; }
.filter-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .4rem .9rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: none;
  color: var(--muted);
  font-size: .8rem; font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
}
.filter-pill:hover { color: #fff; border-color: var(--muted); }
.filter-pill.active {
  background: var(--p1);
  border-color: var(--p1);
  color: #fff;
  box-shadow: 0 0 16px rgba(99,102,241,.3);
}
.filter-sep { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }
.filter-count {
  background: rgba(255,255,255,.1);
  border-radius: 50px;
  padding: .05rem .4rem;
  font-size: .68rem;
}
.filter-pill.active .filter-count { background: rgba(255,255,255,.2); }

.sort-select {
  margin-left: auto; flex-shrink: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: .4rem .8rem;
  outline: none;
  font-size: .82rem;
  cursor: pointer;
  transition: border-color .2s;
}
.sort-select:focus { border-color: var(--p1); }
.sort-select option { background: var(--bg2); }

.browse-layout {
  padding: 2rem 0 4rem;
  position: relative; z-index: 1;
}

.domains-main {}

/* Pagination */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: .4rem; margin-top: 3rem; flex-wrap: wrap;
}
.page-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .85rem; font-weight: 600;
  transition: all .2s;
}
.page-btn:hover { color: #fff; border-color: var(--muted); }
.page-btn.active { background: var(--p1); border-color: var(--p1); color: #fff; box-shadow: 0 0 16px rgba(99,102,241,.3); }
.page-btn.wide { width: auto; padding: 0 1rem; }

.empty-state { text-align: center; padding: 5rem 2rem; color: var(--muted); }
.empty-state svg { width: 48px; height: 48px; margin: 0 auto 1rem; opacity: .3; }
.empty-state h3 { font-size: 1.1rem; color: var(--text); margin-bottom: .5rem; }

/* ── Domain Detail Page ─────────────────────────────────────────── */
.domain-page { padding: 2.5rem 0 5rem; position: relative; z-index: 1; }

.breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .82rem; color: var(--dim); margin-bottom: 2.5rem;
}
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--p3); }
.breadcrumb svg { width: 12px; height: 12px; }

.domain-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Left panel */
.domain-sidebar {
  position: sticky; top: 80px;
}
.domain-logo-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-bottom: 1.25rem;
}
.domain-logo-big {
  width: 120px; height: 120px;
  border-radius: var(--r);
  object-fit: contain;
  object-position: center;
  margin: 0 auto 1rem;
  background: rgba(255,255,255,.06);
  padding: .6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  display: block;
}
.domain-logo-initials-big {
  width: 120px; height: 120px;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; font-weight: 900; color: #fff;
  letter-spacing: -2px;
  margin: 0 auto 1rem;
}
.domain-name-big {
  font-size: 1.6rem; font-weight: 900; color: #fff;
  word-break: break-all; letter-spacing: -.5px;
  margin-bottom: .5rem;
}

/* Price box */
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.price-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .4rem; }
.price-amount {
  font-size: 2.6rem; font-weight: 900; color: #fff;
  letter-spacing: -1.5px; line-height: 1; margin-bottom: .3rem;
}
.price-amount.contact-price { font-size: 1.6rem; color: var(--p3); }
.price-obo { color: var(--gold); font-size: .85rem; font-weight: 600; margin-bottom: 1.25rem; }

/* Action buttons */
.action-stack { display: flex; flex-direction: column; gap: .75rem; }

/* SafePay trust */
.safepay-badge {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--r-sm);
  padding: .8rem 1rem;
  font-size: .8rem; color: var(--muted);
  margin-top: .75rem;
}
.safepay-badge svg { color: var(--green); flex-shrink: 0; width: 18px; height: 18px; }
.safepay-badge strong { color: var(--green); }

/* Right panel */
.domain-content {}
.domain-meta-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.meta-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .9rem; border-radius: 50px;
  font-size: .78rem; font-weight: 700;
  border: 1px solid;
}

.domain-desc-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.domain-desc-block h3 { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; margin-bottom: .75rem; }
.domain-desc-block p  { color: var(--muted); line-height: 1.75; }

.domain-stats-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1.5rem;
}
.domain-stat-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 1rem; text-align: center;
}
.domain-stat-box .val { font-size: 1.2rem; font-weight: 800; color: #fff; }
.domain-stat-box .lbl { font-size: .72rem; color: var(--muted); margin-top: .2rem; }

/* Inquiry form */
.inquiry-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.inquiry-card h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 600; color: var(--muted); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .05em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--r-sm);
  padding: .7rem 1rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--p1);
  background: rgba(99,102,241,.05);
}
.form-group .opt { color: var(--dim); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* Related domains */
.related-section { margin-top: 2rem; }
.related-section h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.25rem; }

/* ── How It Works ───────────────────────────────────────────────── */
.hiw-page { padding: 3rem 0 5rem; position: relative; z-index: 1; max-width: 860px; }
.hiw-timeline { position: relative; }
.hiw-timeline::before {
  content: ''; position: absolute; left: 31px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--p1), var(--p2), transparent);
}
.hiw-item {
  display: flex; gap: 2rem; margin-bottom: 3rem; position: relative;
}
.hiw-num {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: #fff;
  box-shadow: 0 0 30px rgba(99,102,241,.4);
  z-index: 1;
}
.hiw-body {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem; flex: 1;
  transition: border-color .3s;
}
.hiw-body:hover { border-color: var(--p1); }
.hiw-body h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
.hiw-body p  { color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }

.safepay-box {
  background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--r-sm); padding: 1.25rem 1.5rem; margin-top: 1rem;
}
.safepay-box h4 { font-size: .9rem; font-weight: 700; color: var(--green); margin-bottom: .75rem; }
.safepay-box ol { color: var(--muted); padding-left: 1.2rem; font-size: .9rem; }
.safepay-box ol li { margin-bottom: .4rem; }
.safepay-fee { margin-top: .75rem; color: var(--gold); font-weight: 700; font-size: .9rem; }

.hiw-list { list-style: none; }
.hiw-list li { display: flex; align-items: center; gap: .6rem; color: var(--muted); font-size: .9rem; margin-bottom: .4rem; }
.hiw-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.hiw-faq { margin-top: 3.5rem; }
.hiw-faq h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: .6rem; }
.faq-item summary { padding: 1.1rem 1.4rem; cursor: pointer; font-weight: 600; font-size: .95rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--p3); font-weight: 300; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 1.4rem 1.1rem; color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* ── Contact ────────────────────────────────────────────────────── */
.contact-page { padding: 3rem 0 5rem; position: relative; z-index: 1; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3.5rem; align-items: start; }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: .75rem; }
.contact-info p  { color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }
.contact-facts { display: flex; flex-direction: column; gap: 1rem; }
.contact-fact { display: flex; align-items: center; gap: 1rem; }
.contact-fact-icon {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: rgba(99,102,241,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--p3); flex-shrink: 0;
}
.contact-fact-icon svg { width: 18px; height: 18px; }
.contact-fact-label { font-size: .72rem; color: var(--dim); text-transform: uppercase; letter-spacing: .06em; }
.contact-fact-val   { font-weight: 600; color: #fff; }
.contact-form-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2.5rem;
}
.contact-form-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 50px;
  font-weight: 700; font-size: .9rem; cursor: pointer;
  transition: all .2s; border: none;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 20px rgba(99,102,241,.3);
}
.btn-primary:hover { opacity: .85; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(99,102,241,.4); }

.btn-outline {
  background: transparent; color: var(--p3);
  border: 1px solid rgba(99,102,241,.4);
}
.btn-outline:hover { background: rgba(99,102,241,.1); border-color: var(--p1); }

.btn-ghost {
  background: rgba(255,255,255,.05); color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: var(--muted); }

.btn-safepay {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000; font-weight: 800;
  box-shadow: 0 4px 20px rgba(245,158,11,.25);
}
.btn-safepay:hover { opacity: .9; transform: translateY(-2px); }

.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.2rem; font-size: .8rem; }
.btn-full { width: 100%; }

/* ── Alerts ─────────────────────────────────────────────────────── */
.alert { padding: .9rem 1.2rem; border-radius: var(--r-sm); margin-bottom: 1.25rem; font-size: .9rem; }
.alert-success { background: rgba(16,185,129,.1);  border: 1px solid rgba(16,185,129,.25); color: var(--green); }
.alert-error   { background: rgba(239,68,68,.1);   border: 1px solid rgba(239,68,68,.25);  color: var(--red); }
.alert-info    { background: rgba(99,102,241,.1);  border: 1px solid rgba(99,102,241,.25); color: var(--p3); }

/* ── How It Works mini (homepage) ──────────────────────────────── */
.hiw-mini-section { padding: 4rem 0; position: relative; z-index: 1; }
.hiw-mini-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.hiw-mini-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem 1.75rem;
  transition: all .3s;
}
.hiw-mini-card:hover { border-color: var(--p1); transform: translateY(-4px); }
.hiw-mini-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.hiw-mini-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.hiw-mini-card p  { color: var(--muted); font-size: .88rem; line-height: 1.65; }

/* ── SafePay CTA Banner ─────────────────────────────────────────── */
.safepay-banner {
  position: relative; z-index: 1;
  margin: 0 0 4rem;
  background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(139,92,246,.08));
  border-top: 1px solid rgba(99,102,241,.2);
  border-bottom: 1px solid rgba(99,102,241,.2);
  padding: 3.5rem 0;
  overflow: hidden;
}
.safepay-banner::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,.15), transparent 70%);
  pointer-events: none;
}
.safepay-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.safepay-banner-text h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: .4rem; }
.safepay-banner-text p  { color: var(--muted); }
.safepay-banner-steps {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.sb-step { display: flex; align-items: center; gap: .6rem; }
.sb-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grad); color: #fff;
  font-size: .75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sb-step-text { font-size: .85rem; color: var(--muted); }
.sb-step-text strong { color: #fff; display: block; font-size: .9rem; }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg1);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text { font-size: 1.3rem; }
.footer-brand p { color: var(--muted); font-size: .88rem; margin-top: .75rem; line-height: 1.65; max-width: 280px; }
.footer-col h4 { font-size: .72rem; font-weight: 700; color: var(--dim); text-transform: uppercase; letter-spacing: .09em; margin-bottom: 1rem; }
.footer-col a  { display: block; color: var(--muted); font-size: .88rem; margin-bottom: .5rem; transition: color .2s; }
.footer-col a:hover { color: var(--p3); }
.footer-safepay { color: var(--muted); font-size: .85rem; line-height: 1.7; }
.footer-safepay strong { color: #fff; }
.footer-safepay .fee  { color: var(--gold); font-size: .8rem; display: block; margin-top: .25rem; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--dim); font-size: .82rem; }
.footer-bottom .footer-links { display: flex; gap: 1.25rem; }
.footer-bottom .footer-links a { color: var(--dim); font-size: .82rem; transition: color .2s; }
.footer-bottom .footer-links a:hover { color: var(--muted); }

/* ════════════════════════════════════════════════════════════════════
   V3 DOMAIN DETAIL PAGE
   ════════════════════════════════════════════════════════════════════ */

.dp-page { padding: 2.5rem 0 5rem; position: relative; z-index: 1; }

/* Layout: left info (flex:1) | right sidebar (fixed 360px) */
.dp-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

/* ── Left: hero block ──────────────────────────────────────────── */
.dp-hero-block {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.dp-logo-wrap { flex-shrink: 0; }
.dp-logo-img {
  width: 110px; height: 110px;
  border-radius: var(--r);
  object-fit: contain;
  background: rgba(255,255,255,.07);
  padding: .5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  display: block;
}
.dp-logo-initials {
  width: 110px; height: 110px;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; font-weight: 900; color: #fff;
  letter-spacing: -2px;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.dp-hero-info { flex: 1; min-width: 0; }
.dp-for-sale-label {
  font-size: .75rem; font-weight: 700;
  color: var(--p3); text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: .5rem;
}
.dp-domain-name {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.05;
  word-break: break-word;
  margin-bottom: .85rem;
}
.dp-badges {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-bottom: 1.1rem;
}
.dp-badge {
  display: inline-flex; align-items: center;
  padding: .28rem .8rem; border-radius: 50px;
  border: 1px solid;
  font-size: .75rem; font-weight: 700;
}

/* Spaceship-style trust checkmarks */
.dp-trust-list {
  list-style: none;
  display: flex; flex-direction: column; gap: .4rem;
}
.dp-trust-list li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .88rem; color: var(--muted);
}
.dp-trust-list li svg {
  width: 14px; height: 14px;
  color: var(--green); flex-shrink: 0;
}

/* Stats row */
.dp-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-bottom: 1.75rem;
}
.dp-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem; text-align: center;
}
.dp-stat-val {
  font-size: 1.15rem; font-weight: 800; color: #fff;
  letter-spacing: -.3px; margin-bottom: .25rem;
}
.dp-stat-lbl {
  font-size: .68rem; color: var(--dim);
  text-transform: uppercase; letter-spacing: .05em; font-weight: 600;
}

/* Content blocks */
.dp-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
}
.dp-block-title {
  font-size: .72rem; font-weight: 700;
  color: var(--dim); text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: .65rem;
}
.dp-block-text {
  color: var(--muted); line-height: 1.75; font-size: .93rem;
}

/* Inquiry form */
.dp-inquiry {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-top: 1.25rem;
}
.dp-inquiry-title {
  display: flex; align-items: center; gap: .65rem;
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* ── Right: Purchase Card ──────────────────────────────────────── */
.dp-sidebar { position: sticky; top: 80px; }

.dp-purchase-card {
  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08);
}

.dp-pc-label {
  font-size: .7rem; font-weight: 700;
  color: var(--dim); text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: .4rem;
}
.dp-pc-price {
  font-size: 2.6rem; font-weight: 900;
  color: #fff; letter-spacing: -2px;
  line-height: 1; margin-bottom: .2rem;
}
.dp-pc-price--contact {
  font-size: 1.4rem; color: var(--p3); letter-spacing: -.5px;
}
.dp-pc-obo {
  font-size: .82rem; color: var(--gold);
  font-weight: 600; margin-bottom: .25rem;
}
.dp-pc-sep {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

/* Buy buttons */
.dp-pc-actions { display: flex; flex-direction: column; gap: .6rem; }

.dp-buy-btn {
  display: flex; align-items: center; gap: .9rem;
  padding: .9rem 1.1rem;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
}
.dp-buy-btn:hover { transform: translateY(-2px); }
.dp-buy-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.dp-buy-icon svg { width: 18px; height: 18px; }
.dp-buy-text {
  flex: 1;
  display: flex; flex-direction: column; gap: .1rem;
}
.dp-buy-text strong { font-size: .95rem; font-weight: 700; display: block; color: #fff; }
.dp-buy-text small  { font-size: .72rem; opacity: .7; }
.dp-buy-arrow { width: 14px; height: 14px; flex-shrink: 0; opacity: .5; }
.dp-buy-btn:hover .dp-buy-arrow { opacity: 1; transform: translateX(3px); }
.dp-buy-arrow { transition: opacity .2s, transform .2s; }

/* Spaceship button — purple/indigo */
.dp-buy-spaceship {
  background: linear-gradient(135deg, rgba(99,102,241,.18), rgba(139,92,246,.12));
  border-color: rgba(99,102,241,.4);
}
.dp-buy-spaceship:hover {
  background: linear-gradient(135deg, rgba(99,102,241,.28), rgba(139,92,246,.2));
  border-color: rgba(99,102,241,.7);
  box-shadow: 0 6px 24px rgba(99,102,241,.25);
}
.dp-buy-spaceship .dp-buy-icon {
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: #fff;
}
.dp-buy-spaceship .dp-buy-text small { color: var(--p3); }

/* GoDaddy button — green */
.dp-buy-godaddy {
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(5,150,105,.08));
  border-color: rgba(16,185,129,.3);
}
.dp-buy-godaddy:hover {
  background: linear-gradient(135deg, rgba(16,185,129,.2), rgba(5,150,105,.14));
  border-color: rgba(16,185,129,.6);
  box-shadow: 0 6px 24px rgba(16,185,129,.18);
}
.dp-buy-godaddy .dp-buy-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
}
.dp-buy-godaddy .dp-buy-text small { color: var(--green); }

/* "or discuss first" divider */
.dp-or {
  text-align: center; position: relative;
}
.dp-or::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 50%;
  height: 1px; background: var(--border);
}
.dp-or span {
  position: relative; display: inline-block;
  background: var(--bg2);
  padding: 0 .75rem;
  font-size: .72rem; color: var(--dim);
  font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
}

/* Offer / contact button */
.dp-offer-btn {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  width: 100%; padding: .8rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--muted); font-size: .88rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
  text-decoration: none;
}
.dp-offer-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.dp-offer-btn:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--muted); color: #fff;
}

/* Trust checklist in card (Atom-style) */
.dp-pc-trust {
  list-style: none;
  display: flex; flex-direction: column; gap: .85rem;
}
.dp-pc-trust li {
  display: flex; align-items: flex-start; gap: .9rem;
}
.dp-pc-trust li svg {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--green);
  margin-top: .1rem;
}
.dp-pc-trust li div { display: flex; flex-direction: column; gap: .1rem; }
.dp-pc-trust li strong { font-size: .84rem; color: #fff; font-weight: 700; }
.dp-pc-trust li span  { font-size: .75rem; color: var(--muted); }

/* Related domains */
.dp-related { margin-top: 1rem; }
.dp-related-title {
  font-size: 1.1rem; font-weight: 700;
  color: #fff; margin-bottom: 1.1rem;
}

/* Bottom trust bar (Spaceship-style) */
.dp-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.dp-tb-item {
  display: flex; align-items: flex-start; gap: .9rem;
}
.dp-tb-item svg {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--p3);
  margin-top: .1rem;
}
.dp-tb-item strong { font-size: .88rem; color: #fff; display: block; margin-bottom: .2rem; }
.dp-tb-item span   { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .domain-layout     { grid-template-columns: 260px 1fr; }
  .dp-layout         { grid-template-columns: 1fr 320px; }
  .stats-grid        { grid-template-columns: repeat(2,1fr); }
  .cat-showcase-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .dp-layout         { grid-template-columns: 1fr; }
  .dp-sidebar        { position: static; }
  .dp-stats-row      { grid-template-columns: repeat(2,1fr); }
  .dp-trust-bar      { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .site-nav, .header-search { display: none; }
  .nav-toggle { display: block; }
  .hero { min-height: auto; padding: 4rem 0 0; }
  .hero-title { letter-spacing: -1px; }
  .domain-layout { grid-template-columns: 1fr; }
  .domain-sidebar { position: static; }
  .hiw-mini-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .safepay-banner-inner { flex-direction: column; text-align: center; }
  .page-hero-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .hiw-item { flex-direction: column; }
  .hiw-timeline::before { display: none; }
  .domain-stats-row { grid-template-columns: 1fr 1fr; }
  .dp-hero-block { flex-direction: column; gap: 1.25rem; }
  .dp-domain-name { font-size: 1.9rem; }
}
@media (max-width: 480px) {
  .domains-grid          { grid-template-columns: repeat(2,1fr); }
  .footer-grid           { grid-template-columns: 1fr; }
  .stats-grid            { grid-template-columns: 1fr 1fr; }
  .category-grid         { grid-template-columns: repeat(3,1fr); }
  .cat-showcase-grid     { grid-template-columns: repeat(2,1fr); }
  .footer-bottom         { flex-direction: column; text-align: center; }
  .dp-stats-row          { grid-template-columns: repeat(2,1fr); }
  .dp-pc-price           { font-size: 2rem; }
}

/* ════════════════════════════════════════════════════════════════════
   V3 BROWSE PAGE (Atom-style)
   ════════════════════════════════════════════════════════════════════ */

/* ── Page wrapper ──────────────────────────────────────────────────── */
.bv3-page { padding: 2.5rem 0 5rem; position: relative; z-index: 1; }

/* ── Page header ───────────────────────────────────────────────────── */
.bv3-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.bv3-title {
  font-size: clamp(1.6rem,3.5vw,2.2rem);
  font-weight: 900; color: #fff;
  letter-spacing: -1px; line-height: 1.1;
}
.bv3-subtitle {
  color: var(--muted); margin-top: .3rem; font-size: .9rem;
}
.bv3-clear-link {
  color: var(--p3); font-weight: 600; font-size: .82rem;
  margin-left: .5rem;
  transition: color .2s;
}
.bv3-clear-link:hover { color: #fff; }
.bv3-controls { display: flex; align-items: center; gap: .6rem; }
.bv3-sort {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--r-sm);
  padding: .5rem .9rem;
  outline: none; font-size: .85rem; cursor: pointer;
  transition: border-color .2s;
}
.bv3-sort:focus { border-color: var(--p1); }
.bv3-sort option { background: var(--bg2); }
.bv3-filter-toggle {
  display: none; /* shown only on mobile */
  align-items: center; gap: .4rem;
  padding: .5rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--muted); font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.bv3-filter-toggle svg { width: 14px; height: 14px; }
.bv3-filter-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--p1); display: inline-block; margin-left: .2rem;
}

/* ── Layout ────────────────────────────────────────────────────────── */
.bv3-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}

/* ── Sidebar ───────────────────────────────────────────────────────── */
.bv3-sidebar {
  position: sticky; top: 76px;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.bv3-sidebar::-webkit-scrollbar { width: 4px; }
.bv3-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* sidebar section */
.bv3-sf {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem 1.1rem;
  margin-bottom: .75rem;
}

/* keyword search in sidebar */
.bv3-search-wrap {
  position: relative;
}
.bv3-search-wrap svg {
  position: absolute; left: .75rem; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px; color: var(--dim);
  pointer-events: none;
}
.bv3-search-wrap input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--r-sm);
  padding: .55rem .8rem .55rem 2.1rem;
  outline: none; font-size: .84rem;
  transition: border-color .2s;
}
.bv3-search-wrap input:focus { border-color: var(--p1); background: rgba(99,102,241,.05); }
.bv3-search-wrap input::placeholder { color: var(--dim); }

/* section title */
.bv3-sf-title {
  font-size: .68rem; font-weight: 700;
  color: var(--dim); text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: .65rem;
}

/* option list */
.bv3-opt-list { display: flex; flex-direction: column; gap: .15rem; }
.bv3-opt {
  display: flex; align-items: center; justify-content: space-between;
  padding: .4rem .55rem;
  border-radius: 7px;
  border: none; background: none;
  cursor: pointer; transition: background .15s;
  text-align: left; width: 100%;
}
.bv3-opt:hover { background: rgba(255,255,255,.05); }
.bv3-opt.active { background: rgba(99,102,241,.12); }
.bv3-opt-label {
  font-size: .84rem; font-weight: 500; color: var(--muted);
  transition: color .15s;
}
.bv3-opt:hover .bv3-opt-label,
.bv3-opt.active .bv3-opt-label { color: #fff; }
.bv3-opt-count {
  font-size: .7rem; font-weight: 600;
  color: var(--dim);
  background: rgba(255,255,255,.06);
  padding: .1rem .4rem; border-radius: 50px;
  flex-shrink: 0;
}
.bv3-opt.active .bv3-opt-count { background: rgba(99,102,241,.2); color: var(--p3); }
.bv3-hidden { display: none; }
.bv3-show-more {
  margin-top: .4rem;
  font-size: .76rem; color: var(--p3); font-weight: 600;
  background: none; border: none; cursor: pointer;
  padding: .25rem .55rem; transition: color .2s;
}
.bv3-show-more:hover { color: #fff; }

/* Price form */
.bv3-price-form {
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
}
.bv3-price-form input {
  width: 72px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--text); border-radius: var(--r-sm);
  padding: .42rem .5rem; outline: none; font-size: .8rem;
  transition: border-color .2s;
}
.bv3-price-form input:focus { border-color: var(--p1); }
.bv3-price-dash { color: var(--dim); font-size: .8rem; }
.bv3-go-btn {
  padding: .42rem .8rem;
  background: var(--grad);
  border: none; border-radius: var(--r-sm);
  color: #fff; font-size: .78rem; font-weight: 700;
  cursor: pointer; transition: opacity .2s;
}
.bv3-go-btn:hover { opacity: .85; }
.bv3-active-price {
  margin-top: .5rem;
  font-size: .78rem; color: var(--p3); font-weight: 600;
  display: flex; align-items: center; gap: .4rem;
}
.bv3-remove-filter { color: var(--dim); transition: color .2s; }
.bv3-remove-filter:hover { color: var(--red); }

.bv3-clear-all {
  display: block; text-align: center;
  padding: .65rem;
  background: rgba(239,68,68,.07);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: var(--r-sm);
  color: var(--red); font-size: .82rem; font-weight: 600;
  margin-top: .25rem; transition: all .2s;
}
.bv3-clear-all:hover { background: rgba(239,68,68,.12); color: #fff; }

/* ── Active filter chips ────────────────────────────────────────────── */
.bv3-active-chips {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-bottom: 1.1rem;
}
.bv3-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .75rem;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 50px;
  font-size: .76rem; font-weight: 600; color: var(--p3);
}
.bv3-chip a { color: var(--dim); transition: color .15s; }
.bv3-chip a:hover { color: var(--red); }

/* ════════════════════════════════════════════════════════════════════
   ATOM-STYLE DOMAIN CARDS  (mc = marketplace card)
   ════════════════════════════════════════════════════════════════════ */
.mc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.mc {
  display: flex; flex-direction: column;
  background: linear-gradient(160deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.018) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer;
  text-decoration: none;
  transition: transform .28s cubic-bezier(.16,1,.3,1),
              border-color .28s,
              box-shadow .28s;
  position: relative;
}
.mc::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, var(--mc-c, var(--p1)), transparent 65%);
  opacity: 0; transition: opacity .28s; pointer-events: none;
}
.mc:hover {
  transform: translateY(-5px);
  border-color: var(--mc-c, var(--p1));
  box-shadow: 0 14px 44px rgba(0,0,0,.45), 0 0 0 1px var(--mc-c, var(--p1));
}
.mc:hover::after { opacity: .06; }
.mc.mc-feat {
  background: linear-gradient(160deg, rgba(99,102,241,.1), rgba(139,92,246,.05));
  border-color: rgba(99,102,241,.25);
}
.mc.mc-unavail { opacity: .45; pointer-events: none; }

/* Visual hero area — logo takes centre stage */
.mc-visual {
  position: relative;
  height: 172px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.18);
  overflow: hidden;
  flex-shrink: 0;
}
.mc-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, var(--mc-c, var(--p1)), transparent 70%);
  opacity: .06;
}
.mc-logo {
  max-width: 120px; max-height: 120px;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 10px;
  position: relative; z-index: 1;
  padding: 6px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 4px 18px rgba(0,0,0,.3);
  transition: transform .28s cubic-bezier(.16,1,.3,1);
}
.mc:hover .mc-logo { transform: scale(1.06); }
.mc-initials {
  width: 100px; height: 100px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; font-weight: 900; color: #fff;
  letter-spacing: -2px;
  position: relative; z-index: 1;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  transition: transform .28s cubic-bezier(.16,1,.3,1);
}
.mc:hover .mc-initials { transform: scale(1.07); }

/* TLD badge — bottom-left of visual */
.mc-tld {
  position: absolute; bottom: .6rem; left: .65rem;
  font-size: .68rem; font-weight: 800;
  padding: .2rem .55rem; border-radius: 50px;
  letter-spacing: .04em; z-index: 2;
  backdrop-filter: blur(6px);
}
/* Featured badge — top-right */
.mc-feat-badge {
  position: absolute; top: .6rem; right: .6rem;
  background: var(--grad);
  color: #fff; font-size: .58rem; font-weight: 800;
  padding: .18rem .55rem; border-radius: 50px;
  letter-spacing: .07em; text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(99,102,241,.4); z-index: 2;
}
.mc-status-badge {
  position: absolute; top: .6rem; left: .6rem;
  font-size: .62rem; font-weight: 800;
  padding: .18rem .55rem; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .06em; z-index: 2;
}
.mc-sold  { background: rgba(239,68,68,.85);  color: #fff; }
.mc-offer { background: rgba(245,158,11,.85); color: #000; }

/* Card body */
.mc-body {
  padding: .75rem 1rem .5rem;
  flex: 1;
}
.mc-name {
  font-size: .95rem; font-weight: 800; color: #fff;
  word-break: break-word; line-height: 1.2;
  letter-spacing: -.2px; margin-bottom: .2rem;
}
.mc-cat {
  font-size: .7rem; color: var(--dim);
  text-transform: uppercase; letter-spacing: .04em; font-weight: 500;
}

/* Price footer */
.mc-foot {
  padding: .6rem 1rem .85rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: .4rem;
  background: rgba(0,0,0,.12);
}
.mc-price-stack { display: flex; align-items: center; gap: .4rem; }
.mc-price {
  font-size: 1rem; font-weight: 900; color: #fff;
  letter-spacing: -.3px;
}
.mc-price-sold    { color: var(--red);   font-size: .8rem; letter-spacing: .04em; }
.mc-price-under   { color: var(--gold);  font-size: .8rem; font-weight: 700; }
.mc-price-contact { color: var(--p3);    font-size: .82rem; font-weight: 600; }
.mc-obo {
  font-size: .65rem; font-weight: 700; color: var(--gold);
  background: rgba(245,158,11,.12);
  padding: .15rem .42rem; border-radius: 4px;
}
.mc-view {
  font-size: .72rem; font-weight: 700; color: var(--p3);
  opacity: 0; transform: translateX(-5px);
  transition: opacity .22s, transform .22s;
  white-space: nowrap; flex-shrink: 0;
}
.mc:hover .mc-view { opacity: 1; transform: translateX(0); }

/* ── Browse page responsive ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .mc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .bv3-layout { grid-template-columns: 200px 1fr; }
  .mc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .bv3-layout { grid-template-columns: 1fr; }
  .bv3-sidebar {
    position: static;
    max-height: none;
    display: none; /* hidden until toggle */
  }
  .bv3-sidebar.open { display: block; }
  .bv3-filter-toggle { display: flex; }
  .mc-grid { grid-template-columns: repeat(2, 1fr); }
  .bv3-header { align-items: flex-start; flex-direction: column; gap: .75rem; }
  .bv3-controls { width: 100%; justify-content: space-between; }
  .bv3-sort { flex: 1; }
}
@media (max-width: 480px) {
  .mc-grid { grid-template-columns: repeat(2, 1fr); }
  .mc-visual { height: 140px; }
  .mc-initials { width: 80px; height: 80px; font-size: 1.8rem; }
  .mc-logo { max-width: 90px; max-height: 90px; }
}

/* ── Domain page: WhatsApp / Telegram contact buttons ──────────────── */
.dp-contact-row {
  display: flex; gap: .65rem; margin-top: .1rem;
}
.dp-contact-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: .45rem; padding: .65rem .5rem;
  border-radius: 10px; font-size: .82rem; font-weight: 700;
  text-decoration: none; transition: filter .18s, transform .15s;
  border: none; cursor: pointer; overflow: hidden;
}
.dp-contact-btn:hover { filter: brightness(1.12); transform: translateY(-1px); }
.dp-contact-wa {
  background: #25d366; color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.dp-contact-tg {
  background: #229ed9; color: #fff;
  box-shadow: 0 4px 14px rgba(34,158,217,.3);
}
.dp-contact-btn svg { flex-shrink: 0; width: 18px; height: 18px; }

/* ── Footer social icons ────────────────────────────────────────────── */
.footer-social {
  display: flex; align-items: center; justify-content: center;
  gap: .85rem; padding: 1.4rem 0 1rem;
  border-top: 1px solid var(--border);
  margin-top: 1.2rem;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 2.3rem; height: 2.3rem; border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--dim);
  transition: background .18s, color .18s, transform .15s;
  text-decoration: none;
}
.footer-social a:hover { transform: translateY(-2px); color: #fff; }
.fsoc-wa:hover  { background: rgba(37,211,102,.25); color: #25d366 !important; }
.fsoc-tg:hover  { background: rgba(34,158,217,.25); color: #229ed9 !important; }
.fsoc-x:hover   { background: rgba(255,255,255,.12); }
.fsoc-ig:hover  { background: rgba(225,48,108,.25);  color: #e1306c !important; }
.fsoc-li:hover  { background: rgba(10,102,194,.25);  color: #0a66c2 !important; }
.fsoc-fb:hover  { background: rgba(24,119,242,.25);  color: #1877f2 !important; }
.fsoc-yt:hover  { background: rgba(255,0,0,.22);     color: #ff0000 !important; }
