:root {
  --bg: #ffffff;
  --bg-2: #fafaf8;
  --bg-3: #f4f4f2;
  --ink: #1a1a1a;
  --ink-dim: #555555;
  --ink-mute: #9a9a9a;
  --line: #ececec;
  --pink: #ff6fa3;
  --pink-2: #ffa0bf;
  --pink-deep: #d94d7e;
  --accent: #ffb25c;
  --accent-2: #ffe3a8;
  --lime: #a3d9a5;
  /* purple palette */
  --purple: #8A2BE2;
  --purple-2: #a855f7;
  --purple-deep: #6d28d9;
  --purple-light: rgba(138, 43, 226, 0.08);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.06);
  --font-display: 'DM Sans', 'Zen Kaku Gothic New', 'Hiragino Sans', sans-serif;
  --font-ja: 'DM Sans', 'Zen Kaku Gothic New', 'Hiragino Sans', sans-serif;
  --font-serif-en: 'DM Sans', 'Instrument Serif', sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ja);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

/* very subtle dot pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.035) 1px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: 0.8;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
@media (max-width: 760px) {
  .container {
    padding: 0 20px;
  }
}

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo em {
  font-style: normal;
  color: var(--pink);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: var(--ink-dim);
  font-weight: 500;
}
.nav-links a {
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--pink);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 111, 163, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 111, 163, 0.45);
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: var(--bg-2);
  border-color: var(--pink-2);
}
.btn-lg {
  padding: 16px 30px;
  font-size: 15px;
}
.btn svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
}

/* ============== HERO ============== */
.hero {
  padding: 66px 0 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) {
  .hero {
    padding: 40px 0 32px;
  }
  .hero-sub {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.85;
  }
  .hero-cta {
    margin-top: 28px;
  }
}
.hero::before {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: -20%;
  left: -10%;
  width: 70%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle, rgba(255, 160, 191, 0.5), rgba(255, 160, 191, 0) 60%);
  filter: blur(60px);
}
.hero::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  bottom: -30%;
  right: -10%;
  width: 60%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle, rgba(255, 178, 92, 0.35), rgba(255, 178, 92, 0) 60%);
  filter: blur(60px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ja);
  font-weight: 700;
  color: var(--pink-deep);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border: 1px solid rgba(255, 111, 163, 0.35);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(255, 111, 163, 0.12);
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 111, 163, 0.22);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 8px rgba(255, 111, 163, 0);
  }
}

.h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(46px, 7.8vw, 110px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 24px 0 0;
  color: var(--ink);
}
.h1 .line {
  display: block;
  padding: 0.04em 0;
}
.h1 .pink {
  color: var(--pink);
  position: relative;
}
.h1 .pink::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 6%;
  height: 18%;
  z-index: -1;
  background: var(--accent-2);
  border-radius: 6px;
  transform: rotate(-1deg);
}
.h1 .marker {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.h1 .marker::before {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 8%;
  height: 28%;
  z-index: -1;
  background: var(--accent-2);
  transform: skew(-6deg) rotate(-1deg);
}
.h1 .serif {
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}

.hero-sub {
  margin-top: 32px;
  max-width: 540px;
  font-size: 16px;
  line-height: 2;
  color: var(--ink-dim);
}
.hero-sub b {
  color: var(--ink);
  font-weight: 700;
}
.hero-sub .hl {
  background: linear-gradient(transparent 65%, var(--accent-2) 65%);
  color: var(--ink);
  font-weight: 700;
  padding: 0 2px;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta .sub {
  font-size: 12px;
  color: var(--ink-mute);
  margin-left: 6px;
}

/* floating tickets */
.hero-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .hero-row {
    grid-template-columns: 1fr;
  }
}

.card-stack {
  position: relative;
  min-height: 520px;
}
@media (max-width: 980px) {
  .card-stack {
    min-height: 440px;
    margin-top: 48px;
  }
}

.creator-card {
  position: absolute;
  width: 260px;
  aspect-ratio: 3/4;
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(217, 140, 120, 0.22);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.creator-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}
.creator-card .meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
}
.creator-card .name {
  font-size: 13px;
  font-weight: 700;
}
.creator-card .earn {
  font-family: var(--font-display);
  color: var(--pink-deep);
  font-size: 14px;
  font-weight: 700;
}
.creator-card .tag-top {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.creator-card:hover {
  transform: translateY(-6px) scale(1.02) rotate(0deg) !important;
}

.cc-1 {
  top: 20px;
  left: 20px;
  transform: rotate(-6deg);
}
.cc-2 {
  top: 40px;
  right: 10px;
  transform: rotate(4deg);
}
.cc-3 {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
}

.sparkle {
  position: absolute;
  color: var(--accent);
  font-family: var(--font-display);
  pointer-events: none;
}
.sparkle.s1 {
  top: 5%;
  left: 2%;
  font-size: 34px;
  color: var(--pink);
  transform: rotate(-12deg);
  animation: twinkle 3s ease-in-out infinite;
}
.sparkle.s2 {
  top: 30%;
  right: -4%;
  font-size: 48px;
  color: var(--accent);
  animation: twinkle 3s ease-in-out 0.6s infinite;
}
.sparkle.s3 {
  bottom: 12%;
  left: -4%;
  font-size: 40px;
  color: var(--pink-2);
  animation: twinkle 3s ease-in-out 1.2s infinite;
}
@keyframes twinkle {
  0%,
  100% {
    transform: scale(1) rotate(0);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.2) rotate(12deg);
    opacity: 1;
  }
}

/* hero stats strip */
.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-stats .stat {
  padding: 22px 0;
  border-right: 1px solid var(--line);
}
.hero-stats .stat:last-child {
  border-right: none;
}
.hero-stats .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stats .num .unit {
  font-size: 0.55em;
  color: var(--ink-dim);
  margin-left: 2px;
  letter-spacing: 0;
}
.hero-stats .label {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-serif-en);
  font-style: italic;
}
@media (max-width: 760px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats .stat {
    padding: 18px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .hero-stats .stat:nth-child(2) {
    border-right: none;
  }
  .hero-stats .stat:nth-child(3),
  .hero-stats .stat:nth-child(4) {
    border-bottom: none;
  }
}

/* ============== SECTION SHARED ============== */
section {
  position: relative;
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) {
  section {
    padding: 72px 0;
  }
}
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ja);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--pink-deep);
  font-size: 12px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(217, 150, 120, 0.1);
}
.sec-label::before {
  content: '♡';
  color: var(--pink);
  font-size: 11px;
}
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
  flex-wrap: wrap;
}
.sec-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  margin: 18px 0 0;
  max-width: 820px;
  color: var(--ink);
}
.sec-title em {
  font-style: normal;
  color: var(--pink);
  position: relative;
}
.sec-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 35%;
  background: var(--accent-2);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-0.8deg);
}
.sec-desc {
  max-width: 440px;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 2;
}

/* ============== FEATURES ============== */
.features {
  padding-top: 90px;
  background: var(--bg-2);
}
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
}
.feat {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  box-shadow: var(--shadow-soft);
}
.feat:hover {
  transform: translateY(-4px);
  border-color: var(--pink-2);
  box-shadow: 0 16px 36px rgba(255, 111, 163, 0.15);
}
.feat-number {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink-mute);
  position: absolute;
  top: 22px;
  right: 24px;
}
.feat h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin: 20px 0 10px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.feat p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.95;
  margin: 0;
}
.feat .ic-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 111, 163, 0.18), rgba(255, 178, 92, 0.18));
  border: 1px solid rgba(255, 111, 163, 0.25);
  display: grid;
  place-items: center;
}
.feat .ic-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--pink);
}

