@charset "UTF-8";

/* =========================
   Base
========================= */

:root {
  --color-black: #080808;
  --color-dark: #151515;
  --color-gray: #252525;
  --color-red: #c91414;
  --color-red-dark: #8f1010;
  --color-line: #06c755;
  --color-white: #ffffff;
  --color-text: #f4f4f4;
  --color-muted: #c9c9c9;
  --inner: min(1120px, calc(100% - 72px));
  --inner-wide: min(1280px, calc(100% - 72px));
  --radius-m: 18px;
  --radius-l: 26px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 20, 20, .2), transparent 42rem),
    linear-gradient(180deg, #050505 0%, #151515 42%, #080808 100%);
  overflow-x: hidden;
}

body.is-opening {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  margin-bottom: 0;
  line-height: 1.9;
}

button {
  padding: 0;
  color: inherit;
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.lp-inner {
  width: var(--inner);
  margin-right: auto;
  margin-left: auto;
}

.lp-inner--narrow {
  width: min(900px, calc(100% - 72px));
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.4rem;
  color: #ff5f5f;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.section-kicker::before {
  content: "";
  width: 3.8rem;
  height: .2rem;
  background: currentColor;
}

.section-head {
  margin-bottom: 3.8rem;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-kicker::before {
  display: none;
}

section h2 {
  margin-bottom: 2rem;
  color: var(--color-white);
  font-size: clamp(3.8rem, 4.4vw, 5.8rem);
  line-height: 1.22;
  letter-spacing: .035em;
}

section h3 {
  margin-bottom: 1.1rem;
  color: var(--color-white);
  font-size: 2.6rem;
  line-height: 1.38;
}

.primary-anchor {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 30rem;
  min-height: 6.4rem;
  margin-top: 3.2rem;
  padding: 0 3.6rem;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: .04em;
  background:
    linear-gradient(180deg, #09d95f 0%, var(--color-line) 100%);
  border-radius: 999px;
  box-shadow:
    0 1.2rem 2.8rem rgba(6, 199, 85, .28),
    inset 0 -.3rem 0 rgba(0, 0, 0, .18);
}

.primary-anchor::after {
  content: "▶";
  margin-left: 1rem;
  font-size: 1.2rem;
}


/* =========================
   Opening
========================= */

.hero-opening {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 45%, rgba(201, 20, 20, .22), transparent 32rem),
    linear-gradient(180deg, #050505 0%, #121212 52%, #050505 100%);
  opacity: 1;
  visibility: visible;
  transition:
    opacity .45s ease,
    visibility .45s ease;
}

.hero-opening.is-hide {
  opacity: 0;
  visibility: hidden;
}

.hero-opening__inner {
  width: min(760px, 86vw);
}

.hero-opening__text {
  margin-bottom: .8rem;
  font-size: clamp(4.8rem, 6vw, 8.4rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: .08em;
  opacity: 0;
}

.hero-opening__text--one,
.hero-opening__text--two {
  margin-left: .8em;
}

.hero-opening__text--one {
  animation: openingText .9s ease forwards .35s;
}

.hero-opening__text--two {
  color: var(--color-red);
  animation: openingText .9s ease forwards 1.35s;
}

body.opening-skip .hero-opening {
  display: none;
}

@keyframes openingText {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body.is-opening-done .hero-visual {
  animation:
    heroVisualReveal
    1.4s
    cubic-bezier(.22, .61, .36, 1)
    forwards;
}

@keyframes heroVisualReveal {
  0% {
    opacity: 0;
    transform: scale(1.025);
    filter: blur(8px) brightness(.72);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) brightness(1);
  }
}



/* =========================
   Header
========================= */

.lp-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  background: rgba(5, 5, 5, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  width: min(100% - 80px, 1400px);
  height: 90px;
  margin-right: auto;
  margin-left: auto;
}

.lp-header__logo {
  display: block;
  width: 208px;
  flex-shrink: 0;
}

.lp-header__nav {
  display: flex;
  gap: 2.4rem;
  margin-left: auto;
  color: rgba(255, 255, 255, .78);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.lp-header__nav a:hover {
  color: #fff;
}

.lp-header__qr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16.4rem;
  height: 4.4rem;
  margin-left: 2.4rem;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  background: #04893c;
  border-radius: 999px;
  box-shadow: 0 .8rem 1.8rem rgba(6, 199, 85, .2);
}

/* =========================
   Hero Visual
========================= */

.hero-visual {
  position: relative;
  overflow: hidden;
  margin-top: 90px;
  background: #000;
  opacity: 0;
  transform: scale(1.025);
  filter: blur(8px) brightness(.72);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   Hero Message
========================= */

.hero-message {
  position: relative;
  padding: 8.8rem 0 9.6rem;
  background:
    radial-gradient(
      circle at 18% 30%,
      rgba(201, 20, 20, .22),
      transparent 36rem
    ),
    radial-gradient(
      circle at 82% 12%,
      rgba(201, 20, 20, .24),
      transparent 38rem
    ),
    linear-gradient(
      180deg,
      #050505 0%,
      #151515 100%
    );
}

.hero-message::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, .12);
}

.hero-message__inner {
  display: flex;
  justify-content: center;
}

.hero-message__copy {
  width: min(1180px, 100%);
  text-align: center;
}

.hero-message .section-kicker {
  justify-content: center;
}

.hero-message .section-kicker::before {
  display: none;
}

.hero-message__title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2.4rem;
  margin-bottom: 5rem;
  color: #fff;
  font-weight: 900;
  line-height: .92;
  letter-spacing: .05em;
}

.hero-message__title > span {
  display: block;
  padding-bottom: 2.4rem;
  font-size: clamp(4.2rem, 5vw, 7.2rem);
}

.hero-message__title strong {
  display: block;
  color: var(--color-red);
  font-size: clamp(15rem, 15vw, 23rem);
  line-height: .76;
  text-shadow:
    .7rem .7rem 0 rgba(0, 0, 0, .9),
    0 0 3.2rem rgba(201, 20, 20, .46);
}

.hero-message__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 1.1rem 1.8rem 1.5rem;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  background: rgba(201, 20, 20, .94);
}

.hero-message__lead {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.9;
  letter-spacing: .03em;
}

.hero-message__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-message__badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: .9rem 1.8rem;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
  background: rgba(0, 0, 0, .58);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 .6rem 1.4rem rgba(0, 0, 0, .28);
}

