/* Manjiro.ai — hype landing (tradition × frontier) */

.landing-page {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a1a;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.landing-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(168deg, #fafbff 0%, #f8f6f3 38%, #f0ebe4 100%);
}

.landing-bg::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 42%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(99, 102, 241, 0.12) 25%,
    rgba(181, 164, 148, 0.22) 50%,
    rgba(56, 189, 248, 0.1) 75%,
    transparent 100%
  );
}

.landing-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(181, 164, 148, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181, 164, 148, 0.05) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px, 16px 16px, 16px 16px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 28%, black 15%, transparent 78%);
}

.landing-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: glow-drift 18s ease-in-out infinite alternate;
}

.landing-glow-a {
  width: 420px;
  height: 420px;
  background: #B5A494;
  top: -8%;
  right: -5%;
}

.landing-glow-b {
  width: 320px;
  height: 320px;
  background: #9A8B7A;
  bottom: 10%;
  left: -8%;
  animation-delay: -6s;
}

.landing-glow-c {
  width: 360px;
  height: 360px;
  background: rgba(99, 102, 241, 0.55);
  top: 18%;
  left: 50%;
  margin-left: -180px;
  opacity: 0.18;
  animation-delay: -12s;
}

@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(24px, 16px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .landing-glow { animation: none; }
}

.landing-header,
main,
.landing-footer {
  position: relative;
  z-index: 1;
}

/* Header */
.landing-header {
  border-bottom: 1px solid rgba(181, 164, 148, 0.2);
  background: rgba(253, 252, 251, 0.78);
  backdrop-filter: blur(16px) saturate(1.15);
  position: sticky;
  top: 0;
  z-index: 50;
}

.landing-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  text-decoration: none;
}

.logo-mark {
  height: 1.9rem;
  width: auto;
  flex-shrink: 0;
}

.logo-wordmark {
  height: 2.5rem;
  width: auto;
  max-width: min(18rem, 55vw);
  object-fit: contain;
  margin-left: 0;
}

.landing-nav {
  display: none;
  gap: 2rem;
}

@media (min-width: 640px) {
  .landing-nav { display: flex; }
}

.landing-nav a {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.landing-nav a:hover,
.landing-nav a.active {
  color: #B5A494;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  border: none;
  background: #B5A494;
  color: #1f2937;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(154, 139, 122, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.lang-pill-link:hover {
  background: #9A8B7A;
  transform: scale(1.03);
  color: #1f2937;
}

.lang-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  width: 9.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 0.25rem 0;
  z-index: 60;
}

.lang-panel.hidden { display: none; }

/* Hero compact variant (John page) */
.landing-hero-compact {
  padding: 4rem 1.25rem 2.5rem;
}

.landing-title-single {
  font-size: clamp(3rem, 8vw, 4.5rem);
}

.landing-title-single.landing-title-accent,
.landing-title-single {
  display: block;
  color: #B5A494;
  font-style: italic;
}

.lang-option {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.55rem 0.85rem;
  border: none;
  background: none;
  font-size: 0.875rem;
  color: #374151;
  cursor: pointer;
  text-align: left;
}

.lang-option:hover { background: #f9fafb; }

.lang-check {
  margin-left: auto;
  color: #B5A494;
  font-weight: 700;
}

#langDropdownPanel [data-lang-check][hidden] {
  display: none !important;
}

/* Hero */
.landing-hero {
  padding: 5rem 1.25rem 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .landing-hero { padding: 7rem 1.5rem 5rem; }
}

.landing-hero-inner {
  max-width: 44rem;
  margin: 0 auto;
}

.landing-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 9999px;
  border: 1px solid rgba(99, 102, 241, 0.14);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.06);
}

.landing-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.12;
  color: #111827;
  margin: 0 0 1.25rem;
}

html[lang="ja"] .landing-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.05rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.landing-title-accent {
  display: block;
  font-style: italic;
  color: #111827;
}

html[lang="ja"] .landing-title-accent {
  font-style: normal;
}

.landing-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.65;
  color: #374151;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.landing-hero-rule {
  width: 4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.35), rgba(181, 164, 148, 0.5), transparent);
  margin: 0 auto 2rem;
}

