:root {
  --purple: #8A00ED;
  --pink: #B443FA;
  --black: #0C0C0C;
  --white: #fff;
  --muted: rgba(255, 255, 255, .72);
  --line: rgba(255, 255, 255, .18);
  --panel: rgba(30, 7, 42, .72);
  --gold: #F6A642;
  --font-display: "Nokia Expanded", "Nokia", "Eurostile Extended", "Arial Black", sans-serif;
  --font-body: "Articulat CF", "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
}

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

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

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  width: min(100% - 48px, 1120px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.container--narrow {
  width: min(100% - 48px, 900px);
}

.container--faq {
  width: min(100% - 48px, 820px);
}

.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: #050505;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #050505;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .05));
}

.hero__bg-image {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 800px;
  max-width: none;
  object-fit: contain;
  transform: translateX(-50%);
}

.hero__content {
  padding-top: 76px;
  max-width: 1120px;
}

.hero__logo {
  width: 300px;
  margin-bottom: 28px;
}

.eyebrow {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  margin: 0 0 14px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: .94;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  font-size: clamp(31px, 2.6vw, 46px);
}

h1 .hline {
  display: block;
}

.hero-title-mobile {
  display: none;
}

h1 .accent,
h2 span {
  color: var(--pink);
  text-shadow: 0 0 28px rgba(138, 0, 237, .48);
}

h2 span {
  display: block;
}

.hero__copy {
  max-width: 485px;
  margin: 13px 0 24px;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 1.36;
}

.desktop-break {
  display: inline;
}

.hero__meta {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

@media (min-width: 521px) {
  .hero__content {
    display: grid;
    width: min(100% - 48px, 1300px);
    max-width: 1300px;
    min-height: 800px;
    grid-template-columns: minmax(0, 700px) minmax(0, 550px);
    grid-template-areas:
      "logo logo"
      "title title"
      "copy button"
      "copy meta";
    align-content: end;
    column-gap: 50px;
    padding: 0 0 82px;
  }

  .hero__logo {
    position: relative;
    top: -18px;
    grid-area: logo;
    width: 500px;
    justify-self: center;
    margin: 0 0 24px;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero h1 {
    position: relative;
    top: -8px;
    grid-area: title;
    max-width: 1240px;
    justify-self: center;
    margin: 0 0 34px;
    font-size: clamp(26px, 2.2vw, 42px);
    line-height: .86;
    text-align: center;
  }

  .hero h1 .hero-title-desktop .hline {
    display: block;
    white-space: nowrap;
  }

  .hero__copy {
    grid-area: copy;
    max-width: 670px;
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
  }

  .hero .button {
    position: relative;
    top: -6px;
    grid-area: button;
    justify-self: start;
    width: 370px;
    min-height: 60px;
    margin: 0;
    font-size: 14px;
  }

  .hero__meta {
    grid-area: meta;
    margin: 14px 0 0;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 28px rgba(138, 0, 237, .52);
  cursor: pointer;
}

.button span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #1d0b27;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 0;
  padding-left: 1px;
  padding-bottom: 1px;
}

.button--primary {
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--purple));
}

.button--gold {
  background: linear-gradient(90deg, #d68628, #ffc874, #d68628);
  color: #1b0d03;
  box-shadow: 0 0 25px rgba(246, 166, 66, .42);
}

.button--gold span {
  background: rgba(0, 0, 0, .18);
}

.button--center {
  margin: 32px auto 0;
  display: flex;
  width: fit-content;
}

.section {
  position: relative;
  padding: 68px 0;
  overflow: hidden;
}

.pillars,
.testimonials,
.pricing {
  background:
    radial-gradient(circle at 50% 20%, rgba(138, 0, 237, .18), transparent 42%),
    url("assets/bg-2-desktop.png") center top / cover no-repeat,
    var(--black);
}

.audience,
.faq {
  background:
    linear-gradient(180deg, rgba(12, 12, 12, .68), rgba(12, 12, 12, .92)),
    url("assets/bg-3-desktop.png") center top / cover no-repeat,
    var(--black);
}

.section h2 {
  text-align: center;
  font-size: clamp(30px, 3vw, 50px);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  gap: 30px 22px;
  margin-top: 46px;
}

.pillar-card,
.price-card,
.mini-price,
.audience__list article,
details {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(70, 20, 90, .52), rgba(18, 5, 27, .76));
  backdrop-filter: blur(10px);
}

.pillar-card {
  min-height: 156px;
  padding: 22px 14px 17px;
  border-radius: 10px;
  text-align: center;
}

.pillar-card__icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin: -30px auto 17px;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 0 18px rgba(138, 0, 237, .45);
}

