/* ============================================================
   Applied ICT Course — national-level landing
   ============================================================ */

html { scroll-behavior: smooth; }

body.landing-body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 30%, color-mix(in srgb, var(--brand) 6%, transparent), transparent 45%),
    linear-gradient(180deg, color-mix(in srgb, var(--brand) 5%, var(--paper)) 0%, var(--paper) 32%, var(--paper) 100%);
  overflow-x: hidden;
}

.lp-wrap { width: min(1180px, calc(100% - 2 * var(--gutter-x))); margin-inline: auto; }

/* ---------- Top nav ---------- */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 10px 0;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.lp-nav-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 36px;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  justify-self: start;
}

.lp-brand img { width: 46px; height: 46px; object-fit: contain; }

.lp-brand-kicker {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: color-mix(in srgb, var(--indigo) 85%, transparent);
}

.lp-brand-name {
  margin: 2px 0 0;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: #01aeed;
  line-height: 1.2;
}

.lp-nav-inner > nav {
  justify-self: start;
  min-width: 0;
}

.lp-nav-links {
  display: none;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}

.lp-nav-links a {
  text-decoration: none;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.lp-nav-links a:hover { color: var(--brand); }

.lp-nav-links a.is-active,
.lp-nav-links a[aria-current="true"] {
  color: color-mix(in srgb, var(--ink) 92%, transparent);
  font-weight: 500;
  box-shadow: inset 0 -2px 0 var(--brand);
}

.lp-nav-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
  justify-self: end;
}

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0F6B6B, #1A8A8A);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.lp-nav-cta:hover { transform: translateY(-1px); }

.lp-nav-partner {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(180px, 36vw);
  object-fit: contain;
}

@media (min-width: 960px) {
  .lp-nav-links { display: flex; }
  .lp-nav-partner { height: 48px; max-width: 220px; }
}

@media (max-width: 640px) {
  .lp-nav-cta { display: none; }
  .lp-nav-partner { height: 32px; max-width: 132px; }
  .lp-nav-end .theme-toggle,
  .lp-nav-end .font-scale { display: inline-flex; }
}

/* ---------- Hero: full-bleed cinematic composition ---------- */
.lp-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0a2a32;
  min-height: clamp(520px, 88vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Pin hero content column to the same shell as header / stats */
.lp-hero > .lp-wrap {
  align-self: center;
  width: min(1180px, calc(100% - 2 * var(--gutter-x)));
  flex: 1 1 auto;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #062028;
  overflow: hidden;
}

/* Ultra-wide banner (≈4.3:1): pin to the right so the isometric scene stays visible */
.lp-hero-bg img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  transform-origin: 78% 55%;
  animation: lpKen 22s ease-in-out infinite alternate;
}

.lp-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 78% 52%, rgba(0, 212, 200, 0.1), transparent 62%);
  pointer-events: none;
}

.lp-hero-scrim {
  position: absolute;
  inset: 0;
  /* Soft left veil for copy; keep right art crisp */
  background:
    linear-gradient(98deg,
      rgba(4, 22, 28, 0.72) 0%,
      rgba(4, 22, 28, 0.42) 30%,
      rgba(4, 22, 28, 0.12) 52%,
      transparent 72%),
    linear-gradient(180deg,
      rgba(4, 22, 28, 0.22) 0%,
      transparent 28%,
      transparent 68%,
      rgba(4, 22, 28, 0.5) 100%);
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 0;
  box-sizing: border-box;
  padding: clamp(72px, 12vh, 120px) 0;
}

.lp-hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 34rem;
}

.lp-hero-uni {
  margin: 0 0 18px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(168, 232, 228, 0.88);
  opacity: 0;
  transform: translateY(16px);
  animation: lpRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.08s;
}

.lp-hero-uni::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: linear-gradient(90deg, #5EEAD4, transparent);
}

.lp-hero-brand {
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(20px);
  animation: lpRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.18s;
}

