:root {
  --lumo-nav-gap: clamp(36px, 5vw, 76px);
  --lumo-ink: #36363c;
  --lumo-text: #50515b;
  --lumo-muted: #767986;
  --lumo-line: rgba(54, 54, 60, 0.16);
  --lumo-purple: #8953ff;
  --lumo-purple-dark: #24105d;
  --lumo-violet: #6c5cff;
  --lumo-mint: #bdf4e8;
  --lumo-white: #ffffff;
  --lumo-soft: #f6f4fb;
  --lumo-max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lumo-page {
  margin: 0;
  background: #fff;
  color: var(--lumo-ink);
  font-family: "Noto Sans KR", "Roboto", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", sans-serif;
  line-height: 1.7;
  word-break: keep-all;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.lumo-page::-webkit-scrollbar { width: 6px; }
body.lumo-page::-webkit-scrollbar-thumb { background: rgba(137, 83, 255, 0.42); border-radius: 99px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.lumo-skip a {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 300;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--lumo-ink);
  color: #fff;
}
.lumo-skip a:focus { transform: translateY(0); }

.lumo-wrap {
  width: min(var(--lumo-max), calc(100% - 48px));
  margin-inline: auto;
}

.lumo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  height: 92px;
  padding: 0 clamp(24px, 9vw, 132px);
  color: var(--lumo-ink);
  transition: height 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}
.lumo-header.is-scrolled {
  height: 74px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 40px rgba(36, 16, 93, 0.08);
  backdrop-filter: blur(22px);
}
.lumo-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-family: "Roboto", "Noto Sans KR", sans-serif;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.lumo-logo b { font-weight: 700; }
.lumo-logo b span { color: #ff9d2e; }
.lumo-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border: 4px solid var(--lumo-ink);
  border-radius: 50%;
}
.lumo-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 6px solid transparent;
  border-top-color: var(--lumo-purple);
  border-right-color: var(--lumo-purple);
  border-radius: 50%;
  transform: rotate(-12deg);
}
.lumo-mark::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #ff9d2e;
}
.lumo-mark i {
  position: absolute;
  left: 13px;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--lumo-ink);
}
.lumo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--lumo-nav-gap);
  margin-left: auto;
  color: #37373d;
  font-size: 17px;
  font-weight: 500;
}
.lumo-nav a, .lumo-contact { transition: color 0.2s ease, opacity 0.2s ease; }
.lumo-nav a:hover, .lumo-contact:hover { color: var(--lumo-purple); }
.lumo-contact {
  margin-left: var(--lumo-nav-gap);
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}

.lumo-section { position: relative; overflow: hidden; }
.lumo-hero {
  min-height: 100vh;
  background: #fff;
  isolation: isolate;
}
.lumo-hero::before {
  content: "";
  position: absolute;
  right: -24vw;
  top: -18vh;
  width: 72vw;
  height: 138vh;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 20%, rgba(255,255,255,0.9), transparent 28%), #f2f1f8;
  z-index: -2;
  filter: blur(0.2px);
}
.lumo-hero-copy {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 60px));
  padding: clamp(176px, 23vh, 245px) 0 0 clamp(32px, 9.2vw, 132px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.lumo-hero-copy.is-switching { opacity: 0; transform: translateY(16px); }
.lumo-eyebrow {
  margin: 0 0 8px;
  color: var(--lumo-muted);
  font-size: 18px;
  font-weight: 650;
}
.lumo-hero h1 {
  margin: 0;
  color: #3f3f43;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.35;
  letter-spacing: -0.075em;
  font-weight: 900;
}
.lumo-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: #676875;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 420;
}
.lumo-hero-art {
  position: absolute;
  right: -17vw;
  top: -4vh;
  width: min(67vw, 980px);
  height: 108vh;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  animation: lumo-soft-in 1.1s cubic-bezier(.2,.8,.2,1) both;
}
.lumo-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.75), transparent 24%, rgba(45,20,92,0.08));
}
.lumo-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: lumo-hero-drift 12s ease-in-out infinite alternate;
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease;
}
.lumo-hero[data-slide='1'] .lumo-hero-art img { object-position: 48% 50%; filter: hue-rotate(0deg) saturate(1); }
.lumo-hero[data-slide='2'] .lumo-hero-art img { object-position: 62% 44%; filter: hue-rotate(12deg) saturate(1.05); }
.lumo-hero[data-slide='3'] .lumo-hero-art img { object-position: 70% 58%; filter: hue-rotate(-10deg) saturate(1.12) brightness(0.96); }
.lumo-hero-pager {
  position: absolute;
  left: clamp(32px, 10vw, 150px);
  bottom: clamp(44px, 9vh, 96px);
  z-index: 4;
  display: flex;
  gap: 20px;
}
.lumo-hero-pager span { width: 132px; color: #a3a3a9; cursor: pointer; transition: color 0.25s ease; }
.lumo-hero-pager b { display: block; margin-bottom: 8px; font-size: 16px; font-weight: 800; }
.lumo-hero-pager i {
  display: block;
  position: relative;
  height: 2px;
  background: rgba(66,66,66,0.18);
  overflow: hidden;
}
.lumo-hero-pager i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--lumo-ink);
}
.lumo-hero-pager .is-active { color: var(--lumo-ink); }
.lumo-hero-pager .is-active i::before { animation: lumo-progress 5.2s linear both; }
.lumo-scroll {
  position: absolute;
  right: clamp(44px, 8vw, 128px);
  bottom: 10px;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 28px;
  color: #fff;
}
.lumo-scroll p {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.lumo-scroll span {
  position: relative;
  display: block;
  width: 1px;
  height: 82px;
  background: rgba(255, 255, 255, 0.34);
  overflow: hidden;
}
.lumo-scroll span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  animation: lumo-scroll-line 2.1s ease-in-out infinite;
}

