/* ==========================================================================
   ELEVAYTE — Premium Domain Marketplace
   Light · Glossy · Editorial
   ========================================================================== */

:root {
  /* Surfaces */
  --bg: #FAFAF7;
  --surface: #F4F4EF;
  --surface-2: #EDEDE5;
  --card: #FFFFFF;
  --card-hover: #FEFEFD;

  /* Ink */
  --ink: #0E1116;
  --ink-2: #3A3F47;
  --ink-3: #6B7280;
  --ink-4: #9CA3AF;

  /* Brand */
  --blue: #1E5AA8;
  --blue-light: #3A78CA;
  --blue-deep: #163F77;
  --blue-soft: rgba(30, 90, 168, 0.08);

  --gold: #F4B400;
  --gold-light: #FCD450;
  --gold-deep: #C89200;
  --gold-soft: rgba(244, 180, 0, 0.12);

  /* Borders */
  --border: rgba(14, 17, 22, 0.08);
  --border-soft: rgba(14, 17, 22, 0.04);
  --border-strong: rgba(14, 17, 22, 0.14);

  /* Typography */
  --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Shadows — soft with slight warm tint */
  --shadow-xs: 0 1px 2px rgba(14, 17, 22, 0.04);
  --shadow-sm: 0 2px 6px rgba(14, 17, 22, 0.06), 0 1px 2px rgba(14, 17, 22, 0.04);
  --shadow-md: 0 8px 24px rgba(14, 17, 22, 0.06), 0 2px 6px rgba(14, 17, 22, 0.04);
  --shadow-lg: 0 20px 48px rgba(14, 17, 22, 0.08), 0 4px 12px rgba(14, 17, 22, 0.05);
  --shadow-blue: 0 8px 28px rgba(30, 90, 168, 0.18);
  --shadow-gold: 0 8px 28px rgba(244, 180, 0, 0.22);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --t-fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 480ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--blue-light); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 400; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.875rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.eyebrow::before { content: ""; width: 20px; height: 1px; background: var(--gold); }

.mono { font-family: var(--font-mono); letter-spacing: -0.01em; }
.serif { font-family: var(--font-display); }
.italic { font-style: italic; }

/* ---------- Container ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--space-6); }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 var(--space-6); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border-soft);
  transition: all var(--t-base);
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-xs); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 var(--space-6); max-width: 1440px; margin: 0 auto; }
.nav-brand { display: flex; align-items: center; gap: var(--space-3); font-family: var(--font-body); font-weight: 800; font-size: 1.25rem; letter-spacing: 0.02em; color: var(--ink); }
.nav-brand svg { width: 32px; height: 32px; }
.nav-links { display: flex; align-items: center; gap: var(--space-6); list-style: none; }
.nav-links a { color: var(--ink-2); font-weight: 500; font-size: 0.95rem; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--t-base); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { padding: 0.5rem 1.125rem; background: var(--ink); color: #fff !important; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 600; transition: all var(--t-fast); }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blue-deep); transform: translateY(-1px); color: #fff !important; }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: var(--radius-sm); align-items: center; justify-content: center; color: var(--ink); }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: var(--bg); border-bottom: 1px solid var(--border); padding: var(--space-5) var(--space-6); gap: var(--space-4); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: var(--space-10) 0 var(--space-9);
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 0%, rgba(244, 180, 0, 0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 30%, rgba(30, 90, 168, 0.06) 0%, transparent 50%);
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; opacity: 0.5; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 var(--space-6); text-align: center; }
.hero h1 { margin-bottom: var(--space-5); max-width: 860px; margin-left: auto; margin-right: auto; }
.hero h1 em { font-style: italic; color: var(--blue); font-weight: 400; }
.hero-lede { font-size: clamp(1.125rem, 1.6vw, 1.35rem); color: var(--ink-2); max-width: 640px; margin: 0 auto var(--space-7); line-height: 1.5; }

/* Hero search */
.hero-search { max-width: 680px; margin: 0 auto; position: relative; }
.hero-search-box {
  display: flex; align-items: center; gap: var(--space-3);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2) var(--space-3) var(--space-2) var(--space-5);
  box-shadow: var(--shadow-lg);
  transition: all var(--t-base);
}
.hero-search-box:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft), var(--shadow-lg);
}
.hero-search-box svg.search-icon { width: 22px; height: 22px; color: var(--ink-3); flex-shrink: 0; }
.hero-search-box input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-size: 1.125rem; padding: 0.875rem 0; color: var(--ink);
  font-family: var(--font-body);
}
.hero-search-box input::placeholder { color: var(--ink-4); }
.hero-search-btn {
  padding: 0.875rem 1.75rem;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-lg);
  font-weight: 600; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: var(--space-2);
  transition: all var(--t-fast);
  position: relative; overflow: hidden;
}
.hero-search-btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  opacity: 0; transition: opacity var(--t-fast);
}
.hero-search-btn span { position: relative; z-index: 1; }
.hero-search-btn:hover::before { opacity: 1; }
.hero-search-btn:hover { box-shadow: var(--shadow-blue); }

