/* ============================================
   Baton LP — Stylesheet (EC sales-deck aligned)
   ============================================ */

:root {
  --ink: #0E0F14;
  --ink-2: #2A2C36;
  --ink-3: #4B5061;
  --ink-4: #7C8093;
  --line: #E8E4EE;
  --line-2: #EFECF3;
  --bg: #FFFFFF;
  --bg-soft: #FAF8FC;
  --bg-tint: #F4F0F9;

  --brand-purple: #B563FF;
  --brand-pink:   #FF4D90;
  --brand-grad:   linear-gradient(135deg, #B563FF 0%, #FF4D90 100%);
  --brand-grad-soft: linear-gradient(135deg, rgba(181,99,255,0.10) 0%, rgba(255,77,144,0.10) 100%);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(20, 10, 40, 0.04), 0 2px 6px rgba(20,10,40,0.04);
  --shadow-md: 0 6px 20px rgba(40, 20, 80, 0.06), 0 2px 6px rgba(40,20,80,0.04);
  --shadow-lg: 0 24px 60px rgba(60, 30, 120, 0.10), 0 8px 20px rgba(40,20,80,0.06);

  --max: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.75;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }

.num, .en {
  font-family: "Inter", sans-serif;
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.01em;
}
.grad-text {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.reveal { opacity: 1; transform: none; }

/* ============================================ Nav ============================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(232, 228, 238, 0.6);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 28px; width: auto; }
.nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--brand-pink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-size: 13.5px; font-weight: 700;
  color: white;
  background: var(--brand-grad);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(181, 99, 255, 0.28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(181,99,255,0.36); }

/* ============================================ Buttons ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-size: 15px; font-weight: 700;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-primary {
  color: white;
  background: var(--brand-grad);
  box-shadow: 0 8px 28px rgba(181, 99, 255, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(181,99,255,0.44); }
.btn-ghost {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink-3); }
.btn-lg { padding: 20px 36px; font-size: 16px; }

/* ============================================ Hero (centered, no image) ============================================ */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 20% 20%, rgba(181,99,255,0.16), transparent 60%),
    radial-gradient(50% 40% at 80% 30%, rgba(255,77,144,0.16), transparent 60%),
    radial-gradient(70% 60% at 50% 100%, rgba(181,99,255,0.10), transparent 70%);
  filter: blur(40px);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,228,238,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,228,238,0.5) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  opacity: 0.55;
}
.hero-inner-c { position: relative; z-index: 1; max-width: 1020px; }

/* Split hero (text left, phone right) */
.hero { padding: 100px 0 110px; }
.hero-split { text-align: left; }
.hero-inner-s {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas:
    "head visual"
    "body visual";
  column-gap: 56px;
  align-items: center;
}
.hero-head { grid-area: head; min-width: 0; align-self: end; }
.hero-body { grid-area: body; min-width: 0; align-self: start; }
.hero-head .hero-title { margin-bottom: 0; }
.hero-body .hero-lead { margin-top: 28px; }
.hero-copy { min-width: 0; }
.hero-split .hero-lead { margin-left: 0; margin-right: 0; max-width: 560px; }
.hero-split .hero-ctas { justify-content: flex-start; }
.hero-visual {
  grid-area: visual;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-phone {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(40, 20, 80, 0.18));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-phone { animation: none; }
}
.hero-foot { position: relative; z-index: 1; text-align: center; margin-top: 64px; }

@media (max-width: 880px) {
  .hero { padding: 8px 0 40px; }
  .hero-split { text-align: center; }
  .hero-inner-s {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "visual"
      "body";
    row-gap: 12px;
  }
  .hero-head { align-self: auto; }
  .hero-body { align-self: auto; }
  .hero-body .hero-lead { margin-top: 0; margin-bottom: 16px; font-size: 13.5px; line-height: 1.75; }
  .hero-split .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-split .hero-ctas { justify-content: center; gap: 10px; }
  .hero-eyebrow { margin-bottom: 12px; }
  .hero-title { font-size: clamp(32px, 9.5vw, 42px); }
  .hero-phone { max-width: 140px; }
  .hero-visual::before { display: none; }
  .hero-ctas .btn-lg { padding: 14px 22px; font-size: 13.5px; }
}
@media (max-width: 880px) and (max-height: 760px) {
  .hero-phone { max-width: 112px; }
  .hero-body .hero-lead { font-size: 13px; margin-bottom: 14px; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--brand-grad);
  display: grid; place-items: center;
  color: white; font-size: 11px; font-weight: 800;
}
.hero-title {
  margin: 0 auto 28px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(40px, 6.2vw, 84px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hero-subtag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-purple);
  margin: -12px 0 28px;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.95;
  color: var(--ink-3);
  max-width: 720px;
  margin: 0 auto 44px;
}
.hero-lead strong { color: var(--ink); font-weight: 700; }
.hero-ctas { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin: 0 auto;
  padding: 24px 12px;
  border-radius: var(--r-xl);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  max-width: 100%;
  flex-wrap: wrap;
}
.hstat { padding: 8px 36px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hstat-num {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-feature-settings: "tnum";
}
.hstat-unit { font-size: 14px; font-weight: 600; color: var(--ink-3); margin-left: 1px; }
.hstat-label { font-size: 12px; color: var(--ink-4); font-weight: 500; }
.hstat-sep { width: 1px; background: var(--line); align-self: stretch; }

.hero-marquee {
  margin: 32px auto 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px;
  font-size: 13px; color: var(--ink-4); font-weight: 500;
}
.hero-marquee span { white-space: nowrap; }

@media (max-width: 760px) {
  .hero-stats { flex-direction: column; gap: 0; padding: 8px 24px; }
  .hstat { padding: 16px 0; flex-direction: row; gap: 12px; }
  .hstat-sep { width: 100%; height: 1px; }
}

/* ============================================ Section base ============================================ */
.section { padding: 120px 0; position: relative; }
.section-soft { background: var(--bg-soft); }
.section-tint { background: linear-gradient(180deg, var(--bg-tint) 0%, rgba(244,240,249,0) 100%); }
.section-dark { background: #0E0F14; color: white; }
.section-dark .eyebrow { color: rgba(255,255,255,0.55); }
.section-dark .section-title { color: white; }
.section-dark .section-sub { color: rgba(255,255,255,0.7); }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head.left { text-align: left; }
.eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: 16px;
}
.section-title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  line-height: 1.36;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================ Problem ============================================ */
.pain-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 80px;
}
.pain-stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.pain-stat-num {
  font-family: "Inter", sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  display: block;
}
.pain-stat-h { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.pain-stat-p { font-size: 14px; color: var(--ink-3); line-height: 1.85; margin: 0; }

.pain-section-head { text-align: center; margin-bottom: 36px; }
.pain-section-eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  color: var(--ink-2);
  padding: 8px 18px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  letter-spacing: 0.04em;
}