.lumo-side {
  position: fixed;
  left: 62px;
  top: 50%;
  z-index: 90;
  transform: translateY(-50%);
  display: grid;
  gap: 18px;
}
.lumo-side a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 25px;
  color: var(--lumo-ink);
}
.lumo-side span {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 99px;
}
.lumo-side span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(66, 66, 66, 0.2);
  transform: translate(-50%, -50%);
}
.lumo-side em {
  position: absolute;
  left: 36px;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-4px);
  transition: 0.24s ease;
}
.lumo-side .is-active span { border: 1px solid rgba(66,66,66,0.48); }
.lumo-side .is-active span::before { background: var(--lumo-ink); }
.lumo-side .is-active em { opacity: 1; transform: translateX(0); }
.lumo-side.is-light a { color: #fff; }
.lumo-side.is-light span::before { background: rgba(255,255,255,0.8); }
.lumo-side.is-light .is-active span { border-color: #fff; }

.lumo-intro { padding: 140px 0 0; background: #fff; }
.lumo-title { text-align: center; }
.lumo-title h2,
.lumo-platform-copy h2,
.lumo-dark-copy h2,
.lumo-download h2 {
  margin: 0;
  color: #303035;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.42;
  letter-spacing: -0.065em;
  font-weight: 900;
}
.lumo-title p {
  max-width: 810px;
  margin: 20px auto 0;
  color: #6d6d76;
  font-size: clamp(16px, 1.4vw, 20px);
}
.lumo-circle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 66px;
}
.lumo-circle-row .lumo-circle,
.lumo-circle-row .lumo-arrow {
  opacity: 0;
  will-change: opacity, transform;
}
.lumo-circle-row.is-visible .card-one { animation: lumo-circle-in 0.72s cubic-bezier(.18,.82,.2,1) 0.05s both; }
.lumo-circle-row.is-visible .card-two { animation: lumo-circle-in-overlap 0.72s cubic-bezier(.18,.82,.2,1) 0.36s both; }
.lumo-circle-row.is-visible .lumo-arrow { animation: lumo-arrow-in 0.5s ease 0.82s both; }
.lumo-circle-row.is-visible .card-three { animation: lumo-result-in 0.82s cubic-bezier(.16,.88,.22,1) 1.08s both; }
.lumo-circle {
  position: relative;
  width: min(29vw, 350px);
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(36, 16, 93, 0.14);
  background: var(--lumo-soft);
  transform: translateZ(0);
}
.lumo-circle.card-two { margin-left: -44px; z-index: 2; }
.lumo-circle img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.lumo-circle:hover img { transform: scale(1.08); }
.lumo-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(23, 14, 54, 0.62));
}
.lumo-circle p {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1;
  margin: 0;
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 900;
  line-height: 1.35;
  text-shadow: 0 6px 24px rgba(0,0,0,0.28);
}
.lumo-arrow {
  position: relative;
  z-index: 3;
  width: 96px;
  height: 4px;
  margin: 0 30px;
  background: linear-gradient(90deg, rgba(137,83,255,0), rgba(137,83,255,0.95));
  box-shadow: 0 0 18px rgba(137,83,255,0.18);
}
.lumo-arrow::before,
.lumo-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 18px;
  height: 4px;
  background: rgba(137,83,255,0.95);
  transform-origin: right center;
}
.lumo-arrow::before { transform: rotate(36deg); }
.lumo-arrow::after { transform: rotate(-36deg); }
.lumo-quote {
  position: relative;
  margin-top: 150px;
  padding: 128px 24px 152px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(43, 22, 112, 0.88), rgba(137, 83, 255, 0.78)),
    url('../images/lumiloop/focus.png') center/cover;
}
.lumo-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.22), transparent 34%);
}
.lumo-quote span,
.lumo-quote p { position: relative; z-index: 1; }
.lumo-quote span { display: block; font-size: 58px; line-height: 1; opacity: 0.86; }
.lumo-quote p {
  margin: 10px 0 0;
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.lumo-platform { padding: 0 0 115px; background: #fff; }
.lumo-platform-bg {
  position: absolute;
  right: 0;
  top: 260px;
  width: min(62vw, 1180px);
  height: 880px;
  z-index: 0;
  background: radial-gradient(circle at 74% 24%, rgba(137,83,255,0.24), transparent 28%), linear-gradient(135deg, #f7f4ff, #eef9ff 55%, #fff);
  clip-path: ellipse(63% 49% at 68% 41%);
}
.lumo-platform-one {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 80px;
  align-items: center;
  min-height: 720px;
  padding-top: 120px;
}
.lumo-platform-copy { max-width: 720px; }
.lumo-app-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f4f0ff);
  box-shadow: 0 30px 70px rgba(36, 16, 93, 0.16), 0 120px 120px rgba(36, 16, 93, 0.08);
  display: grid;
  place-items: center;
}
.lumo-app-icon span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 10px solid var(--lumo-purple);
  border-left-color: #ff9d2e;
  box-shadow: inset 0 0 0 10px #fff;
}
.lumo-platform-copy p {
  margin: 18px 0 0;
  color: #6b6c75;
  font-size: 18px;
}
.lumo-platform-copy .lumo-strong,
.lumo-download .lumo-strong {
  color: #303035;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.045em;
}
.lumo-phone-float,
.lumo-ai-phone {
  position: relative;
  display: grid;
  place-items: center;
}
.lumo-phone-float { animation: lumo-float 3.6s ease-in-out infinite; }
.lumo-orbit {
  position: absolute;
  pointer-events: none;
  overflow: visible;
  filter: drop-shadow(0 0 14px rgba(137, 83, 255, 0.18));
}
.lumo-orbit path {
  fill: none;
  stroke: rgba(137, 83, 255, 0.88);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 120 32;
  animation: lumo-orbit-flow 5.2s linear infinite;
}
.lumo-orbit path:nth-child(2) {
  stroke: rgba(137, 83, 255, 0.24);
  stroke-width: 3;
  stroke-dasharray: 18 28;
  animation-duration: 8s;
  animation-direction: reverse;
}
.orbit-main {
  width: 680px;
  left: 50%;
  top: 50%;
  transform: translate(-49%, -46%) rotate(-10deg);
  z-index: -1;
}
.orbit-ai {
  width: min(48vw, 640px);
  left: 50%;
  top: 64%;
  transform: translate(-54%, -28%) rotate(8deg);
  z-index: -1;
  opacity: 0.86;
}
.lumo-orbit::before,
.lumo-orbit::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 99px;
  background: #8953ff;
  box-shadow: 0 0 22px rgba(137,83,255,0.75);
  offset-path: path("M18 278 C 154 96, 350 54, 506 154 S 636 346, 704 216");
  animation: lumo-dot-orbit 5.2s linear infinite;
}
.lumo-orbit::after { animation-delay: -2.2s; opacity: 0.45; width: 10px; height: 10px; }
.lumo-phone,
.lumo-phone::before {
  border-radius: 44px;
}
.lumo-phone {
  position: relative;
  width: 286px;
  height: 578px;
  padding: 13px;
  background: linear-gradient(145deg, #16131f, #4b3b70 58%, #16131f);
  box-shadow: 0 38px 80px rgba(36, 16, 93, 0.28), inset 0 0 0 1px rgba(255,255,255,0.18);
}
.lumo-phone::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}
.lumo-notch {
  position: absolute;
  left: 50%;
  top: 22px;
  z-index: 2;
  width: 88px;
  height: 24px;
  border-radius: 0 0 18px 18px;
  background: #16131f;
  transform: translateX(-50%);
}
.lumo-screen {
  height: 100%;
  border-radius: 34px;
  padding: 58px 22px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 65% 24%, rgba(255,255,255,0.48), transparent 11%),
    radial-gradient(circle at 50% 47%, rgba(189,244,232,0.35), transparent 20%),
    linear-gradient(155deg, #825dff, #24105d 58%, #12091f);
  overflow: hidden;
}
.lumo-screen small { color: rgba(255,255,255,0.72); font-size: 13px; font-weight: 700; }
.lumo-screen h3 { margin: 2px 0 16px; font-family: "Roboto"; font-size: 58px; line-height: 1; letter-spacing: -0.06em; }
.lumo-ring {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 10px auto 26px;
  border-radius: 50%;
  background: conic-gradient(#fff 0 72%, rgba(255,255,255,0.18) 72% 100%);
  display: grid;
  place-items: center;
}
.lumo-ring::before {
  content: "";
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: linear-gradient(155deg, #825dff, #24105d);
}
.lumo-ring i {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  background: #ff9d2e;
  right: 17px;
  top: 34px;
  box-shadow: 0 0 22px #ffcf77;
}
.lumo-screen ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.lumo-screen li {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 17px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}
.lumo-screen li b { width: 10px; height: 10px; border-radius: 99px; background: var(--lumo-mint); }
.lumo-screen li:nth-child(2) b { background: #ffcf77; }
.lumo-screen li:nth-child(3) b { background: #d5c1ff; }
.lumo-screen li span { font-size: 13px; font-weight: 760; }
.lumo-screen li em { font-style: normal; color: rgba(255,255,255,0.65); font-size: 12px; }

.lumo-panel-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 68px;
  align-items: end;
  margin-top: 35px;
  padding: 80px 0 130px;
  color: #fff;
}
.lumo-panel-block::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  z-index: -1;
  background: linear-gradient(135deg, #211044, #5a34c9 58%, #0b0922);
  transform: translateX(-50%);
}
.lumo-dashboard {
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 32px;
  padding: 18px;
  background: rgba(255,255,255,0.20);
  box-shadow: 0 26px 80px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.24);
  backdrop-filter: blur(20px);
}
.lumo-dashboard-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px 18px;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 800;
}
.lumo-dashboard-top span { width: 10px; height: 10px; border-radius: 99px; background: rgba(255,255,255,0.38); }
.lumo-dashboard-top b { margin-left: 12px; }
.lumo-dashboard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.lumo-dashboard-grid article {
  position: relative;
  min-height: 310px;
  padding: 22px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.11));
}
.lumo-dashboard-grid span { color: rgba(255,255,255,0.78); font-family: "Roboto"; font-weight: 900; }
.lumo-dashboard-grid strong { display: block; margin-top: 8px; line-height: 1.2; font-size: 22px; letter-spacing: -0.04em; }
.lumo-dashboard-grid i {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: var(--h);
  border-radius: 19px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(189,244,232,0.22));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.48);
  transform-origin: bottom;
  animation: lumo-bar-grow 1.2s cubic-bezier(.2,.8,.2,1) both;
}
.lumo-dark-copy { padding-bottom: 18px; }
.lumo-dark-copy h2 { color: #fff; font-size: clamp(28px, 3vw, 40px); }
.lumo-dark-copy p { margin: 16px 0 0; color: rgba(255,255,255,0.76); font-size: 18px; }

.lumo-ai-block {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
  padding: 120px 0 85px;
}
.lumo-ai-phone { animation: lumo-float 4.4s ease-in-out infinite; }
.lumo-ai-block .lumo-platform-copy { position: relative; z-index: 2; }
.lumo-phone.mini { width: 250px; height: 505px; transform: rotate(-4deg); }
.lumo-screen.light {
  color: #2e2842;
  background:
    radial-gradient(circle at 70% 15%, rgba(137,83,255,0.24), transparent 16%),
    linear-gradient(160deg, #ffffff, #f3efff 52%, #e8fff9);
}
.lumo-screen.light small { color: #806fc2; }
.lumo-screen.light h3 { font-size: 42px; color: #33264f; }
.lumo-screen.light p { margin: 0; color: #665f77; font-weight: 720; }
.lumo-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.lumo-chip-row span {
  padding: 9px 11px;
  border-radius: 99px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(36,16,93,0.10);
  color: #6d4dce;
  font-size: 12px;
  font-weight: 900;
}
.lumo-line {
  position: absolute;
  left: 2%;
  bottom: 70px;
  z-index: -1;
  width: min(58vw, 720px);
}
.lumo-line path {
  fill: none;
  stroke: rgba(137,83,255,0.28);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}
.lumo-line.is-visible path { animation: lumo-draw 4.8s ease forwards; }

.lumo-download {
  min-height: 560px;
  display: grid;
  align-items: center;
  color: #fff;
  background: #170d35;
}
.lumo-download > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.08);
  animation: lumo-banner-drift 14s ease-in-out infinite alternate;
}
.lumo-download::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,9,38,0.92), rgba(18,9,38,0.64) 48%, rgba(18,9,38,0.12));
}
.lumo-download-inner { position: relative; z-index: 1; padding: 96px 0; }
.lumo-download span {
  display: block;
  margin-bottom: 13px;
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  font-weight: 800;
}
.lumo-download h2 { color: #fff; }
.lumo-download p { max-width: 620px; margin: 14px 0 0; color: rgba(255,255,255,0.82); font-size: 18px; }
.lumo-download .lumo-strong { color: #fff; }
.lumo-store-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 52px; }
.lumo-store-row a {
  min-width: 216px;
  border-radius: 50px;
  padding: 15px 28px;
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.32);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: background 0.22s ease, transform 0.22s ease;
}
.lumo-store-row a:hover { transform: translateY(-2px); background: var(--lumo-purple); }
.lumo-store-row small { display: block; font-size: 11px; line-height: 1; opacity: 0.72; }
.lumo-store-row b { display: block; margin-top: 3px; font-family: "Roboto"; font-size: 23px; line-height: 1; }

