/* ==========================================================================
   IZNM Partner LP — iznm-partner-lp.css
   Task 107: All classes use .plp- prefix
   ========================================================================== */

/* ---------- Main site CSS override reset ---------- */
/* iznm-base.css sets a { color: var(--iznm-text-main) } which is #ddd (dark theme).
   We must forcefully reset all links and elements inside .plp-canvas. */
.plp-canvas a,
.plp-canvas a:link,
.plp-canvas a:visited,
.plp-canvas a:hover,
.plp-canvas a:active {
  color: inherit;
  text-decoration: none;
  transition: none;
}
.plp-canvas button {
  font-family: inherit;
  color: inherit;
}
/* Hide main site elements that may leak into blank template */
.page-template-page-blank .iznm-nav,
.page-template-page-blank .iznm-footer,
.page-template-page-blank .iznm-qr-scanner-overlay,
.page-template-page-blank:has(.plp-canvas) .iznm-pwa-banner {
  display: none !important;
}
body.page-template-page-blank:has(.plp-canvas) {
  background: #f5f3ee;
  margin: 0;
  padding: 0;
}

/* ---------- Reset / Canvas ---------- */
.plp-canvas {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 0 60px rgba(0,0,0,.06);
  overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  color: #161616;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.plp-canvas *, .plp-canvas *::before, .plp-canvas *::after {
  box-sizing: border-box;
}
.plp-canvas a { color: inherit; }
.plp-canvas img { display: block; max-width: 100%; }
.plp-canvas section[id] { scroll-margin-top: 64px; }

