/* ================================================
   URUTEQ LP — Sales Deck Landing Page
   Refined BtoB SaaS aesthetic
   Typography: Noto Sans JP (100-900)
   Palette:
     --lp-navy:   #0e1b3d
     --lp-blue:   #29A9FF
     --lp-dark:   #0a0e19
     --lp-text:   #2d3548
     --lp-muted:  #6b7a94
     --lp-light:  #f5f7fb
     --lp-border: rgba(14,27,61,.07)
   ================================================ */

:root {
  --lp-navy:   #0e1b3d;
  --lp-blue:   #29A9FF;
  --lp-dark:   #0a0e19;
  --lp-text:   #2d3548;
  --lp-muted:  #6b7a94;
  --lp-light:  #f5f7fb;
  --lp-border: rgba(14,27,61,.07);
  --lp-radius: 14px;
}

/* ================================================
   1. BASE RESET & SECTION RHYTHM
   ================================================ */

/* --- Reset & Base --- */
.landingPage #Contents {
  max-width: 100%; overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--lp-text);
}

.pc-view { display: block; }
.sp-view { display: none; }
@media (max-width: 768px) {
  .pc-view { display: none; }
  .sp-view { display: block; }
}

/* --- Section Rhythm --- */
.lp-section { padding: 96px 0; }
.lp-section__inner { max-width: 1040px; margin: 0 auto; padding: 0 32px; }

.lp-section__heading {
  font-size: 30px; font-weight: 900; line-height: 1.6;
  color: var(--lp-navy); text-align: center;
  margin-bottom: 20px; letter-spacing: .01em;
}
.lp-section__heading--left { text-align: left; }

.lp-section__lead {
  font-size: 15px; color: var(--lp-muted); text-align: center;
  margin-bottom: 56px; letter-spacing: .03em;
}

@media (max-width: 768px) {
  .lp-section { padding: 64px 0; }
  .lp-section__inner { padding: 0 20px; }
  .lp-section__heading { font-size: 22px; }
  .lp-section__lead { margin-bottom: 36px; }
}

/* ================================================
   2. BRIDGE BLOCK
   ================================================ */
.lp-bridge {
  margin-top: 48px; padding: 32px 36px;
  background: var(--lp-light);
  border-left: 3px solid var(--lp-blue);
  border-radius: 0 var(--lp-radius) var(--lp-radius) 0;
  font-size: 16px; line-height: 1.85; color: var(--lp-text);
}
.lp-bridge p { margin-bottom: 12px; }
.lp-bridge p:last-child { margin-bottom: 0; }
.lp-bridge strong { color: var(--lp-navy); font-weight: 700; }
.lp-bridge__accent {
  margin-top: 8px; padding-top: 16px;
  border-top: 1px solid var(--lp-border);
  font-weight: 500;
}

@media (max-width: 768px) {
  .lp-bridge { padding: 24px 20px; font-size: 15px; }
}

/* ================================================
   3. BUTTONS
   ================================================ */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-weight: 700;
  border-radius: 60px; cursor: pointer; border: none;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.lp-btn--primary {
  background: var(--lp-blue); color: #fff;
  font-size: 15px; padding: 16px 36px;
  box-shadow: 0 2px 12px rgba(41,169,255,.2);
}
.lp-btn--primary:hover {
  background: #1d9dee;
  box-shadow: 0 6px 24px rgba(41,169,255,.3);
  transform: translateY(-2px);
}
.lp-btn--glow {
  box-shadow: 0 0 0 1px rgba(41,169,255,.3), 0 4px 24px rgba(41,169,255,.25);
}
.lp-btn--glow:hover {
  box-shadow: 0 0 0 1px rgba(41,169,255,.5), 0 8px 32px rgba(41,169,255,.35);
}
.lp-btn--ghost {
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.15);
  font-size: 15px; padding: 15px 32px;
  border-radius: 60px; font-weight: 500;
}
.lp-btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  transform: translateY(-2px);
}
.lp-btn--white {
  background: #fff; color: var(--lp-navy);
  font-size: 15px; padding: 16px 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.lp-btn--white:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
  transform: translateY(-2px);
}
.lp-btn--lg { font-size: 17px; padding: 20px 48px; }

