:root {
  color-scheme: dark;
  --bg: #06060d;
  --bg-soft: #0b0b17;
  --surface: rgba(17, 17, 31, 0.86);
  --surface-strong: #121222;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(135, 101, 255, 0.34);
  --text: #f7f6ff;
  --muted: #aaa9bd;
  --accent: #7957ff;
  --accent-light: #a38bff;
  --accent-blue: #315dff;
  --accent-pink: #db42ff;
  --accent-orange: #ff6b31;
  --max: 1240px;
  --radius: 24px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 8%, rgba(70, 48, 203, 0.18), transparent 30rem),
    radial-gradient(circle at 88% 22%, rgba(206, 48, 255, 0.11), transparent 31rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #000;
}
.skip-link:focus { transform: translateY(0); }

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(6, 6, 13, 0.84);
  backdrop-filter: blur(20px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 0 26px rgba(91, 76, 255, .28);
}

.brand span {
  font-size: 24px;
  font-weight: 760;
  letter-spacing: -.04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 640;
  text-decoration: none;
  transition: color .2s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--text); }

.main-nav .nav-cta {
  padding: 9px 16px;
  border: 1px solid rgba(151, 125, 255, .45);
  border-radius: 999px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(120, 83, 255, .32), rgba(49, 93, 255, .14));
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 166px;
  padding-bottom: 84px;
  display: grid;
  align-content: center;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(34px, 5vw, 78px);
}

.hero::before, .hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 720px;
  height: 280px;
  border: 1px solid rgba(111, 72, 255, .26);
  border-radius: 50%;
  filter: drop-shadow(0 0 22px rgba(93, 69, 255, .18));
  transform: rotate(-16deg);
}
.hero::before { top: 130px; right: -280px; }
.hero::after { right: -180px; bottom: 60px; border-color: rgba(255, 73, 183, .16); transform: rotate(9deg); }

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
  box-shadow: 0 0 12px var(--accent);
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin-top: 0; }

h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-size: clamp(52px, 6.4vw, 96px);
  line-height: .98;
  letter-spacing: -.062em;
}

h1 em, h2 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(100deg, #f4f0ff 0%, #8d72ff 35%, #4f6eff 62%, #ef5fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.play-button {
  display: inline-flex;
  align-items: center;
  border-radius: 13px;
  box-shadow: 0 15px 38px rgba(0,0,0,.3);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.play-button:hover, .play-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0,0,0,.4), 0 0 32px rgba(96, 71, 255, .18);
}
.play-button img { display: block; width: 210px; height: auto; }

.text-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.text-link span { margin-left: 6px; color: var(--accent-light); }

.hero-tags {
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  list-style: none;
}
.hero-tags li, .feature-pills span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #c8c6d5;
  font-size: 11px;
  font-weight: 700;
}

.hero-art {
  position: relative;
  align-self: center;
  perspective: 1200px;
}
.hero-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 500;
  object-fit: contain;
  border: 1px solid rgba(154, 121, 255, .28);
  border-radius: 26px;
  box-shadow: var(--shadow), 0 0 70px rgba(48, 79, 255, .15);
  transform: rotateY(-4deg) rotateX(1deg);
}
.hero-glow {
  position: absolute;
  inset: 10% -4% -8% 12%;
  border-radius: 45%;
  background: linear-gradient(115deg, rgba(69, 66, 255, .38), rgba(220, 59, 255, .24), rgba(255, 94, 42, .18));
  filter: blur(58px);
}