.pillar-card__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.pillar-card h3 {
  font-size: 14px;
  line-height: 1;
}

.pillar-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.testimonials {
  padding-top: 18px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: min(100%, 760px);
  margin: 42px auto 0;
}

.testimonial-card {
  position: relative;
  min-height: 248px;
  padding: 30px 22px 24px;
  border-radius: 8px;
  background: #fff;
  color: #17091f;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -37px;
  left: 16px;
  color: var(--pink);
  font-family: Arial, sans-serif;
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card img {
  width: 54px;
  height: 54px;
  margin-bottom: 17px;
  border-radius: 50%;
}

.testimonial-card h3 {
  color: #20152a;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: none;
}

.testimonial-card p {
  margin: 13px 0 0;
  color: #3c3242;
  font-size: 11px;
  line-height: 1.38;
}

.pricing {
  padding-top: 72px;
}

.pricing::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 50px;
  background: url("assets/arrow-mark.png") center / contain no-repeat;
  opacity: .55;
  filter: drop-shadow(0 0 9px rgba(180, 67, 250, .75));
  z-index: 1;
}

.pricing::before {
  left: calc(50% - 390px);
  top: 244px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: minmax(235px, 310px) minmax(220px, 280px) minmax(235px, 310px);
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin-top: 42px;
}

.price-card {
  position: relative;
  min-height: 570px;
  padding: 24px 24px 26px;
  border-radius: 13px;
  box-shadow: 0 0 45px rgba(138, 0, 237, .22);
}

.price-card--vip {
  border-color: rgba(246, 166, 66, .62);
  box-shadow: 0 0 44px rgba(246, 166, 66, .22);
}

.price-card__tag,
.price-card__note {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.price-card__tag {
  display: table;
  min-width: 70px;
  margin-inline: auto;
  padding: 4px 15px;
  border-radius: 999px;
  background: #fff;
  color: #1f0d2b;
  font-family: var(--font-display);
  font-size: 14px;
}

.price-card--vip .price-card__tag {
  background: #f6d09a;
}

.price-card__note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
}

.price {
  margin: 12px 0 16px;
  color: #f2c3ff;
  font-family: var(--font-body);
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 0 25px rgba(180, 67, 250, .48);
}

.price small {
  font-size: .52em;
}

.price-card--vip .price {
  color: #ffd08a;
}

.price-card ul {
  display: grid;
  gap: 0;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  min-height: 32px;
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.25;
}

.price-card li:last-child {
  border-bottom: 0;
}

.price-card li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  font-weight: 900;
  line-height: 1;
}

.price-card li.is-muted {
  color: rgba(255, 255, 255, .2);
}

.price-card li.is-muted::before {
  color: rgba(138, 0, 237, .36);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
  padding-inline: 12px;
  font-size: 9px;
}

.price-stack {
  display: grid;
  gap: 28px;
}

.mini-price {
  min-height: 160px;
  padding: 28px 18px;
  border-radius: 13px;
  text-align: center;
}

.mini-price p,
.mini-price span {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}

.mini-price strong {
  display: block;
  margin: 11px 0 3px;
  color: #f0bdff;
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0;
}

.audience {
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.audience__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.audience h2 {
  text-align: left;
}

.audience__list {
  display: grid;
  gap: 15px;
}

.audience__list article {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  line-height: 1.35;
}

.audience__list span {
  color: #fff;
  font-size: 30px;
}

.faq {
  padding-top: 42px;
}

.faq__label {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.faq__label::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--purple);
}

.faq h2 {
  color: var(--pink);
}

.faq__items {
  display: grid;
  gap: 15px;
  margin-top: 34px;
}

details {
  border-radius: 8px;
}

summary {
  position: relative;
  min-height: 58px;
  padding: 20px 56px 18px 25px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
}

summary:focus {
  outline: none;
}

summary:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(180, 67, 250, .88);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
}

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

details p {
  margin: 0 25px 22px;
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  line-height: 1.55;
}

.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 9px solid var(--purple);
  background: #151515;
}

.final-photo {
  background: var(--black);
}

.final-photo picture,
.final-photo img {
  display: block;
  width: 100%;
}

