/*
 * Lightsecond visual layer
 *
 * The public pages still use the original PHP-friendly markup. This file is
 * deliberately loaded last so the theme can be refined without changing the
 * older product and console contracts.
 */
:root {
  --lp-paper: #fffafb;
  --lp-white: #ffffff;
  --lp-ink: #302832;
  --lp-muted: #776c79;
  --lp-rose-50: #fff2f7;
  --lp-rose-100: #ffe5ef;
  --lp-rose-200: #ffc7dc;
  --lp-rose-400: #ee82ae;
  --lp-rose-500: #d45b8f;
  --lp-rose-700: #9b3c68;
  --lp-lilac: #8877df;
  --lp-cyan: #4bb4d4;
  --lp-line: #eedee7;
  --lp-shadow: 0 18px 42px rgba(121, 67, 101, .12);
  --lp-shadow-soft: 0 10px 26px rgba(121, 67, 101, .08);
  --lp-radius: 12px;
  --lp-ease: cubic-bezier(.2, .8, .2, 1);
  --lp-ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --lp-duration-fast: 150ms;
  --lp-duration-standard: 250ms;
  --lp-duration-page: 650ms;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
}

html {
  scroll-padding-top: 104px;
}

body {
  background: var(--lp-paper);
  color: var(--lp-ink);
  font-family: "MiSans", "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

::selection {
  background: var(--lp-rose-200);
  color: var(--lp-ink);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(136, 119, 223, .38);
  outline-offset: 3px;
}

/* The active nav has one quiet highlight instead of competing shadows. */
.nav-orbit .nav-link[aria-current] {
  color: var(--lp-rose-700);
}

.nav-orbit .nav-buy,
.nav-orbit .nav-console,
.button,
.product-link,
.updates-more,
.footer-cta,
.footer-console {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.nav-orbit .nav-buy,
.button-primary {
  background: linear-gradient(135deg, #f391bb 0%, var(--lp-rose-500) 48%, #8f7be0 100%);
  box-shadow: 0 12px 24px rgba(185, 75, 127, .2);
}

.nav-orbit .nav-buy:hover,
.button-primary:hover {
  box-shadow: 0 16px 30px rgba(185, 75, 127, .27);
}

.button,
.nav-orbit .nav-buy,
.nav-orbit .nav-console,
.product-link,
.updates-more {
  transition: transform .28s var(--lp-ease), box-shadow .28s var(--lp-ease), background-color .28s ease, color .28s ease;
}

.button:active,
.nav-orbit .nav-buy:active,
.nav-orbit .nav-console:active,
.product-link:active,
.updates-more:active,
.footer-cta:active,
.footer-console:active {
  transform: translateY(1px) scale(.97);
}

.button[aria-disabled="true"],
.nav-orbit a[aria-disabled="true"],
.product-link[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .55;
  pointer-events: none;
}

.button::after,
.nav-orbit .nav-buy::after,
.product-link::after,
.updates-more::after,
.footer-cta::after,
.footer-console::after {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -45%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .58), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left .55s var(--lp-ease);
  pointer-events: none;
  z-index: -1;
}

.button:hover::after,
.nav-orbit .nav-buy:hover::after,
.product-link:hover::after,
.updates-more:hover::after,
.footer-cta:hover::after,
.footer-console:hover::after {
  left: 118%;
}

.aurora-hero {
  min-height: 0;
  padding: 150px 0 54px;
  overflow: clip;
  background:
    linear-gradient(180deg, #fff4f9 0%, #fffafd 42%, #fff 100%);
}

.aurora-hero::before {
  background:
    linear-gradient(116deg, transparent 0 19%, rgba(244, 140, 181, .15) 19% 19.2%, transparent 19.2% 62%, rgba(126, 191, 211, .14) 62% 62.2%, transparent 62.2%),
    repeating-linear-gradient(100deg, transparent 0 64px, rgba(255, 255, 255, .52) 64px 65px, transparent 65px 116px);
  opacity: .74;
}

.aurora-layout {
  display: grid;
  min-height: 474px;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: center;
  gap: clamp(32px, 6vw, 84px);
}

.hero-copy {
  max-width: 650px;
  padding: 0;
  text-align: left;
}

.hero-copy::before {
  display: block;
  width: 76px;
  height: 3px;
  margin: 0 0 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lp-rose-400), var(--lp-lilac), var(--lp-cyan));
  box-shadow: 0 7px 18px rgba(212, 91, 143, .2);
  content: "";
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--lp-rose-700);
  font-size: 10px;
  letter-spacing: .14em;
}

