:root {
  --lnp-ink: #231523;
  --lnp-muted: #6e616c;
  --lnp-pink: #dc3d83;
  --lnp-pink-dark: #ad1e62;
  --lnp-blush: #fbe8f1;
  --lnp-cream: #fffaf7;
  --lnp-white: #ffffff;
  --lnp-line: rgba(35, 21, 35, 0.12);
  --lnp-shadow: 0 24px 70px rgba(70, 24, 51, 0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--lnp-cream);
  color: var(--lnp-ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-top: 82px;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display-font {
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: -0.04em;
}

a { color: inherit; }

.navbar {
  min-height: 82px;
  background: rgba(255, 250, 247, 0.94);
  border-bottom: 1px solid var(--lnp-line);
  backdrop-filter: blur(18px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--lnp-ink);
  color: var(--lnp-white);
  font-size: 0.78rem;
  letter-spacing: -0.05em;
}

.navbar .nav-link {
  color: var(--lnp-ink);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.65rem 0.85rem !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--lnp-pink-dark); }

.navbar-toggler {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--lnp-line) !important;
  border-radius: 50%;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 21px;
  height: 21px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath stroke='%23231523' stroke-linecap='round' stroke-width='2' d='M3 6h18M3 12h18M3 18h18'/%3E%3C/svg%3E");
  transition: transform 220ms ease, background-image 220ms ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  transform: rotate(90deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath stroke='%23ad1e62' stroke-linecap='round' stroke-width='2' d='M5 5l14 14M19 5L5 19'/%3E%3C/svg%3E");
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.8rem 1.35rem;
}

.btn-brand {
  background: var(--lnp-pink);
  border-color: var(--lnp-pink);
  color: white;
  box-shadow: 0 10px 28px rgba(220, 61, 131, 0.22);
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--lnp-pink-dark);
  border-color: var(--lnp-pink-dark);
  color: white;
  transform: translateY(-1px);
}

.btn-outline-ink {
  border: 1px solid rgba(35, 21, 35, 0.28);
  color: var(--lnp-ink);
  background: rgba(255,255,255,0.2);
}

.btn-outline-ink:hover { background: var(--lnp-ink); color: white; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--lnp-pink-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: -18%;
  right: -8%;
  width: 54vw;
  height: 54vw;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #ffd1e3 0, #f395bd 42%, #dc3d83 70%, #8f1d57 100%);
  opacity: 0.96;
}

.hero::after {
  content: "LN";
  position: absolute;
  z-index: -1;
  right: -1.5vw;
  top: 42%;
  color: rgba(255,255,255,0.2);
  font-family: "Manrope", sans-serif;
  font-size: clamp(13rem, 25vw, 31rem);
  font-weight: 800;
  line-height: 0.7;
  letter-spacing: -0.12em;
  transform: translateY(-50%);
}

.hero h1 {
  max-width: 780px;
  margin: 1.25rem 0 1.5rem;
  font-size: clamp(3.45rem, 7vw, 7rem);
  font-weight: 800;
  line-height: 0.92;
}

.hero .lead {
  max-width: 620px;
  color: var(--lnp-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.hero-card {
  margin-top: 3.5rem;
  max-width: 600px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.7);
  box-shadow: var(--lnp-shadow);
  backdrop-filter: blur(18px);
}

.hero-card .stat + .stat { border-left: 1px solid var(--lnp-line); }
.stat strong { display: block; font-size: 1.5rem; letter-spacing: -0.05em; }
.stat span { color: var(--lnp-muted); font-size: 0.78rem; }

.section { padding: 7rem 0; }
.section-tight { padding: 5rem 0; }

.section-title {
  max-width: 740px;
  margin-top: 1rem;
  font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.02;
}

.section-copy { color: var(--lnp-muted); line-height: 1.75; }
.bg-blush { background: var(--lnp-blush); }
.bg-ink { background: var(--lnp-ink); color: white; }

.value-card,
.news-card,
.event-card,
.policy-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--lnp-line);
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.72);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.value-card:hover,
.news-card:hover,
.event-card:hover,
.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--lnp-shadow);
}