.lp-hero-brand-main {
  font-family: var(--font-ui);
  font-size: clamp(2.15rem, 4.6vw, 3.55rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(5, 24, 30, 0.45);
}

.lp-hero-brand-sub {
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #7DD3D3;
}

.lp-hero-headline {
  margin: 0 0 14px;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
  opacity: 0;
  transform: translateY(18px);
  animation: lpRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.3s;
}

.lp-hero-lead {
  margin: 0 0 28px;
  max-width: 32rem;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  line-height: 1.75;
  color: rgba(230, 244, 244, 0.82);
  font-weight: 400;
  opacity: 0;
  transform: translateY(18px);
  animation: lpRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.4s;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(18px);
  animation: lpRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.52s;
}

/* Decorative orbit on the visual side — laptop+ only */
.lp-hero-visual {
  display: none;
  pointer-events: none;
}

.lp-hero-orbit {
  position: absolute;
  width: min(46vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 211, 0.16);
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  animation: lpOrbitPulse 8s ease-in-out infinite;
  pointer-events: none;
}

.lp-hero-orbit--2 {
  width: min(34vw, 380px);
  right: 4%;
  border-color: rgba(125, 211, 211, 0.1);
  animation-delay: -2.5s;
}

.lp-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  z-index: 3;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  font: inherit;
  color: inherit;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 12px 30px rgba(112, 44, 145, 0.45));
}

.lp-hero-video:focus-visible {
  outline: 2px solid #c9a3e0;
  outline-offset: 8px;
  border-radius: 50%;
}

