:root {
  --bg: var(--lumi-bg, #0B0F14);
  --bg-elev: #10161F;
  --bg-deep: #000000;
  --ink: var(--lumi-bg, #0B0F14);
  --text: var(--lumi-text, var(--lumi-light, #E8F0FF));
  --muted: var(--lumi-muted, #8D96A8);
  --accent: var(--lumi-violet, #7B6CFF);
  --accent-bright: var(--lumi-accent, var(--lumi-periwinkle, #A7B8FF));
  --accent-soft: rgba(123, 108, 255, 0.14);
  --glow: rgba(167, 184, 255, 0.4);
  --line: rgba(232, 240, 255, 0.09);
  --solid: var(--lumi-text, var(--lumi-light, #E8F0FF));
  --on-solid: var(--lumi-bg, #0B0F14);
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: var(--lumi-font, "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  --display: "Outfit", "Inter", system-ui, sans-serif;
  --nav-h: 64px;
  --max: 1120px;
  --space-section: clamp(64px, 9vw, 112px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul, ol {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

/* ——— Atmosphere ——— */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(123, 108, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(167, 184, 255, 0.08), transparent 50%),
    #0B0F14;
}

.atmosphere__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  will-change: transform;
  animation: drift 22s ease-in-out infinite alternate;
}

.atmosphere__glow--a {
  width: 62vw;
  height: 62vw;
  max-width: 780px;
  max-height: 780px;
  top: -16vw;
  left: 8%;
  background: radial-gradient(circle, rgba(123, 108, 255, 0.42), rgba(167, 184, 255, 0.08) 48%, transparent 70%);
}

.atmosphere__glow--b {
  width: 46vw;
  height: 46vw;
  max-width: 560px;
  max-height: 560px;
  right: -10vw;
  top: 28vh;
  background: radial-gradient(circle, rgba(167, 184, 255, 0.22), transparent 70%);
  animation-delay: -8s;
  animation-duration: 26s;
}

.atmosphere__glow--c {
  width: 38vw;
  height: 38vw;
  max-width: 420px;
  max-height: 420px;
  left: -8vw;
  bottom: 8vh;
  background: radial-gradient(circle, rgba(123, 108, 255, 0.2), transparent 70%);
  animation-delay: -14s;
  animation-duration: 28s;
}

.atmosphere__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4%, 6%, 0) scale(1.1); }
}

/* ——— Site header: slim floating dock ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 16px 0;
  pointer-events: none;
}

.site-header__dock {
  pointer-events: auto;
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 48px;
  padding: 6px 8px 6px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  border: 1px solid rgba(232, 240, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(18, 22, 34, 0.55), rgba(5, 7, 10, 0.35));
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 10px 32px rgba(0, 0, 0, 0.28);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

.site-header__mark-img {
  width: 22px;
  height: 21px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(167, 184, 255, 0.5));
}

.site-header__word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.site-header__brand:hover .site-header__word {
  color: var(--accent-bright);
}

.site-header__chips {
  display: none;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 4px;
}

.site-header__chips a {
  position: relative;
  padding: 8px 11px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.site-header__chips a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 5px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-bright), var(--accent));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s var(--ease);
  opacity: 0.9;
}

.site-header__chips a:hover {
  color: var(--text);
  background: rgba(232, 240, 255, 0.04);
}

.site-header__chips a:hover::after {
  transform: scaleX(1);
}

.site-header__cta {
  display: none;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  min-height: 36px;
  padding: 0 14px 0 15px;
  border-radius: 12px;
  border: 1px solid rgba(167, 184, 255, 0.28);
  background: rgba(123, 108, 255, 0.12);
  color: var(--accent-bright);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.site-header__cta:hover {
  background: rgba(123, 108, 255, 0.22);
  border-color: rgba(167, 184, 255, 0.45);
  color: var(--text);
  transform: translateY(-1px);
}

.site-header__cta-ico {
  opacity: 0.85;
}

.site-header__toggle {
  margin-left: auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(232, 240, 255, 0.08);
  background: rgba(232, 240, 255, 0.03);
}

.site-header__toggle-lines {
  display: grid;
  gap: 5px;
  width: 16px;
  position: relative;
  height: 14px;
}

.site-header__toggle-lines i {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), width 0.35s var(--ease), top 0.35s var(--ease);
}

.site-header__toggle-lines i:first-child { width: 16px; }
.site-header__toggle-lines i:last-child { width: 11px; margin-left: auto; }

.site-header__toggle.is-open .site-header__toggle-lines i:first-child,
.site-header__toggle[aria-expanded="true"] .site-header__toggle-lines i:first-child {
  transform: translateY(3.25px) rotate(45deg);
  width: 16px;
}

.site-header__toggle.is-open .site-header__toggle-lines i:last-child,
.site-header__toggle[aria-expanded="true"] .site-header__toggle-lines i:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
  width: 16px;
  margin-left: 0;
}

.site-drawer {
  pointer-events: none;
  max-width: var(--max);
  margin: 8px auto 0;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(232, 240, 255, 0.12);
  background:
    linear-gradient(165deg, rgba(123, 108, 255, 0.14), transparent 42%),
    rgba(8, 10, 16, 0.88);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 20px 48px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  filter: blur(4px);
  transform-origin: top center;
  transition:
    opacity 0.28s var(--ease),
    transform 0.32s var(--ease),
    filter 0.28s var(--ease),
    visibility 0s linear 0.32s;
  visibility: hidden;
}

.site-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  visibility: visible;
  transition:
    opacity 0.28s var(--ease),
    transform 0.32s var(--ease),
    filter 0.28s var(--ease),
    visibility 0s;
}

.site-drawer[hidden] {
  display: none !important;
}

.site-drawer.is-open .site-drawer__nav a,
.site-drawer.is-open .site-drawer__cta {
  animation: drawerItemIn 0.38s var(--ease) both;
}

.site-drawer.is-open .site-drawer__nav a:nth-child(1) { animation-delay: 0.04s; }
.site-drawer.is-open .site-drawer__nav a:nth-child(2) { animation-delay: 0.07s; }
.site-drawer.is-open .site-drawer__nav a:nth-child(3) { animation-delay: 0.1s; }
.site-drawer.is-open .site-drawer__nav a:nth-child(4) { animation-delay: 0.13s; }
.site-drawer.is-open .site-drawer__nav a:nth-child(5) { animation-delay: 0.16s; }
.site-drawer.is-open .site-drawer__nav a:nth-child(6) { animation-delay: 0.19s; }
.site-drawer.is-open .site-drawer__nav a:nth-child(7) { animation-delay: 0.22s; }
.site-drawer.is-open .site-drawer__cta { animation-delay: 0.26s; }

@keyframes drawerItemIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-drawer__nav {
  display: grid;
  gap: 2px;
}

.site-drawer__nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.site-drawer__nav a:hover {
  background: rgba(123, 108, 255, 0.14);
  color: var(--accent-bright);
  padding-left: 18px;
}

.site-drawer__nav a.site-drawer__ext {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-drawer__nav a.site-drawer__ext:hover {
  color: var(--accent-bright);
}

.site-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(167, 184, 255, 0.35);
  background: linear-gradient(135deg, rgba(123, 108, 255, 0.28), rgba(167, 184, 255, 0.12));
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 0 24px rgba(123, 108, 255, 0.18);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.site-drawer__cta:hover {
  border-color: rgba(167, 184, 255, 0.55);
  background: linear-gradient(135deg, rgba(123, 108, 255, 0.4), rgba(167, 184, 255, 0.18));
  transform: translateY(-1px);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.22s var(--ease), background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.btn--lg {
  min-height: 50px;
  padding: 0 24px;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.btn--solid {
  background: var(--solid);
  color: var(--on-solid);
}

.btn--solid:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 8px 28px rgba(167, 184, 255, 0.28), 0 0 32px rgba(123, 108, 255, 0.22);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(232, 240, 255, 0.03);
}

.btn--ghost:hover {
  border-color: rgba(123, 108, 255, 0.5);
  background: var(--accent-soft);
}

.btn--outline {
  border: 1.5px solid rgba(167, 184, 255, 0.5);
  color: var(--text);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--accent-bright);
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(123, 108, 255, 0.22);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ——— Shared section chrome ——— */
.eyebrow {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-section) 24px;
}

.section__head {
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}

.section__head h2,
.split__text h2,
.about__intro h2,
.cta-band h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.8vw, 2.55rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  font-weight: 800;
}

.section__head p,
.split__text > p,
.about__intro > p,
.cta-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.band {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.band > .split,
.band > .about,
.band > .section__head,
.band > .steps,
.band > .workflow {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.band--alt {
  background:
    linear-gradient(180deg, transparent, rgba(12, 16, 22, 0.7) 14%, rgba(12, 16, 22, 0.7) 86%, transparent);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(20px, 3.2vw, 36px) 24px clamp(24px, 4vw, 48px);
  display: grid;
  gap: 28px;
  align-items: start;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero__glow {
  position: absolute;
  width: min(90%, 520px);
  height: 280px;
  top: -40px;
  left: -60px;
  background: radial-gradient(ellipse at 30% 40%, rgba(123, 108, 255, 0.38), rgba(167, 184, 255, 0.12) 42%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
  animation: glow-pulse 8s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from { opacity: 0.7; transform: scale(1) translate(0, 0); }
  to { opacity: 1; transform: scale(1.08) translate(3%, 4%); }
}

.hero__eyebrow {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.hero__brand {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.02em;
}

.hero__brand-line {
  display: block;
  font-family: "Outfit", var(--display), system-ui, sans-serif;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--text);
  text-shadow: 0 0 40px rgba(123, 108, 255, 0.35), 0 0 80px rgba(167, 184, 255, 0.18);
}
.hero__brand-line--lumi {
  font-size: clamp(3.2rem, 12vw, 5.6rem);
  letter-spacing: -0.05em;
}
.hero__brand-line--music {
  font-size: clamp(2.6rem, 9.5vw, 4.4rem);
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--accent-bright);
}



.hero__slogan {
  margin: 0 0 16px;
  color: var(--accent-bright);
  font-size: clamp(0.72rem, 1.8vw, 0.82rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__lead {
  margin: 0;
  max-width: 40ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

/* Hero screenshot cluster */
.shot-cluster {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 420px;
  margin: 0 auto;
}

.shot-cluster__glow {
  position: absolute;
  inset: 8% 6% 12% 10%;
  background: radial-gradient(ellipse at 50% 55%, rgba(123, 108, 255, 0.45), rgba(167, 184, 255, 0.12) 42%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  animation: glow-pulse 8s ease-in-out infinite alternate;
}

.device {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(232, 240, 255, 0.12);
  background: #0a0c12;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(123, 108, 255, 0.05);
}

.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.shot-cluster .device {
  position: absolute;
  width: min(46%, 190px);
  aspect-ratio: 9 / 19.5;
}

.device--back {
  left: 4%;
  top: 14%;
  z-index: 1;
  opacity: 0.92;
  transform: rotate(-14deg);
  animation: float-back 9s ease-in-out infinite;
  animation-delay: -1.5s;
}

.device--mid {
  left: 48%;
  top: 4%;
  width: min(52%, 214px);
  margin-left: calc(min(52%, 214px) * -0.5);
  z-index: 2;
  transform: rotate(3deg);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.6),
    0 0 48px rgba(123, 108, 255, 0.28);
  animation: float-mid 8s ease-in-out infinite;
}

.device--front {
  right: 2%;
  bottom: 2%;
  width: min(48%, 200px);
  z-index: 3;
  transform: rotate(10deg);
  box-shadow:
    0 36px 70px rgba(0, 0, 0, 0.65),
    0 0 52px rgba(167, 184, 255, 0.22);
  animation: float-front 7.2s ease-in-out infinite;
}

.device--cta {
  width: min(100%, 200px);
  aspect-ratio: 9 / 19.5;
  margin-inline: auto;
  transform: rotate(-4deg);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(123, 108, 255, 0.22);
}

@keyframes float-back {
  0%, 100% { transform: rotate(-14deg) translateY(0); }
  50% { transform: rotate(-14deg) translateY(-12px); }
}

@keyframes float-mid {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-14px); }
}

@keyframes float-front {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50% { transform: rotate(10deg) translateY(-10px); }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}


/* ——— Screenshots slider ——— */
.section--shots {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.look-slider {
  position: relative;
  width: 100%;
}

.look-slider__stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.look-slider__window {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 12px 0 8px;
  touch-action: pan-y;
}

.look-slider__window::-webkit-scrollbar {
  display: none;
}

html.js .look-slider__window {
  overflow: hidden;
  scroll-snap-type: none;
}

.look-slider__track {
  list-style: none;
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  width: max-content;
  margin: 0;
  padding: 8px 12px 4px;
}

html.js .look-slider__track {
  transition: transform 0.78s cubic-bezier(0.22, 0.82, 0.2, 1);
  will-change: transform;
}

html.js .look-slider__track.is-dragging {
  transition: none;
}

@media (max-width: 720px) {
  html.js .look-slider__track {
    transition: transform 0.9s cubic-bezier(0.2, 0.85, 0.15, 1);
  }
}

.look-slider__slide {
  flex: 0 0 auto;
  width: min(210px, 62vw);
  scroll-snap-align: center;
  opacity: 0.62;
  transition:
    opacity 0.7s cubic-bezier(0.22, 0.82, 0.2, 1),
    transform 0.7s cubic-bezier(0.22, 0.82, 0.2, 1);
  transform: scale(0.96);
}

.look-slider__slide.is-active {
  opacity: 1;
}

.look-slider__open {
  display: grid;
  gap: 12px;
  justify-items: center;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  text-align: center;
}

.look-slider__frame {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(232, 240, 255, 0.12);
  background: #0a0c12;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  transition:
    border-color 0.65s cubic-bezier(0.22, 0.82, 0.2, 1),
    box-shadow 0.65s cubic-bezier(0.22, 0.82, 0.2, 1),
    transform 0.7s cubic-bezier(0.22, 0.82, 0.2, 1);
}

.look-slider__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.look-slider__caption {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.look-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.look-slider__slide.is-active .look-slider__frame {
  border-color: rgba(167, 184, 255, 0.36);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.46),
    0 0 32px rgba(123, 108, 255, 0.14);
  transform: translateY(-2px);
}

.look-slider__slide.is-active .look-slider__caption {
  color: var(--text);
}

.look-slider__open:hover .look-slider__frame,
.look-slider__open:focus-visible .look-slider__frame {
  border-color: rgba(167, 184, 255, 0.4);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.48);
}

.look-slider__arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(232, 240, 255, 0.12);
  background: rgba(16, 22, 31, 0.72);
  color: var(--text);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.look-slider__arrow:hover {
  background: rgba(123, 108, 255, 0.22);
  border-color: rgba(167, 184, 255, 0.4);
  transform: translateY(-1px);
}

.look-slider__arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.look-slider__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.look-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(232, 240, 255, 0.22);
  transition: width 0.28s var(--ease), background 0.28s var(--ease);
}

.look-slider__dot.is-active {
  width: 22px;
  background: var(--accent-bright);
}

.look-slider__dot:hover {
  background: rgba(167, 184, 255, 0.7);
}

/* ——— Lightbox ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) 16px max(20px, env(safe-area-inset-bottom));
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox.is-open {
  display: grid;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(5, 7, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 92vw);
  max-height: 92vh;
  padding: 0;
}

.lightbox.is-open .lightbox__dialog {
  animation: lightbox-in 0.32s var(--ease) both;
}

.lightbox.is-open .lightbox__backdrop {
  animation: lightbox-fade 0.28s var(--ease) both;
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox__figure {
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.lightbox__img {
  width: 100%;
  max-height: min(78vh, 860px);
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid rgba(232, 240, 255, 0.14);
  background: #0a0c12;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(123, 108, 255, 0.16);
}

.lightbox__caption {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.lightbox__close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(232, 240, 255, 0.16);
  background: rgba(12, 16, 22, 0.92);
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.lightbox__close:hover {
  background: rgba(123, 108, 255, 0.28);
  border-color: rgba(167, 184, 255, 0.45);
}

/* ——— About + feature rows ——— */
.about {
  display: grid;
  gap: 28px;
}

.about__intro h2 {
  max-width: 18ch;
}

.feature-rows {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.feature-row {
  padding: 22px 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(16, 22, 31, 0.55);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.feature-row:hover {
  border-color: rgba(167, 184, 255, 0.28);
  transform: translateY(-2px);
  background: rgba(16, 22, 31, 0.85);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.feature-row__icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 14px;
  object-fit: contain;
  opacity: 0.95;
}

.feature-row h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 46ch;
}

/* ——— Compact platform cards ——— */
.cards {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.card {
  padding: 24px 24px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(16, 22, 31, 0.55);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card:hover {
  border-color: rgba(167, 184, 255, 0.32);
  transform: translateY(-3px);
  background: rgba(16, 22, 31, 0.85);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: var(--accent-bright);
  background: var(--accent-soft);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.card:hover .card__icon {
  box-shadow: 0 0 18px rgba(167, 184, 255, 0.28);
  transform: scale(1.06);
}

.card__icon svg,
.card__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  max-width: 32ch;
  font-size: 0.94rem;
}

/* ——— Steps (legacy fallback) ——— */
.steps {
  list-style: none;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.step {
  padding: 22px 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(16, 22, 31, 0.55);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.step:hover {
  border-color: rgba(167, 184, 255, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.step h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--muted);
  max-width: 32ch;
  font-size: 0.94rem;
}

/* ——— Visual workflow ——— */
.workflow {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.workflow__step {
  position: relative;
  padding: 24px 22px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(16, 22, 31, 0.55);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.workflow__step:hover {
  border-color: rgba(167, 184, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.workflow__num {
  display: block;
  margin-bottom: 14px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--accent-bright);
}

.workflow__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(232, 240, 255, 0.03);
}

.workflow__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.workflow__step h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.workflow__step p {
  margin: 0;
  color: var(--muted);
  max-width: 28ch;
  font-size: 0.94rem;
}

.workflow__connector {
  display: none;
}

/* ——— Final CTA band ——— */
.section--cta {
  padding-top: 8px;
  padding-bottom: clamp(48px, 7vw, 72px);
}

.cta-band {
  display: grid;
  gap: 24px;
  padding: clamp(36px, 5vw, 56px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(123, 108, 255, 0.18), transparent 55%),
    rgba(16, 22, 31, 0.72);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.cta-band:hover {
  border-color: rgba(167, 184, 255, 0.28);
  box-shadow: 0 0 48px rgba(123, 108, 255, 0.14);
}

.cta-band--with-shot {
  align-items: center;
}

.cta-band__body {
  display: grid;
  gap: 20px;
}

.cta-band__copy h2 {
  max-width: 18ch;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-band__body--center {
  text-align: center;
  justify-items: center;
  gap: 22px;
}

.cta-band__body--center .cta-band__copy h2 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band__body--center .cta-band__actions {
  justify-content: center;
}

.cta-band__shot {
  display: grid;
  place-items: center;
  order: -1;
}

/* ——— Site footer ——— */
.site-footer {
  margin-top: 8px;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(232, 240, 255, 0.08);
  background: linear-gradient(180deg, rgba(232, 240, 255, 0.03), transparent 70%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-footer__inner {
  max-width: min(1280px, calc(100% - 0px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__brand {
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.site-footer__mark {
  width: 16px;
  height: 15px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(167, 184, 255, 0.4));
}

.site-footer__brand span {
  font-family: var(--font);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  color: var(--muted);
  font-size: 0.74rem;
}

.site-footer__links a {
  transition: color 0.2s var(--ease);
}

.site-footer__links a:hover {
  color: var(--accent-bright);
}

.site-footer__note {
  margin: 0;
  width: 100%;
  max-width: none;
  color: var(--muted);
  opacity: 0.72;
  font-size: 0.68rem;
  line-height: 1.45;
}


/* ——— FAQ ——— */
.faq {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.faq__item {
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(16, 22, 31, 0.55);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.faq__item:hover {
  border-color: rgba(167, 184, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28), 0 0 24px rgba(123, 108, 255, 0.1);
}

.faq__item h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.faq__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 62ch;
}

.faq__item a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq__item a:hover {
  color: var(--text);
}

/* ——— Motion: load + scroll ——— */
.hero-in {
  animation: hero-rise 0.95s var(--ease) both;
  animation-delay: var(--d, 0s);
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

html.js .reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease),
    filter 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}

html.js .reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ——— Breakpoints ——— */
@media (min-width: 768px) {
  .site-header__chips {
    display: flex;
  }

  .site-header__chips a {
    padding: 8px 8px;
    font-size: 0.78rem;
  }

  .site-header__cta {
    display: inline-flex;
  }

  .site-header__toggle {
    display: none;
  }

  .site-drawer {
    display: none !important;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
    padding-top: 24px;
    align-items: center;
  }

  .hero__visual {
    min-height: 440px;
  }

  .shot-cluster {
    height: 440px;
    max-width: 460px;
  }

  .look-slider__stage {
    gap: 14px;
  }

  .look-slider__slide {
    width: min(236px, 34vw);
  }

  .look-slider__track {
    gap: 22px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .look-slider__arrow {
    width: 46px;
    height: 46px;
  }

  .cta-band--with-shot {
    grid-template-columns: auto 1.2fr;
    gap: 32px;
  }

  .cta-band__shot {
    order: 0;
  }

  .device--cta {
    width: 168px;
  }

  .about {
    gap: 32px;
  }

  .about__intro {
    max-width: 640px;
  }

  .feature-rows {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
  }

  .workflow__connector {
    display: none;
  }

  .cta-band:not(.cta-band--with-shot) {
    grid-template-columns: 1.3fr auto;
    align-items: center;
  }

  .site-footer {
    padding: 48px 40px 44px;
  }

  .site-footer__inner {
    max-width: 1280px;
    gap: 22px;
  }

  .site-footer__brand {
    font-size: 1.02rem;
    gap: 10px;
  }

  .site-footer__mark {
    width: 20px;
    height: 19px;
  }

  .site-footer__links {
    gap: 8px 28px;
    font-size: 0.92rem;
  }

  .site-footer__note {
    width: 100%;
    max-width: none;
    margin-left: 0;
    text-align: left;
    font-size: 0.86rem;
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid rgba(232, 240, 255, 0.08);
    opacity: 0.78;
  }

  .faq {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .hero__brand-line--lumi {
    width: min(100%, 380px);
  }

  .site-header__chips a {
    padding: 8px 9px;
    font-size: 0.8rem;
  }

  .feature-rows {
    grid-template-columns: repeat(4, 1fr);
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .workflow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .look-slider__slide {
    width: min(250px, 22vw);
  }

  .look-slider__track {
    gap: 28px;
  }

  .site-footer {
    padding: 56px 48px 52px;
  }

  .site-footer__inner {
    flex-wrap: nowrap;
    flex-direction: column;
    max-width: 1320px;
    gap: 24px;
  }

  .site-footer__note {
    width: 100%;
    flex: none;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: max(18px, env(safe-area-inset-left), env(safe-area-inset-right));
  }

  .site-header__dock {
    padding-right: 6px;
  }

  .section {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .band {
    padding-left: 0;
    padding-right: 0;
  }

  .band > .about,
  .band > .section__head,
  .band > .steps,
  .band > .workflow,
  .band > .split {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .hero {
    display: grid;
    gap: 20px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-bottom: 20px;
  }

  .section__head {
    margin-bottom: 28px;
    text-align: left;
  }

  .section__head h2,
  .about__intro h2,
  .cta-band h2 {
    font-size: clamp(1.4rem, 6.2vw, 1.85rem);
    max-width: none;
  }

  .section__head p,
  .about__intro > p,
  .feature-row p,
  .step p,
  .card p,
  .faq__item p,
  .cta-band p {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .about__intro h2 {
    max-width: none;
  }

  .feature-row,
  .step,
  .card {
    padding: 14px 16px;
  }

  .look-slider__stage {
    gap: 4px;
  }

  .look-slider__arrow {
    display: none !important;
  }

  .look-slider__stage {
    grid-template-columns: minmax(0, 1fr);
  }


  .look-slider__slide {
    width: min(196px, 58vw);
  }

  .look-slider__caption {
    font-size: 0.78rem;
  }

  .look-slider__dots {
    margin-top: 12px;
    gap: 6px;
  }

  .site-footer {
    padding: 14px var(--gutter) 18px;
  }

  .site-footer__inner {
    gap: 8px;
  }

  .cta-band {
    margin-left: var(--gutter);
    margin-right: var(--gutter);
  }

  .hero__brand-line--lumi {
    width: min(100%, 260px);
  }

  

  .hero__slogan {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  .faq__item {
    padding: 14px 16px;
  }

  .hero__visual {
    min-height: 300px;
    order: 2;
  }

  .shot-cluster {
    height: 300px;
    max-width: 300px;
  }

  .shot-cluster .device {
    width: min(42%, 118px);
  }

  .device--mid {
    width: min(48%, 136px);
    margin-left: calc(min(48%, 136px) * -0.5);
  }

  .device--front {
    width: min(44%, 124px);
  }

  .device--back {
    width: min(40%, 110px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-drawer,
  .site-drawer.is-open {
    transition: none !important;
    filter: none !important;
    transform: none !important;
  }
  .site-drawer.is-open .site-drawer__nav a,
  .site-drawer.is-open .site-drawer__cta {
    animation: none !important;
  }

  html { scroll-behavior: auto; }

  .atmosphere__glow,
  .shot-cluster__glow,
  .device--back,
  .device--mid,
  .device--front,
  .hero__glow {
    animation: none;
  }

  .look-slider__track,
  html.js .look-slider__track,
  .look-slider__frame,
  .look-slider__arrow,
  .look-slider__dot,
  .look-slider__slide {
    transition: none !important;
  }

  .look-slider__slide.is-active .look-slider__frame,
  .look-slider__arrow:hover {
    transform: none !important;
  }

  .lightbox.is-open .lightbox__dialog,
  .lightbox.is-open .lightbox__backdrop {
    animation: none !important;
  }

  .hero-in,
  html.js .reveal {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .btn:hover,
  .card:hover,
  .step:hover,
  .workflow__step:hover,
  .feature-row:hover,
  .faq__item:hover {
    transform: none;
  }
}