.hero-suggestions {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: var(--space-2); display: none; z-index: 50;
  max-height: 420px; overflow-y: auto;
}
.hero-suggestions.open { display: block; }
.suggestion {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--t-fast);
}
.suggestion:hover { background: var(--surface); }
.suggestion-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 500; color: var(--ink); }
.suggestion-meta { display: flex; align-items: center; gap: var(--space-3); font-size: 0.8125rem; color: var(--ink-3); }
.suggestion-status { font-size: 0.75rem; padding: 2px 8px; border-radius: 999px; font-weight: 600; font-family: var(--font-body); }
.suggestion-status.available { background: rgba(16, 185, 129, 0.1); color: #047857; }
.suggestion-status.premium { background: var(--gold-soft); color: var(--gold-deep); }
.suggestion-status.taken { background: rgba(14, 17, 22, 0.06); color: var(--ink-3); }

.hero-meta {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-6); margin-top: var(--space-6);
  font-size: 0.85rem; color: var(--ink-3);
  flex-wrap: wrap;
}
.hero-meta span { display: inline-flex; align-items: center; gap: var(--space-2); }
.hero-meta strong { color: var(--ink); font-weight: 600; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.dot.blue { background: var(--blue); box-shadow: 0 0 12px var(--blue); }
.dot.green { background: #10B981; box-shadow: 0 0 12px #10B981; }

/* ---------- Sections ---------- */
section { padding: var(--space-9) 0; position: relative; }
.section-header { text-align: center; margin-bottom: var(--space-8); }
.section-header h2 { margin-bottom: var(--space-4); }
.section-header p { color: var(--ink-2); font-size: 1.125rem; max-width: 640px; margin: 0 auto; }

/* Featured (hero-scale domain presentation) */
.featured-section { padding: var(--space-9) 0; background: var(--surface); }
.featured-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 480px;
  position: relative;
}
.featured-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(244, 180, 0, 0.4) 50%, transparent 100%);
}
.featured-main {
  padding: var(--space-8) var(--space-8);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.featured-tag {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 6px 14px;
  background: var(--gold-soft); color: var(--gold-deep);
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: var(--space-5); align-self: flex-start;
}
.featured-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--space-5);
  word-break: break-word;
}
.featured-name .tld { color: var(--ink-3); font-weight: 300; font-style: italic; }
.featured-pitch { font-size: 1.125rem; color: var(--ink-2); line-height: 1.6; margin-bottom: var(--space-6); max-width: 480px; }
.featured-meta { display: flex; flex-wrap: wrap; gap: var(--space-5); margin-bottom: var(--space-6); font-size: 0.875rem; color: var(--ink-3); }
.featured-meta div { display: flex; flex-direction: column; gap: 2px; }
.featured-meta strong { font-family: var(--font-mono); color: var(--ink); font-size: 1rem; font-weight: 600; }
.featured-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

