:root {
  --bg: #08090b;
  --bg-soft: #101216;
  --panel: #151820;
  --panel-2: #1b1f28;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f2f4f8;
  --muted: #a5adba;
  --muted-2: #757f8f;
  --accent: #d8dde7;
  --accent-strong: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(120, 128, 145, 0.22), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, #08090b 0%, #0d0f13 48%, #07080a 100%);
  min-height: 100vh;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 14, 18, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #090a0c;
  background: linear-gradient(145deg, #ffffff, #8f98a8);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.94rem;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav .nav-cta {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.clean-hero {
  min-height: calc(92vh - 80px);
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 5vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.75;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 660px;
  margin-top: 22px;
}

.metric-row div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.metric-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-top-gpu {
  position: relative;
  width: min(560px, 100%);
  height: 170px;
  overflow: hidden;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #090a0d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.hero-top-gpu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.78);
}

.hero-top-gpu::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.12), rgba(8, 9, 11, 0.48)),
    linear-gradient(180deg, transparent 42%, rgba(8, 9, 11, 0.62));
}

.hero-top-gpu-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 10, 13, 0.76);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 26px;
}

.simple-start-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 720px;
  margin: 0 0 18px;
}

.simple-start-strip div {
  min-height: 142px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.08), transparent 8rem),
    rgba(255, 255, 255, 0.04);
}

.simple-start-strip span,
.simple-start-strip strong,
.simple-start-strip p {
  display: block;
}

.simple-start-strip span {
  margin-bottom: 22px;
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.simple-start-strip strong {
  margin-bottom: 7px;
  color: var(--text);
  font-size: 1.04rem;
}

.simple-start-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #07080a;
  background: linear-gradient(145deg, #ffffff, #b5bdca);
  border-color: transparent;
}

.button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.button.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.logos span,
.payment-box span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
}

.hero-panel,
.card,
.price-card,
.proof,
.trial-banner,
.video-demo,
.cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 24px;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6dde9;
  box-shadow: 0 0 22px rgba(220, 225, 235, 0.78);
}

.file-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.16);
}

.file-card.small {
  padding: 14px;
}

.file-card.small .file-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.access-panel .file-icon {
  font-size: 1rem;
}

.file-card p {
  margin-bottom: 0;
  color: var(--muted-2);
  font-size: 0.94rem;
}

.file-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #0b0c0f;
  background: #dce1ea;
  font-size: 0.8rem;
  font-weight: 900;
}

.meter {
  height: 10px;
  overflow: hidden;
  margin: 22px 0 14px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7f8796, #ffffff);
}

.panel-note,
.muted {
  color: var(--muted);
}

.clean-card h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.gpu-hero-card {
  overflow: hidden;
  padding: 0;
}

.gpu-scene {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #090a0d;
}

.gpu-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.82);
}

.gpu-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.08), transparent 14rem),
    linear-gradient(180deg, transparent 36%, rgba(8, 9, 11, 0.54) 100%),
    linear-gradient(90deg, rgba(8, 9, 11, 0.18), transparent 50%);
  pointer-events: none;
}

.hero-slideshow {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #090a0d;
}

.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.08), rgba(8, 9, 11, 0.72)),
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.09), transparent 14rem);
  pointer-events: none;
}

.workflow-hero-demo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  min-height: auto;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.14), transparent 13rem),
    radial-gradient(circle at 84% 24%, rgba(255, 255, 255, 0.08), transparent 12rem),
    linear-gradient(145deg, #11141a, #07080a);
}

.storyboard-demo {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.storyboard-card {
  position: relative;
  min-width: 0;
  min-height: 210px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(7, 8, 10, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.storyboard-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) saturate(0.96);
  transform: scale(1.04);
}

.storyboard-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78));
}

.storyboard-card span,
.storyboard-card strong,
.storyboard-card p {
  position: relative;
  z-index: 2;
  display: block;
}

.storyboard-card span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.storyboard-card strong {
  margin-top: 108px;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1rem;
}

