/* ──────────────────────────────────────────────────────────
   UX Weapons Store — FDE人材育成プログラム LP
   Statically built stylesheet (Surari-compatible single file).
   Source of truth for design tokens, base, utilities, section styles.
   ────────────────────────────────────────────────────────── */

/* === 1. Design tokens ============================================ */
:root {
  /* Brand */
  --color-blue: #1E5BFF;
  --color-blue-700: #1A4FE0;
  --color-blue-100: #E8F0FF;
  --color-blue-50: #F2F6FF;

  --color-mint: #00C7B7;
  --color-mint-700: #00A89A;
  --color-mint-100: #D6F5F1;
  --color-mint-50: #EAF9F7;

  /* Neutrals */
  --color-navy: #0D1B2A;
  --color-charcoal: #1A2330;
  --color-gray: #687280;
  --color-gray-light: #E5E7EB;
  --color-paper: #F8F9FB;
  --color-white: #FFFFFF;

  /* Themed accent */
  --accent-primary: var(--color-blue);
  --accent-secondary: var(--color-mint);
  --accent-soft: var(--color-blue-100);
  --hero-gradient: linear-gradient(135deg, var(--color-blue) 0%, var(--color-mint) 100%);

  /* Typography */
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Inter", var(--font-jp);

  --fs-h1: clamp(34px, 4.2vw, 52px);
  --fs-h1-hero: clamp(38px, 4.8vw, 68px);
  --fs-h2: clamp(28px, 3.4vw, 44px);
  --fs-h3: 20px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-caption: 12px;
  --fs-eyebrow: 11px;

  /* Spacing */
  --space-section: clamp(72px, 8vw, 120px);
  --gutter: clamp(20px, 5vw, 56px);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(13,27,42,0.04), 0 8px 24px rgba(13,27,42,0.06);
  --shadow-card-hover: 0 2px 4px rgba(13,27,42,0.06), 0 16px 40px rgba(13,27,42,0.1);
  --shadow-elev: 0 24px 60px -12px rgba(13,27,42,0.18);

  --hairline: 1px solid rgba(13,27,42,0.08);
}

/* === 2. Base / Reset ============================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-navy);
  font-family: var(--font-jp);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: rgba(13,27,42,0.2); border-radius: 10px; }

/* === 3. Utilities ============================================== */
.lp-eyebrow {
  font-family: var(--font-en);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-primary);
  white-space: nowrap;
}
.lp-eyebrow--mint { color: var(--color-mint); }
.lp-eyebrow--blue { color: var(--color-blue); }
.lp-eyebrow--light { color: rgba(255,255,255,0.7); }

.lp-h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: pretty;
}
.lp-h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: pretty;
}
.lp-h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.lp-body {
  font-size: var(--fs-body);
  line-height: 1.85;
  color: var(--color-charcoal);
}
.lp-body--muted { color: var(--color-gray); }
.lp-caption {
  font-size: var(--fs-caption);
  color: var(--color-gray);
  line-height: 1.6;
}

.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.lp-container--wide { max-width: 1320px; }
.lp-container--narrow { max-width: 860px; }

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn--primary {
  background: var(--accent-primary);
  color: var(--color-white);
  box-shadow: 0 6px 20px -4px color-mix(in srgb, var(--accent-primary) 50%, transparent);
}
.lp-btn--primary:hover {
  box-shadow: 0 10px 28px -6px color-mix(in srgb, var(--accent-primary) 60%, transparent);
}
.lp-btn--ghost {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-gray-light);
}
.lp-btn--ghost:hover { border-color: var(--color-navy); }
.lp-btn--ghost-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}
.lp-btn--ghost-light:hover { border-color: var(--color-white); }
.lp-btn--mint {
  background: var(--color-mint);
  color: var(--color-white);
  box-shadow: 0 6px 20px -4px color-mix(in srgb, var(--color-mint) 50%, transparent);
}
.lp-btn-arrow {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
}
.lp-btn:hover .lp-btn-arrow { transform: translateX(3px); }

/* Section */
.lp-section {
  padding: var(--space-section) 0;
  position: relative;
  overflow: clip;
}
.lp-section--dark { background: var(--color-navy); color: var(--color-white); }
.lp-section--paper { background: var(--color-paper); }

/* Card / Chip */
.lp-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.lp-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  background: var(--color-blue-100);
  color: var(--color-blue-700);
}
.lp-chip--mint { background: var(--color-mint-100); color: var(--color-mint-700); }
.lp-chip--neutral { background: var(--color-gray-light); color: var(--color-charcoal); }

/* Brand-blob ambient background */
.lp-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.lp-blobs > * {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation-play-state: var(--anim-state, running);
}

