/* Domain Landers v4.1 - Conversion-Optimized - Updated Jan 2026 */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;1,9..144,400&display=swap');

:root {
  --black: #050506;
  --black-rich: #0a0a0c;
  --surface: #111114;
  --surface-raised: #18181c;
  --border: #252529;
  --border-light: #333338;
  --text-muted: #6b6b76;
  --text-secondary: #9898a6;
  --text-primary: #e8e8ed;
  --white: #fafafa;

  --accent: #00e5a0;
  --accent-bright: #00ffc8;
  --accent-glow: rgba(0, 229, 160, 0.5);
  --accent-subtle: rgba(0, 229, 160, 0.08);

  --gold: #f0c000;
  --gold-bright: #ffe55c;
  --gold-glow: rgba(240, 192, 0, 0.5);
  --gold-subtle: rgba(240, 192, 0, 0.08);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Ambient glow */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, var(--accent-subtle), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ==========================================
   HEADER - Minimal
   ========================================== */
.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, var(--black) 0%, transparent 100%);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px var(--accent-glow);
}

.premium .status { color: var(--gold); }
.premium .status-dot {
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ==========================================
   HERO - The Star
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
}

.hero .container {
  max-width: 900px;
}

.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.2s forwards;
}

.premium .hero-label { color: var(--gold); }

.hero-domain {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.3s forwards;
}

.hero-domain .tld {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium .hero-domain .tld {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Remove cursor blink - cleaner */
.hero-domain::after { display: none; }

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.4;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.4s forwards;
}

/* Hide long desc in hero - moves to details section */
.hero-desc,
.hero-long-desc {
  display: none;
}

.hero-price {
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.5s forwards;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
  vertical-align: top;
  margin-right: 4px;
}

.price-amount {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.6s forwards;
}

.trust-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.7s forwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.trust-icon {
  color: var(--accent);
  opacity: 0.7;
}

.premium .trust-icon { color: var(--gold); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px var(--accent-glow);
}

.btn-primary.gold {
  background: var(--gold);
}

.btn-primary.gold:hover {
  box-shadow: 0 20px 40px -10px var(--gold-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--text-muted);
}

.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ==========================================
   CONTENT SECTIONS - Scannable
   ========================================== */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--white);
  max-width: 500px;
}

/* Use Cases - Compact */
.use-cases {
  padding: 100px 0;
  background: var(--black-rich);
  border-top: 1px solid var(--border);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.use-case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s var(--ease-smooth);
}

.use-case-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.use-case-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.premium .use-case-icon {
  background: var(--gold-subtle);
}

.use-case-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.use-case-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Market Context - Data-focused */
.market-context-section {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.market-context-content {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 48px;
}

.market-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.market-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.market-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  opacity: 0;
  transition: opacity 0.3s;
}

.market-stat:hover::before {
  opacity: 1;
}

.market-stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.market-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Buyer Profiles - Quick scan */
.buyer-profiles-section {
  padding: 100px 0;
  background: var(--black-rich);
  border-top: 1px solid var(--border);
}

.buyer-profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.buyer-profile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.buyer-profile-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.buyer-profile-title::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.premium .buyer-profile-title::before {
  background: var(--gold);
}

.buyer-profile-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Why Section - Remove or minimize */
.why-section {
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-item {
  text-align: center;
  padding: 24px 16px;
}

.why-icon {
  font-size: 28px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.why-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.why-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ - Accordion, compact */
.faq-section {
  padding: 100px 0;
  background: var(--black-rich);
  border-top: 1px solid var(--border);
}

.faq-grid {
  max-width: 700px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--white);
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 20px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* More Domains - Subtle */
.more-domains {
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.domain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  transition: all 0.2s var(--ease-smooth);
}

.domain-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.domain-card.premium:hover {
  border-color: var(--gold);
}

.domain-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.domain-card-name .tld {
  color: var(--accent);
}

.domain-card.premium .domain-card-name .tld {
  color: var(--gold);
}

.domain-card-price {
  font-size: 12px;
  color: var(--text-muted);
}

/* CTA Section - Strong close */
.cta-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--black-rich) 0%, var(--black) 100%);
  border-top: 1px solid var(--border);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer - Minimal */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--accent);
}

/* ==========================================
   MODAL
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  margin: 24px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
}

.modal-close:hover {
  color: var(--white);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.form-success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-success-text {
  color: var(--text-secondary);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .use-cases-grid,
  .market-stats-grid,
  .buyer-profiles-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-row {
    flex-direction: column;
    gap: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .domains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