.hero-message__badges span:first-child {
  background:
    linear-gradient(
      180deg,
      #e31b1b 0%,
      #a90f0f 100%
    );
  border-color: rgba(255, 255, 255, .36);
  box-shadow:
    0 .8rem 1.8rem rgba(201, 20, 20, .35),
    inset 0 -.2rem 0 rgba(0, 0, 0, .2);
}

.hero-message__badges span:nth-child(2) {
  background: rgba(6, 199, 85, .18);
  border-color: rgba(6, 199, 85, .72);
}

.primary-anchor--hero {
  margin-top: 3.4rem;
}

/* =========================
   Intro
========================= */

.intro {
  padding: 9.6rem 0 8.4rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(201, 20, 20, .18), transparent 32rem),
    linear-gradient(135deg, rgba(201, 20, 20, .15) 0%, transparent 38%),
    var(--color-black);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 6rem;
  align-items: center;
}

.intro__image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-l);
  box-shadow: 0 1.8rem 3.8rem rgba(0, 0, 0, .42);
}

.intro__image img {
  display: block;
  width: 100%;
  height: auto;
}

.intro__text p:not(.section-kicker) {
  color: var(--color-muted);
  font-size: 1.7rem;
}

.intro__text p + p {
  margin-top: 1.6rem;
}

.intro__title-line {
  display: block;
}

.intro__title-line + .intro__title-line {
  margin-top: .15em;
}

.intro__title-line--nowrap {
  white-space: nowrap;
}

.intro__nowrap {
  display: inline-block;
  white-space: nowrap;
}

/* =========================
   Emotional
========================= */

.emotional {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #0b0b0b;
}

.emotional__image {
  position: absolute;
  inset: 0;
}

.emotional__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emotional__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .54) 42%, rgba(0, 0, 0, .12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .9) 100%);
}

.emotional__text {
  position: relative;
  z-index: 2;
  width: var(--inner);
  margin-right: auto;
  margin-left: auto;
  padding: 12rem 0 10rem;
}