/* Section eyebrow (number + label) */
.lp-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.lp-section-eyebrow__rule {
  width: 32px;
  height: 1px;
  background: var(--color-gray-light);
}
.lp-section-eyebrow--light .lp-section-eyebrow__rule {
  background: rgba(255,255,255,0.3);
}

/* === 4. Animations =========================================== */
@keyframes lp-orbit-1 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes lp-orbit-2 {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}
@keyframes lp-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.08); opacity: 0.7; }
}
@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes lp-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,199,183,0.2); }
  50%      { box-shadow: 0 0 0 9px rgba(0,199,183,0); }
}
@keyframes lp-course-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,199,183,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(0,199,183,0); }
}

[data-anim="off"] *,
[data-anim="off"] *::before,
[data-anim="off"] *::after {
  animation-play-state: paused !important;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-play-state: paused !important;
    transition-duration: 0.001ms !important;
  }
}

/* === 5. Logo / SVG marks =================================== */
.lp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-logo__mark { flex-shrink: 0; overflow: visible; display: block; }
.lp-logo__text { line-height: 1.15; white-space: nowrap; }
.lp-logo__name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 13px;
  color: var(--color-navy);
}
.lp-logo__sub {
  font-size: 10px;
  color: var(--color-gray);
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.lp-logo--light .lp-logo__name { color: #FFF; }
.lp-logo--light .lp-logo__sub { color: rgba(255,255,255,0.6); }

/* === 6. Nav =============================================== */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: transparent;
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}
.lp-nav.is-scrolled {
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.lp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.lp-nav-links a:not(.lp-btn) {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.lp-nav-links a:not(.lp-btn):hover { color: #FFF; }
.lp-nav-links .lp-btn {
  padding: 10px 20px;
  font-size: 13px;
}
@media (max-width: 840px) {
  .lp-nav-links { gap: 0; }
  .lp-nav-links a:not(.lp-btn) { display: none; }
}

/* === 7. Hero ============================================== */
.lp-hero {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
}
.lp-hero__bg-blobs { position: absolute; inset: 0; opacity: 0.9; pointer-events: none; }
.lp-hero__bg-grad {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 30% 50%, rgba(0,199,183,0.08), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(30,91,255,0.12), transparent 55%);
}
.lp-hero__orbit {
  position: absolute;
  right: -12%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
}
.lp-hero__inner { position: relative; z-index: 2; width: 100%; }
.lp-hero__content { max-width: 820px; }
.lp-hero__eyebrow {
  color: var(--color-mint);
  margin-bottom: 32px;
}
.lp-hero__h1 {
  font-size: var(--fs-h1-hero);
  margin-bottom: 32px;
  color: var(--color-white);
}
.lp-hero__h1 span { display: block; }
.lp-hero__h1-grad {
  background: linear-gradient(135deg, #FFF 0%, var(--color-mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-hero__lead {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin-bottom: 44px;
}
.lp-hero__lead strong { color: var(--color-white); }
.lp-hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.lp-hero__cta .lp-btn { padding: 18px 32px; font-size: 16px; }

.lp-hero__scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.2em;
}
.lp-hero__scroll-cue__line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
}

/* === 7b. Clients (Hero下) ================================ */
.lp-clients {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-light);
  padding: 36px 0 40px;
}
.lp-clients__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray);
  text-align: center;
  letter-spacing: 0.06em;
  margin: 0 0 24px;
}
.lp-clients__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 72px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-clients__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  transition: transform 0.2s ease;
}
.lp-clients__item:hover {
  transform: translateY(-2px);
}
.lp-clients__item img {
  max-height: 100%;
  max-width: 260px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 760px) {
  .lp-clients { padding: 28px 0 32px; }
  .lp-clients__list { gap: 20px 36px; }
  .lp-clients__item { height: 64px; }
  .lp-clients__item img { max-width: 170px; }
}

/* === 8. ① WHAT IS FDE ==================================== */
.lp-fde__header { text-align: center; margin-bottom: 64px; }
.lp-fde__forward-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--color-gray);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.lp-fde__title {
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 40px;
}
.lp-fde__definition {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.55;
  max-width: 820px;
  margin: 0 auto 20px;
  color: var(--color-navy);
}
.lp-fde__supplement {
  max-width: 680px;
  margin: 0 auto 48px;
  color: var(--color-charcoal);
}
.lp-fde__supplement strong { font-weight: 700; }
.lp-fde__origin {
  max-width: 680px;
  margin: 32px auto 0;
}

/* 4 criteria */
.lp-fde-criteria {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px clamp(20px, 3vw, 32px);
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-light);
}
.lp-fde-criteria__head {
  margin-bottom: 20px;
  text-align: center;
  color: var(--color-gray);
}
.lp-fde-criteria__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
}
.lp-fde-criteria__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid rgba(13,27,42,0.06);
  text-align: left;
}
.lp-fde-criteria__num {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
  letter-spacing: -0.02em;
  padding-top: 2px;
}
.lp-fde-criteria__label {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.lp-fde-criteria__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-charcoal);
  opacity: 0.82;
}

