/* ═══════════════════════════════════════════════════
   Motive — motive.ldcoda.com
   Deep dark, warm gold, cosmic Enneagram aesthetic
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────── */
:root {
  --bg:         #0e0d17;
  --bg-2:       #131220;
  --bg-3:       #1a192a;
  --surface:    #1c1b2e;
  --border:     rgba(255,255,255,0.07);
  --border-acc: rgba(184,149,106,0.25);
  --text:       #eae8e2;
  --muted:      #7a7890;
  --dim:        #45445a;
  --accent:     #b8956a;
  --accent-h:   #c8a070;
  --accent-dim: rgba(184,149,106,0.12);
  --accent-glow:rgba(184,149,106,0.3);

  --type-1:#C9A227; --type-2:#E05C5C; --type-3:#E88A3C;
  --type-4:#9B59B6; --type-5:#3498DB; --type-6:#1ABC9C;
  --type-7:#F1C40F; --type-8:#E74C3C; --type-9:#2ECC71;

  --font-d: 'Syne', -apple-system, sans-serif;
  --font-b: 'Inter', -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --ease: 0.2s ease;

  --ldc-footer-bg: #131220;
  --ldc-footer-border: rgba(255,255,255,0.07);
  --ldc-footer-link: #7a7890;
  --ldc-footer-link-h: #eae8e2;
  --ldc-footer-current: #eae8e2;
  --ldc-footer-cat: #45445a;
  --ldc-footer-dot: #45445a;
  --ldc-footer-meta: #45445a;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Cosmic background ─────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(184,149,106,0.07) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 80%, rgba(155,89,182,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(52,152,219,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── Nav ───────────────────────────────────────────── */
nav {
  position: fixed; top:0; left:0; right:0; z-index: 100;
  background: rgba(14,13,23,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-brand svg { width: 32px; height: 32px; flex-shrink: 0; }
.nav-links { display:flex; align-items:center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 8px 20px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.85rem !important;
  transition: background var(--ease) !important;
}
.nav-cta:hover { background: var(--accent-h) !important; color: #fff !important; }

/* Burger button */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-inner { position: relative; }

/* ── Sections container ────────────────────────────── */
section, .container { position: relative; z-index: 1; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 80px;
  position: relative;
}

.hero-sigil {
  width: 180px;
  height: 180px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.hero-sigil svg { width: 100%; height: 100%; }
.hero-sigil .sigil-figure {
  transform-origin: 50% 50%;
  animation: sigilSpin 60s linear infinite;
}
@keyframes sigilSpin { to { transform: rotate(360deg); } }

.hero-sigil::after {
  content: '';
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  filter: blur(20px);
  opacity: 0.6;
  animation: heroGlow 5s ease-in-out infinite;
  z-index: -1;
}
@keyframes heroGlow {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.08); }
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}
.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.35s forwards;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.5s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.65s forwards;
}
.btn-primary {
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 32px;
  font-family: var(--font-d);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background var(--ease), transform var(--ease);
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--accent-h); transform: translateY(-2px); }
.btn-ghost {
  padding: 14px 32px;
  border: 1px solid var(--border-acc);
  color: var(--text);
  border-radius: 32px;
  font-family: var(--font-d);
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color var(--ease), background var(--ease);
  cursor: pointer;
  background: transparent;
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-dim); }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.6s ease 1s forwards;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ── Intro strip ───────────────────────────────────── */
.intro {
  padding: 100px 0;
  text-align: center;
}
.intro h2 {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  max-width: 680px;
  margin: 0 auto 1.5rem;
}
.intro p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Section heads ─────────────────────────────────── */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
}
.section-sub.wide { max-width: 680px; }