.signal-dot {
  background: var(--lp-rose-400);
  box-shadow: 0 0 0 4px rgba(238, 130, 174, .15), 0 0 16px rgba(238, 130, 174, .3);
}

.hero-copy h1 {
  max-width: 680px;
  color: var(--lp-ink);
  font-size: clamp(43px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy h1 em {
  color: var(--lp-rose-700);
  text-shadow: 0 12px 30px rgba(212, 91, 143, .14);
}

.hero-lede {
  max-width: 570px;
  margin: 21px 0 0;
  color: var(--lp-muted);
  font-size: 15px;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 28px;
}

.hero-trust {
  gap: 9px 16px;
  margin-top: 20px;
  color: #8b7b87;
}

.hero-trust span {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 3px 10px;
  border: 1px solid rgba(255, 199, 220, .72);
  border-radius: 999px;
  background: rgba(255, 255, 255, .54);
}

/* Hero visual: one framed service snapshot gives the page a memorable anchor. */
.hero-visual {
  position: relative;
  min-height: 432px;
  isolation: isolate;
}

.hero-art-frame {
  position: absolute;
  inset: 25px 10px 14px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 239, 248, .72) 55%, rgba(237, 248, 253, .68));
  box-shadow: var(--lp-shadow), inset 0 1px rgba(255, 255, 255, .92);
  transform: rotate(2deg);
}

.hero-art-frame::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 36px, rgba(156, 120, 147, .08) 36px 37px), repeating-linear-gradient(90deg, transparent 0 48px, rgba(156, 120, 147, .06) 48px 49px);
  content: "";
  pointer-events: none;
}

.hero-art-topline,
.hero-art-caption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9b7b8d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.hero-art-topline {
  padding: 17px 20px 0;
}

.hero-art-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #549b88;
  letter-spacing: .04em;
}

.hero-art-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6fc49b;
  box-shadow: 0 0 0 4px rgba(111, 196, 155, .14);
}

.hero-art-scene {
  position: relative;
  display: grid;
  min-height: 327px;
  place-items: center;
  overflow: hidden;
}

.hero-art-line {
  position: absolute;
  border: 1px solid rgba(148, 127, 195, .22);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.hero-art-line-a { width: 88%; height: 64%; }
.hero-art-line-b { width: 68%; height: 46%; transform: rotate(17deg); }

.hero-art-cloud {
  position: relative;
  z-index: 1;
  display: grid;
  width: 222px;
  height: 222px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .96);
  border-radius: 42% 58% 54% 46% / 48% 42% 58% 52%;
  background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 227, 240, .7) 52%, rgba(227, 247, 253, .76));
  box-shadow: inset -14px -16px 26px rgba(88, 176, 210, .1), 0 22px 42px rgba(152, 93, 136, .15);
  animation: lp-cloud-float 6.6s ease-in-out infinite;
}

.hero-art-cloud::before {
  position: absolute;
  inset: 13px;
  border: 1px dashed rgba(212, 91, 143, .24);
  border-radius: inherit;
  content: "";
}

.hero-art-cloud img {
  position: relative;
  z-index: 1;
  width: 135px;
  height: 135px;
  filter: drop-shadow(0 13px 14px rgba(89, 105, 181, .18));
}

.hero-art-halo {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  box-shadow: 0 0 0 15px rgba(255, 255, 255, .16), 0 0 0 28px rgba(255, 222, 237, .12);
}

.hero-art-badge {
  position: absolute;
  z-index: 2;
  bottom: 38px;
  display: grid;
  gap: 2px;
  min-width: 160px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--lp-shadow-soft);
  color: #8e6881;
  font-size: 10px;
  text-align: center;
}

.hero-art-badge strong { color: var(--lp-rose-700); font-size: 12px; letter-spacing: .13em; }

