/* ============================================
   uROF LP Base CSS - 2026 Rebuild (v2)
   全体ブラッシュアップ: 流体タイポ / 深化カラー /
   装飾セクション / 洗練コンポーネント
   ============================================ */

:root {
  /* Ink (text hierarchy) */
  --lp-ink-900: #0E1326;
  --lp-ink-700: #364058;
  --lp-ink-500: #5C6680;
  --lp-ink-400: #8C94A8;
  --lp-ink-300: #B4BAC8;

  --lp-text: var(--lp-ink-900);
  --lp-text-sub: var(--lp-ink-500);
  --lp-text-light: var(--lp-ink-400);

  /* Surface */
  --lp-bg: #ffffff;
  --lp-bg-gray: #F5F7FA;
  --lp-bg-subtle: #FAFBFD;
  --lp-bg-dark: #0C1224;
  --lp-surface-elev: #ffffff;

  /* Border */
  --lp-border: #E4E8EF;
  --lp-border-strong: #CDD3DE;
  --lp-border-hair: rgba(14, 19, 38, .06);

  /* Radius */
  --lp-radius-xs: 8px;
  --lp-radius-sm: 10px;
  --lp-radius: 14px;
  --lp-radius-lg: 24px;
  --lp-radius-xl: 32px;

  /* Shadow (layered) */
  --lp-shadow-xs: 0 1px 2px rgba(14, 19, 38, .04), 0 1px 1px rgba(14, 19, 38, .03);
  --lp-shadow: 0 4px 24px rgba(14, 19, 38, .06), 0 1px 2px rgba(14, 19, 38, .04);
  --lp-shadow-lg: 0 20px 48px -12px rgba(14, 19, 38, .18), 0 4px 12px rgba(14, 19, 38, .06);
  --lp-shadow-xl: 0 32px 64px -16px rgba(14, 19, 38, .22), 0 8px 20px rgba(14, 19, 38, .08);

  /* Container */
  --lp-container: 1180px;
  --lp-container-narrow: 880px;

  /* Brand defaults (overridden by theme) */
  --lp-primary: #0FB5A1;
  --lp-primary-dark: #0A8F80;
  --lp-primary-tint: rgba(15, 181, 161, .08);
  --lp-primary-tint-strong: rgba(15, 181, 161, .14);
  --lp-accent: #D4AF37;

  /* Timing */
  --lp-ease: cubic-bezier(.22, 1, .36, 1);
  --lp-header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--lp-header-h); }
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--lp-text);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt" 1, "kern" 1;
  letter-spacing: .01em;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--lp-ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--lp-primary-tint-strong); color: var(--lp-text); }

.lp-container { max-width: var(--lp-container); margin: 0 auto; padding: 0 28px; position: relative; }
.lp-container--narrow { max-width: var(--lp-container-narrow); margin: 0 auto; padding: 0 28px; position: relative; }
@media (max-width: 720px) { .lp-container, .lp-container--narrow { padding: 0 20px; } }
@media (max-width: 480px) { .lp-container, .lp-container--narrow { padding: 0 16px; } }
.lp-text-center { text-align: center; }

/* ===== Header ===== */
.lp-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: background .3s var(--lp-ease), border-color .3s var(--lp-ease), box-shadow .3s var(--lp-ease);
}
.lp-header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: var(--lp-border);
  box-shadow: 0 4px 20px rgba(14, 19, 38, .04);
}
.lp-header__inner {
  max-width: var(--lp-container);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 720px) { .lp-header__inner { padding: 14px 20px; gap: 16px; } }
@media (max-width: 480px) { .lp-header__inner { padding: 12px 16px; } }
.lp-header__logo a { display: inline-flex; align-items: center; }
.lp-header__nav { display: flex; align-items: center; gap: 32px; }
.lp-header__nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-ink-700);
  position: relative;
  padding: 6px 0;
  letter-spacing: .02em;
}
.lp-header__nav a:not(.lp-btn)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--lp-primary);
  transform: scaleX(0); transform-origin: right; transition: transform .35s var(--lp-ease);
}
.lp-header__nav a:not(.lp-btn):hover { color: var(--lp-text); }
.lp-header__nav a:not(.lp-btn):hover::after { transform: scaleX(1); transform-origin: left; }
.lp-header__nav .lp-btn { padding: 10px 22px; font-size: 13px; }
.lp-header__nav a.lp-btn--primary { color: #fff; }
.lp-header__nav a.lp-btn--primary:hover { color: #fff; }
.lp-header__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.lp-header__burger span { width: 22px; height: 2px; background: var(--lp-text); border-radius: 2px; transition: transform .3s var(--lp-ease), opacity .3s var(--lp-ease); }
.lp-header__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-header__burger.is-active span:nth-child(2) { opacity: 0; }
.lp-header__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.lp-header-spacer { height: var(--lp-header-h); }

@media (max-width: 960px) {
  .lp-header__nav { display: none; }
  .lp-header__nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--lp-border);
    box-shadow: 0 12px 30px rgba(14, 19, 38, .08);
  }
  .lp-header__nav.is-open a { padding: 16px 0; border-bottom: 1px solid var(--lp-border); font-size: 15px; }
  .lp-header__nav.is-open a:last-child { border-bottom: none; margin-top: 8px; }
  .lp-header__burger { display: flex; }
}