.final-photo img {
  height: auto;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer img {
  width: 180px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  line-height: 1.45;
}

.footer p:last-child {
  text-align: right;
}

@media (max-width: 520px) {
  .container,
  .container--narrow,
  .container--faq {
    width: min(100% - 38px, 360px);
  }

  .hero {
    min-height: 640px;
  }

  .hero__bg {
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .6)),
      url("assets/hero-mobile.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }

  .hero__bg::after,
  .hero__bg-image {
    display: none;
  }

  .hero__content {
    display: flex;
    min-height: 640px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 0 34px;
  }

  .hero__logo {
    position: static;
    width: 172px;
    margin: 0 0 16px;
  }

  .eyebrow {
    width: fit-content;
    min-height: 17px;
    margin-bottom: 9px;
    padding-inline: 8px;
    font-size: 7px;
  }

  h1 {
    max-width: 315px;
    font-size: 21px;
    line-height: .96;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: block;
  }

  h1 .hline {
    white-space: nowrap;
  }

  .hero__copy {
    max-width: 315px;
    margin: 11px 0 16px;
    font-size: 14px;
    line-height: 1.34;
  }

  .desktop-break {
    display: none;
  }

  .hero__meta {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
  }

  .hero__meta::before {
    content: "›";
    position: absolute;
    left: 0;
    top: -4px;
    color: var(--purple);
    font-size: 20px;
    line-height: 1;
  }

  .button {
    min-height: 34px;
    gap: 9px;
    padding-inline: 16px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
  }

  .button span {
    width: 18px;
    height: 18px;
    font-size: 15px;
  }

  .section {
    padding: 46px 0;
  }

  .pillars,
  .testimonials,
  .pricing {
    background:
      radial-gradient(circle at 50% 14%, rgba(138, 0, 237, .2), transparent 42%),
      url("assets/bg-2-mobile.png") center top / cover no-repeat,
      var(--black);
  }

  .audience,
  .faq {
    background:
      linear-gradient(180deg, rgba(12, 12, 12, .72), rgba(12, 12, 12, .94)),
      url("assets/bg-3-mobile.png") center top / cover no-repeat,
      var(--black);
  }

  .section h2 {
    font-size: 20px;
    line-height: .96;
  }

  .testimonials h2 {
    max-width: 330px;
    margin-inline: auto;
    font-size: 17px;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
    width: min(100%, 205px);
    margin: 34px auto 0;
    gap: 29px;
  }

  .pillar-card {
    width: 205px;
    min-height: 132px;
    padding: 21px 14px 16px;
  }

  .pillar-card h3 {
    font-size: 16px;
  }

  .pillar-card p {
    font-size: 12px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    width: min(100%, 230px);
    gap: 34px;
  }

  .testimonial-card {
    min-height: 214px;
    padding: 28px 18px 20px;
  }

  .testimonial-card h3 {
    font-size: 11px;
  }

  .testimonial-card p {
    font-size: 12px;
  }

  .testimonial-card img {
    width: 40px;
    height: 40px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    width: min(100%, 285px);
    margin-inline: auto;
    gap: 22px;
  }

  .price-card {
    min-height: auto;
    padding: 22px 22px 24px;
  }

  .price-card__tag {
    display: flex;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .price-card__note {
    font-size: 11px;
  }

  .price {
    font-size: 48px;
  }

  .price-card li {
    min-height: 36px;
    font-size: 12px;
    line-height: 1.3;
  }

  .price-card .button {
    font-size: 8px;
  }

  .mini-price p,
  .mini-price span {
    font-size: 14px;
  }

  .mini-price {
    min-height: 128px;
    padding: 24px 14px;
  }

  .mini-price strong {
    font-size: 26px;
  }

  .pricing::before,
  .pricing::after {
    display: none;
  }

  .price-stack {
    order: 2;
  }

  .price-card--vip {
    order: 3;
  }

  .audience__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .audience h2 {
    text-align: left;
    max-width: 300px;
  }

  .audience__list article {
    min-height: 64px;
    padding: 16px 18px;
    font-size: 14px;
  }

  summary {
    min-height: 52px;
    padding: 17px 48px 16px 18px;
    font-size: 13px;
  }

  details p {
    margin: 0 18px 18px;
    font-size: 13px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    text-align: center;
  }

  .footer p:last-child {
    text-align: center;
  }

  .footer img {
    width: 145px;
    order: -1;
  }
}

@media (max-width: 390px) {
  .container,
  .container--narrow,
  .container--faq {
    width: min(100% - 28px, 332px);
  }

  .hero {
    min-height: 620px;
  }

  .hero__content {
    min-height: 620px;
    padding-bottom: 30px;
  }

  .hero__logo {
    position: static;
    width: 160px;
    margin-bottom: 14px;
  }

  .eyebrow {
    min-height: 22px;
    margin-bottom: 13px;
    font-size: 8px;
  }

  h1 {
    font-size: 19px;
  }

  .hero__copy {
    margin: 10px 0 14px;
    font-size: 13px;
  }

  .hero__meta {
    font-size: 13px;
  }

  .button {
    min-height: 32px;
    padding-inline: 14px;
    font-size: 9px;
  }

  .button span {
    width: 17px;
    height: 17px;
    font-size: 14px;
  }
}
