/* ============================================================
   MoriPay LP — landing.css
   ============================================================ */


/* ============================================================
   0. TOKENS
   ============================================================ */
:root {
  /* Brand gradient */
  --lp-grad-main: linear-gradient(135deg, #00cbd4, #5fdf9c);
  --lp-grad-tri: linear-gradient(135deg, #00cbd4, #5fdf9c, #BEF264);
  --lp-grad-splash: linear-gradient(135deg, rgba(0,203,212,1) 17%, rgba(95,223,156,.94) 63%, rgba(190,242,100,.87) 88%);

  /* BG */
  --lp-bg-light: linear-gradient(180deg, #F4FAFF 0%, #E8F4F8 100%);
  --lp-bg-dark: linear-gradient(180deg,#1a5a7a 0%,#2680a0 50%,#3a9ab8 100%);
  --lp-bg-dark-deep: linear-gradient(180deg,#0a3a52 0%,#1a5a7a 100%);

  /* Colors */
  --lp-cyan: #00cbd4;
  --lp-green: #5fdf9c;
  --lp-lime: #BEF264;
  --lp-navy: #0a3a52;
  --lp-navy-soft: #1a5a7a;

  /* Text */
  --lp-text-dark: #0a3a52;
  --lp-text-dark-65: rgba(10,58,82,.65);
  --lp-text-dark-55: rgba(10,58,82,.55);
  --lp-text-white: #fff;
  --lp-text-white-75: rgba(255,255,255,.75);
  --lp-text-white-65: rgba(255,255,255,.65);

  /* Fonts */
  --lp-font-main: 'Noto Sans JP', sans-serif;

  /* Layout */
  --lp-radius: 16px;
  --lp-radius-card: 14px;
  --lp-radius-card-sm: 12px;
}


/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--lp-font-main);
  font-weight: 400;
  color: var(--lp-text-dark);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}


/* ============================================================
   SECTION 1
   ============================================================ */
.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-eyebrow {
  font-family: var(--lp-font-mono);
  font-size: 11px;
  letter-spacing: .3em;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}

/* Section vertical spacing */
.lp-section {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 1100px) {
  .lp-section { padding: 56px 0; }
}


/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--lp-bg-light);
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .7;
  z-index: 0;
}

.lp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(244,250,255,.2) 0%,
    rgba(232,244,248,.4) 60%,
    rgba(232,244,248,.85) 100%);
}

.lp-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.lp-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(10,58,82,.06);
  border: 1px solid rgba(10,58,82,.1);
  border-radius: 100px;
  font-family: var(--lp-font-mono);
  font-size: 11px;
  letter-spacing: .15em;
  font-weight: 600;
  color: var(--lp-navy);
  margin-bottom: 36px;
}
.lp-hero__pill-dot {
  width: 6px;
  height: 6px;
  background: var(--lp-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,203,212,.6);
  animation: lp-pulse-dot 1.8s ease-in-out infinite;
}
@keyframes lp-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.35); }
}

.lp-hero__title {
  font-family: var(--lp-font-main);
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.02;
  color: var(--lp-navy);
  margin: 0 0 28px;
}
.lp-hero__title em {
  font-family: var(--lp-font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--lp-navy);
}

.lp-hero__sub {
  font-family: var(--lp-font-main);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--lp-text-dark-65);
  margin: 0 auto 44px;
  max-width: 540px;
  letter-spacing: -.005em;
}

.lp-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 36px;
  background: #fff;
  border: 1px solid rgba(10,58,82,.12);
  border-radius: 100px;
  font-family: var(--lp-font-main);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--lp-navy);
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 18px 36px -12px rgba(10,58,82,.15);
}
.lp-hero__cta:hover {
  transform: translateY(-2px);
  background: var(--lp-navy);
  color: #fff;
  border-color: var(--lp-navy);
  box-shadow: 0 24px 48px -12px rgba(10,58,82,.3);
}
.lp-hero__cta-arrow {
  font-size: 13px;
  transition: transform .3s ease;
}
.lp-hero__cta:hover .lp-hero__cta-arrow {
  transform: translateX(4px);
}

.lp-hero__awards {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.lp-hero__award {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lp-font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--lp-text-dark-55);
  font-weight: 600;
  text-transform: uppercase;
}
.lp-hero__award-laurel {
  font-family: var(--lp-font-serif);
  font-size: 18px;
  color: var(--lp-text-dark-55);
  font-style: italic;
}