.feat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.feat-rate {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--pink);
}
.feat-rate sup {
  font-size: 18px;
  color: var(--pink);
  margin-left: 2px;
  vertical-align: top;
}
.feat-rate-label {
  font-family: var(--font-body, inherit);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-left: 6px;
}
@media (max-width: 520px) {
  .feat-rate {
    font-size: 36px;
  }
}

.feat.big {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 178, 92, 0.18), transparent 55%),
    linear-gradient(160deg, #ffffff 0%, #fff6ee 100%);
  border-color: var(--line);
  padding: 40px 32px;
}
.feat.big h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-top: 24px;
}
.feat-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-dim);
}
.feat-list li {
  padding-left: 18px;
  position: relative;
}
.feat-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background: var(--pink);
}

/* HERO VISUAL PANEL */
.hero-visual {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 980px) {
  .hero-visual {
    display: none;
  }
}

/* HERO MASCOT */
.hv-mascot {
  position: relative;
  width: min(420px, 88%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: mascot-float 6s ease-in-out infinite;
}
.hv-mascot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hv-mascot-glow {
  display: none;
}
@keyframes mascot-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 980px) {
  .hv-mascot {
    width: min(320px, 70%);
    margin: 0 auto;
  }
}
.hv-panel {
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  padding: 36px 34px;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.hv-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  font-weight: 700;
}
.hv-big {
  font-family: var(--font-display);
  font-size: 110px;
  line-height: 0.95;
  margin-top: 8px;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.hv-big sup {
  font-size: 38px;
  color: var(--pink);
  vertical-align: top;
  margin-left: 4px;
}
.hv-sub {
  font-size: 14px;
  color: var(--ink-dim);
  margin-top: 4px;
}
.hv-divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}
.hv-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 13px;
  color: var(--ink-dim);
}
.hv-row b {
  color: var(--ink);
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 700;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.feat.accent {
  background: var(--accent-2);
  color: var(--ink);
}
.feat.accent h3,
.feat.accent p {
  color: var(--ink);
}
.feat.accent .feat-number {
  color: rgba(0, 0, 0, 0.4);
}
.feat.accent .ic-wrap {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}
.feat.accent .ic-wrap svg {
  color: var(--ink);
}

/* ============== REVENUE ============== */
.revenue {
  position: relative;
}
.rev-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .rev-wrap {
    grid-template-columns: 1fr;
  }
}

.rev-card {
  position: relative;
  padding: 40px;
  border-radius: 28px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 420px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.rev-card.sub {
  background: radial-gradient(circle at 100% 0%, rgba(255, 160, 191, 0.35), transparent 60%), #fff;
  border-color: rgba(255, 111, 163, 0.35);
}
.rev-card.one {
  background: radial-gradient(circle at 0% 100%, rgba(255, 178, 92, 0.3), transparent 55%), #fff;
  border-color: rgba(255, 178, 92, 0.35);
}
.rev-type {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink-dim);
  font-weight: 700;
}
.rev-type .ja {
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
}

.rev-rate {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(100px, 14vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.04em;
}
.rev-card.sub .rev-rate {
  color: var(--pink);
}
.rev-card.one .rev-rate {
  color: var(--accent);
}
.rev-rate sup {
  font-size: 0.35em;
  vertical-align: top;
  margin-left: 6px;
  font-weight: 500;
}
.rev-desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.95;
}
.rev-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rev-list li {
  font-size: 13px;
  color: var(--ink-dim);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.rev-list li::before {
  content: '●';
  color: var(--pink);
  font-size: 8px;
  margin-top: 6px;
}
.rev-card.one .rev-list li::before {
  color: var(--accent);
}

.rev-compare {
  margin-top: 40px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.fee-head {
  text-align: center;
  margin-bottom: 28px;
}
.fee-head h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.fee-head h4 em {
  font-style: normal;
  color: var(--pink);
  position: relative;
}
.fee-head h4 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 35%;
  background: var(--accent-2);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-0.8deg);
}
.fee-head p {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.95;
}
.fee-head p b {
  color: var(--ink);
  font-weight: 700;
}

.fee-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.fee-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  color: var(--ink);
  min-width: 520px;
}
.fee-table thead th {
  padding: 14px 16px;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink-dim);
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  text-align: center;
  line-height: 1.4;
}
.fee-table thead th:first-child {
  width: 32%;
  text-align: left;
}
.fee-table thead th small {
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 600;
}
.fee-table tbody td {
  padding: 18px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim);
  font-weight: 600;
}
.fee-table tbody td:first-child {
  text-align: left;
  color: var(--ink);
}
.fee-table tbody tr:last-child td {
  border-bottom: none;
}
.fee-table td.na {
  color: var(--ink-mute);
  font-weight: 500;
  font-size: 13px;
}

.fee-table tr.us td {
  background: linear-gradient(90deg, rgba(255, 111, 163, 0.12), rgba(255, 178, 92, 0.12));
  border-top: 1px solid transparent;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.fee-table tr.us td.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(90deg, rgba(255, 111, 163, 0.18), rgba(255, 178, 92, 0.1));
  color: var(--pink-deep);
}
.fee-table tr.us td.hi {
  font-family: var(--font-display);
  font-weight: 800;
}
.fee-table tr.us td.hi .num {
  font-size: 26px;
  color: var(--pink-deep);
}
.fee-table tr.us td.hi .u {
  font-size: 14px;
  margin-left: 2px;
  color: var(--pink-deep);
  font-weight: 700;
}
.fee-table tr.us td:first-child {
  border-left: 2px solid var(--pink);
}
.fee-table tr.us td:last-child {
  border-right: 2px solid var(--accent);
}

.fee-note {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 14px;
  text-align: center;
}

@media (max-width: 700px) {
  .rev-compare {
    padding: 20px 12px;
  }
  .fee-head h4 {
    font-size: 19px;
  }
  .fee-head p {
    font-size: 13px;
    line-height: 1.75;
  }
  .fee-table-wrap {
    overflow-x: visible;
  }
  .fee-table {
    min-width: 0;
    width: 100%;
    font-size: 12px;
    table-layout: fixed;
  }
  .fee-table thead th {
    padding: 10px 6px;
    font-size: 10px;
    line-height: 1.3;
  }
  .fee-table thead th:first-child {
    width: 34%;
  }
  .fee-table thead th small {
    font-size: 10px;
  }
  .fee-table tbody td {
    padding: 12px 6px;
    font-size: 12px;
    word-break: break-word;
  }
  .fee-table tbody td:first-child small {
    display: inline-block;
    font-size: 10px;
    color: var(--ink-mute);
    font-weight: 500;
    margin-top: 2px;
  }
  .fee-table tr.us td.brand {
    font-size: 13px;
  }
  .fee-table tr.us td.hi .num {
    font-size: 22px;
  }
  .fee-table tr.us td.hi .u {
    font-size: 11px;
  }
  .fee-table td.na {
    font-size: 14px;
    color: var(--ink-mute);
  }
}

/* ============== SHOWCASE ============== */
.showcase {
  background: var(--bg-2);
}
.show-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .show-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.show-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.3s;
}
.show-card:hover {
  transform: translateY(-6px);
}
.show-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.show-card:hover img {
  transform: scale(1.05);
}
.show-card .info {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--ink);
}
.show-card .info .n {
  font-weight: 700;
  font-size: 14px;
}
.show-card .info .g {
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 2px;
}
.show-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.show-card .badge.gold {
  background: var(--accent);
  color: var(--ink);
}
.show-card .pulse {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
}
.show-card .pulse .d {
  width: 6px;
  height: 6px;
  background: #ff3b3b;
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}

