@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #14182a;
  --bg-alt: #1b2137;
  --text: #f4f6ff;
  --muted: #b6c0de;
  --primary: #7a4cff;
  --primary-dark: #5b30e6;
  --light-blue: #6cc2ff;
  --pink: #ff5fa2;
  --accent: #0b1b3a;
  --border: #2b3352;
  --shadow: 0 20px 50px rgba(6, 9, 18, 0.45);
  --radius: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--light-blue);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(20, 24, 42, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.logo img {
  width: auto;
  height: 40px;
  max-width: 140px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: white;
  box-shadow: 0 12px 30px rgba(122, 76, 255, 0.25);
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--pink));
}

.button.ghost {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}

.button.ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.button.dark {
  background: var(--accent);
  color: white;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 40px;
}

.support-thanks-page {
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 24px 80px;
  text-align: center;
}

.support-thanks-brand {
  display: inline-block;
  margin-bottom: 20px;
  line-height: 0;
}

.support-thanks-brand:focus-visible {
  outline: 2px solid var(--light-blue);
  outline-offset: 6px;
  border-radius: 8px;
}

.support-thanks-brand img {
  display: block;
  width: min(240px, 72vw);
  height: auto;
}

.support-thanks-page .support-thanks-eyebrow {
  margin-bottom: 12px;
}

.support-thanks-page h1 {
  font-size: clamp(1.85rem, 5vw, 2.6rem);
  margin-bottom: 14px;
  text-wrap: balance;
}

.support-thanks-lead {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  max-width: 40ch;
  text-wrap: balance;
}

.support-thanks-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.support-thanks-quip-block {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.support-thanks-quip-label {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--pink);
}

.support-thanks-quip-card {
  text-align: left;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions.hero-actions-stack {
  flex-direction: column;
  align-items: flex-start;
}

.hero-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.coming-soon-card-body {
  display: flex;
  align-items: center;
  gap: 20px;
}

.coming-soon-play-badge {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, #3b82f6, var(--pink));
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.25);
}

.coming-soon-play-badge svg {
  margin-left: 4px;
}

.coming-soon-quip {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 480px) {
  .coming-soon-card-body {
    flex-direction: column;
    text-align: center;
  }

  .coming-soon-play-badge {
    margin-inline: auto;
  }

  .coming-soon-quip {
    text-align: center;
  }
}

.hero-media {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius) - 8px);
}

.thank-you-video {
  width: 75%;
  margin: 0 auto;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px;
  scroll-margin-top: 90px;
}