.pain-limits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.pain-limit {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pain-limit:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pain-limit-num {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em;
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.pain-limit h4 {
  font-size: 17px; font-weight: 800;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 12px;
}
.pain-limit p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.85;
  margin: 0;
}

.pain-arrow {
  margin: 64px auto 0;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.7;
}
.pain-arrow s { color: var(--ink-4); font-weight: 600; text-decoration-thickness: 2px; }
.pain-arrow .grad-text { font-weight: 900; font-size: 22px; }

/* ============================================ Solution cards ============================================ */
.solve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.solve-card {
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.solve-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.solve-card .num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: "Inter", sans-serif;
  font-size: 56px;
  font-weight: 900;
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  opacity: 0.18;
  line-height: 1;
}
.solve-card .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-grad-soft);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--brand-purple);
}
.solve-card h4 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--ink);
}
.solve-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.85;
}

/* ============================================ Dual incentive ============================================ */
.solution-sample {
  margin: 56px auto 56px;
  max-width: 880px;
  text-align: center;
}
.solution-sample img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.solution-sample figcaption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-4);
  font-weight: 500;
}
.dual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto 24px;
}
.dual-person {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.dual-person.dual-referrer { transform: rotate(-0.4deg); }
.dual-person.dual-buyer { transform: rotate(0.4deg); }
.dual-avatar {
  width: 72px; height: 72px;
  border-radius: 999px;
  background: var(--brand-grad);
  display: grid; place-items: center;
  color: white;
  margin: 0 auto 18px;
  box-shadow: 0 12px 28px rgba(181,99,255,0.32);
}
.dual-role {
  font-family: "Inter", sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: 6px;
}
.dual-h {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
}
.dual-reward {
  background: var(--brand-grad-soft);
  border-radius: var(--r-md);
  padding: 16px 18px;
  text-align: left;
  display: flex; flex-direction: column; gap: 6px;
  border: 1px dashed rgba(181,99,255,0.25);
}
.dual-reward .lbl {
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-purple);
  letter-spacing: 0.06em;
}
.dual-reward .val {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.6;
}

.dual-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px 8px;
  text-align: center;
}
.dual-cv {
  background: var(--ink);
  color: white;
  border-radius: 999px;
  padding: 16px 26px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 12px 30px rgba(14,15,20,0.28);
  position: relative;
}
.dual-cv::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: var(--brand-grad);
  z-index: -1;
}
.dual-cv-lbl {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.65);
}
.dual-cv-h {
  font-size: 14px;
  font-weight: 800;
}
.dual-arrows {
  color: var(--brand-purple);
  display: grid; place-items: center;
}
.dual-note {
  font-size: 12px;
  color: var(--ink-4);
  font-weight: 600;
  line-height: 1.6;
}

.dual-foot {
  max-width: 920px;
  margin: 0 auto 80px;
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 32px;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.8;
}
.dual-foot-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--brand-grad);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  margin-right: 14px;
  vertical-align: middle;
}