.hero-art-caption {
  padding: 4px 20px 18px;
  color: #8e7d89;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-art-caption strong { color: var(--lp-rose-700); font-size: 12px; letter-spacing: .12em; }

.hero-spark {
  position: absolute;
  z-index: 2;
  color: var(--lp-rose-400);
  text-shadow: 0 7px 17px rgba(212, 91, 143, .22);
  animation: lp-spark 3.3s ease-in-out infinite;
}

.hero-spark-a { top: 62px; left: 22%; font-size: 22px; }
.hero-spark-b { top: 110px; right: 19%; color: var(--lp-lilac); font-size: 18px; animation-delay: .7s; }
.hero-spark-c { right: 27%; bottom: 66px; color: var(--lp-cyan); font-size: 27px; animation-delay: 1.2s; }

.hero-note {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 9px;
  min-width: 140px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 12px;
  background: rgba(255, 255, 255, .8);
  box-shadow: var(--lp-shadow-soft);
  backdrop-filter: blur(12px);
  font-size: 11px;
}

.hero-note strong { align-self: end; color: var(--lp-ink); }
.hero-note small { grid-column: 2; color: #9a8594; font-size: 9px; }
.hero-note-icon { display: grid; grid-row: span 2; width: 27px; height: 27px; place-items: center; border-radius: 8px; background: var(--lp-rose-100); color: var(--lp-rose-700); font-size: 9px; font-weight: 800; }
.hero-note-icon-cyan { background: #e5f7fb; color: #3b98b4; }
.hero-note-top { top: 45px; left: -3px; transform: rotate(-5deg); animation: lp-note-a 5.4s ease-in-out infinite; }
.hero-note-bottom { right: -6px; bottom: 36px; transform: rotate(4deg); animation: lp-note-b 5.8s ease-in-out .4s infinite; }

.hero-stat-cards {
  max-width: 1040px;
  margin-top: 8px;
  gap: 0;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--lp-shadow-soft);
  backdrop-filter: blur(12px);
}

.hero-stat-cards article {
  min-height: 136px;
  padding: 21px 24px;
  border: 0;
  border-right: 1px solid var(--lp-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background-color .25s ease, transform .25s var(--lp-ease);
}

.hero-stat-cards article:last-child { border-right: 0; }
.hero-stat-cards article:hover { background: var(--lp-rose-50); transform: translateY(-3px); }
.hero-stat-cards .stat-symbol,
.product-illustration { border-radius: 10px; background: var(--lp-rose-50); color: var(--lp-rose-700); box-shadow: none; }
.hero-stat-cards strong { color: var(--lp-ink); font-size: 20px; }
.hero-stat-cards p { color: #847682; }

.products-section,
.voice-section,
.updates-section { background: var(--lp-white); }

.products-section { padding: 100px 0 108px; }
.section-heading h2,
.nodes-copy h2,
.voice-intro h2,
.updates-head h2,
.final-cta h2 { color: var(--lp-ink); text-wrap: balance; }
.section-heading h2 { font-size: clamp(34px, 4vw, 46px); }

.product-grid { gap: 16px; margin-top: 43px; perspective: 1200px; }
.product-card,
.voice-cards article,
.update-card,
.node-board {
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: #fff;
  box-shadow: none;
}

.product-card {
  min-height: 472px;
  padding: 25px 24px 22px;
  transition: transform .32s var(--lp-ease), border-color .25s ease, box-shadow .32s var(--lp-ease), background .25s ease;
}

.product-card::before,
.voice-cards article::before,
.update-card::before,
.node-board::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 205, 226, .26), transparent 34%);
  content: "";
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.product-card:hover,
.voice-cards article:hover,
.update-card:hover,
.node-board:hover {
  border-color: #e5abc4;
  box-shadow: var(--lp-shadow-soft);
}

.product-card:hover::before,
.voice-cards article:hover::before,
.update-card:hover::before,
.node-board:hover::before { opacity: 1; }

.product-card > *,
.voice-cards article > *,
.update-card > *,
.node-board > * { position: relative; z-index: 1; }

.product-card-featured {
  border-color: #dec9ed;
  background: linear-gradient(155deg, #fff, #fff8fc 58%, #f7f5ff);
}

.product-card-featured:hover { border-color: #b9a5de; }
.product-badge { top: 14px; right: 14px; border-radius: 6px; background: #f8e4ed; box-shadow: none; color: var(--lp-rose-700); }
.product-link { min-height: 40px; padding: 0 12px; border-radius: 9px; background: transparent; color: var(--lp-rose-700); }
.product-link:hover { background: var(--lp-rose-50); transform: translateX(3px); }

.nodes-section,
.faq-section { background: linear-gradient(180deg, #fff7fa, #fffafd); }
.nodes-section { padding: 102px 0; }
.node-board { position: relative; padding: 18px; }
.node-board-top i { color: #4b9f89; }
.map-lines { border-radius: 10px; }

.voice-section { padding: 96px 0; }
.voice-cards { gap: 12px; }
.voice-cards article { min-height: 188px; padding: 22px; transition: transform .28s var(--lp-ease), border-color .25s ease, box-shadow .28s var(--lp-ease); }
.voice-cards article:hover { transform: translateY(-4px); }
.voice-cards article span { min-width: 36px; height: 26px; border-radius: 999px; background: var(--lp-rose-50); color: var(--lp-rose-700); font-size: 12px; }

.updates-section { padding: 96px 0; border-top: 1px solid var(--lp-line); }
.update-card { position: relative; transition: transform .3s var(--lp-ease), border-color .25s ease, box-shadow .3s var(--lp-ease); }
.update-card:hover { transform: translateY(-4px); }
.update-card--feature { background: linear-gradient(145deg, #fff0f7, #f5f2ff 58%, #effafe); }
.updates-more { min-height: 40px; align-items: center; padding: 0 13px; border: 1px solid var(--lp-line); border-radius: 9px; color: var(--lp-rose-700); }
.updates-more:hover { border-color: #e4abc3; background: var(--lp-rose-50); transform: translateY(-2px); }

.faq-section { padding: 105px 0; }
.faq-list { border-top-color: var(--lp-line); }
.faq-list details { border-bottom-color: var(--lp-line); }
.faq-list summary { min-height: 68px; color: var(--lp-ink); transition: color .2s ease, padding-left .2s ease; }
.faq-list summary:hover { color: var(--lp-rose-700); padding-left: 7px; }
.faq-list summary::after { color: var(--lp-lilac); }

.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(118deg, #fff0f7, #f6f1ff 54%, #ebf9fc);
}

.final-cta::before {
  background: repeating-linear-gradient(100deg, transparent 0 70px, rgba(255, 255, 255, .42) 70px 71px);
}

.footer { background: linear-gradient(135deg, #3c2c3d 0%, #4b3046 48%, #2c3c44 100%); }

/* Progressive enhancement: content stays readable if the script is blocked. */
.reveal { opacity: 1; transform: none; }
html.motion-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--lp-duration-page) var(--lp-ease), transform var(--lp-duration-page) var(--lp-ease); }
html.motion-ready .reveal.is-visible { opacity: 1; transform: none; }
html.motion-ready .reveal:nth-child(2) { transition-delay: .06s; }
html.motion-ready .reveal:nth-child(3) { transition-delay: .12s; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-rose-400), var(--lp-lilac), var(--lp-cyan));
  box-shadow: 0 2px 10px rgba(212, 91, 143, .28);
  pointer-events: none;
}

.ripple {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: lp-ripple .65s ease-out forwards;
}

@keyframes lp-cloud-float { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes lp-note-a { 0%, 100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-7px); } }
@keyframes lp-note-b { 0%, 100% { transform: rotate(4deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-8px); } }
@keyframes lp-spark { 0%, 100% { opacity: .52; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.12); } }
@keyframes lp-ripple { to { opacity: 0; transform: translate(-50%, -50%) scale(18); } }

/* Legacy activity and solution pages now share the same visual language. */
.navbar:not(.nav-orbit) {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(1160px, calc(100% - 44px));
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 14px;
  background: rgba(255, 253, 254, .88);
  box-shadow: var(--lp-shadow-soft);
  backdrop-filter: blur(18px) saturate(1.08);
  transform: translateX(-50%);
}

.navbar:not(.nav-orbit) .nav-container {
  min-height: 62px;
  padding: 0 18px;
}

.navbar:not(.nav-orbit) .nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar:not(.nav-orbit) .logo-img {
  width: 36px;
  height: 36px;
}

.navbar:not(.nav-orbit) .nav-menu {
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 4px;
  border: 0;
  background: transparent;
  list-style: none;
}

.navbar:not(.nav-orbit) .nav-link {
  display: flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border-radius: 9px;
  color: #746674;
  font-size: 13px;
  font-weight: 700;
}

.navbar:not(.nav-orbit) .nav-link:hover,
.navbar:not(.nav-orbit) .nav-link.active {
  background: var(--lp-rose-50);
  color: var(--lp-rose-700);
}

.navbar:not(.nav-orbit) .nav-actions { display: flex; gap: 7px; }
.navbar:not(.nav-orbit) .btn-login,
.navbar:not(.nav-orbit) .btn-register { min-height: 40px; padding: 0 14px; border: 0; border-radius: 9px; cursor: pointer; font-size: 13px; font-weight: 700; }
.navbar:not(.nav-orbit) .btn-login { background: var(--lp-rose-50); color: var(--lp-rose-700); }
.navbar:not(.nav-orbit) .btn-register { background: var(--lp-rose-700); color: #fff; }
.navbar:not(.nav-orbit) .hamburger { display: none; }
.solutions-hero,
.activities-list,
.industry-solutions,
.tech-architecture,
.success-cases {
  position: relative;
  overflow: hidden;
  background: var(--lp-paper);
}

.solutions-hero { padding: 150px 0 92px; background: linear-gradient(180deg, #fff2f7, #fffafd 76%); }
.solutions-hero .container,
.solutions-hero-content { position: relative; z-index: 1; }
.solutions-hero-content { max-width: 720px; }
.solutions-title,
.section-title { color: var(--lp-ink); font-weight: 700; letter-spacing: 0; text-wrap: balance; }
.solutions-title { font-size: clamp(40px, 5vw, 62px); line-height: 1.18; }
.solutions-description,
.section-description { max-width: 620px; color: var(--lp-muted); line-height: 1.9; }
.solutions-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.btn-primary,
.btn-secondary,
.industry-btn,
.cta-primary,
.cta-secondary { min-height: 44px; padding: 0 18px; border: 1px solid transparent; border-radius: 9px; cursor: pointer; font-weight: 700; transition: transform .25s var(--lp-ease), box-shadow .25s ease, background .25s ease; }
.btn-primary,
.cta-primary { background: var(--lp-rose-700); color: #fff; box-shadow: 0 10px 20px rgba(155, 60, 104, .18); }
.btn-secondary,
.cta-secondary { border-color: var(--lp-line); background: #fff; color: var(--lp-rose-700); }
.btn-primary:hover,
.cta-primary:hover,
.btn-secondary:hover,
.cta-secondary:hover,
.industry-btn:hover { transform: translateY(-3px); box-shadow: var(--lp-shadow-soft); }
.industry-solutions,
.tech-architecture,
.success-cases,
.activities-list { padding: 90px 0; }
.section-header { max-width: 650px; margin: 0 auto 38px; text-align: center; }
.section-title { margin: 0; font-size: clamp(30px, 3.7vw, 44px); }
.section-description { margin: 12px auto 0; font-size: 14px; }
.industry-grid,
.architecture-grid,
.cases-grid,
.activities-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.industry-card,
.architecture-layer,
.case-card,
.activity-card { border: 1px solid var(--lp-line); border-radius: var(--lp-radius); background: #fff; box-shadow: none; transition: transform .28s var(--lp-ease), border-color .25s ease, box-shadow .28s ease; }
.industry-card:hover,
.architecture-layer:hover,
.case-card:hover,
.activity-card:hover { border-color: #e4abc3; box-shadow: var(--lp-shadow-soft); transform: translateY(-5px); }
.industry-card,
.case-card,
.activity-card { padding: 22px; }
.industry-header { display: flex; align-items: center; gap: 13px; }
.industry-icon,
.activity-icon,
.case-logo { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 12px; background: var(--lp-rose-50); color: var(--lp-rose-700); }
.industry-header h3,
.case-content h3,
.activity-card h3 { margin: 0; color: var(--lp-ink); }
.industry-features { display: grid; gap: 8px; margin: 20px 0; padding: 0; list-style: none; color: var(--lp-muted); font-size: 13px; }
.industry-features li::before { margin-right: 7px; color: var(--lp-rose-500); content: "✦"; }
.industry-btn { border-color: var(--lp-line); background: var(--lp-rose-50); color: var(--lp-rose-700); }
.architecture-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.architecture-layer { padding: 22px; background: linear-gradient(145deg, #fff, #fff8fc); }
.architecture-layer h3 { margin: 0 0 8px; color: var(--lp-rose-700); }
.architecture-layer p { margin: 0; color: var(--lp-muted); font-size: 13px; line-height: 1.75; }
.layer-tech { margin-top: 17px; color: var(--lp-lilac); font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.case-content p { color: var(--lp-muted); font-size: 13px; line-height: 1.75; }
.case-stats { display: flex; align-items: baseline; gap: 8px; margin-top: 18px; }
.case-stats .stat { color: var(--lp-rose-700); font-size: 25px; font-weight: 800; }
.case-stats .stat-label { color: #927e8b; font-size: 12px; }

@media (max-width: 900px) {
  .aurora-hero { padding-top: 118px; }
  .aurora-layout { grid-template-columns: 1fr; gap: 20px; }
  .hero-copy { max-width: 700px; margin: 0 auto; text-align: center; }
  .hero-copy::before { margin-right: auto; margin-left: auto; }
  .hero-copy .eyebrow,
  .hero-actions,
  .hero-trust { justify-content: center; }
  .hero-lede { margin-right: auto; margin-left: auto; }
  .hero-visual { width: min(560px, 100%); margin: 0 auto; }
  .hero-stat-cards { gap: 10px; border: 0; background: transparent; box-shadow: none; }
  .hero-stat-cards article { border: 1px solid var(--lp-line); border-radius: var(--lp-radius); background: #fff; }
  .industry-grid,
  .cases-grid,
  .activities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .architecture-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 76px; }
  .aurora-hero { padding: 94px 0 32px; }
  .hero-copy h1 { font-size: clamp(37px, 10vw, 46px); }
  .hero-lede { font-size: 14px; }
  .hero-visual { min-height: 354px; }
  .hero-art-frame { inset: 16px 10px 11px 10px; border-radius: 14px; }
  .hero-art-scene { min-height: 264px; }
  .hero-art-cloud { width: 164px; height: 164px; }
  .hero-art-cloud img { width: 97px; height: 97px; }
  .hero-art-halo { width: 132px; height: 132px; }
  .hero-art-badge { bottom: 23px; min-width: 140px; padding: 7px 10px; }
  .hero-note { min-width: 126px; padding: 9px 10px; }
  .hero-note-top { top: 22px; left: -2px; }
  .hero-note-bottom { right: -2px; bottom: 18px; }
  .hero-stat-cards { grid-template-columns: 1fr; }
  .hero-stat-cards article { min-height: 76px; padding: 13px 15px; }
  .products-section,
  .nodes-section,
  .voice-section,
  .updates-section,
  .faq-section,
  .industry-solutions,
  .tech-architecture,
  .success-cases,
  .activities-list { padding: 72px 0; }
  .product-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .product-card { min-height: 0; }
  .voice-cards { grid-template-columns: 1fr; }
  .updates-head { display: block; }
  .updates-more { margin-top: 18px; }
  .industry-grid,
  .architecture-grid,
  .cases-grid,
  .activities-grid { grid-template-columns: 1fr; }
  .solutions-hero { padding: 106px 0 70px; }
  .solutions-title { font-size: 40px; }
  .navbar:not(.nav-orbit) { top: 10px; width: calc(100% - 24px); }
  .navbar:not(.nav-orbit) .nav-container { min-height: 56px; padding: 0 10px; }
  .navbar:not(.nav-orbit) .nav-menu { position: absolute; top: 63px; right: 0; left: 0; display: none; flex-direction: column; padding: 9px; border: 1px solid var(--lp-line); border-radius: 12px; background: #fff; box-shadow: var(--lp-shadow-soft); }
  .navbar:not(.nav-orbit) .nav-menu.is-open { display: flex; }
  .navbar:not(.nav-orbit) .nav-actions { display: none; }
  .navbar:not(.nav-orbit) .hamburger { display: grid; width: 38px; height: 38px; margin-left: auto; place-content: center; border: 0; border-radius: 9px; background: var(--lp-rose-50); }
  .navbar:not(.nav-orbit) .hamburger span { display: block; width: 18px; height: 2px; margin: 3px 0; background: var(--lp-rose-700); }
}

/* Hero command preview: a centered thesis with one useful product artifact. */
.aurora-hero {
  position: relative;
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 204, 226, .48), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(219, 216, 255, .54), transparent 34%),
    linear-gradient(180deg, #fff5fa 0%, #fffafd 44%, #fff 100%);
}

.aurora-hero::before {
  background:
    linear-gradient(116deg, transparent 0 18%, rgba(244, 140, 181, .13) 18% 18.15%, transparent 18.15% 62%, rgba(126, 191, 211, .12) 62% 62.15%, transparent 62.15%),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(141, 119, 176, .045) 44px 45px),
    repeating-linear-gradient(0deg, transparent 0 44px, rgba(141, 119, 176, .04) 44px 45px);
  opacity: .82;
}

.aurora-layout {
  display: block;
  min-height: 0;
}

.hero-copy {
  max-width: 780px;
  margin: 0 auto;
  padding: 18px 0 42px;
  text-align: center;
}

.hero-copy::before { display: none; }
.hero-copy .eyebrow,
.hero-actions,
.hero-trust { justify-content: center; }
.hero-copy h1,
.hero-lede { margin-right: auto; margin-left: auto; }
.hero-copy h1 { font-size: clamp(44px, 5vw, 64px); }

.hero-dashboard {
  position: relative;
  width: min(1050px, 100%);
  min-height: 455px;
  margin: 0 auto;
  perspective: 1200px;
}

.dashboard-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 28px 65px rgba(121, 67, 101, .14), 0 1px 0 rgba(255,255,255,.9) inset;
  backdrop-filter: blur(18px) saturate(1.08);
  transform: rotateX(1.5deg) rotateY(-2deg);
  transform-origin: center bottom;
  animation: dashboardFloat 8s ease-in-out infinite;
}

.dashboard-window__bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 13px;
  padding: 0 17px;
  border-bottom: 1px solid #f0e1eb;
  background: rgba(255,255,255,.74);
  color: #9b8192;
  font-size: 10px;
  letter-spacing: .05em;
}

.window-dots { display: inline-flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #f0b5cc; }
.window-dots i:nth-child(2) { background: #d7c9f3; }
.window-dots i:nth-child(3) { background: #b7dfe9; }
.dashboard-live { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; color: #5b9f89; font-weight: 700; }
.dashboard-live i { width: 6px; height: 6px; border-radius: 50%; background: #6ac59f; box-shadow: 0 0 0 4px rgba(106,197,159,.12); }

.dashboard-window__body { display: grid; grid-template-columns: 164px 1fr; min-height: 410px; }
.dashboard-window__aside { display: grid; align-content: start; gap: 6px; padding: 22px 13px; border-right: 1px solid #f1e6ed; background: linear-gradient(180deg, rgba(255,249,252,.86), rgba(249,248,255,.72)); }
.dashboard-logo { display: flex; align-items: center; gap: 7px; margin: 0 5px 18px; color: #47394a; font-weight: 800; }
.dashboard-logo img { width: 28px; height: 28px; }
.dashboard-logo span { display: grid; line-height: 1; font-size: 12px; letter-spacing: .07em; }
.dashboard-logo small { margin-top: 4px; color: #aa829a; font-size: 7px; letter-spacing: .11em; }
.dashboard-nav { display: flex; min-height: 36px; align-items: center; gap: 9px; padding: 0 10px; border-radius: 9px; color: #8a7788; font-size: 14px; }
.dashboard-nav b { font-size: 11px; font-weight: 600; }
.dashboard-nav.is-active { background: linear-gradient(105deg, #ffe9f2, #f2efff); color: #b34e81; box-shadow: 0 6px 15px rgba(198, 73, 132, .08); }

.dashboard-window__content { padding: 24px 27px 26px; background: rgba(255,255,255,.48); }
.dashboard-greeting { display: flex; align-items: flex-start; justify-content: space-between; }
.dashboard-kicker { color: #b1819b; font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.dashboard-greeting h2 { margin: 6px 0 0; color: #3e3340; font-size: clamp(17px, 2vw, 22px); font-weight: 700; letter-spacing: 0; }
.dashboard-avatar { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid rgba(255,255,255,.9); border-radius: 10px; background: linear-gradient(135deg, #f39ac0, #9a88e9); box-shadow: 0 8px 16px rgba(157, 130, 234, .19); color: #fff; font-size: 12px; font-weight: 800; }

.dashboard-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 23px; }
.dashboard-metrics article { display: grid; gap: 5px; min-height: 96px; padding: 14px 15px; border: 1px solid #f0e3eb; border-radius: 11px; background: rgba(255,255,255,.73); }
.dashboard-metrics span { color: #9b8999; font-size: 10px; }
.dashboard-metrics strong { color: #423547; font-size: 21px; letter-spacing: -.02em; }
.dashboard-metrics em { color: #70a995; font-size: 9px; font-style: normal; }

.dashboard-lower { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(245px, .85fr); gap: 11px; margin-top: 11px; }
.dashboard-chart,
.dashboard-instance { min-height: 190px; padding: 15px; border: 1px solid #f0e3eb; border-radius: 11px; background: rgba(255,255,255,.7); }
.dashboard-card-head { display: flex; align-items: center; justify-content: space-between; color: #5e4d5e; font-size: 12px; font-weight: 700; }
.dashboard-card-head small,
.dashboard-card-head a { color: #aa8c9e; font-size: 9px; font-weight: 500; }
.dashboard-card-head a { color: #b54e82; }
.chart-area { position: relative; height: 122px; margin-top: 12px; overflow: hidden; border-radius: 7px; background: linear-gradient(180deg, rgba(255, 239, 247, .45), rgba(250,248,255,.26)); }
.chart-grid { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 29px, rgba(168, 137, 168, .11) 29px 30px), repeating-linear-gradient(90deg, transparent 0 59px, rgba(168, 137, 168, .08) 59px 60px); }
.chart-area svg { position: relative; z-index: 1; width: 100%; height: 100%; }
.chart-labels { display: flex; justify-content: space-between; margin-top: 4px; color: #b29eac; font-size: 8px; }
.instance-row { display: grid; grid-template-columns: 27px 1fr auto; gap: 9px; align-items: center; margin-top: 13px; }
.instance-icon { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 8px; background: #ffe8f1; color: #cf5e8e; font-size: 13px; }
.instance-icon.lilac { background: #eeebff; color: #8b7ce2; }
.instance-icon.cyan { background: #e5f7fb; color: #56abc3; }
.instance-row div { display: grid; gap: 2px; }
.instance-row strong { color: #574656; font-size: 10px; }
.instance-row small { color: #a28e9d; font-size: 8px; }
.instance-row i { color: #62a48e; font-size: 8px; font-style: normal; }

.dashboard-orbit { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.95); border-radius: 10px; background: rgba(255,255,255,.82); box-shadow: 0 12px 24px rgba(121,67,101,.1); color: #826d7d; font-size: 10px; backdrop-filter: blur(12px); }
.dashboard-orbit b { color: #b84f83; font-size: 13px; }
.dashboard-orbit--top { top: 65px; right: -21px; transform: rotate(4deg); animation: dashboardBadgeA 5.8s ease-in-out infinite; }
.dashboard-orbit--bottom { bottom: 20px; left: -20px; transform: rotate(-4deg); animation: dashboardBadgeB 6.2s ease-in-out .3s infinite; }
.dashboard-orbit--bottom i { width: 6px; height: 6px; border-radius: 50%; background: #6bc49b; box-shadow: 0 0 0 4px rgba(107,196,155,.13); }

@keyframes dashboardFloat { 0%, 100% { transform: rotateX(1.5deg) rotateY(-2deg) translateY(0); } 50% { transform: rotateX(1.5deg) rotateY(-2deg) translateY(-6px); } }
@keyframes dashboardBadgeA { 0%, 100% { transform: rotate(4deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-7px); } }
@keyframes dashboardBadgeB { 0%, 100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-6px); } }

@media (max-width: 900px) {
  .hero-dashboard { min-height: 0; }
  .dashboard-window__body { grid-template-columns: 1fr; }
  .dashboard-window__aside { display: none; }
  .dashboard-window__content { padding: 21px; }
  .dashboard-orbit--top { right: 10px; }
  .dashboard-orbit--bottom { left: 10px; bottom: -20px; }
}

@media (max-width: 700px) {
  .aurora-hero { padding-top: 94px; padding-bottom: 48px; }
  .hero-copy { padding-bottom: 31px; }
  .hero-copy h1 { font-size: clamp(36px, 10.2vw, 45px); }
  .hero-lede { font-size: 14px; }
  .dashboard-window { border-radius: 14px; transform: none; animation: none; }
  .dashboard-window__bar { height: 38px; padding: 0 12px; font-size: 8px; }
  .dashboard-live { font-size: 0; }
  .dashboard-live i { margin-left: auto; }
  .dashboard-window__content { padding: 16px 13px 18px; }
  .dashboard-greeting h2 { max-width: 260px; font-size: 17px; }
  .dashboard-metrics { grid-template-columns: 1fr; gap: 7px; margin-top: 16px; }
  .dashboard-metrics article { min-height: 0; grid-template-columns: 1fr auto auto; align-items: center; padding: 11px 12px; }
  .dashboard-metrics strong { font-size: 17px; }
  .dashboard-lower { grid-template-columns: 1fr; }
  .dashboard-chart { min-height: 167px; }
  .chart-area { height: 103px; }
  .dashboard-instance { min-height: 0; }
  .dashboard-orbit { padding: 7px 9px; font-size: 8px; }
  .dashboard-orbit--top { top: 48px; right: 4px; }
  .dashboard-orbit--bottom { bottom: -18px; left: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-window,
  .dashboard-orbit { animation: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-art-cloud,
  .hero-note,
  .hero-spark { animation: none !important; }
  html.motion-ready .reveal { opacity: 1; transform: none; transition: none; }
  .ripple { display: none; }
  .button::after,
  .nav-orbit .nav-buy::after,
  .product-link::after,
  .updates-more::after,
  .footer-cta::after,
  .footer-console::after { display: none; }
}
