:root {
  --landing-black: #0a0906;
  --landing-deep: #0f0d09;
  --landing-gold: #b8860b;
  --landing-gold-light: #d4a017;
  --landing-gold-dim: #8b6914;
  --landing-gold-glow: rgba(184, 134, 11, 0.14);
  --landing-cream: #f5f0e8;
  --landing-cream-dim: #c8bfa8;
  --landing-white: #ffffff;
  --landing-text-muted: #6b6355;
  --landing-border: rgba(184, 134, 11, 0.18);
  --landing-border-strong: rgba(184, 134, 11, 0.35);
}

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

.landing-page {
  background: var(--landing-black);
  color: var(--landing-cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.landing-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

.landing-page nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10,9,6,0.95) 0%, transparent 100%);
  backdrop-filter: blur(2px);
}

.landing-page .nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--landing-gold-light);
  letter-spacing: 0.08em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.landing-page .nav-logo-infinity { font-size: 1.6rem; color: var(--landing-gold); opacity: 0.9; line-height: 1; }

.landing-page .nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.landing-page .nav-links a {
  color: var(--landing-cream-dim);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: pointer;
}
.landing-page .nav-links a:hover { color: var(--landing-gold-light); }

.landing-page .nav-right { display: flex; align-items: center; gap: 12px; }

.landing-page .hamburger {
  width: 40px; height: 40px;
  border: 1px solid var(--landing-border);
  border-radius: 2px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  padding: 0;
}
.landing-page .hamburger:hover { border-color: var(--landing-gold-dim); background: var(--landing-gold-glow); }
.landing-page .hamburger span { display: block; width: 16px; height: 1px; background: var(--landing-cream-dim); transition: all 0.25s; }
.landing-page .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--landing-gold-light); }
.landing-page .hamburger.open span:nth-child(2) { opacity: 0; }
.landing-page .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--landing-gold-light); }

.landing-page .drawer {
  position: fixed;
  top: 0; right: -340px;
  width: 320px; height: 100vh;
  background: var(--landing-deep);
  border-left: 1px solid var(--landing-border);
  z-index: 200;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  overflow-y: auto;
}
.landing-page .drawer.open { right: 0; }

.landing-page .drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(10,9,6,0.7);
  z-index: 190;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.landing-page .drawer-overlay.open { opacity: 1; pointer-events: all; }

.landing-page .drawer-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none;
  color: var(--landing-text-muted); font-size: 1.2rem;
  cursor: pointer; padding: 8px;
  transition: color 0.2s;
}
.landing-page .drawer-close:hover { color: var(--landing-cream); }

.landing-page .drawer-section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--landing-gold-dim);
  margin-bottom: 16px;
  margin-top: 32px;
}
.landing-page .drawer-section-label:first-of-type { margin-top: 0; }

.landing-page .drawer-links { list-style: none; display: flex; flex-direction: column; gap: 2px; padding: 0; }
.landing-page .drawer-links a {
  display: block;
  padding: 10px 0;
  color: var(--landing-cream-dim);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(184,134,11,0.06);
  transition: color 0.2s, padding-left 0.2s;
  cursor: pointer;
}
.landing-page .drawer-links a:hover { color: var(--landing-cream); padding-left: 8px; }
.landing-page .drawer-links a:last-child { border-bottom: none; }

.landing-page .drawer-cta { margin-top: auto; padding-top: 32px; border-top: 1px solid var(--landing-border); }
.landing-page .drawer-cta a {
  display: block; text-align: center;
  background: var(--landing-gold); color: var(--landing-black);
  padding: 13px 24px; border-radius: 2px;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
  cursor: pointer;
}
.landing-page .drawer-cta a:hover { background: var(--landing-gold-light); }

.landing-page .nav-cta {
  background: transparent;
  border: 1px solid var(--landing-gold-dim);
  color: var(--landing-gold-light);
  padding: 9px 22px; border-radius: 2px;
  transition: all 0.25s;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.landing-page .nav-cta:hover { background: var(--landing-gold-glow); border-color: var(--landing-gold); color: var(--landing-gold-light); }

.landing-page .btn-primary {
  background: var(--landing-gold);
  color: var(--landing-black);
  padding: 14px 36px;
  border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.landing-page .btn-primary:hover {
  background: var(--landing-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(184,134,11,0.25);
}

.landing-page .btn-ghost {
  color: var(--landing-cream-dim); font-size: 0.85rem;
  letter-spacing: 0.06em; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
  cursor: pointer;
}
.landing-page .btn-ghost:hover { color: var(--landing-cream); }

.landing-page .container { max-width: 1100px; margin: 0 auto; padding: 0 60px; }

.landing-page .section-label {
  display: inline-flex;
  align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--landing-gold);
  margin-bottom: 20px;
}
.landing-page .section-label::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--landing-gold);
}

.landing-page footer {
  padding: 36px 60px;
  border-top: 1px solid var(--landing-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.landing-page .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--landing-gold-dim);
  letter-spacing: 0.08em;
}
.landing-page .footer-links {
  display: flex; gap: 28px; list-style: none;
}
.landing-page .footer-links a {
  color: var(--landing-text-muted);
  text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.06em;
  transition: color 0.2s;
}
.landing-page .footer-links a:hover { color: var(--landing-cream); }
.landing-page .footer-copy {
  font-size: 0.72rem; color: var(--landing-text-muted);
}