/* ================================================
   4. HERO
   ================================================ */
.lp-hero {
  position: relative; overflow: hidden;
  padding: 140px 0 100px;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  background: var(--lp-dark);
  text-align: center;
  box-sizing: border-box;
}
.lp-hero__bg {
  position: absolute; inset: 0; pointer-events: none;
}
/* Subtle grid pattern */
.lp-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(41,169,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,169,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}
.lp-hero__glow {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(41,169,255,.08) 0%,
    rgba(14,27,61,.05) 40%,
    transparent 65%);
}
.lp-hero__glow--2 {
  top: 70%; width: 600px; height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(41,169,255,.04) 0%,
    transparent 60%);
}
.lp-hero__logo {
  position: absolute; top: 36px; left: 44px; z-index: 2;
}
.lp-hero__logo img { height: 28px; width: auto; opacity: .9; }
.lp-hero__inner {
  max-width: 960px; margin: 0 auto; padding: 0 32px;
  position: relative; z-index: 1;
  width: 100%;
}
.lp-hero__label {
  display: inline-block;
  font-size: 13px; font-weight: 500; letter-spacing: .16em;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 60px;
}
/* Neon glow label variant */
.lpd-hero__label--glow {
  color: rgba(255,255,255,.85);
  font-weight: 600; letter-spacing: .12em;
  padding: 10px 28px;
  border-color: rgba(41,169,255,.4);
  background: rgba(41,169,255,.08);
  box-shadow:
    0 0 12px rgba(41,169,255,.15),
    0 0 40px rgba(41,169,255,.08),
    inset 0 0 12px rgba(41,169,255,.06);
  text-shadow: 0 0 16px rgba(41,169,255,.4);
  animation: lpd-label-glow 3s ease-in-out infinite;
}
@keyframes lpd-label-glow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(41,169,255,.15), 0 0 40px rgba(41,169,255,.08), inset 0 0 12px rgba(41,169,255,.06);
    border-color: rgba(41,169,255,.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(41,169,255,.25), 0 0 60px rgba(41,169,255,.12), inset 0 0 16px rgba(41,169,255,.1);
    border-color: rgba(41,169,255,.55);
  }
}
.lp-hero__heading {
  font-size: 44px; font-weight: 900; line-height: 1.55;
  color: #fff; margin-bottom: 32px;
  letter-spacing: .02em;
}
.lp-hero__sub {
  font-size: 16px; line-height: 1.9;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px; max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.lp-hero__sub em {
  font-style: normal; color: #fff; font-weight: 700;
}
.lp-hero__actions {
  display: flex; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  margin-top: 48px;
}

/* 3-phase flow visualization */
.lpd-hero__flow {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-top: 56px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.lpd-hero__flow-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
  min-width: 160px;
  flex-shrink: 0;
  transition: all .3s ease;
}
.lpd-hero__flow-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-2px);
}
.lpd-hero__flow-card--center {
  background: rgba(41,169,255,.12);
  border-color: rgba(41,169,255,.3);
  padding: 32px 40px;
  min-width: 180px;
}
.lpd-hero__flow-card--center:hover {
  background: rgba(41,169,255,.18);
  border-color: rgba(41,169,255,.45);
}
.lpd-hero__flow-card-icon {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.4);
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center;
}
.lpd-hero__flow-card-icon svg {
  width: 28px; height: 28px; opacity: .5;
}
.lpd-hero__flow-card--center .lpd-hero__flow-card-icon {
  color: var(--lp-blue);
  font-size: 15px; font-weight: 800; letter-spacing: .06em;
}
.lpd-hero__flow-card--center .lpd-hero__flow-card-icon svg {
  opacity: 1;
}
.lpd-hero__flow-card-name {
  font-size: 16px; font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
}
.lpd-hero__flow-card--center .lpd-hero__flow-card-name {
  color: #fff; font-size: 18px; font-weight: 900;
}
.lpd-hero__flow-card-sub {
  font-size: 13px; color: rgba(255,255,255,.35);
  margin-top: 6px; letter-spacing: .08em;
}
.lpd-hero__flow-arrow {
  color: rgba(255,255,255,.2);
  padding: 0 16px;
  flex-shrink: 0;
  display: flex; align-items: center;
}
.lpd-hero__flow-arrow svg {
  width: 36px; height: 20px;
}