/* ============== STEPS ============== */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 760px) {
  .steps-wrap {
    grid-template-columns: 1fr;
  }
}
.step {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child {
  border-right: none;
}
@media (max-width: 760px) {
  .step {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .step:last-child {
    border-bottom: none;
  }
}
.step .n {
  font-size: 13px;
  color: var(--pink-deep);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step .n .num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 22px 0 10px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.step p {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.95;
  margin: 0;
}
.step .hint {
  margin-top: 16px;
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 600;
}

/* ============== FINAL CTA ============== */
.final {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  border-bottom: none;
  background: var(--bg-2);
}
.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 160, 191, 0.35), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 178, 92, 0.25), transparent 50%);
  pointer-events: none;
}
.final-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.final h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.final h2 .pink {
  color: var(--pink);
  position: relative;
}
.final h2 .pink::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6%;
  height: 22%;
  z-index: -1;
  background: var(--accent-2);
  border-radius: 6px;
  transform: rotate(-0.8deg);
}
.final h2 .serif {
  font-family: var(--font-display);
  font-weight: 700;
}
.final p {
  font-size: 15px;
  color: var(--ink-dim);
  margin: 28px auto 36px;
  max-width: 520px;
  line-height: 1.95;
}
.final .btn-primary {
  padding: 20px 40px;
  font-size: 17px;
}
.final small {
  display: block;
  color: var(--ink-mute);
  font-size: 12px;
  margin-top: 20px;
}

/* ============== FOOTER ============== */
footer {
  padding: 60px 0 40px;
  font-size: 12px;
  color: var(--ink-mute);
  border-top: 1px solid var(--line);
  background: #fff;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.foot-links {
  display: flex;
  gap: 22px;
}
.foot-links a:hover {
  color: var(--pink);
}

/* ============== TWEAKS PANEL ============== */
#tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  width: 300px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  display: none;
  font-size: 13px;
}
#tweaks.on {
  display: block;
}
#tweaks h5 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
#tweaks .tw-row {
  margin-bottom: 14px;
}
#tweaks .tw-row label {
  display: block;
  font-size: 11px;
  color: var(--ink-mute);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
#tweaks .tw-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
#tweaks .tw-btn {
  flex: 1 1 auto;
  padding: 7px 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 8px;
  font-size: 11px;
  cursor: pointer;
  font-family: inherit;
}
#tweaks .tw-btn.active {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}
#tweaks .tw-close {
  background: transparent;
  border: none;
  color: var(--ink-mute);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

/* theme variations driven by tweaks */
body[data-bg='snow'] {
  --bg: #ffffff;
  --bg-2: #fafaf8;
  --bg-3: #f4f4f2;
}
body[data-bg='cream'] {
  --bg: #fffaf2;
  --bg-2: #fff4e7;
  --bg-3: #ffe9d6;
}
body[data-bg='paper'] {
  --bg: #f7f4ee;
  --bg-2: #efeae0;
  --bg-3: #e6e0d4;
}

body[data-accent='pink'] {
  --pink: #ff6fa3;
  --pink-2: #ffa0bf;
  --pink-deep: #d94d7e;
  --accent: #ffb25c;
  --accent-2: #ffe3a8;
}
body[data-accent='coral'] {
  --pink: #ff7a6a;
  --pink-2: #ffa89d;
  --pink-deep: #e35545;
  --accent: #ffcf6b;
  --accent-2: #fff0c9;
}
body[data-accent='mint'] {
  --pink: #2fbfa0;
  --pink-2: #7ad9c4;
  --pink-deep: #1c8c76;
  --accent: #ffc16b;
  --accent-2: #ffe6b8;
}

body[data-density='airy'] section {
  padding: 140px 0;
}
body[data-density='tight'] section {
  padding: 80px 0;
}

body[data-font='mincho'] {
  --font-display: 'Kaisei Decol', serif;
}
body[data-font='gothic'] {
  --font-display: 'Zen Kaku Gothic New', sans-serif;
}
body[data-font='gothic'] .h1,
body[data-font='gothic'] .sec-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* =============================================================
 * HERO two-line H1 (mascot 削除後の専用サイズ)
 *   常に 2 行で収まるよう、最長行 (11字) が container に収まる
 *   font-size にクランプ。white-space: nowrap で自動折返しを禁止。
 * ============================================================= */
.hero-row {
  display: block;
}
/* 最長行 (line 2 = 11字) が container (max 1216px) に収まるよう
 * font-size を控えめにキャップ。white-space: nowrap で CJK 折返しも禁止。
 * 既存の .h1 / body[data-font] による上書きを避けるため、specificity を上げ
 * かつ !important で強制する。 */
.hero h1.h1-hero-two-line,
body[data-font='gothic'] .hero h1.h1-hero-two-line {
  font-size: clamp(26px, 6.2vw, 78px) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
}
@media (max-width: 360px) {
  .hero h1.h1-hero-two-line,
  body[data-font='gothic'] .hero h1.h1-hero-two-line {
    font-size: clamp(22px, 7vw, 26px) !important;
  }
}

/* =============================================================
 * NARRATIVE sections (Section 2: migration, Section 3: risk)
 *   既存の sec-head を中央寄せ + 広めパディングで story 風に。
 * ============================================================= */
.narrative {
  padding: 96px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.narrative-alt {
  background: var(--bg-2, #fafaf8);
  border-top: 0;
}
.narrative-head {
  /* 左揃え。既存 sec-head の 2 カラムレイアウトは使わず単純ブロック配置 */
  display: block;
  text-align: left;
}
.narrative-head .sec-label {
  margin-bottom: 16px;
}
.narrative-head .sec-title {
  margin: 0 0 22px;
}
.narrative-head .sec-desc {
  margin: 22px 0 0;
  line-height: 2.05;
}
.narrative-closing {
  margin-top: 24px !important;
}

/* Steps セクションの見出し: PC で改行されないように nowrap 化。
 * narrow なモバイル (< 760px) では従来通り自動折返しを許容。 */
@media (min-width: 760px) {
  #steps .sec-title {
    white-space: nowrap;
  }
}

/* =============================================================
 * DOC pages (会社情報 / 特定商取引法に基づく表記)
 *   読みやすさ優先の縦長ドキュメント用レイアウト。
 * ============================================================= */
.doc-page {
  padding: 80px 0 120px;
  min-height: 60vh;
}
.doc-page .container {
  max-width: 860px;
}
.doc-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 32px;
  transition: color 0.2s;
}
.doc-back:hover {
  color: var(--pink);
}
.doc-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
  color: var(--ink);
}
.doc-section {
  margin-bottom: 48px;
}
.doc-section:last-child {
  margin-bottom: 0;
}
.doc-section-heading {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pink);
  color: var(--ink);
  display: inline-block;
}
.doc-lead {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-dim);
  margin: 0 0 24px;
}
.doc-terms {
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-dim);
}
.doc-terms p {
  margin: 0 0 18px;
}
.doc-chapter-heading {
  margin: 48px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
}
.doc-chapter-heading:first-child {
  margin-top: 0;
}
.doc-article-heading {
  margin: 30px 0 12px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}
.doc-terms-list {
  margin: 0 0 20px;
  padding-left: 1.4em;
}
.doc-terms-list li {
  margin: 8px 0;
}
.doc-dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  column-gap: 24px;
  row-gap: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}