@media (max-width: 1100px) {
  .lp-hero__title { font-size: 52px; }
  .lp-hero__sub { font-size: 15px; }
  .lp-hero__pill { font-size: 10px; padding: 7px 13px; }
  .lp-hero__cta { padding: 14px 28px; font-size: 13px; }
  .lp-hero__awards { gap: 22px; margin-top: 44px; }
  .lp-hero__award { font-size: 9px; }
}

@media (max-width: 600px) {
  .lp-hero__title { font-size: 40px; }
}


/* ============================================================
   SECTION 2
   ============================================================ */
.lp-cardsplash {
  position: relative;
  height: 500vh;
}

.lp-cardsplash__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg,#cae4f2 0%,#e2f0f7 50%,#f5fbfd 100%);
}

.lp-cardsplash__sticky::before {
  content: '';
  position: absolute;
  top: 20%; left: 10%;
  width: 35%; height: 40%;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  filter: blur(60px);
  z-index: 0;
}
.lp-cardsplash__sticky::after {
  content: '';
  position: absolute;
  top: 50%; right: 15%;
  width: 35%; height: 35%;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  filter: blur(55px);
  z-index: 0;
}

/* Big Text */
.lp-cardsplash__text {
  position: absolute;
  top: 50%; left: 50%;
  font-family: var(--lp-font-main);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
  color: var(--lp-navy);
  text-align: center;
  margin: 0;
  z-index: 5;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}
.lp-cardsplash__text em {
  font-family: var(--lp-font-serif);
  font-style: italic;
  font-weight: 400;
}