.lp-hero-video .lp-play {
  position: relative;
  inset: auto;
  transform: none;
  width: 84px;
  height: 84px;
  color: #fff;
  background: linear-gradient(145deg, #9B4FC4 0%, #702c91 48%, #4A1C62 100%);
  border: 2px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 12px 32px rgba(112, 44, 145, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.lp-hero-video .lp-play::before {
  inset: -12px;
  border-width: 2px;
  border-color: rgba(112, 44, 145, 0.4);
}

.lp-hero-video:hover .lp-play,
.lp-hero-video:focus-visible .lp-play {
  transform: scale(1.08);
  background: linear-gradient(145deg, #8B45B5 0%, #702c91 50%, #5A2375 100%);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  animation: none;
}

.lp-hero-video-tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translateX(-50%) translateY(4px);
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(6, 28, 34, 0.92);
  color: #E8FFFB;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.lp-hero-video-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(6, 28, 34, 0.92);
}

.lp-hero-video:hover .lp-hero-video-tip,
.lp-hero-video:focus-visible .lp-hero-video-tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.lp-hero-rail {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 14px var(--gutter-x) 18px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(200, 236, 232, 0.72);
  border-top: 1px solid rgba(125, 211, 211, 0.14);
  background: linear-gradient(180deg, rgba(6, 28, 34, 0.2), rgba(6, 28, 34, 0.55));
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: lpFade 0.9s ease forwards 0.7s;
}

.lp-hero-rail-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(125, 211, 211, 0.55);
  flex-shrink: 0;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.lp-btn:hover { transform: translateY(-1px); }

.lp-btn-primary,
.lp-btn-solid,
.lp-btn-brand {
  background: linear-gradient(135deg, #0F6B6B 0%, #149494 100%);
  color: #fff;
}

.lp-btn-primary:hover,
.lp-btn-solid:hover,
.lp-btn-brand:hover {
  background: linear-gradient(135deg, #0c5a5a 0%, #108080 100%);
  filter: brightness(1.05);
}

.lp-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(125, 211, 211, 0.65);
}

.lp-hero-intro-btn {
  display: none;
  appearance: none;
  -webkit-appearance: none;
}

/* Laptop / desktop */
@media (min-width: 960px) {
  .lp-hero {
    min-height: 520px;
    height: clamp(520px, 68vh, 640px);
  }

  .lp-hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    padding: 40px 0;
  }

  .lp-hero-copy {
    max-width: 32rem;
  }

  .lp-hero-visual {
    display: block;
    position: relative;
    min-height: 200px;
    align-self: stretch;
    pointer-events: none;
  }

  .lp-hero-video {
    filter: none;
    overflow: visible;
  }

  .lp-hero-video .lp-play {
    overflow: visible;
    animation: lpHeroPlayGlow 2.4s ease-in-out infinite;
    box-shadow:
      0 0 16px 4px rgba(155, 79, 196, 0.32),
      0 8px 20px rgba(112, 44, 145, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }

  .lp-hero-video .lp-play::before,
  .lp-hero-video .lp-play::after {
    content: '';
    position: absolute;
    inset: 0;
    display: block;
    border-radius: 50%;
    border: 2px solid rgba(221, 186, 242, 0.65);
    pointer-events: none;
    transform-origin: 50% 50%;
    animation: lpHeroPlayWave 2s ease-out infinite;
  }

  .lp-hero-video .lp-play::after {
    border-color: rgba(186, 120, 220, 0.5);
    animation-delay: 1s;
  }

  .lp-hero-video:hover .lp-play,
  .lp-hero-video:focus-visible .lp-play {
    box-shadow:
      0 0 22px 6px rgba(186, 120, 220, 0.45),
      0 8px 22px rgba(112, 44, 145, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.34);
  }

  .lp-hero-rail {
    justify-content: flex-start;
    gap: 16px 22px;
    padding-inline: max(var(--gutter-x), calc((100% - 1180px) / 2));
  }
}

/* Mid laptops (13–15") */
@media (min-width: 960px) and (max-width: 1366px) {
  .lp-hero {
    min-height: 480px;
    height: clamp(480px, 64vh, 580px);
  }

  .lp-hero-brand-main {
    font-size: clamp(1.85rem, 3.1vw, 2.5rem);
  }

  .lp-hero-brand-sub {
    font-size: clamp(0.95rem, 1.45vw, 1.15rem);
  }

  .lp-hero-headline {
    font-size: clamp(1.15rem, 1.85vw, 1.38rem);
    margin-bottom: 10px;
  }

  .lp-hero-lead {
    font-size: 0.94rem;
    max-width: 26rem;
    margin-bottom: 20px;
    line-height: 1.65;
  }

  .lp-hero-uni { margin-bottom: 12px; }

  .lp-hero-inner {
    padding: 32px 0;
  }

  .lp-hero-scrim {
    background:
      linear-gradient(98deg,
        rgba(4, 22, 28, 0.78) 0%,
        rgba(4, 22, 28, 0.48) 28%,
        rgba(4, 22, 28, 0.14) 50%,
        transparent 70%),
      linear-gradient(180deg,
        rgba(4, 22, 28, 0.2) 0%,
        transparent 34%,
        rgba(4, 22, 28, 0.48) 100%);
  }
}

/* Wide desktop */
@media (min-width: 1280px) {
  .lp-nav-links a {
    font-size: 15.5px;
  }
  .lp-nav-links {
    gap: clamp(18px, 2vw, 32px);
  }
}

@media (min-width: 960px) and (max-width: 1439px) {
  .lp-hero-video .lp-play {
    width: 64px;
    height: 64px;
  }

  .lp-hero-video .lp-play svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 1440px) {
  .lp-nav {
    padding: 12px 0;
  }

  .lp-nav-links a {
    font-size: 17px;
    letter-spacing: 0.012em;
  }

  .lp-nav-links {
    gap: clamp(22px, 2.2vw, 36px);
  }

  .lp-brand-kicker {
    font-size: 12px;
  }

  .lp-brand-name {
    font-size: 15px;
  }

  .lp-hero {
    min-height: 560px;
    height: clamp(560px, 66vh, 680px);
  }

  .lp-hero-copy {
    max-width: 34rem;
  }
}

@media (max-width: 959px) {
  .lp-hero {
    min-height: clamp(480px, 78vh, 640px);
  }

  .lp-hero-bg img {
    right: -12%;
    height: 70%;
    top: 0;
    opacity: 0.85;
  }

  .lp-hero-scrim {
    background:
      linear-gradient(180deg,
        rgba(4, 22, 28, 0.35) 0%,
        rgba(4, 22, 28, 0.72) 45%,
        rgba(4, 22, 28, 0.96) 100%),
      linear-gradient(105deg,
        rgba(4, 22, 28, 0.7) 0%,
        rgba(4, 22, 28, 0.2) 100%);
  }

  .lp-hero-inner {
    align-items: end;
    padding: 48px 0;
  }

  .lp-hero-rail {
    gap: 8px 12px;
    font-size: 11px;
  }
}

@media (max-width: 959px) {
  .lp-hero-visual {
    display: none;
  }

  .lp-hero-intro-btn {
    display: inline-flex;
  }

  .lp-hero-actions {
    width: 100%;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .lp-hero-actions .lp-btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .lp-hero-actions { width: 100%; }
  .lp-hero-actions .lp-btn { flex: 1 1 auto; }
  .lp-hero-rail-dot:nth-of-type(n+4),
  .lp-hero-rail > span:nth-child(n+6) { display: none; }
}

/* ---------- Stats strip (below hero) ---------- */
.lp-stats {
  position: relative;
  z-index: 4;
  margin: 0;
  padding: 0 0 8px;
  background: transparent;
}

.lp-stats .lp-wrap {
  position: relative;
  margin-top: -1px;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 14px 0 0;
  background: transparent;
  border: none;
}

@media (min-width: 720px) {
  .lp-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}

.lp-stat {
  --lp-stat-accent: var(--brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  color: var(--deep);
  padding: 0.8rem 0.55rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--line-mid);
  background: var(--surface);
}

.lp-stat:nth-child(1) { --lp-stat-accent: var(--brand); }
.lp-stat:nth-child(2) { --lp-stat-accent: var(--secondary); }
.lp-stat:nth-child(3) { --lp-stat-accent: var(--amber); }
.lp-stat:nth-child(4) { --lp-stat-accent: var(--moss); }

.lp-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 700;
  line-height: 1;
  color: var(--lp-stat-accent);
  letter-spacing: -0.02em;
}

.lp-stat-value::after {
  content: '';
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.4rem auto 0;
  border-radius: 2px;
  background: var(--lp-stat-accent);
  opacity: 0.55;
}

.lp-stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--read-muted);
  font-family: var(--font-body);
}

/* ---------- Intro cinema lightbox ---------- */
body.lp-cinema-open { overflow: hidden; }

.lp-cinema[hidden] { display: none !important; }

.lp-cinema {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lp-cinema-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 24, 0.82);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.lp-cinema-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  animation: lpCinemaIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.lp-cinema-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  border: 1px solid rgba(125, 211, 211, 0.28);
}

.lp-cinema-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0d1a1f;
}