.section-block { padding-top: 130px; padding-bottom: 130px; }
.section-heading { max-width: 860px; margin-bottom: 60px; }
.section-heading.compact { max-width: 720px; margin-bottom: 44px; }
h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.section-heading > p:last-child, .spotlight-copy > p, .cinema-copy > p, .devices-copy > p, .cta-card p {
  max-width: 710px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

#anders { padding-top: 104px; }
#anders .section-heading { margin-bottom: 46px; }

.smart-feature-grid {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.smart-feature-card {
  position: relative;
  isolation: isolate;
  grid-column: span 4;
  min-height: 232px;
  padding: 23px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 94% 8%, rgba(121, 87, 255, .15), transparent 11rem),
    linear-gradient(150deg, rgba(24, 23, 43, .92), rgba(9, 9, 18, .9));
  box-shadow: inset 0 1px rgba(255,255,255,.035);
  color: var(--text);
  text-decoration: none;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.smart-feature-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  right: -108px;
  bottom: -112px;
  border: 1px solid rgba(143, 112, 255, .26);
  border-radius: 50%;
  box-shadow: 0 0 48px rgba(91, 65, 255, .1);
  transition: transform .28s ease, border-color .28s ease;
}
.smart-feature-card:hover,
.smart-feature-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(163, 139, 255, .62);
  background:
    radial-gradient(circle at 94% 8%, rgba(121, 87, 255, .23), transparent 12rem),
    linear-gradient(150deg, rgba(29, 27, 51, .97), rgba(10, 10, 21, .94));
  box-shadow: 0 22px 55px rgba(0,0,0,.32), inset 0 1px rgba(255,255,255,.05);
}
.smart-feature-card:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 3px; }
.smart-feature-card:hover::before,
.smart-feature-card:focus-visible::before { transform: scale(1.12); border-color: rgba(163, 139, 255, .48); }
.smart-feature-card-autoswitch {
  grid-column: span 7;
  min-height: 292px;
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 107, 49, .18), transparent 18rem),
    radial-gradient(circle at 12% 90%, rgba(121, 87, 255, .22), transparent 20rem),
    linear-gradient(130deg, rgba(28, 25, 51, .98), rgba(9, 9, 19, .95));
  border-color: rgba(255, 125, 74, .26);
}
.smart-feature-card-autoswitch:hover,
.smart-feature-card-autoswitch:focus-visible {
  border-color: rgba(255, 130, 82, .68);
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 107, 49, .25), transparent 19rem),
    radial-gradient(circle at 12% 90%, rgba(121, 87, 255, .28), transparent 21rem),
    linear-gradient(130deg, rgba(32, 28, 58, .99), rgba(10, 10, 21, .97));
}
.smart-feature-card-learning {
  grid-column: span 5;
  min-height: 292px;
  background:
    radial-gradient(circle at 78% 25%, rgba(219, 66, 255, .18), transparent 15rem),
    linear-gradient(145deg, rgba(26, 24, 49, .96), rgba(9, 9, 19, .92));
}
.smart-feature-card-half { grid-column: span 6; min-height: 242px; }
.smart-feature-card-minigame {
  background:
    radial-gradient(circle at 88% 12%, rgba(49, 93, 255, .18), transparent 14rem),
    linear-gradient(145deg, rgba(22, 24, 47, .95), rgba(9, 9, 19, .92));
}
.smart-feature-topline {
  min-height: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.smart-feature-label,
.smart-feature-badge {
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
}
.smart-feature-badge {
  padding: 5px 9px;
  border: 1px solid rgba(255, 122, 70, .4);
  border-radius: 999px;
  background: rgba(255, 107, 49, .1);
  color: #ff9b73;
}
.smart-feature-arrow {
  color: #69687b;
  font-size: 16px;
  line-height: 1;
  transition: color .2s ease, transform .2s ease;
}
.smart-feature-card:hover .smart-feature-arrow,
.smart-feature-card:focus-visible .smart-feature-arrow { color: var(--accent-light); transform: translate(2px, -2px); }
.smart-feature-icon {
  width: 48px;
  height: 48px;
  margin: 14px 0 17px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(163, 139, 255, .34);
  border-radius: 15px;
  background: rgba(121, 87, 255, .09);
  color: var(--accent-light);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 28px rgba(121, 87, 255, .1);
}
.smart-feature-card-autoswitch .smart-feature-icon {
  border-color: rgba(255, 130, 82, .42);
  background: rgba(255, 107, 49, .1);
  color: #ff9b73;
  box-shadow: 0 0 30px rgba(255, 107, 49, .12);
}
.smart-feature-icon-record { color: #ff775f; font-size: 18px; }
.smart-feature-copy { display: grid; gap: 8px; }
.smart-feature-copy strong {
  max-width: 650px;
  font-size: 21px;
  line-height: 1.14;
  letter-spacing: -.025em;
}
.smart-feature-card-autoswitch .smart-feature-copy strong { font-size: clamp(27px, 3vw, 38px); }
.smart-feature-copy > span {
  max-width: 680px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.smart-feature-link {
  margin-top: auto;
  padding-top: 18px;
  color: #d9d5ee;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: .04em;
}
.smart-feature-link span { margin-left: 4px; color: var(--accent-light); }
.feature-toast {
  position: fixed;
  z-index: 140;
  right: 22px;
  bottom: 22px;
  max-width: min(390px, calc(100% - 32px));
  padding: 14px 17px;
  border: 1px solid rgba(163, 139, 255, .4);
  border-radius: 15px;
  background: rgba(17, 16, 31, .96);
  box-shadow: 0 20px 58px rgba(0,0,0,.5);
  color: #dedbea;
  font-size: 12px;
}
.feature-toast[hidden] { display: none; }

/* Screenshot-Karussell */
.showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 24%, rgba(73, 77, 255, .22), transparent 33rem),
    radial-gradient(circle at 92% 82%, rgba(219, 66, 255, .11), transparent 24rem),
    linear-gradient(145deg, rgba(15, 16, 34, .98), rgba(7, 7, 15, .98));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.035);
}
.showcase::before {
  content: "";
  position: absolute;
  width: 660px;
  height: 180px;
  top: 130px;
  left: 50%;
  border: 1px solid rgba(122, 92, 255, .21);
  border-radius: 50%;
  filter: drop-shadow(0 0 30px rgba(83, 69, 255, .2));
  transform: translateX(-50%) rotate(-4deg);
  pointer-events: none;
}
.showcase-head {
  position: relative;
  z-index: 8;
  min-height: 84px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 18, .7);
  backdrop-filter: blur(16px);
}
.showcase-head > div:first-child { display: grid; gap: 2px; }
.showcase-head strong { font-size: 17px; }
.showcase-label,
.showcase-kicker {
  color: var(--accent-light);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .13em;
}
.showcase-switch {
  padding: 5px;
  display: flex;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
}
.showcase-switch button {
  min-height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.showcase-switch button[aria-pressed="true"] {
  background: linear-gradient(135deg, #8e75ff, #566dff);
  color: #fff;
  box-shadow: 0 8px 24px rgba(86, 85, 255, .28);
}
.showcase-device-icon { position: relative; display: inline-block; width: 18px; height: 15px; flex: 0 0 auto; }
.showcase-device-tv { border: 1.7px solid currentColor; border-radius: 3px; }
.showcase-device-tv::after { content: ""; position: absolute; width: 9px; left: 3px; bottom: -5px; border-bottom: 1.7px solid currentColor; }
.showcase-device-phone { width: 10px; margin-inline: 4px; border: 1.7px solid currentColor; border-radius: 3px; }
.showcase-device-phone::after { content: ""; position: absolute; width: 2px; height: 2px; left: 2.5px; bottom: 1px; border-radius: 50%; background: currentColor; }

.showcase-carousel { position: relative; z-index: 2; }
.showcase-stage {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
  outline-offset: -4px;
}
.showcase-stage.is-dragging { cursor: grabbing; }
.showcase-stage.is-portrait { min-height: 520px; }
.showcase.is-landscape-preview .showcase-stage.is-portrait { min-height: 440px; }
.showcase-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(66%, 760px);
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 21px;
  background: #0a0c15;
  box-shadow: 0 32px 78px rgba(0,0,0,.58);
  cursor: pointer;
  transition: width .34s ease, aspect-ratio .34s ease, border-radius .34s ease, transform .42s cubic-bezier(.2,.8,.2,1), opacity .3s ease, filter .3s ease, border-color .2s ease;
  will-change: transform;
}
.showcase-slide:hover,
.showcase-slide:focus-visible { border-color: rgba(163, 139, 255, .8); }
.showcase-stage.is-portrait .showcase-slide {
  width: min(25%, 250px);
  aspect-ratio: 1 / 2;
  border-radius: 28px;
}
.showcase.is-landscape-preview .showcase-stage.is-portrait .showcase-slide[data-position="0"] {
  width: min(74%, 820px);
  aspect-ratio: var(--showcase-landscape-ratio, 2 / 1);
  border-radius: 21px;
}
.showcase-slide[data-position="0"] {
  z-index: 5;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: none;
}
.showcase-slide[data-position="-1"] {
  z-index: 3;
  opacity: .52;
  transform: translate(-112%, -50%) scale(.72) rotateY(4deg);
  filter: saturate(.58) brightness(.7);
}
.showcase-slide[data-position="1"] {
  z-index: 3;
  opacity: .52;
  transform: translate(12%, -50%) scale(.72) rotateY(-4deg);
  filter: saturate(.58) brightness(.7);
}
.showcase-slide[data-hidden="true"] {
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.5);
  pointer-events: none;
}
.showcase-slide img { width: 100%; height: 100%; object-fit: contain; background: #05070c; pointer-events: none; }
.showcase.is-landscape-preview .showcase-slide[data-position="0"] img.is-fallback-landscape {
  position: absolute;
  top: -50%;
  left: 25%;
  width: 50%;
  max-width: none;
  height: 200%;
  transform: rotate(90deg);
}
.showcase.is-orientation-turning .showcase-slide[data-position="0"] {
  z-index: 11;
  pointer-events: none;
  animation: showcase-orientation-turn .52s cubic-bezier(.45,.02,.2,1) both;
}
.showcase.is-orientation-settling .showcase-slide[data-position="0"] {
  animation: showcase-orientation-settle .28s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes showcase-orientation-turn {
  0% { opacity: 1; transform: translate(-50%, -50%) rotate(0deg) scale(1); filter: none; }
  68% { opacity: 1; transform: translate(-50%, -50%) rotate(68deg) scale(.97); filter: none; }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(88deg) scale(.93); filter: blur(3px); }
}
@keyframes showcase-orientation-settle {
  from { opacity: 0; transform: translate(-50%, -50%) scale(.94); filter: blur(3px); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); filter: none; }
}
.showcase-placeholder {
  position: absolute;
  inset: 0;
  padding: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 42%, rgba(121, 87, 255, .28), transparent 35%),
    linear-gradient(145deg, #12152b, #080912 68%);
  color: var(--text);
  text-align: center;
}
.showcase-placeholder-mark {
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(163, 139, 255, .55);
  border-radius: 21px;
  background: rgba(121, 87, 255, .12);
  color: var(--accent-light);
  font-size: 24px;
  font-weight: 850;
  box-shadow: 0 0 35px rgba(121, 87, 255, .2);
}
.showcase-placeholder strong { font-size: clamp(17px, 2.4vw, 30px); line-height: 1.2; }
.showcase-placeholder span:last-child { margin-top: 8px; color: var(--muted); font-size: 12px; }
.showcase-arrow {
  position: absolute;
  z-index: 9;
  top: 50%;
  width: 52px;
  height: 52px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(20, 20, 36, .94);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(0,0,0,.4);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.showcase-arrow:hover,
.showcase-arrow:focus-visible { color: var(--accent-light); border-color: rgba(163, 139, 255, .72); background: #19182c; }
.showcase-arrow:active { transform: translateY(-50%) scale(.94); }
.showcase-arrow-prev { left: 22px; }
.showcase-arrow-next { right: 22px; }
.showcase-arrow span { width: 13px; height: 13px; border: solid currentColor; border-width: 0 2px 2px 0; }
.showcase-arrow-prev span { transform: translateX(2px) rotate(135deg); }
.showcase-arrow-next span { transform: translateX(-2px) rotate(-45deg); }

.showcase-rotate {
  position: absolute;
  z-index: 12;
  top: calc(50% - min(25%, 250px) + 14px);
  right: calc(50% - min(12.5%, 125px) + 14px);
  min-height: 39px;
  padding: 0 13px 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(16, 17, 29, .93);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.46), 0 0 24px rgba(121,87,255,.2);
  font-size: 10px;
  font-weight: 780;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease, transform .2s ease;
}
.showcase-rotate[hidden],
.showcase-format-message[hidden] { display: none; }
.showcase-rotate:hover,
.showcase-rotate:focus-visible { color: var(--accent-light); border-color: rgba(163,139,255,.75); background: #1b1a30; }
.showcase-rotate:active { transform: scale(.95); }
.showcase-rotate:disabled { opacity: .45; cursor: wait; }
.showcase.is-landscape-preview .showcase-rotate {
  top: calc(50% - min(18.5%, 205px) + 14px);
  right: calc(50% - min(37%, 410px) + 14px);
}
.showcase-rotate-icon {
  position: relative;
  width: 18px;
  height: 14px;
  flex: 0 0 auto;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}
.showcase-rotate-icon::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: -5px;
  left: -3px;
  border: 1.5px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
}
.showcase-rotate-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: rotate(-24deg);
}