.lp-cardsplash__card {
  position: absolute;
  top: 50%; left: 50%;
  width: 180px;
  height: 112px;
  border-radius: 14px;
  box-shadow: 0 14px 28px -8px rgba(10,58,82,.35);
  opacity: 0;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.lp-cardsplash__card--1 {
  background: linear-gradient(135deg, #4FA8D4, #5FBFD9);
  z-index: 1;
}
.lp-cardsplash__card--2 {
  background: linear-gradient(135deg, #5FDF9C, #00CBD4);
  z-index: 2;
}
.lp-cardsplash__card--3 {
  background: linear-gradient(135deg, #00CBD4, #5FDF9C 60%, #BEF264);
  box-shadow: 0 18px 32px -8px rgba(0,203,212,.45);
  z-index: 5;
}
.lp-cardsplash__card--4 {
  background: linear-gradient(135deg, #BEF264, #5FDF9C);
  z-index: 2;
}
.lp-cardsplash__card--5 {
  background: linear-gradient(135deg, #7FD8D2, #4FA8D4);
  z-index: 1;
}

/* 폰 목업 */
.lp-cardsplash__phone {
  position: absolute;
  top: 50%; left: 50%;
  width: 260px;
  height: 540px;
  border-radius: 32px;
  background: #f5f5f7;
  padding: 8px;
  box-shadow: 0 40px 80px -20px rgba(10,58,82,.5), 0 0 0 1px rgba(0,0,0,.1);
  opacity: 0;
  transform: translate(-50%, 130%);
  will-change: transform, opacity;
  z-index: 7;
}
.lp-cardsplash__phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: var(--lp-grad-splash);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.lp-cardsplash__phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 18px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.lp-cardsplash__phone-logo {
  font-family: var(--lp-font-main);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.025em;
  text-shadow: 0 2px 20px rgba(0,80,90,.25);
  margin: 0;
}
.lp-cardsplash__phone-tag {
  font-family: var(--lp-font-main);
  font-size: 13px;
  color: rgba(255,255,255,.95);
  font-weight: 500;
}
.lp-cardsplash__phone-loader {
  width: 42px;
  height: 3px;
  background: rgba(255,255,255,.25);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
  position: relative;
}
.lp-cardsplash__phone-loader::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #fff;
  border-radius: 999px;
  animation: lp-cs-loader 1.5s ease infinite;
}
@keyframes lp-cs-loader {
  0% { left: -50%; }
  100% { left: 100%; }
}

@media (max-width: 1100px) {
  .lp-cardsplash__text { font-size: 30px; }
  .lp-cardsplash__card { width: 140px; height: 88px; }
  .lp-cardsplash__phone { width: 200px; height: 420px; }
  .lp-cardsplash__phone-logo { font-size: 32px; }
  .lp-cardsplash__phone-tag { font-size: 11px; }
}

@media (max-width: 600px) {
  .lp-cardsplash__text { font-size: 24px; }
  .lp-cardsplash__card { width: 120px; height: 75px; }
  .lp-cardsplash__phone { width: 180px; height: 380px; }
  .lp-cardsplash__phone-logo { font-size: 28px; }
}


/* ============================================================
   SECTION 3
   ============================================================ */
.lp-bigtext {
  position: relative;
  background: var(--lp-bg-dark);
  padding: 120px 0;
  overflow: hidden;
}
.lp-bigtext::before {
  content: '';
  position: absolute;
  top: 10%; left: 5%;
  width: 40%; height: 40%;
  border-radius: 50%;
  background: rgba(0,203,212,.4);
  filter: blur(80px);
  z-index: 0;
}
.lp-bigtext::after {
  content: '';
  position: absolute;
  bottom: 5%; right: 5%;
  width: 45%; height: 45%;
  border-radius: 50%;
  background: rgba(95,223,156,.3);
  filter: blur(90px);
  z-index: 0;
}

.lp-bigtext__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.lp-bigtext__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
}
.lp-bigtext__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-bigtext__num {
  font-family: var(--lp-font-mono);
  font-size: 12px;
  letter-spacing: .35em;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  display: block;
}

.lp-bigtext__txt {
  font-family: var(--lp-font-main);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  margin: 0;
}

.lp-bigtext__icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-bigtext__icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1100px) {
  .lp-bigtext { padding: 80px 0; }
  .lp-bigtext__inner { gap: 72px; }
  .lp-bigtext__item { gap: 20px; }
  .lp-bigtext__txt { font-size: 26px; }
  .lp-bigtext__icon { width: 96px; height: 96px; }
  .lp-bigtext__num { font-size: 11px; }
}


/* ============================================================
   SECTION 5 — 購入方法 (벤토)
   ============================================================ */
.lp-buy {
  background: var(--lp-bg-light);
  position: relative;
  overflow: hidden;
}
.lp-buy::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 50%; height: 50%;
  border-radius: 50%;
  background: rgba(0,203,212,.1);
  filter: blur(80px);
  z-index: 0;
}
.lp-buy::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -10%;
  width: 50%; height: 50%;
  border-radius: 50%;
  background: rgba(95,223,156,.08);
  filter: blur(80px);
  z-index: 0;
}

.lp-buy__inner {
  position: relative;
  z-index: 2;
}

.lp-buy__head {
  text-align: center;
  margin-bottom: 36px;
}
.lp-buy__eyebrow {
  color: var(--lp-cyan);
  margin-bottom: 12px;
}
.lp-buy__title {
  font-family: var(--lp-font-main);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.2;
  color: var(--lp-navy);
  margin: 0;
}
.lp-buy__title em {
  font-family: var(--lp-font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--lp-cyan);
}

/* Bento grid */
.lp-buy__bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "primary mini1"
    "primary mini2";
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.lp-buy__primary {
  grid-area: primary;
  position: relative;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--lp-grad-tri) border-box;
  border: 1.5px solid transparent;
  border-radius: var(--lp-radius-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  text-decoration: none;
}
.lp-buy__primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(0,203,212,.2);
}
.lp-buy__primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lp-grad-tri);
}

.lp-buy__p-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-buy__p-type {
  font-family: var(--lp-font-mono);
  font-size: 9px;
  letter-spacing: .2em;
  color: rgba(10,58,82,.6);
  font-weight: 600;
  text-transform: uppercase;
}
.lp-buy__p-badge {
  font-family: var(--lp-font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  background: linear-gradient(135deg, var(--lp-lime), var(--lp-green));
  color: var(--lp-navy);
  padding: 4px 9px;
  border-radius: 100px;
  font-weight: 600;
}
.lp-buy__p-h {
  font-family: var(--lp-font-main);
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-navy);
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.lp-buy__p-tag {
  font-family: var(--lp-font-main);
  font-size: 12px;
  line-height: 1.55;
  color: var(--lp-text-dark-65);
  margin: 0;
  flex: 1;
}
.lp-buy__p-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 100px;
  font-family: var(--lp-font-main);
  font-size: 12px;
  font-weight: 600;
  background: var(--lp-grad-main);
  color: var(--lp-navy);
  cursor: pointer;
  transition: all .2s ease;
  margin-top: auto;
}
.lp-buy__p-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -4px rgba(0,203,212,.4);
}
.lp-buy__p-btn span {
  font-size: 11px;
}