.section.alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  padding: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.feature-bullets {
  list-style: disc;
  padding-left: 22px;
  color: var(--muted);
  display: grid;
  gap: 12px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.screenshot {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.screenshot:hover {
  transform: translateY(-3px);
  border-color: var(--light-blue);
}

body.modal-open {
  overflow: hidden;
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 18, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}

.image-modal.open {
  display: flex;
}

.image-modal-dialog {
  width: min(980px, 100%);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.image-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(20, 24, 42, 0.85);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.image-modal-frame {
  position: relative;
  background: #0f1425;
}

.image-modal-frame img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  display: block;
}

.image-modal-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.image-modal-zone.left {
  left: 0;
  background: linear-gradient(to right, rgba(15, 20, 37, 0.6), transparent);
}

.image-modal-zone.right {
  right: 0;
  background: linear-gradient(to left, rgba(15, 20, 37, 0.6), transparent);
}

.image-modal-frame:hover .image-modal-zone {
  opacity: 1;
}

.image-modal-zone button {
  border: 1px solid var(--border);
  background: rgba(20, 24, 42, 0.86);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.2rem;
  cursor: pointer;
}

.image-modal-meta {
  padding: 18px 22px 22px;
}

.image-modal-count {
  color: var(--light-blue);
  font-weight: 600;
  margin-bottom: 6px;
}

.image-modal-meta h3 {
  margin-bottom: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.billing-toggle {
  width: fit-content;
  margin: 0 auto 24px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 4px;
  display: flex;
  gap: 4px;
}

.billing-option {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  padding: 9px 16px;
  cursor: pointer;
}

.billing-option.active {
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: #fff;
}

.pricing-savings {
  text-align: center;
  color: var(--muted);
  margin-bottom: 22px;
}

.pricing-savings strong {
  color: var(--text);
}

.pricing-disclaimer {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.pricing-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.plan-fit {
  color: var(--light-blue);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: var(--muted);
}

.pricing-card ul li::before {
  content: "✓";
  color: var(--light-blue);
  margin-right: 8px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-group h3 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.faq-group {
  display: grid;
  gap: 12px;
  align-content: start;
}

.faq-item {
  background: rgba(20, 24, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0 18px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.45;
  padding: 16px 28px 16px 0;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--light-blue);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.trust-item {
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 22px;
}

.trust-item strong {
  display: block;
  margin-bottom: 10px;
}

.trust-item p {
  color: var(--muted);
}

#faq.section {
  max-width: 1100px;
  padding-left: 24px;
  padding-right: 24px;
}

#faq .section-heading {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card.highlight {
  border: 2px solid var(--light-blue);
  position: relative;
  transform: translateY(-6px);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pink);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 8px 0;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.price .price-amount {
  font-size: inherit;
  color: inherit;
}

.muted {
  color: var(--muted);
}

.contact-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px;
  border-radius: var(--radius);
  background: rgba(20, 24, 42, 0.6);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

#contact .contact-card {
  max-width: 1000px;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}

.contact-card p {
  color: var(--muted);
  margin-top: 8px;
}

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card.checkout-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-card.checkout-side img {
  width: 92px;
  height: 92px;
}

.hero-card.checkout-side h2 {
  font-size: 1.6rem;
}

.hero-card.checkout-side ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.hero-card.checkout-side ul li::before {
  content: "✓";
  color: var(--light-blue);
  margin-right: 8px;
}

.legal-card {
  max-width: 980px;
  align-items: flex-start;
}

.legal-content h2 {
  margin-top: 18px;
  margin-bottom: 8px;
}

.legal-content p {
  color: var(--muted);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-links a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--muted);
}

.legal-links a:hover {
  border-color: var(--light-blue);
  color: var(--text);
}

.support-layout {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.support-form-card,
.support-help-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.support-form-card h2,
.support-help-card h2 {
  margin-bottom: 10px;
}

.support-form {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.support-form label {
  font-weight: 600;
}

.support-form input,
.support-form select,
.support-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
}

.support-form select option {
  color: #111827;
  background: #ffffff;
}

.support-form textarea {
  resize: vertical;
}

.support-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.credits-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.credits-expiry-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--light-blue);
  color: var(--light-blue);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.credits-page .section-heading h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.credits-intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.credits-intro-grid .card {
  box-shadow: none;
}

.credits-table-wrap {
  overflow-x: auto;
}

.credits-table {
  width: 100%;
  border-collapse: collapse;
}

.credits-table th,
.credits-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 1rem;
}

.credits-table th {
  color: var(--muted);
  font-weight: 600;
}

.credits-table td:last-child,
.credits-table th:last-child {
  text-align: right;
}

.credits-table th:nth-child(3),
.credits-table td:nth-child(3) {
  text-align: left;
}

.credits-note {
  margin-top: 18px;
}

.credits-disclaimer {
  font-size: 0.95rem;
  margin-top: 10px;
}

.credits-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 24px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.mobile-sticky-cta {
  display: none;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 500;
  flex-wrap: wrap;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.password-gate {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 22, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
}

.password-gate.hidden {
  display: none;
}

.password-card {
  max-width: 520px;
  width: 100%;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 32px;
  text-align: center;
}

.password-form {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.password-form input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 1rem;
}

.password-form input::placeholder {
  color: var(--muted);
}

.password-error {
  min-height: 20px;
  color: var(--pink);
  font-weight: 600;
}

body.locked {
  overflow: hidden;
}

@media (max-width: 860px) {
  .nav {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-links {
    display: flex;
    width: 100%;
    order: 3;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .hero {
    padding-top: 50px;
  }

  .contact-card {
    align-items: flex-start;
  }

  .nav-cta .button {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .support-layout {
    grid-template-columns: 1fr;
  }

  .credits-table th,
  .credits-table td {
    padding: 12px 10px;
    font-size: 0.95rem;
  }

  .credits-table th:nth-child(3),
  .credits-table td:nth-child(3) {
    display: none;
  }

  .image-modal-zone {
    width: 24%;
    opacity: 1;
  }

  .home-page .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 16px max(12px, env(safe-area-inset-bottom));
    background: rgba(20, 24, 42, 0.94);
    border-top: 1px solid var(--border);
    z-index: 40;
  }

  .home-page .mobile-sticky-cta .button {
    width: 100%;
  }

  .home-page {
    padding-bottom: 84px;
  }

}
