:root {
  --dark: #060914;
  --navy: #0a0e27;
  --midnight: #0d1330;
  --blue: #0066ff;
  --cyan: #00d4ff;
  --purple: #7b2fff;
  --lavender: #b088ff;
  --pink: #ff2d78;
  --ink: #080b1d;
  --muted: #a0aec0;
  --white: #ffffff;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1200px;
  background: var(--dark);
  color: var(--white);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  border-bottom: 1px solid rgba(0, 212, 255, .2);
  background: rgba(6, 9, 20, .86);
  backdrop-filter: blur(18px);
}

.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.header-inner {
  width: var(--max);
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-logo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 43px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1;
}

.text-logo--cyan {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(0, 212, 255, .45);
}

.text-logo--white {
  color: var(--white);
  text-shadow: 0 0 24px rgba(176, 136, 255, .55);
}

.header-nav {
  display: flex;
  gap: 34px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 700;
}

.header-nav a:hover {
  color: var(--cyan);
}

.header-cta {
  min-width: 154px;
  padding: 10px 22px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 20px rgba(0, 212, 255, .5);
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: var(--max);
  margin: 0 auto;
}

.section-inner.narrow {
  width: 980px;
}

.section-dark,
.section-midnight,
.section-light {
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: var(--dark);
}

.section-midnight {
  background: var(--midnight);
}

.section-light {
  color: var(--ink);
  background-color: var(--white);
}

.section-glow::before,
.section-glow::after,
.final-glow::before,
.final-glow::after,
.product-glow::before,
.beam-bg::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(42px);
}

.section-glow::before {
  width: 620px;
  height: 620px;
  right: 110px;
  top: 80px;
  background: radial-gradient(circle, rgba(0, 102, 255, .55), transparent 64%);
}

.section-glow::after {
  width: 520px;
  height: 520px;
  right: 260px;
  top: 120px;
  background: radial-gradient(circle, rgba(123, 47, 255, .52), transparent 66%);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 52%, rgba(0, 212, 255, .22) 53%, transparent 55%),
    linear-gradient(118deg, transparent 58%, rgba(123, 47, 255, .25) 59%, transparent 61%),
    radial-gradient(circle at 74% 34%, rgba(255, 45, 120, .26), transparent 18%);
  opacity: .86;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.stripe-bg {
  background-image: repeating-linear-gradient(135deg, rgba(0, 212, 255, .045) 0 2px, transparent 2px 18px);
}

.dot-bg {
  background-image: radial-gradient(rgba(176, 136, 255, .22) 1px, transparent 1px);
  background-size: 22px 22px;
}

.line-bg {
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, .055) 0 1px, transparent 1px 40px);
}

.beam-bg::before {
  width: 1200px;
  height: 240px;
  right: -220px;
  top: 210px;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, .28), rgba(0, 102, 255, .38), transparent);
}

.product-glow::before {
  width: 520px;
  height: 520px;
  left: 210px;
  top: 130px;
  background: radial-gradient(circle, rgba(123, 47, 255, .55), rgba(0, 102, 255, .14), transparent 68%);
}

.final-glow::before {
  width: 900px;
  height: 360px;
  right: -110px;
  top: 90px;
  transform: rotate(-13deg);
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, .25), rgba(123, 47, 255, .36), rgba(255, 45, 120, .28), transparent);
}

.final-glow::after {
  width: 650px;
  height: 650px;
  right: 130px;
  top: 40px;
  background: radial-gradient(circle, rgba(123, 47, 255, .33), transparent 68%);
}

.hero {
  position: relative;
  min-height: 860px;
  padding: 52px 0 58px;
  overflow: hidden;
}

.hero-inner {
  min-height: 750px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 560px 1fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.brand-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 45px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
}

.hero-title {
  width: 560px;
  margin: 0;
  color: #fff;
  font-size: 88px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-shadow: 0 8px 0 rgba(0, 0, 0, .28);
}

.hero-copy {
  margin: 24px 0 30px;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.7;
}

.cta-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-label {
  position: relative;
  z-index: 2;
  margin-bottom: -8px;
  padding: 3px 19px;
  border: 1px solid rgba(0, 212, 255, .8);
  border-radius: 4px;
  background: rgba(6, 9, 20, .9);
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
  box-shadow: 0 0 15px rgba(0, 212, 255, .28);
}

.section-light .cta-label {
  border-color: rgba(123, 47, 255, .45);
  background: var(--white);
  color: var(--purple);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  min-width: 430px;
  min-height: 70px;
  padding: 10px 36px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 20px rgba(0, 212, 255, .5), inset 0 0 16px rgba(255, 255, 255, .28);
  color: var(--white);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 212, 255, .68), inset 0 0 18px rgba(255, 255, 255, .35);
}

.cta-button span {
  font-family: "Rajdhani", sans-serif;
  font-size: 54px;
  line-height: 0;
}

.hero-badges {
  display: flex;
  gap: 22px;
  margin-top: 42px;
}