.lp-buy__mini {
  position: relative;
  background: #fff;
  border: 1px solid rgba(10,58,82,.08);
  border-radius: var(--lp-radius-card-sm);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .2s ease;
  cursor: pointer;
  text-decoration: none;
}
.lp-buy__mini:hover {
  transform: translateY(-1px);
  border-color: rgba(0,203,212,.4);
  box-shadow: 0 8px 20px -8px rgba(10,58,82,.1);
}
.lp-buy__mini--1 { grid-area: mini1; }
.lp-buy__mini--2 { grid-area: mini2; }

.lp-buy__mini-info {
  flex: 1;
  min-width: 0;
}
.lp-buy__mini-h {
  font-family: var(--lp-font-main);
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-navy);
  margin: 0;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.lp-buy__mini-tag {
  font-family: var(--lp-font-mono);
  font-size: 8px;
  letter-spacing: .15em;
  color: var(--lp-text-dark-55);
  background: rgba(10,58,82,.05);
  padding: 3px 7px;
  border-radius: 100px;
  font-weight: 600;
  white-space: nowrap;
}
.lp-buy__mini-sub {
  font-family: var(--lp-font-main);
  font-size: 11px;
  line-height: 1.4;
  color: rgba(10,58,82,.6);
  margin: 3px 0 0;
}
.lp-buy__mini-arrow {
  color: rgba(10,58,82,.4);
  font-size: 14px;
  transition: transform .2s ease, color .2s ease;
  flex-shrink: 0;
}
.lp-buy__mini:hover .lp-buy__mini-arrow {
  color: var(--lp-cyan);
  transform: translate(2px, -2px);
}

.lp-buy__airport {
  text-align: center;
  margin-top: 22px;
  font-family: var(--lp-font-main);
  font-size: 12px;
  color: rgba(10,58,82,.6);
}
.lp-buy__airport b {
  color: var(--lp-navy);
  font-weight: 700;
}
.lp-buy__airport::before {
  content: '✈️';
  margin-right: 6px;
}

@media (max-width: 1100px) {
  .lp-buy__bento {
    grid-template-columns: 1.3fr 1fr;
    gap: 8px;
  }
  .lp-buy__primary { padding: 18px 16px; gap: 10px; }
  .lp-buy__p-h { font-size: 16px; }
  .lp-buy__p-tag { font-size: 11px; }
  .lp-buy__p-btn { padding: 10px 14px; font-size: 11px; }
  .lp-buy__mini {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    justify-content: space-between;
  }
  .lp-buy__mini-info { width: 100%; }
  .lp-buy__mini-h { font-size: 13px; }
  .lp-buy__mini-sub { font-size: 10px; line-height: 1.35; }
  .lp-buy__mini-arrow {
    align-self: flex-end;
    margin-top: -4px;
  }
  .lp-buy__title { font-size: 22px; }
}


/* ============================================================
   購入方法
   ============================================================ */
.lp-start {
  background: var(--lp-bg-dark);
  position: relative;
  overflow: hidden;
}
.lp-start::before {
  content: '';
  position: absolute;
  top: 8%; left: 5%;
  width: 45%; height: 45%;
  border-radius: 50%;
  background: rgba(0,203,212,.45);
  filter: blur(80px);
  z-index: 0;
}
.lp-start::after {
  content: '';
  position: absolute;
  bottom: 5%; right: 0;
  width: 50%; height: 50%;
  border-radius: 50%;
  background: rgba(95,223,156,.35);
  filter: blur(90px);
  z-index: 0;
}

.lp-start__light-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.12), transparent);
  z-index: 0;
}

.lp-start__inner {
  position: relative;
  z-index: 2;
}

.lp-start__head {
  text-align: center;
  margin-bottom: 36px;
}
.lp-start__eyebrow {
  color: var(--lp-lime);
  margin-bottom: 12px;
}
.lp-start__title {
  font-family: var(--lp-font-main);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}
