/* Legacy Odyssey — Marketing Landing Page */

:root {
  --cream: #F8F2E6;
  --ivory: #FFFCF5;
  --gold: #B8935A;
  --gold-light: #D4B483;
  --gold-dark: #8C6A35;
  --ink: #1E1812;
  --ink-mid: #4A3F32;
  --ink-light: #9C8B78;
  --sage: #7A9E7E;
  --sage-light: #a8c5ab;
  --rose: #C17F7F;
  --blush: #EDD9D0;
  --dusty-blue: #8BA7BC;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  color: var(--ink);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--ink-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

/* ===================== NAV ===================== */
.marketing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 252, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 147, 90, 0.15);
  transition: box-shadow 0.3s ease;
}

.marketing-nav.scrolled {
  box-shadow: 0 2px 20px rgba(30, 24, 18, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

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

.nav-links a {
  text-decoration: none;
  color: var(--ink-mid);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 50%, var(--ivory) 100%);
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 147, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 158, 126, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(184, 147, 90, 0.12);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.8rem;
  color: var(--ink);
  margin-bottom: 1.2rem;
  font-weight: 300;
  line-height: 1.15;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-text {
  font-size: 1.2rem;
  color: var(--ink-mid);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 147, 90, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ink-mid);
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid var(--ink-light);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-light);
}

/* ===================== FEATURES ===================== */
.features {
  padding: 6rem 2rem;
  background: var(--white);
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: var(--ivory);
  border: 1px solid rgba(184, 147, 90, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(30, 24, 18, 0.06);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
}

.feature-icon.gold { background: rgba(184, 147, 90, 0.12); }
.feature-icon.sage { background: rgba(122, 158, 126, 0.15); }
.feature-icon.rose { background: rgba(193, 127, 127, 0.12); }
.feature-icon.blue { background: rgba(139, 167, 188, 0.15); }
.feature-icon.blush { background: rgba(237, 217, 208, 0.4); }
.feature-icon.ink { background: rgba(30, 24, 18, 0.08); }

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ===================== HOW IT WORKS ===================== */
.how-it-works {
  padding: 6rem 2rem;
  background: var(--cream);
}

.steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-light), var(--sage));
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.step-content p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ===================== DOMAIN SHOWCASE ===================== */
.domain-showcase {
  padding: 5rem 2rem;
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
}

.domain-showcase .section-title {
  color: var(--ivory);
}

.domain-showcase .section-subtitle {
  color: var(--ink-light);
}

.domain-examples {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.domain-example {
  background: rgba(255, 252, 245, 0.06);
  border: 1px solid rgba(184, 147, 90, 0.2);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  text-align: left;
  transition: border-color 0.2s;
}

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

.domain-url {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.domain-label {
  font-size: 0.8rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===================== DOMAIN URGENCY ===================== */
.domain-urgency {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--gold-light);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

.domain-showcase .section-subtitle strong {
  color: var(--gold-light);
}

/* ===================== PRICING ===================== */
.pricing {
  padding: 6rem 2rem;
  background: var(--white);
}

/* Billing toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.toggle-label {
  font-size: 0.9rem;
  color: var(--ink-light);
  font-weight: 400;
  transition: color 0.2s;
}

.toggle-label.active {
  color: var(--ink);
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink-light);
  border-radius: 26px;
  transition: background 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--gold);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-save {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage);
  background: rgba(122, 158, 126, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.annual-note {
  font-size: 0.8rem;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--ink-light);
}

.pricing-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-cards.three-col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}

.pricing-card {
  background: var(--ivory);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1.5px solid rgba(184, 147, 90, 0.12);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30, 24, 18, 0.08);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: var(--cream);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
}

.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.3rem;
}

.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--ink);
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--ink-light);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 600;
  flex-shrink: 0;
}

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

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

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: 6rem 2rem;
  background: var(--cream);
}

.testimonial-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(184, 147, 90, 0.08);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.testimonial-quote::before {
  content: '"';
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.1em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--ink-light);
}

/* ===================== FINAL CTA ===================== */
.final-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--ink) 0%, #2a2218 100%);
  text-align: center;
  color: var(--ivory);
}

.final-cta h2 {
  font-size: 2.8rem;
  color: var(--ivory);
  margin-bottom: 1rem;
  font-weight: 300;
}

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

.final-cta p {
  font-size: 1.1rem;
  color: var(--ink-light);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ===================== FOOTER ===================== */
.marketing-footer {
  padding: 3rem 2rem;
  background: var(--ink);
  border-top: 1px solid rgba(184, 147, 90, 0.1);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--ivory);
}

.footer-brand span {
  color: var(--gold-light);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--ink-light);
}

/* ===================== ANIMATIONS ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===================== MOBILE RESPONSIVE ===================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps::before {
    left: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.1rem;
  }

  .domain-examples {
    grid-template-columns: 1fr;
  }

  .pricing-cards,
  .pricing-cards.three-col {
    grid-template-columns: 1fr;
  }

  .billing-toggle {
    flex-wrap: wrap;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(184, 147, 90, 0.15);
    gap: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .pricing-cards.three-col {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-cards.three-col .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 450px;
    margin: 0 auto;
  }

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

@media (max-width: 480px) {
  .hero {
    padding: 5rem 1.2rem 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .step {
    gap: 1rem;
  }
}