.section-mini-head { text-align: center; margin-bottom: 36px; }
.section-mini-head h3 {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

@media (max-width: 760px) {
  .dual { grid-template-columns: 1fr; }
  .dual-center { flex-direction: row; padding: 8px; }
  .dual-arrows { transform: rotate(90deg); }
  .dual-person.dual-referrer, .dual-person.dual-buyer { transform: none; }
}

/* ============================================ Compare table ============================================ */
.cmp-table {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cmp-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.6fr;
  border-bottom: 1px solid var(--line);
}
.cmp-row:last-child { border-bottom: none; }
.cmp-cell {
  padding: 20px 24px;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cmp-cell.label { font-weight: 700; color: var(--ink-2); background: var(--bg-soft); }
.cmp-cell.plain { color: var(--ink-3); }
.cmp-cell.brand {
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(181,99,255,0.04), rgba(255,77,144,0.04));
  position: relative;
}
.cmp-cell.brand::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--brand-grad);
}
.cmp-head .cmp-cell {
  background: var(--ink);
  color: white;
  font-weight: 800;
  font-size: 14px;
  padding: 22px 24px;
}
.cmp-head .cmp-cell.label { background: var(--ink-2); }
.cmp-head .cmp-cell.brand {
  background: var(--brand-grad);
  color: white;
}
.cmp-head .cmp-cell.brand::before { display: none; }
.cmp-x {
  width: 22px; height: 22px; border-radius: 999px;
  background: #F2EEF2; color: #A89BA8;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cmp-o {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--brand-grad); color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ============================================ Flow ============================================ */
.flow-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.flow-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 22px 26px;
  position: relative;
  transition: transform .2s ease;
}
.flow-step:hover { transform: translateY(-3px); }
.flow-step .step-num {
  position: absolute;
  top: -14px; left: 22px;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--brand-grad);
  color: white;
  display: grid; place-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 6px 16px rgba(181,99,255,0.34);
}
.flow-step h4 {
  margin: 8px 0 8px;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.5;
}
.flow-step p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.75;
}
.flow-step .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-tint);
  display: grid; place-items: center;
  margin-bottom: 4px;
  color: var(--brand-purple);
}

