.live-product-page {
  --bg: #f6f7fc;
  --surface: #edf4f9;
  --surface-raised: #ffffff;
  --ink: #17203b;
  --ink-secondary: #35405f;
  --muted: #68728e;
  --brand: #0891b2;
  --brand-dark: #0e7490;
  --brand-light: #22d3ee;
  --teal: #0891b2;
  --border: rgba(8, 145, 178, .14);
  --border-strong: rgba(8, 145, 178, .24);
  background: var(--bg);
  color: var(--ink-secondary);
}

.live-product-page ::selection {
  background: rgba(8, 145, 178, .24);
  color: #082f49;
}

.live-product-page .site-header {
  color: #fff;
}

.live-product-page .nav-desktop a[aria-current="page"] {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.live-product-page .site-header.scrolled .nav-desktop a[aria-current="page"] {
  background: var(--surface);
  color: var(--brand-dark);
}

.live-product-page .site-header.scrolled {
  background: rgba(247, 248, 253, .94) !important;
}

.live-product-page .menu-toggle {
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.live-product-page .menu-toggle:hover {
  background: rgba(255, 255, 255, .12);
}

.live-product-page .site-header.scrolled .menu-toggle:hover {
  background: var(--surface);
}

.live-product-page .btn-primary {
  background: var(--brand);
  box-shadow: 0 2px 8px rgba(8, 145, 178, .25);
}

.live-product-page .btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(34, 211, 238, .64), 0 8px 22px rgba(8, 145, 178, .28);
}

.live-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(680px, 88vh, 900px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--brand-navy);
}

.live-hero-media,
.live-hero-media img,
.live-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.live-hero-media {
  z-index: -3;
}

.live-hero-media img {
  object-fit: cover;
  object-position: center;
}

.live-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 10, 28, .97) 0%, rgba(2, 10, 28, .88) 30%, rgba(2, 10, 28, .38) 62%, rgba(2, 10, 28, .18) 100%),
    linear-gradient(180deg, rgba(2, 10, 28, .2) 56%, rgba(2, 10, 28, .9) 100%);
}

.live-hero-content {
  padding-top: 118px;
  padding-bottom: 72px;
}

.live-hero-content h1 {
  max-width: 11.5ch;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.live-hero-content > p {
  max-width: 58ch;
  margin-top: 28px;
  color: rgba(231, 244, 246, .82);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.live-definition-btn {
  min-height: 50px;
  margin-top: 34px;
  padding-inline: 24px;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
}

.live-definition-btn:hover {
  border-color: rgba(255, 255, 255, .7);
  background: #fff;
  color: #0e7490;
  transform: translateY(-2px);
}

.live-definition-btn:focus-visible {
  outline-color: #67e8f9;
}

.live-definition-btn svg {
  transition: transform 180ms var(--ease-out);
}

.live-definition-btn:hover svg {
  transform: translateX(3px);
}

.live-principle {
  background: var(--brand-navy-soft);
  color: #e8eefc;
}

.live-principle-inner {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding-block: 30px;
}

.live-principle-mark {
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: #67cde4;
  box-shadow: 0 0 0 6px rgba(103, 205, 228, .14);
}

.live-principle p {
  max-width: 78ch;
  margin: 0;
  color: #c8d6ea;
}

.live-principle strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.live-section {
  padding-block: clamp(80px, 10vw, 144px);
  background: var(--brand-cloud);
}

.live-section-operations {
  background: var(--brand-mist);
}

.live-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.live-layout-reverse {
  grid-template-columns: minmax(480px, 1.14fr) minmax(0, .86fr);
}

.live-copy h2 {
  max-width: 13ch;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.8vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.live-feature-list,
.live-steps {
  margin-top: 36px;
  list-style: none;
}

.live-feature-list {
  border-top: 1px solid var(--border-strong);
}

.live-feature-list li {
  position: relative;
  padding: 20px 0 20px 30px;
  border-bottom: 1px solid var(--border-strong);
  color: var(--ink-secondary);
  font-size: 1rem;
}

.live-feature-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.live-steps p strong,
.live-steps p small {
  display: block;
}

.live-steps p strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1rem;
}

.live-steps p small {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
}

.product-quote {
  max-width: 36ch;
  margin-top: 24px;
  color: var(--brand-dark);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  font-weight: 650;
  line-height: 1.5;
}

.product-lead {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.72;
}

.product-compliance {
  display: grid;
  gap: 7px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border-strong);
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.68;
}

.product-compliance strong {
  color: var(--ink);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-compliance a {
  width: fit-content;
  color: var(--brand-dark);
  font-weight: 700;
}

.product-drama-page .live-hero-media img { object-position: center; }
.product-avatar-page .live-hero-media img { object-position: 56% center; }
.product-mall-page .live-hero-media img { object-position: center; }

.live-note {
  max-width: 60ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: .9rem;
}

.live-media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 145, 178, .18);
  border-radius: clamp(18px, 2.4vw, 30px);
  background: var(--brand-navy);
  box-shadow: 0 28px 70px rgba(8, 47, 73, .16);
}