/* ===== Section ===== */
.lp-section { padding: 120px 0; position: relative; }
.lp-section--tight { padding: 56px 0 96px; }
.lp-section--gray { background: var(--lp-bg-gray); }
.lp-section--white { background: var(--lp-bg); }
.lp-section--subtle { background: var(--lp-bg-subtle); }
.lp-section--dark { background: var(--lp-bg-dark); color: #fff; }
.lp-section--dark .lp-sec-title__ja { color: #fff; }
.lp-section--dark .lp-sec-title__sub { color: rgba(255, 255, 255, .7); }
@media (max-width: 960px) { .lp-section { padding: 88px 0; } .lp-section--tight { padding: 40px 0 72px; } }
@media (max-width: 720px) { .lp-section { padding: 72px 0; } .lp-section--tight { padding: 32px 0 56px; } }
@media (max-width: 480px) { .lp-section { padding: 56px 0; } .lp-section--tight { padding: 24px 0 44px; } }

/* ===== Section title ===== */
.lp-sec-title { text-align: center; margin-bottom: 64px; }
.lp-sec-title__en {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Lato", sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 800;
  letter-spacing: .24em;
  color: var(--lp-primary);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.lp-sec-title__en::before,
.lp-sec-title__en::after {
  content: ''; display: inline-block;
  width: 28px; height: 1px;
  background: currentColor; opacity: .4;
}
.lp-sec-title__ja {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.45;
  color: var(--lp-text);
  letter-spacing: .02em;
}
.lp-sec-title__ja em {
  font-style: normal; color: var(--lp-primary);
  background: linear-gradient(180deg, transparent 62%, var(--lp-primary-tint) 62%);
  padding: 0 .1em;
}
.lp-sec-title__sub {
  margin-top: 20px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.95;
  color: var(--lp-text-sub);
}
@media (max-width: 720px) {
  .lp-sec-title { margin-bottom: 44px; }
  .lp-sec-title__sub { margin-top: 14px; }
  .lp-sec-title__en::before, .lp-sec-title__en::after { width: 20px; }
}
@media (max-width: 480px) {
  .lp-sec-title { margin-bottom: 32px; }
}

/* ===== Hero ===== */
.lp-hero {
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F7FAFC 0%, #ffffff 100%);
}
.lp-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 10%, var(--lp-primary-tint) 0, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(212, 175, 55, .08) 0, transparent 35%);
  pointer-events: none;
}
.lp-hero .lp-container { position: relative; z-index: 1; }
.lp-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lp-hero__label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--lp-primary-tint-strong);
  color: var(--lp-primary);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 28px;
  letter-spacing: .08em;
}
.lp-hero__label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--lp-primary); box-shadow: 0 0 0 4px rgba(15, 181, 161, .2);
  animation: lp-pulse 2.2s ease-in-out infinite;
}
@keyframes lp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15, 181, 161, .4); }
  50% { box-shadow: 0 0 0 8px rgba(15, 181, 161, 0); }
}
.lp-hero__title {
  font-size: clamp(28px, 4.4vw, 50px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .005em;
  margin-bottom: 28px;
}
.lp-hero__title em {
  font-style: normal;
  color: var(--lp-primary);
  position: relative;
  display: inline-block;
}
.lp-hero__title em::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: .04em;
  height: .18em; background: var(--lp-primary-tint-strong);
  z-index: -1; border-radius: 2px;
}
.lp-hero__sub {
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 2;
  color: var(--lp-text-sub);
  margin-bottom: 36px;
  max-width: 36em;
}
.lp-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.lp-hero__visual img { border-radius: var(--lp-radius-lg); }
@media (max-width: 960px) {
  .lp-hero { padding: 120px 0 72px; }
  .lp-hero__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 480px) {
  .lp-hero { padding: 96px 0 56px; }
  .lp-hero__inner { gap: 32px; }
  .lp-hero__label { font-size: 11px; padding: 6px 14px; margin-bottom: 20px; }
  .lp-hero__sub { margin-bottom: 26px; }
  .lp-hero__cta { gap: 10px; }
  .lp-hero__cta .lp-btn { width: 100%; }
}

