/* ── Landing Page Styles ── */

/* Navigation */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(15, 14, 13, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.landing-nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.landing-nav-login {
  background: transparent !important;
  border: 1px solid var(--border) !important;
  color: var(--text-secondary) !important;
  padding: 0.5rem 1.25rem !important;
  font-size: 0.875rem !important;
}

.landing-nav-login:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

.landing-nav-signup {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 0.5rem 1.25rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
}

.landing-nav-signup:hover {
  opacity: 0.88;
}

/* Hero */
.landing-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 5rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  min-height: 80vh;
}

.landing-hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 2rem;
}

.landing-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 11vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.landing-hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.65;
  margin: 0 0 2.5rem;
}

.landing-hero-sub em {
  font-style: italic;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2em;
  font-weight: 600;
}

.landing-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.landing-hero-hint {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

.landing-hero-hint a {
  color: var(--accent);
  text-decoration: none;
}

/* Shared section wrappers */
.lp-section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-full-bleed {
  width: 100%;
}

.lp-full-bleed > .lp-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.lp-bg-subtle {
  background: var(--bg-subtle);
}

.lp-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.lp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem;
  line-height: 1.12;
}

.lp-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

/* Problem section */
.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.problem-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}

.problem-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.6;
  margin: 0 0 0.75rem;
}

.problem-card h3 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.problem-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Features / Solution */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
  color: var(--accent);
  display: block;
}

.feature-card h3 {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Dominas */
.lp-dominas-section-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.lp-dominas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 0;
}

.domina-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color 0.2s;
}

.domina-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
}

.domina-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), rgba(201, 168, 76, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f0e0d;
  flex-shrink: 0;
}

.domina-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.domina-role {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.1rem;
}

.domina-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.domina-quote {
  font-style: italic;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-left: 2px solid var(--accent);
  padding-left: 0.75rem;
  margin: 0;
  opacity: 0.85;
}

/* Living Dynamic section */
.lp-dynamic-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
}

.lp-dynamic-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.lp-dynamic-intro .lp-body {
  margin: 0.75rem auto 0;
}

.lp-dynamic-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4.5rem;
  align-items: start;
}

/* Mock in-app preview card */
.lp-dynamic-preview {
  background: var(--bg-surface);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  box-shadow: 0 0 48px rgba(201, 168, 76, 0.07);
  position: sticky;
  top: 5rem;
}

.ldp-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ldp-mood-icon {
  color: var(--accent);
  font-size: 0.95rem;
}

.ldp-mood-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ldp-pleased   { color: #7dcf7d; }
.ldp-radiant   { color: var(--accent); }
.ldp-watchful  { color: var(--text-secondary); }
.ldp-displeased { color: #e07070; }
.ldp-withdrawn { color: #888; }

.ldp-phase-tag {
  margin-left: auto;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
}

.ldp-divider {
  height: 1px;
  background: var(--border);
}

.ldp-bond-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.ldp-bond-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.ldp-bond-level {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.ldp-bond-max {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: inherit;
  font-weight: 400;
}

.ldp-bond-track {
  height: 4px;
  background: var(--bg-subtle);
  border-radius: 2px;
  overflow: hidden;
  margin-top: -0.25rem;
}

.ldp-bond-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), rgba(201, 168, 76, 0.6));
  border-radius: 2px;
}

.ldp-dims {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ldp-dim {
  display: grid;
  grid-template-columns: 64px 1fr 26px;
  align-items: center;
  gap: 0.5rem;
}

.ldp-dim-name {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-secondary);
}

.ldp-dim-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.ldp-dim-fill {
  height: 100%;
  background: rgba(201, 168, 76, 0.55);
  border-radius: 2px;
}

.ldp-dim-val {
  font-size: 0.68rem;
  color: var(--text-secondary);
  text-align: right;
}

.ldp-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
}

.ldp-footer-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  opacity: 0.6;
}

.ldp-footer-val {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
}

/* Three pillars */
.lp-dynamic-pillars {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.lp-dynamic-pillar {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.lp-dynamic-pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.25);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 0.1rem;
  min-width: 2rem;
}

.lp-dynamic-pillar h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}

.lp-dynamic-pillar p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Safety */
.lp-safety-intro {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.lp-safety-intro .lp-body {
  margin: 0 auto;
}

.lp-safety-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.safety-pillar {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.safety-pillar-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
}

.safety-pillar h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}

.safety-pillar p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Pricing */
.lp-pricing-header {
  text-align: center;
}

.lp-pricing-header .lp-body {
  margin: 0 auto 0;
}

.lp-pricing-toggle {
  display: flex;
  gap: 0;
  background: var(--bg-surface);
  border-radius: 8px;
  padding: 3px;
  width: fit-content;
  margin: 2rem auto 3rem;
  border: 1px solid var(--border);
}

.lp-pricing-toggle button {
  background: transparent;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.lp-pricing-toggle button.active {
  background: var(--accent);
  color: #000;
  font-weight: 600;
}

.lp-pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.05) 0%, var(--bg-surface) 60%);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.875rem;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}

.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 0.75rem;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pricing-save {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  min-height: 1.1em;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.5rem 0;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  margin-bottom: 0.5rem;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.4;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.1em;
}

.pricing-features li.no::before {
  content: '—';
  color: var(--text-secondary);
  opacity: 0.35;
}

.pricing-features li.no {
  opacity: 0.5;
}

.pricing-cta-btn {
  width: 100%;
  padding: 0.875rem;
  font-size: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  border: none;
  transition: opacity 0.15s, border-color 0.15s, color 0.15s;
  margin-top: 0.5rem;
}

.pricing-cta-btn.gold {
  background: var(--accent);
  color: #000;
}

.pricing-cta-btn.gold:hover {
  opacity: 0.88;
}

.pricing-cta-btn.outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.pricing-cta-btn.outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* FAQ */
.lp-faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 720px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s;
}

.faq-item.open {
  border-color: rgba(201, 168, 76, 0.3);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.125rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--text-secondary);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Auth sign-up section */
.lp-auth-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-primary);
  text-align: center;
  margin: 0 0 2rem;
  font-weight: 700;
}

.lp-auth-wrap {
  max-width: 460px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1280px) {
  .lp-dominas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .lp-dominas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .landing-nav {
    padding: 0.875rem 1.25rem;
  }

  .landing-nav-login {
    display: none !important;
  }

  .landing-hero {
    padding: 4rem 1.5rem 3.5rem;
    min-height: 70vh;
  }

  .lp-section {
    padding: 3.5rem 1.5rem;
  }

  .lp-problem-grid,
  .lp-safety-pillars,
  .lp-pricing-cards {
    grid-template-columns: 1fr;
  }

  .lp-pricing-cards {
    max-width: 400px;
    margin: 0 auto;
  }

  .lp-dominas-grid {
    grid-template-columns: 1fr;
  }

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

  .lp-dynamic-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lp-dynamic-preview {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* Manifesto section — subtle top separator */
.lp-manifesto-section {
  border-top: 1px solid var(--border);
}