@media (max-width: 768px) {
  .lp-hero { padding: 100px 0 80px; min-height: auto; }
  .lp-hero__logo { top: 24px; left: 24px; }
  .lp-hero__logo img { height: 20px; }
  .lp-hero__label { font-size: 11px; padding: 6px 16px; letter-spacing: .12em; }
  .lp-hero__heading { font-size: 28px; }
  .lp-hero__sub { font-size: 14px; }
  .lp-hero__actions { flex-direction: column; align-items: center; }
  .lp-hero__grid { background-size: 48px 48px; }

  .lpd-hero__flow {
    flex-direction: column; gap: 0;
    margin-top: 40px;
  }
  .lpd-hero__flow-card {
    min-width: 200px; padding: 20px 28px;
  }
  .lpd-hero__flow-card--center {
    min-width: 220px; padding: 24px 32px;
  }
  .lpd-hero__flow-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

/* ================================================
   5. PROBLEM CARDS
   ================================================ */
.lpd-problems { background: #fff; }

.lp-card-grid { display: grid; gap: 20px; }
.lp-card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lp-card-grid--2x2 { grid-template-columns: repeat(2, 1fr); }

.lp-card {
  border-radius: var(--lp-radius);
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.lp-card--problem {
  background: var(--lp-light);
  border: 1px solid var(--lp-border);
  padding: 36px 32px;
  position: relative;
}
.lp-card--problem:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(14,27,61,.07);
  border-color: rgba(41,169,255,.12);
}
.lp-card__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--lp-navy); color: #fff;
  font-size: 13px; font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.lp-card__title {
  font-size: 18px; font-weight: 700; color: var(--lp-navy);
  margin-bottom: 10px; line-height: 1.5;
}
.lp-card__text {
  font-size: 15px; line-height: 1.7; color: var(--lp-muted);
}

/* Card header — icon + title side by side */
.lp-card__header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px;
}
.lp-card__header .lp-card__title {
  margin-bottom: 0;
}
.lp-card__header .lp-card__icon {
  margin-bottom: 0;
}

/* Card icon */
.lp-card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(41,169,255,.06);
  border-radius: 12px;
  flex-shrink: 0;
  color: var(--lp-blue);
}

@media (max-width: 768px) {
  .lp-card-grid--3 { grid-template-columns: 1fr; }
  .lp-card-grid--2x2 { grid-template-columns: 1fr; }
  .lp-card--problem { padding: 28px 24px; }
}

/* ================================================
   6. INSIGHT SECTION
   ================================================ */
.lpd-insight { background: var(--lp-light); }

.lpd-step-cards {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0; margin-top: 48px; max-width: 720px; margin-left: auto; margin-right: auto;
}
.lpd-step-card {
  flex: 1; text-align: center;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px 20px;
  position: relative;
  transition: all .3s ease;
}
.lpd-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(14,27,61,.06);
}
.lpd-step-card--active {
  background: var(--lp-navy); color: #fff;
  border-color: var(--lp-navy);
}
.lpd-step-card__icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  background: rgba(41,169,255,.08);
  color: var(--lp-blue);
}
.lpd-step-card--active .lpd-step-card__icon {
  background: rgba(41,169,255,.2);
  color: var(--lp-blue);
}
.lpd-step-card__label {
  font-size: 18px; font-weight: 900; color: var(--lp-navy);
  margin-bottom: 6px;
}
.lpd-step-card--active .lpd-step-card__label { color: #fff; }
.lpd-step-card__sub {
  font-size: 13px; color: var(--lp-muted);
}
.lpd-step-card--active .lpd-step-card__sub { color: rgba(255,255,255,.6); }
.lpd-step-arrow {
  display: flex; align-items: center; padding: 0 8px;
  color: var(--lp-muted); font-size: 18px;
}

@media (max-width: 768px) {
  .lpd-step-cards {
    flex-direction: column; gap: 12px;
  }
  .lpd-step-arrow { display: none; }
}

/* Insight CTA メッセージ（強調） */
.lpd-insight__cta-message {
  text-align: center;
  margin-top: 56px;
  padding: 48px 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 24px rgba(14,27,61,.06);
  position: relative;
}
.lpd-insight__cta-message::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--lp-blue), rgba(41,169,255,.3));
  border-radius: 2px;
}
.lpd-insight__cta-message p {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.6;
  color: var(--lp-navy);
  letter-spacing: .02em;
  margin: 0;
}
.lpd-insight__cta-message strong {
  color: var(--lp-blue);
  font-weight: 900;
}

