/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --navy:        #0A1628;
  --charcoal:    #111827;
  --charcoal-lt: #161D2F;
  --gold:        #C4A265;
  --gold-lt:     #D4B97A;
  --gold-dim:    rgba(196, 162, 101, 0.15);
  --off-white:   #F5F0E8;
  --muted:       rgba(245, 240, 232, 0.5);
  --glass-bg:    rgba(255, 255, 255, 0.04);
  --glass-border: rgba(196, 162, 101, 0.18);
}

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

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

body {
  background: var(--navy);
  color: var(--off-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--off-white);
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-headline {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.1rem 2.5rem;
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 0.02em;
}

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

.nav-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.3) 0%,
    rgba(10, 22, 40, 0.55) 40%,
    rgba(10, 22, 40, 0.92) 80%,
    var(--navy) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 2.5rem 5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { max-width: 560px; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--off-white);
  margin-bottom: 1.75rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

/* Hero Card Stack */
.hero-visual { position: relative; }

.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
}

.hero-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-card:hover {
  transform: translateX(5px);
  border-color: rgba(196, 162, 101, 0.4);
}

.hero-card-1 { transform: rotate(-0.5deg); }
.hero-card-2 { transform: rotate(0.35deg); }
.hero-card-3 { transform: rotate(-0.3deg); }
.hero-card-4 { transform: rotate(0.4deg); }
.hero-card-5 { transform: rotate(-0.25deg); }

.card-check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #a8874f);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(196, 162, 101, 0.3);
}

.card-label {
  font-weight: 600;
  color: var(--off-white);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.card-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
  font-weight: 300;
}

/* ── Journey ─────────────────────────────────────────────── */
.journey {
  padding: 6rem 2.5rem;
  background: var(--charcoal);
}

.journey-inner { max-width: 900px; margin: 0 auto; }

.journey .section-headline { color: var(--off-white); margin-bottom: 4rem; }

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.journey-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(196, 162, 101, 0.1);
}

.journey-step:last-child { border-bottom: none; }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  padding-top: 0.2rem;
}

.step-body h3 {
  font-size: 1.25rem;
  color: var(--off-white);
  margin-bottom: 0.75rem;
}

.step-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ── Features ────────────────────────────────────────────── */
.features {
  padding: 6rem 2.5rem;
  background: var(--navy);
}

.features-inner { max-width: 1100px; margin: 0 auto; }

.features-header { margin-bottom: 3.5rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2.5rem;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(196, 162, 101, 0.35);
  transform: translateY(-2px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Pricing ─────────────────────────────────────────────── */
.pricing {
  padding: 6rem 2.5rem;
  background: var(--charcoal);
}

.pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; }

.pricing .section-headline { margin-bottom: 0.75rem; }

.pricing-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 3rem;
  font-weight: 300;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

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

.pricing-card:hover {
  border-color: rgba(196, 162, 101, 0.4);
  transform: translateY(-3px);
}

.pricing-card-featured {
  border-color: rgba(196, 162, 101, 0.45);
  background: rgba(196, 162, 101, 0.06);
}

.pricing-card-featured::after {
  content: 'Most Popular';
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(196, 162, 101, 0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.pricing-tier {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 1rem 0 1.75rem;
  line-height: 1.6;
  font-weight: 300;
}

.pricing-divider {
  height: 1px;
  background: rgba(196, 162, 101, 0.12);
  margin: 1.5rem 0;
}

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

.pricing-features li {
  font-size: 0.875rem;
  color: var(--off-white);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 400;
}

.pricing-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.pricing-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--glass-border);
  color: var(--off-white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
}

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

.pricing-cta:hover {
  background: rgba(196, 162, 101, 0.12);
  border-color: rgba(196, 162, 101, 0.5);
}

/* ── Closing ──────────────────────────────────────────────── */
.closing {
  padding: 7rem 2.5rem;
  background: var(--navy);
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing .section-eyebrow { justify-content: center; }

.closing-headline {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--off-white);
  margin-bottom: 1.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.closing-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  padding: 2.5rem;
  background: var(--charcoal);
  border-top: 1px solid rgba(196, 162, 101, 0.12);
}

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

.footer-brand { display: flex; align-items: center; gap: 1rem; }

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--off-white);
}

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

.footer-desc {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.3);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 4rem;
    gap: 2.5rem;
  }

  .hero-visual { display: none; }

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

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

  .journey-step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 2rem 0;
  }

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

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

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }

  .pricing-card { padding: 1.75rem; }

  .hero-headline { font-size: 1.75rem; }
}