/* /faq — shared PointMintz platform language with dense, scannable answers. */

:root {
  color-scheme: dark;
  --faq-bg: #06120e;
  --faq-bg-2: #0b1d17;
  --faq-panel: rgba(255, 255, 255, 0.08);
  --faq-panel-strong: rgba(255, 255, 255, 0.12);
  --faq-line: rgba(124, 245, 210, 0.16);
  --faq-text: #f4fff9;
  --faq-muted: #b8c9c2;
  --faq-mint: #7cf5d2;
  --faq-mint-deep: #046c4d;
  --faq-gold: #d6b36a;
  --faq-ink: #06120e;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 9% 0%, rgba(124, 245, 210, 0.16), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(214, 179, 106, 0.14), transparent 25%),
    linear-gradient(180deg, var(--faq-bg) 0%, var(--faq-bg-2) 56%, #eef3f1 56%, #eef3f1 100%);
  color: var(--faq-text);
  font-family: "Manrope", "Segoe UI Variable Text", "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -56px;
  left: 0;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  background: var(--faq-mint);
  color: var(--faq-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: top 0.18s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
}

.faq-page {
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) 0 42px;
}

.hero {
  margin-bottom: 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: end;
}

.hero-grid::after {
  content: "Straight answers for owners comparing booking platforms, migration paths, data ownership, and launch timing.";
  display: block;
  padding: 22px;
  border: 1px solid var(--faq-line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(124, 245, 210, 0.12), rgba(255, 255, 255, 0.06));
  color: var(--faq-muted);
  font-size: 15px;
  line-height: 1.65;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--faq-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: var(--faq-text);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: var(--faq-muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.72;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--faq-text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.btn.primary {
  border-color: transparent;
  background: var(--faq-mint);
  color: var(--faq-ink);
  box-shadow: 0 14px 34px rgba(124, 245, 210, 0.24);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 44px 0;
}

.faq-group {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(124, 245, 210, 0.28);
  border-radius: 18px;
  padding: 22px 24px 12px;
  color: #102018;
  box-shadow: 0 18px 46px rgba(4, 18, 14, 0.12);
}

.faq-group h2 {
  margin: 0 0 12px;
  color: var(--faq-mint-deep);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-group details {
  border-top: 1px solid #d9e7e0;
  padding: 12px 0;
}

.faq-group details:first-of-type {
  border-top: 0;
  padding-top: 2px;
}

.faq-group summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  padding: 8px 0;
  color: #102018;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

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

.faq-group summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--faq-mint-deep);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.faq-group details[open] summary::after {
  content: "-";
}

.faq-group p {
  margin: 8px 0 0;
  color: #42524c;
  font-size: 0.95rem;
  line-height: 1.68;
}

.faq-group p a {
  color: var(--faq-mint-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 22px 0 36px;
  padding: 24px;
  border: 1px solid var(--faq-line);
  border-radius: 18px;
  background: rgba(6, 18, 14, 0.82);
  color: var(--faq-text);
}

.cta h2 {
  margin: 0 0 8px;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0;
  line-height: 1.08;
}

.cta p {
  margin: 0;
  max-width: 640px;
  color: var(--faq-muted);
  line-height: 1.65;
}

.cta-actions {
  flex: 0 0 auto;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 4px;
  color: #43564f;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer a {
  color: #31433d;
  font-weight: 700;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--faq-mint-deep);
}

@media (max-width: 820px) {
  .hero-grid,
  .faq-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-grid::after {
    padding: 18px;
  }

  .faq-grid {
    margin-top: 30px;
  }

  .cta,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions,
  .cta-actions .btn,
  .footer-links {
    width: 100%;
  }

  .cta-actions .btn {
    justify-content: center;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