.flow-code {
  margin-top: 56px;
  max-width: 760px; margin-left: auto; margin-right: auto;
  background: #0E0F14;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.06);
}
.flow-code-head {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: #15161D;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.flow-code-head .dot { width: 10px; height: 10px; border-radius: 999px; }
.flow-code-head .dot.r { background: #FF5F57; }
.flow-code-head .dot.y { background: #FEBC2E; }
.flow-code-head .dot.g { background: #28C840; }
.flow-code-name { margin-left: auto; font-family: "Inter", monospace; font-size: 12px; color: rgba(255,255,255,0.45); }
.flow-code-body {
  margin: 0;
  padding: 24px 24px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13.5px;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-all;
}
.c-gray { color: rgba(255,255,255,0.4); }
.c-pink { color: #FF77AA; }
.c-purple { color: #C7A1FF; }
.c-green { color: #95EBA0; }
.flow-code-cap {
  margin: 16px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-4);
  font-weight: 500;
}

/* ============================================ Results (dark) ============================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.result-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: background .2s ease;
}
.result-card:hover { background: rgba(255,255,255,0.07); }
.result-big {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
  font-family: "Inter", sans-serif;
}
.result-big .num {
  font-size: 72px;
  font-weight: 900;
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.result-big .unit {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.result-card h4 { margin: 0 0 10px; font-size: 16px; font-weight: 800; color: white; line-height: 1.6; }
.result-card p { margin: 0 0 16px; font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.result-src { display: block; font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.02em; }
.results-foot {
  margin-top: 64px;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  color: white;
  line-height: 1.7;
}
.results-foot .grad-text { font-weight: 900; }

/* ============================================ Pricing ============================================ */
.pricing-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 0;
  max-width: 1100px;
  margin: 0 auto;
  border: 1.5px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    var(--brand-grad) border-box;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.pricing-card-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 36px 44px;
  background: linear-gradient(135deg, rgba(181,99,255,0.06) 0%, rgba(255,77,144,0.06) 100%);
  border-bottom: 1px dashed var(--line);
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-plan-label {
  font-family: "Inter", sans-serif;
  font-size: 12px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--brand-purple);
}
.pricing-plan-name { margin: 4px 0 0; font-size: 24px; font-weight: 800; color: var(--ink); }
.pricing-card-init { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.pricing-card-init-label { font-size: 13px; color: var(--ink-3); font-weight: 600; }
.pricing-card-init-amount {
  font-family: "Inter", sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pricing-meta-pair { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.pricing-meta-label { font-size: 12px; font-weight: 600; color: var(--ink-3); letter-spacing: 0.04em; }
.pricing-meta-value {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  padding: 12px 12px;
}
.pricing-block {
  padding: 36px 36px;
}
.pricing-plus {
  display: grid; place-items: center;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--ink-4);
  padding: 0 8px;
}
.pricing-block-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.pricing-block-amount {
  display: flex; align-items: baseline; gap: 4px;
  font-family: "Inter", sans-serif;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.pricing-block-amount .prefix { font-size: 28px; font-weight: 700; color: var(--ink-2); }
.pricing-block-amount .big {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing-block-amount .per { font-size: 16px; color: var(--ink-3); font-weight: 600; margin-left: 4px; }
.pricing-block-amount .op {
  font-size: 32px;
  font-weight: 300;
  color: var(--ink-3);
  margin: 0 6px;
}
.pricing-block-foot {
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 6px;
  margin-bottom: 22px;
  font-weight: 500;
}
.pricing-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pricing-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}
.pricing-bullets li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--brand-grad-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 6.5l2.5 2.5L10 3' fill='none' stroke='%23B563FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  flex-shrink: 0;
  margin-top: 3px;
}
.pricing-card-foot {
  padding: 22px 44px 36px;
  font-size: 12.5px;
  color: var(--ink-4);
  line-height: 1.85;
}

/* ============================================ Pricing Simulation table ============================================ */
.sim-head { text-align: center; margin: 64px 0 24px; }
.sim-head h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.sim-head h3 span { font-size: 14px; color: var(--ink-4); font-weight: 600; margin-left: 8px; }

.sim-table {
  max-width: 980px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sim-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1.2fr 1.4fr;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.sim-row > div { padding: 18px 20px; font-size: 14.5px; color: var(--ink-2); }
.sim-row > div.num { font-family: "Inter", sans-serif; font-feature-settings: "tnum"; }
.sim-row > div.last { background: linear-gradient(90deg, rgba(181,99,255,0.05), rgba(255,77,144,0.05)); }
.sim-row > div.strong { font-weight: 800; font-size: 17px; }
.sim-row .sim-name { font-weight: 700; color: var(--ink); }
.sim-row:last-child { border-bottom: none; }
.sim-th {
  background: var(--ink);
  color: white;
}
.sim-th > div { font-weight: 700; font-size: 12.5px; letter-spacing: 0.04em; color: white; }
.sim-th > div.last { background: var(--ink); }

.sim-note {
  margin: 24px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--ink-3);
  max-width: 720px;
  font-weight: 600;
}

@media (max-width: 760px) {
  .sim-row {
    display: block;
    padding: 0;
  }
  .sim-th { display: none; }
  .sim-name {
    background: var(--bg-soft);
    padding: 12px 18px !important;
    font-size: 15px !important;
    border-bottom: 1px solid var(--line);
  }
  .sim-row > div.num {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 18px;
    font-size: 14px;
    border-bottom: 1px solid var(--line-2);
  }
  .sim-row > div.num::before {
    content: attr(data-l);
    font-size: 12px;
    color: var(--ink-4);
    font-weight: 600;
    font-family: "Noto Sans JP", sans-serif;
  }
  .sim-row > div.num.last {
    background: linear-gradient(90deg, rgba(181,99,255,0.08), rgba(255,77,144,0.08));
    border-bottom: none;
  }
  .sim-row > div.num.last::before { color: var(--brand-purple); }
  .sim-row > div.strong { font-size: 18px !important; }
}

/* ============================================ Use cases ============================================ */
.use-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.use-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.use-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 32px;
  background: linear-gradient(135deg, rgba(181,99,255,0.04) 0%, rgba(255,77,144,0.04) 100%);
  border-bottom: 1px dashed var(--line);
  gap: 16px;
  flex-wrap: wrap;
}
.use-tag {
  display: inline-block;
  font-size: 15px; font-weight: 800;
  color: var(--ink);
}
.use-tag::before {
  content: "■";
  color: var(--brand-purple);
  margin-right: 8px;
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.use-metrics { display: flex; gap: 28px; }
.use-metrics > div { display: flex; flex-direction: column; gap: 2px; }
.use-metrics .lbl { font-size: 10.5px; color: var(--ink-4); font-weight: 600; letter-spacing: 0.04em; }
.use-metrics .val { font-family: "Inter", sans-serif; font-size: 16px; font-weight: 800; color: var(--ink); }
.use-body { padding: 28px 32px 32px; }
.use-body h5 {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--brand-purple);
  font-weight: 800;
}
.use-body > p {
  margin: 0 0 22px;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.9;
}
.use-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.use-mini {
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.7;
}
.use-mini.brand { background: var(--brand-grad-soft); }
.use-mini .mini-lbl {
  font-size: 11px;
  font-weight: 800;
  color: var(--ink-4);
  letter-spacing: 0.06em;
}
.use-mini.brand .mini-lbl { color: var(--brand-purple); }

/* ============================================ Boost (Influencer) ============================================ */
.boost-wrap {
  background: linear-gradient(135deg, #1A1530 0%, #2A1F4A 100%);
  border-radius: var(--r-xl);
  padding: 60px 56px;
  color: white;
  position: relative;
  overflow: hidden;
}
.boost-wrap::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; height: 140%;
  background: radial-gradient(circle, rgba(255,77,144,0.22), transparent 60%);
  filter: blur(40px);
}
.boost-wrap::after {
  content: "";
  position: absolute;
  bottom: -20%; left: -10%;
  width: 50%; height: 140%;
  background: radial-gradient(circle, rgba(181,99,255,0.18), transparent 60%);
  filter: blur(40px);
}
.boost-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.boost-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  background: rgba(255,255,255,0.12);
  color: white;
  margin-bottom: 20px;
}
.boost-left h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.boost-left > p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.9; margin: 0 0 28px; }
.boost-left > p strong { color: white; font-weight: 800; }

.boost-cmp {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 8px;
}
.boost-cmp-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 13px;
}
.boost-cmp-lbl { font-weight: 800; color: rgba(255,255,255,0.9); }
.boost-cmp-old { color: rgba(255,255,255,0.5); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.3); }
.boost-cmp-new { color: white; font-weight: 700; }

.boost-step-title {
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.boost-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.boost-step:last-child { border-bottom: none; }
.boost-step-num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-grad);
  display: grid; place-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 800; font-size: 13px;
  color: white;
}
.boost-step-h { font-size: 15px; font-weight: 800; color: white; margin-bottom: 4px; }
.boost-step-p { font-size: 13px; color: rgba(255,255,255,0.66); line-height: 1.7; }

.boost-note { margin: 22px 0 0; font-size: 11.5px; color: rgba(255,255,255,0.45); }

/* ============================================ Next Step ============================================ */
.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.next-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
}
.next-step {
  font-family: "Inter", sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.next-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-grad-soft);
  display: grid; place-items: center;
  color: var(--brand-purple);
  margin-bottom: 18px;
}
.next-card h5 { margin: 0 0 10px; font-size: 17px; font-weight: 800; color: var(--ink); }
.next-card p { margin: 0; font-size: 13.5px; color: var(--ink-3); line-height: 1.8; }

