/* Edumond landing pages — shared styles (mirrors auth.css brand tokens) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1D1D1F;
  line-height: 1.6;
  background: #FFFFFF;
}

/* ── Header (matches pc-auth-header) ── */
.lp-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px clamp(16px, 2.6vw, 34px) 16px;
  border-bottom: 1px solid #d2d2d7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.lp-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: #0F4C3A;
  color: #ffffff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.lp-brand-text {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #0F4C3A;
}

.lp-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: #0C4738;
  color: #ffffff;
  border: 1px solid #165242;
  border-radius: 999px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(28, 90, 70, 0.2);
  transition: background 0.15s, box-shadow 0.15s;
}

.lp-header-cta:hover {
  background: #0A3026;
  box-shadow: 0 4px 14px rgba(28, 90, 70, 0.3);
}

/* ── Hero ── */
.lp-hero {
  background: #0C4738;
  color: #fff;
  padding: 80px 24px 64px;
  text-align: center;
}

.lp-hero h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.lp-hero p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.lp-hero .lp-cta {
  background: #fff;
  color: #0C4738;
}

.lp-hero .lp-cta:hover {
  background: #f0f0f0;
}

/* ── CTA button (matches .auth-page .primary) ── */
.lp-cta {
  display: inline-block;
  background: #0C4738;
  color: #ffffff;
  border: 1px solid #165242;
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 600;
  font-size: 17px;
  padding: 14px 36px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(28, 90, 70, 0.3);
  transition: background 0.15s, box-shadow 0.15s;
}

.lp-cta:hover {
  background: #0A3026;
  box-shadow: 0 6px 20px rgba(28, 90, 70, 0.35);
}

/* ── Content ── */
.lp-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px;
}

.lp-content h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0F4C3A;
  margin: 40px 0 16px;
}

.lp-content h2:first-child {
  margin-top: 0;
}

.lp-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0F4C3A;
  margin: 24px 0 8px;
}

.lp-content p {
  margin-bottom: 16px;
  color: #333;
  max-width: 740px;
}

.lp-content ul,
.lp-content ol {
  margin: 0 0 16px 20px;
  color: #333;
}

.lp-content li {
  margin-bottom: 8px;
}

/* ── Cards ── */
.lp-tip {
  background: #f7faf9;
  border-left: 3px solid #0F4C3A;
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}

.lp-tip p {
  margin-bottom: 0;
}

.lp-example {
  background: #fafafa;
  padding: 16px 20px;
  margin: 16px 0;
  border-radius: 8px;
  font-style: italic;
  color: #555;
}

.lp-disclaimer {
  background: #f7faf9;
  padding: 16px 20px;
  margin: 32px 0;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #6e6e73;
}

/* ── Bottom CTA ── */
.lp-bottom-cta {
  text-align: center;
  padding: 48px 24px 64px;
}

.lp-bottom-cta p {
  margin-bottom: 16px;
  color: #333;
}

/* ── Footer ── */
.lp-footer {
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
  color: #86868b;
  border-top: 1px solid #d2d2d7;
}

.lp-footer a {
  color: #0F4C3A;
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .lp-hero { padding: 56px 20px 48px; }
  .lp-hero h1 { font-size: 1.8rem; }
  .lp-header { padding: 14px 16px 12px; }
  .lp-brand-text { font-size: 24px; }
  .lp-header-cta { padding: 8px 18px; font-size: 13px; }
}