/* WHY FDE — diagram */
.lp-why-fde {
  margin-top: 96px;
  position: relative;
  background: linear-gradient(180deg, var(--color-navy) 0%, #14304d 100%);
  border-radius: var(--radius-lg);
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 64px);
  color: var(--color-white);
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(13,27,42,0.35);
}
.lp-why-fde::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(0,199,183,0.16);
  filter: blur(80px);
  pointer-events: none;
}
.lp-why-fde::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -160px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(30,91,255,0.18);
  filter: blur(80px);
  pointer-events: none;
}
.lp-why-fde > * { position: relative; z-index: 2; }
.lp-why-fde__head {
  margin-bottom: 48px;
  text-align: center;
}
.lp-why-fde__head .lp-eyebrow {
  color: var(--color-mint);
  margin-bottom: 12px;
}
.lp-why-fde__head h3 {
  color: var(--color-white);
  font-size: clamp(24px, 3vw, 36px);
  max-width: 720px;
  margin: 0 auto;
}
.lp-why-fde__diagram {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  align-items: stretch;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.lp-why-fde__loop,
.lp-why-fde__escape {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.lp-why-fde__loop .lp-eyebrow {
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  text-align: left;
}
.lp-why-fde__escape .lp-eyebrow {
  color: var(--color-mint);
  margin-bottom: 12px;
  text-align: center;
}

.lp-cascade {
  position: relative;
  padding: 8px 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lp-cascade__row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px 0;
}
.lp-cascade__num {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  padding-top: 6px;
}
.lp-cascade__body { padding-bottom: 4px; }
.lp-cascade__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.45;
  margin-bottom: 4px;
}
.lp-cascade__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.lp-cascade__connector {
  position: absolute;
  left: 27px;
  bottom: -10px;
  width: 2px;
  height: 28px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(216,74,61,0.6) 0 4px,
    transparent 4px 8px
  );
}
.lp-cascade__end {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(216,74,61,0.12);
  border: 1px solid rgba(216,74,61,0.4);
  border-radius: 10px;
}
.lp-cascade__end-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #FF6F60;
  padding: 4px 8px;
  background: rgba(255,111,96,0.15);
  border-radius: 4px;
}
.lp-cascade__end-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
}

.lp-why-fde__break {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.lp-why-fde__break-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-mint);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.lp-escape {
  display: flex; flex-direction: column; gap: 18px;
  background: rgba(255,255,255,0.96);
  padding: 32px 28px;
  border-radius: var(--radius);
  flex: 1;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.6);
  border: 1px solid rgba(0,199,183,0.18);
  justify-content: center;
}
.lp-escape__row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 8px 0;
}
.lp-escape__row--accent {
  padding-top: 16px;
  border-top: 1px dashed rgba(0,199,183,0.35);
  margin-top: 4px;
}
.lp-escape__icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--color-mint-50);
  color: var(--color-mint-700);
  display: flex; align-items: center; justify-content: center;
}
.lp-escape__icon--accent {
  background: var(--color-mint);
  color: var(--color-white);
  box-shadow: 0 6px 16px -4px rgba(0,199,183,0.5);
}
.lp-escape__title {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.5;
}
.lp-escape__sub {
  font-size: 12.5px;
  color: var(--color-charcoal);
  margin-top: 4px;
  line-height: 1.65;
  opacity: 0.78;
}

/* Two wheels card */
.lp-two-wheels {
  max-width: 960px;
  margin: 88px auto 0;
  padding: 48px clamp(24px, 5vw, 64px);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
}
.lp-two-wheels__head {
  text-align: center;
  margin-bottom: 36px;
}
.lp-two-wheels__head .lp-eyebrow {
  color: var(--color-gray);
  margin-bottom: 8px;
}
.lp-two-wheels__head-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
}
.lp-fde-wheels {
  display: flex; align-items: center; justify-content: center; gap: 32px;
}
.lp-fde-wheels__col { flex: 1; text-align: center; }
.lp-fde-wheels__col h4 {
  font-size: 22px;
  font-weight: 800;
  margin: 8px 0;
  color: var(--color-navy);
}
.lp-fde-wheels__col p {
  max-width: 280px;
  margin: 0 auto;
}