/* ============================================ FAQ ============================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: white;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 15.5px; font-weight: 700;
  color: var(--ink);
}
.faq-q .qicon {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  color: var(--brand-purple);
  margin-right: 14px;
}
.faq-q .chev {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--bg-tint);
  display: grid; place-items: center;
  transition: transform .25s ease;
  color: var(--ink-2);
}
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.9;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 26px 22px 60px; }

/* ============================================ CTA ============================================ */
.cta-section {
  background: #0E0F14;
  color: white;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(181,99,255,0.18), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255,77,144,0.18), transparent 50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  color: white;
}
.cta-inner p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.85; max-width: 620px; margin: 0 auto 36px; }
.cta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: white;
}
.cta-section .btn-ghost:hover { background: rgba(255,255,255,0.14); }
.cta-meta { margin-top: 36px; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ============================================ Mobile inline CTA ============================================ */
.mobile-cta { display: none; }
@media (max-width: 600px) {
  .mobile-cta { display: block; padding: 40px 0; }
  .mobile-cta-card {
    background: linear-gradient(135deg, rgba(181,99,255,0.08) 0%, rgba(255,77,144,0.08) 100%);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px 22px;
    text-align: center;
  }
  .mobile-cta-lead {
    margin: 0 0 18px;
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
  }
  .mobile-cta-btns { display: flex; flex-direction: column; gap: 10px; }
  .mobile-cta-btns .btn { width: 100%; justify-content: center; }
}

/* ============================================ Footer ============================================ */
.footer { padding: 56px 0 40px; background: #0A0B10; color: rgba(255,255,255,0.65); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-logo {
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  display: inline-flex;
}
.footer-logo img { height: 22px; opacity: 1; filter: none; display: block; }
.footer-links { display: flex; gap: 24px; }
.footer-copy { font-family: "Inter", sans-serif; opacity: .6; font-size: 12px; }

/* ============================================ Responsive ============================================ */
@media (max-width: 1000px) {
  .pain-limits, .solve-grid, .results-grid, .next-grid, .use-metrics { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .flow-wrap { grid-template-columns: 1fr 1fr; }
  .boost-grid { grid-template-columns: 1fr; gap: 36px; }
  .pricing-card-grid { grid-template-columns: 1fr; }
  .pricing-plus { padding: 0; }
  .nav-links { display: none; }
  .section { padding: 80px 0; }
  .hero { padding: 80px 0 100px; }
  .boost-wrap { padding: 40px 28px; }
  .cmp-row { grid-template-columns: 1fr; }
  .cmp-cell { padding: 14px 20px; }
  .cmp-cell.label { padding-top: 16px; padding-bottom: 6px; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; }
  .cmp-head { display: none; }
  .pricing-card-head { padding: 28px 28px; }
  .pricing-block { padding: 24px 20px; }
  .pricing-card-foot { padding: 18px 28px 28px; }
  .use-head { padding: 18px 24px; }
  .use-body { padding: 22px 24px 26px; }
  .use-row { grid-template-columns: 1fr; }
  .pain-stats { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pain-limits, .solve-grid, .results-grid, .next-grid, .flow-wrap { grid-template-columns: 1fr; }
  .use-metrics { gap: 18px; }
  .hero-title { font-size: 36px; }

  /* ---- Compact mobile pass ---- */
  .section { padding: 52px 0; }
  .container { padding: 0 20px; }

  /* Section headings */
  .section-head { margin-bottom: 36px; }
  .eyebrow { font-size: 11px; margin-bottom: 10px; }
  .section-title { font-size: 24px; line-height: 1.4; margin-bottom: 12px; }
  .section-sub { font-size: 13.5px; line-height: 1.8; }
  .section-mini-head { margin-bottom: 24px; }
  .section-mini-head h3 { font-size: 18px; }

  /* Cards: tighter padding + body text */
  .solve-card { padding: 26px 22px; }
  .solve-card h4 { font-size: 17px; }
  .solve-card p { font-size: 13.5px; line-height: 1.75; }
  .solve-card .num { font-size: 44px; top: 20px; right: 22px; }
  .solve-grid, .results-grid, .next-grid, .flow-wrap, .pain-limits { gap: 12px; }

  /* Dual incentive */
  .dual { gap: 14px; margin-bottom: 16px; }
  .dual-person { padding: 24px 20px; }
  .dual-avatar { width: 56px; height: 56px; margin-bottom: 12px; }
  .dual-h { font-size: 18px; margin-bottom: 14px; }
  .dual-reward .val { font-size: 12.5px; }
  .dual-foot { padding: 18px 22px; font-size: 13px; margin-bottom: 48px; }

  /* Flow */
  .flow-step { padding: 24px 20px 22px; }
  .flow-step h4 { font-size: 15px; }
  .flow-step p { font-size: 12.5px; }
  .flow-code { margin-top: 36px; }
  .flow-code-body { padding: 18px 16px; font-size: 12px; }
  .solution-sample { margin: 36px auto; }

  /* Pain */
  .pain-stats { gap: 12px; margin-bottom: 48px; }
  .pain-stat { padding: 28px 24px; }
  .pain-stat-num { font-size: 52px; margin-bottom: 10px; }
  .pain-stat-h { font-size: 16px; }
  .pain-stat-p { font-size: 13px; }
  .pain-limit { padding: 24px 22px; }
  .pain-limit h4 { font-size: 15.5px; }
  .pain-limit p { font-size: 13px; }
  .pain-arrow { font-size: 16px; margin-top: 40px; }
  .pain-arrow .grad-text { font-size: 19px; }

  /* Compare table */
  .cmp-cell { font-size: 13px; padding: 12px 18px; }

  /* Results (dark) */
  .result-big .num { font-size: 56px; }
  .result-big { margin-bottom: 16px; }
  .result-card { padding: 26px 24px; }
  .result-card h4 { font-size: 15px; }
  .result-card p { font-size: 13px; }
  .results-foot { font-size: 16px; margin-top: 40px; }

  /* Pricing */
  .pricing-card-head { padding: 24px 22px; }
  .pricing-plan-name { font-size: 20px; }
  .pricing-meta-value { font-size: 26px; }
  .pricing-block-amount .big { font-size: 44px; }
  .pricing-bullets li { font-size: 13px; }
  .sim-head { margin: 44px 0 20px; }
  .sim-head h3 { font-size: 18px; }
  .sim-head h3 span { display: block; font-size: 12px; margin-left: 0; margin-top: 4px; }
  .sim-note { font-size: 13px; }

  /* Use cases */
  .use-tag { font-size: 14px; }
  .use-metrics .val { font-size: 14px; }
  .use-body > p { font-size: 13.5px; line-height: 1.8; margin-bottom: 18px; }
  .use-mini { font-size: 12.5px; padding: 12px 16px; }

  /* Boost */
  .boost-wrap { padding: 32px 22px; }
  .boost-left h3 { font-size: 24px; line-height: 1.45; }
  .boost-left > p { font-size: 13.5px; }
  .boost-cmp-row { grid-template-columns: 72px 1fr 1fr; font-size: 11.5px; padding: 10px 12px; }
  .boost-step-h { font-size: 14px; }
  .boost-step-p { font-size: 12.5px; }

  /* Next step */
  .next-card { padding: 26px 22px; }
  .next-card h5 { font-size: 16px; }
  .next-card p { font-size: 13px; }

  /* FAQ */
  .faq-q { padding: 18px 20px; font-size: 14px; }
  .faq-q .qicon { margin-right: 10px; }
  .faq-a { font-size: 13.5px; }
  .faq-a-inner { padding: 0 20px 18px 46px; }

  /* CTA */
  .cta-section { padding: 64px 0; }
  .cta-inner h2 { font-size: 26px; }
  .cta-inner p { font-size: 14px; }
  .cta-ctas { flex-direction: column; gap: 10px; }
  .cta-ctas .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 40px 0 32px; }
  .footer-inner { flex-direction: column; gap: 18px; text-align: center; }
  .footer-links { gap: 18px; flex-wrap: wrap; justify-content: center; }

  /* Hide pricing simulation block on mobile */
  .sim-block { display: none; }

  /* Buttons */
  .btn-lg { padding: 16px 26px; font-size: 14px; }
}

/* ============================================ Document form modal ============================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(14, 15, 20, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-overlay.is-open { display: flex; }
.modal {
  position: relative;
  width: 100%; max-width: 520px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--bg);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 40px 40px 36px;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--ink-3);
  background: var(--bg-soft);
  transition: background .15s ease, color .15s ease;
}
.modal-close:hover { background: var(--line-2); color: var(--ink); }
.modal-eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: 10px;
}
.modal-title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 22px; font-weight: 900; line-height: 1.4;
  color: var(--ink);
  margin: 0 0 8px;
}
.modal-lead {
  font-size: 14px; color: var(--ink-3); line-height: 1.8;
  margin: 0 0 24px;
}
.modal-thanks { display: none; text-align: center; padding: 12px 0; }
.modal.is-sent .modal-form-area { display: none; }
.modal.is-sent .modal-thanks { display: block; }
.modal-thanks .check {
  width: 56px; height: 56px; margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--brand-grad);
  display: grid; place-items: center; color: white;
  box-shadow: 0 12px 28px rgba(181,99,255,0.32);
}
.modal-thanks h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin: 0 0 10px; }
.modal-thanks p { font-size: 14px; color: var(--ink-3); line-height: 1.8; margin: 0 0 20px; }

/* Contact Form 7 fields inside the modal */
.modal-form-area .cf7-field { margin-bottom: 16px; }
.modal-form-area label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; }
.modal-form-area .req { color: var(--brand-pink); font-size: 11px; font-weight: 700; margin-left: 6px; }
.modal-form-area input[type="text"],
.modal-form-area input[type="email"],
.modal-form-area input[type="tel"] {
  width: 100%; padding: 12px 14px;
  font-size: 14px; font-family: inherit; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg-soft);
  transition: border-color .15s ease, background .15s ease;
}
.modal-form-area input:focus { outline: none; border-color: var(--brand-purple); background: #fff; }
.modal-form-area .cf7-consent { font-size: 12.5px; color: var(--ink-3); line-height: 1.7; margin: 18px 0 22px; }
.modal-form-area .cf7-consent a { color: var(--brand-purple); text-decoration: underline; }
.modal-form-area .wpcf7-submit { width: 100%; justify-content: center; }
.modal-form-area .wpcf7-spinner { display: block; margin: 12px auto 0; }
.modal-form-area .wpcf7-response-output {
  font-size: 12.5px; line-height: 1.6;
  border-radius: var(--r-sm);
  margin: 14px 0 0 !important; padding: 10px 12px !important;
}
.modal-form-area .wpcf7-not-valid-tip { font-size: 12px; color: var(--brand-pink); margin-top: 4px; }

/* Consent checkbox (CF7 acceptance) — force the checkbox to render visibly,
   overriding theme/Jetpack resets that hide it (appearance:none, opacity:0, off-screen, etc.) */
.modal-form-area .cf7-consent .wpcf7-list-item { margin: 0 !important; display: block !important; }
.modal-form-area .cf7-consent label {
  display: flex !important; align-items: flex-start; gap: 10px;
  margin: 0; font-size: 12.5px; font-weight: 400; color: var(--ink-3);
  line-height: 1.6; cursor: pointer;
}
.modal-form-area .cf7-consent input[type="checkbox"] {
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  appearance: checkbox !important;
  width: 18px !important; height: 18px !important; min-width: 18px !important;
  margin: 1px 0 0 !important; padding: 0 !important;
  flex: 0 0 auto !important;
  display: inline-block !important;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  clip: auto !important; clip-path: none !important;
  pointer-events: auto !important;
  accent-color: var(--brand-purple);
  border: 1px solid var(--ink-4);
  background: #fff;
  cursor: pointer;
}
.modal-form-area .cf7-consent .wpcf7-list-item-label { flex: 1; }
.modal-form-area .cf7-consent a { color: var(--brand-purple); text-decoration: underline; }
@media (max-width: 560px) {
  .modal { padding: 32px 22px 26px; border-radius: var(--r-lg); }
  .modal-title { font-size: 19px; }
}

/* ============================================ Hero campaign note ============================================ */
.hero-campaign {
  position: relative;
  display: inline-block;
  max-width: 600px;
  margin: 0 0 28px;
  padding: 13px 24px;
  border-radius: 14px;
  background: var(--bg);
  color: var(--ink-2);
  border: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 10px 28px rgba(40, 20, 80, 0.10);
  text-align: left;
}
.hero-campaign strong {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.hero-campaign::after {
  content: "";
  position: absolute;
  left: 44px;
  bottom: -9px;
  width: 16px;
  height: 16px;
  background: var(--bg);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}
.hero-campaign--center { text-align: center; }
.hero-campaign--center::after { left: 50%; margin-left: -8px; }

/* ============================================ Use-case video ============================================ */
.usecase-video {
  margin: 28px auto 0;
  max-width: 880px;
}
.usecase-video-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: #000;
}
.usecase-video-frame video,
.usecase-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}
.usecase-points {
  list-style: none;
  width: fit-content;
  max-width: 880px;
  margin: 22px auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.usecase-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.6;
}
.usecase-points li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 1px;
}

