:root {
  --ink: #15101e;
  --muted: #675f70;
  --line: #e9e5ec;
  --purple: #7b08e8;
  --magenta: #c83291;
  --lavender: #f7f2fb;
  --gradient: linear-gradient(120deg, #7600ed 0%, #c53594 100%);
  --shadow: 0 24px 65px rgba(61, 29, 79, 0.14);
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: -60px;
  padding: 12px 18px;
  background: #fff;
  border: 2px solid var(--purple);
  border-radius: 10px;
}
.skip-link:focus {
  top: 12px;
}
.site-header,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header {
  height: 82px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand img {
  width: 86px;
  height: auto;
}
.brand > span {
  width: 1px;
  height: 29px;
  background: #d8d3da;
}
.brand strong {
  font:
    700 15px/1 "Manrope",
    sans-serif;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  background: var(--gradient);
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 13px 30px rgba(143, 20, 205, 0.19);
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 35px rgba(143, 20, 205, 0.28);
}
.button:focus-visible,
button:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid #f0b9e2;
  outline-offset: 3px;
}
.button-small {
  padding: 14px 22px;
}
.hero {
  position: relative;
  text-align: center;
  padding: 95px 20px 92px;
  overflow: hidden;
}
.hero > *:not(.hero-orb) {
  position: relative;
  z-index: 1;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.orb-one {
  width: 420px;
  height: 420px;
  left: -260px;
  top: 180px;
  background: radial-gradient(
    circle,
    rgba(135, 17, 233, 0.09),
    transparent 68%
  );
}
.orb-two {
  width: 430px;
  height: 430px;
  right: -270px;
  top: -40px;
  background: radial-gradient(circle, rgba(204, 54, 147, 0.1), transparent 68%);
}
.eyebrow,
.kicker,
.number {
  margin: 0 0 22px;
  color: var(--purple);
  font:
    700 15px/1.25 "Manrope",
    sans-serif;
}
.hero h1 {
  max-width: 1040px;
  margin: 0 auto;
  font:
    800 clamp(48px, 6.15vw, 82px) / 0.99 "Manrope",
    sans-serif;
  letter-spacing: -0.055em;
}
.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy {
  margin: 31px auto 33px;
  color: var(--muted);
  font-size: 20px;
}
.button-hero {
  min-width: 335px;
  padding: 19px 28px;
  font-size: 18px;
}
.microcopy {
  font-size: 13px;
  line-height: 1.8;
  margin: 15px 0 0;
}
.microcopy span {
  color: #77707d;
}
.product-preview {
  display: block;
  width: min(920px, 100%);
  margin: 55px auto 0;
  padding: 0;
  border: 1px solid #ddd6e1;
  border-radius: 16px;
  background: white;
  overflow: hidden;
  text-align: left;
  box-shadow: var(--shadow);
}
.preview-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 22px;
  color: #574d5d;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 5px solid var(--purple);
}
.preview-icon {
  margin-right: 9px;
  color: var(--purple);
}
.product-preview video {
  display: block;
  width: 100%;
  aspect-ratio: 16/8.4;
  background: #170e20;
  object-fit: cover;
}
.preview-play {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 22px;
  background: #fff;
}
.preview-play span {
  font-size: 13px;
  color: var(--muted);
}
.preview-play b {
  font-family: "Manrope";
  font-size: 14px;
}
.preview-play i {
  margin-left: 8px;
  font-style: normal;
  color: var(--purple);
}
.trust-line {
  margin-top: 26px !important;
  color: #736d77;
  font-size: 13px;
}
.section-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
.intro {
  padding: 110px 0 90px;
  text-align: center;
}
.intro h2,
.faq > h2,
.closing h2 {
  font: 800 clamp(38px, 4.5vw, 62px) / 1.06 "Manrope";
  letter-spacing: -0.045em;
  margin: 0;
}
.intro > p:last-child {
  font-size: 18px;
  color: var(--muted);
  margin: 24px auto 0;
  max-width: 650px;
}
.features {
  border-top: 1px solid var(--line);
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 105px 0;
  border-bottom: 1px solid var(--line);
}
.feature.reverse .feature-copy {
  order: 2;
}
.number {
  display: flex;
  align-items: center;
  gap: 13px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.number span {
  width: 34px;
  height: 1px;
  background: #c9c2cd;
}
.feature h2 {
  margin: 0 0 26px;
  font: 800 clamp(34px, 3.7vw, 50px) / 1.08 "Manrope";
  letter-spacing: -0.04em;
}
.feature-copy > p:not(.number) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  margin: 0 0 16px;
}
.feature ul,
.price-copy ul {
  list-style: none;
  padding: 8px 0 0;
  margin: 0;
}
.feature li,
.price-copy li {
  position: relative;
  padding-left: 27px;
  margin: 13px 0;
  line-height: 1.45;
  font-weight: 600;
}
.feature li:before,
.price-copy li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 800;
}
.feature small {
  display: block;
  margin-top: 18px;
  color: #7d7581;
}
.shot {
  padding: 0;
  background: white;
  border: 1px solid #ddd6e1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  text-align: left;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.shot:hover {
  transform: translateY(-5px) rotate(-0.25deg);
  box-shadow: 0 30px 75px rgba(61, 29, 79, 0.2);
}
.shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.shot span {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  color: #5f5664;
  font-size: 13px;
  font-weight: 600;
}
.shot b {
  color: var(--purple);
}
.pricing {
  padding: 110px 20px;
  background: linear-gradient(140deg, #1a0c27 0%, #2d0d45 56%, #40105b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.pricing:after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  right: -250px;
  bottom: -270px;
  background: radial-gradient(
    circle,
    rgba(202, 45, 147, 0.32),
    transparent 70%
  );
}
.price-shell {
  position: relative;
  z-index: 1;
  width: min(1050px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: center;
}
.kicker.light {
  color: #d794ff;
}
.price-copy h2 {
  font: 800 clamp(38px, 4.5vw, 58px) / 1.06 "Manrope";
  letter-spacing: -0.045em;
  margin: 0 0 24px;
}
.price-copy > p:not(.kicker) {
  color: #cfc2d8;
  line-height: 1.7;
  font-size: 17px;
}
.price-copy li:before {
  color: #dd78bc;
}
.price-card {
  background: white;
  color: var(--ink);
  border-radius: 18px;
  padding: 38px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}
.trial-label {
  color: var(--purple);
  font-weight: 700;
}
.price {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 5px 0;
}
.price strong {
  font: 800 68px/1 "Manrope";
}
.price span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.included {
  font-weight: 700;
}
.button-wide {
  width: 100%;
  padding: 18px;
  margin-top: 12px;
}
.card-note,
.fine {
  font-size: 12px;
  line-height: 1.55;
  color: #756d79;
  text-align: center;
}
.price-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 25px 0 20px;
}
.faq {
  padding: 115px 0;
}
.faq > .kicker,
.faq > h2 {
  text-align: center;
}
.accordion {
  max-width: 760px;
  margin: 52px auto 0;
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  position: relative;
  padding: 24px 46px 24px 2px;
  cursor: pointer;
  list-style: none;
  font: 700 16px/1.4 "Manrope";
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 19px;
  font-size: 26px;
  color: #8b828e;
  font-weight: 400;
}
details[open] summary:after {
  content: "−";
}
details p {
  margin: -5px 48px 24px 2px;
  color: var(--muted);
  line-height: 1.65;
}
.closing {
  text-align: center;
  border-top: 1px solid var(--line);
  padding: 95px 0 105px;
}
.closing h2 {
  font-size: clamp(34px, 4vw, 50px);
}
.closing > p:not(.microcopy) {
  font-size: 18px;
  color: var(--muted);
  margin: 20px 0 28px;
}
.site-footer {
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
}
.site-footer nav {
  display: flex;
  gap: 24px;
  color: #766f7a;
  font-size: 13px;
}
.lightbox {
  border: 0;
  border-radius: 16px;
  padding: 0;
  max-width: min(1100px, 94vw);
  background: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}
.lightbox::backdrop {
  background: rgba(17, 8, 25, 0.8);
  backdrop-filter: blur(6px);
}
.lightbox img {
  max-height: 82vh;
}
.lightbox button {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 12, 24, 0.82);
  color: white;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.mobile-only {
  display: none;
}
@media (max-width: 800px) {
  .site-header {
    height: 70px;
  }
  .brand {
    gap: 10px;
  }
  .brand img {
    width: 68px;
  }
  .brand strong {
    font-size: 12px;
  }
  .brand > span {
    height: 22px;
  }
  .button-small {
    padding: 12px 15px;
    font-size: 13px;
  }
  .hero {
    padding-top: 70px;
  }
  .hero h1 {
    font-size: clamp(43px, 12vw, 65px);
  }
  .hero-copy {
    font-size: 17px;
  }
  .feature,
  .price-shell {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .feature {
    padding: 76px 0;
  }
  .feature.reverse .feature-copy {
    order: 0;
  }
  .price-shell {
    gap: 50px;
  }
  .pricing {
    padding: 85px 20px;
  }
  .site-footer {
    align-items: flex-start;
    gap: 30px;
  }
  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .product-preview {
    margin-top: 42px;
  }
  .preview-play span {
    display: none;
  }
}
@media (max-width: 520px) {
  .site-header,
  .section-wrap,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }
  .site-header .brand strong,
  .site-header .brand > span {
    display: none;
  }
  .hero {
    padding: 55px 14px 65px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-copy {
    font-size: 16px;
    line-height: 1.55;
  }
  .button-hero {
    min-width: 0;
    width: 100%;
    max-width: 335px;
  }
  .mobile-only {
    display: block;
  }
  .preview-bar {
    padding: 13px;
    font-size: 11px;
  }
  .preview-bar span:last-child {
    display: none;
  }
  .preview-play {
    padding: 14px;
  }
  .preview-play b {
    font-size: 12px;
  }
  .intro {
    padding: 80px 0 65px;
  }
  .feature {
    padding: 65px 0;
  }
  .feature h2 {
    font-size: 36px;
  }
  .price-card {
    padding: 28px 22px;
  }
  .price {
    align-items: flex-end;
  }
  .price strong {
    font-size: 58px;
  }
  .faq {
    padding: 85px 0;
  }
  .closing {
    padding: 75px 0 85px;
  }
  .site-footer {
    flex-direction: column;
  }
  .site-footer nav {
    justify-content: flex-start;
  }
  .orb-one,
  .orb-two {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