/* ===== Buttons ===== */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 999px;
  transition: transform .25s var(--lp-ease), box-shadow .25s var(--lp-ease), background .25s var(--lp-ease), color .25s var(--lp-ease), border-color .25s var(--lp-ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.lp-btn i { font-size: 13px; }
.lp-btn--primary {
  background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 20px -4px rgba(15, 181, 161, .45), inset 0 1px 0 rgba(255, 255, 255, .2);
}
.lp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(15, 181, 161, .55), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.lp-btn--primary::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .25) 50%, transparent 70%);
  transition: left .7s var(--lp-ease);
}
.lp-btn--primary:hover::after { left: 100%; }
.lp-btn--outline {
  background: transparent;
  color: var(--lp-primary);
  border: 1.5px solid var(--lp-primary);
}
.lp-btn--outline:hover { background: var(--lp-primary); color: #fff; transform: translateY(-2px); }
.lp-btn--white {
  background: #fff;
  color: var(--lp-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.lp-btn--white:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.lp-btn--ghost {
  background: transparent; color: var(--lp-text);
  border: 1.5px solid var(--lp-border-strong);
}
.lp-btn--ghost:hover { border-color: var(--lp-primary); color: var(--lp-primary); }
.lp-btn--lg { padding: 18px 40px; font-size: 15px; }
.lp-btn--sm { padding: 10px 22px; font-size: 13px; }
@media (max-width: 480px) {
  .lp-btn { padding: 14px 24px; font-size: 13px; }
  .lp-btn--lg { padding: 16px 28px; font-size: 14px; }
  .lp-btn--sm { padding: 9px 16px; font-size: 12px; }
}

/* ===== Card grid ===== */
.lp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lp-card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .lp-card-grid, .lp-card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lp-card-grid, .lp-card-grid--2, .lp-card-grid--4 { grid-template-columns: 1fr; gap: 16px; } }

.lp-card {
  display: block;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 36px 32px;
  transition: transform .35s var(--lp-ease), box-shadow .35s var(--lp-ease), border-color .35s var(--lp-ease);
  position: relative;
  overflow: hidden;
}
.lp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--lp-primary), transparent);
  opacity: 0; transition: opacity .4s var(--lp-ease);
}
.lp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-lg);
  border-color: transparent;
}
.lp-card:hover::before { opacity: 1; }
.lp-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--lp-primary-tint);
  color: var(--lp-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  position: relative;
}
.lp-card__icon::after {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  border: 1px solid var(--lp-primary-tint-strong);
}
.lp-card__num {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--lp-primary);
  margin-bottom: 12px;
  padding: 4px 10px;
  background: var(--lp-primary-tint);
  border-radius: 6px;
}
.lp-card__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.lp-card__text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--lp-text-sub);
}
@media (max-width: 480px) {
  .lp-card { padding: 26px 22px; border-radius: var(--lp-radius); }
  .lp-card__title { font-size: 16px; }
  .lp-card__icon { width: 48px; height: 48px; font-size: 19px; margin-bottom: 16px; border-radius: 12px; }
}

/* ===== Stats ===== */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px 24px;
  text-align: center;
  padding: 48px 32px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow);
  position: relative;
}
.lp-stat { position: relative; }
.lp-stat + .lp-stat::before {
  content: ''; position: absolute; left: -12px; top: 20%; bottom: 20%; width: 1px;
  background: var(--lp-border);
}
.lp-stat__num {
  font-family: "Lato", sans-serif;
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.lp-stat__num small { font-size: .36em; font-weight: 700; margin-left: 4px; -webkit-text-fill-color: currentColor; color: var(--lp-primary); }
.lp-stat__label { font-size: 13px; color: var(--lp-text-sub); font-weight: 600; letter-spacing: .03em; }
@media (max-width: 960px) {
  .lp-stats { grid-template-columns: repeat(3, 1fr); padding: 36px 24px; gap: 32px 16px; }
  .lp-stat:nth-child(n+4)::before { display: none; }
}
@media (max-width: 720px) {
  .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .lp-stat + .lp-stat::before { display: none; }
  .lp-stat__label { font-size: 12px; }
}

/* ===== CTA banner ===== */
.lp-cta-banner {
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
  color: #fff;
  padding: 72px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.12) 0, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,.08) 0, transparent 40%);
  pointer-events: none;
}
.lp-cta-banner > * { position: relative; z-index: 1; }
.lp-cta-banner__title { font-size: clamp(22px, 3vw, 32px); font-weight: 900; margin-bottom: 14px; letter-spacing: .02em; }
.lp-cta-banner__sub { font-size: 15px; opacity: .92; margin-bottom: 32px; }
.lp-cta-banner__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 720px) {
  .lp-cta-banner { padding: 56px 24px; }
}
@media (max-width: 480px) {
  .lp-cta-banner { padding: 48px 20px; }
  .lp-cta-banner__sub { font-size: 14px; margin-bottom: 24px; }
  .lp-cta-banner__buttons { flex-direction: column; gap: 10px; }
  .lp-cta-banner__buttons .lp-btn { width: 100%; }
}