.lp-cinema-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lp-cinema-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ---------- Sections ---------- */
.lp-section { padding: 56px 0; }

.lp-section-head { margin-bottom: 28px; max-width: 40rem; }

.lp-kicker {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.lp-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--deep);
  line-height: 1.3;
}

.lp-sub {
  margin: 0;
  color: var(--read-muted);
  line-height: 1.65;
  font-size: 1rem;
}

/* Goal */
.lp-goal {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}

@media (min-width: 900px) {
  .lp-goal {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 40px;
  }
}

/* Illustration shells — no tinted box, no drop shadow */
.lp-illust {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  display: block;
  width: 100%;
  max-width: 540px;
}

.lp-illust img {
  width: 100%;
  height: auto;
  max-height: min(460px, 52vw);
  object-fit: contain;
  object-position: center;
  display: block;
}

.lp-illust--goal img { max-height: min(420px, 48vw); }
.lp-illust--journey img { max-height: min(360px, 42vw); }
.lp-illust--dark img { max-height: min(420px, 70vw); }

.lp-illust--dark {
  background: transparent;
  border: none;
  box-shadow: none;
  justify-self: center;
  max-width: 480px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.lp-illust--play {
  isolation: isolate;
}

.lp-illust--play:focus-visible {
  outline: 2px solid #7DD3D3;
  outline-offset: 6px;
  border-radius: 16px;
}

.lp-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0A2A32;
  background: #fff;
  border: 3px solid #5EEAD4;
  transition: transform 0.2s ease, background 0.2s ease;
  animation: lpPlayPulse 2.4s ease-in-out infinite;
}

.lp-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(94, 234, 212, 0.45);
  pointer-events: none;
}

.lp-play svg,
.lp-play iconify-icon {
  margin-left: 3px;
  display: block;
  position: relative;
  z-index: 1;
}

.lp-illust--play:hover .lp-play,
.lp-illust--play:focus-visible .lp-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #E8FFFB;
  animation: none;
}

.lp-goal-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.lp-goal-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--read-ink);
}

/* Module grid */
.lp-module-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .lp-module-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .lp-module-grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-mod {
  --mod-tint: color-mix(in srgb, var(--mod-accent, var(--brand)) 6%, var(--surface));
  --mod-tint-deep: color-mix(in srgb, var(--mod-accent, var(--brand)) 10%, var(--surface));
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px 20px 18px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, var(--mod-tint) 0%, var(--surface) 42%, color-mix(in srgb, var(--mod-accent, var(--brand)) 4%, var(--surface)) 100%);
  border: 1.5px solid color-mix(in srgb, var(--mod-accent, var(--brand)) 18%, var(--line));
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lp-mod.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.lp-mod:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--mod-accent, var(--brand)) 28%, var(--line-mid));
  background:
    linear-gradient(165deg, var(--mod-tint-deep) 0%, var(--surface) 50%, color-mix(in srgb, var(--mod-accent, var(--brand)) 5%, var(--surface)) 100%);
}