.storyboard-card p {
  max-width: 100%;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.storyboard-card.active {
  border-color: rgba(255, 255, 255, 0.26);
}

.storyboard-final-video {
  position: relative;
  z-index: 3;
  justify-self: center;
  width: min(250px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: #050608;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.52);
  animation: outputPop 6s ease-in-out infinite;
}

.final-video-label {
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
}

.final-video-label span,
.final-video-label strong {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

.storyboard-final-video video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.simple-result-badge {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #08090b;
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 900;
}

@keyframes heroDemoProgress {
  0% {
    width: 8%;
  }
  38% {
    width: 48%;
  }
  72%,
  100% {
    width: 92%;
  }
}

@keyframes demoPillActive {
  0%,
  33%,
  100% {
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
  }
  12%,
  25% {
    color: #08090b;
    background: #dce1ea;
  }
}

@keyframes demoStepGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.18);
  }
  18% {
    border-color: rgba(255, 255, 255, 0.52);
  }
}

@keyframes demoStepLift {
  0%,
  100% {
    transform: translateY(0);
  }
  42% {
    transform: translateY(-3px);
  }
}

@keyframes outputPop {
  0%,
  56% {
    opacity: 0.76;
    transform: translateY(8px) scale(0.96);
  }
  78%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.slide-card {
  position: absolute;
  z-index: 2;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(9, 10, 13, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.slide-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--muted-2);
  font-weight: 900;
}

.slide-card strong {
  display: block;
  margin-bottom: 6px;
}

.slide-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.main-slide {
  left: 24px;
  bottom: 28px;
  width: min(330px, calc(100% - 48px));
}

.mini-slide {
  top: 28px;
  right: 24px;
  width: min(240px, calc(100% - 48px));
}

.bottom-slide {
  right: 24px;
  bottom: 118px;
  width: min(230px, calc(100% - 48px));
}

.slide-dots {
  position: absolute;
  z-index: 3;
  left: 24px;
  top: 24px;
  display: flex;
  gap: 8px;
}

.slide-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.slide-dots .active-dot {
  width: 28px;
  border-radius: 999px;
  background: #dce1ea;
}

.processing-window {
  position: absolute;
  top: 34px;
  right: 30px;
  z-index: 4;
  width: min(310px, calc(100% - 60px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(9, 10, 13, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.processing-window strong {
  display: block;
  margin-top: 18px;
  font-size: 1.18rem;
}

.processing-window p {
  margin: 7px 0 16px;
  color: var(--muted);
}

.processing-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.processing-bar span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7f8796, #ffffff);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.22);
}

.gpu-caption {
  padding: 24px;
}

.gpu-caption h3 {
  font-size: 1.55rem;
  line-height: 1.12;
}

.focus-caption h3 {
  margin-bottom: 18px;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.focus-list div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.focus-list span,
.focus-list strong {
  display: block;
}

.focus-list span {
  margin-bottom: 5px;
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.app-choice-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.app-choice-list a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
}

.app-choice-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #08090b;
  background: #dce1ea;
  font-weight: 900;
}

.app-choice-list small {
  color: var(--muted);
}

.logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 0;
  padding-bottom: 38px;
}

.logos p {
  margin-bottom: 0;
  color: var(--muted-2);
}

.logos div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 32px;
}

.centered-heading {
  justify-items: center;
  text-align: center;
}

.centered-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.demo-section {
  padding-top: 34px;
}

.clean-demo {
  padding-top: 24px;
}

.product-suite {
  padding-top: 42px;
}

.creation-showcase {
  padding-top: 30px;
  padding-bottom: 56px;
}

.compact-heading {
  margin-bottom: 24px;
}

.creation-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 0.9fr);
  gap: 14px;
}

.creation-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.14), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    #101218;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.creation-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.creation-card > span,
.creation-card h3,
.creation-card p,
.creation-card > div:not(.creation-visual) {
  position: relative;
  z-index: 2;
}