/* ===== Strategy themes ===== */
.lp-themes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .lp-themes { grid-template-columns: 1fr; } }
.lp-theme {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 48px 36px;
  text-align: center;
  transition: transform .35s var(--lp-ease), box-shadow .35s var(--lp-ease), border-color .35s var(--lp-ease);
  position: relative;
  overflow: hidden;
}
.lp-theme::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--lp-primary), transparent);
  opacity: 0; transition: opacity .4s var(--lp-ease);
}
.lp-theme:hover { transform: translateY(-8px); box-shadow: var(--lp-shadow-lg); border-color: transparent; }
.lp-theme:hover::before { opacity: 1; }
.lp-theme__num {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  color: var(--lp-primary);
  margin-bottom: 16px;
  padding: 5px 12px;
  border: 1px solid var(--lp-primary-tint-strong);
  border-radius: 999px;
}
.lp-theme__title { font-size: clamp(18px, 2vw, 22px); font-weight: 800; margin-bottom: 16px; line-height: 1.55; }
.lp-theme__lead { font-size: 13px; color: var(--lp-primary); font-weight: 700; margin-bottom: 18px; letter-spacing: .03em; }
.lp-theme__text { font-size: 14px; line-height: 1.95; color: var(--lp-text-sub); margin-bottom: 24px; }
.lp-theme__tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.lp-theme__tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--lp-bg-gray);
  border-radius: 999px;
  font-size: 12px;
  color: var(--lp-text-sub);
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .25s var(--lp-ease), color .25s var(--lp-ease);
}
.lp-theme:hover .lp-theme__tag { background: var(--lp-primary-tint); color: var(--lp-primary); }
@media (max-width: 480px) {
  .lp-theme { padding: 36px 24px; border-radius: var(--lp-radius); }
}

/* ===== Funnel ===== */
.lp-funnel {
  display: grid; gap: 14px; max-width: 880px; margin: 0 auto;
  counter-reset: funnel;
}
.lp-funnel__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px 32px;
  align-items: center;
  position: relative;
  transition: transform .3s var(--lp-ease), box-shadow .3s var(--lp-ease), border-color .3s var(--lp-ease);
  counter-increment: funnel;
}
.lp-funnel__row::before {
  content: counter(funnel, decimal-leading-zero);
  position: absolute; top: 20px; right: 28px;
  font-family: "Lato", sans-serif;
  font-size: 44px; font-weight: 900;
  color: var(--lp-primary); opacity: .08;
  line-height: 1; letter-spacing: -.04em;
}
.lp-funnel__row:hover { transform: translateX(4px); box-shadow: var(--lp-shadow); border-color: var(--lp-primary-tint-strong); }
.lp-funnel__stage {
  font-size: 17px; font-weight: 800; color: var(--lp-primary);
  letter-spacing: .02em;
}
.lp-funnel__stage small {
  display: block; font-size: 10px; color: var(--lp-text-light);
  font-weight: 700; letter-spacing: .18em; margin-bottom: 6px; font-family: "Lato", sans-serif;
}
.lp-funnel__items { font-size: 13px; line-height: 1.95; color: var(--lp-text-sub); }
@media (max-width: 720px) {
  .lp-funnel__row { grid-template-columns: 1fr; gap: 8px; padding: 22px 24px; }
  .lp-funnel__row::before { font-size: 32px; top: 14px; right: 20px; }
  .lp-funnel__stage { font-size: 15px; }
}

/* ===== Guarantee ===== */
.lp-guarantee {
  background: linear-gradient(135deg, #141A30 0%, #242C4A 50%, #141A30 100%);
  color: #fff;
  border-radius: var(--lp-radius-xl);
  padding: 80px 56px;
  text-align: center;
  box-shadow: var(--lp-shadow-xl);
  position: relative;
  overflow: hidden;
}
.lp-guarantee::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, .12) 0, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, .08) 0, transparent 40%);
  pointer-events: none;
}
.lp-guarantee > * { position: relative; z-index: 1; }
.lp-guarantee__lead {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--lp-accent);
  letter-spacing: .22em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.lp-guarantee__lead::before, .lp-guarantee__lead::after {
  content: ''; width: 24px; height: 1px; background: var(--lp-accent); opacity: .6;
}
.lp-guarantee__title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.lp-guarantee__title em { color: var(--lp-accent); font-style: normal; }
.lp-guarantee__sub { font-size: clamp(14px, 1.3vw, 16px); opacity: .85; margin-bottom: 48px; }
.lp-guarantee__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 28px; position: relative; }
.lp-guarantee__stats > div { position: relative; }
.lp-guarantee__stats > div + div::before {
  content: ''; position: absolute; left: -16px; top: 10%; bottom: 10%; width: 1px;
  background: rgba(255, 255, 255, .15);
}
.lp-guarantee__stat-num {
  font-family: "Lato", sans-serif;
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 900;
  color: var(--lp-accent);
  line-height: 1;
  letter-spacing: -.02em;
}
.lp-guarantee__stat-num small { font-size: .38em; }
.lp-guarantee__stat-label { font-size: 13px; opacity: .8; margin-top: 10px; letter-spacing: .08em; }
.lp-guarantee__note { font-size: 11px; opacity: .55; line-height: 1.8; margin-top: 28px; }
@media (max-width: 720px) {
  .lp-guarantee { padding: 56px 28px; border-radius: var(--lp-radius-lg); }
  .lp-guarantee__stats { gap: 16px; }
  .lp-guarantee__stats > div + div::before { left: -8px; }
}
@media (max-width: 480px) {
  .lp-guarantee { padding: 44px 20px; }
  .lp-guarantee__sub { margin-bottom: 32px; }
  .lp-guarantee__stats { gap: 8px; }
  .lp-guarantee__stats > div + div::before { left: -4px; }
  .lp-guarantee__note { font-size: 10px; }
}