.showcase-meta {
  position: relative;
  z-index: 7;
  min-height: 0;
  margin: 8px 22px 0;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(11, 11, 23, .76);
  backdrop-filter: blur(16px);
}
.showcase-copy h3 { margin: 4px 0 6px; font-size: clamp(22px, 2.5vw, 31px); line-height: 1.08; letter-spacing: -.04em; }
.showcase-copy p { max-width: 610px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.showcase-format-message {
  margin-top: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(163,139,255,.24);
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(121,87,255,.11), rgba(49,93,255,.04));
}
.showcase-format-message > span:last-child { display: grid; line-height: 1.35; }
.showcase-format-message strong { font-size: 11px; }
.showcase-format-message small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.showcase-format-icon {
  position: relative;
  width: 31px;
  height: 23px;
  flex: 0 0 auto;
  border: 1px solid rgba(163,139,255,.65);
  border-radius: 6px;
}
.showcase-format-icon::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 24px;
  top: -2px;
  left: 6px;
  border: 1px solid var(--accent-light);
  border-radius: 5px;
  transform: rotate(90deg);
  box-shadow: 0 0 13px rgba(121,87,255,.32);
}
.showcase-points { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; list-style: none; }
.showcase-points li {
  position: relative;
  min-height: 48px;
  padding: 10px 8px 9px 27px;
  display: flex;
  align-items: center;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: #d5d3e4;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
}
.showcase-points li::before {
  content: "";
  position: absolute;
  left: 8px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--accent-light);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(138, 110, 255, .52);
}
.showcase-footer {
  min-height: 60px;
  padding: 10px 24px;
  display: grid;
  grid-template-columns: 90px 1fr 280px;
  align-items: center;
  gap: 16px;
}
.showcase-count { color: var(--muted); font-size: 12px; font-weight: 750; font-variant-numeric: tabular-nums; letter-spacing: .08em; }
.showcase-dots { display: flex; align-items: center; justify-content: center; gap: 8px; }
.showcase-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #4e4d61;
  cursor: pointer;
  transition: width .22s ease, background .22s ease;
}
.showcase-dot[aria-current="true"] { width: 28px; background: linear-gradient(90deg, var(--accent-light), #526cff); }
.showcase-hint { justify-self: end; display: flex; align-items: center; gap: 9px; color: #77768b; font-size: 10px; }
.showcase-hint i { position: relative; width: 25px; height: 12px; border-inline: 1px solid currentColor; }
.showcase-hint i::before { content: ""; position: absolute; top: 5px; left: 2px; right: 2px; border-top: 1px solid currentColor; }
.showcase-note { margin: -7px 24px 18px; color: #6f6e82; font-size: 9px; text-align: center; }

@media (max-width: 900px) {
  .showcase-stage { min-height: 390px; }
  .showcase-stage.is-portrait { min-height: 500px; }
  .showcase.is-landscape-preview .showcase-stage.is-portrait { min-height: 360px; }
  .showcase-slide { width: 76%; }
  .showcase-stage.is-portrait .showcase-slide { width: min(38%, 240px); }
  .showcase.is-landscape-preview .showcase-stage.is-portrait .showcase-slide[data-position="0"] { width: min(80%, 720px); }
  .showcase-rotate {
    top: calc(50% - min(38%, 240px) + 12px);
    right: calc(50% - min(19%, 120px) + 12px);
  }
  .showcase.is-landscape-preview .showcase-rotate {
    top: calc(50% - min(20%, 180px) + 12px);
    right: calc(50% - min(40%, 360px) + 12px);
  }
  .showcase-meta { padding: 14px 16px; grid-template-columns: 1fr; gap: 14px; }
  .showcase-points { grid-template-columns: repeat(3, 1fr); }
  .showcase-points li { min-height: 48px; padding: 9px 8px 8px 26px; }
  .showcase-points li::before { left: 8px; }
  .showcase-footer { min-height: 56px; grid-template-columns: 60px 1fr; }
  .showcase-hint { display: none; }
}

@media (max-width: 620px) {
  .showcase { border-radius: 24px; }
  .showcase-head { padding: 14px; align-items: stretch; flex-direction: column; gap: 14px; }
  .showcase-switch { width: 100%; }
  .showcase-switch button { flex: 1; min-width: 0; padding-inline: 10px; font-size: 11px; }
  .showcase-stage { min-height: 250px; }
  .showcase-stage.is-portrait { min-height: 430px; }
  .showcase.is-landscape-preview .showcase-stage.is-portrait { min-height: 240px; }
  .showcase-slide { width: 86%; border-radius: 14px; }
  .showcase-stage.is-portrait .showcase-slide { width: min(53%, 210px); border-radius: 22px; }
  .showcase.is-landscape-preview .showcase-stage.is-portrait .showcase-slide[data-position="0"] { width: min(88%, 520px); border-radius: 14px; }
  .showcase-slide[data-position="-1"] { transform: translate(-124%, -50%) scale(.62); }
  .showcase-slide[data-position="1"] { transform: translate(24%, -50%) scale(.62); }
  .showcase-arrow { width: 43px; height: 43px; }
  .showcase-arrow-prev { left: 7px; }
  .showcase-arrow-next { right: 7px; }
  .showcase-rotate {
    top: calc(50% - min(53%, 210px) + 9px);
    right: calc(50% - min(26.5%, 105px) + 9px);
    min-height: 35px;
    padding-inline: 9px 10px;
    font-size: 9px;
  }
  .showcase.is-landscape-preview .showcase-rotate {
    top: calc(50% - min(22%, 130px) + 9px);
    right: calc(50% - min(44%, 260px) + 9px);
  }
  .showcase-meta { min-height: 0; margin: 6px 12px 0; padding: 16px 14px; gap: 12px; }
  .showcase-copy h3 { font-size: 24px; }
  .showcase-copy p { font-size: 12px; }
  .showcase-format-message { margin-top: 8px; padding: 8px; }
  .showcase-points { grid-template-columns: 1fr; }
  .showcase-points li { min-height: 36px; padding: 8px 6px 8px 24px; }
  .showcase-footer { min-height: 56px; padding-inline: 16px; grid-template-columns: 50px 1fr; }
  .showcase-note { margin-inline: 16px; }
  .showcase-placeholder-mark { width: 52px; height: 52px; margin-bottom: 14px; border-radius: 16px; font-size: 18px; }
  .showcase-placeholder span:last-child { font-size: 9px; }
}

/* Interaktives Design-Labor */
.theme-lab-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 42%, rgba(91, 69, 255, .13), transparent 34rem),
    linear-gradient(180deg, rgba(9, 9, 19, .96), rgba(6, 6, 13, .98));
}
.theme-lab-section::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 280px;
  right: -330px;
  bottom: 120px;
  border: 1px solid rgba(121, 87, 255, .2);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}
.theme-lab-heading { max-width: 980px; }
.theme-lab-intro { max-width: 760px; margin: 0; color: var(--muted); font-size: 18px; }
.theme-appwide {
  margin-top: 28px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(163,139,255,.28);
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(121,87,255,.13), rgba(49,93,255,.045)),
    rgba(255,255,255,.025);
  box-shadow: inset 0 1px rgba(255,255,255,.04);
}
.theme-appwide-message { display: flex; align-items: center; gap: 13px; }
.theme-appwide-message > div { display: grid; line-height: 1.35; }
.theme-appwide-message strong { font-size: 13px; }
.theme-appwide-message div span { margin-top: 2px; color: var(--muted); font-size: 10px; }
.theme-appwide-icon {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(163,139,255,.5);
  border-radius: 11px;
  background: rgba(121,87,255,.14);
  box-shadow: 0 0 22px rgba(121,87,255,.16);
}
.theme-appwide-icon i {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid var(--accent-light);
  border-radius: 2px;
}
.theme-appwide-icon i:first-child { transform: translate(-8px, 5px); }
.theme-appwide-icon i:nth-child(2) { transform: translate(8px, 5px); }
.theme-appwide-icon i:last-child { transform: translateY(-8px); }
.theme-appwide-icon::before,
.theme-appwide-icon::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 10px;
  top: 16px;
  border-top: 1px solid rgba(163,139,255,.65);
}
.theme-appwide-icon::before { left: 5px; transform: rotate(-33deg); }
.theme-appwide-icon::after { right: 5px; transform: rotate(33deg); }
.theme-appwide ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
}
.theme-appwide li {
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #c8c6d5;
  font-size: 9px;
  font-weight: 720;
  white-space: nowrap;
}
.theme-lab {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.theme-controls {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(18, 18, 34, .78);
  box-shadow: inset 0 1px rgba(255,255,255,.035), 0 18px 52px rgba(0,0,0,.24);
}
.theme-control-group + .theme-control-group {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.theme-control-heading {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.theme-control-heading > div { display: grid; line-height: 1.3; }
.theme-control-heading strong { font-size: 13px; }
.theme-control-heading div span { color: var(--muted); font-size: 10px; }
.theme-step {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(163, 139, 255, .38);
  border-radius: 9px;
  background: rgba(121, 87, 255, .1);
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
}
.theme-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.theme-option {
  min-width: 0;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  background: rgba(255,255,255,.025);
  color: #bbb9ca;
  font-size: 10px;
  font-weight: 680;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}
.theme-option:hover { transform: translateY(-1px); border-color: rgba(163,139,255,.42); color: var(--text); }
.theme-option:focus-visible, .accent-option:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 2px; }
.theme-option[aria-pressed="true"] {
  border-color: rgba(163,139,255,.72);
  background: rgba(121,87,255,.15);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(121,87,255,.14);
}
.theme-swatch {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  background: var(--swatch-bg);
}
.theme-swatch::after {
  content: "";
  position: absolute;
  inset: 5px 2px 2px;
  border-radius: 3px;
  background: var(--swatch-panel);
}
.accent-options { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.accent-option {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: var(--swatch-accent);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.accent-option:hover { transform: scale(1.1); }
.accent-option[aria-pressed="true"] {
  box-shadow: 0 0 0 3px #10101e, 0 0 0 5px var(--swatch-accent), 0 0 22px color-mix(in srgb, var(--swatch-accent) 48%, transparent);
}
.accent-option[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  inset: 32%;
  border: solid var(--swatch-on-accent);
  border-width: 0 2px 2px 0;
  transform: translateY(-12%) rotate(45deg);
}
.theme-preview-column { min-width: 0; }
.theme-preview-meta {
  min-height: 54px;
  padding: 0 3px 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}
.theme-preview-meta > div { display: grid; line-height: 1.25; }
.theme-preview-kicker { color: var(--accent-light); font-size: 9px; font-weight: 850; letter-spacing: .14em; }
.theme-preview-meta strong { margin-top: 3px; font-size: 14px; }
.theme-preview-hint { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 10px; }
.theme-preview-hint i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64df94;
  box-shadow: 0 0 12px rgba(100,223,148,.74);
}
.theme-preview-frame {
  padding: 8px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018));
  box-shadow: 0 28px 80px rgba(0,0,0,.42), 0 0 48px rgba(84,66,255,.1);
}
.theme-preview-viewport {
  --preview-scale: 1;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 15px;
  background: #101923;
}
.theme-preview-stage {
  --demo-bg: #101923;
  --demo-panel: #172432;
  --demo-panel-alt: #213241;
  --demo-text: #eef3f8;
  --demo-muted: #c1cdd8;
  --demo-line: rgba(127,154,175,.34);
  --demo-accent: #e76f51;
  --demo-accent-glow: #ffa289;
  --demo-on-accent: #111111;
  position: absolute;
  top: 0;
  left: 0;
  width: 960px;
  height: 540px;
  overflow: hidden;
  transform: scale(var(--preview-scale));
  transform-origin: top left;
  background: var(--demo-bg);
  color: var(--demo-text);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.demo-topbar,
.demo-notification,
.demo-statusbar {
  border: 1px solid var(--demo-line);
  background: var(--demo-panel);
  box-shadow: 0 5px 14px rgba(0,0,0,.16);
}
.demo-topbar {
  position: absolute;
  top: 12px;
  right: 16px;
  left: 16px;
  height: 55px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
}
.demo-topbar-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 2px solid var(--demo-accent);
  border-radius: 8px;
  color: var(--demo-accent);
  font-size: 15px;
  font-weight: 900;
}
.demo-nav { display: flex; align-items: center; gap: 7px; }
.demo-nav > span {
  height: 39px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--demo-line);
  border-radius: 999px;
  color: var(--demo-text);
  font-size: 13px;
  font-weight: 700;
}
.demo-nav-icon { position: relative; width: 17px; height: 17px; display: inline-block; color: var(--demo-text); }
.demo-nav-record { border: 1.6px solid currentColor; border-radius: 3px; }
.demo-nav-record::before { content: ""; position: absolute; inset: 4px; border: 1.5px solid currentColor; border-radius: 50%; }
.demo-nav-record::after { content: ""; position: absolute; right: -2px; bottom: -4px; width: 8px; border-bottom: 2px solid currentColor; }
.demo-nav-screen { border: 1.6px solid currentColor; border-radius: 2px; }
.demo-nav-screen::after { content: ""; position: absolute; left: 4px; right: 4px; bottom: -4px; border-bottom: 1.6px solid currentColor; }
.demo-nav-sync { border: 1.6px solid currentColor; border-left-color: transparent; border-radius: 50%; }
.demo-nav-sync::after { content: ""; position: absolute; right: -2px; top: 0; border: 3px solid transparent; border-left-color: currentColor; transform: rotate(-28deg); }
.demo-nav-search { border: 1.7px solid currentColor; border-radius: 50%; }
.demo-nav-search::after { content: ""; position: absolute; width: 7px; right: -5px; bottom: -3px; border-bottom: 1.7px solid currentColor; transform: rotate(48deg); }
.demo-nav .demo-user { padding-left: 5px; }
.demo-user b {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--demo-accent);
  color: var(--demo-on-accent);
  font-size: 12px;
}
.demo-notification {
  position: absolute;
  top: 80px;
  right: 20px;
  left: 20px;
  height: 73px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 19px;
  border-radius: 16px;
}
.demo-notification time { font-size: 29px; font-weight: 720; letter-spacing: -.04em; }
.demo-divider { width: 1px; height: 35px; background: var(--demo-line); }
.demo-notification > div { display: grid; flex: 1; line-height: 1.25; }
.demo-notification strong { font-size: 17px; }
.demo-notification div span { margin-top: 3px; color: var(--demo-muted); font-size: 12px; }
.demo-message-count { padding: 7px 13px; border: 1px solid var(--demo-line); border-radius: 999px; font-size: 11px; font-weight: 700; }
.demo-chevron { width: 12px; height: 12px; margin: 0 4px; border: solid var(--demo-muted); border-width: 0 3px 3px 0; transform: translateY(-3px) rotate(45deg); }
.demo-card-grid {
  position: absolute;
  top: 166px;
  right: 15px;
  left: 15px;
  height: 245px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.demo-card {
  padding: 24px 16px 18px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--demo-line);
  border-radius: 18px;
  background: var(--demo-panel);
  box-shadow: 0 5px 13px rgba(0,0,0,.15);
}
.demo-card.is-selected { border: 2px solid var(--demo-accent); background: var(--demo-panel-alt); }
.demo-card svg { width: 93px; height: 78px; margin-bottom: 9px; overflow: visible; }
.demo-card svg rect, .demo-card svg path { fill: none; stroke: var(--demo-accent); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; }
.demo-card svg path { stroke-width: 4.5; }
.demo-card strong { font-size: 24px; line-height: 1.15; }
.demo-card span { margin-top: 8px; color: var(--demo-muted); font-size: 12px; }
.demo-cinema-link {
  position: absolute;
  top: 424px;
  left: 50%;
  height: 45px;
  padding: 0 23px;
  display: flex;
  align-items: center;
  gap: 11px;
  transform: translateX(-50%);
  border: 1px solid var(--demo-line);
  border-radius: 999px;
  background: var(--demo-panel);
  font-size: 14px;
  font-weight: 720;
  white-space: nowrap;
}
.demo-cinema-icon {
  width: 28px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 3px solid var(--demo-accent);
  border-radius: 5px;
  color: var(--demo-accent);
  font-size: 9px;
}
.demo-statusbar {
  position: absolute;
  right: 16px;
  bottom: 12px;
  left: 16px;
  height: 34px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  color: var(--demo-muted);
  font-size: 10px;
}
.theme-preview-note { margin: 13px 5px 0; color: #858397; font-size: 10px; line-height: 1.5; }

.spotlight {
  padding: 120px 0;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 45%, rgba(70, 80, 255, .16), transparent 28rem),
    #090912;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}
.product-visual {
  margin: 0;
}
.spotlight-media img, .cinema-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1052 / 592;
  object-fit: contain;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 55px rgba(72, 61, 255, .14);
}
.product-visual figcaption {
  margin-top: 16px;
  padding: 16px 18px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.035);
}
.product-visual figcaption strong { font-size: 14px; }
.product-visual figcaption span { color: var(--muted); font-size: 13px; line-height: 1.5; }
.spotlight-copy h2 { font-size: clamp(38px, 4.2vw, 62px); }
.check-list { margin: 35px 0 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  padding: 15px 0 15px 31px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.check-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 3px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent-light);
  border-radius: 50%;
  box-shadow: 0 0 13px rgba(138, 110, 255, .55);
}
.check-list strong { color: var(--text); }