/* === 9. ② WHY UX ========================================= */
.lp-why-ux {
  background: var(--color-blue);
  color: var(--color-white);
  position: relative;
  overflow: clip;
  padding: var(--space-section) 0;
}
.lp-why-ux__wheel {
  position: absolute;
  top: -15%;
  right: -12%;
  width: 600px;
  opacity: 0.16;
  animation: lp-orbit-2 80s linear infinite;
  transform-origin: center;
}
.lp-why-ux__glow {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  filter: blur(60px);
}
.lp-why-ux__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
.lp-why-ux__h {
  color: var(--color-white);
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 28px;
  max-width: 880px;
}
.lp-why-ux__lead {
  font-size: 17px;
  line-height: 1.95;
  color: rgba(255,255,255,0.86);
  max-width: 760px;
  margin-bottom: 12px;
}
.lp-why-ux__lead strong { color: #FFF; }
.lp-pillars-label {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.lp-ux-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-ux-pillar {
  padding: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lp-ux-pillar__n {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.lp-ux-pillar h3 {
  color: var(--color-white);
  margin-bottom: 12px;
}
.lp-ux-pillar p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.lp-why-ux__callout {
  margin-top: 32px;
  padding: 24px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  font-size: 16px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.lp-why-ux__callout strong { color: #FFF; }

/* === 10. ③ WHY AI ======================================== */
.lp-why-ai {
  background: var(--color-mint);
  color: var(--color-white);
  position: relative;
  overflow: clip;
}
.lp-why-ai__wheel {
  position: absolute;
  bottom: -15%;
  left: -12%;
  width: 600px;
  opacity: 0.16;
  animation: lp-orbit-1 100s linear infinite;
  transform-origin: center;
}
.lp-why-ai__glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  filter: blur(60px);
}
.lp-why-ai__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
.lp-why-ai__h {
  color: var(--color-white);
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 28px;
  max-width: 880px;
}
.lp-why-ai__lead {
  font-size: 17px;
  line-height: 1.95;
  color: rgba(255,255,255,0.92);
  max-width: 760px;
  margin-bottom: 12px;
}
.lp-why-ai__lead strong { color: #FFF; }
.lp-ai-pillars-eyebrow {
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.lp-ai-pillars-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 720px;
}
.lp-ai-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lp-ai-pillar {
  position: relative;
  padding: 32px;
  background: rgba(255,255,255,0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lp-ai-pillar__n {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.lp-ai-pillar h3 {
  color: var(--color-white);
  font-size: 22px;
  margin-bottom: 14px;
}
.lp-ai-pillar p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
  margin: 0;
}
.lp-ai-pillars-arrow {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  z-index: 3;
  color: var(--color-mint);
}
.lp-why-ai__callout {
  margin-top: 32px;
  padding: 24px;
  background: rgba(255,255,255,0.14);
  border-radius: var(--radius);
  font-size: 16px;
  color: rgba(255,255,255,0.95);
}
.lp-why-ai__callout strong { color: #FFF; }

/* === 11. ④ WHY THIS PROGRAMME ============================ */
.lp-why-prg__h {
  max-width: 1000px;
  margin-bottom: 28px;
}
.lp-why-prg__h-sub { color: var(--color-gray); }
.lp-why-prg__lead {
  max-width: 760px;
  margin-bottom: 80px;
}
.lp-essence-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.lp-essence-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}
.lp-essence-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.lp-essence-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13,27,42,0.18);
}
.lp-essence-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--color-blue), var(--color-mint));
  min-height: 80px;
  opacity: 0.4;
  margin-top: 8px;
}
.lp-essence-body { padding-bottom: 56px; }
.lp-essence-body h3 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}
.lp-essence-body p { max-width: 720px; margin: 0; }
.lp-why-prg__callout {
  margin: 8px 0 0;
  padding: 32px 36px;
  background: linear-gradient(135deg, #DDE7FB 0%, #C9D7F0 100%);
  border-radius: var(--radius);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-navy);
}

/* === 12. ⑤ OUTPUTS ======================================= */
.lp-out__h {
  color: var(--color-white);
  margin-bottom: 28px;
  max-width: 1000px;
}
.lp-out__h-accent { color: var(--color-mint); }
.lp-out__lead {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  max-width: 720px;
  margin-bottom: 72px;
}
.lp-out__lead strong { color: #FFF; }
.lp-out3 {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: stretch;
  gap: 0;
}
.lp-out3__card {
  padding: 36px 32px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
}
.lp-out3__card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}
.lp-out3__card--final {
  background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-mint-700) 100%);
  box-shadow: 0 24px 48px -12px rgba(0,199,183,0.4);
}
.lp-out3__card--final:hover {
  background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-mint-700) 100%);
}
.lp-out3__step {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-mint);
  margin-bottom: 16px;
}
.lp-out3__card--final .lp-out3__step { color: rgba(255,255,255,0.9); }
.lp-out3__sub {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.lp-out3__card--final .lp-out3__sub { color: rgba(255,255,255,0.75); }
.lp-out3__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-white);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-out3__title-before {
  opacity: 0.5;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.35);
  text-decoration-thickness: 2px;
  font-weight: 700;
}
.lp-out3__title-arrow {
  color: var(--color-mint);
  font-weight: 900;
  opacity: 0.9;
}
.lp-out3__card--final .lp-out3__title-arrow {
  color: var(--color-white);
}
.lp-out3__card--final .lp-out3__title-before {
  text-decoration-color: rgba(255,255,255,0.5);
}
.lp-out3__desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin: 0 0 24px;
}
.lp-out3__card--final .lp-out3__desc { color: rgba(255,255,255,0.88); }
.lp-out3__docs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-out3__doc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.lp-out3__card--final .lp-out3__doc {
  background: rgba(255,255,255,0.2);
  color: var(--color-white);
}
.lp-out3__doc svg { color: var(--color-mint); flex-shrink: 0; }
.lp-out3__card--final .lp-out3__doc svg { color: rgba(255,255,255,0.9); }
.lp-out3__bridge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.lp-out3__bridge-label {
  position: absolute;
  top: calc(50% - 28px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: rgba(0,199,183,0.85);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* === 12b. ⑤b CASES (企業事例) ============================ */
.lp-cases__h { max-width: 920px; margin-bottom: 24px; }
.lp-cases__h-accent {
  background: linear-gradient(135deg, var(--color-blue), var(--color-mint));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-cases__lead { max-width: 720px; margin-bottom: 56px; }

.lp-case-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.lp-case-card__cover {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: var(--color-paper);
}
.lp-case-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.lp-case-card__body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-case-card__tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-mint-700);
  text-transform: uppercase;
}
.lp-case-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.45;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: pretty;
}
.lp-case-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  padding: 16px 0;
  border-top: 1px solid var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-light);
  margin-top: 4px;
}
.lp-case-card__meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.lp-case-card__meta-item .meta-k {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-gray);
  text-transform: uppercase;
}
.lp-case-card__meta-item .meta-v {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
}
.lp-case-card__meta-item--highlight .meta-v {
  color: var(--color-mint-700);
  font-size: 17px;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}