.lp-start__title em {
  font-family: var(--lp-font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--lp-lime);
}

.lp-start__tickets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 540px;
  margin: 0 auto;
}

.lp-start__ticket {
  display: grid;
  grid-template-columns: 110px 1fr;
  background: rgba(255,255,255,.96);
  border-radius: var(--lp-radius-card-sm);
  overflow: hidden;
  box-shadow: 0 18px 36px -14px rgba(10,58,82,.28);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.lp-start__ticket:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px -14px rgba(10,58,82,.32);
}

.lp-start__ticket::before,
.lp-start__ticket::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1a5a7a;
  z-index: 5;
  left: 102px;
}
.lp-start__ticket::before { top: -8px; }
.lp-start__ticket::after { bottom: -8px; }

.lp-start__stub {
  background: rgba(10,58,82,.04);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--lp-navy);
}
.lp-start__stub-label {
  font-family: var(--lp-font-mono);
  font-size: 9px;
  letter-spacing: .2em;
  color: rgba(10,58,82,.5);
  font-weight: 600;
  text-transform: uppercase;
}
.lp-start__stub-num {
  font-family: var(--lp-font-mono);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  background: var(--lp-grad-tri);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-start__stub-of {
  font-family: var(--lp-font-mono);
  font-size: 9px;
  color: rgba(10,58,82,.45);
  letter-spacing: .15em;
  margin-top: 4px;
  display: block;
}

.lp-start__body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  position: relative;
  background: #fff;
}
.lp-start__body::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  border-left: 2px dashed rgba(10,58,82,.18);
}

.lp-start__body-route {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lp-font-mono);
  font-size: 9px;
  color: rgba(10,58,82,.5);
  letter-spacing: .15em;
  margin-bottom: 4px;
  font-weight: 600;
}
.lp-start__body-route-arr {
  background: var(--lp-grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.lp-start__body-h {
  font-family: var(--lp-font-main);
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-navy);
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.lp-start__body-desc {
  font-family: var(--lp-font-main);
  font-size: 12px;
  line-height: 1.55;
  color: var(--lp-text-dark-65);
  margin: 4px 0 0;
}

.lp-start__summary {
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  background: rgba(190,242,100,.12);
  border: 1px solid rgba(190,242,100,.3);
  border-radius: 100px;
  font-family: var(--lp-font-mono);
  font-size: 10px;
  color: #fff;
  letter-spacing: .15em;
  font-weight: 600;
  max-width: 540px;
}
.lp-start__summary-dot {
  width: 6px;
  height: 6px;
  background: var(--lp-lime);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(190,242,100,.6);
  animation: lp-blink 1.5s ease-in-out infinite;
}
@keyframes lp-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

@media (max-width: 1100px) {
  .lp-start__title { font-size: 24px; }
  .lp-start__head { margin-bottom: 28px; }
  .lp-start__ticket {
    grid-template-columns: 92px 1fr;
  }
  .lp-start__ticket::before,
  .lp-start__ticket::after {
    left: 84px;
  }
  .lp-start__stub {
    padding: 16px 12px;
  }
  .lp-start__stub-num { font-size: 36px; }
  .lp-start__body {
    padding: 16px 18px;
  }
  .lp-start__body-h { font-size: 16px; }
  .lp-start__body-desc { font-size: 11px; }
  .lp-start__summary { font-size: 9px; padding: 11px 18px; }
}


/* ============================================================
   選ばれる理由
   ============================================================ */
.lp-reason {
  background: var(--lp-bg-dark);
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
}
.lp-reason::before {
  content: '';
  position: absolute;
  top: 8%; left: 5%;
  width: 45%; height: 45%;
  border-radius: 50%;
  background: rgba(0,203,212,.45);
  filter: blur(80px);
  z-index: 0;
}
.lp-reason::after {
  content: '';
  position: absolute;
  bottom: 5%; right: 0;
  width: 50%; height: 50%;
  border-radius: 50%;
  background: rgba(95,223,156,.35);
  filter: blur(90px);
  z-index: 0;
}

.lp-reason__light-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.12), transparent);
  z-index: 0;
}

.lp-reason__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.lp-reason__head {
  text-align: center;
  margin-bottom: 56px;
}
.lp-reason__eyebrow {
  color: var(--lp-lime);
  margin-bottom: 12px;
}
.lp-reason__title {
  font-family: var(--lp-font-main);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}