.cinema-block {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}
.cinema-points { margin-top: 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.cinema-points div { min-height: 130px; padding: 20px; display: flex; flex-direction: column; background: var(--bg); }
.cinema-points strong { margin-bottom: 7px; font-size: 14px; }
.cinema-points span { color: var(--muted); font-size: 13px; }

.devices-section {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  border-block: 1px solid var(--line);
  background: linear-gradient(120deg, #10102a, #0a0914 54%, #180b24);
}
.devices-section::before, .devices-section::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 210px;
  border: 2px solid rgba(102, 82, 255, .42);
  border-radius: 50%;
  filter: drop-shadow(0 0 22px rgba(89, 70, 255, .2));
  transform: rotate(20deg);
}
.devices-section::before { top: -80px; left: -290px; }
.devices-section::after { right: -260px; bottom: -110px; border-color: rgba(225, 65, 255, .28); transform: rotate(-14deg); }
.devices-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.device-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.device-stats div {
  min-height: 150px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(10,10,20,.46);
  backdrop-filter: blur(10px);
}
.device-stats strong { color: var(--accent-light); font-size: 27px; letter-spacing: -.04em; }
.device-stats span { color: var(--muted); font-size: 12px; }

.gallery-landscape { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-mobile { margin-top: 16px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.gallery-landscape button { aspect-ratio: 1052 / 592; }
.gallery-mobile button { aspect-ratio: 592 / 1052; }
[data-gallery] button {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--surface);
  cursor: zoom-in;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
[data-gallery] button:hover, [data-gallery] button:focus-visible {
  z-index: 2;
  transform: translateY(-4px);
  border-color: rgba(144, 114, 255, .72);
  box-shadow: 0 20px 48px rgba(0,0,0,.42), 0 0 32px rgba(91, 66, 255, .12);
}
[data-gallery] img { display: block; width: 100%; height: auto; object-fit: contain; }

.cta-section { padding: 40px 0 125px; }
.cta-card {
  min-height: 420px;
  padding: clamp(34px, 5vw, 68px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 50%, rgba(48, 75, 255, .28), transparent 22rem),
    radial-gradient(circle at 94% 40%, rgba(213, 55, 255, .2), transparent 20rem),
    linear-gradient(125deg, #10102b, #0a0914 58%, #190b20);
  box-shadow: var(--shadow);
}
.cta-card > img { border-radius: 27px; box-shadow: 0 18px 48px rgba(0,0,0,.45), 0 0 40px rgba(75, 74, 255, .18); }
.cta-card h2 { max-width: 720px; font-size: clamp(36px, 4.5vw, 64px); }
.play-button-large img { width: 220px; }

.legal-note {
  margin-bottom: 95px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}
.legal-note strong { font-size: 13px; }
.legal-note p { margin: 0; color: var(--muted); font-size: 13px; }

.site-footer { border-top: 1px solid var(--line); background: #05050b; }
.footer-grid { padding-top: 70px; padding-bottom: 58px; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 50px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid strong { margin-bottom: 8px; font-size: 13px; }
.footer-grid a:not(.brand), .footer-grid p { margin: 0; color: var(--muted); font-size: 13px; text-decoration: none; }
.footer-grid a:not(.brand):hover, .footer-grid a:not(.brand):focus-visible { color: var(--text); }
.footer-brand p { margin-top: 12px; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: #777689; font-size: 11px; }

.lightbox {
  max-width: min(1180px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: #07070d;
  box-shadow: 0 40px 120px rgba(0,0,0,.75);
}
.lightbox::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(8px); }
.lightbox img { max-width: 100%; max-height: calc(100vh - 44px); border-radius: 21px; object-fit: contain; }
.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -15px;
  right: -15px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: #151522;
  color: #fff;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 12px; }
  .hero { min-height: auto; padding-top: 140px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-art { max-width: 880px; }
  .theme-lab { grid-template-columns: 1fr; }
  .theme-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .theme-control-group + .theme-control-group { margin-top: 0; padding-top: 0; padding-left: 24px; border-top: 0; border-left: 1px solid var(--line); }
  .spotlight-grid, .cinema-block { grid-template-columns: 1fr; }
  .cinema-copy { order: 1; }
  .cinema-media { order: 2; }
  .devices-content { grid-template-columns: 1fr; }
  .gallery-landscape { grid-template-columns: 1fr; }
  .gallery-mobile { grid-template-columns: repeat(3, 1fr); }
  .cta-card { grid-template-columns: auto 1fr; }
  .cta-card .play-button { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 780px) {
  .section-shell, .nav-shell { width: min(100% - 28px, var(--max)); }
  .site-header { background: rgba(6, 6, 13, .9); backdrop-filter: blur(18px); }
  .nav-shell { min-height: 68px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(13, 13, 25, .98);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 11px 12px; font-size: 14px; }
  .main-nav .nav-cta { margin-top: 4px; text-align: center; }
  .hero { padding-top: 92px; padding-bottom: 66px; gap: 28px; }
  .hero-art { order: -1; }
  .hero-copy { order: 1; }
  h1 { font-size: clamp(49px, 16vw, 78px); }
  h2 { font-size: clamp(36px, 11vw, 56px); }
  .hero-art img { transform: none; border-radius: 18px; }
  .section-block, .spotlight, .devices-section, .theme-lab-section { padding-top: 90px; padding-bottom: 90px; }
  #anders { padding-top: 78px; }
  #anders .section-heading { margin-bottom: 38px; }
  .smart-feature-grid {
    margin-inline: -14px;
    margin-bottom: 44px;
    padding: 4px 14px 18px;
    display: flex;
    gap: 13px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .smart-feature-grid::-webkit-scrollbar { display: none; }
  .smart-feature-card,
  .smart-feature-card-autoswitch,
  .smart-feature-card-learning,
  .smart-feature-card-half {
    min-width: min(82vw, 390px);
    min-height: 272px;
    flex: 0 0 min(82vw, 390px);
    scroll-snap-align: center;
  }
  .smart-feature-card-autoswitch { min-height: 300px; }
  .theme-preview-column { order: -1; }
  .theme-controls { grid-template-columns: 1fr; }
  .theme-appwide { grid-template-columns: 1fr; }
  .theme-appwide ul { justify-content: flex-start; }
  .theme-control-group + .theme-control-group { margin-top: 2px; padding-top: 22px; padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .theme-preview-meta { align-items: flex-start; flex-direction: column; gap: 7px; }
  .theme-preview-hint { order: -1; }
  .gallery-mobile { grid-template-columns: repeat(2, 1fr); }
  .cta-section { padding-bottom: 90px; }
  .cta-card { grid-template-columns: 1fr; text-align: left; }
  .cta-card .play-button { grid-column: auto; }
  .legal-note { grid-template-columns: 1fr; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .hero { padding-top: 84px; gap: 22px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-tags { gap: 6px; }
  .smart-feature-card,
  .smart-feature-card-autoswitch,
  .smart-feature-card-learning,
  .smart-feature-card-half {
    min-width: 88%;
    min-height: 270px;
    padding: 21px;
    flex-basis: 88%;
  }
  .smart-feature-card-autoswitch { min-height: 306px; }
  .smart-feature-card-autoswitch .smart-feature-copy strong { font-size: 27px; }
  .feature-toast { right: 16px; bottom: 16px; }
  .theme-lab-heading { margin-bottom: 40px; }
  .theme-appwide { padding: 15px; gap: 14px; border-radius: 16px; }
  .theme-appwide li { font-size: 8px; }
  .theme-controls { padding: 17px; border-radius: 18px; }
  .theme-options { gap: 6px; }
  .theme-option { padding: 7px 6px; font-size: 9px; }
  .accent-options { gap: 7px; }
  .theme-preview-frame { padding: 5px; border-radius: 15px; }
  .theme-preview-viewport { border-radius: 10px; }
  .theme-preview-note { margin-inline: 1px; }
  .cinema-points, .device-stats { grid-template-columns: 1fr; }
  .gallery-mobile { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; }
  .gallery-mobile button { min-width: 78%; scroll-snap-align: center; }
  .cta-card { padding: 28px 22px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { padding: 20px 0; align-items: flex-start; flex-direction: column; justify-content: center; }
}