/* ============================================ Pricing CTAs ============================================ */
.price-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
@media (max-width: 560px) {
  .price-ctas { flex-direction: column; }
  .price-ctas .btn { width: 100%; justify-content: center; }
}

/* ============================================ Case studies ============================================ */
.case-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 18px;
  margin: 0 -2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.case-grid::-webkit-scrollbar { height: 8px; }
.case-grid::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.case-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.case-tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.case-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.case-metric .num {
  font-family: "Inter", sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.case-metric-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-4);
  line-height: 1.4;
}
.case-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.5;
}
.case-card p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.85;
  flex: 1;
}
.case-card .case-quote {
  margin: 0;
  padding: 14px 16px;
  background: var(--brand-grad-soft);
  border-radius: var(--r-md);
  border-left: 3px solid var(--brand-purple);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.7;
}
.case-more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-purple);
  transition: gap .15s ease;
}
.case-more:hover { gap: 10px; }
.case-cta { text-align: center; margin-top: 36px; }

/* ============================================ Case study DETAIL page ============================================ */
.cs-hero {
  padding: 84px 0 56px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-tint) 0%, rgba(244, 240, 249, 0) 100%);
}
.cs-hero-title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--ink);
  margin: 12px 0 16px;
}
.cs-hero-lead { max-width: 640px; margin: 0 auto; font-size: 15px; color: var(--ink-3); line-height: 1.9; }