.doc-dl dt {
  font-weight: 700;
  color: var(--ink);
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.doc-dl dd {
  margin: 0;
  padding: 16px 0;
  color: var(--ink-dim);
  border-top: 1px solid var(--line);
}
.doc-dl dt:first-of-type,
.doc-dl dd:first-of-type {
  border-top: 0;
}
.doc-dl dd small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-mute);
}
@media (max-width: 720px) {
  .doc-dl {
    grid-template-columns: 1fr;
  }
  .doc-dl dt {
    padding: 16px 0 4px;
  }
  .doc-dl dd {
    padding: 0 0 16px;
    border-top: 0;
  }
  .doc-dl dt:first-of-type {
    padding-top: 0;
  }
}
.pink-marker {
  background: linear-gradient(transparent 60%, var(--accent-2) 60%);
  font-weight: 700;
  color: var(--ink);
  padding: 0 4px;
}
@media (max-width: 760px) {
  .narrative {
    padding: 64px 0;
  }
}

/* =============================================================
 * GRADIENT BUTTON
 * ============================================================= */
.btn-gradient {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  box-shadow: 0 8px 22px rgba(138, 43, 226, 0.28);
  color: #fff;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(138, 43, 226, 0.4);
}

/* =============================================================
 * HERO NEW — two-column layout with visual
 * ============================================================= */
.hero.hero-new::before {
  background: radial-gradient(circle, rgba(255, 160, 191, 0.45), rgba(255, 160, 191, 0) 60%);
}
.hero.hero-new::after {
  background: radial-gradient(circle, rgba(138, 43, 226, 0.22), rgba(138, 43, 226, 0) 60%);
}

.hero-new-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.h1-hero-new {
  font-size: clamp(36px, 5.5vw, 68px) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  white-space: normal !important;
}

.hero-trust {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 12px;
  color: var(--ink-dim);
  font-weight: 600;
}

/* Hero visual column */
.hero-new-visual {
  position: relative;
}
.hero-mockup-group {
  position: relative;
  min-height: 500px;
}
.mockup-float {
  position: absolute;
}
.mockup-float-1 {
  top: 0;
  left: 8%;
  transform: rotate(-6deg);
  animation: float-a 7s ease-in-out infinite;
}
.mockup-float-2 {
  top: 50px;
  right: 0;
  transform: rotate(4deg);
  animation: float-b 8s ease-in-out 1s infinite;
}
.mockup-float-3 {
  bottom: 60px;
  left: 0;
  animation: float-a 6s ease-in-out 2s infinite;
}
.mockup-float-4 {
  top: 20px;
  right: 20px;
  animation: float-b 5s ease-in-out 0.5s infinite;
}
@keyframes float-a {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-12px) rotate(-6deg); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

.hero-stat-bubble {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.hsb-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.hsb-num span {
  color: var(--purple);
}
.hsb-label {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 6px;
  font-weight: 600;
}
.hero-badge-pill {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.45);
  color: #c8a200;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

/* =============================================================
 * MOCKUP PHONE — CSS-only device frame
 * ============================================================= */
.mockup-phone {
  position: relative;
  background: #1c1c1e;
  border-radius: 44px;
  padding: 14px;
  width: 240px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.mockup-phone.mockup-sm {
  width: 190px;
  border-radius: 36px;
}
.mockup-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 26px;
  background: #1c1c1e;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.mockup-sm .mockup-notch {
  width: 70px;
  height: 22px;
}
.mockup-screen {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(160deg, #ffe0f0 0%, #e8d5ff 100%);
}
.mockup-sm .mockup-screen {
  border-radius: 24px;
}
.mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Phone wrap for single mockup + badges */
.mockup-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 24px 40px;
}

/* Dual phone (message feature) */
.mockup-pair-wrap {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-phone--back {
  position: absolute;
  left: 10px;
  top: 0;
  transform: rotate(-7deg);
  opacity: 0.88;
  z-index: 1;
}
.mockup-phone--front {
  position: absolute;
  right: 10px;
  top: 40px;
  transform: rotate(5deg);
  z-index: 2;
}

/* Plan tier badges floating near phone */
.plan-badge {
  position: absolute;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  z-index: 10;
}
.plan-badge--gold {
  top: 10px;
  right: 0;
  background: rgba(255, 215, 0, 0.16);
  border: 1px solid rgba(255, 215, 0, 0.5);
  color: #b8920a;
}
.plan-badge--silver {
  top: 40%;
  left: -10px;
  background: rgba(160, 160, 175, 0.14);
  border: 1px solid rgba(160, 160, 175, 0.4);
  color: #6b6b7b;
}
.plan-badge--bronze {
  bottom: 20px;
  right: 10px;
  background: rgba(205, 127, 50, 0.12);
  border: 1px solid rgba(205, 127, 50, 0.38);
  color: #9a5f24;
}

/* =============================================================
 * PAIN SECTION
 * ============================================================= */
.pain-section {
  background: var(--bg-2);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.pain-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 111, 163, 0.1), rgba(138, 43, 226, 0.08));
  border: 1px solid rgba(255, 111, 163, 0.2);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.pain-icon svg {
  width: 24px;
  height: 24px;
  color: var(--pink);
}
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.4;
  color: var(--ink);
}
.pain-card p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.95;
  margin: 0;
}
.pain-bridge {
  margin-top: 52px;
  text-align: center;
}
.pain-bridge p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}
.pain-bridge strong {
  color: var(--pink);
}

/* =============================================================
 * STRENGTHS SECTION
 * ============================================================= */
.strengths-section {
  background: #fff;
}
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.strength-card {
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.strength-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.strength-card:hover::after {
  transform: scaleX(1);
}
.strength-card--accent {
  background: linear-gradient(160deg, rgba(255, 111, 163, 0.05) 0%, rgba(138, 43, 226, 0.07) 100%);
  border-color: rgba(138, 43, 226, 0.2);
}
.strength-num {
  font-family: var(--font-serif-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.strength-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 111, 163, 0.14), rgba(138, 43, 226, 0.1));
  border: 1px solid rgba(255, 111, 163, 0.25);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.strength-icon svg {
  width: 24px;
  height: 24px;
  color: var(--pink);
}
.strength-icon--purple svg {
  color: var(--purple);
}
.strength-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.3;
}
.strength-card p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.95;
  margin: 0;
}

/* =============================================================
 * FEATURES SHOWCASE
 * ============================================================= */
.features-showcase {
  background: var(--bg-2);
}
.features-showcase > .container > .sec-head {
  margin-bottom: 0;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.feature-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.feature-row--reverse {
  direction: rtl;
}
.feature-row--reverse > * {
  direction: ltr;
}
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.feature-tag--pink {
  background: rgba(255, 111, 163, 0.1);
  color: var(--pink-deep);
  border: 1px solid rgba(255, 111, 163, 0.28);
}
.feature-tag--purple {
  background: var(--purple-light);
  color: var(--purple);
  border: 1px solid rgba(138, 43, 226, 0.22);
}
.feature-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.3;
  color: var(--ink);
}
.feature-desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 2;
  margin: 0 0 20px;
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  font-size: 14px;
  color: var(--ink-dim);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

/* =============================================================
 * REVENUE MERIT SECTION
 * ============================================================= */
.revenue-merit {
  background: #fff;
}

