/* ==========================================================================
   Domain Sale - Light, Clean, Personal & Honest Theme
   Aesthetic: Warm Editorial Minimal, Crisp Typography & Authentic Human Feel
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-main: #fafaf8;
  --bg-secondary: #f4f4f0;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-elevated: #f5f5f4;
  
  --border-subtle: #e7e5e4;
  --border-highlight: #d6d3d1;
  --border-focus: #18181b;

  --text-primary: #18181b;
  --text-secondary: #52525b;
  --text-muted: #71717a;
  
  --accent-primary: #2563eb;
  --accent-gradient: linear-gradient(135deg, #18181b 0%, #2563eb 100%);
  --accent-emerald: #059669;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 16px -2px rgba(0, 0, 0, 0.03);
  --shadow-float: 0 12px 32px -4px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.modal-active {
  overflow: hidden;
}

/* Subtle Warm Background */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 50% -10%, rgba(37, 99, 235, 0.03) 0%, transparent 60%),
              radial-gradient(circle at 90% 40%, rgba(5, 150, 105, 0.02) 0%, transparent 50%);
}

.glow-orb-1, .glow-orb-2, .glow-grid {
  display: none;
}

.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.hidden {
  display: none !important;
}

/* Header */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-shield {
  width: 36px;
  height: 36px;
  background: #18181b;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-shield svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.badge-status {
  font-size: 0.75rem;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-weight: 600;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-pill-toggle {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.btn-pill-toggle:hover, .btn-pill-toggle.active {
  background: #f4f4f5;
  border-color: #d4d4d8;
  color: var(--text-primary);
}

.pill-count {
  background: #18181b;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.1rem 0.5rem;
  border-radius: 9999px;
}

/* Hero Section */
.hero-section {
  padding: 4rem 0 3rem;
  text-align: center;
}

.status-pill-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  color: #065f46;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  position: relative;
}

.hero-domain-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  color: #18181b;
}

.hero-domain-title.fade-in {
  animation: title-pop 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes title-pop {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.tld-accent {
  color: #2563eb;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 0.75rem;
  font-weight: 500;
  line-height: 1.45;
}

.hero-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Acquisition Box (Clean White Minimal Card) */
.acquisition-box-wrapper {
  max-width: 540px;
  margin: 0 auto 3rem;
}

.acquisition-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-float);
  position: relative;
}

.price-container {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.4rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-label {
  font-size: 0.92rem;
  color: #166534;
  font-weight: 600;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: #15803d;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* GoDaddy / Buy Now Button */
.btn-buy-now {
  background: #008436;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 4px 14px rgba(0, 132, 54, 0.25);
  transition: all 0.2s ease;
}

.btn-buy-now:hover {
  background: #00702e;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 132, 54, 0.35);
}

/* Primary Action: Solid Honest Charcoal Button */
.btn-primary-glow {
  background: #18181b;
  color: #ffffff;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.btn-primary-glow:hover {
  background: #27272a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Secondary Button */
.btn-secondary-ghost {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-secondary-ghost:hover {
  background: #f4f4f5;
  border-color: #d4d4d8;
}

/* Direct Email Box */
.email-direct-box {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.email-label-subtle {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.protected-email-chip {
  display: inline-flex;
  align-items: center;
  background: #f4f4f5;
  border: 1px dashed #d4d4d8;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 0.9rem;
  color: #18181b;
  user-select: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.protected-email-chip:hover {
  background: #e4e4e7;
  border-color: #a1a1aa;
}

.protected-email-chip .email-u,
.protected-email-chip .email-d {
  display: inline-block;
}

.protected-email-chip .email-at {
  margin: 0 1px;
  color: #2563eb;
  font-weight: 700;
}

/* Human Owner Note Card (Compact, Warm & Personal) */
.owner-note-wrapper {
  max-width: 540px;
  margin: 0 auto 2rem;
}

.owner-note-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-left: 3px solid #18181b;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}

@media (max-width: 540px) {
  .owner-note-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem;
  }
}

.owner-avatar {
  width: 44px;
  height: 44px;
  background: #f4f4f5;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #18181b;
  flex-shrink: 0;
}

.owner-avatar svg {
  width: 22px;
  height: 22px;
}

.owner-content-block {
  flex: 1;
  text-align: left;
}

@media (max-width: 540px) {
  .owner-content-block {
    text-align: center;
  }
}

.owner-quote {
  color: #3f3f46;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.owner-quote strong {
  color: #18181b;
}

.owner-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 540px) {
  .owner-meta-row {
    justify-content: center;
  }
}

.owner-meta-pill {
  background: #f4f4f5;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Why This Domain Is Good Card */
.why-good-wrapper {
  max-width: 540px;
  margin: 0 auto 3rem;
}

.why-good-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.why-good-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.why-good-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.why-good-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #3f3f46;
  line-height: 1.5;
}

.why-good-check {
  width: 18px;
  height: 18px;
  background: #ecfdf5;
  color: #059669;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Clean 3-Pillar Trust Section */
.trust-grid-section {
  padding: 1rem 0 3.5rem;
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .trust-cards-grid {
    grid-template-columns: 1fr;
  }
}

.trust-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.trust-card:hover {
  transform: translateY(-2px);
  border-color: #d4d4d8;
}

.trust-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.trust-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 0.35rem;
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Portfolio View */
.portfolio-section {
  padding: 3.5rem 0;
}

.section-headline-group {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.section-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 0.4rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #18181b;
  line-height: 1.2;
}

.portfolio-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.portfolio-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
}

.portfolio-card:hover {
  transform: translateY(-3px);
  border-color: #a1a1aa;
  box-shadow: var(--shadow-float);
}

.portfolio-card.active-highlight {
  border-color: #2563eb;
  background: #f8fafc;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.status-indicator {
  font-size: 0.8rem;
  color: #059669;
  font-weight: 600;
}

.platform-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
}

.card-domain {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #18181b;
  margin-bottom: 0.4rem;
}

.card-tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.card-price-tag {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  background: #f4f4f5;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.card-price-tag strong {
  color: #15803d;
  font-size: 1rem;
}

.btn-card-select {
  width: 100%;
  background: #f4f4f5;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.8rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-card-select:hover {
  background: #18181b;
  color: #ffffff;
  border-color: #18181b;
}

/* FAQ Accordion */
.faq-section {
  padding: 3rem 0 5rem;
}

.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.faq-item.active {
  border-color: #a1a1aa;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--text-primary);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.2rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

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

/* Footer */
.site-footer {
  background: #f4f4f0;
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 24, 27, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 2.25rem;
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: scale(0.97) translateY(8px);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.modal-close-btn {
  background: #f4f4f5;
  border: none;
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #e4e4e7;
  color: #18181b;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-row-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 500px) {
  .form-row-dual {
    grid-template-columns: 1fr;
  }
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d4d4d8;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #18181b;
  box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.08);
}

.form-select {
  cursor: pointer;
}

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

.hp-bot-trap {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  overflow: hidden;
  left: -9999px;
}

.modal-helper-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.9rem;
  text-align: center;
}

/* Toast */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #18181b;
  color: #ffffff;
  padding: 0.85rem 1.3rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  width: 18px;
  height: 18px;
  color: #34d399;
}

/* Modal Success State */
.modal-success-view {
  text-align: center;
  padding: 1.5rem 0.5rem 0.5rem;
}

.success-icon-badge {
  width: 58px;
  height: 58px;
  background: #ecfdf5;
  border: 2px solid #a7f3d0;
  border-radius: 50%;
  color: #059669;
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.success-message {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.success-subtext {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

