:root {
  color-scheme: dark;
  --bg: #070711;
  --bg-soft: #0e0d1b;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f7f4ff;
  --muted: #c7bed7;
  --soft: #948ba4;
  --violet: #a55cff;
  --violet-strong: #7d38ff;
  --cyan: #4be4ff;
  --gold: #efc766;
  --content: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(165, 92, 255, 0.16), transparent 32rem),
    linear-gradient(225deg, rgba(75, 228, 255, 0.08), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 72%);
  content: "";
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: min(calc(100% - 2rem), var(--content));
  min-height: 5rem;
  margin: 0 auto;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 17, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 0;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
}

.brand span {
  display: grid;
  min-width: 0;
}

.brand strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.brand small {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-nav,
.header-actions,
.language-switcher,
.hero-actions,
.format-band,
.trust-strip,
.site-footer nav {
  display: flex;
  align-items: center;
}

.site-nav {
  justify-content: center;
  gap: 1rem;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: #ffffff;
}

.header-actions {
  justify-content: flex-end;
  gap: 0.8rem;
}

.language-switcher {
  gap: 0.45rem;
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.language-switcher button {
  padding: 0.25rem 0;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--soft);
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0;
}

.language-switcher button.is-active,
.language-switcher button:hover {
  color: #ffffff;
  border-bottom-color: var(--cyan);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.header-cta {
  padding: 0 1rem;
  border: 1px solid rgba(75, 228, 255, 0.38);
  color: #ffffff;
  background: rgba(75, 228, 255, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  width: min(calc(100% - 2rem), var(--content));
  min-height: calc(100svh - 5rem);
  margin: 0 auto;
  padding: 3rem 0 4rem;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy,
.section-copy,
.section-heading {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin: 0 0 0.9rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.pricing-card h2 {
  margin: 0;
  color: #ffffff;
  font-family: Sora, Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10em;
  font-size: 4.8rem;
  line-height: 0.95;
}

.hero-subtitle {
  margin: 1rem 0 0;
  color: var(--gold);
  font-size: 1.55rem;
  font-weight: 850;
}

.hero-highlights {
  display: grid;
  max-width: 42rem;
  margin: 1.6rem 0 0;
  gap: 0.6rem;
}

.hero-highlights p {
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(165, 92, 255, 0.78);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.45;
}

.hero-summary,
.section p,
.pricing-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-summary {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-width: 10.5rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--line);
}

.button-primary {
  border-color: rgba(75, 228, 255, 0.5);
  color: #051018;
  background: linear-gradient(135deg, var(--cyan), #b8f4ff);
  box-shadow: 0 0.8rem 2rem rgba(75, 228, 255, 0.2);
}

.button-secondary {
  border-color: rgba(165, 92, 255, 0.55);
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet-strong), var(--violet));
}

.button-quiet {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  display: grid;
  gap: 0;
  justify-items: center;
  margin: 0;
}

.poster-stage {
  position: relative;
  isolation: isolate;
  width: min(27rem, 100%);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(239, 199, 102, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(239, 199, 102, 0.18), rgba(165, 92, 255, 0.08)),
    #05060d;
  box-shadow:
    0 2rem 5rem rgba(0, 0, 0, 0.42),
    0 0 4rem rgba(239, 199, 102, 0.1);
}

.poster-stage::before,
.poster-stage::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.poster-stage::before {
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.38);
}

.poster-stage::after {
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 78%, rgba(7, 7, 17, 0.22) 100%),
    radial-gradient(circle at 74% 28%, rgba(239, 199, 102, 0.16), transparent 32%);
}

.hero-artwork {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.section {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  padding: 5rem 0;
}

.section-band {
  width: 100%;
  padding-right: max(1rem, calc((100% - var(--content)) / 2));
  padding-left: max(1rem, calc((100% - var(--content)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.section-split,
.base-package,
.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2.4rem;
  align-items: start;
}

.section h2,
.pricing-card h2 {
  font-size: 2.8rem;
  line-height: 1.06;
}

.section-heading {
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading p {
  margin-right: auto;
  margin-left: auto;
}

.section-copy p:first-child,
.section-heading p:last-child {
  margin-top: 0;
}

.statement {
  color: #ffffff;
  font-weight: 850;
}

.feature-grid,
.included-effects-grid,
.trust-grid,
.steps {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.trust-grid article,
.steps article,
.pricing-card,
.included-effect-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-grid article,
.trust-grid article {
  padding: 1rem;
}

.feature-grid h3,
.trust-grid strong {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
}

.format-band {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.format-band span {
  min-width: 8rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(165, 92, 255, 0.42);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(165, 92, 255, 0.08);
  font-weight: 850;
  text-align: center;
}

.steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.steps article {
  padding: 1rem;
}

.steps span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.8rem;
  place-items: center;
  border-radius: 8px;
  color: #051018;
  background: var(--cyan);
  font-weight: 900;
}

.steps p {
  margin: 0;
  color: #ffffff;
  font-weight: 750;
}

.trust-strip {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.trust-strip span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.14);
  font-size: 0.9rem;
  font-weight: 750;
}

.brand-presence {
  text-align: center;
}

.included-effects-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.included-effect-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(239, 199, 102, 0.12), rgba(75, 228, 255, 0.045)),
    rgba(255, 255, 255, 0.052);
}

.included-effect-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #03040a;
  border-bottom: 1px solid rgba(239, 199, 102, 0.18);
}

.included-effect-card div {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1rem;
}

.included-effect-card span {
  width: fit-content;
  max-width: 100%;
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(75, 228, 255, 0.42);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(75, 228, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.included-effect-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.22;
}

.included-effect-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  white-space: pre-line;
}

.base-package {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.conversion {
  max-width: 880px;
  text-align: center;
}

.conversion h2 {
  margin-bottom: 1.2rem;
}

.conversion .button {
  margin-top: 1.2rem;
}

.final-line {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
}

.trust-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.pricing {
  padding-top: 3rem;
}

.pricing-card {
  padding: 1.4rem;
  background:
    linear-gradient(135deg, rgba(165, 92, 255, 0.14), transparent 48%),
    var(--surface);
}

.pricing-list {
  display: grid;
  margin: 1.4rem 0 0;
  padding: 0;
  gap: 0.75rem;
  list-style: none;
}

.pricing-list li {
  padding-left: 1rem;
  border-left: 2px solid var(--cyan);
  color: #ffffff;
  font-weight: 750;
}

.pricing-card aside {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(75, 228, 255, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.pricing-label {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card aside strong {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.2;
}

.checkout-price {
  margin: -0.2rem 0 0;
  color: var(--gold);
  font-family: Sora, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 7vw, 3.1rem);
  font-weight: 900;
  line-height: 1;
}

.checkout-form {
  display: grid;
  gap: 0.75rem;
}

.checkout-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.checkout-form input,
.checkout-form select {
  width: 100%;
  min-height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.065);
  font: inherit;
  font-size: 0.92rem;
  letter-spacing: 0;
  outline: none;
  padding: 0.72rem 0.78rem;
}

.checkout-form select {
  color-scheme: dark;
}

.checkout-form input:focus,
.checkout-form select:focus {
  border-color: rgba(75, 228, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(75, 228, 255, 0.13);
}

.checkout-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.checkout-note,
.checkout-mode,
.checkout-status {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

.checkout-mode {
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 208, 90, 0.45);
  border-radius: 8px;
  background: rgba(255, 208, 90, 0.1);
  color: #ffe6a2;
  font-weight: 900;
}

.checkout-note {
  color: var(--soft);
}

.checkout-status {
  min-height: 1.35rem;
  color: var(--muted);
  font-weight: 800;
}

.checkout-status.is-error {
  color: #ff9ca8;
}

.checkout-status.is-success {
  color: #88f0c3;
}

.paypal-buttons {
  min-height: 3.5rem;
}

.site-footer {
  display: flex;
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: #ffffff;
}

.site-footer p {
  margin: 0.35rem 0 0;
  color: var(--soft);
  font-size: 0.88rem;
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 3.7rem;
  }

  .feature-grid,
  .included-effects-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    padding: 0.9rem 0;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .header-actions {
    justify-content: space-between;
  }

  .hero,
  .section-split,
  .base-package,
  .pricing-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 2.25rem;
  }

  .poster-stage {
    width: min(25rem, 100%);
    aspect-ratio: 2 / 3;
  }

  .section h2,
  .pricing-card h2 {
    font-size: 2.25rem;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .checkout-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .header-actions,
  .hero-actions,
  .button,
  .header-cta {
    width: 100%;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .language-switcher {
    justify-content: center;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: 2.2rem;
    overflow-wrap: break-word;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-highlights p,
  .hero-summary {
    max-width: 31ch;
    overflow-wrap: break-word;
  }

  .hero-actions {
    order: 5;
    margin-top: 1.25rem;
  }

  .hero-summary {
    order: 6;
  }

  .poster-stage {
    width: min(21rem, 100%);
    aspect-ratio: 2 / 3;
  }

  .feature-grid,
  .feature-grid.two-col,
  .compact-grid,
  .included-effects-grid,
  .steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