.landing-whisper {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6b7280;
  max-width: 32rem;
  margin: 0 auto;
}

/* Stats */
.landing-stats {
  padding: 0 1.25rem 2rem;
}

/* Founder credentials */
.credentials-strip {
  padding: 0 1.25rem 3.5rem;
}

.credentials-inner {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(181, 164, 148, 0.25);
  border-radius: 1rem;
}

.credentials-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9A8B7A;
  margin: 0 0 1.25rem;
}

.credentials-orgs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.credentials-orgs li {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.02em;
}

.credentials-note {
  margin: 1.25rem 0 0;
  font-size: 0.75rem;
  color: #d1d5db;
  font-style: italic;
}

.landing-stats-inner {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(181, 164, 148, 0.28);
  border-radius: 0.75rem;
  backdrop-filter: blur(12px) saturate(1.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.6) inset,
    0 12px 40px rgba(15, 23, 42, 0.05);
  position: relative;
}

.landing-stats-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.35), transparent);
  border-radius: 1px;
}

.stat { text-align: center; min-width: 7rem; }

.stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-label {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(181, 164, 148, 0.35);
  display: none;
}

@media (min-width: 640px) {
  .stat-divider { display: block; }
}

/* Sections */
.landing-section {
  padding: 4.5rem 1.25rem;
}

.landing-section-dark {
  background: linear-gradient(180deg, rgba(248, 247, 252, 0.92) 0%, rgba(244, 241, 236, 0.96) 100%);
  border-top: 1px solid rgba(181, 164, 148, 0.18);
  border-bottom: 1px solid rgba(181, 164, 148, 0.18);
}

.landing-section-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.landing-split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .landing-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #111827;
  margin: 0 0 1.25rem;
}

.section-title-center {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-body {
  font-size: 1rem;
  line-height: 1.75;
  color: #4b5563;
  margin: 0 0 1rem;
}

.heritage-prose {
  max-width: 42rem;
}

/* Philosophy */
.philosophy-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(181, 164, 148, 0.22);
  border-radius: 0.75rem;
  padding: 1.75rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.philosophy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 16px 40px rgba(15, 23, 42, 0.07);
}

.philosophy-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #B5A494, #9A8B7A);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.philosophy-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem;
}

.philosophy-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #6b7280;
  margin: 0;
}

/* Quote */
.landing-quote {
  padding: 3.5rem 1.25rem;
  text-align: center;
}

.landing-quote blockquote {
  margin: 0;
  max-width: 36rem;
  margin-inline: auto;
}

.landing-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 500;
  color: #374151;
  line-height: 1.45;
}

html[lang="ja"] .landing-quote p {
  font-style: normal;
}

.landing-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: 0.02em;
}

/* John CTA (home) */
.landing-john-cta {
  padding: 4.5rem 1.25rem 6rem;
  text-align: center;
}

.landing-john-cta-inner {
  max-width: 34rem;
  margin: 0 auto;
}

.john-cta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9A8B7A;
  margin-bottom: 0.75rem;
}

.john-cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 600;
  font-style: italic;
  color: #B5A494;
  margin: 0 0 1rem;
}

html[lang="ja"] .john-cta-title {
  font-style: normal;
}

.john-cta-body {
  font-size: 1rem;
  line-height: 1.75;
  color: #6b7280;
  margin: 0 0 1.75rem;
}

.john-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(181, 164, 148, 0.5);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.6);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.john-cta-link:hover {
  background: #fff;
  border-color: #B5A494;
  color: #B5A494;
}

/* Product offerings (home) */
.landing-section-product {
  padding-bottom: 5rem;
}

.section-intro {
  text-align: center;
  max-width: 36rem;
  margin: -1rem auto 2.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #6b7280;
}

.section-intro a {
  color: #B5A494;
  font-weight: 500;
  text-decoration: none;
}

.section-intro a:hover {
  text-decoration: underline;
}