.featured-visual {
  background: linear-gradient(135deg, #F4F4EF 0%, #EDEDE5 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.featured-visual::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(244, 180, 0, 0.18) 0%, transparent 60%),
              radial-gradient(circle at 30% 80%, rgba(30, 90, 168, 0.18) 0%, transparent 55%);
}
.featured-visual canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.featured-glyph {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-size: 9rem; font-weight: 200;
  font-style: italic;
  color: rgba(14, 17, 22, 0.1);
  letter-spacing: -0.05em;
  user-select: none;
}

@media (max-width: 900px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-visual { min-height: 240px; }
  .featured-main { padding: var(--space-7) var(--space-6); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all var(--t-fast);
  cursor: pointer;
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  opacity: 0; transition: opacity var(--t-fast);
}
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-blue); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), var(--shadow-sm);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), var(--shadow-gold); color: var(--ink); }

.btn-outline {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-ghost:hover { color: var(--ink); background: var(--surface); }

.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; border-radius: var(--radius); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* ---------- Domain Grid Cards ---------- */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-5);
}
.domain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: all var(--t-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 220px;
}
.domain-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 180, 0, 0.3), transparent);
  opacity: 0; transition: opacity var(--t-base);
}
.domain-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.domain-card:hover::before { opacity: 1; }
.domain-card-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: var(--space-4); gap: var(--space-3); }
.domain-card-tags { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.tag {
  font-size: 0.7rem; font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--blue-soft); color: var(--blue);
}
.tag.gold { background: var(--gold-soft); color: var(--gold-deep); }
.tag.dark { background: rgba(14, 17, 22, 0.06); color: var(--ink-2); }

.domain-card-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
  color: var(--ink);
  line-height: 1.1;
  word-break: break-word;
}
.domain-card-name .tld { color: var(--ink-3); font-weight: 300; font-style: italic; }
.domain-card-pitch {
  font-size: 0.9375rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: auto;
  padding-bottom: var(--space-5);
}
.domain-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-soft);
}
.domain-card-price { font-family: var(--font-mono); font-size: 1.0625rem; font-weight: 600; color: var(--ink); }
.domain-card-price small { color: var(--ink-3); font-weight: 400; margin-left: 2px; font-size: 0.75rem; }
.domain-card-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface);
  transition: all var(--t-fast);
  color: var(--ink);
}
.domain-card:hover .domain-card-arrow {
  background: var(--ink);
  color: #fff;
  transform: translate(2px, -2px) rotate(-45deg);
}

/* Categories bar */
.chips {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin-bottom: var(--space-7);
  justify-content: center;
}
.chip {
  padding: 0.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--ink-2);
  transition: all var(--t-fast);
  cursor: pointer;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Process / How ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}
.process-step {
  position: relative;
  padding: var(--space-6);
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 300; font-style: italic;
  color: var(--blue);
  line-height: 1; margin-bottom: var(--space-4);
  display: inline-block;
}
.process-step h3 { font-size: 1.25rem; margin-bottom: var(--space-3); }
.process-step p { color: var(--ink-2); font-size: 0.9375rem; line-height: 1.6; }

/* ---------- Ecosystem cross-links ---------- */
.ecosystem {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-9) 0;
}
.ecosystem h2 { color: #fff; }
.ecosystem .section-header p { color: rgba(255, 255, 255, 0.65); }
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-7);
}
.ecosystem-tier {
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--t-base);
}
.ecosystem-tier:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(244, 180, 0, 0.3);
  transform: translateY(-2px);
}
.ecosystem-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: var(--space-3); }
.ecosystem-name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: #fff;
  margin-bottom: var(--space-3);
}
.ecosystem-desc { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.65); margin-bottom: var(--space-5); line-height: 1.55; }
.ecosystem-link { color: var(--gold-light); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: var(--space-2); }
.ecosystem-tier.current { background: rgba(244, 180, 0, 0.08); border-color: rgba(244, 180, 0, 0.4); }
.ecosystem-tier.current .ecosystem-label::after { content: " · current"; color: rgba(255, 255, 255, 0.5); }

/* ---------- Forms ---------- */
.form-section { padding: var(--space-8) 0; }
.form-card {
  max-width: 720px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: var(--space-2); }