/* ===== Industry table ===== */
.lp-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow);
  border: 1px solid var(--lp-border);
}
.lp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.lp-table th, .lp-table td {
  padding: 20px 22px; text-align: left;
  border-bottom: 1px solid var(--lp-border);
  font-size: 14px;
}
.lp-table thead th {
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
  color: #fff; font-size: 13px; font-weight: 700;
  letter-spacing: .04em;
  padding: 18px 22px;
}
.lp-table thead th:first-child { border-top-left-radius: var(--lp-radius-lg); }
.lp-table thead th:last-child { border-top-right-radius: var(--lp-radius-lg); }
.lp-table tbody tr { transition: background .2s var(--lp-ease); }
.lp-table tbody tr:hover { background: var(--lp-bg-subtle); }
.lp-table tbody tr:last-child td { border-bottom: none; }
.lp-table tbody td:first-child { font-weight: 700; color: var(--lp-text); }
.lp-table .up {
  color: var(--lp-primary); font-weight: 800; font-size: 15px;
  font-family: "Lato", sans-serif;
  display: inline-block;
  padding: 4px 10px;
  background: var(--lp-primary-tint);
  border-radius: 6px;
  letter-spacing: .02em;
}

/* ===== Interview ===== */
.lp-interview {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  padding: 56px;
  align-items: start;
  transition: transform .4s var(--lp-ease), box-shadow .4s var(--lp-ease);
  position: relative;
  overflow: hidden;
}
.lp-interview:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-lg); }
.lp-interview + .lp-interview { margin-top: 28px; }
.lp-interview__photo {
  background: linear-gradient(135deg, #EEF2F6, #F7F9FB);
  aspect-ratio: 1;
  border-radius: var(--lp-radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--lp-text-light);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.lp-interview__photo::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(14, 19, 38, .02) 8px 16px);
}
.lp-interview__label {
  display: inline-block;
  font-size: 12px; color: var(--lp-primary); font-weight: 700;
  margin-bottom: 10px; letter-spacing: .08em;
  padding: 4px 12px; background: var(--lp-primary-tint); border-radius: 999px;
}
.lp-interview__title { font-size: clamp(18px, 2vw, 24px); font-weight: 800; margin-bottom: 20px; line-height: 1.55; }
.lp-interview__metrics {
  display: flex; gap: 36px; flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  margin-bottom: 20px;
}
.lp-interview__metric strong {
  display: block; font-size: clamp(18px, 2vw, 24px);
  font-weight: 900; color: var(--lp-primary);
  font-family: "Lato", sans-serif;
  letter-spacing: -.01em;
}
.lp-interview__metric span { font-size: 12px; color: var(--lp-text-light); letter-spacing: .03em; }
.lp-interview__quote {
  font-size: 14px; line-height: 1.95; color: var(--lp-text-sub);
  padding-left: 20px;
  border-left: 3px solid var(--lp-primary-tint-strong);
  position: relative;
}
@media (max-width: 720px) {
  .lp-interview { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; border-radius: var(--lp-radius-lg); }
  .lp-interview__photo { aspect-ratio: 16/10; }
  .lp-interview__metrics { gap: 20px; padding: 18px 0; }
}
@media (max-width: 480px) {
  .lp-interview { padding: 28px 22px; }
  .lp-interview__quote { font-size: 13px; padding-left: 16px; }
}

