@font-face {
  font-family: "ZeusDisplay";
  src: local("Inter");
}

:root {
  --black: #000000;
  --white: #ffffff;
  --paper: #f7f7f4;
  --line: rgba(10, 10, 10, 0.13);
  --text: #0a0a0a;
  --muted: #626262;
  --radius: 28px;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.16);
  --font: ZeusDisplay, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}

body.has-custom-bg {
  color: var(--white);
}

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

button {
  font: inherit;
}

.site-bg,
.site-bg-video,
.site-bg-fallback,
.site-bg-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-bg {
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}

.site-bg-video {
  z-index: -8;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(1) contrast(1.2);
  transition: opacity 0.25s ease;
}

body.has-custom-bg .site-bg-video {
  opacity: 0.34;
}

.site-bg-fallback {
  z-index: -10;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 0, 0, 0.08), transparent 18%),
    radial-gradient(circle at 82% 58%, rgba(0, 0, 0, 0.06), transparent 20%),
    linear-gradient(135deg, #f7f7f4, #ecece8, #ffffff);
  background-size: 180% 180%;
  animation: backgroundDrift 16s ease-in-out infinite alternate;
}

.site-bg-overlay {
  z-index: -7;
  background: rgba(247, 247, 244, 0.88);
}

body.has-custom-bg .site-bg-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.80)),
    rgba(0, 0, 0, 0.45);
}