.live-media-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: inherit;
}

.live-media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 520ms var(--ease-out);
}

.live-media-card:hover img {
  transform: scale(1.018);
}

.live-steps {
  border-top: 1px solid rgba(8, 145, 178, .22);
}

.live-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(8, 145, 178, .22);
}

.live-steps span {
  padding-top: 2px;
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.live-steps p {
  margin: 0;
  color: var(--ink-secondary);
}

.live-product-page .footer-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.live-product-page .footer-divider {
  width: 1px;
  height: 18px;
  background: var(--border-strong);
}

.live-product-page .footer-brand,
.live-product-page .footer-tagline {
  color: var(--brand);
}

@media (max-width: 1120px) {
  .live-product-page .nav-desktop {
    display: none;
  }

  .live-product-page .menu-toggle {
    display: grid;
  }

  .live-product-page .nav-mobile {
    display: flex;
    position: absolute;
    top: 64px;
    left: 14px;
    right: 14px;
    width: auto;
    padding: 10px 16px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 45px rgba(4, 40, 48, .18);
  }

  .live-download-link {
    display: none;
  }

  .live-layout,
  .live-layout-reverse {
    grid-template-columns: 1fr;
  }

  .live-layout-reverse .live-media-card {
    order: 2;
  }

  .live-layout-reverse .live-copy {
    order: 1;
  }

  .live-copy h2 {
    max-width: 16ch;
  }
}

@media (max-width: 760px) {
  .live-hero {
    min-height: 720px;
    align-items: end;
  }

  .live-hero-media img {
    object-position: 68% center;
  }

  .product-drama-page .live-hero-media img { object-position: 66% center; }
  .product-avatar-page .live-hero-media img { object-position: 68% center; }
  .product-mall-page .live-hero-media img { object-position: 72% center; }

  .live-hero-shade {
    background:
      linear-gradient(180deg, rgba(2, 10, 28, .22) 0%, rgba(2, 10, 28, .56) 42%, rgba(2, 10, 28, .98) 78%),
      linear-gradient(90deg, rgba(2, 10, 28, .72), transparent 74%);
  }

  .live-hero-content {
    padding-top: 120px;
    padding-bottom: 58px;
  }

  .live-hero-content h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .live-hero-content > p {
    margin-top: 20px;
    font-size: .98rem;
  }

  .live-definition-btn {
    width: auto;
    min-height: 44px;
    margin-top: 24px;
    padding-inline: 20px;
    font-size: .95rem;
  }

  .live-section {
    padding-block: 72px;
  }

  .live-layout,
  .live-layout-reverse {
    gap: 38px;
  }

  .live-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .live-product-page .footer-identity {
    justify-content: center;
  }

  .live-product-page .footer-divider {
    display: none;
  }
}

@media (max-width: 420px) {
  .live-product-page .lang-btn {
    max-width: 120px;
  }

  .live-media-card {
    margin-inline: -6px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-media-card img,
  .live-definition-btn,
  .live-definition-btn svg {
    transition: none;
  }

  .live-media-card:hover img,
  .live-definition-btn:hover,
  .live-definition-btn:hover svg {
    transform: none;
  }
}