.hero-badge {
  width: 126px;
  min-height: 126px;
  display: grid;
  place-items: center;
  padding: 16px 10px;
  border: 1px solid rgba(0, 212, 255, .72);
  border-radius: 4px;
  background: rgba(6, 9, 20, .62);
  color: #fff;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.hero-badge span {
  display: block;
  color: var(--cyan);
  font-size: 34px;
  line-height: 1;
}

.hero-badge i {
  display: block;
  color: var(--cyan);
  font-size: 34px;
  line-height: 1;
}

.hero-visual {
  position: absolute;
  top: -52px;
  right: -32px;
  width: 860px;
  height: 860px;
  margin: 0;
  pointer-events: none;
}

.hero-combined {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top right;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 25%),
    linear-gradient(to bottom, transparent 0%, black 8%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 25%),
    linear-gradient(to bottom, transparent 0%, black 8%);
  mask-composite: intersect;
  filter: drop-shadow(0 0 38px rgba(0, 102, 255, .55));
}

.proof-bar {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 212, 255, .3);
  border-bottom: 1px solid rgba(0, 212, 255, .2);
  box-shadow: inset 0 0 28px rgba(0, 102, 255, .18);
}

.proof-inner {
  width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .35);
  text-align: center;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item p,
.proof-item > span {
  margin: 0;
  font-size: 29px;
  font-weight: 900;
}

.proof-item strong {
  color: var(--cyan);
  font-family: "Rajdhani", sans-serif;
  font-size: 88px;
  font-weight: 700;
  line-height: .95;
  text-shadow: 0 0 24px rgba(0, 212, 255, .45);
}

.proof-item small {
  font-size: 61px;
}

.proof-item .count {
  font-size: 88px;
}

.worries,
.ingredients,
.steps,
.faq {
  padding: 76px 0 86px;
}

.section-title {
  position: relative;
  margin: 0 0 42px;
  color: #fff;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  display: inline-block;
  width: 120px;
  height: 2px;
  margin: 0 28px 14px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}

.section-title::after {
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.section-title--dark {
  color: var(--ink);
}

.section-lead {
  margin: -28px 0 42px;
  color: #17203a;
  font-size: 19px;
  font-weight: 900;
  text-align: center;
}

.card-grid.three,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.worry-card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 45, 120, .62);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(8, 11, 29, .08);
}

.worry-card > img:first-child {
  width: 100%;
  height: 232px;
  object-fit: cover;
}

.worry-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  filter: drop-shadow(0 0 12px rgba(255, 45, 120, .35));
}

.worry-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.worry-card p {
  min-height: 118px;
  margin: 0;
  padding: 28px 24px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.75;
}

.about {
  padding: 90px 0 86px;
}

.about-inner {
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: 52px;
}

.about-person {
  width: 520px;
  margin: 0;
  border-radius: 4px;
  opacity: .92;
  -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%);
  mask-image: linear-gradient(to right, black 60%, transparent 100%);
  filter: drop-shadow(0 0 36px rgba(0, 102, 255, .35));
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 26px;
}

.about-content .section-title::before {
  display: none;
}

.about-content .section-title::after {
  width: 92px;
  margin-right: 0;
}

.about-copy {
  width: 100%;
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
}

.about-copy p {
  margin: 0 0 14px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  padding: 22px 14px 20px;
  border: 1px solid rgba(0, 212, 255, .75);
  border-radius: 6px;
  background: rgba(13, 19, 48, .78);
  text-align: center;
  box-shadow: 0 0 18px rgba(0, 212, 255, .14);
}

.feature-card img {
  width: 68px;
  height: 68px;
  margin: 0 auto 12px;
}

.feature-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.65;
}

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

.ingredient-card {
  grid-column: span 2;
  min-height: 250px;
  padding: 26px 22px;
  border: 2px solid rgba(123, 47, 255, .45);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  text-align: center;
  box-shadow: 0 12px 28px rgba(123, 47, 255, .08);
}

.ingredient-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.ingredient-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.ingredient-card img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.ingredient-card h3 {
  margin: 0 0 8px;
  color: var(--purple);
  font-size: 25px;
  font-weight: 900;
}

.ingredient-card p {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.65;
}

.comparison {
  padding: 62px 0 74px;
}

.compare-table,
.product-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #fff;
  background: rgba(6, 9, 20, .45);
  box-shadow: 0 0 28px rgba(0, 102, 255, .12);
}

.compare-table th,
.compare-table td,
.product-table th,
.product-table td {
  border: 1px solid rgba(255, 255, 255, .42);
  padding: 12px 18px;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.compare-table thead th:nth-child(2),
.compare-table tbody td:first-of-type {
  color: var(--cyan);
  background: rgba(0, 212, 255, .08);
}

.compare-table thead th {
  font-size: 21px;
}

.step-card {
  position: relative;
  min-height: 510px;
  padding: 28px 24px 32px;
  border: 2px solid rgba(123, 47, 255, .3);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 38px rgba(60, 33, 150, .11);
  text-align: center;
}

.step-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  width: 92px;
  height: 92px;
  padding: 2px;
  border-radius: 50%;
  background-color: #FFFFFF;
}

