/* Joint Genesis landing page */

body.page-jointgenesis {
  font-size: 18px;
  line-height: 1.85;
  background: var(--ocean);
}

.early-cta {
  background: var(--teal-light);
  border-bottom: 2px solid var(--border);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.early-cta img {
  width: 110px;
  flex-shrink: 0;
  border-radius: 6px;
}

.early-cta-text { flex: 1; }

.early-cta-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ocean);
  margin-bottom: 4px;
}

.early-cta-sub {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.5;
}

.early-cta-sub .strike {
  text-decoration: line-through;
  color: var(--muted);
}

.early-cta-sub strong {
  color: var(--teal-dark);
  font-size: 16px;
}

.early-btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 0 var(--teal-dark);
  transition: background 0.15s;
}

.early-btn:hover { background: var(--teal-dark); }

.page-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(6, 42, 61, 0.35);
}

.card .hero {
  background: var(--ocean);
  padding: 44px 32px 40px;
  text-align: center;
  color: var(--white);
}

.card .hero .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.card .hero h1 {
  font-size: clamp(22px, 4vw, 36px);
  line-height: 1.25;
  max-width: 620px;
  margin: 0 auto 16px;
  color: var(--white);
}

.card .hero .sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.body {
  padding: 40px 36px 8px;
  background: var(--white);
}

.body p {
  margin-bottom: 22px;
  color: var(--ink);
}

.body strong { font-weight: 700; }

.pull {
  border-left: 5px solid var(--teal);
  background: var(--teal-light);
  padding: 18px 24px;
  margin: 28px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--ocean);
  line-height: 1.6;
  border-radius: 0 6px 6px 0;
}

.checks {
  background: var(--teal-light);
  border: 1.5px solid var(--teal);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 28px 0;
}

.checks h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ocean);
  margin-bottom: 14px;
}

.checks ul { list-style: none; }

.checks li {
  font-size: 15px;
  padding: 7px 0 7px 26px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
  color: var(--ink);
}

.checks li:last-child { border-bottom: none; }

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.cta-block {
  background: var(--ocean);
  padding: 44px 32px 40px;
  text-align: center;
  margin-top: 8px;
}

.cta-block img {
  max-width: 220px;
  width: 60%;
  display: block;
  margin: 0 auto 22px;
}

.cta-block .headline {
  font-size: clamp(19px, 3vw, 26px);
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.cta-block .price {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 26px;
}

.cta-block .price strong {
  color: var(--teal-bright);
  font-size: 20px;
}

.cta-btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 20px 44px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 5px 0 var(--teal-dark);
  transition: background 0.15s;
}

.cta-btn:hover { background: var(--teal-dark); }

.cta-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 14px;
  line-height: 1.7;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px 20px;
  margin: 22px auto 0;
  max-width: 480px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.guarantee .icon { font-size: 24px; flex-shrink: 0; }

.landing-disclaimer {
  background: var(--ocean-dark);
  padding: 28px 20px;
  text-align: center;
}

.landing-disclaimer .disclaimer-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 1rem;
}

@media (max-width: 520px) {
  .body { padding: 28px 22px 8px; }
  .card .hero { padding: 36px 22px 32px; }
  .cta-block { padding: 36px 22px 32px; }
  .cta-btn { font-size: 15px; padding: 17px 24px; }
}

@media (max-width: 480px) {
  .early-cta {
    flex-direction: column;
    text-align: center;
    padding: 22px 20px;
  }

  .early-cta img { width: 90px; }
}
