/* Pendi content sections: promise, features, CTA, footer, prose, FAQ. */

/* ---- Promise strip ---- */
.promise {
  background: linear-gradient(
    135deg,
    var(--violet) 0%,
    #5b21b6 62%,
    #4c1d95 100%
  );
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.promise::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, oklch(0.82 0.16 82 / 0.28), transparent 65%);
}
.promise h2 {
  font-size: clamp(1.55rem, 1.1rem + 2vw, 2.3rem);
  max-width: 20ch;
}
.promise p {
  color: oklch(0.94 0.03 293);
  margin-top: 1rem;
  max-width: 60ch;
  font-size: 1.08rem;
}
.nevers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
}
.nevers span {
  font-size: 0.86rem;
  font-weight: 560;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.12);
  border: 1px solid oklch(1 0 0 / 0.2);
}

/* ---- Features bento ---- */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.feature {
  border: 1px solid var(--hairline);
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: color-mix(in oklch, var(--brand) 40%, var(--hairline));
}
.feature--lead {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: center;
  background: linear-gradient(
    140deg,
    var(--bg-tint),
    color-mix(in oklch, var(--brand) 9%, var(--surface))
  );
}
.feature__ico {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: color-mix(in oklch, var(--brand) 14%, var(--surface));
  color: var(--brand);
  margin-bottom: 1.05rem;
}
.feature--lead .feature__ico {
  background: var(--brand);
  color: var(--on-brand);
}
.feature h3 {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.feature--lead h3 {
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2rem);
}
.feature p {
  color: var(--muted);
  margin-top: 0.6rem;
  font-size: 1.01rem;
  max-width: 46ch;
}
.feature__aside {
  align-self: stretch;
  border-radius: var(--r-md);
  background: radial-gradient(
      70% 90% at 70% 15%,
      oklch(0.82 0.16 82 / 0.16),
      transparent
    ),
    var(--brand);
  min-height: 180px;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 1.2rem;
  text-align: center;
}
.feature__aside b {
  font-family: var(--display);
  font-size: clamp(1.3rem, 1rem + 1.4vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.feature__aside small {
  display: block;
  margin-top: 0.5rem;
  color: oklch(0.92 0.04 293);
  font-size: 0.92rem;
}

/* ---- CTA band ---- */
.cta-band {
  text-align: center;
  border: 1px solid var(--hairline);
  background: var(--bg-tint);
  border-radius: var(--r-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem);
}
.cta-band h2 {
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem);
  max-width: 18ch;
  margin-inline: auto;
}
.cta-band p {
  color: var(--muted);
  margin-top: 0.85rem;
  max-width: 46ch;
  margin-inline: auto;
}
.cta-band .hero__cta {
  justify-content: center;
}
.store-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px dashed var(--hairline);
  border-radius: 999px;
  padding: 0.5rem 1rem;
}

/* ---- Support: contact + FAQ ---- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  margin-block: 1.8rem 3rem;
}
.contact-card {
  border: 1px solid var(--hairline);
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 1.6rem;
}
.contact-card h2 {
  font-size: 1.22rem;
  margin-bottom: 0.5rem;
}
.contact-card p {
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.contact-card .path {
  font-weight: 600;
  color: var(--ink);
}
.faq {
  border-top: 1px solid var(--hairline);
}
.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: 0.4rem 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 2.2rem 1rem 0.2rem;
  position: relative;
  font-family: var(--display);
  font-weight: 640;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  translate: 0 -50%;
  font-size: 1.5rem;
  color: var(--brand);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after {
  content: "\2013";
}
.faq details p {
  color: var(--muted);
  padding: 0 0.2rem 1.1rem;
  max-width: 66ch;
}

/* ---- Footer ---- */
.site-foot {
  border-top: 1px solid var(--hairline);
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-block: 2.6rem 3rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.site-foot__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  justify-content: space-between;
  align-items: center;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.5rem;
}
.foot-links a:hover {
  color: var(--ink);
}

/* ---- Legal / prose pages ---- */
.prose {
  max-width: 72ch;
  margin-inline: auto;
}
.prose h1 {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
}
.prose .lead {
  color: var(--muted);
  font-size: 1.12rem;
  margin-top: 1rem;
}
.prose h2 {
  font-size: 1.5rem;
  margin-top: 2.4rem;
}
.prose p,
.prose ul {
  color: color-mix(in oklch, var(--ink) 86%, var(--muted));
  margin-top: 0.9rem;
}
.prose ul {
  padding-left: 1.2rem;
}
.prose li {
  margin-top: 0.4rem;
}
.prose .callout {
  margin-top: 1.6rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--r-md);
  background: var(--bg-tint);
  border: 1px solid var(--hairline);
}
.meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}