.landing-page .page-content {
  padding: 120px 60px 80px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.landing-page .page-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--landing-cream);
  margin-bottom: 16px;
}

.landing-page .page-content h1 em {
  font-style: italic;
  color: var(--landing-gold-light);
}

.landing-page .page-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 400;
  color: var(--landing-cream);
  margin-top: 56px;
  margin-bottom: 20px;
}

.landing-page .page-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--landing-cream);
  margin-top: 32px;
  margin-bottom: 12px;
}

.landing-page .page-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--landing-gold-light);
  margin-top: 24px;
  margin-bottom: 8px;
}

.landing-page .page-content p {
  color: var(--landing-cream-dim);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.landing-page .page-content ul,
.landing-page .page-content ol {
  color: var(--landing-cream-dim);
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 24px;
  font-size: 0.95rem;
}

.landing-page .page-content li {
  margin-bottom: 6px;
}

.landing-page .page-content strong {
  color: var(--landing-cream);
  font-weight: 500;
}

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

.landing-page .page-content blockquote {
  border-left: 2px solid var(--landing-gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: rgba(184,134,11,0.04);
  border-radius: 0 4px 4px 0;
}
.landing-page .page-content blockquote p {
  color: var(--landing-cream);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.landing-page .page-content blockquote cite {
  color: var(--landing-gold);
  font-style: normal;
  font-size: 0.85rem;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.06em;
}

.landing-page .info-card {
  background: var(--landing-deep);
  border: 1px solid var(--landing-border);
  border-radius: 4px;
  padding: 28px 32px;
  margin-bottom: 20px;
}

.landing-page .info-card h3 {
  margin-top: 0;
  color: var(--landing-cream);
}

.landing-page .highlight-card {
  background: rgba(184,134,11,0.06);
  border: 1px solid var(--landing-border-strong);
  border-radius: 4px;
  padding: 28px 32px;
  margin: 24px 0;
}

.landing-page .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.landing-page .stat-item {
  background: var(--landing-deep);
  border: 1px solid var(--landing-border);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
}
.landing-page .stat-item .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--landing-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.landing-page .stat-item .stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--landing-text-muted);
}

.landing-page .pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.landing-page .pricing-card {
  background: var(--landing-deep);
  border: 1px solid var(--landing-border);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.landing-page .pricing-card.featured {
  border-color: var(--landing-gold);
  box-shadow: 0 0 32px rgba(184,134,11,0.1);
}
.landing-page .pricing-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--landing-gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.landing-page .pricing-card .price-note {
  font-size: 0.78rem;
  color: var(--landing-text-muted);
  margin-bottom: 20px;
}
.landing-page .pricing-card .price-desc {
  font-size: 0.9rem;
  color: var(--landing-cream-dim);
  margin-bottom: 20px;
  line-height: 1.6;
}
.landing-page .pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  flex: 1;
}
.landing-page .pricing-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(184,134,11,0.06);
  font-size: 0.88rem;
  color: var(--landing-cream-dim);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.landing-page .pricing-card li::before {
  content: '✓';
  color: var(--landing-gold);
  font-weight: 500;
  flex-shrink: 0;
}
.landing-page .pricing-card li:last-child { border-bottom: none; }

.landing-page .step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.landing-page .step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--landing-gold);
  color: var(--landing-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.landing-page .faq-section { margin-top: 48px; }
.landing-page .faq-section details {
  border-bottom: 1px solid var(--landing-border);
  padding: 0;
}
.landing-page .faq-section summary {
  padding: 18px 0;
  cursor: pointer;
  color: var(--landing-cream);
  font-size: 0.95rem;
  font-weight: 400;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.landing-page .faq-section summary::-webkit-details-marker { display: none; }
.landing-page .faq-section summary::after {
  content: '+';
  color: var(--landing-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.landing-page .faq-section details[open] summary::after {
  content: '−';
}
.landing-page .faq-section .faq-answer {
  padding: 0 0 18px;
  color: var(--landing-cream-dim);
  font-size: 0.9rem;
  line-height: 1.8;
}

.landing-page .faq-category {
  margin-top: 40px;
}
.landing-page .faq-category-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--landing-gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--landing-border-strong);
}

.landing-page .team-member {
  background: var(--landing-deep);
  border: 1px solid var(--landing-border);
  border-radius: 4px;
  padding: 28px 32px;
  margin-bottom: 16px;
}
.landing-page .team-member h3 {
  margin-top: 0;
  color: var(--landing-gold-light);
}

@media (max-width: 768px) {
  .landing-page nav { padding: 16px 20px; }
  .landing-page .nav-links { display: none; }
  .landing-page .page-content { padding: 100px 20px 60px; }
  .landing-page footer { padding: 28px 16px; flex-direction: column; gap: 20px; text-align: center; }
  .landing-page .footer-links { flex-wrap: wrap; justify-content: center; }
  .landing-page .pricing-cards { grid-template-columns: 1fr; }
  .landing-page .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .landing-page .step-item { flex-direction: column; gap: 12px; }
}