.lp-case-card__excerpt {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-charcoal);
  margin: 0;
}
.lp-case-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 12px 20px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  align-self: flex-start;
  transition: background 0.2s, transform 0.18s;
}
.lp-case-card:hover .lp-case-card__cta {
  background: #000;
}
.lp-case-card__cta svg {
  transition: transform 0.2s;
}
.lp-case-card:hover .lp-case-card__cta svg {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .lp-case-card { grid-template-columns: 1fr; }
  .lp-case-card__cover { min-height: 0; aspect-ratio: 16 / 9; }
  .lp-case-card__body { padding: 28px 24px; }
}

/* === 13. ⑥ PROOF (Voices + Instructor) =================== */
.lp-proof__h { max-width: 980px; margin-bottom: 64px; }
.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-testimonial {
  background: var(--color-paper);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.lp-testimonial:hover {
  transform: translateY(-4px);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}
.lp-testimonial__quote {
  color: var(--color-mint);
  opacity: 0.5;
  margin-bottom: 16px;
}
.lp-testimonial__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-charcoal);
  margin: 0 0 28px;
  flex: 1;
}
.lp-testimonial__person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  flex-shrink: 0;
}
.lp-testimonial__name { font-size: 14px; font-weight: 700; color: var(--color-navy); }
.lp-testimonial__role { font-size: 11px; color: var(--color-gray); margin-top: 2px; }
.lp-testimonial__company { font-size: 11px; color: var(--color-gray); }

.lp-instructor-wrap { margin-top: 120px; }
.lp-instructor-compact {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}
.lp-instructor-photo {
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-mint));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px -12px rgba(13,27,42,0.32);
}
.lp-instructor-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.lp-instructor__furigana {
  font-size: 13px;
  color: var(--color-gray);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.lp-instructor__name {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}
.lp-instructor__name-sub {
  font-size: 18px;
  color: var(--color-gray);
  font-weight: 600;
}
.lp-instructor__title-row {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 28px;
  line-height: 1.7;
}
.lp-instructor__bio {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--color-charcoal);
  max-width: 720px;
  margin-bottom: 32px;
}
.lp-instructor__bio strong { color: var(--color-navy); }

.lp-creds__books { margin-bottom: 32px; }
.lp-creds__books-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-gray);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.lp-creds__books-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.lp-creds__book {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 16px 12px 12px;
  background: var(--color-paper);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  flex: 1 1 280px;
  min-width: 0;
}
.lp-creds__book:hover {
  transform: translateY(-2px);
  border-color: var(--color-mint);
  box-shadow: 0 12px 28px -10px rgba(13,27,42,0.18);
}
.lp-creds__book img {
  width: 56px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(13,27,42,0.18);
}
.lp-creds__book-meta { min-width: 0; }
.lp-creds__book-year {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-mint);
  margin-bottom: 4px;
}
.lp-creds__book-title {
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--color-navy);
}
.lp-creds {
  display: flex;
  flex-direction: column;
}
.lp-creds__row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 12px 0;
}
.lp-creds__year {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  padding-top: 3px;
}
.lp-creds__text {
  font-size: 14px;
  color: var(--color-charcoal);
  line-height: 1.6;
}