/* ===== FAQ ===== */
.lp-faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 14px; }
.lp-faq-item {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  transition: border-color .3s var(--lp-ease), box-shadow .3s var(--lp-ease);
}
.lp-faq-item:hover { border-color: var(--lp-border-strong); }
.lp-faq-item.is-open { border-color: var(--lp-primary-tint-strong); box-shadow: var(--lp-shadow-xs); }
.lp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .01em;
}
.lp-faq-q__label {
  color: #fff;
  background: var(--lp-primary);
  font-family: "Lato", sans-serif;
  font-weight: 900;
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.lp-faq-q__text { flex: 1; }
.lp-faq-q__icon { width: 24px; height: 24px; position: relative; flex-shrink: 0; }
.lp-faq-q__icon::before, .lp-faq-q__icon::after {
  content: ''; position: absolute; background: var(--lp-text-sub); border-radius: 2px;
  transition: background .3s var(--lp-ease);
}
.lp-faq-q__icon::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.lp-faq-q__icon::after { width: 2px; height: 14px; top: 5px; left: 11px; transition: transform .35s var(--lp-ease); }
.lp-faq-item.is-open .lp-faq-q__icon::after { transform: rotate(90deg); }
.lp-faq-item.is-open .lp-faq-q__icon::before,
.lp-faq-item.is-open .lp-faq-q__icon::after { background: var(--lp-primary); }
.lp-faq-a { padding: 0 28px; max-height: 0; overflow: hidden; transition: max-height .35s var(--lp-ease), padding .35s var(--lp-ease); }
.lp-faq-item.is-open .lp-faq-a { max-height: 500px; padding: 0 28px 26px; }
.lp-faq-a p { font-size: 14px; line-height: 1.95; color: var(--lp-text-sub); padding-left: 46px; }
@media (max-width: 480px) {
  .lp-faq-q { padding: 18px 20px; font-size: 14px; gap: 12px; }
  .lp-faq-item.is-open .lp-faq-a { padding: 0 20px 22px; }
  .lp-faq-a p { font-size: 13px; padding-left: 40px; }
}

/* ===== Form ===== */
.lp-form {
  max-width: 720px; margin: 0 auto;
  background: #fff;
  padding: 56px;
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}
.lp-form .form-group { margin-bottom: 24px; }
.lp-form label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 10px; letter-spacing: .01em; }
.lp-form .required {
  display: inline-block; padding: 2px 10px;
  background: #EF4444; color: #fff; font-size: 11px;
  border-radius: 4px; margin-left: 8px; vertical-align: middle;
  font-weight: 700; letter-spacing: .04em;
}
.lp-form .optional {
  display: inline-block; padding: 2px 10px;
  background: #94A3B8; color: #fff; font-size: 11px;
  border-radius: 4px; margin-left: 8px; vertical-align: middle;
  font-weight: 700; letter-spacing: .04em;
}
.lp-form input, .lp-form textarea, .lp-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--lp-text);
  background: var(--lp-bg-subtle);
  transition: border-color .25s var(--lp-ease), background .25s var(--lp-ease), box-shadow .25s var(--lp-ease);
}
.lp-form input::placeholder, .lp-form textarea::placeholder { color: var(--lp-ink-400); }
.lp-form input:hover, .lp-form textarea:hover { border-color: var(--lp-border-strong); }
.lp-form input:focus, .lp-form textarea:focus, .lp-form select:focus {
  outline: none; border-color: var(--lp-primary); background: #fff;
  box-shadow: 0 0 0 4px var(--lp-primary-tint);
}
.lp-form textarea { min-height: 140px; resize: vertical; line-height: 1.7; }
.lp-form .form-check { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; font-size: 14px; }
.lp-form .form-check input { width: auto; accent-color: var(--lp-primary); }
.lp-form .form-submit { text-align: center; }
@media (max-width: 720px) { .lp-form { padding: 36px 28px; border-radius: var(--lp-radius-lg); } }
@media (max-width: 480px) {
  .lp-form { padding: 26px 20px; }
  .lp-form .form-group { margin-bottom: 20px; }
  .lp-form input, .lp-form textarea, .lp-form select { padding: 13px 14px; font-size: 14px; }
  .lp-form .form-submit .lp-btn { width: 100%; }
}

/* ===== Page hero (sub) ===== */
.lp-page-hero {
  padding: 56px 0 64px; background: var(--lp-bg-gray);
  text-align: center; position: relative; overflow: hidden;
}
.lp-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 0, var(--lp-primary-tint) 0, transparent 55%);
  pointer-events: none;
}
.lp-page-hero > * { position: relative; z-index: 1; }
.lp-page-hero__en { font-family: "Lato", sans-serif; font-size: 12px; letter-spacing: .22em; color: var(--lp-primary); font-weight: 700; }
.lp-page-hero__title { font-size: clamp(24px, 3.4vw, 42px); font-weight: 900; margin-top: 14px; line-height: 1.4; }
.lp-page-hero__sub { font-size: clamp(14px, 1.4vw, 16px); color: var(--lp-text-sub); margin-top: 18px; line-height: 1.95; }
@media (max-width: 720px) { .lp-page-hero { padding: 40px 0 36px; } }
@media (max-width: 480px) { .lp-page-hero { padding: 32px 0 28px; } }