/* 3-stat strip */
.merit-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-2);
  margin-bottom: 40px;
}
.merit-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.merit-stat:last-child {
  border-right: none;
}
.merit-stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.merit-stat-num span {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.merit-stat-label {
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-mute);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Simulation card */
.sim-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  margin-bottom: 40px;
}
.sim-head {
  padding: 32px 36px 28px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 111, 163, 0.05), rgba(138, 43, 226, 0.05));
}
.sim-head h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  margin: 14px 0 0;
  color: var(--ink);
  line-height: 1.3;
}
.sim-head h3 em {
  font-style: normal;
  color: var(--purple);
}
.sim-body {
  padding: 32px 36px;
}
.sim-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.sim-plan {
  padding: 20px 16px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform 0.2s;
}
.sim-plan:hover {
  transform: translateY(-3px);
}
.sim-plan--bronze {
  background: rgba(205, 127, 50, 0.07);
  border-color: rgba(205, 127, 50, 0.22);
}
.sim-plan--silver {
  background: rgba(160, 160, 175, 0.07);
  border-color: rgba(160, 160, 175, 0.22);
}
.sim-plan--gold {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.28);
}
.sim-plan-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-dim);
  margin-bottom: 10px;
}
.sim-plan-price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.sim-plan-fans {
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.sim-plan-sub {
  font-size: 15px;
  font-weight: 700;
  color: var(--pink-deep);
  font-family: var(--font-display);
}
.sim-total {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(255, 111, 163, 0.06), rgba(138, 43, 226, 0.07));
  border-radius: 18px;
  border: 1px solid rgba(138, 43, 226, 0.14);
}
.sim-total-label {
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.sim-total-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.sim-total-num > span:first-of-type {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sim-total-unit {
  font-size: 0.38em;
  color: var(--ink-dim);
  -webkit-text-fill-color: var(--ink-dim);
  font-family: var(--font-ja);
}
.sim-total-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--ink-mute);
}

/* =============================================================
 * RESPONSIVE — new sections
 * ============================================================= */
@media (max-width: 980px) {
  .hero-new-row {
    grid-template-columns: 1fr;
  }
  .hero-new-visual {
    display: none;
  }
  .strength-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0;
  }
  .feature-row--reverse {
    direction: ltr;
  }
  .mockup-phone-wrap {
    justify-content: center;
    padding: 16px 0;
  }
  .mockup-pair-wrap {
    height: 400px;
  }
}
@media (max-width: 760px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .merit-stats {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .merit-stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .merit-stat:last-child {
    border-bottom: none;
  }
  .sim-row {
    grid-template-columns: 1fr;
  }
  .sim-body {
    padding: 24px 20px;
  }
  .sim-head {
    padding: 24px 20px 20px;
  }
  .pain-bridge p {
    font-size: 18px;
  }
}

/* Single-column fee table (Section 5) */
.fee-table-single thead th {
  width: auto;
}
.fee-table-single tbody td {
  text-align: left;
}
.fee-table-single tbody td + td {
  text-align: center;
  font-weight: 700;
}

/* feat-list: bullet list inside plan cards (Section 4) */
.feat-list li {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-dim);
}
.feat-list li b {
  color: var(--ink);
}

/* ========== FAQ（タブ・大カテゴリ・質問のアコーディオン） ========== */
.faq-section {
  padding: 88px 0 96px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.faq-section .sec-head {
  margin-bottom: 28px;
}

.faq-root {
  max-width: 920px;
  margin: 0 auto;
}

.faq-intro {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-dim);
  margin: 0 0 24px;
}

.faq-search {
  margin-bottom: 24px;
}

.faq-search-label {
  display: block;
}

.faq-search-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}

.faq-filter-input {
  width: 100%;
  max-width: 420px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
  color: var(--ink);
}

.faq-filter-input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 111, 163, 0.2);
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.faq-tab {
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink-dim);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.faq-tab:hover {
  color: var(--ink);
  border-color: var(--ink-mute);
}

.faq-tab.is-active {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
  color: #fff;
  border-color: transparent;
}

.faq-panel.is-hidden {
  display: none;
}

.faq-category {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--bg);
  overflow: hidden;
}

.faq-category.faq-category-empty {
  display: none;
}

.faq-category-summary {
  padding: 16px 20px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
}

.faq-category-summary::-webkit-details-marker {
  display: none;
}

.faq-category-summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--pink);
}

.faq-category[open] > .faq-category-summary::after {
  content: "\2212";
}

.faq-item-list {
  padding: 0 12px 12px;
}

.faq-item {
  border-radius: 8px;
  margin-bottom: 6px;
  border: 1px solid transparent;
}

.faq-item.is-filtered-out {
  display: none;
}

.faq-q {
  padding: 14px 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.55;
  list-style: none;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: "";
  float: right;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-right: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.faq-item[open] > .faq-q::after {
  transform: rotate(-135deg);
  margin-top: 10px;
}

.faq-minor {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--pink-deep);
  background: rgba(255, 111, 163, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
}

.faq-a {
  padding: 12px 12px 16px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-dim);
  border-top: 1px solid var(--line);
}

.faq-a a {
  color: var(--pink-deep);
  text-decoration: underline;
  word-break: break-all;
}

.faq-item[open] {
  border-color: var(--line);
  background: var(--bg-3);
}