/* === 14. ⑦ COURSE ======================================== */
.lp-course-h { max-width: 980px; margin-bottom: 28px; }
.lp-course-h-grad {
  background: linear-gradient(135deg, var(--color-blue), var(--color-mint));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-course-lead {
  max-width: 760px;
  margin-bottom: 72px;
}
.lp-course-lead strong { color: var(--color-navy); }

.lp-course {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.lp-course__head {
  position: relative;
  background: linear-gradient(135deg, var(--color-navy) 0%, #14304d 60%, #0d1b2a 100%);
  color: var(--color-white);
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 64px) clamp(40px, 5vw, 56px);
  overflow: hidden;
}
.lp-course__head-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
}
.lp-course__head-inner {
  position: relative;
  z-index: 2;
}
.lp-course__badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  background: rgba(0,199,183,0.14);
  color: var(--color-mint);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 24px;
  border: 1px solid rgba(0,199,183,0.3);
}
.lp-course__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-mint);
  box-shadow: 0 0 0 4px rgba(0,199,183,0.2);
  animation: lp-course-pulse 2.2s ease-in-out infinite;
}
.lp-course__head-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-mint);
  letter-spacing: 0.22em;
  margin-bottom: 14px;
}
.lp-course__title {
  font-family: var(--font-jp), sans-serif;
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px 18px;
}
.lp-course__title-grad {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}
.lp-course__title-rest { color: var(--color-white); }
.lp-course__head-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  max-width: 640px;
}
.lp-course__head-meta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.lp-course__head-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-course__head-meta-k {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(0,199,183,0.85);
  text-transform: uppercase;
}
.lp-course__head-meta-v {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
}
.lp-course__head-meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}
.lp-course__modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: clamp(40px, 5vw, 56px) clamp(32px, 5vw, 56px) 0;
}
.lp-course__module {
  padding: 28px;
  background: var(--color-paper);
  border-radius: var(--radius);
}
.lp-course__module-illust {
  width: 100%;
  aspect-ratio: 240 / 120;
  margin-bottom: 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.lp-course__module-illust svg {
  width: 100%;
  height: 100%;
  max-height: 130px;
  padding: 12px 16px;
  box-sizing: border-box;
}
.lp-course__module-illust .generated-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-course__module-illust--ux {
  background: var(--color-blue-50);
  color: var(--color-blue);
  border: 1px solid var(--color-blue-100);
}
.lp-course__module-illust--ai {
  background: var(--color-mint-50);
  color: var(--color-mint-700);
  border: 1px solid var(--color-mint-100);
}
.lp-course__module-illust--grad {
  background: linear-gradient(135deg, var(--color-blue-50) 0%, var(--color-mint-50) 100%);
  color: var(--color-mint-700);
  border: 1px solid rgba(0,199,183,0.25);
}
.lp-course__module .lp-eyebrow {
  display: block;
  margin-bottom: 12px;
}
.lp-course__module-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.lp-course__module-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
}
.lp-course__module-num--ux { background: var(--color-blue); }
.lp-course__module-num--ai { background: var(--color-mint); }
.lp-course__module-num--grad {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-mint) 100%);
}
.lp-course__module-eyebrow--ux { color: var(--color-blue); }
.lp-course__module-eyebrow--ai { color: var(--color-mint); }
.lp-course__module-eyebrow--grad {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-course__module--grad {
  background: linear-gradient(135deg, rgba(30,91,255,0.05) 0%, rgba(0,199,183,0.07) 100%);
  border: 1px solid rgba(0,199,183,0.22);
}
.lp-course__module-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.lp-course__module-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-charcoal);
  margin: 0;
}
.lp-course__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px clamp(32px, 5vw, 56px);
  margin-top: 32px;
  background: var(--color-paper);
}
.lp-course__detail-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--color-gray);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.lp-course__detail-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.5;
}
.lp-course__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: clamp(32px, 4vw, 48px) clamp(32px, 5vw, 56px);
  background: var(--color-navy);
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}
.lp-course__foot::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(30,91,255,0.15), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(0,199,183,0.12), transparent 55%);
  pointer-events: none;
}
.lp-course__foot > * { position: relative; z-index: 2; }
.lp-course__foot-info {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 1 1 360px;
}
.lp-course__foot-mark {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
}
.lp-course__foot-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-mint);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.lp-course__foot-headline {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.55;
}
.lp-course__foot-headline-accent { color: var(--color-mint); }
.lp-course__foot-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 22px;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: 999px;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,0.4);
}
.lp-course__foot-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -6px rgba(0,0,0,0.5);
}
.lp-course__foot-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  transition: transform 0.2s ease;
}
.lp-course__foot-cta:hover .lp-course__foot-cta-arrow { transform: translateX(3px); }