.lp-mod-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.lp-mod-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--mod-accent, var(--brand));
  background: color-mix(in srgb, var(--mod-accent, var(--brand)) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--mod-accent, var(--brand)) 14%, transparent);
}

.lp-mod-label {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--mod-accent, var(--brand));
}

.lp-mod-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--deep);
}

.lp-mod-topics {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  flex: 1;
  counter-reset: none;
}

.lp-mod-topics li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--read-muted);
}

.lp-mod-topic-n {
  flex-shrink: 0;
  min-width: 1.1em;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--mod-accent, var(--brand));
  opacity: 0.85;
}

.lp-mod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid color-mix(in srgb, var(--mod-accent, var(--brand)) 18%, var(--line));
}

.lp-mod-progress {
  flex: 1;
  min-width: 0;
}

.lp-mod-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--read-muted);
  margin-bottom: 5px;
}

.lp-mod-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.lp-mod-bar > span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--brand);
  transition: width 0.8s ease;
}

.lp-mod-go {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-ui);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.lp-mod.is-locked .lp-mod-go {
  background: rgba(26, 35, 50, 0.38);
  color: rgba(255, 255, 255, 0.85);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.85;
}

.lp-coming-soon {
  position: fixed;
  z-index: 80;
  padding: 8px 12px;
  border-radius: 8px;
  background: #1A2332;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-ui);
  letter-spacing: 0.02em;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 8px 24px rgba(26, 35, 50, 0.22);
  white-space: nowrap;
}

.lp-coming-soon::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: #1A2332;
  transform: translateX(-50%) rotate(45deg);
}

.lp-coming-soon.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dark cyber highlight */
.lp-dark {
  background:
    radial-gradient(ellipse 50% 70% at 12% 50%, rgba(15, 107, 107, 0.35), transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 20%, rgba(37, 99, 168, 0.28), transparent 55%),
    linear-gradient(135deg, #12202c 0%, #1A3348 48%, #14363C 100%);
  color: #fff;
  padding: clamp(48px, 7vw, 72px) 0;
  margin: 12px 0;
}

.lp-dark .lp-kicker { color: #7DD3D3; }
.lp-dark .lp-title { color: #fff; }
.lp-dark .lp-sub { color: rgba(255, 255, 255, 0.78); }

.lp-dark-grid {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

@media (min-width: 900px) {
  .lp-dark-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
  }
}

.lp-dark-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-dark-actions { margin-top: 22px; }

.lp-dark-points {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.lp-dark-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(125, 211, 211, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(125, 211, 211, 0.22);
}

.lp-dark-points .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(125, 211, 211, 0.22);
  color: #A5F3E8;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lp-dark-points strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.lp-dark-points span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* Benefits + audience */
.lp-split {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 900px) {
  .lp-split {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
  }

  .lp-split > * {
    display: flex;
    flex-direction: column;
  }

  .lp-split .lp-section-head { margin-bottom: 20px; }
}

.lp-benefit-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.lp-benefit-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(120deg, color-mix(in srgb, var(--brand) 8%, transparent), color-mix(in srgb, var(--surface) 90%, transparent));
  border: 1px solid rgba(15, 107, 107, 0.16);
  box-shadow: none;
}

.lp-benefit-list li:nth-child(2) {
  background: linear-gradient(120deg, color-mix(in srgb, var(--secondary) 9%, transparent), color-mix(in srgb, var(--surface) 90%, transparent));
  border-color: rgba(37, 99, 168, 0.16);
}
.lp-benefit-list li:nth-child(2) .ico {
  background: rgba(37, 99, 168, 0.12);
  color: #2563A8;
}
.lp-benefit-list li:nth-child(3) {
  background: linear-gradient(120deg, color-mix(in srgb, var(--amber) 10%, transparent), color-mix(in srgb, var(--surface) 90%, transparent));
  border-color: rgba(196, 138, 42, 0.18);
}
.lp-benefit-list li:nth-child(3) .ico {
  background: rgba(196, 138, 42, 0.14);
  color: #C48A2A;
}
.lp-benefit-list li:nth-child(4) {
  background: linear-gradient(120deg, color-mix(in srgb, var(--coral) 9%, transparent), color-mix(in srgb, var(--surface) 90%, transparent));
  border-color: rgba(196, 92, 74, 0.16);
}
.lp-benefit-list li:nth-child(4) .ico {
  background: rgba(196, 92, 74, 0.12);
  color: #C45C4A;
}

.lp-benefit-list .ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(15, 107, 107, 0.12);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lp-benefit-list h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.lp-benefit-list p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--read-muted);
  line-height: 1.5;
}

.lp-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
  align-content: start;
}