.lumo-footer { padding: 42px 0 54px; background: #f5f5f5; color: #777985; }
.lumo-footer .lumo-wrap { display: grid; gap: 20px; }
.lumo-footer .lumo-logo { color: #33343a; font-size: 24px; }
.lumo-footer .lumo-mark { width: 34px; height: 34px; border-width: 3px; }
.lumo-footer .lumo-mark::before { inset: 6px; border-width: 5px; }
.lumo-footer .lumo-mark i { left: 10px; top: 10px; }
.lumo-footer div div { display: flex; flex-wrap: wrap; gap: 16px 28px; color: #4c4d55; font-weight: 700; }
.lumo-footer p { margin: 0; font-size: 14px; }
.lumo-footer small { display: block; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.10); font-size: 13px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.82s ease, transform 0.82s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes lumo-progress { from { width: 0; } to { width: 100%; } }
@keyframes lumo-hero-drift { from { transform: scale(1.06) translate3d(-1.2%, -0.8%, 0); } to { transform: scale(1.12) translate3d(1.6%, 1.2%, 0); } }
@keyframes lumo-banner-drift { from { transform: scale(1.08) translate3d(-1.4%, 0, 0); } to { transform: scale(1.14) translate3d(1.8%, -1.2%, 0); } }
@keyframes lumo-circle-in { from { opacity: 0; transform: translateX(-34px) scale(0.92); filter: blur(4px); } to { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); } }
@keyframes lumo-circle-in-overlap { from { opacity: 0; transform: translateX(-86px) scale(0.92); filter: blur(4px); } to { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); } }
@keyframes lumo-arrow-in { from { opacity: 0; transform: translateX(-20px) scaleX(0.25); transform-origin: left center; } to { opacity: 1; transform: translateX(0) scaleX(1); transform-origin: left center; } }
@keyframes lumo-result-in { from { opacity: 0; transform: translateX(54px) scale(0.86); filter: blur(5px); } to { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); } }
@keyframes lumo-orbit-flow { to { stroke-dashoffset: -304; } }
@keyframes lumo-dot-orbit { from { offset-distance: 0%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } to { offset-distance: 100%; opacity: 0; } }
@keyframes lumo-scroll-line { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }
@keyframes lumo-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes lumo-draw { to { stroke-dashoffset: 0; } }
@keyframes lumo-soft-in { from { opacity: 0; transform: translateX(28px) scale(1.02); } to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes lumo-bar-grow { from { transform: scaleY(0.08); opacity: 0.2; } to { transform: scaleY(1); opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .lumo-circle-row .lumo-circle, .lumo-circle-row .lumo-arrow { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  .lumo-header { padding-inline: 30px; }
  .lumo-nav { gap: 28px; }
  .lumo-side { left: 24px; }
  .lumo-hero-copy { padding-left: 70px; }
  .lumo-circle { width: 31vw; }
  .lumo-arrow { width: 46px; margin-inline: 14px; }
}

@media (max-width: 900px) {
  .lumo-header { height: 70px; padding-inline: 18px; }
  .lumo-logo { font-size: 22px; }
  .lumo-mark { width: 34px; height: 34px; border-width: 3px; }
  .lumo-mark::before { inset: 6px; border-width: 5px; }
  .lumo-mark i { left: 10px; top: 10px; }
  .lumo-nav, .lumo-contact { display: none; }
  .lumo-side { display: none; }
  .lumo-hero { min-height: 720px; }
  .lumo-hero-copy { width: auto; padding: 112px 24px 0; }
  .lumo-eyebrow { font-size: 15px; }
  .lumo-lead { font-size: 16px; }
  .lumo-hero-art {
    right: -42vw;
    top: 300px;
    width: 118vw;
    height: 470px;
  }
  .lumo-hero::before { right: -68vw; top: 260px; width: 130vw; height: 560px; }
  .lumo-hero-pager { left: 24px; bottom: 22px; gap: 14px; }
  .lumo-hero-pager span { width: 78px; }
  .lumo-scroll { display: none; }
  .lumo-intro { padding-top: 78px; }
  .lumo-circle-row { display: grid; gap: 18px; margin-top: 36px; }
  .lumo-circle, .lumo-circle.card-two { width: min(82vw, 360px); margin: 0 auto; }
  .lumo-arrow { width: 2px; height: 42px; margin: 0 auto; }
  .lumo-arrow::before, .lumo-arrow::after { top: auto; bottom: 0; right: 50%; width: 14px; transform-origin: right center; }
  .lumo-arrow::before { transform: rotate(52deg); }
  .lumo-arrow::after { transform: rotate(128deg); }
  .lumo-quote { margin-top: 70px; padding: 62px 24px 76px; }
  .lumo-platform-one,
  .lumo-panel-block,
  .lumo-ai-block { grid-template-columns: 1fr; gap: 38px; }
  .lumo-platform-one { min-height: 0; padding-top: 72px; }
  .lumo-app-icon { width: 78px; height: 78px; border-radius: 16px; }
  .lumo-app-icon span { width: 42px; height: 42px; border-width: 8px; }
  .orbit-main { width: 560px; opacity: 0.7; }
  .orbit-ai { width: 430px; opacity: 0.55; }
  .lumo-phone { width: 238px; height: 482px; border-radius: 36px; }
  .lumo-screen { border-radius: 28px; padding-inline: 18px; }
  .lumo-screen h3 { font-size: 46px; }
  .lumo-panel-block { margin-top: 54px; padding: 60px 0; }
  .lumo-dashboard-grid { grid-template-columns: repeat(2, 1fr); }
  .lumo-dashboard-grid article { min-height: 210px; }
  .lumo-ai-block { padding: 74px 0 20px; }
  .lumo-line { display: none; }
  .lumo-download { min-height: 620px; }
  .lumo-download::before { background: linear-gradient(180deg, rgba(18,9,38,0.92), rgba(18,9,38,0.68)); }
  .lumo-store-row a { min-width: 100%; }
}

@media (max-width: 560px) {
  .lumo-wrap { width: min(100% - 32px, var(--lumo-max)); }
  .lumo-hero h1 { font-size: 38px; }
  .lumo-title h2, .lumo-platform-copy h2, .lumo-download h2 { font-size: 31px; }
  .lumo-title p, .lumo-platform-copy p, .lumo-dark-copy p, .lumo-download p { font-size: 15px; }
  .lumo-hero-pager span { width: 64px; }
  .lumo-dashboard-grid { grid-template-columns: 1fr; }
  .lumo-footer div div { display: grid; gap: 10px; }
}