/* === 15. ⑧ ARTICLES (note) =============================== */
.lp-note-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.lp-note-head__h {
  max-width: 880px;
  margin-bottom: 20px;
}
.lp-note-head__h-sub { color: var(--color-gray); }
.lp-note-head__lead {
  max-width: 640px;
  margin: 0;
}
.lp-note-cta-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease;
  white-space: nowrap;
}
.lp-note-cta-top:hover { transform: translateY(-1px); background: #000; }

.lp-note-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lp-note-card__thumb--image {
  background: var(--color-paper);
}
.lp-note-card__thumb--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-note-card__cat--case {
  color: var(--color-mint-700);
  background: rgba(0,199,183,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-self: flex-start;
}
.lp-note-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(13,27,42,0.04), 0 6px 18px rgba(13,27,42,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-note-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(13,27,42,0.08), 0 18px 40px rgba(13,27,42,0.12);
}
.lp-note-card__thumb {
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lp-note-card__thumb-decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.18), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 40%);
  pointer-events: none;
}
.lp-note-card__body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-note-card__cat {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-mint-700);
  text-transform: uppercase;
}
.lp-note-card__title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-navy);
  flex: 1;
  text-wrap: pretty;
}
.lp-note-card__meta {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--color-gray);
}
.lp-note-card__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

/* === 16. ⑨ FAQ =========================================== */
.lp-faq-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.lp-faq__lede {
  margin-top: 16px;
  max-width: 240px;
}
.lp-faq-item {
  border-bottom: 1px solid var(--color-gray-light);
}
.lp-faq-item:first-child { border-top: 1px solid var(--color-gray-light); }
.lp-faq-item__btn {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: inherit;
}
.lp-faq-item__qrow {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex: 1;
}
.lp-faq-item__qnum {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gray);
  transition: color 0.2s;
  flex-shrink: 0;
  letter-spacing: 0.1em;
}
.lp-faq-item.is-open .lp-faq-item__qnum { color: var(--color-mint); }
.lp-faq-item__q {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.55;
}
.lp-faq-item__chev {
  flex-shrink: 0;
  color: var(--color-gray);
  transition: transform 0.25s ease, color 0.2s;
}
.lp-faq-item.is-open .lp-faq-item__chev {
  color: var(--color-mint);
  transform: rotate(180deg);
}
.lp-faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.lp-faq-item.is-open .lp-faq-item__panel { max-height: 500px; }
.lp-faq-item__a {
  padding: 0 0 24px 50px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-charcoal);
  max-width: 880px;
}

/* === 17. ⑩ CTA =========================================== */
.lp-cta {
  background: var(--color-navy);
  color: var(--color-white);
  position: relative;
  overflow: clip;
}
.lp-cta__blobs {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  pointer-events: none;
}
.lp-cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 20%, rgba(0,199,183,0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(30,91,255,0.18), transparent 55%);
}
.lp-cta-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(64px, 10vw, 128px) 0;
  position: relative;
  z-index: 2;
}
.lp-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  background: rgba(0,199,183,0.14);
  border: 1px solid rgba(0,199,183,0.35);
  color: var(--color-mint);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 32px;
}
.lp-cta-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-mint);
  animation: lp-cta-pulse 2s ease-in-out infinite;
}
.lp-cta-h {
  font-family: var(--font-jp), sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0 0 32px;
}
.lp-cta-h-accent {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-cta__lead {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 auto 24px;
}
.lp-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 18px 24px 18px 44px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-mint) 100%);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-family: var(--font-jp);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  text-decoration: none;
  box-shadow: 0 24px 56px -14px rgba(0,199,183,0.6), 0 10px 22px -6px rgba(30,91,255,0.5);
  overflow: hidden;
}
.lp-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.32) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.lp-cta-btn:hover::before { transform: translateX(120%); }
.lp-cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 24px 50px -12px rgba(0,199,183,0.7), 0 8px 16px -4px rgba(30,91,255,0.55);
}
.lp-cta-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}
.lp-cta-btn:hover .lp-cta-btn-arrow {
  transform: translateX(4px);
  background: rgba(255,255,255,0.28);
}