.lp-aud {
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--secondary) 8%, transparent), var(--surface) 70%);
  border: 1px solid rgba(37, 99, 168, 0.14);
  box-shadow: none;
}

.lp-aud:nth-child(2) {
  background: linear-gradient(160deg, color-mix(in srgb, var(--brand) 9%, transparent), var(--surface) 70%);
  border-color: rgba(15, 107, 107, 0.16);
}
.lp-aud:nth-child(2) iconify-icon { color: var(--brand); }
.lp-aud:nth-child(3) {
  background: linear-gradient(160deg, color-mix(in srgb, var(--amber) 10%, transparent), var(--surface) 70%);
  border-color: rgba(196, 138, 42, 0.18);
}
.lp-aud:nth-child(3) iconify-icon { color: #C48A2A; }
.lp-aud:nth-child(4) {
  background: linear-gradient(160deg, color-mix(in srgb, var(--coral) 9%, transparent), var(--surface) 70%);
  border-color: rgba(196, 92, 74, 0.16);
}
.lp-aud:nth-child(4) iconify-icon { color: #C45C4A; }

.lp-aud iconify-icon { color: #2563A8; margin-bottom: 8px; }

.lp-aud h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.lp-aud p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--read-muted);
  line-height: 1.5;
}

/* Objectives + FAQ — clean editorial accordion */
.lp-section--acc {
  padding-block: clamp(64px, 8vw, 88px);
}

.lp-section-head--acc {
  max-width: none;
  margin-bottom: clamp(28px, 4vw, 40px);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-mid);
}

.lp-section-head--acc .lp-sub {
  max-width: 36rem;
}

.lp-acc {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: none;
}

.lp-acc-item {
  --acc-accent: var(--brand);
  position: relative;
  border: none;
  border-bottom: 1px solid var(--line-mid);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  box-shadow: none;
  transition: background 0.2s ease;
}

.lp-acc-item::before {
  content: none;
}

.lp-acc-item:hover {
  background: color-mix(in srgb, var(--deep) 2.5%, transparent);
}

.lp-acc-item.is-open {
  background: transparent;
  box-shadow: none;
}

.lp-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  color: var(--deep);
}

.lp-acc-num {
  flex-shrink: 0;
  display: block;
  width: 2.25rem;
  height: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--brand);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.lp-acc-item.is-open .lp-acc-num {
  background: transparent;
  color: var(--brand);
  border-color: transparent;
}

.lp-acc-heading {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 3px;
}

.lp-acc-unit {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--deep) 42%, transparent);
}

.lp-acc-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  font-weight: 600;
  color: var(--deep);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.lp-acc-item.is-open .lp-acc-name {
  color: var(--brand);
}

.lp-acc-chevron {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0;
  background: transparent;
  color: color-mix(in srgb, var(--deep) 40%, transparent);
  transition: transform 0.22s ease, color 0.2s ease;
}

.lp-acc-item.is-open .lp-acc-chevron {
  transform: rotate(180deg);
  background: transparent;
  color: var(--brand);
}

.lp-acc-btn iconify-icon {
  display: block;
  color: inherit;
}

.lp-acc-panel {
  display: none;
  padding: 0 8px 24px calc(2.25rem + 18px + 8px);
}

.lp-acc-item.is-open .lp-acc-panel { display: block; }

.lp-acc-goals {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: none;
  display: grid;
  gap: 12px;
  counter-reset: none;
}

.lp-acc-goals li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
}