.creation-card > span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.creation-card h3 {
  max-width: 360px;
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.creation-card p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.featured-creation {
  grid-row: span 2;
  min-height: 640px;
  display: grid;
  align-content: end;
  padding: 24px;
}

.featured-creation video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05) brightness(0.72);
}

.featured-creation h3 {
  max-width: 440px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 0.98;
}

.featured-creation p {
  color: rgba(255, 255, 255, 0.78);
}

.creation-visual {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  min-height: 150px;
  margin: -4px -4px 24px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.creation-visual strong {
  max-width: 210px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.15;
}

.visual-pill {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  color: #08090b;
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.75rem;
  font-weight: 900;
}

.ad-card .creation-visual {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 227, 107, 0.36), transparent 6rem),
    linear-gradient(145deg, #313540, #11141b);
}

.influencer-card .creation-visual {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 111, 158, 0.34), transparent 6rem),
    linear-gradient(145deg, #2d2733, #11141b);
}

.travel-card .creation-visual {
  background:
    radial-gradient(circle at 80% 18%, rgba(91, 192, 255, 0.34), transparent 6rem),
    linear-gradient(145deg, #203341, #10141a);
}

.brand-card .creation-visual {
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.18), transparent 7rem),
    linear-gradient(145deg, #2d3138, #0e1015);
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.suite-grid article,
.workflow-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.suite-grid article {
  min-height: 230px;
  padding: 24px;
}

.suite-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.suite-grid p,
.workflow-card p {
  color: var(--muted);
  line-height: 1.7;
}

.quickguide-video {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.13), transparent 18rem),
    radial-gradient(circle at 82% 30%, rgba(130, 140, 160, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.quickguide-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 26px;
  min-height: 530px;
  padding: 34px;
  border-bottom: 1px solid var(--line);
}

.quickguide-stage::before {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
  pointer-events: none;
}

.quickguide-phone,
.quickguide-result {
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  background: rgba(7, 8, 10, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.quickguide-phone {
  align-self: center;
  max-width: 430px;
  padding: 18px;
  border-radius: 34px;
  animation: floatGuide 7s ease-in-out infinite;
}

.phone-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.85rem;
}

.phone-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dce1ea;
  box-shadow: 0 0 22px rgba(220, 225, 234, 0.72);
}

.phone-top strong {
  color: var(--text);
}

.upload-dropzone {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.09), transparent 10rem),
    rgba(255, 255, 255, 0.04);
}