.emotional__text p {
  margin-bottom: .9rem;
  color: #fff;
  font-size: clamp(4.6rem, 5.2vw, 7rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: .06em;
}

.emotional__text strong {
  display: block;
  width: fit-content;
  margin-top: 3rem;
  padding-left: 1.8rem;
  color: var(--color-red);
  font-size: 2.4rem;
  line-height: 1.65;
  border-left: .5rem solid var(--color-red);
}

/* =========================
   Product Image
========================= */

.product-image {
  padding: 9.6rem 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(201, 20, 20, .22), transparent 32rem),
    #151515;
}

.product-image__grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 6rem;
  align-items: center;
}

.product-image__text p:not(.section-kicker) {
  color: var(--color-muted);
  font-size: 1.6rem;
}

.product-image__main {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-l);
  box-shadow: 0 1.8rem 3.8rem rgba(0, 0, 0, .42);
}

/* =========================
   Points
========================= */

.lp-points .section-kicker {
  color: #ff7070;
}

.lp-points {
  padding: 9.6rem 0;
  background: #080808;
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

.point-card {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 20, 20, .16) 0%, transparent 42%),
    #171717;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-m);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, .36);
}

.point-card--semi {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
}

.point-card__image {
  overflow: hidden;
  background: #0b0b0b;
}

.point-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

.point-card__body {
  padding: 2.6rem 2.4rem 3rem;
}

.point-card--semi .point-card__body {
  padding: 3rem 3.2rem;
}

.point-card__body span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--color-red);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.point-card__body p {
  color: #d8d8d8;
  font-size: 1.48rem;
}

.point-card__body .point-card__note {
  margin-top: .9rem;
  color: rgba(255, 255, 255, .62);
  font-size: 1.22rem;
  line-height: 1.7;
}

.movie-app-guide {
  grid-column: 1 / -1;
  margin-top: 0;
  padding: clamp(2.4rem, 2.4vw, 3.6rem);
  border: 1px solid rgba(255, 255, 255, .10);
  border-left: 5px solid rgba(201, 20, 20, .72);
  border-radius: var(--radius-m);
  background:
    radial-gradient(
      circle at 86% 16%,
      rgba(201, 20, 20, .18) 0,
      rgba(201, 20, 20, 0) 34%
    ),
    linear-gradient(
      135deg,
      rgba(31, 31, 31, .96) 0%,
      rgba(14, 14, 14, .98) 100%
    );
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, .36);
}

.movie-app-guide__head {
  width: min(100%, 820px);
  margin:
    0
    auto
    clamp(2.4rem, 2.4vw, 3.4rem);
  text-align: center;
}

.movie-app-guide__label {
  margin:
    0
    0
    1rem;
  color: #ff7070;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.movie-app-guide h3 {
  margin:
    0
    0
    1.4rem;
  color: #ffffff;
  font-size: clamp(1.85rem, 1.35vw, 2.3rem);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .03em;
}

.movie-app-guide__head p:last-child {
  margin: 0;
  color: #d8d8d8;
  font-size: 1.42rem;
  line-height: 1.8;
  text-align: left;
}

.movie-app-guide__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 1.4vw, 2.2rem);
}

.movie-app-card {
  display: grid;
  grid-template-columns:
    76px
    1fr;
  gap: 1.8rem;
  align-items: center;
  padding: clamp(1.8rem, 1.8vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius-m);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .08) 0%,
      rgba(255, 255, 255, .03) 100%
    );
  box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, .26);
}

.movie-app-card__icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 .8rem 1.8rem rgba(0, 0, 0, .22);
}

.movie-app-card__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.movie-app-card__body {
  min-width: 0;
}

.movie-app-card__body h4 {
  margin:
    0
    0
    .6rem;
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.35;
}

.movie-app-card__body p {
  margin: 0;
  color: #d8d8d8;
  font-size: 1.3rem;
  line-height: 1.65;
}



/* =========================
   Items
========================= */

.items {
  padding: 9.6rem 0;
  background:
    linear-gradient(180deg, #151515 0%, #080808 100%);
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8rem;
}

.item-card {
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius-l);
  box-shadow: 0 1.6rem 3.4rem rgba(0, 0, 0, .38);
}