.lp-acc-goal-n {
  display: block;
  width: auto;
  height: auto;
  margin-top: 0.15em;
  border-radius: 0;
  background: transparent;
  color: var(--brand);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.lp-acc-goal-t {
  color: color-mix(in srgb, var(--deep) 78%, transparent);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  opacity: 1;
}

/* FAQ — same editorial system, plus toggle */
.lp-acc-faq .lp-acc-btn {
  justify-content: space-between;
  gap: 24px;
  padding: 22px 8px;
}

.lp-acc-faq .lp-acc-q {
  flex: 1;
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 600;
  color: var(--deep);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.lp-acc-faq .lp-acc-item.is-open .lp-acc-q {
  color: var(--brand);
}

.lp-acc-faq .lp-acc-toggle {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  color: color-mix(in srgb, var(--deep) 40%, transparent);
  transition: transform 0.22s ease, color 0.2s ease;
}

.lp-acc-faq .lp-acc-item.is-open .lp-acc-toggle {
  transform: rotate(45deg);
  color: var(--brand);
}

.lp-acc-faq .lp-acc-item {
  --acc-accent: var(--brand);
  background: transparent;
}

.lp-acc-faq .lp-acc-panel {
  padding: 0 2.5rem 22px 8px;
}

.lp-acc-faq .lp-acc-panel p {
  margin: 0;
  padding: 0;
  color: color-mix(in srgb, var(--deep) 72%, transparent);
  line-height: 1.75;
  font-size: 0.95rem;
  font-weight: 400;
  border-top: none;
  max-width: 52rem;
}

@media (max-width: 640px) {
  .lp-acc-btn { padding: 18px 4px; gap: 14px; }
  .lp-acc-panel { padding: 0 4px 20px calc(2.25rem + 14px + 4px); }
  .lp-acc-faq .lp-acc-panel { padding: 0 2rem 18px 4px; }
  .lp-acc-name { font-size: 1rem; }
  .lp-acc-num { width: 1.85rem; font-size: 0.75rem; }
}

/* Journey */
.lp-journey {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
  max-width: 920px;
}

.lp-journey .lp-section-head {
  margin-bottom: 18px;
}

.lp-journey .lp-illust {
  max-width: 380px;
}

@media (min-width: 900px) {
  .lp-journey {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 20px;
    justify-content: center;
  }

  .lp-journey .lp-illust {
    justify-self: center;
  }
}

.lp-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid rgba(15, 107, 107, 0.2);
  margin-left: 12px;
}

.lp-steps li {
  position: relative;
  padding: 0 0 14px 20px;
}

.lp-steps li:last-child {
  padding-bottom: 0;
}

.lp-steps li::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
  outline: 3px solid rgba(15, 107, 107, 0.16);
}

.lp-steps .step {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
}

.lp-steps h3 {
  margin: 4px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.lp-steps p {
  margin: 0;
  color: var(--read-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}


/* CTA band */
.lp-cta {
  padding: 28px 0 64px;
}

.lp-cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 28px;
  border-radius: 20px;
  background: linear-gradient(120deg, #0F6B6B, #2563A8 55%, #243B55);
  color: #fff;
  box-shadow: none;
}

.lp-cta-band h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 700;
}

.lp-cta-band p {
  margin: 0;
  opacity: 0.9;
  max-width: 28rem;
  line-height: 1.55;
}


.lp-btn-light {
  background: #fff;
  color: #1A2332;
  box-shadow: none;
}

/* Final CTA band: white button for contrast on brand gradient */
.lp-cta-band .lp-btn-primary,
.lp-cta-band .lp-btn-solid {
  background: #fff;
  color: var(--deep);
  box-shadow: none;
}

.lp-cta-band .lp-btn-primary:hover,
.lp-cta-band .lp-btn-solid:hover {
  background: #f3f7f7;
  color: var(--deep);
}

/* Footer */
.lp-foot {
  padding: 28px var(--gutter-x) 36px;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 55%, var(--paper));
}

.lp-foot-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.lp-foot p {
  margin: 0;
  font-size: 13px;
  color: color-mix(in srgb, var(--ink) 88%, transparent);
}

.lp-foot-copy {
  flex: 1 1 auto;
  text-align: left;
  font-family: var(--font-ui, "Plus Jakarta Sans", sans-serif);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: var(--read-muted);
}

.lp-foot-emph {
  font-weight: 700;
  color: var(--ink, #1a2332);
  letter-spacing: -0.01em;
}

.lp-foot-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-plex, "Plus Jakarta Sans", sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--ink) 88%, transparent);
}

