/* /new/landing/ — marketing landing page (shared he+en) */

.ld-page { background: var(--surface-0); }

/* ===== Nav ===== */
.ld-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}
.ld-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--s-3) var(--s-5);
  display: flex;
  align-items: center;
  gap: var(--s-5);
  min-height: 60px;
}
.ld-nav__links {
  display: flex;
  gap: var(--s-5);
  flex: 1;
  margin-inline-start: var(--s-5);
}
.ld-nav__links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: var(--t-body);
  font-weight: 500;
  transition: color var(--t-fast);
}
.ld-nav__links a:hover { color: var(--accent); }
.ld-nav__actions { display: flex; gap: var(--s-2); }
.ld-nav__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--ink-1);
  padding: 8px;
}

/* ===== Hero ===== */
.ld-hero {
  padding: var(--s-10) var(--s-5);
  background: linear-gradient(180deg, var(--surface-0) 0%, var(--surface-1) 100%);
}
.ld-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.ld-hero__text .tag { margin-bottom: var(--s-4); }
.ld-hero h1 {
  font-size: var(--t-display);
  line-height: 1.1;
  font-weight: 800;
  color: var(--ink-1);
  margin: 0 0 var(--s-4);
  letter-spacing: -0.03em;
}
.ld-hero__sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 var(--s-6);
  max-width: 520px;
}
.ld-hero__cta {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-5);
}
.ld-hero__trust {
  display: flex;
  gap: var(--s-3);
  font-size: var(--t-small);
  color: var(--ink-3);
  flex-wrap: wrap;
}
.ld-hero__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  max-width: 520px;
  margin: 0 auto;
}
.ld-hero__visual img,
.ld-hero__svg {
  width: 100%;
  height: 100%;
  border-radius: var(--r-5);
  box-shadow: var(--sh-4);
  background: var(--surface-1);
}
.ld-hero__visual img + .ld-hero__svg { display: none; }
.ld-hero__visual img[onerror] ~ .ld-hero__svg { display: block; }

/* ===== Sections ===== */
.ld-section {
  padding: var(--s-10) var(--s-5);
}
.ld-section--alt {
  background: var(--surface-1);
}
.ld-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ld-section__title {
  font-size: var(--t-h1);
  font-weight: 700;
  color: var(--ink-1);
  text-align: center;
  margin: 0 0 var(--s-3);
  letter-spacing: -0.02em;
}
.ld-section__sub {
  font-size: var(--t-h4);
  color: var(--ink-3);
  text-align: center;
  margin: 0 auto var(--s-8);
  max-width: 600px;
}

/* ===== Features ===== */
.ld-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-5);
}
.ld-feature {
  background: var(--surface-0);
  border: 1px solid var(--stroke);
  border-radius: var(--r-4);
  padding: var(--s-5);
  transition: all var(--t-base);
}
.ld-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-3);
  border-color: var(--accent);
}
.ld-feature__icon {
  font-size: 48.8px;
  margin-bottom: var(--s-3);
  line-height: 1;
}
.ld-feature h3 {
  font-size: var(--t-h3);
  color: var(--ink-1);
  margin: 0 0 var(--s-2);
  font-weight: 600;
}
.ld-feature p {
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
  font-size: var(--t-body);
}

/* ===== Audience ===== */
.ld-audience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-4);
}
.ld-aud-card {
  background: var(--surface-0);
  border: 1px solid var(--stroke);
  border-radius: var(--r-4);
  padding: var(--s-5);
  text-align: center;
  transition: all var(--t-base);
}
.ld-aud-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--sh-2);
}
.ld-aud-card__icon { font-size: 53.68px; margin-bottom: var(--s-3); }
.ld-aud-card h3 {
  font-size: var(--t-h4);
  margin: 0 0 var(--s-2);
  color: var(--ink-1);
  font-weight: 600;
}
.ld-aud-card p { color: var(--ink-3); line-height: 1.5; margin: 0; font-size: var(--t-small); }

/* ===== Pricing ===== */
.ld-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-4);
  max-width: 1100px;
  margin: 0 auto;
}
.ld-price-card {
  background: var(--surface-0);
  border: 2px solid var(--stroke);
  border-radius: var(--r-5);
  padding: var(--s-6) var(--s-5);
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--t-base);
}
.ld-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
}
.ld-price-card--popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--surface-0) 50%);
  transform: scale(1.04);
}
.ld-price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--surface-0);
  font-size: var(--t-micro);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ld-price-card__name {
  font-size: var(--t-h3);
  font-weight: 600;
  color: var(--ink-1);
  margin-bottom: var(--s-2);
}
.ld-price-card__price {
  font-size: 58.56px;
  font-weight: 800;
  color: var(--ink-1);
  line-height: 1;
  margin-bottom: 4px;
  direction: ltr;
}
.ld-price-card__price span { font-size: 0.5em; opacity: 0.6; margin-inline-end: 4px; }
.ld-price-card__period {
  font-size: var(--t-small);
  color: var(--ink-3);
  margin-bottom: var(--s-4);
}
.ld-price-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-5);
  flex: 1;
}
.ld-price-card__features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--stroke);
  font-size: var(--t-body);
  color: var(--ink-2);
}
.ld-price-card__features li:last-child { border-bottom: none; }
.ld-price-card__features li::before {
  content: '✓';
  color: var(--ok);
  font-weight: 700;
  margin-inline-end: 6px;
}

/* ===== Final CTA ===== */
.ld-cta-final {
  background: var(--ink-1);
  color: var(--surface-0);
}
.ld-cta-final .ld-section__title { color: var(--surface-0); }
.ld-cta-final .ld-section__sub { color: var(--surface-3); }

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .ld-hero__inner { grid-template-columns: 1fr; gap: var(--s-6); text-align: center; }
  .ld-hero__cta { justify-content: center; }
  .ld-hero__trust { justify-content: center; }
  .ld-hero__sub { margin-inline: auto; }
  .ld-hero__visual { max-width: 380px; }
  .ld-price-card--popular { transform: none; }
}

@media (max-width: 720px) {
  .ld-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: var(--surface-0);
    flex-direction: column;
    padding: var(--s-4);
    border-bottom: 1px solid var(--stroke);
    gap: var(--s-2);
  }
  .ld-nav__links.is-open { display: flex; }
  .ld-nav__hamburger { display: block; }
  .ld-nav__actions .pp-btn--ghost { display: none; }
  .ld-section { padding: var(--s-8) var(--s-4); }
  .ld-hero { padding: var(--s-8) var(--s-4); }
  .ld-hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
}