.item-card__image {
  overflow: hidden;
  background: #0b0b0b;
}

.item-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

.item-card__body {
  padding: 3rem 2.8rem 3.4rem;
}

.item-card__body > span {
  display: inline-block;
  margin-bottom: .8rem;
  color: var(--color-red);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.item-card__body p {
  color: var(--color-muted);
  font-size: 1.48rem;
}

.item-specs {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

.item-spec {
  padding: 1.6rem 1.5rem 1.7rem;
  background:
    linear-gradient(90deg, rgba(201, 20, 20, .14) 0%, transparent 66%),
    rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
}

.item-spec > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5rem;
  min-height: 2.8rem;
  margin-bottom: 1rem;
  padding: .4rem .9rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  background: var(--color-red);
}

.item-spec dl {
  display: grid;
  gap: .8rem;
  margin: 0;
}

.item-spec dl div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: .8rem;
  align-items: start;
}

.item-spec dt,
.item-spec dd {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.6;
}

.item-spec dt {
  color: rgba(255, 255, 255, .58);
  font-weight: 900;
}

.item-spec dd {
  color: rgba(255, 255, 255, .86);
}

.item-card__body .item-spec-note {
  margin: .6rem .2rem 0;
  color: rgba(255, 255, 255, .62);
  font-size: 1.15rem;
  line-height: 1.65;
}

/* =========================
   Price
========================= */

.price {
  padding: 9.6rem 0;
  background:
    linear-gradient(135deg, rgba(201, 20, 20, .18) 0%, transparent 44%),
    #101010;
}

.price__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 5rem;
  align-items: end;
}

.price__nowrap {
  display: inline-block;
  white-space: nowrap;
}

.price__lead {
  margin-top: .6rem;
  color: var(--color-muted);
  font-size: 1.55rem;
}

.price-highlight {
  padding: 3rem 2.4rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(201, 20, 20, .28) 0%, transparent 48%),
    #171717;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-l);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, .34);
}

.price-highlight strong {
  display: block;
  color: var(--color-red);
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
  text-shadow:
    .2rem .2rem 0 rgba(0, 0, 0, .72),
    0 0 1.4rem rgba(201, 20, 20, .38);
}

.price-highlight__conditions {
  display: grid;
  gap: .6rem;
  margin-top: 2.2rem;
}

.price-highlight__conditions p {
  color: rgba(255, 255, 255, .72);
  font-size: 1.22rem;
  line-height: 1.6;
}

.price-accordion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  align-items: start;
  margin-top: 3.6rem;
}

.price-column {
  display: grid;
  gap: 1.6rem;
  align-items: start;
}

.price-item {
  overflow: hidden;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
}

.price-question {
  position: relative;
  width: 100%;
  padding: 2rem 5rem 2rem 2rem;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.45;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(201, 20, 20, .2) 0%, transparent 64%);
}

.price-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 2rem;
  color: var(--color-red);
  font-size: 2.8rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.price-item.is-open .price-question::after {
  content: "−";
}

.price-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.price-table {
  margin: 0 1.8rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, .12);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 4.6rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.price-row:first-child {
  border-top: 0;
}

.price-row span {
  display: flex;
  align-items: center;
  padding: 1rem 1.4rem;
  color: rgba(255, 255, 255, .82);
  font-size: 1.35rem;
  line-height: 1.45;
}

