/*
Theme Name: BotMoney.AI Domain Sale
Theme URI: https://botmoney.ai
Author: BotMoney.AI
Author URI: https://botmoney.ai
Description: Premium domain sale, lease, and partnership landing page for BotMoney.AI. Dark luxe theme with electric green accents.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: botmoney
Tags: one-page, dark, landing-page, domain-sale
*/

/* ═══════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════ */
:root {
  --bg: #0a0b0d;
  --bg-elevated: #111318;
  --bg-card: #15171c;
  --border: #1e2128;
  --border-light: #2a2e38;
  --text: #f0f0f2;
  --text-dim: #8a8f9e;
  --text-muted: #555a68;
  --gold: #00e87b;
  --gold-light: #2aff9a;
  --gold-dim: rgba(0,232,123,0.12);
  --gold-glow: rgba(0,232,123,0.25);
  --green: #00e87b;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════
   GRAIN OVERLAY
   ═══════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ═══════════════════════════════════════════
   TOPBAR / NAVIGATION
   ═══════════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(10,11,13,0.75);
  border-bottom: 1px solid var(--border);
}

.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.wordmark span {
  color: var(--gold);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-inquire {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 10px 26px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}

.btn-inquire:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
  letter-spacing: 0.3px;
  display: inline-block;
  text-align: center;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  border-color: var(--text-muted);
  background: var(--bg-elevated);
}

/* ═══════════════════════════════════════════
   GOLD DIVIDER
   ═══════════════════════════════════════════ */
.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold-glow), var(--gold-dim), transparent);
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, var(--gold-dim) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.domain-display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.domain-display .tld {
  color: var(--gold);
}

.domain-sub {
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--text-dim);
  margin-top: 28px;
  max-width: 520px;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 52px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-dim);
  font-size: 17px;
  margin-top: 16px;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   WHY SECTION — VALUE GRID
   ═══════════════════════════════════════════ */
.why-section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.value-cell {
  background: var(--bg-card);
  padding: 44px 36px;
  transition: background 0.3s;
}

.value-cell:hover {
  background: var(--bg-elevated);
}

.value-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.value-cell h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}

.value-cell p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   DOMAIN STATS
   ═══════════════════════════════════════════ */
.stats-section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s;
}

.stat-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ═══════════════════════════════════════════
   USE CASES
   ═══════════════════════════════════════════ */
.usecases-section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.usecase-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.usecase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.35s;
}

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

.usecase-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.usecase-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.usecase-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   ACQUISITION OPTIONS
   ═══════════════════════════════════════════ */
.options-section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.option-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s;
  position: relative;
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.option-card.highlight {
  border-color: var(--gold);
  box-shadow: 0 0 48px var(--gold-dim);
}

.option-card.highlight:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 48px var(--gold-dim);
}

.option-card.highlight::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 1.5px;
}

.option-type {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.option-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}

.option-desc {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 28px;
}

.option-features {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}

.option-features li {
  font-size: 14px;
  color: var(--text-dim);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.option-features li::before {
  content: '◆';
  color: var(--gold);
  font-size: 8px;
}

.option-card .btn-gold,
.option-card .btn-outline {
  width: 100%;
  text-align: center;
}

/* ═══════════════════════════════════════════
   CTA / CONTACT SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  padding: 120px 40px 140px;
  text-align: center;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, var(--gold-dim) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.cta-section h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-section > p {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 440px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form .btn-gold {
  margin-top: 4px;
}

.contact-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer .wordmark {
  font-size: 18px;
}

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

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   WORDPRESS OVERRIDES
   ═══════════════════════════════════════════ */
#wpadminbar ~ .topbar {
  top: 32px;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .topbar {
    padding: 14px 20px;
  }

  .status-badge {
    display: none;
  }

  .why-section,
  .stats-section,
  .usecases-section,
  .options-section {
    padding: 80px 20px;
  }

  .value-grid,
  .options-grid {
    grid-template-columns: 1fr;
  }

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

  .usecase-list {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero-ctas button,
  .hero-ctas a {
    width: 100%;
  }

  .cta-section {
    padding: 80px 20px 120px;
  }

  .site-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-value {
    font-size: 28px;
  }
}