.form-field label { font-size: 0.8125rem; font-weight: 600; color: var(--ink-2); letter-spacing: 0.02em; }
.form-field label .req { color: var(--gold-deep); margin-left: 3px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.95rem;
  transition: all var(--t-fast);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 0;
  border-color: var(--blue);
  background: var(--card);
  box-shadow: 0 0 0 4px var(--blue-soft);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-submit { display: flex; flex-direction: column; gap: var(--space-4); align-items: flex-start; margin-top: var(--space-5); }

/* ---------- Domain detail ---------- */
.domain-hero {
  padding: var(--space-9) 0 var(--space-7);
  background: radial-gradient(ellipse at 70% 0%, rgba(244, 180, 0, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 10% 50%, rgba(30, 90, 168, 0.05) 0%, transparent 50%);
  position: relative; overflow: hidden;
}
.domain-hero-canvas { position: absolute; inset: 0; opacity: 0.4; pointer-events: none; }
.domain-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: var(--space-2); font-size: 0.85rem; color: var(--ink-3); margin-bottom: var(--space-6); }
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: 0.4; }

.domain-detail-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: var(--space-8); align-items: start; }
.domain-title { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1; margin-bottom: var(--space-5); word-break: break-word; }
.domain-title .tld { color: var(--ink-3); font-weight: 300; font-style: italic; }
.domain-tagline { font-size: 1.25rem; color: var(--ink-2); line-height: 1.5; max-width: 560px; margin-bottom: var(--space-7); }
.domain-attributes { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: var(--space-5); padding: var(--space-5) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.domain-attr { display: flex; flex-direction: column; gap: var(--space-1); }
.domain-attr-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.domain-attr-value { font-family: var(--font-mono); font-size: 1.0625rem; color: var(--ink); font-weight: 600; }

.purchase-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-md);
  position: sticky; top: 88px;
}
.purchase-price { font-family: var(--font-mono); font-size: 2.5rem; font-weight: 700; color: var(--ink); line-height: 1.1; }
.purchase-price small { color: var(--ink-3); font-weight: 400; font-size: 0.875rem; display: block; margin-top: 2px; }
.purchase-divider { height: 1px; background: var(--border); margin: var(--space-5) 0; }
.purchase-feature { display: flex; gap: var(--space-3); align-items: flex-start; margin-bottom: var(--space-3); font-size: 0.875rem; color: var(--ink-2); }
.purchase-feature svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
  .domain-detail-grid { grid-template-columns: 1fr; }
  .purchase-card { position: static; }
}

/* ---------- SEO content section ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-2);
}
.prose h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); margin-top: var(--space-7); margin-bottom: var(--space-4); color: var(--ink); }
.prose h3 { margin-top: var(--space-6); margin-bottom: var(--space-3); color: var(--ink); }
.prose p { margin-bottom: var(--space-5); }
.prose ul, .prose ol { margin-bottom: var(--space-5); padding-left: var(--space-6); }
.prose li { margin-bottom: var(--space-2); }
.prose strong { color: var(--ink); font-weight: 600; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-8) 0 var(--space-6);
  border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--space-7); margin-bottom: var(--space-7); }
.footer-brand { font-family: var(--font-body); font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: var(--space-3); display: flex; align-items: center; gap: var(--space-3); }
.footer-brand svg { width: 32px; height: 32px; }
.footer-desc { font-size: 0.875rem; line-height: 1.6; color: rgba(255, 255, 255, 0.55); margin-bottom: var(--space-4); max-width: 300px; }
.footer h4 { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: var(--space-4); }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer a { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; transition: color var(--t-fast); }
.footer a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--space-5); border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.8125rem; color: rgba(255, 255, 255, 0.45); flex-wrap: wrap; gap: var(--space-3); }
.footer-email { direction: rtl; unicode-bidi: bidi-override; display: inline-block; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .footer-brand-col { grid-column: 1 / -1; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-2 { margin-top: var(--space-4); } .mt-4 { margin-top: var(--space-6); }
.hide-mobile { display: revert; }
@media (max-width: 640px) { .hide-mobile { display: none; } }

/* Scroll animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--t-slow), transform 0.9s var(--t-slow); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Selection */
::selection { background: var(--gold); color: var(--ink); }

/* Focus visible */
*:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 2px; }

/* Print */
@media print { .nav, .footer, .hero-canvas { display: none; } body { background: #fff; } }