/* ===== Footer ===== */
.lp-footer { background: #0B1022; color: rgba(255, 255, 255, .65); padding: 80px 0 32px; position: relative; }
.lp-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}
.lp-footer__inner { max-width: var(--lp-container); margin: 0 auto; padding: 0 28px; }
.lp-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 32px; }
.lp-footer__brand img { height: 30px; width: auto; filter: brightness(0) invert(1); margin-bottom: 20px; }
.lp-footer__brand p { font-size: 13px; line-height: 1.95; color: rgba(255,255,255,.55); max-width: 320px; }
.lp-footer__col h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 20px; letter-spacing: .08em; text-transform: uppercase; font-family: "Lato", sans-serif; }
.lp-footer__col ul li { margin-bottom: 12px; font-size: 13px; }
.lp-footer__col a { transition: color .25s var(--lp-ease); }
.lp-footer__col a:hover { color: #fff; }
.lp-footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; }
.lp-footer__copy { color: rgba(255,255,255,.4); font-family: "Lato", sans-serif; letter-spacing: .04em; }
.lp-footer__bottom ul a:hover { color: #fff; }
@media (max-width: 720px) {
  .lp-footer { padding: 56px 0 28px; }
  .lp-footer__top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .lp-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .lp-footer__bottom ul { flex-wrap: wrap; gap: 16px !important; }
}

/* ===== Scroll reveal (stagger via siblings) =====
   JS有効時のみ "lp-pre-animate" を付与してから fade-in。
   JS が動かない/IntersectionObserver が不発時はそのまま表示される。 */
.lp-animate {
  transition: opacity .9s var(--lp-ease), transform .9s var(--lp-ease);
}
.lp-animate.lp-pre-animate { opacity: 0; transform: translateY(24px); }
.lp-animate.lp-pre-animate.is-visible { opacity: 1; transform: translateY(0); }
.lp-card-grid .lp-pre-animate:nth-child(2) { transition-delay: .08s; }
.lp-card-grid .lp-pre-animate:nth-child(3) { transition-delay: .16s; }
.lp-card-grid .lp-pre-animate:nth-child(4) { transition-delay: .24s; }
.lp-card-grid .lp-pre-animate:nth-child(5) { transition-delay: .32s; }
.lp-card-grid .lp-pre-animate:nth-child(6) { transition-delay: .4s; }
.lp-themes .lp-pre-animate:nth-child(2) { transition-delay: .12s; }
.lp-themes .lp-pre-animate:nth-child(3) { transition-delay: .24s; }
.lp-funnel .lp-pre-animate:nth-child(2) { transition-delay: .08s; }
.lp-funnel .lp-pre-animate:nth-child(3) { transition-delay: .16s; }
.lp-funnel .lp-pre-animate:nth-child(4) { transition-delay: .24s; }
.lp-funnel .lp-pre-animate:nth-child(5) { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .lp-animate, .lp-animate.is-visible { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ===== Client logos slider (FV-OUR RESULTS 間) ===== */
.lp-logos-section {
  padding: 56px 0 32px;
  background: var(--lp-bg);
  overflow: hidden;
}
.lp-logos__lead {
  text-align: center;
  font-size: 13px;
  color: var(--lp-text-light);
  letter-spacing: .12em;
  margin-bottom: 28px;
  font-weight: 600;
}
.lp-logos {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.lp-logos__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: lp-logos-scroll 50s linear infinite;
}
.lp-logos__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 56px;
  padding: 0 20px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--lp-ink-400);
  background: var(--lp-bg-subtle);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  white-space: nowrap;
  filter: none;
  opacity: 1;
  transition: opacity .3s var(--lp-ease);
}
.lp-logos__item:hover { opacity: 1; }
@keyframes lp-logos-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 720px) {
  .lp-logos-section { padding: 40px 0 24px; }
  .lp-logos__track { gap: 36px; }
  .lp-logos__item { min-width: 120px; height: 48px; font-size: 12px; }
}

/* ===== Filter bar (case-studies / blog) ===== */
.lp-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.lp-filter__btn {
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--lp-border);
  color: var(--lp-ink-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: all .25s var(--lp-ease);
}
.lp-filter__btn:hover { border-color: var(--lp-primary); color: var(--lp-primary); }
.lp-filter__btn.is-active {
  background: var(--lp-primary);
  border-color: var(--lp-primary);
  color: #fff;
  box-shadow: 0 4px 12px -2px rgba(15, 181, 161, .35);
}

/* ===== Case card ===== */
.lp-casegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px) { .lp-casegrid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px) { .lp-casegrid { grid-template-columns: 1fr; gap: 16px; } }

.lp-casecard {
  display: block;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  transition: transform .35s var(--lp-ease), box-shadow .35s var(--lp-ease), border-color .35s var(--lp-ease);
}
.lp-casecard[data-hidden] { display: none; }
.lp-casecard:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-lg);
  border-color: var(--lp-primary-tint-strong);
}
.lp-casecard__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--lp-primary-tint) 0%, rgba(244, 185, 66, .15) 100%);
  display: grid; place-items: center;
  color: var(--lp-primary);
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.lp-casecard__media::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 10px, rgba(14, 166, 149, .04) 10px 20px);
}
.lp-casecard__media i { position: relative; z-index: 1; }
.lp-casecard__body { padding: 22px 24px 26px; }
.lp-casecard__meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px;
  margin-bottom: 14px;
  color: var(--lp-text-light);
  flex-wrap: wrap;
}
.lp-casecard__cat {
  display: inline-block;
  padding: 4px 10px;
  background: var(--lp-primary-tint);
  color: var(--lp-primary);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
}
.lp-casecard__loc {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600;
}
.lp-casecard__loc i { font-size: 10px; }
.lp-casecard__title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 14px;
  letter-spacing: .01em;
  color: var(--lp-text);
}
.lp-casecard__kpi {
  display: flex; align-items: baseline; gap: 12px;
  padding: 12px 14px;
  background: var(--lp-bg-subtle);
  border-radius: 10px;
  margin-bottom: 12px;
}
.lp-casecard__kpi-up {
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--lp-primary);
  line-height: 1;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.lp-casecard__kpi-up small { font-size: .5em; font-weight: 700; margin-left: 2px; }