@keyframes backgroundDrift {
  from {
    transform: scale(1);
    filter: brightness(0.98);
  }

  to {
    transform: scale(1.08);
    filter: brightness(1.05);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 247, 244, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

body.has-custom-bg .site-header {
  background: rgba(0, 0, 0, 0.62);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  font-size: 1.16rem;
  letter-spacing: -0.045em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 720;
}

body.has-custom-bg .nav-links {
  color: rgba(255, 255, 255, 0.72);
}

.nav-links a {
  padding: 10px 0;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}

body.has-custom-bg .nav-links a:hover,
body.has-custom-bg .nav-links a.active {
  color: var(--white);
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  font-size: 0.92rem;
  transition: 0.2s ease;
}

body.has-custom-bg .nav-cta {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 940;
  cursor: pointer;
  transition: 0.2s ease;
}

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

.button-outline {
  border-color: rgba(0, 0, 0, 0.22);
  background: transparent;
  color: var(--black);
}

body.has-custom-bg .button-dark {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

body.has-custom-bg .button-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.full {
  width: 100%;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 68px;
  align-items: center;
  padding: 72px 0;
}

.pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
  backdrop-filter: blur(16px);
}

body.has-custom-bg .pill {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
}

.pill-mark {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.hero h1,
.page-hero h1 {
  max-width: 840px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.93;
  letter-spacing: -0.085em;
}

.hero p,
.page-hero p {
  max-width: 630px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.13rem;
}

body.has-custom-bg .hero p,
body.has-custom-bg .page-hero p {
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-card,
.page-card,
.faq-item,
.docs-sidebar,
.docs-content,
.policy-content,
.support-card,
.simple-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
}

body.has-custom-bg .hero-card,
body.has-custom-bg .page-card,
body.has-custom-bg .faq-item,
body.has-custom-bg .docs-sidebar,
body.has-custom-bg .docs-content,
body.has-custom-bg .policy-content,
body.has-custom-bg .support-card,
body.has-custom-bg .simple-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-card {
  max-width: 430px;
  margin-left: auto;
  border-radius: 36px;
  padding: 34px;
  text-align: center;
}

.hero-card img {
  width: 150px;
  height: 150px;
  border-radius: 34px;
  margin-bottom: 28px;
}

.hero-card h2 {
  font-size: 2.2rem;
  letter-spacing: -0.06em;
}

.hero-card p {
  margin: 12px auto 0;
  font-size: 1rem;
}

.price {
  margin: 24px 0;
  font-size: 2.7rem;
  letter-spacing: -0.08em;
  font-weight: 980;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.simple-card {
  border-radius: 28px;
  padding: 28px;
}

.simple-card img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 24px;
}

.simple-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.simple-card p,
.product-content p,
.docs-content p,
.policy-content p,
.support-card p,
.faq-answer p {
  color: var(--muted);
}

body.has-custom-bg .simple-card p,
body.has-custom-bg .product-content p,
body.has-custom-bg .docs-content p,
body.has-custom-bg .policy-content p,
body.has-custom-bg .support-card p,
body.has-custom-bg .faq-answer p {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 54px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 980;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

body.has-custom-bg .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.page-card {
  border-radius: 36px;
  padding: 46px;
}

.product-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
}

.product-media {
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: 42px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(135deg, #000, #191919);
}

.product-media img {
  width: min(250px, 70%);
  border-radius: 44px;
}

.product-content {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

body.has-custom-bg .shop-topline {
  color: rgba(255, 255, 255, 0.62);
}

.product-content h2,
.support-card h2,
.docs-content h2,
.policy-content h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.product-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 26px 0;
  color: var(--muted);
}

body.has-custom-bg .product-list {
  color: rgba(255, 255, 255, 0.72);
}

.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.product-list li::before {
  content: "";
  flex: 0 0 12px;
  width: 9px;
  height: 18px;
  margin-top: 1px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(42deg);
}

.product-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.product-action-row strong {
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.faq-page {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 940;
}

.faq-question span {
  font-family: monospace;
  font-size: 1.25rem;
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
}

.faq-item.active .faq-answer {
  display: block;
}

.docs-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.docs-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  border-radius: var(--radius);
  padding: 18px;
}

.docs-sidebar a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 840;
}

body.has-custom-bg .docs-sidebar a {
  color: rgba(255, 255, 255, 0.72);
}

.docs-sidebar a:hover {
  background: var(--black);
  color: var(--white);
}

body.has-custom-bg .docs-sidebar a:hover {
  background: var(--white);
  color: var(--black);
}

.docs-content,
.policy-content {
  border-radius: var(--radius);
  padding: 34px;
}

.docs-content section + section {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

body.has-custom-bg .docs-content section + section {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.support-card {
  border-radius: var(--radius);
  padding: 30px;
}

.support-card img {
  width: 62px;
  height: 62px;
  border-radius: 19px;
  margin-bottom: 22px;
}

.support-card h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.support-card p {
  margin-bottom: 24px;
}

.policy-content h2:not(:first-child) {
  margin-top: 32px;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
}

body.has-custom-bg .site-footer {
  border-top-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  color: var(--black);
  margin-bottom: 10px;
}

body.has-custom-bg .footer-brand {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 760;
}

.footer-links a:hover {
  color: var(--black);
}

body.has-custom-bg .footer-links a:hover {
  color: var(--white);
}

@media (max-width: 960px) {
  .hero-inner,
  .product-layout,
  .docs-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-left: 0;
  }

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

  .docs-sidebar {
    position: static;
  }

  .site-footer {
    flex-direction: column;
  }

  .product-media {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .navbar {
    height: 76px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(247, 247, 244, 0.94);
    box-shadow: var(--shadow);
  }

  body.has-custom-bg .nav-links {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.84);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    border-radius: 16px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--black);
    color: var(--white);
  }

  body.has-custom-bg .nav-links a:hover,
  body.has-custom-bg .nav-links a.active {
    background: var(--white);
    color: var(--black);
  }

  .hero-inner {
    padding: 52px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .section {
    padding: 66px 0;
  }

  .page-hero {
    padding: 66px 0 42px;
  }

  .page-card {
    padding: 28px;
  }

  .product-action-row {
    flex-direction: column;
    align-items: stretch;
  }
}


.purchase-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.purchase-buttons .button {
  flex: 1 1 180px;
}

.paypal-button {
  border-color: rgba(0, 0, 0, 0.22);
}

body.has-custom-bg .paypal-button {
  border-color: rgba(255, 255, 255, 0.28);
}
