/* ManeFeed — Marketing Website */
:root {
  --espresso: #1A0A0D;
  --gold: #C89040;
  --gold-light: #D9A85A;
  --cream: #F6EDDF;
  --coral: #D4725C;
  --warm-gray: #8A7A72;
  --warm-gray-light: #B5A89E;
  --warm-gray-dark: #6B5D56;
  --bg: var(--cream);
  --bg-card: #FFFFFF;
  --bg-hero: var(--espresso);
  --border: rgba(138, 122, 114, 0.2);
  --border-accent: rgba(200, 144, 64, 0.3);
  --accent-glow: rgba(200, 144, 64, 0.1);
  --accent-soft: rgba(200, 144, 64, 0.06);
  --text-primary: var(--espresso);
  --text-secondary: var(--warm-gray);
  --text-tertiary: var(--warm-gray-light);
  --text-on-dark: var(--cream);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-width: 1200px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--gold-light); }

strong { font-weight: 600; }

/* ==================== NAV ==================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(246, 237, 223, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-dark {
  background: rgba(26, 10, 13, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: 0.5px;
}

.nav-dark .nav-wordmark { color: var(--cream); }

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--espresso); }

.nav-dark .nav-links a { color: var(--warm-gray-light); }
.nav-dark .nav-links a:hover { color: var(--cream); }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: var(--espresso);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--espresso);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(200, 144, 64, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-accent);
}
.btn-secondary:hover {
  background: var(--accent-soft);
  border-color: var(--gold);
  color: var(--cream);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 15px;
}

/* ==================== HERO ==================== */
.hero {
  background: var(--espresso);
  padding: 180px 40px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(200, 144, 64, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(200, 144, 64, 0.08);
  border: 1px solid rgba(200, 144, 64, 0.2);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--cream);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--warm-gray-light);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-size: 19px;
  color: var(--warm-gray-light);
  max-width: 600px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==================== STORE BADGES ==================== */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.3s;
}
.store-badge:hover {
  border-color: var(--border-accent);
  background: rgba(200, 144, 64, 0.08);
}
.store-text {
  text-align: left;
  line-height: 1.3;
}
.store-label {
  font-size: 12px;
  color: var(--warm-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.store-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
}

/* ==================== SECTIONS ==================== */
section {
  padding: 120px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--espresso);
}

.section-subtitle {
  font-size: 18px;
  color: var(--warm-gray);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.section-center {
  text-align: center;
}
.section-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ==================== VALUE PROPS ==================== */
.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.3s;
}
.value-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26, 10, 13, 0.06);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--espresso);
}

.value-card p {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ==================== STEPS ==================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.step {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.step-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--espresso);
}

.step p {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ==================== PRICING ==================== */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--coral));
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 16px;
  color: var(--warm-gray);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 16px;
  color: var(--warm-gray-dark);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-features li:last-child { border-bottom: none; }

.pricing-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* ==================== CTA ==================== */
.cta-section {
  text-align: center;
  padding: 100px 40px;
  background: var(--espresso);
  border-radius: var(--radius-xl);
  margin: 0 40px 80px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(200, 144, 64, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--cream);
}
.cta-section h2 em {
  color: var(--gold);
  font-style: italic;
}

.cta-section p {
  color: var(--warm-gray-light);
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--espresso);
}
.footer-wordmark .accent { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 15px;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--espresso); }

.footer-address {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
}

.footer-copy {
  font-size: 14px;
  color: var(--warm-gray-light);
  width: 100%;
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ==================== LEGAL PAGES ==================== */
.legal-page {
  padding: 140px 40px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--espresso);
}

.legal-page .legal-updated {
  font-size: 14px;
  color: var(--warm-gray-light);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--espresso);
}

.legal-page h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--espresso);
}

.legal-page p {
  font-size: 16px;
  color: var(--warm-gray-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-page ul, .legal-page ol {
  font-size: 16px;
  color: var(--warm-gray-dark);
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-page a:hover {
  color: var(--gold-light);
}

.legal-page strong {
  color: var(--espresso);
  font-weight: 600;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--bg-card);
  margin: 24px 0;
}

.contact-card p {
  margin-bottom: 4px;
  color: var(--espresso);
}
.contact-card p:last-child { margin-bottom: 0; }
.contact-card .label {
  color: var(--warm-gray);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ==================== FAQ ==================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-question::after {
  content: '+';
  color: var(--gold);
  font-size: 28px;
  font-weight: 300;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  line-height: 1;
}

.faq-answer {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-top: 14px;
  padding-right: 52px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 120px 20px 60px; }
  section { padding: 80px 20px; }
  .cta-section { margin: 0 20px 60px; padding: 60px 20px; }
  .store-badge { width: 100%; justify-content: center; }
  footer { padding: 32px 20px; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .legal-page { padding: 110px 20px 60px; }
  .pricing-card { padding: 40px 28px; }
}