@media (max-width: 760px) {
  .faq-section {
    padding: 64px 0 72px;
  }

  .faq-tabs {
    gap: 8px;
  }

  .faq-tab {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* =============================================================
 * PROOF STRIP — trust bar directly below hero
 * ============================================================= */
.proof-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 44px;
  text-align: center;
}
.proof-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.proof-num span {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-label {
  margin-top: 6px;
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.proof-divider {
  width: 1px;
  height: 44px;
  background: var(--line);
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .proof-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .proof-divider { display: none; }
  .proof-item {
    padding: 18px 12px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
  .proof-item:nth-child(even) { border-right: none; }
  .proof-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* =============================================================
 * CREATOR SCENARIO — use-case callout inside feature rows
 * ============================================================= */
.creator-scenario {
  margin-top: 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255,111,163,0.05), rgba(138,43,226,0.05));
  border-left: 3px solid;
  border-image: linear-gradient(180deg, var(--pink), var(--purple)) 1;
  border-radius: 0 12px 12px 0;
}
.creator-scenario-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 7px;
  text-transform: uppercase;
}
.creator-scenario p {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.85;
  margin: 0;
}

/* =============================================================
 * COMPETITION MATRIX — 5-column rival comparison
 * ============================================================= */
.comp-matrix-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.comp-matrix {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 700px;
}
.comp-matrix thead th {
  padding: 18px 16px 14px;
  text-align: center;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  vertical-align: bottom;
  line-height: 1.3;
}
.comp-matrix thead th:last-child { border-right: none; }
.cm-th-label {
  text-align: left !important;
  width: 28%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  background: var(--bg-3) !important;
}
.cm-th-cf {
  background: linear-gradient(160deg, rgba(255,111,163,0.12), rgba(138,43,226,0.14)) !important;
  border-left: 2px solid rgba(138,43,226,0.28) !important;
  border-right: 2px solid rgba(138,43,226,0.28) !important;
}
.cm-th-dim { opacity: 0.78; }
.cm-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.cm-th-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.cm-th-cf .cm-th-name { color: var(--purple-deep); }
.cm-th-sub {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 4px;
  font-weight: 500;
}
.comp-matrix tbody td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  vertical-align: middle;
}
.comp-matrix tbody td:last-child { border-right: none; }
.comp-matrix tbody tr:last-child td,
.cm-row-last td { border-bottom: none; }
.cm-feature {
  text-align: left !important;
  background: var(--bg-2);
  padding: 16px 18px !important;
}
.cm-feature strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.cm-feature-note {
  display: block;
  font-size: 11px;
  color: var(--pink-deep);
  font-weight: 700;
  margin-top: 4px;
}
.cm-cf {
  background: linear-gradient(160deg, rgba(255,111,163,0.04), rgba(138,43,226,0.06)) !important;
  border-left: 2px solid rgba(138,43,226,0.18) !important;
  border-right: 2px solid rgba(138,43,226,0.18) !important;
}
.cm-dim { color: var(--ink-mute); }
.cm-check {
  display: block;
  color: #16a34a;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}
.cm-x { color: #d1d5db; font-size: 20px; font-weight: 300; }
.cm-partial {
  display: block;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}
.cm-val {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.cm-val--best {
  font-size: 22px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cm-cf-sub {
  display: block;
  font-size: 11px;
  color: var(--purple-deep);
  font-weight: 600;
  margin-top: 2px;
}
.cm-val-dim {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mute);
}
.cm-dim-sub {
  display: block;
  font-size: 10px;
  color: var(--ink-mute);
  margin-top: 2px;
}
@media (max-width: 760px) {
  .comp-matrix { min-width: 560px; }
  .comp-matrix thead th,
  .comp-matrix tbody td { padding: 11px 9px; font-size: 11px; }
  .cm-th-name { font-size: 12px; }
  .cm-feature strong { font-size: 11px; }
  .cm-feature-note { font-size: 10px; }
  .cm-val--best { font-size: 17px; }
}

/* =============================================================
 * PROGRESSIVE CTA — 3-pathway conversion section
 * ============================================================= */
.prog-cta-section {
  padding: 110px 0;
  background: linear-gradient(160deg, rgba(255,111,163,0.06) 0%, rgba(138,43,226,0.07) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.prog-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255,160,191,0.22), transparent 45%),
    radial-gradient(circle at 85% 50%, rgba(138,43,226,0.13), transparent 45%);
  pointer-events: none;
}
.prog-cta-head {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}
.prog-cta-sub {
  margin-top: 12px;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.8;
}
.prog-cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.prog-cta-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}
.prog-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.1);
}
.prog-cta-card--primary {
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
}
.prog-cta-card--primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 26px;
  z-index: -1;
}
.prog-cta-icon { font-size: 28px; line-height: 1; }
.prog-cta-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.prog-cta-card p {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.85;
  margin: 0;
  flex: 1;
}
.prog-cta-card .btn { margin-top: 8px; align-self: flex-start; }
.prog-cta-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 32px;
  position: relative;
  z-index: 2;
}
@media (max-width: 860px) {
  .prog-cta-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .prog-cta-card .btn { align-self: stretch; justify-content: center; }
}
@media (max-width: 760px) {
  .prog-cta-section { padding: 72px 0; }
}

/* =============================================================
 * VISUAL HIERARCHY ENHANCEMENTS — 2026-05
 * ============================================================= */

/* --- Section background alternation (明暗リズム) --- */
.pain-section   { background: var(--bg-2); }
.features-showcase { background: #fff; }
.revenue-merit  { background: var(--bg-2); }
.steps          { background: #fff; }

/* --- sec-title em → gradient text (emphasisの強化) --- */
.sec-title em {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-title em::after {
  background: rgba(255, 111, 163, 0.14);
}

/* --- btn-gradient: ピンクのグロー追加 --- */
.btn-gradient {
  box-shadow: 0 8px 28px rgba(255, 111, 163, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-gradient:hover {
  box-shadow: 0 14px 38px rgba(255, 111, 163, 0.58);
  transform: translateY(-3px);
}

/* --- pain-bridge: 目立つ強調BOX化 --- */
.pain-bridge {
  margin-top: 52px;
  padding: 36px 48px;
  background: linear-gradient(135deg, rgba(255,111,163,0.07), rgba(138,43,226,0.07));
  border: 1px solid rgba(255, 111, 163, 0.25);
  border-radius: 20px;
  text-align: center;
}
.pain-bridge p {
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 0.01em;
}
@media (max-width: 760px) {
  .pain-bridge { padding: 28px 20px; }
}

/* --- Steps: 番号を大きなグラデーション円に --- */
.step .n .num {
  width: 52px;
  height: 52px;
  font-size: 22px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  flex-shrink: 0;
}
.step .n {
  gap: 14px;
}
.step h4 {
  margin-top: 28px;
  font-size: clamp(20px, 2.2vw, 24px);
}

/* --- Feature tag: 少し大きく・より主張させる --- */
.feature-tag {
  font-size: 13px;
  padding: 7px 18px;
  letter-spacing: 0.07em;
}
.feature-tag--pink {
  background: rgba(255, 111, 163, 0.13);
  border-color: rgba(255, 111, 163, 0.35);
}
.feature-tag--purple {
  background: rgba(138, 43, 226, 0.1);
  border-color: rgba(138, 43, 226, 0.28);
}

/* --- Feature title: サイズアップ --- */
.feature-title {
  font-size: clamp(24px, 3vw, 36px);
}

/* --- Sim total number: もっと大きく --- */
.sim-total-num {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 10px 0 6px;
}
.sim-total-num > span:first-of-type {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- comp-matrix: CreatorFansカラムの左ボーダー強調 --- */
.comp-matrix thead th.cm-th-cf,
.comp-matrix tbody td.cm-cf {
  border-left: 3px solid var(--pink);
}

/* --- proof-strip: ピンクの底ボーダーで区切り強調 --- */
.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--pink), var(--purple), transparent) 1;
}

/* --- prog-cta-section の中の sec-title em は白文字不要 (gradient引き継ぎ) --- */
.prog-cta-section .sec-title em {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================================
 * PAIN SECTION REDESIGN — v2 emphasis + scroll animation
 * ============================================================= */

/* Ambient gradient blobs */
.pain-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 55%, rgba(255,111,163,0.09), transparent),
    radial-gradient(ellipse 55% 65% at 100% 45%, rgba(138,43,226,0.06), transparent);
  pointer-events: none;
  z-index: 0;
}
.pain-section .container { position: relative; z-index: 1; }

/* Scroll reveal base state */
.pain-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--anim-delay, 0s);
}
.pain-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .pain-reveal { opacity: 1; transform: none; transition: none; }
}

/* pain-no badge */
.pain-no {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.pain-no > span {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Larger icon */
.pain-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
}
.pain-icon svg {
  width: 28px;
  height: 28px;
}

/* pain-title: h3 with em highlight */
.pain-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.55;
  color: var(--ink);
}
.pain-em {
  font-style: normal;
  color: var(--pink-deep);
  background: linear-gradient(transparent 58%, rgba(255, 111, 163, 0.22) 58%);
  display: inline;
}

/* pain-voice: speech bubble quote */
.pain-voice {
  margin-top: 22px;
  padding: 14px 18px 14px 46px;
  background: linear-gradient(135deg, rgba(255,111,163,0.07), rgba(138,43,226,0.05));
  border-radius: 14px;
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.8;
  font-style: italic;
  position: relative;
}
.pv-quote {
  position: absolute;
  left: 12px;
  top: 4px;
  font-family: 'Instrument Serif', serif;
  font-size: 44px;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.65;
  pointer-events: none;
}

/* pain-bridge arrow animation */
.pain-bridge-arrow {
  font-size: 30px;
  color: var(--pink);
  margin-bottom: 14px;
  animation: pain-bounce 1.8s ease-in-out infinite;
  display: block;
}
@keyframes pain-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(9px); }
}