.value-card { padding: 2rem; }
.value-number { color: var(--lnp-pink); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; }
.value-card h3 { margin: 2.5rem 0 0.85rem; font-size: 1.55rem; font-weight: 750; }
.value-card p { margin: 0; color: var(--lnp-muted); line-height: 1.65; }

.image-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 1.5rem;
  background:
    linear-gradient(145deg, transparent 52%, rgba(35,21,35,.16) 52.2%),
    radial-gradient(circle at 68% 23%, #ffd9e8 0 12%, transparent 12.2%),
    linear-gradient(145deg, #dc3d83 0 55%, #f5a7c7 55% 72%, #622343 72%);
  box-shadow: var(--lnp-shadow);
}

.image-panel::before {
  content: "PROGRESS / TOGETHER / NOW";
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  width: 220px;
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 0.98;
}

.quote-mark { color: var(--lnp-pink); font-size: 5rem; font-family: Georgia, serif; line-height: .5; }

.article-visual {
  min-height: 235px;
  background: linear-gradient(135deg, #2c1727, #8f1d57 58%, #f395bd);
}

.article-visual.alt { background: linear-gradient(150deg, #f7b8d2, #f2e2e8 52%, #dc3d83); }
.article-visual.dark { background: linear-gradient(135deg, #171117, #4f3044 58%, #a63c72); }

.news-card .card-body { padding: 1.7rem; }
.meta { color: var(--lnp-pink-dark); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-card h3 { margin: .8rem 0; font-size: 1.35rem; font-weight: 750; line-height: 1.25; }
.news-card p { color: var(--lnp-muted); line-height: 1.6; }

.news-section {
  padding: 4rem 0;
  border-top: 1px solid var(--lnp-line);
}

.news-section:first-child { border-top: 0; padding-top: 0; }
.news-section:last-child { padding-bottom: 0; }
.news-section-number { color: var(--lnp-pink); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.news-section h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; }
.news-feature-visual { min-height: 360px; border-radius: 1.25rem; }
.news-index { position: sticky; top: 110px; }
.news-index a { color: var(--lnp-muted); text-decoration: none; font-weight: 600; }
.news-index a:hover { color: var(--lnp-pink-dark); }

.page-hero {
  position: relative;
  padding: 7rem 0 5.5rem;
  overflow: hidden;
  background: var(--lnp-blush);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -10rem;
  bottom: -16rem;
  width: 34rem;
  height: 34rem;
  border: 7rem solid rgba(220,61,131,.16);
  border-radius: 50%;
}

.page-hero h1 {
  max-width: 900px;
  margin: 1.2rem 0 1.5rem;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  font-weight: 800;
  line-height: .95;
}

.page-hero p { max-width: 660px; color: var(--lnp-muted); font-size: 1.18rem; line-height: 1.7; }

.policy-card { padding: 2rem; }
.policy-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--lnp-blush);
  color: var(--lnp-pink-dark);
  font-size: 1.3rem;
}
.policy-card h2 { margin: 1.5rem 0 .8rem; font-size: 1.55rem; font-weight: 750; }
.policy-card p, .policy-card li { color: var(--lnp-muted); line-height: 1.65; }
.policy-card ul { padding-left: 1.15rem; }

.manifesto-pledge {
  border-left: 4px solid var(--lnp-pink);
  padding: .25rem 0 .25rem 1.5rem;
  font-size: clamp(1.7rem, 3.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.04em;
}

.event-date {
  min-width: 76px;
  padding: .8rem;
  border-radius: 1rem;
  background: var(--lnp-blush);
  color: var(--lnp-pink-dark);
  text-align: center;
}
.event-date strong { display: block; font-size: 1.65rem; line-height: 1; }
.event-date span { font-size: .7rem; font-weight: 800; letter-spacing: .08em; }
.event-card { padding: 1.5rem; }
.event-card h2 { font-size: 1.35rem; font-weight: 750; }
.event-card p { color: var(--lnp-muted); }
.filter-chip { border: 1px solid var(--lnp-line); background: white; color: var(--lnp-ink); }
.filter-chip.active, .filter-chip:hover { background: var(--lnp-ink); border-color: var(--lnp-ink); color: white; }

.forum-shell { min-height: calc(100vh - 82px); background: #f5f1f3; }

.forum-gate-wrap {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: 4rem 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(220,61,131,.18), transparent 30%),
    radial-gradient(circle at 85% 90%, rgba(98,35,67,.16), transparent 32%),
    var(--lnp-cream);
}

.forum-gate-card {
  width: min(100%, 530px);
  padding: clamp(2rem, 6vw, 3.5rem);
  border: 1px solid var(--lnp-line);
  border-radius: 1.5rem;
  background: rgba(255,255,255,.88);
  box-shadow: var(--lnp-shadow);
  backdrop-filter: blur(18px);
}

.forum-lock {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--lnp-blush);
  color: var(--lnp-pink-dark);
  font-size: 1.45rem;
}

.password-error {
  padding: .9rem 1rem;
  border-radius: .8rem;
  background: #fff0f4;
  color: #9b174f;
  font-size: .9rem;
}

.forum-header { padding: 4.5rem 0 2.5rem; background: var(--lnp-ink); color: white; }
.forum-header h1:focus { outline: none; }
.forum-notice { border: 1px solid rgba(220,61,131,.24); border-radius: 1rem; background: var(--lnp-blush); }

.forum-profile {
  position: sticky;
  top: 110px;
  padding: 1.5rem;
  border: 1px solid var(--lnp-line);
  border-radius: 1.25rem;
  background: white;
}

.forum-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lnp-ink);
  color: white;
  font-weight: 800;
}

.forum-avatar.small { width: 38px; height: 38px; font-size: .72rem; }
.status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #ef476f; }

.forum-thread {
  border: 1px solid var(--lnp-line);
  border-radius: 1rem;
  background: white;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.forum-thread:hover { transform: translateY(-2px); box-shadow: 0 14px 35px rgba(70,24,51,.08); }
.forum-thread-main { padding: 1.25rem 1.4rem; }
.forum-thread h2 { margin: .2rem 0 .45rem; font-size: 1.15rem; font-weight: 750; letter-spacing: -.025em; }
.forum-thread p { color: var(--lnp-muted); font-size: .9rem; }
.forum-reply { padding: .75rem 1.4rem; border-top: 1px solid var(--lnp-line); background: #fcf8fa; }
.forum-reply strong { font-size: .82rem; }
.forum-reply span { color: var(--lnp-muted); font-size: .85rem; }
.thread-tag { color: var(--lnp-pink-dark); font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.thread-count { min-width: 58px; color: var(--lnp-muted); font-size: .75rem; text-align: right; }

@media (max-width: 991.98px) {
  .forum-profile { position: static; }
}

.newsletter {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  background: var(--lnp-pink);
  color: white;
  padding: clamp(2.25rem, 6vw, 5rem);
}
.newsletter::after {
  content: "LN";
  position: absolute;
  right: -1rem;
  bottom: -4rem;
  color: rgba(255,255,255,.12);
  font-family: "Manrope", sans-serif;
  font-size: 14rem;
  font-weight: 800;
  line-height: 1;
}
.newsletter h2 { font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 800; }
.newsletter .form-control { min-height: 52px; border: 0; border-radius: 999px; padding-inline: 1.25rem; }
.newsletter .btn { min-height: 52px; background: var(--lnp-ink); color: white; }

footer { background: #160e15; color: white; padding: 4.5rem 0 2rem; }
footer a { color: rgba(255,255,255,.7); text-decoration: none; }
footer a:hover { color: white; }
.footer-note { color: rgba(255,255,255,.5); font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 991.98px) {
  body { padding-top: 72px; }
  .navbar { min-height: 72px; }
  .navbar-collapse {
    margin: .7rem -0.75rem 0;
    padding: 1rem;
    border-top: 1px solid var(--lnp-line);
    background: var(--lnp-cream);
  }
  .navbar .nav-link { padding: .9rem .25rem !important; border-bottom: 1px solid var(--lnp-line); }
  .navbar .btn-brand { width: 100%; margin-top: .75rem; }
  .news-index { position: static; }
  .hero { min-height: auto; padding: 5rem 0; }
  .hero::before { top: auto; right: -34%; bottom: -18%; width: 95vw; height: 95vw; opacity: .35; }
  .hero::after { display: none; }
  .section { padding: 5rem 0; }
  .image-panel { min-height: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