.step-photo {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 22px;
}

.step-card h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.45;
}

.step-card p {
  margin: 0;
  color: #1b2340;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.overview {
  padding: 72px 0 82px;
}

.overview-layout {
  display: grid;
  grid-template-columns: 440px 1fr;
  align-items: center;
  gap: 56px;
}

.overview-product {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.overview-product::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(123, 47, 255, .55), rgba(0, 102, 255, .2), transparent 68%);
  filter: blur(8px);
}

.overview-bottle {
  position: relative;
  z-index: 1;
  width: 390px;
  max-height: 500px;
  object-fit: contain;
  -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%);
  mask-image: linear-gradient(to right, black 60%, transparent 100%);
  filter: drop-shadow(0 0 42px rgba(123, 47, 255, .62));
}

.overview-info .cta-block {
  display: flex;
  width: 100%;
  align-items: stretch;
}

.overview-info .cta-label {
  align-self: center;
}

.overview-info .cta-button {
  width: 100%;
  min-width: 0;
}

.product-table {
  margin-bottom: 32px;
}

.product-table th {
  width: 240px;
  color: #fff;
  background: rgba(0, 102, 255, .08);
}

.product-table td {
  text-align: left;
}

.product-table strong {
  color: var(--cyan);
  font-family: "Rajdhani", sans-serif;
  font-size: 56px;
  line-height: .9;
  text-shadow: 0 0 18px rgba(0, 212, 255, .45);
}

.cta-reference {
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: .01;
}

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

.faq-item {
  border: 2px solid rgba(123, 47, 255, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 25px rgba(123, 47, 255, .08);
}

.faq-question {
  width: 100%;
  min-height: 70px;
  display: grid;
  grid-template-columns: 54px 1fr 40px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--purple);
  font: inherit;
  font-size: 19px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span,
.faq-answer span {
  color: var(--blue);
  font-family: "Rajdhani", sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.faq-question b {
  color: var(--purple);
  font-size: 34px;
  line-height: 1;
  text-align: center;
  transition: transform .25s ease;
}

.faq-item.is-open .faq-question b {
  transform: rotate(45deg);
}

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

.faq-answer p {
  display: grid;
  grid-template-columns: 54px 1fr;
  margin: 0;
  padding: 0 28px 22px 0;
  color: #11182e;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

.final-cta {
  min-height: 760px;
  padding: 92px 0 100px;
}

.final-inner {
  display: grid;
  grid-template-columns: 600px 1fr;
  align-items: center;
  gap: 46px;
}

.final-content {
  position: relative;
  z-index: 3;
}

.final-person {
  position: relative;
  z-index: 1;
  width: 570px;
  margin: 0;
  opacity: .92;
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
  mask-image: linear-gradient(to left, black 60%, transparent 100%);
  filter: drop-shadow(0 0 42px rgba(123, 47, 255, .62));
}

.final-title {
  margin: 0 0 18px;
  width: 600px;
  color: #fff;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 7px 0 rgba(0, 0, 0, .25);
}

.final-title span {
  white-space: nowrap;
}

.final-copy {
  margin: 0 0 28px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.8;
}

.footer-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.footer-benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 78px;
  border: 1px solid rgba(0, 212, 255, .62);
  border-radius: 6px;
  background: rgba(6, 9, 20, .58);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.footer-benefit img {
  width: 48px;
  height: 48px;
}

.page-footer {
  grid-column: 1 / -1;
  margin-top: 54px;
  padding-bottom: 34px;
  text-align: center;
}

.page-footer::before,
.page-footer::after {
  content: "";
  display: inline-block;
  width: 310px;
  height: 1px;
  margin: 0 34px 13px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
  opacity: .7;
}

.fade-item,
.fade-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-item.is-visible,
.fade-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-card {
  transition-delay: var(--delay, 0s);
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(0, 0, 0, .66);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.exit-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.exit-dialog {
  position: relative;
  width: 560px;
  padding: 44px 46px 46px;
  border: 1px solid rgba(0, 212, 255, .5);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 212, 255, .24), transparent 28%),
    linear-gradient(145deg, #060914, #0d1330);
  box-shadow: 0 0 40px rgba(0, 212, 255, .32);
  color: #fff;
  text-align: center;
  transform: translateY(14px);
  transition: transform .25s ease;
}

.exit-popup.is-visible .exit-dialog {
  transform: translateY(0);
}

.exit-dialog .brand-kicker {
  font-size: 30px;
  margin-bottom: 14px;
}

.exit-dialog h2 {
  margin: 0 0 16px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.35;
}

.exit-dialog p {
  margin: 0 0 26px;
  font-size: 17px;
  font-weight: 700;
}

.exit-dialog .cta-button {
  min-width: 360px;
  min-height: 62px;
  font-size: 28px;
}

.exit-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 4px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