.upload-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
  border-radius: 18px;
  color: #08090b;
  background: linear-gradient(145deg, #ffffff, #aeb7c6);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.upload-dropzone p,
.ai-analyze-card p,
.prompt-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.prompt-card {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.prompt-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prompt-card p {
  color: var(--text);
  font-weight: 750;
}

.ai-analyze-card {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.ai-analyze-card > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.analyze-bar {
  height: 10px;
  overflow: hidden;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.analyze-bar span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8d96a7, #ffffff);
  animation: analyzePulse 2.8s ease-in-out infinite;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.option-grid span {
  display: grid;
  place-items: center;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.92rem;
  font-weight: 800;
}

.quickguide-result {
  align-self: center;
  padding: 22px;
  border-radius: 30px;
}

.result-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.result-header span {
  color: var(--muted);
  font-size: 0.9rem;
}

.short-preview {
  display: grid;
  grid-template-columns: minmax(180px, 250px) 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.demo-result-video {
  width: 100%;
  max-height: 440px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #050608;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.short-screen {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 330px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.2), transparent 7rem),
    linear-gradient(145deg, #2b303b, #0b0d11);
}

.short-screen::before,
.short-screen::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.short-screen::before {
  top: 26px;
  left: 34px;
  width: 100px;
  height: 100px;
}

.short-screen::after {
  right: -28px;
  bottom: 80px;
  width: 130px;
  height: 130px;
}

.short-screen p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.25;
}

.small-play {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  font-size: 1rem;
}

.caption-pill {
  align-self: end;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
}

.caption-pill strong,
.caption-pill span {
  display: block;
}

.caption-pill strong {
  margin-bottom: 6px;
  color: var(--text);
}

.result-files {
  display: grid;
  gap: 10px;
}

.result-files div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.result-files span {
  color: var(--muted);
  font-size: 0.88rem;
}

.quickguide-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.quickguide-steps article {
  min-height: 172px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.quickguide-steps span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--muted-2);
  font-weight: 900;
}

.quickguide-steps strong {
  display: block;
  margin-bottom: 8px;
}

.quickguide-steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.quickguide-caption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 26px;
}

.quickguide-caption h3 {
  margin-bottom: 8px;
}

.quickguide-caption p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.quickguide-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

@keyframes floatGuide {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes analyzePulse {
  0%,
  100% {
    width: 58%;
  }
  50% {
    width: 91%;
  }
}

.explainer-video {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.11), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.explainer-scene {
  position: relative;
  min-height: 430px;
  padding: 34px;
  border-bottom: 1px solid var(--line);
}

.cartoon-person {
  position: absolute;
  left: 38px;
  bottom: 42px;
  width: 180px;
  height: 210px;
}

.cartoon-person .head {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(145deg, #e5e0d6, #b7ab9b);
}

.cartoon-person .body {
  width: 112px;
  height: 92px;
  margin: 8px auto 0;
  border-radius: 40px 40px 18px 18px;
  background: linear-gradient(145deg, #2a2f38, #11141a);
  border: 1px solid var(--line);
}

.cartoon-person .laptop {
  position: absolute;
  left: 14px;
  bottom: 0;
  width: 152px;
  height: 62px;
  border-radius: 12px;
  background: linear-gradient(145deg, #e3e6eb, #808997);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.cartoon-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 300px;
  margin-left: 150px;
}

.flow-card {
  width: 150px;
  min-height: 140px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.flow-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #08090b;
  background: #dce1ea;
  font-weight: 900;
}

.flow-card strong {
  display: block;
  margin-bottom: 7px;
}

.flow-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.ai-card {
  background: rgba(255, 255, 255, 0.075);
}

.server-card {
  background: rgba(120, 128, 145, 0.12);
}

.result-card {
  background: rgba(255, 255, 255, 0.1);
}

.flow-arrow {
  color: var(--muted-2);
  font-size: 1.6rem;
  font-weight: 900;
}

.server-farm {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 8px;
  width: 90px;
}

.server-farm div {
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    radial-gradient(circle at 18px 50%, #dce1ea 0 3px, transparent 4px),
    linear-gradient(145deg, #252a34, #11141a);
}

.explainer-caption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 26px;
}

.explainer-caption h3 {
  margin-bottom: 8px;
}

.explainer-caption p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.video-demo {
  padding: 22px;
}

.video-demo p {
  color: var(--muted);
  line-height: 1.7;
}

.video-window,
.clean-preview,
.result-stack {
  min-height: 250px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
}

.video-window {
  overflow: hidden;
}

.video-topbar {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.video-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.video-frame {
  display: grid;
  place-items: center;
  min-height: 204px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 11rem);
}

.play-button {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: #08090b;
  background: #dce1ea;
  font-size: 1.35rem;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
}

.clean-preview {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 20px;
}

.addon-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.addon-list span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.text-line {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.text-line.good {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.arrow-down {
  color: var(--muted-2);
  text-align: center;
  font-size: 1.4rem;
}

.result-stack {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 14px;
}

.workflow-showcase {
  padding-top: 34px;
  padding-bottom: 34px;
}

.workflow-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
}

.workflow-card h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.workflow-steps span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.clean-value {
  padding-top: 24px;
  padding-bottom: 24px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
}

.value-strip div {
  padding: 18px;
  border-radius: 18px;
}

.value-strip span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted-2);
  font-weight: 900;
}

.value-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.value-strip p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.clean-pricing {
  padding-top: 56px;
}

.trust-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.trust-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.trust-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted-2);
  font-weight: 900;
}

.trust-grid h3 {
  font-size: 1.08rem;
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.compact-pricing .price-card {
  box-shadow: none;
}

.center-actions {
  justify-content: center;
}

.clean-cta {
  margin-bottom: 80px;
}

.cards,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

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

.card,
.price-card {
  padding: 28px;
}

.card p,
.price-card p,
.proof p,
.cta p,
.faq p,
.step p {
  color: var(--muted);
  line-height: 1.7;
}

.card-number {
  display: block;
  margin-bottom: 34px;
  color: var(--muted-2);
  font-weight: 800;
}

.price-card {
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.price-card.featured {
  position: relative;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 18rem),
    var(--panel-2);
  transform: translateY(-12px);
}

.plan {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 4px;
  font-size: 2.55rem;
}

ul {
  padding: 0;
  margin: 22px 0 26px;
  list-style: none;
}

li {
  position: relative;
  padding-left: 24px;
  margin: 12px 0;
  color: var(--muted);
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.split,
.proof,
.trial-banner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.step span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #08090b;
  background: #dce1ea;
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
}

.proof,
.trial-banner {
  padding: 32px;
}

.trial-banner {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.trial-banner p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.payment-box {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 10px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 800;
}

details p {
  padding: 0 20px 20px;
}

.cta {
  padding: 48px;
  text-align: center;
}

.cta h2,
.cta p {
  margin-left: auto;
  margin-right: auto;
}

.cta p {
  max-width: 680px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--muted);
}

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--text);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(260px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(12, 14, 18, 0.96);
  }

  .site-header.open .site-nav {
    display: flex;
  }

  .hero,
  .split,
  .proof,
  .trial-banner,
  .cards.three,
  .cards.four,
  .demo-grid,
  .value-strip,
  .trust-grid,
  .suite-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .quickguide-stage,
  .quickguide-caption,
  .quickguide-steps,
  .creation-grid {
    grid-template-columns: 1fr;
  }

  .featured-creation {
    min-height: 560px;
  }

  .quickguide-stage {
    min-height: auto;
    padding: 20px;
  }

  .quickguide-phone {
    max-width: none;
  }

  .short-preview {
    grid-template-columns: 1fr;
  }

  .short-screen {
    min-height: 260px;
  }

  .result-files div {
    grid-template-columns: 1fr;
  }

  .quickguide-actions {
    justify-content: flex-start;
  }

  .metric-row,
  .workflow-card,
  .focus-list,
  .simple-start-strip {
    grid-template-columns: 1fr;
  }

  .explainer-caption,
  .cartoon-flow {
    grid-template-columns: 1fr;
  }

  .cartoon-flow {
    margin-left: 0;
    justify-items: stretch;
  }

  .flow-card {
    width: 100%;
  }

  .flow-arrow,
  .cartoon-person,
  .server-farm {
    display: none;
  }

  .hero-slideshow {
    min-height: 360px;
  }

  .mini-slide,
  .bottom-slide {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .price-card.featured {
    transform: none;
  }

  .logos,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .logos div,
  .payment-box {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

  .hero-panel,
  .card,
  .price-card,
  .proof,
  .cta,
  .quickguide-video,
  .creation-card {
    border-radius: 20px;
  }

  .creation-card {
    min-height: 280px;
  }

  .featured-creation {
    min-height: 500px;
  }

  .quickguide-stage,
  .quickguide-steps,
  .quickguide-caption {
    padding: 16px;
  }

  .option-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 32px 22px;
  }
}

/* Riktiga Sceneleaf-produktioner */
.shorts-showcase{position:relative}
.shorts-showcase::before{content:"";position:absolute;left:50%;top:22%;width:min(900px,80vw);height:520px;translate:-50% 0;background:radial-gradient(circle,rgba(126,255,55,.08),transparent 68%);pointer-events:none}
.shorts-carousel{position:relative;display:grid;grid-template-columns:minmax(280px,.78fr) minmax(380px,1.22fr);gap:26px;max-width:1040px;margin:34px auto 0;padding:22px;border:1px solid rgba(255,255,255,.1);border-radius:32px;background:linear-gradient(145deg,rgba(17,21,30,.96),rgba(7,9,14,.94));box-shadow:0 35px 100px rgba(0,0,0,.42)}
.shorts-player-wrap{display:grid;place-items:center;min-width:0}
.shorts-player{position:relative;width:min(100%,360px);aspect-ratio:9/16;overflow:hidden;border-radius:24px;background:#030508;box-shadow:0 24px 70px rgba(0,0,0,.58)}
.shorts-player video{width:100%;height:100%;display:block;object-fit:cover;background:#030508}
.shorts-player-shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(3,5,8,.08) 45%,rgba(3,5,8,.88) 88%);pointer-events:none}
.shorts-player-copy{position:absolute;z-index:2;left:22px;right:22px;bottom:65px;display:grid;gap:6px}
.shorts-player-copy small{color:#b8ff45;font-size:.66rem;font-weight:850;letter-spacing:.12em;text-transform:uppercase}
.shorts-player-copy strong{font-size:clamp(1.45rem,2.2vw,2rem);line-height:1.05}
.shorts-player-copy span{color:rgba(255,255,255,.72);font-size:.78rem;line-height:1.45}
.shorts-player-controls{position:absolute;z-index:3;left:18px;right:18px;bottom:16px;display:flex;align-items:center;justify-content:space-between}
.shorts-player-controls button{width:36px;height:36px;border:1px solid rgba(255,255,255,.16);border-radius:50%;background:rgba(5,7,11,.72);color:#fff}
.shorts-player-controls button:hover{border-color:rgba(184,255,69,.52);color:#b8ff45}
.shorts-player-controls span{font-size:.66rem;font-weight:800;letter-spacing:.14em;color:rgba(255,255,255,.62)}
.shorts-playlist{display:grid;align-content:center;gap:10px;min-width:0}
.shorts-choice{display:grid;grid-template-columns:92px 1fr;gap:15px;align-items:center;min-width:0;padding:10px;border:1px solid transparent;border-radius:18px;background:rgba(255,255,255,.025);color:inherit;text-align:left;transition:border-color .2s,background .2s,transform .2s}
.shorts-choice:hover{transform:translateX(3px);background:rgba(255,255,255,.045)}
.shorts-choice.active{border-color:rgba(184,255,69,.34);background:linear-gradient(90deg,rgba(184,255,69,.09),rgba(111,126,255,.04))}
.shorts-choice img{width:92px;height:112px;object-fit:cover;border-radius:12px;background:#080b10}
.shorts-choice span{display:grid;gap:5px;min-width:0}
.shorts-choice small{color:#8f99aa;font-size:.62rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase}
.shorts-choice strong{overflow:hidden;text-overflow:ellipsis;font-size:1.05rem;white-space:nowrap}
.shorts-choice em{color:#7f8998;font-size:.72rem;font-style:normal}
@media(max-width:820px){.shorts-carousel{grid-template-columns:1fr;max-width:600px}.shorts-playlist{grid-template-columns:repeat(2,minmax(0,1fr));align-items:stretch}.shorts-choice{grid-template-columns:1fr;padding:7px}.shorts-choice img{width:100%;height:140px}.shorts-choice em{display:none}}
@media(max-width:560px){.shorts-carousel{padding:12px;border-radius:22px}.shorts-player{width:min(100%,330px)}.shorts-playlist{display:flex;overflow-x:auto;scrollbar-width:none}.shorts-playlist::-webkit-scrollbar{display:none}.shorts-choice{flex:0 0 132px}.shorts-choice img{height:155px}.shorts-choice strong{font-size:.86rem}.shorts-choice small{font-size:.54rem}}
