/* Landing page layout — legal/pricing-only pages use styles.css without this file */

body.landing {
  background: #05070c;
  color: #fff;
}

body.landing .page {
  display: block;
  min-height: auto;
  padding: 0;
  align-items: stretch;
  justify-content: flex-start;
}

.landing-wrap {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 7, 12, 0.88);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
}

.site-header .brand {
  flex-shrink: 0;
  gap: 12px;
  font-size: 20px;
}

.brand-mark {
  overflow: visible;
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark__img {
  width: auto;
  height: 34px;
  display: block;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: #3b82f6;
  color: #fff;
}

.header-cta__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  object-fit: cover;
  clip-path: circle(46% at 50% 50%);
  background: transparent;
}

.nav-toggle {
  display: none;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
}

/* —— Hero —— */
.hero {
  padding: 34px 0 20px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-title {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-title .accent {
  color: #3b82f6;
}

.hero-lead {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 36px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-checks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-checks .check-icon {
  color: #3b82f6;
  font-weight: 700;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  background: #2563eb;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-cta:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-1px);
}

.hero-cta-note {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

/* —— Section titles —— */
.section {
  padding: 64px 0;
}

.section-title {
  margin-bottom: 40px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}

/* —— Features —— */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  font-size: 20px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

/* —— Social proof —— */
.social-proof {
  padding: 28px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  text-align: center;
}

.social-proof__avatars {
  display: flex;
}

.social-proof__avatars span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-left: -10px;
  border-radius: 999px;
  border: 2px solid #05070c;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.social-proof__avatars span:first-child {
  margin-left: 0;
}

.social-proof__avatars span:nth-child(1) { background: #3b82f6; z-index: 5; }
.social-proof__avatars span:nth-child(2) { background: #6366f1; z-index: 4; }
.social-proof__avatars span:nth-child(3) { background: #8b5cf6; z-index: 3; }
.social-proof__avatars span:nth-child(4) { background: #a855f7; z-index: 2; }
.social-proof__avatars span:nth-child(5) { background: #2563eb; z-index: 1; }

.social-proof__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
}

.social-proof__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #fbbf24;
}

.social-proof__stars .muted {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

/* —— Pricing section —— */
.pricing-section {
  padding: 26px 0 62px;
}

.pricing-section .grid {
  max-width: 920px;
}

.pricing-section .section-title {
  margin-bottom: 12px;
}

.pricing-intro {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

.pricing-intro a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

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

.pricing-intro--secondary {
  margin-top: 8px;
  margin-bottom: 40px;
  font-size: 15px;
}

.landing .card {
  padding-top: 52px;
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.card-badge--popular {
  border-color: rgba(96, 165, 250, 0.7);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.36), rgba(30, 64, 175, 0.3));
  color: #dbeafe;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.2);
}

.card-badge--value {
  border-color: rgba(167, 139, 250, 0.68);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.36), rgba(91, 33, 182, 0.3));
  color: #ede9fe;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.2);
}

.card--lifetime {
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.2);
  transform: none;
}

.price-row--promo {
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
}

.price-was {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 4px;
}

.price-was s {
  text-decoration: line-through;
}

.price-note {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.pricing-section .simple-row.strong {
  color: rgba(255, 255, 255, 0.94);
}

.pricing-section .launch-offer__label {
  color: rgba(191, 219, 254, 0.84);
}

.pricing-section .launch-offer__code-label {
  color: rgba(255, 255, 255, 0.76);
}

.pricing-section .launch-offer__headline {
  color: rgba(255, 255, 255, 0.92);
}

.pricing-section .launch-offer__detail {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-section .plan-helper {
  color: rgba(255, 255, 255, 0.74);
}

.card--monthly .btn--monthly {
  border: none;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35);
}

.card--monthly .btn--monthly:hover {
  background: #3b82f6;
}

.card--lifetime .btn--lifetime {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
}

.card--lifetime .btn--lifetime:hover {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.card--lifetime .dot--l {
  background: #a78bfa;
}

.launch-offer--lifetime {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.12);
}

/* —— Reviews —— */
.reviews-section {
  padding: 68px 0 74px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header h2 {
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
}

.reviews-header p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 720px;
  }
}

.review-card {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.review-card:last-child {
  border-bottom: none;
}

.review-stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-quote {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.92);
}

.review-quote::before {
  content: "\201C";
  color: rgba(255, 255, 255, 0.35);
}

.review-quote::after {
  content: "\201D";
  color: rgba(255, 255, 255, 0.35);
}

.review-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.review-verified {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
}

/* —— FAQ —— */
.faq-section {
  padding: 72px 0 88px;
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  max-width: 960px;
  margin: 0 auto;
  align-items: flex-start; /* prevent one open FAQ from forcing the row partner height */
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  flex: 1 1 calc(50% - 10px);
}

@media (max-width: 767px) {
  .faq-item {
    flex: 1 1 100%;
  }
}

.faq-item summary {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__body {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
}

.faq-item__body p {
  margin-bottom: 12px;
}

.faq-item__body p:last-child {
  margin-bottom: 0;
}

.faq-item__body ul {
  margin: 8px 0 12px;
  padding-left: 20px;
}

.faq-item__body li {
  margin-bottom: 6px;
}

.faq-item__body a {
  color: #3b82f6;
  text-decoration: none;
}

.faq-item__body a:hover {
  text-decoration: underline;
}

/* —— Site footer —— */
.site-footer {
  padding: 40px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.site-footer .pricing-footer {
  margin-top: 0;
  background: transparent;
  border: none;
  padding: 0;
}

/* —— Mobile —— */
@media (max-width: 900px) {
  .site-nav,
  .nav-toggle {
    display: none;
  }

  .site-header__inner {
    flex-wrap: nowrap;
  }

  .site-header .brand {
    font-size: 18px;
  }

  .brand-mark__img {
    height: 30px;
  }

  .header-cta__icon {
    width: 22px;
    height: 22px;
  }

  .card-badge {
    position: static;
    margin-bottom: 12px;
    display: inline-block;
  }

  .card .head-row {
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 40px 0 56px;
  }

  .section {
    padding: 48px 0;
  }

  .social-proof {
    flex-direction: column;
    padding: 24px 20px;
  }
}