.outcomes-list {
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.section-body-spaced {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.landing-whisper-product {
  max-width: 32rem;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.875rem;
}

/* Agent lab — hype, no feature grid */
.landing-section-agent {
  padding: 5rem 1.5rem 6rem;
}

.agent-lab-inner {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.agent-lab-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9A8B7A;
  margin: 0 0 1.25rem;
}

.agent-lab-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.12;
  color: #111827;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.agent-lab-lead {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4b5563;
  max-width: 38rem;
  margin: 0 auto 3rem;
}

.agent-pillars {
  display: grid;
  gap: 1px;
  background: rgba(181, 164, 148, 0.22);
  border: 1px solid rgba(181, 164, 148, 0.28);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .agent-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.agent-pillar {
  background: rgba(255, 255, 255, 0.88);
  padding: 2rem 1.5rem;
  text-align: center;
}

.agent-pillar-label {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #7A6B5A;
  margin-bottom: 0.65rem;
}

.agent-pillar p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4b5563;
}

.agent-lab-closure {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.65;
  color: #374151;
  max-width: 34rem;
  margin: 0 auto 1.5rem;
}

.agent-lab-whisper {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: #6b7280;
  margin: 0;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.solutions-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
  }
}

.solution-card {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(181, 164, 148, 0.26);
  border-radius: 0.75rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.solution-card-featured {
  border-color: rgba(99, 102, 241, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 12px 36px rgba(99, 102, 241, 0.08);
}

.solution-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9A8B7A;
  background: rgba(248, 246, 243, 0.9);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(181, 164, 148, 0.3);
}

.solution-badge-max {
  color: #B5A494;
}

.solution-tier {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.solution-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4b5563;
  margin: 0 0 1.25rem;
}

.solution-email {
  font-family: ui-monospace, monospace;
  font-size: 0.85em;
  color: #9A8B7A;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #374151;
  margin-bottom: 0.5rem;
}

.solution-features i {
  color: #B5A494;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.solution-privacy {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #6b7280;
  padding-top: 1rem;
  border-top: 1px solid rgba(181, 164, 148, 0.2);
  margin: 0;
}

.solution-privacy-soft {
  font-style: italic;
}

.solutions-footnote {
  max-width: 40rem;
  margin: 2.5rem auto 0;
  text-align: center;
}

.solutions-footnote p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #9ca3af;
  margin: 0;
}

/* Arrival (deprecated — kept for reference) */
.landing-arrival {
  padding: 5rem 1.25rem 6rem;
  text-align: center;
}

.landing-arrival-inner {
  max-width: 36rem;
  margin: 0 auto;
}

.arrival-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B5A494;
  margin-bottom: 1rem;
}

.arrival-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: #111827;
  margin: 0 0 1.25rem;
}

.arrival-body {
  font-size: 1rem;
  line-height: 1.75;
  color: #6b7280;
  margin: 0 0 2rem;
}

.arrival-pulse {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.arrival-pulse span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #B5A494;
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.arrival-pulse span:nth-child(2) { animation-delay: 0.2s; }
.arrival-pulse span:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse-dot {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}

/* Footer */
.landing-footer {
  border-top: 1px solid rgba(181, 164, 148, 0.25);
  padding: 2.5rem 1.25rem;
  background: rgba(248, 246, 243, 0.6);
}

.landing-footer-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand img:last-child {
  height: 1.75rem;
  width: auto;
  max-width: 12rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.5;
  margin: 0 0 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.8rem;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
}

.footer-links a:hover {
  color: #374151;
  text-decoration: underline;
}

.footer-links-sep {
  color: #d1d5db;
  user-select: none;
}

.footer-copy {
  font-size: 0.75rem;
  color: #d1d5db;
  margin: 0;
}

/* Legal pages */
.legal-page .legal-main {
  position: relative;
  z-index: 1;
  padding: 6.5rem 1.25rem 4rem;
}

.legal-prose {
  max-width: 40rem;
  margin: 0 auto;
}

.legal-prose h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 0 0 2rem;
}

.legal-prose h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin: 2rem 0 0.75rem;
}

.legal-prose p,
.legal-prose li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4b5563;
}

.legal-prose p {
  margin: 0 0 1rem;
}

.legal-prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-prose li {
  margin-bottom: 0.35rem;
}

.legal-prose a {
  color: #6b7280;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-prose a:hover {
  color: #374151;
}