.lp-reason__title em {
  font-family: var(--lp-font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--lp-lime);
}

.lp-reason__counter {
  position: absolute;
  top: 56px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lp-font-mono);
  font-size: 11px;
  letter-spacing: .25em;
  color: rgba(255,255,255,.7);
  z-index: 4;
}
.lp-reason__counter-now {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.lp-reason__stage {
  position: relative;
  perspective: 1500px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-reason__cards {
  position: relative;
  height: 360px;
  margin: 0 auto;
  max-width: 800px;
}

.lp-reason__card {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 480px;
  height: 320px;
  border-radius: 18px;
  padding: 32px 38px;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 30px 60px -15px rgba(10,58,82,.4);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .6s cubic-bezier(.22, 1, .36, 1);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}
.lp-reason__card-num {
  font-family: var(--lp-font-mono);
  font-size: 13px;
  letter-spacing: .3em;
  color: rgba(190,242,100,.95);
  font-weight: 600;
}
.lp-reason__card-title {
  font-family: var(--lp-font-main);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: 0;
}
.lp-reason__card-desc {
  font-family: var(--lp-font-main);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.8);
  margin: 0;
}

.lp-reason__card[data-pos="0"] {
  transform: translateY(0) translateZ(0) rotate(0deg);
  opacity: 1;
  z-index: 7;
}
.lp-reason__card[data-pos="1"] {
  transform: translate(280px, 30px) translateZ(-100px) rotate(6deg);
  opacity: .65;
  z-index: 6;
}
.lp-reason__card[data-pos="2"] {
  transform: translate(450px, 60px) translateZ(-200px) rotate(11deg);
  opacity: .35;
  z-index: 5;
}
.lp-reason__card[data-pos="-1"] {
  transform: translate(-560px, 0) translateZ(-100px) rotate(-15deg);
  opacity: 0;
  z-index: 4;
}

/* Progress bar */
.lp-reason__autobar-wrap {
  position: relative;
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  overflow: hidden;
  margin: 38px auto 18px;
}
.lp-reason__autobar {
  height: 100%;
  background: linear-gradient(90deg, var(--lp-lime), var(--lp-green));
  width: 0;
  border-radius: 2px;
}

.lp-reason__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}
.lp-reason__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: all .3s ease;
  cursor: pointer;
  padding: 0;
}
.lp-reason__dot:hover {
  background: rgba(255,255,255,.5);
}
.lp-reason__dot.is-active {
  background: var(--lp-lime);
  width: 22px;
  border-radius: 100px;
}

.lp-reason__nav {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.lp-reason__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all .2s ease;
}
.lp-reason__nav-btn:hover {
  background: rgba(255,255,255,.28);
  transform: scale(1.05);
}
.lp-reason__nav-btn:active {
  transform: scale(.95);
}

@media (max-width: 1100px) {
  .lp-reason { min-height: 600px; padding: 56px 0; }
  .lp-reason__head { margin-bottom: 36px; }
  .lp-reason__title { font-size: 24px; }
  .lp-reason__counter {
    top: 36px;
    right: 20px;
    font-size: 10px;
  }
  .lp-reason__counter-now { font-size: 12px; }

  .lp-reason__cards {
    height: 280px;
    max-width: 100%;
  }
  .lp-reason__card {
    width: 240px;
    height: 260px;
    padding: 22px 22px;
    border-radius: 16px;
  }
  .lp-reason__card-num { font-size: 10px; }
  .lp-reason__card-title { font-size: 20px; }
  .lp-reason__card-desc { font-size: 11px; line-height: 1.55; }

  .lp-reason__card[data-pos="1"] {
    transform: translate(100px, 18px) translateZ(-50px) rotate(6deg);
    opacity: .55;
  }
  .lp-reason__card[data-pos="2"] {
    transform: translate(170px, 36px) translateZ(-100px) rotate(12deg);
    opacity: .25;
  }
  .lp-reason__card[data-pos="-1"] {
    transform: translate(-280px, 0) rotate(-15deg);
    opacity: 0;
  }

  .lp-reason__autobar-wrap { width: 120px; margin: 28px auto 14px; }
  .lp-reason__nav-btn { width: 34px; height: 34px; font-size: 12px; }
}