.cs-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.cs-case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: 44px 44px 40px;
  scroll-margin-top: 90px;
}
.cs-case-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.cs-case-num {
  font-family: "Inter", sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 0.1em;
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.cs-tag {
  font-size: 12px; font-weight: 700; color: var(--ink-2);
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px;
}
.cs-title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 900; line-height: 1.5; color: var(--ink);
  margin: 0 0 26px;
}
.cs-metrics { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.cs-metric {
  flex: 1 1 150px;
  background: var(--brand-grad-soft);
  border: 1px solid rgba(181, 99, 255, 0.18);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.cs-metric .n {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 32px; font-weight: 900; line-height: 1; letter-spacing: -0.02em;
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.cs-metric .l { display: block; margin-top: 8px; font-size: 12px; font-weight: 600; color: var(--ink-3); line-height: 1.5; }
.cs-flow { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.cs-step { display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: start; }
.cs-step-label {
  font-size: 12px; font-weight: 800; color: var(--ink-2);
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 0; text-align: center;
}
.cs-step-label.is-result { background: var(--brand-grad); color: #fff; border-color: transparent; }
.cs-step p { margin: 0; font-size: 14.5px; color: var(--ink-3); line-height: 1.95; }
.cs-quote {
  position: relative;
  background: linear-gradient(135deg, rgba(181, 99, 255, 0.08), rgba(255, 77, 144, 0.08));
  border-radius: var(--r-lg);
  padding: 24px 28px 24px 58px;
  font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.8;
}
.cs-quote::before {
  content: "\201C";
  position: absolute; left: 20px; top: 18px;
  font-size: 46px; line-height: 1; color: var(--brand-purple);
  font-family: Georgia, serif;
}
@media (max-width: 640px) {
  .cs-case { padding: 28px 22px 26px; }
  .cs-step { grid-template-columns: 1fr; gap: 8px; }
  .cs-step-label { justify-self: start; padding: 5px 16px; }
}
@media (max-width: 760px) {
  .case-card { flex-basis: 82%; }
}

/* ============================================
   WordPress 設置用オーバーライド（固定ページ page-id-424）
   - ローカルの index.html 単体では効きません
     （WordPressのテーマclass や body.page-id-424 が存在しないため、セレクタが当たらないだけで無害）。
   - WordPress の「CSS欄」に貼る内容と一致させ、ここで一元管理します。
   ============================================ */

/* テーマのヘッダー/フッター/パンくず/ページ見出しを隠す（LP自身の footer.footer は残す） */
body.page-id-424 .l-header,
body.page-id-424 .l-footer,
body.page-id-424 .l-breadcrumb,
body.page-id-424 .p-privacy__title,
body.page-id-424 .c-borderTitle {
  display: none !important;
}

/* body 余白リセット */
body.page-id-424 {
  margin: 0 !important;
  padding: 0 !important;
}

/* テーマのコンテンツ枠を全幅化＋上下余白・最小高さを詰める（※LP自身の .container は対象にしない） */
body.page-id-424 .p-page,
body.page-id-424 .l-page,
body.page-id-424 main,
body.page-id-424 .p-page__inner,
body.page-id-424 .l-inner {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}

/* コードボックス：テーマの白背景・余分な padding / min-height を打ち消し、本来の濃色＆コンパクトに戻す */
body.page-id-424 .flow-code-body {
  margin: 0 !important;
  padding: 22px 24px !important;
  min-height: 0 !important;
  line-height: 1.7 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.92) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
body.page-id-424 .flow-code-body code {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: inherit !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* ロゴが伸びる場合の補正 */
body.page-id-424 .nav-logo img,
body.page-id-424 .footer-logo img {
  width: auto !important;
  height: 28px !important;
  max-width: none !important;
  object-fit: contain !important;
}

/* 見出しがテーマに縮められる対策：LP本来のサイズを再指定（モバイル時の縮小も維持） */
body.page-id-424 .hero-title {
  font-size: clamp(40px, 6.2vw, 84px) !important;
  line-height: 1.16 !important;
}
@media (max-width: 880px) {
  body.page-id-424 .hero-title { font-size: clamp(32px, 9.5vw, 42px) !important; }
}
body.page-id-424 .section-title {
  font-size: clamp(28px, 3.6vw, 44px) !important;
  line-height: 1.36 !important;
}

/* ボックス下キャプションを、上の図キャプション（グレー文字）と完全一致させる */
body.page-id-424 .solution-sample figcaption,
body.page-id-424 .flow-code-cap {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--ink-4) !important;
  line-height: 1.75 !important;
  letter-spacing: normal !important;
  text-align: center !important;
  margin: 16px auto 0 !important;
}