/* Override previous pain-bridge styles with stronger version */
.pain-bridge {
  margin-top: 56px;
  padding: 40px 56px;
  background: linear-gradient(135deg, rgba(255,111,163,0.08), rgba(138,43,226,0.07));
  border: 1px solid rgba(255, 111, 163, 0.28);
  border-radius: 22px;
  text-align: center;
}
.pain-bridge p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.01em;
}
.pain-bridge strong { color: var(--pink); }

@media (max-width: 760px) {
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card  { padding: 28px 22px; }
  .pain-bridge { padding: 30px 24px; }
}

/* =============================================================
 * FEATURES SECTION REDESIGN — hierarchy + scroll animation
 * ============================================================= */

/* --- Section background --- */
.features-showcase { background: #fff; }

/* --- Section head: fade+slide-up --- */
.feat-reveal-head {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.feat-reveal-head.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Feature row: split from sides, children animate independently --- */
/* Parent stays visible so children can animate */
.feature-row.feat-reveal > .feature-row-text {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-row.feat-reveal > .feature-row-visual {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.13s,
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.13s;
}
/* Reversed row: flip directions */
.feature-row--reverse.feat-reveal > .feature-row-text {
  transform: translateX(36px);
}
.feature-row--reverse.feat-reveal > .feature-row-visual {
  transform: translateX(-36px);
}
/* Revealed state */
.feature-row.feat-reveal.is-visible > .feature-row-text,
.feature-row.feat-reveal.is-visible > .feature-row-visual {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .feat-reveal-head,
  .feature-row.feat-reveal > .feature-row-text,
  .feature-row.feat-reveal > .feature-row-visual {
    opacity: 1; transform: none; transition: none;
  }
}

/* --- Decorative feature number 01 / 02 / 03 --- */
.feat-num {
  margin-bottom: 16px;
  line-height: 1;
}
.feat-num > span {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 400;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.22;
  display: inline-block;
  line-height: 0.85;
}

/* --- Feature tag: stronger presence --- */
.feature-tag {
  font-size: 13px;
  padding: 8px 18px;
  letter-spacing: 0.08em;
}
.feature-tag--pink {
  background: rgba(255, 111, 163, 0.12);
  border: 1.5px solid rgba(255, 111, 163, 0.38);
}
.feature-tag--purple {
  background: rgba(138, 43, 226, 0.09);
  border: 1.5px solid rgba(138, 43, 226, 0.3);
}

/* --- Feature title: larger, stronger --- */
.feature-title {
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 20px;
  line-height: 1.25;
}

/* --- Feature list: slightly more prominent --- */
.feature-list li {
  font-size: 14.5px;
}

/* --- Accent bar: left (or right) gradient stripe per row --- */
.feature-row {
  position: relative;
}
.feature-row::after {
  content: '';
  position: absolute;
  left: -32px;
  top: 88px;
  bottom: 88px;
  width: 3px;
  background: linear-gradient(180deg, var(--pink), var(--purple));
  border-radius: 99px;
  opacity: 0.3;
}
.feature-row--reverse::after {
  left: auto;
  right: -32px;
}
.feature-row:last-of-type::after { opacity: 0.18; }

/* --- Mockup visual: radial glow behind phone --- */
.feature-row-visual {
  position: relative;
}
.feature-row-visual::before {
  content: '';
  position: absolute;
  inset: -48px;
  background: radial-gradient(circle at 50% 50%,
    rgba(255, 111, 163, 0.13) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.feature-row--reverse .feature-row-visual::before {
  background: radial-gradient(circle at 50% 50%,
    rgba(138, 43, 226, 0.10) 0%, transparent 65%);
}
.feature-row-visual > * { position: relative; z-index: 1; }

/* --- Section head: gradient underline divider --- */
.features-showcase > .container > .sec-head {
  padding-bottom: 24px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--pink), var(--purple), transparent 80%) 1;
}

@media (max-width: 860px) {
  .feature-row::after,
  .feature-row--reverse::after { display: none; }
}

/* =============================================================
 * FEATURES — vertical bar: remove old out-of-bounds bar,
 *             replace with left-border on text column
 * ============================================================= */
.feature-row::after { display: none; }

.feature-row-text {
  border-left: 3px solid;
  border-image: linear-gradient(180deg, var(--pink), var(--purple)) 1;
  padding-left: 28px;
}

/* Reversed row: bar sits between visual and text — keep border-left as-is */
/* (direction:rtl makes text visually on right; border-left appears as internal separator) */

@media (max-width: 860px) {
  .feature-row-text {
    border-left: none;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--pink), var(--purple)) 1;
    padding-left: 0;
    padding-top: 22px;
  }
}

/* =============================================================
 * COMPETITION MATRIX — simplified + ファンクラブ row
 * ============================================================= */

/* ファンクラブ row: soft green highlight to show "shared baseline" */
.cm-row-common td {
  background: rgba(34, 197, 94, 0.055);
}
.cm-row-common .cm-feature strong {
  color: #16a34a;
}

/* ⭕️ circle symbol */
.cm-circle {
  font-size: 22px;
  display: block;
  line-height: 1;
}

/* Tighten cell padding slightly for simpler feel */
.comp-matrix tbody td {
  padding: 18px 20px;
  vertical-align: middle;
}
.comp-matrix thead th {
  padding: 20px 20px;
}
.comp-matrix .cm-cf {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* =============================================================
 * MATRIX — symbol fixes
 * ============================================================= */

/* ⭕️ emoji class は非表示（✓ に統一） */
.cm-circle { display: none; }

/* 競合列の ✓ はグレーで「あるが優位ではない」を表現 */
.cm-check-dim {
  display: block;
  color: var(--ink-mute);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}

/* =============================================================
 * FEATURES sec-head — 下線を削除
 * ============================================================= */
.features-showcase > .container > .sec-head {
  border-bottom: none;
  border-image: none;
  padding-bottom: 0;
}

/* =============================================================
 * MOBILE MOCKUP — スマートフォンでの崩れ対策
 * ============================================================= */

/* ビューポート外へのはみ出しを防ぐ */
.features-showcase { overflow-x: hidden; }

/* アニメーションの translateX が横スクロールを生む問題を修正 */
@media (max-width: 860px) {
  .feature-row.feat-reveal > .feature-row-text,
  .feature-row.feat-reveal > .feature-row-visual,
  .feature-row--reverse.feat-reveal > .feature-row-text,
  .feature-row--reverse.feat-reveal > .feature-row-visual {
    transform: translateY(28px);   /* 横移動をやめて縦に変更 */
  }
  .feature-row.feat-reveal.is-visible > .feature-row-text,
  .feature-row.feat-reveal.is-visible > .feature-row-visual {
    transform: translateY(0);
  }
  /* モックアップ背後グローは非表示（はみ出し防止） */
  .feature-row-visual::before { display: none; }
}

/* 760px 以下: phone を縮小・余白調整 */
@media (max-width: 760px) {
  .mockup-phone       { width: 200px; }
  .mockup-phone.mockup-sm { width: 160px; border-radius: 30px; }
  .mockup-phone-wrap  { padding: 12px 16px; }

  .mockup-pair-wrap   { height: 320px; }
  .mockup-phone--back { left: 4px; }
  .mockup-phone--front { right: 4px; }

  .plan-badge { font-size: 11px; padding: 6px 12px; }
}

/* 480px 以下: さらに縮小 */
@media (max-width: 480px) {
  .mockup-phone       { width: 170px; border-radius: 36px; }
  .mockup-phone.mockup-sm { width: 140px; }
  .mockup-phone-wrap  { padding: 8px 8px; }

  .mockup-pair-wrap   { height: 280px; }
  .mockup-phone--back { left: 0; top: 10px; }
  .mockup-phone--front { right: 0; top: 30px; }

  /* plan-badge は極狭画面では非表示 */
  .plan-badge { display: none; }
}

/* =============================================================
 * PAIN — ラベル行（上部）& bridge タイトル・本文
 * ============================================================= */

/* sec-label を単独で上部に配置する行 */
.pain-label-row {
  margin-bottom: 48px;
}

/* bridge 内の確認タイトル */
.pain-bridge-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--ink);
}
.pain-bridge-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* bridge の具体的シナリオ文 */
.pain-bridge-body {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--ink-dim);
  line-height: 2.1;
  margin: 0;
}
.pain-bridge-body strong {
  color: var(--ink);
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

@media (max-width: 760px) {
  .pain-bridge-body { font-size: 15px; }
  .pain-bridge-body br { display: none; }
}

/* ============== STEPS CTA ============== */
.steps-cta {
  text-align: center;
  margin-top: 56px;
}
.steps-cta-btn {
  display: inline-block;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 60px;
  text-decoration: none;
}
.steps-cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* ============== PROG-CTA: 資料請求カード ============== */
.prog-cta-card--doc {
  border: 1.5px solid rgba(138, 43, 226, 0.2);
  background: linear-gradient(145deg, #fff 60%, rgba(138,43,226,0.03) 100%);
}
.prog-cta-card--doc:hover {
  border-color: rgba(138, 43, 226, 0.4);
  box-shadow: 0 20px 44px rgba(138, 43, 226, 0.1);
}
.doc-icon {
  width: 32px;
  height: 32px;
  color: var(--purple);
}
.btn-ghost--doc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-color: rgba(138, 43, 226, 0.35);
  color: var(--purple);
}
.btn-ghost--doc:hover {
  background: rgba(138, 43, 226, 0.06);
  border-color: var(--purple);
}

/* ============== FINAL CTA: simplified ============== */
.cta-hero {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-hero-sub {
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.9;
  margin: 14px 0 40px;
}
.cta-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  padding: 20px 56px;
  border-radius: 60px;
  text-decoration: none;
  animation: cta-glow 3s ease-in-out infinite;
}
.cta-hero-btn svg { width: 18px; height: 18px; }
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 8px 28px rgba(255,111,163,0.45); }
  50%       { box-shadow: 0 14px 44px rgba(255,111,163,0.68), 0 0 0 10px rgba(255,111,163,0.08); }
}
.cta-footnote {
  margin-top: 20px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* 区切り線 */
.cta-divider {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 52px 0 28px;
  color: var(--ink-mute);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cta-divider::before,
.cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* サブ導線グリッド */
.cta-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-sub-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.cta-sub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.07);
  border-color: var(--pink-2);
}
.cta-sub-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-sub-icon--pdf { background: rgba(138,43,226,0.08); color: var(--purple); }
.cta-sub-icon--faq { background: rgba(255,111,163,0.1); color: var(--pink-deep); }
.cta-sub-icon svg { width: 20px; height: 20px; }
.cta-sub-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cta-sub-text strong { font-size: 14px; font-weight: 700; line-height: 1.3; }
.cta-sub-text span   { font-size: 12px; color: var(--ink-mute); }
.cta-sub-arrow { flex-shrink: 0; color: var(--ink-mute); display: flex; transition: transform 0.2s; }
.cta-sub-arrow svg { width: 16px; height: 16px; }
.cta-sub-card:hover .cta-sub-arrow { transform: translateX(3px); }