.price-row span + span {
  justify-content: flex-end;
  color: #fff;
  font-weight: 900;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.price-row--head {
  background: rgba(201, 20, 20, .24);
}

.price-row--head span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.price-subtitle {
  margin: 1.8rem 1.8rem 1rem;
  padding-left: 1rem;
  color: #fff;
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1.4;
  border-left: .3rem solid var(--color-red);
}

.price-option {
  margin: -.4rem 1.8rem 1.8rem;
  color: rgba(255, 255, 255, .66);
  font-size: 1.2rem;
  line-height: 1.6;
}

.price__notes {
  display: grid;
  gap: .4rem;
  justify-content: flex-end;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  text-align: right;
}

.price__notes li {
  color: var(--color-muted);
  font-size: 1.25rem;
  line-height: 1.75;
}



/* =========================
   Flow
========================= */

.flow {
  padding: 9.6rem 0;
  background: #080808;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  min-height: 250px;
  padding: 2.6rem 2rem 2.8rem;
  background:
    linear-gradient(90deg, rgba(201, 20, 20, .18) 0%, transparent 60%),
    #171717;
  border-left: .4rem solid var(--color-red);
  border-radius: 16px;
}

.flow-list span {
  display: inline-block;
  margin-bottom: .9rem;
  color: var(--color-red);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.flow-list h3 {
  margin-bottom: .9rem;
  font-size: 2.1rem;
}

.flow-list p {
  color: var(--color-muted);
  font-size: 1.38rem;
}


/* =========================
   FAQ
========================= */

.faq {
  padding: 9.6rem 0;
  background:
    linear-gradient(180deg, #151515 0%, #080808 100%);
}

.faq-list {
  margin-top: 2.6rem;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 2.2rem 5rem 2.2rem 0;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.55;
  text-align: left;
}

.faq-question::before {
  content: "Q.";
  margin-right: .8rem;
  color: var(--color-red);
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: .4rem;
  color: var(--color-red);
  font-size: 2.6rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.faq-answer p {
  padding: 0 0 2rem 3.2rem;
  color: var(--color-muted);
  font-size: 1.48rem;
}

/* =========================
   Final CTA
========================= */

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background: #000;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
}

.final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .6) 42%, rgba(0, 0, 0, .25) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .92) 86%),
    linear-gradient(90deg, rgba(201, 20, 20, .36), transparent);
}

.final-cta__body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(390px, 440px);
  gap: 3.6rem;
  align-items: center;
  width: min(100% - 12rem, 1080px);
  min-height: 760px;
  margin-right: auto;
  margin-left: auto;
  padding: 10rem 0 7rem;
}

.final-cta__copy > p {
  margin-bottom: 1rem;
  color: var(--color-red);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.final-cta__copy h2 {
  margin-bottom: 0;
}

.final-cta__line {
  padding: 3rem;
  background: rgba(0, 0, 0, .72);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-l);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, .36);
}

.final-cta__line-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.6;
}

.final-cta__line-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
  margin-top: 2rem;
}

.final-cta__copy-line {
  display: inline-block;
  white-space: nowrap;
  letter-spacing: .02em;
}

.final-cta__qr {
  padding: 1.2rem;
  background: #fff;
  border-radius: 18px;
}

.final-cta__line-info p {
  color: rgba(255, 255, 255, .74);
  font-size: 1.35rem;
}

.final-cta__line-id {
  margin-bottom: .8rem;
  color: #fff !important;
  font-size: 1.7rem !important;
  font-weight: 900;
}

.final-contact {
  grid-column: 1 / -1;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.final-contact__lead {
  color: rgba(255, 255, 255, .76);
  font-size: 1.35rem;
  line-height: 1.75;
  text-align: center;
}

.phone-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  width: min(100%, 42rem);
  min-height: 5.6rem;
  margin: 1.4rem auto 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: .04em;
  background: rgba(0, 0, 0, .38);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  box-shadow: 0 .8rem 2rem rgba(0, 0, 0, .28);
}

.phone-button span {
  color: rgba(255, 255, 255, .76);
  font-size: 1.3rem;
}

.phone-button strong {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.final-nav {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 3rem;
  text-align: center;
}

.final-nav a {
  color: rgba(255, 255, 255, .72);
  font-size: 1.3rem;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: .3rem;
}

/* =========================
   Animation
========================= */

.js-reveal {
  opacity: 0;
  transform: translateY(3rem);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

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

.point-card.is-visible,
.item-card.is-visible {
  animation: impactIn .6s ease both;
}

@keyframes impactIn {
  0% {
    opacity: 0;
    transform: translateY(2.6rem) skewY(-1deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}

.primary-anchor,
.lp-header__qr {
  animation: linePulse 2.4s ease-in-out infinite;
}

@keyframes linePulse {
  0%,
  100% {
    box-shadow:
      0 1.2rem 2.8rem rgba(6, 199, 85, .24),
      inset 0 -.3rem 0 rgba(0, 0, 0, .18);
  }

  50% {
    box-shadow:
      0 1.4rem 3.6rem rgba(6, 199, 85, .38),
      inset 0 -.3rem 0 rgba(0, 0, 0, .18);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