/* ── Nine Types grid ───────────────────────────────── */
.types-section {
  padding: 100px 0;
  overflow: hidden;
}
.types-section .container { text-align: center; }
.types-section .section-sub { margin: 0 auto 4rem; }

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.type-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
  transition: border-color var(--ease), transform var(--ease), background var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.type-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tc);
  opacity: 0;
  transition: opacity var(--ease);
}
.type-card:hover { border-color: var(--tc); transform: translateY(-3px); background: var(--bg-3); }
.type-card:hover::after { opacity: 1; }
.type-num {
  font-family: var(--font-d);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--tc);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.type-name {
  font-family: var(--font-d);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.type-tag {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}
.type-drive {
  font-size: 0.76rem;
  color: var(--dim);
  margin-top: 10px;
  line-height: 1.45;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

/* ── Features ──────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.features-list { display: flex; flex-direction: column; gap: 32px; margin-top: 2.5rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--accent-dim);
  border: 1px solid var(--border-acc);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-top: 2px;
}
.feature-item h4 {
  font-family: var(--font-d);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.feature-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

.feature-visual {
  position: sticky;
  top: 100px;
}
.feature-card-demo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.feature-card-demo::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at center, var(--accent-dim) 0%, transparent 55%);
}
.demo-result-hero {
  text-align: center;
  padding: 1rem 0;
}
.demo-sigil { margin: 0 auto 1rem; }
.demo-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1.5px solid var(--type-4);
  border-radius: 20px;
  color: var(--type-4);
  margin-bottom: 0.75rem;
}
.demo-name {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.demo-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.demo-pills { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.demo-pill {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(155,89,182,0.35);
  color: var(--type-4);
}
.demo-meta { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 8px; }
.demo-row {
  display: flex; justify-content: space-between;
  font-size: 0.78rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.demo-row:last-child { border-bottom: none; }
.demo-label { color: var(--muted); font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase; }
.demo-val { color: var(--text); font-weight: 500; }

/* ── Philosophy ────────────────────────────────────── */
.philosophy {
  padding: 100px 0;
}
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 4rem;
}
.phil-quotes { display: flex; flex-direction: column; gap: 24px; }
.phil-quote {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem;
  position: relative;
}
.phil-quote blockquote {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.phil-quote cite {
  font-size: 0.72rem;
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0.05em;
}
.phil-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.phil-body p:last-child { margin-bottom: 0; }
.phil-body strong { color: var(--text); font-weight: 600; }

/* ── Price ─────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border-acc);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 460px;
  margin: 3rem auto 0;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.price-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border-acc);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 1.5rem;
}
.price-num {
  font-family: var(--font-d);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.price-num sup { font-size: 1.4rem; vertical-align: top; margin-top: 8px; }
.price-once { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; margin-bottom: 2rem; }
.price-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-includes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.4;
}
.price-includes li::before { content: '◆'; color: var(--accent); font-size: 0.6rem; margin-top: 4px; flex-shrink: 0; }
.price-sub { font-size: 0.78rem; color: var(--dim); margin-top: 1.25rem; }
.price-sub a { color: var(--muted); border-bottom: 1px solid var(--border); }
.price-sub a:hover { color: var(--accent); border-color: var(--accent); }
.store-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  transition: border-color var(--ease), color var(--ease);
  max-width: 200px;
  margin: 0 auto;
}
.store-badge:hover { border-color: var(--accent); color: var(--text); }

/* ── FAQ ───────────────────────────────────────────── */
.faq { padding: 100px 0; }
.faq .container { max-width: 760px; }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  margin-bottom: 4px;
}
.faq-q {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-d);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--ease);
  list-style: none;
}
.faq-q:hover { color: var(--accent); }
.faq-q::marker, .faq-q::-webkit-details-marker { display: none; }
.faq-arrow { color: var(--muted); transition: transform var(--ease); flex-shrink: 0; }
details[open] .faq-arrow { transform: rotate(180deg); color: var(--accent); }
details[open] .faq-q { color: var(--accent); }
.faq-a {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}


/* ── Animations ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(16px); }
  to   { opacity:1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Mobile ────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    gap: 1rem;
    border-top: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.05rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 0.95rem; }
  .types-grid { grid-template-columns: 1fr 1fr; }
  .features .container { grid-template-columns: 1fr; gap: 40px; }
  .feature-visual { display: none; }
  .phil-grid { grid-template-columns: 1fr; }

}
@media (max-width: 480px) {
  .types-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 280px; text-align: center; }
}
