/* ============================================================
   style.css – AutoListing · Fire & Gold Theme
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg:         #0a0a1a;
  --bg-deep:    #1a0a16;
  --bg-card:    rgba(26, 14, 28, 0.55);
  --text-main:  #fef2e8;
  --text-muted: #c8a090;
  --accent:     #e84400;
  --accent-warm:#f59e0b;
  --border:     rgba(58, 26, 46, 0.65);
  --font:       'Inter', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

/* -- Stars Canvas -- */
#stars-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   HEADER
============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(10, 10, 26, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-main); }

.nav-cta {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-shrink: 0;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-glow {
  background: linear-gradient(90deg, #cc2200, #e84400, #f59e0b);
  color: #fff;
  box-shadow: 0 0 20px rgba(232, 68, 0, 0.35);
}
.btn-glow:hover {
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(200, 160, 144, 0.3);
  color: var(--text-main);
}
.btn-outline:hover {
  border-color: rgba(200, 160, 144, 0.7);
  background: rgba(200, 160, 144, 0.06);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 0.65rem 0;
  font-size: 1rem;
}
.btn-ghost:hover { color: var(--text-main); }

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  padding: 9rem 2rem 6rem;
}

/* Orange radial glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 35%, rgba(232, 68, 0, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 60% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1.6rem;
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  background: rgba(245, 158, 11, 0.08);
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 24px rgba(10, 10, 26, 0.95), 0 1px 4px rgba(0,0,0,0.8);
}

.hero-accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(254, 242, 232, 0.78);
  max-width: 560px;
  margin: 0 auto 2.8rem;
  line-height: 1.75;
  text-shadow: 0 1px 12px rgba(10, 10, 26, 0.9);
}

.hero-cta {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTAINER & SECTIONS
============================================================ */
.container {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-reveal {
  padding: 6rem 0;
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-eyebrow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.65rem;
  opacity: 0.75;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.5px;
  color: var(--text-main);
  margin-bottom: 0;
}

/* ============================================================
   GRID & CARDS
============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.card:hover {
  transform: translateY(-7px);
  border-color: rgba(200, 160, 144, 0.25);
  background: rgba(26, 14, 28, 0.75);
}

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  opacity: 0.85;
}

.step-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-warm);
  display: block;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
  opacity: 0.7;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

.badge {
  font-size: 0.6rem;
  font-weight: 700;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-warm);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  vertical-align: middle;
  letter-spacing: 0.5px;
}

/* ============================================================
   PRICING
============================================================ */
.pricing-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1.2rem;
  margin-bottom: -1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem auto 0;
  max-width: 740px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 3rem 2.25rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease;
}
.pricing-card:hover { transform: translateY(-7px); }

.pricing-card.featured {
  border-color: rgba(232, 68, 0, 0.35);
  background: rgba(26, 14, 28, 0.75);
  box-shadow: 0 0 50px rgba(232, 68, 0, 0.08);
}

.pro-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #cc2200, #e84400, #f59e0b);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.28rem 1.1rem;
  border-radius: 100px;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 1rem 0;
  letter-spacing: -2px;
  line-height: 1;
}
.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.features-list {
  list-style: none;
  margin: 1.8rem 0 2rem;
  text-align: left;
}
.features-list li {
  padding: 0.55rem 0 0.55rem 1.6rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(58, 26, 46, 0.35);
}
.features-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-warm);
  font-weight: 700;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-main); }
footer p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}

/* ============================================================
   SIMPLE PAGES (success, cancel, welcome, uninstall)
============================================================ */
.simple-page-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  position: relative;
  z-index: 1;
}
.simple-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
  backdrop-filter: blur(12px);
}

/* ============================================================
   FORMS (uninstall)
============================================================ */
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label.field-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(200, 160, 144, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.radio-group label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(26, 14, 28, 0.55);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: rgba(254, 242, 232, 0.82);
  font-size: 0.93rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.radio-group label:hover {
  border-color: rgba(200, 160, 144, 0.3);
  background: rgba(26, 14, 28, 0.8);
}
.radio-group input[type="radio"] {
  accent-color: var(--accent);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

textarea {
  width: 100%;
  background: rgba(18, 8, 18, 0.9);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 1rem;
  border-radius: 10px;
  font-family: var(--font);
  resize: vertical;
  min-height: 100px;
}
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(232, 68, 0, 0.18);
}

/* ============================================================
   LEGAL PAGES (privacy, terms)
============================================================ */
.legal-body { max-width: 820px; margin: 0 auto; padding: 4rem 2rem 6rem; position: relative; z-index: 1; }
.legal-body h1 { font-size: 2.4rem; margin-bottom: 0.4rem; }
.legal-body .meta { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 3rem; }
.legal-section { margin-bottom: 2.8rem; }
.legal-section h2 { font-size: 1.1rem; font-weight: 700; color: var(--accent-warm); margin-bottom: 0.9rem; text-align: left; }
.legal-section h3 { font-size: 0.97rem; font-weight: 700; color: var(--text-main); margin: 1.4rem 0 0.5rem; }
.legal-section p { color: rgba(254, 242, 232, 0.82); font-size: 0.95rem; margin-bottom: 0.9rem; line-height: 1.8; }
.legal-section ul { padding-left: 1.4rem; margin-bottom: 0.9rem; }
.legal-section ul li { color: rgba(254, 242, 232, 0.82); font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.75; }
.legal-section ul li strong { color: var(--text-main); }
.legal-section a { color: var(--accent-warm); }
.legal-divider { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.toc { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem 2rem; margin-bottom: 3rem; }
.toc p { font-weight: 700; color: var(--text-main); margin-bottom: 0.8rem; font-size: 0.9rem; }
.toc ol { padding-left: 1.4rem; }
.toc ol li { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.toc ol li a { color: var(--accent-warm); text-decoration: none; }
.toc ol li a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  header { padding: 1rem 1.2rem; }
  .hero { padding: 7rem 1.5rem 5rem; }
  .container { padding: 0 1.2rem; }
  .section-reveal { padding: 4rem 0; }
  h1 { letter-spacing: -1px; }
  .pricing-grid { max-width: 100%; }
  .steps-row { flex-direction: column; }
  .step-cell { border-bottom: 1px solid rgba(200, 160, 144, 0.08); }
}