.lp-foot-kaz {
  display: block;
  height: 30px;
  width: auto;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
}
html[data-theme="dark"] .lp-foot-kaz {
  mix-blend-mode: normal;
  opacity: 0.92;
}
html[data-theme="dark"] .lp-nav-partner {
  opacity: 0.92;
}
html[data-theme="dark"] .lp-dark {
  background:
    radial-gradient(ellipse 50% 70% at 12% 50%, rgba(58, 166, 160, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 20%, rgba(47, 111, 173, 0.16), transparent 55%),
    linear-gradient(135deg, #161D24 0%, #1A2832 48%, #152428 100%);
}

@media (max-width: 720px) {
  .lp-foot-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .lp-foot-copy {
    text-align: left;
  }
}

/* Video modal */
.lp-modal[hidden] { display: none !important; }

.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: var(--scrim);
  backdrop-filter: blur(6px);
}

.lp-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.lp-modal-dialog video {
  width: 100%;
  display: block;
  max-height: 80vh;
  background: #000;
}

.lp-modal-x {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: grid;
  place-items: center;
}

@keyframes lpRise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lpFade {
  to { opacity: 1; }
}

@keyframes lpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes lpKen {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.04) translate3d(-1.2%, 0.4%, 0); }
}

@keyframes lpOrbitPulse {
  0%, 100% { opacity: 0.55; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.03); }
}

@keyframes lpCinemaIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lpPlayPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.35); }
  50% { box-shadow: 0 0 0 12px rgba(94, 234, 212, 0); }
}

@keyframes lpHeroPlayGlow {
  0%, 100% {
    box-shadow:
      0 0 12px 3px rgba(155, 79, 196, 0.26),
      0 8px 18px rgba(112, 44, 145, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.26);
  }
  50% {
    box-shadow:
      0 0 20px 6px rgba(186, 120, 220, 0.4),
      0 8px 20px rgba(112, 44, 145, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }
}

@keyframes lpHeroPlayWave {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@media (max-width: 899px) {
  .lp-illust,
  .lp-illust--dark {
    margin-inline: auto;
    max-width: min(420px, 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-bg img,
  .lp-hero-orbit,
  .lp-hero-orbit--2,
  .lp-hero-brand,
  .lp-hero-uni,
  .lp-hero-headline,
  .lp-hero-lead,
  .lp-hero-actions,
  .lp-hero-rail {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 560px) {
  .lp-float { display: none; }
  .lp-audience-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Mobile / tablet pass — landing only. ≥960px frozen.
   ============================================================ */
@media (max-width: 959px) {
  html, body.landing-body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  .lp-wrap {
    width: min(1180px, calc(100% - 24px));
  }
  .lp-nav-inner {
    gap: 8px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .lp-nav-inner > nav { display: none; }
  .lp-brand { min-width: 0; }
  .lp-brand-kicker { font-size: 10px; }
  .lp-brand-name { font-size: 13px; }
  .lp-nav-cta { display: none; }
  .lp-nav-partner {
    height: 36px;
    max-width: 120px;
  }
  .lp-hero-copy { min-width: 0; }
  .lp-hero-headline,
  .lp-hero-lead { max-width: 100%; }
  .lp-cinema {
    padding: 56px 12px 16px;
    align-items: center;
  }
  .lp-cinema-panel { width: 100%; }
  .lp-cinema-close {
    top: -44px;
    right: 0;
  }
  .lp-section { padding: 40px 0; }
  .lp-illust img,
  .lp-hero-bg img {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .lp-nav-cta { display: none; }
  .lp-module-grid { grid-template-columns: 1fr; }
  .lp-split,
  .lp-dark-grid,
  .lp-goal,
  .lp-journey { grid-template-columns: 1fr; }
  .lp-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 639px) {
  .lp-nav { padding: 8px 0; }
  .lp-nav-partner { height: 28px; max-width: 96px; }
  .lp-brand img { width: 40px; height: 40px; }
  .lp-hero {
    min-height: clamp(420px, 78vh, 560px);
  }
  .lp-hero-inner { padding: 32px 0 28px; }
  .lp-hero-actions {
    width: 100%;
    flex-wrap: nowrap;
  }
  .lp-hero-actions .lp-btn {
    flex: 1 1 0;
    min-height: 44px;
    justify-content: center;
    padding-inline: 12px;
    font-size: 14px;
    gap: 6px;
  }
  .lp-section { padding: 32px 0; }
  .lp-section-head { margin-bottom: 20px; }
  .lp-cinema {
    padding: 64px 10px 12px;
  }
  .lp-modal { padding: 12px; }
}

@media (max-width: 400px) {
  .lp-nav-end .font-scale { height: 32px; }
  .lp-nav-partner { display: none; }
  .lp-stats-grid { gap: 8px; }
  .lp-stat { padding: 0.65rem 0.4rem 0.6rem; }
  .lp-hero-actions .lp-btn {
    font-size: 13px;
    padding-inline: 8px;
  }
}