/* ---------- Header ---------- */
.plp-header {
  position: sticky;
  top: 0;
  z-index: 400;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #e6e3dc;
}
.plp-header__inner {
  height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.plp-header__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.plp-header__logo {
  height: 20px;
  width: auto;
}
.plp-header__partner-label {
  font-size: 11px;
  letter-spacing: .2em;
  color: #8a8a8a;
  font-weight: 500;
  padding-top: 1px;
}
.plp-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  background: #111;
  color: #fff !important;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
}
.plp-header__cta:hover { background: #000; color: #fff !important; }

/* ---------- Sections ---------- */
.plp-section { background: #ffffff; }
.plp-section--white { background: #ffffff; }
.plp-section--sand { background: #f4f1ea; }
.plp-section--dark { background: #111111; color: #c4c4c4; }
.plp-section--dark a { color: #c4c4c4; }
.plp-section--dark .plp-h2 { color: #ffffff; }
.plp-section--dark .plp-label { color: rgba(255,255,255,.5); }
.plp-section__inner {
  padding: clamp(52px, 12vw, 72px) 20px;
}

/* ---------- Label (section eyebrow) ---------- */
.plp-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #8a8a8a;
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
}
.plp-label--dark { color: #888; }
.plp-label--story { color: #cfcfcf; }

/* ---------- Slash mark ---------- */
.plp-slash {
  display: inline-block;
  width: 11px;
  height: 11px;
  clip-path: polygon(50% 16%, 78% 16%, 50% 84%, 22% 84%);
  background: #111;
  opacity: .4;
  flex-shrink: 0;
}
.plp-slash--white {
  background: #fff;
  opacity: .5;
}
.plp-slash--white-full {
  background: #fff;
  opacity: 1;
}
.plp-section--dark .plp-slash {
  background: #fff;
  opacity: .5;
}

/* ---------- Muted text ---------- */
.plp-muted { color: #9a948a; }
.plp-strong { font-weight: 700; color: #111; }

/* ---------- Typography ---------- */
.plp-h2 {
  margin: 0;
  font-weight: 700;
  line-height: 1.36;
  font-size: clamp(24px, 6.6vw, 32px);
  color: #111;
}
.plp-h2--white { color: #fff; }
.plp-h2-sub {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
  font-size: clamp(22px, 6vw, 29px);
  color: #111;
}
.plp-body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.85;
  color: #4c4c4c;
}
.plp-body--light { color: #c4c4c4; }
.plp-note {
  margin: 10px 0 0;
  font-size: 11px;
  color: #9a9a9a;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.plp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}
.plp-btn--filled {
  background: #111;
  color: #fff !important;
}
.plp-btn--filled:hover { background: #000; color: #fff !important; }
.plp-btn--outline {
  background: transparent;
  color: #111;
  border: 1px solid #111;
}
.plp-btn--outline:hover { background: #f4f1ea; }

/* ---------- Chip ---------- */
.plp-chip {
  font-size: 12.5px;
  color: #555;
  padding: 6px 12px;
  background: #f4f1ea;
  border: 1px solid #e6e2d9;
  border-radius: 4px;
}

/* ---------- Icon box ---------- */
.plp-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  flex-shrink: 0;
}
.plp-icon-box--sm {
  width: 38px;
  height: 38px;
}

/* ---------- Cards stack (generic) ---------- */
.plp-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================================
   HERO
   ============================================================ */
.plp-hero__inner {
  padding: clamp(40px, 10vw, 60px) 20px clamp(32px, 7vw, 44px);
}
.plp-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border: 1px solid #ddd8ce;
  border-radius: 9999px;
  margin-bottom: 22px;
}
.plp-hero__pill .plp-slash { opacity: 1; }
.plp-hero__pill-text {
  font-size: 11.5px;
  letter-spacing: .1em;
  color: #5a5a5a;
  font-weight: 500;
}
.plp-hero__h1 {
  margin: 0;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -.01em;
  font-size: clamp(30px, 8.4vw, 42px);
  color: #111;
}
.plp-hero__lead {
  margin: 20px 0 0;
  font-size: 15.5px;
  line-height: 1.85;
  color: #4c4c4c;
}
.plp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.plp-hero__points {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.plp-hero__point {
  display: flex;
  align-items: center;
  gap: 11px;
}
.plp-hero__point svg { color: #111; flex-shrink: 0; }
.plp-hero__point span {
  font-size: 14px;
  color: #222;
  font-weight: 500;
}
.plp-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
}
.plp-hero__img-wrap {
  margin-top: 26px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e6e2d9;
}
.plp-hero__img {
  width: 100%;
  height: auto;
  aspect-ratio: 25/18;
  object-fit: cover;
}

/* ============================================================
   S2 PROBLEM (dark)
   ============================================================ */
.plp-problem__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plp-problem__item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.plp-problem__item svg { flex-shrink: 0; }
.plp-problem__item p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #c4c4c4;
}
.plp-problem__quote {
  margin-top: 22px;
  padding: 20px 22px;
  background: #1c1c1c;
  border-left: 3px solid #fff;
  border-radius: 8px;
}
.plp-problem__quote p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #eee;
}
.plp-problem__em {
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid #fff;
}

/* ============================================================
   S3 HOW — Journey cards
   ============================================================ */
.plp-journey-card {
  background: #faf8f4;
  border: 1px solid #e9e5dc;
  border-radius: 10px;
  padding: 22px;
}
.plp-journey-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.plp-journey-card__num {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #dcd6c9;
  line-height: 1;
}
.plp-journey-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}
.plp-journey-card__body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: #555;
}

/* ============================================================
   S4 STAMP — CONNECT animation
   ============================================================ */
.plp-stamp__anim-wrap {
  margin-top: 20px;
  border-radius: 14px;
  background: #faf8f4;
  border: 1px solid #e9e5dc;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plp-stamp__caption {
  margin: 6px 0 0;
  font-size: 11.5px;
  color: #9a938a;
  text-align: center;
}

/* Phone frame */
.plp-phone {
  width: 390px;
  height: 844px;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  border-radius: 44px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  transform-origin: top center;
  transform: scale(calc(min(1, (100vw - 80px) / 390)));
  max-width: 100%;
}
/* Scale container for narrow viewports */
@media (max-width: 450px) {
  .plp-stamp__anim-wrap {
    padding: 20px 0;
    overflow: hidden;
  }
  .plp-phone {
    transform: scale(0.72);
    margin-bottom: -236px;
  }
}
@media (max-width: 380px) {
  .plp-phone {
    transform: scale(0.62);
    margin-bottom: -322px;
  }
}

/* Phone background (blurred mock) */
.plp-phone__bg {
  position: absolute;
  inset: 0;
  padding: 68px 22px 0;
  filter: blur(7px);
  opacity: .5;
  pointer-events: none;
}
.plp-phone__bg-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.plp-phone__bg-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1e1e1e;
  border: 1px solid #333;
}
.plp-phone__bg-lines { flex: 1; }
.plp-phone__bg-line {
  border-radius: 3px;
  background: #1e1e1e;
  margin-bottom: 8px;
}
.plp-phone__bg-line--long { width: 120px; height: 13px; }
.plp-phone__bg-line--short { width: 78px; height: 10px; background: #333; }
.plp-phone__bg-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plp-phone__bg-card {
  height: 58px;
  border-radius: 8px;
  background: #1e1e1e;
}

/* Overlay */
.plp-phone__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(20,20,20,.9);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
  animation: ov-backdropIn .35s ease both;
}

/* White reveal */
.plp-ov-white {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: radial-gradient(circle at 50% 46%, #ffffff, #f2f2f2 82%);
  animation: none;
}

/* Panels (slash split) */
.plp-ov-panelA,
.plp-ov-panelB {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 1600px;
  transform: translate(-50%,-50%);
  z-index: 7;
  pointer-events: none;
  background: #1a1a1a;
  animation: none;
}
.plp-ov-panelA { clip-path: polygon(0 0, 83.4% 0, 16.6% 100%, 0 100%); }
.plp-ov-panelB { clip-path: polygon(83.4% 0, 100% 0, 100% 100%, 16.6% 100%); }

/* Seam light */
.plp-ov-seam {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 210%;
  transform: translate(-50%,-50%) rotate(26.6deg);
  z-index: 8;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0), #ffffff 42%, #ffffff 58%, rgba(255,255,255,0));
  box-shadow: 0 0 24px 4px rgba(255,255,255,.9), 0 0 62px rgba(255,255,255,.5);
  animation: none;
}

/* Logo */
.plp-ov-logo {
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  animation: none;
}
.plp-ov-logo__img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.2));
}

/* Center content */
.plp-ov-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -40px;
}

/* Avatar area */
.plp-ov-avatar-area {
  position: relative;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Halo */
.plp-ov-halo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,180,230,.34), rgba(61,122,181,.16) 45%, rgba(61,122,181,0) 70%);
  filter: blur(7px);
  transform: translate(-50%,-50%);
  opacity: .75;
  pointer-events: none;
  animation: none;
}

/* Rings */
.plp-ov-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  animation: none;
}
.plp-ov-ring--1 {
  border: 2px solid rgba(127,180,230,.4);
  box-shadow: 0 0 14px rgba(127,180,230,.28);
}
.plp-ov-ring--2 {
  border: 2px solid rgba(61,122,181,.35);
}
.plp-ov-ring--3 {
  border: 1px solid rgba(61,122,181,.3);
}

/* Flash */
.plp-ov-flash {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  mix-blend-mode: screen;
  background: radial-gradient(circle, #fff 0%, rgba(127,180,230,.35) 40%, rgba(127,180,230,0) 72%);
  animation: none;
}

/* Particles container */
.plp-ov-particles {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
}

/* Avatar ring + inner */
.plp-ov-avatar-ring {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(145deg, #7fb4e6, #3d7ab5);
  box-shadow: 0 0 26px rgba(127,180,230,.4);
  animation: none;
}
.plp-ov-avatar-inner {
  width: 80px;
  height: 80px;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
  border: 2px solid rgba(20,20,20,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

/* Badge */
.plp-ov-badge {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px 5px 11px;
  border-radius: 9999px;
  border: 1px solid rgba(127,180,230,.4);
  background: rgba(127,180,230,.08);
  box-shadow: 0 0 14px rgba(127,180,230,.18);
  animation: none;
}
.plp-ov-badge__num {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #7fb4e6;
  text-shadow: 0 0 10px rgba(127,180,230,.7);
}
.plp-ov-badge__unit {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  color: #8a8a8a;
}

/* Label */
.plp-ov-label {
  margin-top: 14px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7fb4e6;
  text-shadow: 0 0 18px rgba(127,180,230,.6);
  animation: none;
}

/* Title */
.plp-ov-title {
  margin-top: 12px;
  white-space: nowrap;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #e8e8e8;
  animation: none;
}

/* Messages */
.plp-ov-msg {
  margin-top: 14px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .02em;
  color: #8a8a8a;
  animation: none;
}
.plp-ov-msg + .plp-ov-msg { margin-top: 6px; }

/* Date */
.plp-ov-date {
  position: absolute;
  bottom: 58px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: none;
}
.plp-ov-date__line {
  width: 26px;
  height: 1px;
  background: #333;
}
.plp-ov-date__text {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: .06em;
  color: #666;
  font-size: 13px;
}
.plp-ov-date__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #444;
  align-self: center;
}

/* Tap hint */
.plp-ov-tap {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: .08em;
  color: #666;
  animation: ov-tapHint 2.4s ease-in-out infinite;
  pointer-events: none;
}

/* Stamp perks */
.plp-stamp__perks {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plp-stamp__perk {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid #e6e1d6;
  border-radius: 9px;
  padding: 15px 17px;
}
.plp-stamp__perk svg { flex-shrink: 0; color: #111; }
.plp-stamp__perk span {
  font-size: 14.5px;
  color: #222;
  font-weight: 500;
}

/* ---------- Dark box ---------- */
.plp-dark-box {
  margin-top: 20px;
  padding: 22px 22px;
  background: #111;
  border-radius: 10px;
}
.plp-dark-box__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.plp-dark-chip {
  font-size: 12.5px;
  color: #ddd;
  padding: 6px 12px;
  background: #242424;
  border: 1px solid #383838;
  border-radius: 4px;
}
.plp-dark-box__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
  font-weight: 700;
}
.plp-dark-box__tagline {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #fff;
}
.plp-dark-box__em {
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid #fff;
}

/* ============================================================
   S5 COMPARE — Table
   ============================================================ */
.plp-compare-scroll {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid #e2ddd2;
  border-radius: 10px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.plp-compare-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 1080px;
  font-size: 12px;
}
/* Header cells */
.plp-compare-th {
  padding: 12px 12px;
  font-weight: 500;
  border-bottom: 1px solid #e2ded4;
  text-align: left;
  min-width: 130px;
}
.plp-compare-th--label {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #f7f5f0;
  color: #7a7a7a;
  min-width: 120px;
}
.plp-compare-th--iznm {
  background: #111;
  color: #fff;
  font-weight: 700;
  letter-spacing: .06em;
  border-bottom-color: #111;
  text-align: center;
  min-width: 150px;
}
.plp-compare-th--other {
  background: #f7f5f0;
  color: #5a5a5a;
  font-weight: 600;
}
/* Body cells */
.plp-compare-td {
  padding: 11px 12px;
  border-bottom: 1px solid #eeeae1;
  vertical-align: top;
}
.plp-compare-td--label {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fbfaf7;
  color: #222;
  font-weight: 700;
}
.plp-compare-td--iznm {
  background: #f2efe8;
  border-left: 1px solid #111;
  border-right: 1px solid #111;
}
.plp-compare-cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.plp-compare-sym {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1;
}
.plp-compare-td--other .plp-compare-sym {
  font-size: 15px;
}
.plp-compare-sym--dim { color: #b0b0b0; }
.plp-compare-note {
  font-size: 11px;
  line-height: 1.5;
  color: #777;
}
.plp-compare-note--iznm {
  font-size: 11.5px;
  color: #333;
  font-weight: 500;
}
.plp-compare-legend {
  margin-top: 12px;
  font-size: 11.5px;
  color: #666;
}

/* ============================================================
   S6 TAGS — Tag features
   ============================================================ */
.plp-tags__img-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2ddd2;
  margin-top: 22px;
}
.plp-tags__img {
  width: 100%;
  height: auto;
  aspect-ratio: 10/7;
  object-fit: cover;
}
.plp-tag-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.plp-tag-feature {
  background: #fff;
  border: 1px solid #e6e1d6;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.plp-tag-feature__title {
  margin: 0 0 5px;
  font-size: 15.5px;
  font-weight: 700;
  color: #111;
}
.plp-tag-feature__body {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: #555;
}

/* ============================================================
   S7 PRICING — Cards
   ============================================================ */
.plp-pricing-card {
  border-radius: 12px;
  padding: 24px;
}
.plp-pricing-card--dark {
  background: #111;
}
.plp-pricing-card--sand {
  background: #faf8f4;
  border: 1px solid #e9e5dc;
}
.plp-pricing-card--outline {
  background: #fff;
  border: 2px solid #111;
}
.plp-pricing-card__label {
  font-size: 11.5px;
  letter-spacing: .14em;
  color: #bdbdbd;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plp-pricing-card__label--sand { color: #8a8a8a; }
.plp-pricing-card__price {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.plp-pricing-card__price--dark { color: #111; font-size: 34px; }
.plp-pricing-card__tax {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #9a9a9a;
}
.plp-pricing-card__tax--dark { color: #8a8a8a; }
.plp-pricing-card__desc {
  font-size: 13px;
  color: #c8c8c8;
  margin-top: 7px;
}
.plp-pricing-card__desc--dark { color: #555; }
.plp-pricing-card__divider {
  height: 1px;
  background: #333;
  margin: 16px 0;
}
.plp-pricing-card__divider--sand { background: #e6e1d6; }
.plp-pricing-card__includes-label {
  font-size: 11px;
  letter-spacing: .1em;
  color: #8a8a8a;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.plp-pricing-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.plp-pricing-card__item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.plp-pricing-card__item svg { flex-shrink: 0; margin-top: 2px; }
.plp-pricing-card__item--dark span {
  font-size: 12.5px;
  color: #d4d4d4;
  line-height: 1.4;
}
.plp-pricing-card__item--sand span {
  font-size: 12.5px;
  color: #555;
  line-height: 1.4;
}
.plp-pricing-card__tag-label {
  font-size: 11.5px;
  letter-spacing: .1em;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.plp-pricing-card__headline {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  line-height: 1.45;
}
.plp-underline { border-bottom: 3px solid #111; }
.plp-pricing-card__note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.75;
  color: #555;
}

/* ============================================================
   S8 PLANS — Plan cards
   ============================================================ */
.plp-plan-card {
  background: #fff;
  border: 1px solid #e6e1d6;
  border-top: 3px solid #111;
  border-radius: 10px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
}
.plp-plan-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}
.plp-plan-card__label {
  font-size: 11.5px;
  letter-spacing: .14em;
  font-weight: 700;
  text-transform: uppercase;
  color: #8a8a8a;
}
.plp-plan-card__name {
  margin: 0 0 9px;
  font-size: 19px;
  font-weight: 700;
  color: #111;
}
.plp-plan-card__desc {
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #3f3f3f;
  font-weight: 500;
}
.plp-plan-card__body {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.8;
  color: #666;
}
.plp-plan-card__cta {
  margin-top: auto;
  min-height: 52px;
  padding: 0 20px;
  font-size: 13px;
  letter-spacing: .08em;
}

/* ============================================================
   S9 ROLLOUT — Timeline
   ============================================================ */
.plp-timeline {
  display: flex;
  flex-direction: column;
}
.plp-timeline__step {
  display: flex;
  gap: 14px;
}
.plp-timeline__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.plp-timeline__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: #111;
}
.plp-timeline__line {
  flex: 1;
  width: 1px;
  background: #ddd8ce;
  min-height: 20px;
}
.plp-timeline__right {
  padding-bottom: 18px;
}
.plp-timeline__title {
  margin: 0 0 3px;
  font-size: 15.5px;
  font-weight: 700;
  color: #111;
}
.plp-timeline__time {
  font-size: 11.5px;
  font-weight: 500;
  color: #9a9a9a;
  margin-left: 10px;
}
.plp-timeline__body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #555;
}
.plp-rollout-box {
  margin-top: 6px;
  padding: 20px 22px;
  background: #faf8f4;
  border: 1px solid #e9e5dc;
  border-radius: 10px;
}
.plp-rollout-box__sub {
  margin: 0 0 8px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #555;
}
.plp-rollout-box__main {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #111;
  font-weight: 700;
}

/* ============================================================
   S10 STORY — Dark image section
   ============================================================ */
.plp-story {
  background: #000;
  position: relative;
}
.plp-story__bg {
  position: relative;
  min-height: clamp(380px, 88vw, 460px);
  display: flex;
  align-items: flex-end;
}
.plp-story__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.plp-story__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000 6%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.5));
}
.plp-story__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(40px, 10vw, 60px) 20px;
}
.plp-h2-story {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
  font-size: clamp(23px, 6.2vw, 30px);
  color: #fff;
}
.plp-story__text {
  margin: 18px 0 0;
  font-size: 14.5px;
  line-height: 1.9;
  color: #c8c8c8;
}

/* ============================================================
   S11 FAQ — Accordion
   ============================================================ */
.plp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.plp-faq-item {
  background: #faf8f4;
  border: 1px solid #e9e5dc;
  border-radius: 10px;
  overflow: hidden;
}
.plp-faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}
.plp-faq-q__content {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.plp-faq-q__mark {
  color: #9a9a9a;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.plp-faq-q__text {
  font-size: 14.5px;
  font-weight: 700;
  color: #161616;
  line-height: 1.5;
}
.plp-faq-q__chevron {
  flex-shrink: 0;
  margin-top: 2px;
}
/* Chevron toggle */
.plp-faq-q__chevron--up { display: none; }
.plp-faq-q__chevron--down { display: inline-flex; }
.plp-faq-item--open .plp-faq-q__chevron--up { display: inline-flex; }
.plp-faq-item--open .plp-faq-q__chevron--down { display: none; }

/* Answer */
.plp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 18px 0 42px;
}
.plp-faq-a p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.85;
  color: #555;
}
.plp-faq-item--open .plp-faq-a {
  max-height: 500px;
  padding: 0 18px 18px 42px;
}

/* ============================================================
   S12 FINAL CTA (dark)
   ============================================================ */
.plp-cta-section { background: #111; }
.plp-cta__inner {
  padding: clamp(56px, 13vw, 84px) 20px;
}
.plp-cta__center { text-align: center; }
.plp-cta__logo {
  height: 30px;
  width: auto;
  margin: 0 auto 22px;
  filter: invert(1);
}
.plp-cta__h2 {
  margin: 0;
  font-weight: 700;
  line-height: 1.34;
  font-size: clamp(26px, 7.2vw, 36px);
  color: #fff;
}
.plp-cta__lead {
  margin: 20px 0 0;
  font-size: 14.5px;
  line-height: 1.9;
  color: #c4c4c4;
}
.plp-cta__strong {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
  font-weight: 700;
}
.plp-cta__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 30px;
}
.plp-cta__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: #1e1e1e;
  border: 1px solid #383838;
  border-radius: 10px;
  text-decoration: none;
}
.plp-cta__link:hover {
  background: #262626;
  border-color: #4a4a4a;
}
.plp-cta__link-left {
  display: flex;
  align-items: center;
  gap: 11px;
}
.plp-cta__link-left span {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.plp-cta__legal {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #333;
}
.plp-cta__legal p {
  margin: 0;
  font-size: 11px;
  line-height: 1.9;
  color: #888;
  white-space: pre-line;
}

/* ============================================================
   Footer
   ============================================================ */
.plp-footer {
  background: #000;
  border-top: 1px solid #333;
}
.plp-footer__inner {
  padding: 26px 20px 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.plp-footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.plp-footer__logo {
  height: 18px;
  width: auto;
  filter: invert(1);
}
.plp-footer__partner-label {
  font-size: 10.5px;
  letter-spacing: .18em;
  color: #888;
  padding-top: 1px;
}
.plp-footer__tagline {
  font-size: 11.5px;
  color: #888;
}

/* ============================================================
   Sticky CTA
   ============================================================ */
.plp-sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 500;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid #e6e2d9;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
}
.plp-sticky-cta__btn {
  min-height: 50px;
  font-size: 14px;
  letter-spacing: .14em;
  border-radius: 6px;
}

/* ============================================================
   Smooth scroll
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .plp-canvas { scroll-behavior: smooth; }
}