.lp-casecard__kpi-detail {
  font-size: 11px;
  color: var(--lp-text-sub);
  line-height: 1.6;
}
.lp-casecard__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.lp-casecard__tag {
  font-size: 11px;
  color: var(--lp-text-sub);
  font-weight: 600;
  letter-spacing: .02em;
}

/* ===== Media card (blog / downloads list) ===== */
.lp-medialist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px) { .lp-medialist { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px) { .lp-medialist { grid-template-columns: 1fr; gap: 16px; } }
.lp-mediacard {
  display: block;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  transition: transform .35s var(--lp-ease), box-shadow .35s var(--lp-ease), border-color .35s var(--lp-ease);
}
.lp-mediacard[data-hidden] { display: none; }
.lp-mediacard:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-lg);
  border-color: var(--lp-primary-tint-strong);
}
.lp-mediacard__thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--lp-primary-tint) 0%, rgba(244, 185, 66, .15) 100%);
  display: grid; place-items: center;
  color: var(--lp-primary);
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.lp-mediacard__thumb::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 10px, rgba(14, 166, 149, .04) 10px 20px);
}
.lp-mediacard__thumb i { position: relative; z-index: 1; }
.lp-mediacard__thumb-label {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--lp-text);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 2;
}
.lp-mediacard__body { padding: 22px 24px 26px; }
.lp-mediacard__meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 11px;
  color: var(--lp-text-light);
  margin-bottom: 10px;
}
.lp-mediacard__cat {
  display: inline-block;
  padding: 3px 10px;
  background: var(--lp-primary-tint);
  color: var(--lp-primary);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
}
.lp-mediacard__date { font-weight: 600; }
.lp-mediacard__title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 12px;
  color: var(--lp-text);
}
.lp-mediacard__excerpt {
  font-size: 13px;
  line-height: 1.85;
  color: var(--lp-text-sub);
  margin-bottom: 14px;
}
.lp-mediacard__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.lp-mediacard__tag {
  font-size: 11px;
  color: var(--lp-text-sub);
  font-weight: 600;
}

/* ===== Resource detail (download landing) ===== */
.lp-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: var(--lp-text-light);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.lp-breadcrumb a { color: var(--lp-text-sub); font-weight: 600; transition: color .2s var(--lp-ease); }
.lp-breadcrumb a:hover { color: var(--lp-primary); }
.lp-breadcrumb i { font-size: 9px; opacity: .5; }
.lp-breadcrumb span { color: var(--lp-text); font-weight: 700; }

.lp-resource {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 24px;
}
@media (max-width: 720px) { .lp-resource { grid-template-columns: 1fr; gap: 32px; } }
.lp-resource__preview { text-align: center; }
.lp-resource__cover {
  background: linear-gradient(135deg, #FFF8EA 0%, #F4FFFB 100%);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 36px 28px;
  aspect-ratio: 3 / 4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  box-shadow: var(--lp-shadow);
  position: relative;
  overflow: hidden;
}
.lp-resource__cover::before {
  content: ''; position: absolute; top: 0; left: 20px; right: 20px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--lp-primary), var(--lp-accent), transparent);
  border-radius: 2px;
}
.lp-resource__cover-tag {
  font-family: "Lato", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--lp-primary);
  padding: 5px 12px;
  background: rgba(14, 166, 149, .1);
  border-radius: 999px;
}
.lp-resource__cover img { height: 48px; width: auto; }
.lp-resource__cover-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--lp-text);
  letter-spacing: .02em;
}
.lp-resource__cover-title small {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-text-sub);
  margin-top: 6px;
}
.lp-resource__cover-note {
  position: absolute; bottom: 12px; right: 14px;
  font-size: 9px;
  color: var(--lp-text-light);
}
.lp-resource__meta {
  margin-top: 16px;
  font-size: 12px;
  color: var(--lp-text-light);
  font-weight: 600;
  letter-spacing: .04em;
}

.lp-resource__cat {
  display: inline-block;
  padding: 5px 14px;
  background: var(--lp-primary-tint);
  color: var(--lp-primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.lp-resource__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: .01em;
}
.lp-resource__lead {
  font-size: 15px;
  line-height: 1.9;
  color: var(--lp-text-sub);
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--lp-border);
}
.lp-resource__sub {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
  margin-top: 24px;
  color: var(--lp-text);
}
.lp-resource__list {
  margin-bottom: 28px;
  display: grid;
  gap: 10px;
}
.lp-resource__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--lp-text-sub);
}
.lp-resource__list li::before {
  content: '\f00c';
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  color: var(--lp-primary);
  font-size: 11px;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ===== Utilities ===== */
.lp-mt-48 { margin-top: 48px; }
.lp-mb-48 { margin-bottom: 48px; }
.lp-pc-only { display: inline; }
.lp-sp-only { display: none; }
@media (max-width: 720px) {
  .lp-pc-only { display: none; }
  .lp-sp-only { display: inline; }
}
