/* ============================================
   SPP™ COMPANION LANDING PAGE — SHARED STYLES
   Design System: lindavmft.com
   ============================================ */

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

:root {
  --gold: #c4a882;
  --gold-light: #d4be9c;
  --gold-dim: #8a7559;
  --bg-deep: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --bg-card-border: #1e1e1e;
  --bg-accent-card: #0f0d0b;
  --text-primary: #e8e2d9;
  --text-secondary: #9a9490;
  --text-muted: #5a5550;
  --border-subtle: rgba(196, 168, 130, 0.12);
  --border-gold: rgba(196, 168, 130, 0.25);
  --glow-gold: rgba(196, 168, 130, 0.06);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

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

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav__brand span {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.85rem;
  margin-left: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.nav__back {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav__back:hover { color: var(--gold); }

/* HERO */
.lp-hero {
  padding: 10rem 2rem 5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 168, 130, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.lp-hero__tag {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(196, 168, 130, 0.06);
  padding: 0.25rem 0.75rem;
  border-radius: 1px;
}

.lp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}

.lp-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.lp-hero__tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.lp-hero__description {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.65s forwards;
}

.lp-hero__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.lp-hero__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 400;
}

/* SECTIONS */
.lp-section {
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border-subtle);
}

.lp-section__eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.25rem;
}

.lp-section__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.lp-section__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* WHO IT'S FOR */
.lp-audience {
  list-style: none;
}

.lp-audience li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.lp-audience li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}

/* WHAT YOU GET */
.lp-features {
  list-style: none;
}

.lp-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.65;
  border-bottom: 1px solid rgba(196, 168, 130, 0.05);
}

.lp-features li:last-child { border-bottom: none; }

.lp-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 0.55rem;
  top: 0.85rem;
}

/* SAMPLE INTERACTION */
.lp-sample {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 3px;
  padding: 2rem;
  margin-top: 1rem;
}

.lp-sample__label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.25rem;
}

.lp-sample__exchange {
  margin-bottom: 1.25rem;
}

.lp-sample__exchange:last-child { margin-bottom: 0; }

.lp-sample__role {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.lp-sample__role--companion { color: var(--gold-dim); }

.lp-sample__content {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
}

.lp-sample__content--companion {
  font-style: normal;
  color: var(--text-primary);
  opacity: 0.85;
}

/* CTA SECTION */
.lp-cta {
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.lp-cta__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 0.25rem;
}

.lp-cta__price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* DISCLAIMER */
.lp-disclaimer {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border-subtle);
}

.lp-disclaimer__text {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
}

/* FOOTER */
.lp-footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.lp-footer__brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}

.lp-footer__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
}

.lp-footer__links a {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.lp-footer__links a:hover { color: var(--gold); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--bg-deep);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196, 168, 130, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
}

.btn--outline:hover {
  background: rgba(196, 168, 130, 0.06);
  border-color: var(--gold);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .lp-hero { padding: 7rem 1.5rem 3.5rem; }
  .lp-section, .lp-cta, .lp-disclaimer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .lp-hero__cta { flex-direction: column; align-items: flex-start; }
}
