:root {
  --vm-bg: #050816;
  --vm-bg-2: #0b1024;
  --vm-card: rgba(17, 22, 45, 0.78);
  --vm-card-2: rgba(35, 20, 65, 0.72);
  --vm-border: rgba(219, 80, 255, 0.34);
  --vm-text: #f7f7fb;
  --vm-muted: #bfc4d7;
  --vm-purple: #9b35ff;
  --vm-pink: #ff4fc3;
  --vm-line: #06c755;
  --vm-radius: 24px;
  --vm-shadow: 0 18px 60px rgba(131, 44, 255, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.vm-lp-page {
  margin: 0;
  background: var(--vm-bg);
  color: var(--vm-text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
}

body.vm-lp-page a {
  color: inherit;
  text-decoration: none;
}

body.vm-lp-page img {
  display: block;
  max-width: 100%;
}

.vm-lp {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(198, 48, 255, 0.25), transparent 30%),
    radial-gradient(circle at 10% 5%, rgba(77, 86, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #050816 0%, #080b1a 48%, #0b0618 100%);
}

.vm-container {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0 20px;
}

.vm-lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 20px;
  background: rgba(5, 8, 22, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.vm-lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.vm-lp-brand__logo {
  width: 38px;
  height: 38px;
}

.vm-lp-brand__text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.vm-lp-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(6, 199, 85, 0.14);
  border: 1px solid rgba(6, 199, 85, 0.55);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.vm-hero {
  position: relative;
  padding: 44px 0 56px;
}

.vm-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  opacity: .25;
  pointer-events: none;
}

.vm-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.vm-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--vm-border);
  background: rgba(155, 53, 255, 0.08);
  color: #ff8bea;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 0 24px rgba(155, 53, 255, .2);
}

.vm-eyebrow {
  margin: 0 0 10px;
  color: var(--vm-muted);
  font-weight: 800;
  letter-spacing: .06em;
}

.vm-hero__title {
  margin: 0;
  font-size: clamp(42px, 13.2vw, 76px);
  line-height: 1.12;
  letter-spacing: -0.08em;
  font-weight: 900;
}

.vm-gradient {
  background: linear-gradient(90deg, #8b35ff 0%, #ff45c8 60%, #fff 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vm-hero__lead {
  margin: 22px 0 28px;
  color: #dfe2ef;
  font-size: 16px;
  font-weight: 700;
}

.vm-price-card,
.vm-plan-card,
.vm-solution-card,
.vm-note-card,
.vm-final-cta,
.vm-campaign-box {
  position: relative;
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius);
  background: linear-gradient(135deg, rgba(40, 31, 82, .78), rgba(11, 16, 36, .82));
  box-shadow: var(--vm-shadow);
}

.vm-price-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 10px;
  padding: 26px 20px;
  overflow: hidden;
}

.vm-price-card__label,
.vm-plan-card__name {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .02em;
}

.vm-price-card__price,
.vm-plan-card__price {
  margin: 2px 0 0;
  color: #fff;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.vm-price-card__price span,
.vm-plan-card__price span {
  font-size: clamp(76px, 23vw, 122px);
  background: linear-gradient(180deg, #7d35ff, #ff4fc3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vm-price-card__note,
.vm-plan-card__note {
  margin: 8px 0 0;
  color: #e8dfff;
  font-weight: 800;
}

.vm-price-card__image {
  width: 100%;
  min-height: 148px;
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(255, 79, 195, .23));
}

.vm-feature-strip,
.vm-include-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 18px 0 20px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  list-style: none;
}

.vm-feature-strip li,
.vm-include-list li {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 10px;
  background: rgba(14, 19, 44, .88);
  color: #eef0ff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.vm-scope-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.vm-scope-chips span {
  min-width: 96px;
  padding: 10px 14px;
  border: 1px solid rgba(219, 80, 255, .32);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #f3eaff;
  font-weight: 900;
  text-align: center;
}

.vm-cta-group {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.vm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 16px 20px;
  border-radius: 18px;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .04em;
  text-align: center;
  transition: transform .2s ease, filter .2s ease;
}

.vm-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.vm-btn--line {
  background: linear-gradient(180deg, #08dd60, var(--vm-line));
  color: #fff;
  box-shadow: 0 14px 36px rgba(6, 199, 85, .24);
}

.vm-btn--primary {
  margin-top: 24px;
  background: linear-gradient(90deg, #8b35ff, #ff4fc3);
  color: #fff;
}

.vm-btn--ghost {
  border: 1px solid var(--vm-border);
  background: rgba(255,255,255,.04);
  color: #f7e9ff;
}

.vm-safe-text {
  margin: 14px 0 0;
  color: #bfc4d7;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.vm-section {
  padding: 66px 0;
}

.vm-section__label {
  display: table;
  margin: 0 auto 16px;
  padding: 8px 18px;
  border: 1px solid var(--vm-border);
  border-radius: 999px;
  color: #ff82e6;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}

.vm-section__title {
  margin: 0 0 28px;
  font-size: clamp(30px, 8vw, 48px);
  line-height: 1.35;
  letter-spacing: -0.06em;
  text-align: center;
}

.vm-problem-list,
.vm-reason-list,
.vm-flow-list {
  display: grid;
  gap: 14px;
}

.vm-problem-card,
.vm-reason-card,
.vm-flow-card,
.vm-case-card {
  border: 1px solid rgba(219, 80, 255, .2);
  border-radius: 20px;
  background: rgba(17, 22, 45, .74);
  box-shadow: 0 12px 36px rgba(0,0,0,.22);
}

.vm-problem-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 18px;
}

.vm-problem-card__icon,
.vm-reason-card__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.vm-problem-card p {
  margin: 0;
  color: #f5f6ff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.55;
}

.vm-solution-card {
  margin-top: 28px;
  padding: 26px 18px;
  text-align: center;
}

.vm-solution-card h3,
.vm-note-card h3,
.vm-final-cta h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.45;
  letter-spacing: -0.06em;
}

.vm-solution-card h3 span,
.vm-note-card h3 span {
  color: #ff57cf;
}

.vm-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.vm-solution-grid div {
  padding: 14px 8px;
  border: 1px solid rgba(219, 80, 255, .22);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}

.vm-solution-grid img {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.vm-solution-grid strong {
  display: block;
  font-size: 15px;
}

.vm-solution-grid p {
  margin: 6px 0 0;
  color: var(--vm-muted);
  font-size: 11px;
  line-height: 1.55;
}

.vm-solution-card__bottom {
  margin: 18px 0 0;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #f8e9ff;
  font-weight: 900;
}

.vm-reason-card {
  display: grid;
  grid-template-columns: 72px 1fr 48px;
  align-items: center;
  gap: 12px;
  min-height: 142px;
  padding: 18px 16px;
}

.vm-reason-card__num {
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  background: linear-gradient(180deg, #8b35ff, #ff4fc3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vm-reason-card h3,
.vm-flow-card h3,
.vm-case-card h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
}

.vm-reason-card p,
.vm-flow-card p,
.vm-case-card p {
  margin: 8px 0 0;
  color: var(--vm-muted);
  font-size: 13px;
  line-height: 1.65;
}

.vm-case-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: 14px;
  margin: 0 -20px;
  padding: 0 20px 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.vm-case-card {
  padding: 12px;
  scroll-snap-align: start;
}

.vm-case-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(255,255,255,.06);
}

.vm-case-card h3 {
  margin-top: 14px;
}

.vm-case-card p {
  color: #f1dfff;
  font-weight: 900;
}

.vm-note-card {
  margin: 22px 0;
  padding: 28px 18px;
  text-align: center;
}

.vm-plan-card {
  margin-bottom: 16px;
  padding: 28px 22px;
}

.vm-plan-card--sub {
  background: linear-gradient(135deg, rgba(14, 18, 42, .9), rgba(38, 21, 70, .78));
}

.vm-plan-card__price {
  letter-spacing: -0.02em;
}

.vm-campaign-box {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding: 18px;
  text-align: center;
}

.vm-campaign-box strong {
  color: #ff8bea;
  font-size: 17px;
}

.vm-campaign-box small {
  color: var(--vm-muted);
}

.vm-flow-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.vm-flow-card > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(155, 53, 255, .18);
  border: 1px solid var(--vm-border);
  color: #df9bff;
  font-size: 24px;
  font-weight: 900;
}

.vm-delivery {
  margin: 18px 0 22px;
  padding: 16px;
  border: 1px solid rgba(255, 79, 195, .5);
  border-radius: 18px;
  color: #ff86e3;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 79, 195, .16);
}

.vm-final-cta {
  padding: 30px 18px;
  text-align: center;
}

.vm-final-cta p {
  color: var(--vm-muted);
  font-weight: 700;
}

.vm-final-cta .vm-btn {
  margin-top: 12px;
}

.vm-final-cta small {
  display: block;
  margin-top: 14px;
  color: #c9cde0;
}

.vm-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 60;
  pointer-events: none;
}

.vm-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, #08dd60, var(--vm-line));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(6, 199, 85, .32);
  pointer-events: auto;
}

.vm-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

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

@media (min-width: 760px) {
  .vm-container {
    padding: 0 28px;
  }

  .vm-hero__title {
    font-size: 82px;
  }

  .vm-case-scroll {
    grid-auto-columns: 31%;
  }

  .vm-sticky-cta {
    left: auto;
    width: 320px;
  }
}

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

  .vm-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .vm-btn:hover {
    transform: none;
  }
}