/* スクロール reveal */
.cta-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--cta-delay, 0s);
}
.cta-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .cta-sub-grid { grid-template-columns: 1fr; }
  .cta-hero-btn { font-size: 15px; padding: 18px 40px; width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-reveal { transition: none; opacity: 1; transform: none; }
  .cta-hero-btn { animation: none; }
}

/* ============== REVENUE MERIT: advantage redesign ============== */

/* セクション背景を少しリッチに */
.revenue-merit {
  background: linear-gradient(180deg, var(--bg-2) 0%, #fff 100%);
  padding: 100px 0;
}

/* ヘッドライン */
.adv-head {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}
.adv-title {
  margin-top: 14px !important;
  font-size: clamp(24px, 3.5vw, 42px) !important;
  line-height: 1.45 !important;
}
.adv-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 3つの強みカードグリッド */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
}
.adv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s, box-shadow 0.28s;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.09);
}

/* アイコン */
.adv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.adv-icon svg { width: 24px; height: 24px; }
.adv-icon--purple {
  background: rgba(138,43,226,0.1);
  color: var(--purple);
}
.adv-icon--pink {
  background: rgba(255,111,163,0.12);
  color: var(--pink-deep);
}

/* 大見出し数字/語 */
.adv-stat {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* 説明文 */
.adv-desc {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.85;
  margin: 0;
  flex: 1;
}

/* バッジ */
.adv-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 2px;
}
.adv-badge--purple {
  background: rgba(138,43,226,0.1);
  color: var(--purple-deep);
}
.adv-badge--pink {
  background: rgba(255,111,163,0.12);
  color: var(--pink-deep);
}

/* スクロール reveal（revenue セクション用） */
.rev-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--rev-delay, 0s);
}
.rev-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .adv-grid { grid-template-columns: 1fr; gap: 14px; }
  .revenue-merit { padding: 72px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .rev-reveal { transition: none; opacity: 1; transform: none; }
}

/* ============== REVENUE MERIT: left-aligned 2-col redesign ============== */

/* 左右2カラム分割 */
.adv-split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px 64px;
  align-items: start;
  margin-bottom: 56px;
}

/* 左列：見出しエリア */
.adv-split-left {
  position: sticky;
  top: 96px; /* nav の高さ分 */
}
.adv-title {
  margin-top: 14px !important;
  font-size: clamp(26px, 3.2vw, 40px) !important;
  line-height: 1.4 !important;
  text-align: left !important;
}
.adv-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.adv-lead {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 2;
}

/* 右列：カード縦積み */
.adv-cards-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* 横長カード */
.adv-card-h {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s, box-shadow 0.25s;
}
.adv-card-h:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}
.adv-card-h-body {
  flex: 1;
  min-width: 0;
}
.adv-card-h-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}
.adv-card-h-desc {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.8;
  margin: 0;
}
.adv-coming {
  display: inline-block;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--purple);
  background: rgba(138,43,226,0.08);
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.adv-badge {
  flex-shrink: 0;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 20px;
  white-space: nowrap;
}
.adv-badge--pink   { background: rgba(255,111,163,0.12); color: var(--pink-deep); }
.adv-badge--purple { background: rgba(138,43,226,0.1);  color: var(--purple-deep); }

/* アイコン */
.adv-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adv-icon svg       { width: 22px; height: 22px; }
.adv-icon--purple   { background: rgba(138,43,226,0.1); color: var(--purple); }
.adv-icon--pink     { background: rgba(255,111,163,0.12); color: var(--pink-deep); }

/* スマホ対応 */
@media (max-width: 860px) {
  .adv-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .adv-split-left { position: static; }
}
@media (max-width: 480px) {
  .adv-card-h { flex-wrap: wrap; }
  .adv-badge  { align-self: auto; }
}