/* === Contact form (inside ⑩CTA) === */
.lp-contact-form {
  max-width: 720px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: left;
  position: relative;
  z-index: 2;
}
.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.lp-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-form-label {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.lp-form-required {
  color: var(--color-mint);
  margin-left: 2px;
  font-weight: 800;
}
.lp-form-field input,
.lp-form-field select,
.lp-form-field textarea {
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--color-white);
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.18s, background 0.18s;
  width: 100%;
}
.lp-form-field input::placeholder,
.lp-form-field textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.lp-form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.lp-form-field select option {
  background: var(--color-navy);
  color: var(--color-white);
}
.lp-form-field input:focus,
.lp-form-field select:focus,
.lp-form-field textarea:focus {
  outline: none;
  border-color: var(--color-mint);
  background: rgba(0,0,0,0.4);
  box-shadow: 0 0 0 3px rgba(0,199,183,0.18);
}
.lp-form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}
.lp-form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-top: 4px;
  cursor: pointer;
}
.lp-form-privacy input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--color-mint);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.lp-form-privacy a {
  color: var(--color-mint);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0,199,183,0.5);
  transition: text-decoration-color 0.15s;
}
.lp-form-privacy a:hover {
  text-decoration-color: var(--color-mint);
}
.lp-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 28px 18px 32px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-mint) 100%);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-top: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  box-shadow: 0 16px 36px -8px rgba(0,199,183,0.5), 0 6px 14px -4px rgba(30,91,255,0.4);
  position: relative;
  overflow: hidden;
}
.lp-form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.lp-form-submit:hover::before {
  transform: translateX(120%);
}
.lp-form-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.lp-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.lp-form-submit-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: transform 0.2s;
}
.lp-form-submit:hover .lp-form-submit-arrow {
  transform: translateX(3px);
}
.lp-form-status {
  font-size: 14px;
  text-align: center;
  padding: 14px 16px;
  border-radius: 8px;
  display: none;
  line-height: 1.6;
}
.lp-form-status.is-success {
  display: block;
  background: rgba(0,199,183,0.16);
  color: #FFF;
  border: 1px solid rgba(0,199,183,0.45);
}
.lp-form-status.is-error {
  display: block;
  background: rgba(216,74,61,0.16);
  color: #FFD1CC;
  border: 1px solid rgba(216,74,61,0.45);
}
.lp-form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin: 4px 0 0;
}

@media (max-width: 600px) {
  .lp-contact-form {
    padding: 24px 18px;
    margin-top: 32px;
  }
  .lp-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lp-form-submit {
    font-size: 16px;
    padding: 16px 22px 16px 26px;
  }
}

/* === 18. Footer ========================================== */
.lp-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}
.lp-footer__intro {
  font-size: 13px;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 320px;
}
.lp-footer__col-h {
  font-size: 12px;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.lp-footer__col a {
  display: block;
  font-size: 13px;
  padding: 6px 0;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.lp-footer__col a:hover { color: #FFF; }
.lp-footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}
.lp-footer__social {
  display: flex;
  gap: 16px;
}
.lp-footer__social a:hover { color: #FFF; }

/* === 19. Responsive ====================================== */
@media (max-width: 900px) {
  .lp-why-fde__diagram { grid-template-columns: 1fr; }
  .lp-why-fde__break { transform: rotate(90deg); height: 80px; }
  .lp-ux-pillars { grid-template-columns: 1fr; gap: 16px; }
  .lp-ai-pillars-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-ai-pillars-arrow {
    right: 50% !important;
    top: auto !important;
    bottom: -32px !important;
    transform: translateX(50%) rotate(90deg) !important;
  }
  .lp-out3 { grid-template-columns: 1fr; }
  .lp-out3__bridge { height: 48px; padding: 8px 0; }
  .lp-out3__bridge svg { width: 24px; height: 48px; transform: rotate(90deg); }
  .lp-out3__bridge-label { top: 50%; left: calc(50% + 28px); transform: translateY(-50%); }
  .lp-testimonials { grid-template-columns: 1fr; }
  .lp-instructor-compact { grid-template-columns: 1fr; gap: 24px; }
  .lp-instructor-photo { width: 180px; height: 180px; }
  .lp-note-grid { grid-template-columns: 1fr; }
  .lp-faq-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .lp-section { padding: 64px 0; }
  .lp-card { padding: 24px; }
  .lp-btn { padding: 14px 22px; font-size: 14px; }
  .lp-essence-row { grid-template-columns: 56px 1fr; gap: 20px; }
  .lp-essence-dot { width: 44px; height: 44px; font-size: 12px; }
  .lp-fde-criteria__grid { grid-template-columns: 1fr; }
  .lp-fde-criteria__item { padding: 14px 14px; }
  .lp-fde-wheels { flex-direction: column; gap: 24px; }
  .lp-course__modules { grid-template-columns: 1fr; }
  .lp-course__details { grid-template-columns: 1fr; }
  .lp-course__head-meta-divider { display: none; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