@media (max-width: 768px) {
  .lpd-insight__cta-message {
    margin-top: 40px;
    padding: 36px 24px;
  }
  .lpd-insight__cta-message p {
    font-size: 20px;
  }
}

/* ================================================
   7. HUB SECTION (DARK)
   ================================================ */
.lpd-hub {
  background: var(--lp-dark); color: #fff;
  position: relative; overflow: hidden;
}
/* Glow overlay */
.lpd-hub::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(41,169,255,.06) 0%, transparent 55%);
  pointer-events: none;
}
.lpd-hub .lp-section__heading { color: #fff; }
.lpd-hub .lp-section__lead { color: rgba(255,255,255,.5); }

.lpd-hub__layout {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin-top: 48px; position: relative;
}
.lpd-hub__col {
  display: flex; flex-direction: column; gap: 10px;
  flex: 0 0 200px;
}
.lpd-hub__col-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: rgba(255,255,255,.4); text-align: center;
  margin-bottom: 6px; text-transform: uppercase;
}
.lpd-hub__item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: all .3s ease;
}
.lpd-hub__item:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
}
.lpd-hub__item-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(41,169,255,.15);
  color: var(--lp-blue);
  flex-shrink: 0;
}
.lpd-hub__center {
  flex-shrink: 0;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-navy), #1a3a7a);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 60px rgba(41,169,255,.2);
}
.lpd-hub__center-logo {
  font-size: 16px; font-weight: 900; color: #fff;
  letter-spacing: .04em;
}
.lpd-hub__center-sub {
  font-size: 10px; color: rgba(255,255,255,.5);
  margin-top: 4px; letter-spacing: .06em;
}
/* Pulse ring animation */
.lpd-hub__center::after {
  content: ''; position: absolute; inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(41,169,255,.2);
  animation: lpd-pulse-ring 2.5s ease-out infinite;
}
@keyframes lpd-pulse-ring {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.3); opacity: 0; }
}
.lpd-hub__arrow {
  display: flex; align-items: center;
  color: rgba(255,255,255,.15); padding: 0 4px;
}

@media (max-width: 768px) {
  .lpd-hub__layout {
    flex-direction: column; gap: 24px;
  }
  .lpd-hub__col { flex: none; width: 100%; }
  .lpd-hub__arrow {
    transform: rotate(90deg); padding: 4px 0;
  }
}

/* ================================================
   8. MID CTA
   ================================================ */
.lp-mid-cta {
  background: var(--lp-navy);
  text-align: center;
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.lp-mid-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(41,169,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.lp-mid-cta__text {
  font-size: 22px; font-weight: 700; color: #fff;
  margin-bottom: 32px; position: relative;
  letter-spacing: .01em;
}
.lp-mid-cta__note {
  font-size: 13px; color: rgba(255,255,255,.4); margin-top: 16px;
  position: relative; letter-spacing: .04em;
}
.lp-mid-cta .lp-btn { position: relative; }

/* ================================================
   9. FEATURES — Alternating text + viz layout
   ================================================ */
.lp-features { background: #fff; }

.lp-features .lp-section__inner {
  max-width: 1200px;
}
.lp-feature-list {
  max-width: 100%; margin: 0 auto;
  display: flex; flex-direction: column; gap: 80px;
}

.lp-feature-item {
  display: flex; align-items: center; gap: 48px;
}
.lp-feature-item--reverse {
  flex-direction: row-reverse;
}

/* Text content side */
.lp-feature-item__content {
  flex: 1; min-width: 0;
}
.lp-feature-item__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--lp-navy); color: #fff;
  font-size: 15px; font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.lp-feature-item__title {
  font-size: 22px; font-weight: 900; color: var(--lp-navy);
  margin-bottom: 14px; line-height: 1.5;
  letter-spacing: .01em;
}
.lp-feature-item__text {
  font-size: 16px; line-height: 1.85; color: var(--lp-muted);
}

/* Image side (original lp-ad style) */
.lp-feature-item__image {
  flex: 0 0 58%;
  max-width: 58%;
}
.lp-feature-item__image img {
  width: 100%; height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(14,27,61,.08);
  border: 1px solid var(--lp-border);
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s cubic-bezier(.4,0,.2,1);
}
.lp-feature-item:hover .lp-feature-item__image img {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(14,27,61,.12);
}

/* Viz container (Sales Deck specific — replaces image for interactive viz) */
.lpd-feature-viz {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  overflow: hidden;
  background: var(--lp-light);
  padding: 32px;
}

/* --- Funnel viz (feature 1) --- */
.lpd-viz-funnel { text-align: center; }
.lpd-viz-funnel__tags {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px; margin-bottom: 20px;
}
.lpd-viz-funnel__tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
  background: #fff; border: 1px solid var(--lp-border);
  color: var(--lp-text);
}
.lpd-viz-funnel__tag--online { border-color: rgba(41,169,255,.2); color: var(--lp-blue); }
.lpd-viz-funnel__tag--offline { border-color: rgba(245,158,11,.2); color: #d97706; }
.lpd-viz-funnel__shape {
  width: 100%; max-width: 360px; margin: 0 auto;
}
.lpd-viz-funnel__db {
  margin-top: 16px; padding: 14px 20px;
  background: linear-gradient(135deg, var(--lp-navy), #1a3a7a);
  border-radius: 10px; color: #fff;
  font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}

/* --- Dashboard viz (feature 2) --- */
.lpd-viz-dash {
  background: #1e293b; border-radius: 12px;
  overflow: hidden; padding: 0;
  border: 1px solid rgba(255,255,255,.06);
}
.lpd-viz-dash__header {
  background: #334155; padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
}
.lpd-viz-dash__dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.lpd-viz-dash__dot--r { background: #ef4444; }
.lpd-viz-dash__dot--y { background: #eab308; }
.lpd-viz-dash__dot--g { background: #22c55e; }
.lpd-viz-dash__title {
  font-size: 12px; color: #94a3b8; margin-left: 8px;
}
.lpd-viz-dash__body { padding: 16px; }
.lpd-viz-dash__row {
  display: flex; align-items: center;
  padding: 8px 12px; border-bottom: 1px solid #334155;
  font-size: 12px; color: #94a3b8;
  transition: background .3s;
}
.lpd-viz-dash__row:last-child { border-bottom: none; }
.lpd-viz-dash__row--high {
  background: rgba(59,130,246,.1);
  border-left: 3px solid #3b82f6;
  color: #e2e8f0;
}
.lpd-viz-dash__row--mid {
  background: rgba(245,158,11,.05);
  border-left: 3px solid #f59e0b;
}
.lpd-viz-dash__row--low {
  opacity: .5;
  border-left: 3px solid transparent;
}
.lpd-viz-dash__cell { flex: 1; }
.lpd-viz-dash__cell--name { font-weight: 600; flex: 2; }
.lpd-viz-dash__score-bar {
  height: 6px; border-radius: 3px;
  background: #334155; overflow: hidden;
  width: 60px;
}
.lpd-viz-dash__score-fill {
  height: 100%; border-radius: 3px;
}
.lpd-viz-dash__callout {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 20px;
  background: rgba(59,130,246,.1);
  font-size: 11px; font-weight: 600; color: #60a5fa;
}

/* --- Action grid viz (feature 3) --- */
.lpd-viz-actions {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.lpd-viz-action-card {
  background: #fff; border-radius: 12px;
  padding: 24px 18px; text-align: center;
  border: 1px solid var(--lp-border);
  transition: all .3s ease;
}
.lpd-viz-action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(14,27,61,.06);
}
.lpd-viz-action-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 16px;
}
.lpd-viz-action-card__icon--form { background: rgba(59,130,246,.08); color: #3b82f6; }
.lpd-viz-action-card__icon--ad { background: rgba(168,85,247,.08); color: #a855f7; }
.lpd-viz-action-card__icon--web { background: rgba(16,185,129,.08); color: #10b981; }
.lpd-viz-action-card__icon--mail { background: rgba(245,158,11,.08); color: #f59e0b; }
.lpd-viz-action-card__name {
  font-size: 13px; font-weight: 600; color: var(--lp-navy);
}

/* --- Cycle viz (feature 4) --- */
.lpd-viz-cycle {
  position: relative;
  width: 320px; height: 320px;
  margin: 0 auto;
}
.lpd-viz-cycle__ring {
  position: absolute; inset: 0;
  border: 2px dashed rgba(41,169,255,.2);
  border-radius: 50%;
}
.lpd-viz-cycle__center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-blue), #6366f1);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  box-shadow: 0 4px 20px rgba(41,169,255,.3);
}
.lpd-viz-cycle__step {
  position: absolute;
  width: 90px; text-align: center;
}
.lpd-viz-cycle__step-icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px;
  background: #fff; border: 2px solid var(--lp-border);
  color: var(--lp-blue); font-size: 14px;
  box-shadow: 0 2px 8px rgba(14,27,61,.06);
}
.lpd-viz-cycle__step-label {
  font-size: 12px; font-weight: 700; color: var(--lp-navy);
}
/* Position 4 steps around the circle */
.lpd-viz-cycle__step--top { top: -10px; left: 50%; transform: translateX(-50%); }
.lpd-viz-cycle__step--right { top: 50%; right: -20px; transform: translateY(-50%); }
.lpd-viz-cycle__step--bottom { bottom: -10px; left: 50%; transform: translateX(-50%); }
.lpd-viz-cycle__step--left { top: 50%; left: -20px; transform: translateY(-50%); }

@media (max-width: 768px) {
  .lp-feature-list { gap: 56px; }
  .lp-feature-item {
    flex-direction: column; gap: 28px;
  }
  .lp-feature-item--reverse {
    flex-direction: column;
  }
  .lp-feature-item__image {
    flex: none; max-width: 100%; width: 100%;
    order: -1;
  }
  .lp-feature-item__num {
    width: 38px; height: 38px; font-size: 13px;
    border-radius: 10px; margin-bottom: 16px;
  }
  .lp-feature-item__title { font-size: 19px; }
  .lp-feature-item__text { font-size: 15px; }
  .lp-feature-item__image img { border-radius: 12px; }

  .lpd-feature-viz { flex: none; max-width: 100%; width: 100%; order: -1; }
  .lpd-viz-cycle { width: 240px; height: 240px; }
}

/* ================================================
   10. VALUE SECTION
   ================================================ */
.lpd-value { background: var(--lp-light); }
.lpd-value__content,
.lpd-value__cols {
  display: flex; gap: 56px; align-items: center; margin-top: 48px;
}
.lpd-value__venn { flex: 0 0 360px; position: relative; height: 300px; }
.lpd-value__benefits { flex: 1; display: flex; flex-direction: column; gap: 20px; }

/* Venn diagram */
.lpd-venn__circle {
  position: absolute; width: 180px; height: 180px;
  border-radius: 50%; opacity: .15;
}
.lpd-venn__circle--who { background: var(--lp-blue); top: 10px; left: 50%; transform: translateX(-50%); }
.lpd-venn__circle--when { background: #10b981; bottom: 20px; left: 20px; }
.lpd-venn__circle--where { background: #f59e0b; bottom: 20px; right: 20px; }
.lpd-venn__label {
  position: absolute; font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; white-space: nowrap;
}
.lpd-venn__label--who { top: 20px; left: 50%; transform: translateX(-50%); color: var(--lp-blue); background: rgba(41,169,255,.08); }
.lpd-venn__label--when { bottom: 30px; left: 30px; color: #10b981; background: rgba(16,185,129,.08); }
.lpd-venn__label--where { bottom: 30px; right: 30px; color: #f59e0b; background: rgba(245,158,11,.08); }
.lpd-venn__center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-blue), #6366f1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 900;
  box-shadow: 0 4px 24px rgba(41,169,255,.25);
  animation: lpd-pulse-glow 2s ease-in-out infinite;
}
@keyframes lpd-pulse-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(41,169,255,.25); }
  50% { box-shadow: 0 4px 40px rgba(41,169,255,.4); }
}

.lpd-benefit-card {
  background: #fff; border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius); padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: all .3s ease;
}
.lpd-benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,27,61,.06);
}
.lpd-benefit-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(41,169,255,.08); color: var(--lp-blue);
  flex-shrink: 0;
}
.lpd-benefit-card__title {
  font-size: 15px; font-weight: 700; color: var(--lp-navy);
  margin-bottom: 4px;
}
.lpd-benefit-card__text {
  font-size: 13px; color: var(--lp-muted); line-height: 1.6;
}

@media (max-width: 768px) {
  .lpd-value__content,
  .lpd-value__cols {
    flex-direction: column; gap: 32px;
  }
  .lpd-value__venn { flex: none; width: 100%; }
}

/* ================================================
   11. TARGET SECTION
   ================================================ */
.lp-target { background: var(--lp-light); }

.lp-target__content {
  display: flex; gap: 64px; align-items: flex-start;
}
.lp-target__left { flex: 0 0 300px; }
.lp-target__sub {
  font-size: 15px; color: var(--lp-muted);
  line-height: 1.7; margin-top: 16px;
}
.lp-target__right { flex: 1; }

.lp-checklist { list-style: none; padding: 0; margin: 0; }
.lp-checklist__item {
  font-size: 16px; line-height: 1.55; color: var(--lp-text);
  padding: 16px 0 16px 40px;
  position: relative;
  border-bottom: 1px solid var(--lp-border);
}
.lp-checklist__item:last-child { border-bottom: none; }
.lp-checklist__item::before {
  content: ''; position: absolute; left: 0; top: 17px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--lp-blue);
}
.lp-checklist__item::after {
  content: ''; position: absolute; left: 7px; top: 23px;
  width: 10px; height: 5px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .lp-target__content { flex-direction: column; gap: 28px; }
  .lp-target__left { flex: none; width: 100%; }
  .lp-checklist__item { font-size: 15px; }
}

/* ================================================
   12. FINAL CTA
   ================================================ */
.lp-final-cta {
  background: var(--lp-navy);
  text-align: center;
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.lp-final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(41,169,255,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(41,169,255,.04) 0%, transparent 50%);
  pointer-events: none;
}
.lp-final-cta__heading {
  font-size: 30px; font-weight: 900; color: #fff;
  line-height: 1.55; margin-bottom: 24px;
  position: relative; letter-spacing: .01em;
}
.lp-final-cta__body {
  font-size: 16px; color: rgba(255,255,255,.6);
  line-height: 1.8; margin-bottom: 12px;
  position: relative;
}
.lp-final-cta .lp-btn { position: relative; margin-top: 16px; }
.lp-final-cta__note {
  font-size: 13px; color: rgba(255,255,255,.35);
  margin-top: 20px; position: relative;
  letter-spacing: .04em;
}

@media (max-width: 768px) {
  .lp-final-cta { padding: 64px 0; }
  .lp-final-cta__heading { font-size: 22px; }
}

/* ========================================
   LP スタンドアロン用リセット・フッター
   ======================================== */
body.lp-standalone {
  margin: 0; padding: 0;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.lp-standalone * { box-sizing: border-box; }

.lp-footer {
  background: var(--lp-navy);
  padding: 48px 0 32px;
  text-align: center;
}
.lp-footer__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-footer__logo {
  display: inline-block;
  margin-bottom: 24px;
}
.lp-footer__logo img {
  height: 22px;
  width: auto;
  opacity: .7;
}
.lp-footer__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.lp-footer__nav a {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.lp-footer__nav a:hover { color: rgba(255,255,255,.7); }
.lp-footer__copy {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}
