:root {
  --bg: #07080b;
  --bg-soft: #10131a;
  --text: #e9edf3;
  --muted: #a6afbd;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.04);
  --accent: #00e0c6;
  --accent-2: #ff7a18;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

#pageLoader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 35%, #151b26 0%, #07080b 70%);
  transition: opacity 0.5s ease, visibility 0.5s ease;
  animation: loaderAutoHide 0.01s linear 4s forwards;
}

#pageLoader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loaderAutoHide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* From Uiverse.io by Juanes200122 */
#svg-global {
  zoom: 1.2;
  overflow: visible;
}

@keyframes fade-particles {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-40px);
    opacity: 0;
  }
}

#particles {
  animation: fade-particles 5s infinite alternate;
}

.particle {
  animation: floatUp linear infinite;
}

.p1 { animation-duration: 2.2s; animation-delay: 0s; }
.p2 { animation-duration: 2.5s; animation-delay: 0.3s; }
.p3 { animation-duration: 2s; animation-delay: 0.6s; }
.p4 { animation-duration: 2.8s; animation-delay: 0.2s; }
.p5 { animation-duration: 2.3s; animation-delay: 0.4s; }
.p6 { animation-duration: 3s; animation-delay: 0.1s; }
.p7 { animation-duration: 2.1s; animation-delay: 0.5s; }
.p8 { animation-duration: 2.6s; animation-delay: 0.2s; }
.p9 { animation-duration: 2.4s; animation-delay: 0.3s; }

@keyframes bounce-lines {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

#line-v1,
#line-v2,
#node-server,
#panel-rigth,
#reflectores,
#particles {
  animation: bounce-lines 3s ease-in-out infinite alternate;
}

#line-v2 {
  animation-delay: 0.2s;
}

#node-server,
#panel-rigth,
#reflectores,
#particles {
  animation-delay: 0.4s;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #1a202b 0%, transparent 40%),
    radial-gradient(circle at 80% 0%, #2b1715 0%, transparent 36%),
    linear-gradient(150deg, #06070a 0%, #0b0f14 100%);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

body.fotobox-page {
  background: #000;
}

body.ueber-filmly-page {
  background: #07080b;
}

body.ueber-filmly-page::before,
body.ueber-filmly-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body.ueber-filmly-page::before {
  background: url("./assets/images/ueber-filmly-bg.jpg") center center / cover no-repeat fixed;
  opacity: 0.15;
  animation: ueberFilmlyFade 2s ease forwards;
}

body.ueber-filmly-page::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(7, 8, 11, 0.8));
  opacity: 0.85;
  animation: ueberFilmlyOverlayFade 2s ease forwards;
}

body.fotobox-page::before,
body.fotobox-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body.fotobox-page::before {
  background: url("./assets/images/fotobox-bg.png") center center / cover no-repeat fixed;
  opacity: 0;
  animation: fotoboxColorFade 5.2s ease 1.2s forwards;
}

body.fotobox-page::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), rgba(7, 8, 11, 0.9));
  animation: fotoboxOverlayFade 5.2s ease 1.2s forwards;
}

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

.fotobox-content {
  margin-top: 34vh;
}

@keyframes fotoboxColorFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fotoboxOverlayFade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.45;
  }
}

@keyframes ueberFilmlyFade {
  from {
    opacity: 0.15;
  }
  to {
    opacity: 1;
  }
}

@keyframes ueberFilmlyOverlayFade {
  from {
    opacity: 0.85;
  }
  to {
    opacity: 0.62;
  }
}

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: radial-gradient(#fff 0.5px, transparent 0.5px);
  background-size: 2px 2px;
}

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

main {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5vw;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 14, 0.65);
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  display: block;
  width: clamp(165px, 20vw, 320px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: #fff;
}

.book-btn {
  border: 1px solid var(--line);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
}

.hero {
  min-height: 90vh;
  padding: 7.5rem 5vw 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(6, 8, 11, 0.16) 0%,
      rgba(6, 8, 11, 0.34) 50%,
      rgba(6, 8, 11, 0.62) 100%
    ),
    linear-gradient(to right, rgba(6, 8, 11, 0.36), rgba(6, 8, 11, 0.14)),
    url("./assets/images/hero-profile.jpg");
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  z-index: 0;
}

.glow-1 {
  width: 360px;
  height: 360px;
  background: rgba(0, 224, 198, 0.1);
  top: 12%;
  left: 6%;
  animation: floatY 8s ease-in-out infinite;
}

.glow-2 {
  width: 280px;
  height: 280px;
  background: rgba(255, 122, 24, 0.08);
  right: 8%;
  top: 20%;
  animation: floatY 10s ease-in-out infinite reverse;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.04;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  margin-bottom: 0.2rem;
}

.hero-text {
  max-width: 55ch;
  color: var(--muted);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.btn-primary {
  background: linear-gradient(100deg, var(--accent), #23a7ff);
  color: #041118;
  box-shadow: 0 12px 25px rgba(0, 224, 198, 0.2);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.hero-stats {
  display: grid;
  gap: 1rem;
}

.hero-stats article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(16px);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-stats.is-visible article {
  animation: statIntro 0.7s ease forwards;
}

.hero-stats.is-visible article:nth-child(2) {
  animation-delay: 0.14s;
}

.hero-stats.is-visible article:nth-child(3) {
  animation-delay: 0.28s;
}

.hero-stats strong {
  display: block;
  font-size: 1.45rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 4.5rem 5vw 1rem;
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-intro {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.65;
}

.project-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-thumb {
  height: 190px;
}

.thumb-1 {
  background: linear-gradient(130deg, #223340, #121314 48%, #2d1b15);
}

.thumb-2 {
  background: linear-gradient(130deg, #2a1f2f, #0f1929 55%, #20161b);
}

.thumb-3 {
  background: linear-gradient(130deg, #263022, #0f1115 50%, #2e1e29);
}

.card-body {
  padding: 1rem;
}

.card-body p {
  margin-bottom: 0;
  color: var(--muted);
}

.album-page {
  position: relative;
  padding-top: 7rem;
}

.album-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 18%, rgba(0,224,198,.16), transparent 0 30%),
    radial-gradient(circle at 82% 22%, rgba(255,61,46,.12), transparent 0 24%),
    linear-gradient(180deg, #050607, #0a0c0f 46%, #040506);
}

.album-hero {
  position: relative;
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  align-items: end;
  gap: 2rem;
  margin-bottom: 1.1rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 32px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.08), rgba(255,255,255,.018)),
    radial-gradient(circle at 68% 22%, rgba(0,224,198,.2), transparent 0 30%),
    rgba(255,255,255,.035);
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

.album-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
  opacity: .5;
}

.album-hero > * {
  position: relative;
  z-index: 1;
}

.album-hero h1 {
  max-width: 900px;
  margin: .1rem 0 .7rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.2rem, 10vw, 8.6rem);
  line-height: .78;
  letter-spacing: -.08em;
  text-transform: uppercase;
}

.album-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
}

.album-hero-orbit {
  position: relative;
  min-height: 240px;
}

.album-hero-orbit span {
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.025)),
    radial-gradient(circle at 35% 24%, rgba(0,224,198,.18), transparent 0 36%);
  box-shadow: 0 24px 80px rgba(0,0,0,.38);
  animation: albumFloatIn .9s cubic-bezier(.2,.9,.2,1) both;
}

.album-hero-orbit span:nth-child(1) {
  width: 76%;
  height: 64%;
  right: 14%;
  bottom: 7%;
  transform: rotate(-9deg);
}

.album-hero-orbit span:nth-child(2) {
  width: 58%;
  height: 78%;
  right: 0;
  bottom: 22%;
  transform: rotate(8deg);
  animation-delay: .08s;
}

.album-hero-orbit span:nth-child(3) {
  width: 46%;
  height: 50%;
  left: 5%;
  top: 4%;
  transform: rotate(18deg);
  animation-delay: .16s;
}

.album-toolbar {
  position: sticky;
  top: 5.6rem;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: .75rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(7,9,11,.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
}

.album-menu,
.album-layout-toggle {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.album-btn,
.layout-btn {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.045);
  color: var(--text);
  padding: 0.58rem 0.95rem;
  cursor: pointer;
  font: inherit;
  font-size: .86rem;
  letter-spacing: .03em;
  transition: transform .28s ease, background 0.3s ease, color 0.3s ease, border-color .3s ease;
}

.album-btn:hover,
.layout-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
}

.album-btn.active,
.layout-btn.active {
  background: rgba(0, 224, 198, 0.18);
  color: #eafffb;
  border-color: rgba(0, 224, 198, 0.48);
  box-shadow: 0 0 28px rgba(0,224,198,.12);
}

.album-grid {
  display: none;
}

.album-grid.active {
  display: grid;
  animation: fadeIn 0.45s ease;
}

.album-gallery {
  grid-auto-flow: dense;
  gap: .8rem;
}

.album-layout-mosaic .album-gallery {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 78px;
}

.album-layout-clean .album-gallery {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-auto-rows: minmax(310px, auto);
}

.album-layout-compact .album-gallery {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-auto-rows: 190px;
}

.album-shot {
  min-height: 170px;
  border-radius: 18px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}

.fancy-shot {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  overflow: hidden;
  color: var(--text);
  text-align: left;
  border: 1px solid rgba(255,255,255,.13);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 24px 65px rgba(0,0,0,.34);
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
  animation: albumTileIn .65s cubic-bezier(.2,.9,.2,1) both;
  animation-delay: calc(var(--i, 0) * 38ms);
}

.fancy-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02) 0 36%, rgba(0,0,0,.76) 100%),
    linear-gradient(135deg, rgba(0,224,198,.08), transparent 46%, rgba(255,61,46,.1));
  transition: opacity .35s ease;
}

.fancy-shot::after {
  content: "FILMLY";
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(255,255,255,.4);
  font-size: .68rem;
  letter-spacing: .28em;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease;
}

.fancy-shot:hover {
  transform: translateY(-7px) scale(1.012);
  border-color: rgba(0,224,198,.34);
  box-shadow: 0 34px 85px rgba(0,0,0,.46), 0 0 35px rgba(0,224,198,.08);
}

.fancy-shot:hover::before {
  opacity: .72;
}

.fancy-shot:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.placeholder-shot {
  cursor: default;
  background-size: cover;
}

.placeholder-shot::after {
  content: "UPLOAD";
}

.album-layout-mosaic .fancy-shot {
  grid-column: span 3;
  grid-row: span 4;
}

.album-layout-mosaic .fancy-shot:nth-child(6n + 1) {
  grid-column: span 5;
  grid-row: span 5;
}

.album-layout-mosaic .fancy-shot:nth-child(6n + 2) {
  grid-column: span 4;
  grid-row: span 3;
}

.album-layout-mosaic .fancy-shot:nth-child(6n + 4) {
  grid-column: span 4;
  grid-row: span 5;
}

.album-layout-clean .fancy-shot,
.album-layout-compact .fancy-shot {
  grid-column: auto;
  grid-row: auto;
}

.album-layout-compact .fancy-shot {
  min-height: 190px;
  padding: .75rem;
}

.shot-number,
.shot-caption {
  position: relative;
  z-index: 1;
}

.shot-number {
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: .86rem;
}

.shot-caption {
  display: grid;
  justify-items: end;
  text-align: right;
}

.shot-caption strong {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.shot-caption small {
  color: rgba(255,255,255,.62);
}

.fancy-shot.is-hidden {
  display: none;
}

.album-gallery.is-filtering .fancy-shot:not(.is-hidden) {
  animation: albumTileIn .42s cubic-bezier(.2,.9,.2,1) both;
}

.uploaded-shot {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.album-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255,255,255,.035);
}

.album-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 5vw;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.album-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.album-lightbox-stage {
  position: relative;
  width: min(1160px, 100%);
  max-height: 84vh;
  transform: scale(.96) translateY(18px);
  transition: transform .34s cubic-bezier(.2,.9,.2,1);
}

.album-lightbox.is-open .album-lightbox-stage {
  transform: scale(1) translateY(0);
}

.album-lightbox img {
  display: block;
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 40px 120px rgba(0,0,0,.62);
  user-select: none;
  -webkit-user-drag: none;
}

.album-lightbox-stage::after {
  content: "FILMLY PRODUCTIONS";
  position: absolute;
  right: 1.2rem;
  bottom: 1.1rem;
  color: rgba(255,255,255,.28);
  letter-spacing: .24em;
  font-size: .72rem;
  pointer-events: none;
}

.album-lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.album-lightbox-meta {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: min(420px, calc(100% - 2rem));
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(5,7,9,.7);
  backdrop-filter: blur(16px);
}

.album-lightbox-meta span,
.album-lightbox-meta p {
  color: var(--muted);
}

.album-lightbox-meta span {
  display: block;
  margin-bottom: .2rem;
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.album-lightbox-meta strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
}

.album-lightbox-meta p {
  margin: .2rem 0 0;
}

.shot-1,
.shot-7 {
  background: linear-gradient(150deg, #15303a, #1a131f);
}

.shot-2,
.shot-9 {
  background: linear-gradient(150deg, #391d1b, #1f1b2f);
}

.shot-3,
.shot-10 {
  background: linear-gradient(150deg, #1b382a, #161b28);
}

.shot-4,
.shot-11 {
  background: linear-gradient(150deg, #2d2f17, #1a2230);
}

.shot-5,
.shot-12 {
  background: linear-gradient(150deg, #2d152f, #122533);
}

.shot-6,
.shot-8 {
  background: linear-gradient(150deg, #34231a, #171d2f);
}

.video-wrap {
  overflow: hidden;
}

.video-placeholder {
  min-height: 320px;
  background: radial-gradient(circle at 70% 20%, rgba(0, 224, 198, 0.2), transparent 45%),
    linear-gradient(130deg, #0e1219, #11191f 44%, #1c1214);
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
}

.video-embed {
  padding: 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-meta {
  padding: 1rem 1rem 1.3rem;
}

.video-meta p {
  color: var(--muted);
  margin-bottom: 0;
}

.price-card {
  padding: 1.1rem;
  position: relative;
}

.price-note {
  max-width: 900px;
}

.price-text {
  color: var(--muted);
  line-height: 1.7;
  margin: 0.5rem 0 0.8rem;
}

#legalContent {
  white-space: pre-wrap;
 }

.price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.3rem 0 0.5rem;
}

.price-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.featured {
  border-color: rgba(0, 224, 198, 0.4);
  box-shadow: 0 20px 40px rgba(0, 224, 198, 0.12);
}

.tag {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0;
  color: #001b16;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  background: var(--accent);
}

.contact {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1fr 1fr;
  padding: 1.2rem;
}

.contact p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.65rem 0.8rem;
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(0, 224, 198, 0.5);
}

.contact-panel {
  display: none;
}

.contact-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.map-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  padding: 1rem;
}

.map-frame-wrap {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #0a0d11;
}

.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
  transition: filter 0.45s ease;
}

.map-frame-wrap:hover iframe {
  filter: grayscale(0) contrast(1.05) brightness(0.95);
}

.map-meta {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  padding: 0.4rem;
}

.map-meta p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.contact-showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.15fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: stretch;
}

.contact-page .contact,
.contact-page .map-card {
  height: 100%;
}

.contact-page .contact {
  grid-template-columns: 1fr;
}

.route-card {
  grid-template-columns: 1.35fr .8fr;
}

.route-card .map-frame-wrap {
  min-height: 430px;
}

.route-card .map-frame-wrap iframe {
  min-height: 430px;
}

.route-card .map-meta {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border-left: 1px solid var(--line);
}

.maintenance-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 224, 198, .18), transparent 28%),
    radial-gradient(circle at 78% 74%, rgba(255, 61, 46, .14), transparent 30%),
    linear-gradient(145deg, #030405, #090b0f 54%, #020203);
  overflow: hidden;
}

.maintenance-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 76%);
}

.maintenance-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
  isolation: isolate;
}

.maintenance-screen::before {
  content: "";
  position: absolute;
  inset: 12vh 8vw;
  border: 1px solid rgba(255,255,255,.12);
  transform: rotate(-3deg);
  z-index: -1;
  animation: maintenanceFrame 5s ease-in-out infinite;
}

.maintenance-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.maintenance-frame span {
  position: absolute;
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,224,198,.85), transparent);
  animation: maintenanceLine 4.8s ease-in-out infinite;
}

.maintenance-frame span:nth-child(1) {
  top: 22%;
  left: -10%;
}

.maintenance-frame span:nth-child(2) {
  top: 58%;
  right: -14%;
  animation-delay: 1.4s;
}

.maintenance-frame span:nth-child(3) {
  bottom: 16%;
  left: 24%;
  animation-delay: 2.2s;
}

.maintenance-content {
  max-width: 940px;
  text-align: center;
  animation: maintenanceIntro .9s cubic-bezier(.2,.8,.2,1) both;
}

.maintenance-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: .9;
  text-transform: uppercase;
}

.maintenance-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(233,237,243,.76);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}

.maintenance-status {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1.8rem;
  padding: .7rem 1rem;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px);
}

.maintenance-status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(0,224,198,.85);
  animation: statusPulse 1.2s ease-in-out infinite;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2.4rem 5vw 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.scroll-top-btn {
  position: fixed;
  right: clamp(84px, 8vw, 112px);
  bottom: clamp(16px, 3vw, 30px);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(8, 10, 14, 0.78);
  color: #f1f5fb;
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3000;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, background 0.25s ease;
  backdrop-filter: blur(8px);
}

.scroll-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: rgba(0, 224, 198, 0.2);
  transform: translateY(-2px) scale(1.03);
}

body.is-near-footer .scroll-top-btn {
  bottom: clamp(82px, 9vw, 112px);
}

.filmly-chat {
  position: fixed;
  right: clamp(14px, 2.5vw, 28px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 3600;
  font-family: "IBM Plex Sans", sans-serif;
  transition: bottom .28s ease;
}

body.is-near-footer .filmly-chat {
  bottom: clamp(82px, 9vw, 112px);
}

.filmly-chat-launcher {
  position: relative;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0,224,198,.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 20%, rgba(255,255,255,.2), transparent 0 35%),
    linear-gradient(145deg, rgba(0,224,198,.22), rgba(8,10,14,.92));
  box-shadow: 0 20px 55px rgba(0,0,0,.42), 0 0 35px rgba(0,224,198,.18);
  cursor: pointer;
}

.filmly-chat-launcher img {
  width: 76%;
  height: 76%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.28));
}

.filmly-chat-launcher span {
  position: absolute;
  right: 7px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(0,224,198,.9);
}

.chat-unread {
  position: absolute;
  right: -4px;
  top: -5px;
  min-width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border: 2px solid #07080a;
  border-radius: 999px;
  background: #ff2f2f;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 22px rgba(255,47,47,.55);
  animation: chatBadgePop .32s cubic-bezier(.2,.9,.2,1) both;
}

.chat-unread[hidden] {
  display: none !important;
}

.filmly-chat-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(390px, calc(100vw - 28px));
  height: min(620px, calc(100vh - 120px));
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 0%, rgba(0,224,198,.16), transparent 0 32%),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025)),
    rgba(6,8,11,.96);
  box-shadow: 0 35px 110px rgba(0,0,0,.58);
  backdrop-filter: blur(22px);
  opacity: 0;
  transform: translateY(16px) scale(.96);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s cubic-bezier(.2,.8,.2,1);
}

.filmly-chat.open .filmly-chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.filmly-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.filmly-chat-agent {
  display: flex;
  align-items: center;
  gap: .72rem;
  min-width: 0;
}

.filmly-chat-agent img,
.chat-message img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}

.filmly-chat-agent strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.filmly-chat-agent span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filmly-chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.filmly-chat-messages {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: .95rem;
  overflow: auto;
}

.chat-message {
  display: flex;
  gap: .62rem;
  align-items: flex-end;
  animation: chatBubbleIn .28s cubic-bezier(.2,.8,.2,1) both;
}

.chat-message.customer {
  justify-content: flex-end;
}

.chat-message > div {
  max-width: 82%;
  padding: .72rem .82rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px 18px 18px 6px;
  background: rgba(255,255,255,.065);
}

.chat-message.customer > div {
  border-radius: 18px 18px 6px 18px;
  border-color: rgba(0,224,198,.28);
  background: rgba(0,224,198,.14);
}

.chat-message strong {
  display: block;
  margin-bottom: .2rem;
  color: var(--gold);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.chat-message p {
  margin: 0;
  color: rgba(238,243,248,.88);
  line-height: 1.5;
  font-size: .92rem;
}

.chat-transfer-btn,
.chat-mini-btn,
.filmly-chat-suggestions button,
.filmly-chat-form button {
  border: 1px solid rgba(0,224,198,.32);
  background: rgba(0,224,198,.14);
  color: #eafffb;
  font: inherit;
  cursor: pointer;
}

.chat-transfer-btn {
  margin-top: .65rem;
  padding: .5rem .65rem;
  border-radius: 999px;
  font-size: .82rem;
}

.filmly-chat-verify {
  margin: 0 .95rem .75rem;
  padding: .8rem;
  border: 1px solid rgba(0,224,198,.22);
  border-radius: 18px;
  background: rgba(0,224,198,.06);
}

.filmly-chat-verify p,
.filmly-chat-verify small {
  margin: 0 0 .65rem;
  color: var(--muted);
  line-height: 1.45;
  font-size: .86rem;
}

.chat-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.filmly-chat-verify input,
.filmly-chat-form input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  color: var(--text);
  padding: .72rem .85rem;
  font: inherit;
  outline: none;
}

.filmly-chat-verify input:focus,
.filmly-chat-form input:focus {
  border-color: rgba(0,224,198,.55);
  box-shadow: 0 0 0 3px rgba(0,224,198,.08);
}

.chat-mini-btn {
  margin-top: .55rem;
  padding: .62rem .8rem;
  border-radius: 999px;
}

.chat-code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem;
  margin-top: .55rem;
}

.filmly-chat-suggestions {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  padding: 0 .95rem .75rem;
}

.filmly-chat-suggestions button {
  border-radius: 999px;
  padding: .5rem .65rem;
  font-size: .8rem;
}

.filmly-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .55rem;
  padding: .85rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.filmly-chat-form button {
  border-radius: 999px;
  padding: .72rem .9rem;
  font-weight: 700;
}

.filmly-chat-form input:disabled {
  opacity: .6;
}

.cookie-consent {
  position: fixed;
  left: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 5200;
  width: min(560px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(0,224,198,.18), transparent 0 34%),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025)),
    rgba(5,7,10,.94);
  box-shadow: 0 34px 110px rgba(0,0,0,.54);
  backdrop-filter: blur(22px);
  animation: cookieRise .55s cubic-bezier(.2,.9,.2,1) both;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent.is-hiding {
  animation: cookieOut .25s ease both;
}

.cookie-orb {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0,224,198,.9), rgba(111,233,255,.5)),
    #0a1517;
  box-shadow: 0 0 42px rgba(0,224,198,.25);
  position: relative;
}

.cookie-orb::before,
.cookie-orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(3,16,14,.72);
}

.cookie-orb::before {
  width: 12px;
  height: 12px;
  left: 18px;
  top: 18px;
}

.cookie-orb::after {
  width: 9px;
  height: 9px;
  right: 18px;
  bottom: 20px;
}

.cookie-copy h2 {
  margin: .15rem 0 .45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  line-height: 1;
  text-transform: uppercase;
}

.cookie-copy p,
.cookie-copy li {
  color: var(--muted);
  line-height: 1.55;
  font-size: .92rem;
}

.cookie-copy details {
  margin-top: .65rem;
}

.cookie-copy summary {
  color: var(--accent);
  cursor: pointer;
  font-weight: 700;
}

.cookie-copy ul {
  margin: .55rem 0 0;
  padding-left: 1.1rem;
}

.cookie-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: .65rem;
  flex-wrap: wrap;
}

.cookie-settings-link {
  border: 0;
  background: none;
  color: var(--text);
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fotobox-hero,
.about-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  gap: 2rem;
  padding: 6.6rem 5vw 3.6rem;
  overflow: hidden;
}

.fotobox-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr);
}

.about-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.fotobox-hero::before,
.about-hero::before {
  content: "";
  position: absolute;
  inset: 6rem 5vw 3rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
  pointer-events: none;
}

.fotobox-hero::before {
  inset: 6rem 5vw 3rem 2.4vw;
}

.about-hero::before {
  inset: 6rem 5vw 3rem 2.4vw;
}

.fotobox-hero::after,
.about-hero::after {
  content: "";
  position: absolute;
  width: 42vw;
  aspect-ratio: 1;
  right: -12vw;
  top: 12vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,224,198,.18), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}

.fotobox-hero-copy,
.about-hero-copy,
.fotobox-hero-panel,
.about-mission-card {
  position: relative;
  z-index: 1;
}

.fotobox-hero-copy,
.about-hero-copy {
  max-width: 880px;
}

.fotobox-hero h1,
.about-hero h1 {
  max-width: 820px;
  margin: .15rem 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.75rem, 6.6vw, 6.8rem);
  line-height: .98;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.fotobox-hero h1 {
  max-width: 760px;
  margin-bottom: 1.45rem;
  font-size: clamp(2.7rem, 5.8vw, 6rem);
  line-height: .98;
  letter-spacing: -.052em;
}

.about-hero h1 {
  max-width: 900px;
  line-height: 1;
  letter-spacing: -.055em;
}

.fotobox-hero-copy > p:not(.eyebrow),
.about-hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(235,240,246,.74);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.fotobox-hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.fotobox-hero-panel {
  min-height: 430px;
  display: grid;
  align-content: center;
  justify-items: end;
}

.booth-scan-card {
  position: relative;
  width: min(360px, 100%);
  min-height: 430px;
  display: grid;
  align-content: end;
  gap: .4rem;
  padding: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82)),
    url("./assets/images/fotobox-bg.png") center 62% / cover no-repeat;
  box-shadow: 0 34px 100px rgba(0,0,0,.5);
}

.booth-scan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 46%, rgba(0,224,198,.18) 48%, transparent 50%);
  mix-blend-mode: screen;
  animation: boothScan 3.8s cubic-bezier(.2,.8,.2,1) infinite;
}

.booth-scan-card span {
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 800;
  line-height: .75;
  letter-spacing: -.08em;
}

.booth-scan-card strong,
.booth-scan-card small {
  position: relative;
  z-index: 1;
}

.booth-scan-card strong {
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.booth-scan-card small {
  color: var(--muted);
}

.booth-status {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: -1.4rem 1.1rem 0 0;
  padding: .72rem .9rem;
  border: 1px solid rgba(0,224,198,.32);
  border-radius: 999px;
  background: rgba(4,7,8,.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0,0,0,.34);
}

.booth-status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(0,224,198,.85);
}

.booth-feature-section,
.booth-flow,
.about-split,
.about-capabilities {
  position: relative;
  z-index: 2;
}

.booth-feature-grid,
.about-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.13);
}

.booth-feature-grid article,
.about-capability-grid article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  padding: 1.1rem;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.018)),
    rgba(5,7,10,.82);
}

.booth-feature-grid article::before,
.about-capability-grid article::before {
  content: "";
  position: absolute;
  inset: auto -30% -42% auto;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,224,198,.16), transparent 68%);
  transition: transform .45s ease, opacity .45s ease;
}

.booth-feature-grid article:hover::before,
.about-capability-grid article:hover::before {
  transform: scale(1.45);
  opacity: .9;
}

.booth-feature-grid span,
.about-capability-grid span {
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.booth-feature-grid h3,
.about-capability-grid h3 {
  margin: 2.2rem 0 .5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.booth-feature-grid p,
.about-capability-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.booth-flow-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr);
  gap: 1.5rem;
  padding: clamp(1.2rem, 4vw, 2.8rem);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0,224,198,.16), transparent 0 34%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.018));
  box-shadow: 0 30px 90px rgba(0,0,0,.36);
}

.booth-flow-card h2,
.about-copy-card h2 {
  margin: .2rem 0 .8rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: .88;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.booth-flow-card h2 {
  line-height: 1.02;
  letter-spacing: -.045em;
}

.booth-flow-card p,
.about-copy-card p {
  color: var(--muted);
  line-height: 1.7;
}

.booth-flow-card ol {
  display: grid;
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booth-flow-card li {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .95rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(0,0,0,.22);
}

.booth-flow-card li span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(0,224,198,.36);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.about-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.4rem;
}

.about-signal-row span {
  padding: .58rem .75rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(0,0,0,.34);
  color: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
}

.about-mission-card {
  align-self: end;
  min-height: 380px;
  display: grid;
  align-content: end;
  padding: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82)),
    url("./assets/images/ueber-filmly-bg.jpg") center / cover no-repeat;
  box-shadow: 0 32px 100px rgba(0,0,0,.5);
}

.about-mission-card span {
  color: var(--gold);
  letter-spacing: .26em;
  font-size: .72rem;
}

.about-mission-card strong {
  margin: .4rem 0 .5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: .95;
  text-transform: uppercase;
}

.about-mission-card p {
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.55;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: 1px;
}

.about-image-stack,
.about-copy-card {
  min-height: 520px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.035);
}

.about-image-stack {
  position: relative;
  overflow: hidden;
  border-radius: 28px 0 0 28px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.72)),
    url("./assets/images/ueber-filmly-bg.jpg") center / cover no-repeat;
}

.about-image-stack span {
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
}

.about-image-stack span:nth-child(1) {
  width: 58%;
  height: 28%;
  left: 8%;
  top: 10%;
}

.about-image-stack span:nth-child(2) {
  width: 48%;
  height: 42%;
  right: 8%;
  bottom: 12%;
}

.about-image-stack span:nth-child(3) {
  width: 38%;
  height: 22%;
  left: 14%;
  bottom: 20%;
}

.about-copy-card {
  display: grid;
  align-content: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: 0 28px 28px 0;
  background:
    radial-gradient(circle at 92% 12%, rgba(0,224,198,.14), transparent 0 34%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.018));
}

.about-copy-card ul {
  display: grid;
  gap: .65rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.about-copy-card li {
  padding: .75rem .85rem;
  border-left: 2px solid rgba(0,224,198,.62);
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.82);
}

.config-modal {
  position: fixed;
  inset: 0;
  z-index: 4500;
  display: none;
}

.config-modal.open {
  display: block;
}

.config-modal.open .config-backdrop {
  animation: configBackdropIn .35s ease both;
}

.config-modal.open .config-dialog {
  animation: configDialogIn .62s cubic-bezier(.2,.8,.2,1) both;
}

.config-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 224, 198, .13), transparent 30%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.config-dialog {
  position: relative;
  width: min(1180px, 94vw);
  margin: 4vh auto;
  padding: 0;
  height: min(820px, 92vh);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    rgba(6, 8, 11, .96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 40px 120px rgba(0,0,0,.58);
}

.config-shell {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
  height: 100%;
  min-height: 0;
}

.config-visual {
  position: sticky;
  top: 0;
  min-height: 100%;
  display: grid;
  align-content: space-between;
  gap: 2rem;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  overflow: hidden;
  background: #030405;
  border-right: 1px solid rgba(255,255,255,.13);
}

.config-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .36;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  z-index: 1;
}

.config-visual::after {
  content: "";
  position: absolute;
  inset: -12px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.88)),
    url("./assets/images/fotobox-bg.png") center / cover no-repeat;
  filter: blur(5px) brightness(.56) saturate(.78);
  transform: scale(1.04);
  z-index: 0;
}

.config-visual > * {
  position: relative;
  z-index: 2;
}

.config-visual h3 {
  max-width: 430px;
  margin: .35rem 0 .65rem;
  font-size: clamp(2rem, 3.4vw, 4.15rem);
  line-height: .94;
  text-transform: uppercase;
}

.config-device {
  width: min(250px, 70%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  justify-self: start;
  border: 1px solid rgba(255,255,255,.2);
  background:
    radial-gradient(circle at 50% 36%, rgba(0,224,198,.16), transparent 34%),
    rgba(0,0,0,.42);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 24px 70px rgba(0,0,0,.38);
  position: relative;
}

.config-device strong {
  margin-top: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.6rem;
  line-height: .75;
  z-index: 2;
}

.config-device small {
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  font-size: .76rem;
}

.config-info-rotator {
  position: relative;
  width: min(210px, 92%);
  min-height: 34px;
  margin-top: .15rem;
  overflow: hidden;
}

.info-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .42rem;
  padding: 0 .2rem;
  opacity: 0;
  transform: translateX(36px);
  animation: infoSlideShow 9s cubic-bezier(.2,.8,.2,1) infinite;
}

.slide-two {
  animation-delay: 3s;
}

.slide-three {
  animation-delay: 6s;
}

.info-slide i {
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  font-style: normal;
  font-size: .95rem;
}

.info-slide b {
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  font-size: .72rem;
  white-space: nowrap;
}

.config-benefits {
  display: grid;
  gap: .5rem;
}

.config-benefits span {
  width: max-content;
  max-width: 100%;
  padding: .48rem .65rem;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.84);
  backdrop-filter: blur(12px);
  font-size: .9rem;
}

.config-kicker {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.75rem;
}

.config-intro {
  margin: 0.4rem 0 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.config-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.36);
  color: var(--text);
  cursor: pointer;
  z-index: 4;
}

.config-form {
  display: grid;
  align-content: start;
  gap: 1.15rem;
  padding: clamp(1rem, 2.2vw, 1.7rem);
  overflow: auto;
  min-height: 0;
}

.config-panel {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  padding: clamp(1.05rem, 1.8vw, 1.35rem);
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.02)),
    rgba(12, 15, 20, .72);
  box-shadow: 0 18px 55px rgba(0,0,0,.2);
}

.config-modal.open .config-panel {
  animation: configPanelIn .52s cubic-bezier(.2,.8,.2,1) both;
}

.config-modal.open .config-panel:nth-of-type(2) {
  animation-delay: .08s;
}

.config-modal.open .config-benefits span {
  animation: configChipIn .45s cubic-bezier(.2,.8,.2,1) both;
}

.config-modal.open .config-benefits span:nth-child(2) {
  animation-delay: .08s;
}

.config-modal.open .config-benefits span:nth-child(3) {
  animation-delay: .16s;
}

.config-step-head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.15rem;
}

.config-step-head > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,224,198,.4);
  background: rgba(0,224,198,.1);
  color: #dffffa;
  font-weight: 800;
}

.config-step-head h4 {
  margin: .12rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.config-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.config-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--muted);
  font-size: .9rem;
}

.config-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  padding: .82rem .9rem;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.config-form input:focus {
  border-color: rgba(0,224,198,.62);
  box-shadow: 0 0 0 3px rgba(0,224,198,.1);
  background: rgba(0,0,0,.44);
}

.config-form small {
  color: rgba(166,175,189,.72);
}

.config-action-row {
  display: grid;
  gap: .75rem;
  align-items: end;
  margin-top: .9rem;
}

.send-row {
  grid-template-columns: minmax(220px, max-content);
  justify-content: end;
}

.verify-row {
  grid-template-columns: minmax(220px, 1fr) max-content;
}

.distance-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-top: 1rem;
}

.check-row {
  display: flex !important;
  align-items: center;
  gap: 0.7rem;
}

.check-row input {
  width: auto;
}

.premium-check {
  width: max-content;
  max-width: 100%;
  margin: 1rem 0;
  padding: .7rem .82rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
  color: var(--text) !important;
}

.config-note {
  margin: .9rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.verify-message {
  margin: 0;
  min-height: 1.1rem;
  color: #9fb8d6;
  font-size: 0.9rem;
}

.verify-message.success {
  color: #8ef7d8;
}

.verify-message.error {
  color: #ff9696;
}

.config-locked {
  margin-top: 0;
  animation: configUnlock .55s cubic-bezier(.2,.8,.2,1) both;
}

.locked-preview {
  min-height: 385px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(10, 12, 16, .7);
}

.locked-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: .2rem 0 1rem;
}

.locked-preview-grid span {
  height: 56px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035), rgba(255,255,255,.09), rgba(255,255,255,.035));
  filter: blur(.2px);
  opacity: .55;
}

.locked-preview-price {
  padding: 1rem;
  border: 1px solid rgba(0,224,198,.22);
  border-radius: 10px;
  background: rgba(0,224,198,.055);
}

.locked-preview-price small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
}

.locked-preview-price strong {
  display: block;
  margin-top: .2rem;
  color: var(--accent);
  font-size: 2.2rem;
  line-height: 1;
}

.config-summary {
  margin-top: .6rem;
  border: 1px solid rgba(0, 224, 198, 0.32);
  border-radius: 10px;
  padding: 1rem;
  background:
    radial-gradient(circle at 90% 0%, rgba(0,224,198,.16), transparent 34%),
    linear-gradient(135deg, rgba(0, 224, 198, 0.08), rgba(255,255,255,.035));
}

.config-summary p {
  margin: 0;
  padding: .48rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(233,237,243,.78);
}

.config-summary p:last-child {
  border-bottom: 0;
}

.config-total {
  margin-top: 0.35rem !important;
  padding-top: .85rem !important;
  color: #fff !important;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.config-total strong {
  color: var(--accent);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.config-submit {
  width: 100%;
  margin-top: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

@keyframes albumFloatIn {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(-2deg) scale(.94);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes albumTileIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.96);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes boothScan {
  0% {
    transform: translateY(-112%);
    opacity: 0;
  }
  18% {
    opacity: .9;
  }
  62% {
    opacity: .75;
  }
  100% {
    transform: translateY(112%);
    opacity: 0;
  }
}

@keyframes chatBubbleIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.98);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes chatBadgePop {
  from {
    opacity: 0;
    transform: scale(.45);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cookieRise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.96);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes cookieOut {
  to {
    opacity: 0;
    transform: translateY(16px) scale(.97);
    filter: blur(8px);
  }
}

@keyframes sweep {
  to {
    left: 100%;
  }
}

@keyframes statIntro {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stats article {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: calc(100svh - 68px);
    padding-top: 5.3rem;
  }

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

  .contact-showcase,
  .route-card {
    grid-template-columns: 1fr;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .route-card .map-meta {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .map-meta {
    padding: 0.2rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .logo-image {
    width: clamp(145px, 38vw, 220px);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 5vw;
    left: 5vw;
    display: grid;
    gap: 0.3rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(6, 7, 10, 0.95);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .site-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.45rem;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}
  .site-footer {
    justify-content: space-between;
    align-items: center;
  }

  .footer-links {
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

/* Premium visual layer */
:root {
  --steel: #b7c6d8;
  --hot: #ff3d2e;
  --gold: #d9a441;
}

body.home-page {
  background:
    linear-gradient(180deg, #030406 0%, #080a0d 42%, #0d0d0a 100%);
}

body.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 76%, transparent);
}

.site-header {
  animation: headerDrop .7s ease both;
  background: rgba(4, 5, 7, 0.58);
  box-shadow: 0 16px 60px rgba(0, 0, 0, .28);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--hot), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
}

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

.hero {
  min-height: calc(100svh - 76px);
  padding: clamp(5.4rem, 8vh, 7rem) 5vw clamp(2.7rem, 5vh, 4rem);
  align-items: end;
  gap: clamp(1rem, 3vw, 2rem);
  isolation: isolate;
}

.hero::before {
  transform: scale(1.02);
  animation: heroImageIn 1.7s cubic-bezier(.2,.8,.2,1) both;
}

.hero-noise,
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-noise {
  opacity: .08;
  mix-blend-mode: screen;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 4px);
  animation: scanlines 8s linear infinite;
}

.hero-vignette {
  background:
    radial-gradient(circle at 64% 42%, transparent 0 24%, rgba(0,0,0,.08) 44%, rgba(0,0,0,.58) 100%),
    linear-gradient(90deg, rgba(0,0,0,.24), transparent 46%, rgba(0,0,0,.42));
}

.hero-content {
  max-width: 700px;
}

.hero-content h1 {
  font-size: clamp(2.55rem, 6.4vw, 6.4rem);
  max-width: 760px;
  margin-bottom: .75rem;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  filter: drop-shadow(0 18px 38px rgba(0,0,0,.55));
}

.hero-text {
  max-width: 52ch;
  font-size: clamp(.98rem, 1.2vw, 1.12rem);
  color: rgba(233, 237, 243, .82);
  line-height: 1.55;
}

.hero-actions .btn {
  min-height: 48px;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 35%, rgba(255,255,255,.45), transparent 65% 100%);
  transform: translateX(-120%);
  transition: transform .65s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.hero-stats article {
  border-radius: 8px;
  padding: 1rem 1.05rem;
  background:
    linear-gradient(140deg, rgba(255,255,255,.10), rgba(255,255,255,.025)),
    rgba(9, 11, 14, .46);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.hero-stats {
  max-width: 420px;
  justify-self: end;
  align-self: center;
  margin-top: clamp(2rem, 10vh, 7rem);
  gap: .9rem;
}

.hero-stats strong {
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
}

.hero-stats span {
  font-size: .88rem;
}

.hero-stats article:hover {
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 24px 72px rgba(0,224,198,.13);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: .95rem;
  z-index: 3;
  width: 30px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 1.55s ease infinite;
}

.cinema-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: #f1f4f6;
  color: #08090b;
}

.cinema-strip div {
  display: flex;
  width: max-content;
  gap: clamp(2rem, 8vw, 8rem);
  padding: .9rem 5vw;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  animation: marquee 22s linear infinite;
}

.cinema-strip span {
  white-space: nowrap;
}

.studio-section,
.production-flow {
  max-width: 1320px;
  margin: 0 auto;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.studio-grid article {
  min-height: 270px;
  padding: clamp(1.1rem, 2vw, 2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.015));
  transition: transform .35s ease, background .35s ease;
}

.studio-grid article:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.025));
}

.studio-grid span,
.experience-card span {
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.studio-grid p,
.experience-card p {
  color: var(--muted);
  line-height: 1.65;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.13);
}

.experience-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .5rem;
  padding: 1.25rem;
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  background: #0b0d10;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  transition: transform .6s ease, opacity .45s ease;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 36%, rgba(0,0,0,.85) 100%);
}

.experience-card > * {
  position: relative;
  z-index: 1;
}

.experience-card:hover::before {
  transform: scale(1.08);
  opacity: .75;
}

.album-card::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0 22%, rgba(0,0,0,.55) 62%, rgba(0,0,0,.92) 100%),
    linear-gradient(140deg, rgba(0,224,198,.18), transparent 42%, rgba(255,61,46,.16)),
    var(--album-preview-image, linear-gradient(140deg, #151c20, #3b1714 52%, #0a0b0d));
  background-position: center;
  background-size: cover;
  filter: grayscale(.65) contrast(1.12) brightness(.75);
  opacity: .62;
}

.album-card.has-album-preview::before {
  opacity: .78;
}

.album-card.has-album-preview:hover::before {
  filter: grayscale(.15) contrast(1.04) brightness(.92);
  opacity: .94;
}

.booth-card::before {
  background: url("./assets/images/fotobox-bg.png") center / cover no-repeat;
}

.video-card-link::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.02) 0 28%, rgba(0,0,0,.48) 66%, rgba(0,0,0,.92) 100%),
    radial-gradient(circle at 62% 42%, rgba(0,224,198,.16), transparent 0 20%),
    url("./assets/images/video-card-bg.jpg") 54% center / cover no-repeat;
  filter: grayscale(.35) contrast(1.08) brightness(.82);
  opacity: .82;
}

.video-card-link::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.25), transparent 34%, rgba(0,0,0,.12)),
    linear-gradient(180deg, transparent 0 34%, rgba(0,0,0,.88) 100%);
}

.video-card-link .experience-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: rgba(0,0,0,.34);
  box-shadow: 0 0 42px rgba(0,224,198,.22);
  backdrop-filter: blur(8px);
}

.video-card-link .experience-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid rgba(255,255,255,.9);
}

.video-card-link:hover::before {
  filter: grayscale(.08) contrast(1.04) brightness(.96);
  opacity: 1;
}

.request-card::before {
  background: url("./assets/images/ueber-filmly-bg.jpg") center / cover no-repeat;
}

.contact-card::before {
  background:
    radial-gradient(circle at 58% 42%, rgba(0,224,198,.26), transparent 0 24%),
    linear-gradient(135deg, rgba(15,29,31,.98), rgba(5,7,9,.98) 58%, rgba(32,9,7,.92));
  opacity: .95;
}

.contact-card:hover::before {
  opacity: 1;
}

.experience-card > .card-map-preview {
  z-index: 0;
}

.card-map-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .92;
  transform: scale(1.02);
  transition: transform .7s ease, opacity .45s ease;
  background:
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 42px 42px;
}

.contact-card:hover .card-map-preview {
  opacity: 1;
  transform: scale(1.07);
}

.map-road,
.map-route {
  position: absolute;
  display: block;
  border-radius: 999px;
  pointer-events: none;
}

.map-road {
  width: 132%;
  height: 9px;
  left: -16%;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent),
    rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 24px rgba(255,255,255,.06);
}

.road-a {
  top: 29%;
  transform: rotate(-17deg);
}

.road-b {
  top: 58%;
  transform: rotate(19deg);
}

.road-c {
  width: 92%;
  top: 45%;
  left: 20%;
  transform: rotate(-52deg);
  opacity: .66;
}

.map-route {
  width: 46%;
  height: 46%;
  left: 29%;
  top: 20%;
  border: 2px dashed rgba(0,224,198,.55);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(17deg);
  filter: drop-shadow(0 0 12px rgba(0,224,198,.25));
}

.map-pin {
  position: absolute;
  left: 58%;
  top: 42%;
  width: 21px;
  height: 21px;
  display: block;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  box-shadow:
    0 0 0 7px rgba(0,224,198,.12),
    0 0 34px rgba(0,224,198,.68);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #061011;
}

.map-label {
  position: absolute;
  left: calc(58% + 18px);
  top: calc(42% - 10px);
  padding: .32rem .55rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #f6fbfb;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(6,9,11,.72);
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
}

.flow-line article {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  padding: 1rem;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.flow-line article:last-child {
  border-right: 0;
}

.flow-line strong {
  color: var(--accent);
}

.flow-line span {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 800;
}

.reveal {
  transform: translateY(34px);
  filter: blur(10px);
}

.reveal.is-visible {
  filter: blur(0);
  transition: opacity .95s cubic-bezier(.2,.8,.2,1), transform .95s cubic-bezier(.2,.8,.2,1), filter .95s ease;
}

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

@keyframes heroImageIn {
  from { opacity: .4; transform: scale(1.11); filter: saturate(.2) contrast(1.12); }
  to { opacity: 1; transform: scale(1.03); filter: saturate(1) contrast(1); }
}

@keyframes scanlines {
  from { transform: translateY(0); }
  to { transform: translateY(32px); }
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 24px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes maintenanceIntro {
  from { opacity: 0; transform: translateY(28px) scale(.98); filter: blur(12px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes maintenanceFrame {
  0%, 100% { transform: rotate(-3deg) scale(1); opacity: .65; }
  50% { transform: rotate(2deg) scale(1.025); opacity: 1; }
}

@keyframes maintenanceLine {
  0%, 100% { transform: translateX(-16%); opacity: .2; }
  50% { transform: translateX(16%); opacity: .9; }
}

@keyframes statusPulse {
  0%, 100% { transform: scale(1); opacity: .75; }
  50% { transform: scale(1.45); opacity: 1; }
}

@keyframes configUnlock {
  from { opacity: 0; transform: translateY(14px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes configBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes configDialogIn {
  from { opacity: 0; transform: translateY(26px) scale(.975); filter: blur(12px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes configPanelIn {
  from { opacity: 0; transform: translateX(18px); filter: blur(8px); }
  to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes configChipIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes infoSlideShow {
  0%, 10% {
    opacity: 0;
    transform: translateX(44px);
  }
  16%, 28% {
    opacity: 1;
    transform: translateX(0);
  }
  34%, 100% {
    opacity: 0;
    transform: translateX(-44px);
  }
}

@media (max-width: 980px) {
  .studio-grid,
  .experience-grid,
  .flow-line {
    grid-template-columns: 1fr;
  }

  .album-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .album-hero-orbit {
    min-height: 150px;
  }

  .album-toolbar {
    position: relative;
    top: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .album-layout-mosaic .album-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 70px;
  }

  .album-layout-mosaic .fancy-shot,
  .album-layout-mosaic .fancy-shot:nth-child(n) {
    grid-column: span 3;
    grid-row: span 4;
  }

  .fotobox-hero,
  .about-hero,
  .booth-flow-card,
  .about-split {
    grid-template-columns: 1fr;
  }

  .fotobox-hero,
  .about-hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .fotobox-hero-panel {
    min-height: auto;
    justify-items: stretch;
  }

  .booth-scan-card,
  .about-mission-card {
    width: 100%;
    min-height: 340px;
  }

  .booth-feature-grid,
  .about-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-image-stack,
  .about-copy-card {
    min-height: 380px;
    border-radius: 24px;
  }

  .experience-card {
    min-height: 240px;
  }

  .flow-line article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .config-dialog {
    width: min(94vw, 760px);
    margin: 2vh auto;
    height: 94vh;
  }

  .config-shell {
    grid-template-columns: 1fr;
  }

  .config-visual {
    position: relative;
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }

  .config-device {
    display: none;
  }

  .config-action-row,
  .distance-row {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-bottom: 3.8rem;
  }

  .scroll-top-btn {
    right: 88px;
    bottom: 18px;
  }

  .filmly-chat {
    right: 16px;
    bottom: 16px;
  }

  .filmly-chat-panel {
    right: -2px;
    bottom: 74px;
    width: calc(100vw - 28px);
    height: min(610px, calc(100vh - 104px));
    border-radius: 22px;
  }

  .chat-field-grid,
  .chat-code-row {
    grid-template-columns: 1fr;
  }

  .album-page {
    padding-top: 6.2rem;
  }

  .album-hero {
    border-radius: 22px;
    padding: 1.1rem;
  }

  .album-hero h1 {
    font-size: clamp(3rem, 20vw, 5.4rem);
  }

  .album-menu,
  .album-layout-toggle {
    width: 100%;
  }

  .album-btn,
  .layout-btn {
    flex: 1 1 auto;
  }

  .album-layout-mosaic .album-gallery,
  .album-layout-clean .album-gallery,
  .album-layout-compact .album-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .album-layout-mosaic .fancy-shot,
  .album-layout-mosaic .fancy-shot:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .album-lightbox {
    padding: 4rem .8rem 1rem;
  }

  .album-lightbox-meta {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: .75rem;
    max-width: 100%;
  }

  .album-lightbox-stage::after {
    display: none;
  }

  .fotobox-hero,
  .about-hero {
    padding: 6.5rem 5vw 2rem;
  }

  .fotobox-hero::before,
  .about-hero::before {
    inset: 5.6rem 3vw 1rem;
    border-radius: 22px;
  }

  .fotobox-hero::before {
    inset: 5.6rem 2vw 1rem .8vw;
  }

  .about-hero::before {
    inset: 5.6rem 2vw 1rem .8vw;
  }

  .fotobox-hero h1,
  .about-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.8rem);
    line-height: 1.02;
  }

  .fotobox-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
    line-height: 1;
    margin-bottom: 1.2rem;
  }

  .fotobox-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .booth-feature-grid,
  .about-capability-grid {
    grid-template-columns: 1fr;
  }

  .booth-flow-card {
    border-radius: 22px;
  }

  .about-signal-row span,
  .booth-status {
    width: 100%;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: clamp(2.35rem, 12vw, 3.9rem);
  }

  .hero-text {
    max-width: 34ch;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: none;
    justify-self: stretch;
    margin-top: 1.2rem;
  }

  .cinema-strip div {
    animation-duration: 16s;
  }

  .config-field-grid {
    grid-template-columns: 1fr;
  }

  .config-visual h3 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .config-benefits span {
    width: 100%;
  }

  .config-form {
    padding: .8rem;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    left: 10px;
    right: 10px;
    top: 10px;
    width: auto;
    padding: .7rem .72rem;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background: rgba(3,5,7,.72);
  }

  .logo-image {
    width: clamp(138px, 46vw, 190px);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    min-width: 58px;
    min-height: 40px;
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(0,224,198,.15), rgba(255,255,255,.045));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    z-index: 1999;
    display: grid;
    gap: .45rem;
    padding: .8rem;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    background:
      radial-gradient(circle at 88% 0%, rgba(0,224,198,.15), transparent 0 35%),
      rgba(4,6,9,.94);
    box-shadow: 0 28px 90px rgba(0,0,0,.55);
    backdrop-filter: blur(20px);
    transform: translateY(-18px) scale(.96);
    transform-origin: top right;
    clip-path: inset(0 0 100% 0 round 24px);
    opacity: 0;
    pointer-events: none;
    transition: clip-path .42s cubic-bezier(.2,.9,.2,1), transform .42s cubic-bezier(.2,.9,.2,1), opacity .24s ease;
  }

  .site-nav.open {
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0 round 24px);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 52px;
    padding: .8rem .95rem;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    color: rgba(242,245,248,.86);
    transform: translateY(-6px);
    opacity: 0;
    transition: transform .34s ease, opacity .34s ease, background .24s ease;
  }

  .site-nav.open a {
    transform: translateY(0);
    opacity: 1;
  }

  .site-nav.open a:nth-child(2) { transition-delay: .04s; }
  .site-nav.open a:nth-child(3) { transition-delay: .08s; }
  .site-nav.open a:nth-child(4) { transition-delay: .12s; }
  .site-nav.open a:nth-child(5) { transition-delay: .16s; }
  .site-nav.open a:nth-child(6) { transition-delay: .2s; }

  .site-nav a::after {
    display: none;
  }

  .book-btn {
    border-radius: 16px;
    border-color: rgba(0,224,198,.26) !important;
  }

  .hero {
    min-height: 100svh;
    grid-template-columns: 1fr;
    align-content: end;
    padding: 7.4rem 5vw 2.2rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5,7,9,.18), rgba(5,7,9,.56) 54%, rgba(5,7,9,.9)),
      url("./assets/images/hero-profile.jpg") 48% top / cover no-repeat;
  }

  .hero-content h1,
  .album-hero h1,
  .fotobox-hero h1,
  .about-hero h1 {
    letter-spacing: -.055em;
  }

  .hero-actions,
  .fotobox-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .section {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .studio-grid,
  .experience-grid,
  .booth-feature-grid,
  .about-capability-grid,
  .flow-line {
    border-radius: 22px;
    overflow: hidden;
  }

  .experience-card,
  .studio-grid article,
  .booth-feature-grid article,
  .about-capability-grid article {
    min-height: 220px;
  }

  .album-toolbar {
    padding: .6rem;
    border-radius: 20px;
  }

  .album-layout-toggle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .fotobox-hero,
  .about-hero {
    min-height: 100svh;
    align-content: end;
    padding: 7.2rem 5vw 2.2rem;
  }

  .fotobox-hero {
    background:
      linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.72)),
      url("./assets/images/fotobox-bg.png") center top / cover no-repeat;
  }

  .about-hero {
    background:
      linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.74)),
      url("./assets/images/ueber-filmly-bg.jpg") center top / cover no-repeat;
  }

  .fotobox-hero::before,
  .about-hero::before {
    opacity: .55;
  }

  .booth-scan-card,
  .about-mission-card {
    min-height: 240px;
  }

  .booth-flow-card {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .booth-flow-card h2,
  .about-copy-card h2 {
    font-size: clamp(2rem, 11vw, 3.7rem);
    line-height: 1.04;
  }

  .config-modal.open {
    overflow: auto;
  }

  .config-dialog {
    width: calc(100vw - 18px);
    height: auto;
    min-height: calc(100svh - 18px);
    margin: 9px auto;
    border-radius: 22px;
  }

  .config-shell {
    grid-template-columns: 1fr;
  }

  .config-form {
    max-height: none;
    overflow: visible;
  }

  .config-panel {
    border-radius: 18px;
  }

  .verify-row,
  .distance-row,
  .send-row {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .site-footer {
    display: grid;
    gap: .6rem;
    padding-bottom: 1rem;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .cookie-orb {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filmly-chat-panel {
    width: calc(100vw - 20px);
    height: min(620px, calc(100svh - 96px));
    right: -6px;
  }
}

.video-page {
  position: relative;
  min-height: 100vh;
  padding-top: clamp(6.2rem, 9vw, 8.5rem);
  background:
    radial-gradient(circle at 18% 10%, rgba(0,224,198,.11), transparent 0 28%),
    radial-gradient(circle at 88% 0%, rgba(255,255,255,.075), transparent 0 24%),
    linear-gradient(180deg, rgba(4,7,10,.9), rgba(4,6,8,1));
}

.video-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.85), transparent 75%);
}

.video-hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: end;
  width: min(1180px, 100%);
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
  padding: clamp(1rem, 2.3vw, 1.55rem);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.02)),
    rgba(7,10,14,.64);
  box-shadow: 0 26px 90px rgba(0,0,0,.36);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.video-hero-panel::after {
  content: "";
  position: absolute;
  right: -5%;
  top: -48%;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,224,198,.17), transparent 62%);
  filter: blur(8px);
}

.video-hero-copy {
  position: relative;
  z-index: 1;
}

.video-hero-panel h1 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: .32rem 0 .9rem;
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.video-hero-panel p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.6;
}

.video-hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .5rem;
  align-self: stretch;
  align-content: end;
  min-height: 210px;
  padding: 1rem;
  border: 1px solid rgba(0,224,198,.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(0,224,198,.09), rgba(255,255,255,.028)),
    rgba(0,0,0,.18);
}

.video-hero-card span {
  width: fit-content;
  padding: .3rem .55rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: #9ffdf2;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.video-hero-card strong {
  font-family: var(--display-font, "Space Grotesk", sans-serif);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: .95;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.video-hero-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.video-console {
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  padding: clamp(.85rem, 2vw, 1.35rem);
  background:
    radial-gradient(circle at 12% 0%, rgba(0,224,198,.085), transparent 0 28%),
    rgba(8,11,15,.78);
  box-shadow: 0 28px 90px rgba(0,0,0,.46);
  backdrop-filter: blur(18px);
}

.video-console-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: .85rem;
  padding: .18rem .2rem .85rem;
  border-bottom: 1px solid rgba(255,255,255,.09);
  color: rgba(242,245,248,.78);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.video-console-top div {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
}

.console-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #00e0c6;
  box-shadow: 0 0 22px rgba(0,224,198,.8);
}

.video-category-menu {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.2rem;
  padding: .15rem .1rem;
}

.video-filter {
  min-height: 42px;
  padding: .72rem 1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(242,245,248,.78);
  cursor: pointer;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}

.video-filter:hover,
.video-filter.active {
  transform: translateY(-2px);
  border-color: rgba(0,224,198,.42);
  background: rgba(0,224,198,.12);
  color: #fff;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(.85rem, 1.6vw, 1.2rem);
}

.video-card {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.022)),
    rgba(0,0,0,.12);
  animation: videoCardIn .62s cubic-bezier(.2,.9,.18,1) both;
  animation-delay: calc(var(--i, 0) * 55ms);
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,224,198,.28);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}

.video-card.is-hidden {
  display: none;
}

.video-card-featured {
  grid-column: span 8;
  grid-row: span 2;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,224,198,.16), transparent 0 38%),
    #05070a;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-meta {
  display: grid;
  gap: .4rem;
  padding: .85rem .9rem 1rem;
}

.video-card-meta span {
  width: fit-content;
  padding: .32rem .58rem;
  border: 1px solid rgba(0,224,198,.28);
  border-radius: 999px;
  color: #9ffdf2;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.video-card-meta h2 {
  margin: 0;
  font-size: clamp(1.05rem, 1.55vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.video-card-featured .video-card-meta {
  padding: 1rem 1.1rem 1.15rem;
}

.video-card-featured .video-card-meta h2 {
  max-width: 760px;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: .98;
}

.video-empty {
  grid-column: 1 / -1;
  min-height: 360px;
  display: grid;
  place-content: center;
  gap: .6rem;
  padding: 2rem;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 26px;
  text-align: center;
  background: rgba(255,255,255,.035);
}

.video-empty span {
  color: #00e0c6;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .78rem;
}

.video-empty h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: .9;
  text-transform: uppercase;
}

.video-empty p {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
}

@keyframes videoCardIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@media (max-width: 900px) {
  .video-hero-panel {
    grid-template-columns: 1fr;
  }

  .video-hero-card {
    min-height: auto;
  }

  .video-card,
  .video-card-featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .video-page {
    padding-top: 6.2rem;
  }

  .video-hero-panel {
    border-radius: 24px;
    gap: .85rem;
  }

  .video-hero-panel h1 {
    font-size: clamp(2rem, 10vw, 3.05rem);
    line-height: 1.04;
    letter-spacing: -.04em;
  }

  .video-hero-card {
    display: none;
  }

  .video-console {
    border-radius: 24px;
    padding: .75rem;
  }

  .video-console-top {
    display: grid;
  }

  .video-category-menu {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .2rem;
  }

  .video-filter {
    white-space: nowrap;
  }
}

/* Final mobile hardening: keeps the public site readable and touch-safe on phones. */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 15.5px;
  }

  img,
  svg,
  video,
  iframe {
    max-width: 100%;
  }

  h1,
  h2,
  h3,
  p,
  a,
  button,
  label,
  input,
  textarea,
  select,
  span,
  strong {
    overflow-wrap: break-word;
  }

  .site-header {
    min-height: 64px;
    gap: .6rem;
    padding: .62rem .68rem;
    background: rgba(3,5,7,.86);
    backdrop-filter: blur(18px);
  }

  .logo-wrap {
    min-width: 0;
  }

  .logo-image {
    width: clamp(126px, 42vw, 174px);
    height: auto;
  }

  .menu-toggle {
    flex: 0 0 auto;
    min-width: 54px;
    min-height: 38px;
    padding: .55rem .78rem;
  }

  .site-nav {
    top: 82px;
    left: 10px;
    right: 10px;
    max-height: calc(100svh - 98px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav a {
    min-height: 48px;
    padding: .72rem .85rem;
    font-size: .95rem;
  }

  main {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .section {
    width: 100%;
    padding: 4rem 1rem;
  }

  .section-head {
    gap: .5rem;
    margin-bottom: 1.2rem;
  }

  .section-head h2,
  .booth-flow-card h2,
  .about-copy-card h2,
  .video-empty h2 {
    font-size: clamp(2rem, 10vw, 3.25rem);
    line-height: 1.06;
    letter-spacing: -.045em;
  }

  .eyebrow {
    line-height: 1.3;
  }

  .hero,
  .fotobox-hero,
  .about-hero {
    width: 100%;
    min-height: auto;
    padding: 6.4rem 1rem 2rem;
    align-content: end;
  }

  .hero {
    display: grid;
    gap: 1.1rem;
    min-height: 100svh;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5,7,9,.14), rgba(5,7,9,.54) 54%, rgba(5,7,9,.92)),
      url("./assets/images/hero-profile.jpg") 50% top / cover no-repeat;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-content h1,
  .album-hero h1,
  .fotobox-hero h1,
  .about-hero h1,
  .video-hero-panel h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10.4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    text-wrap: balance;
  }

  .hero-text,
  .fotobox-hero-copy > p:not(.eyebrow),
  .about-hero-copy > p:not(.eyebrow),
  .album-hero p:not(.eyebrow),
  .video-hero-panel p:not(.eyebrow),
  .section-head p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions,
  .fotobox-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .7rem;
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: .86rem 1rem;
    text-align: center;
    white-space: normal;
  }

  .hero-stats {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    gap: .55rem;
    margin-top: .2rem;
  }

  .hero-stats article {
    min-height: auto;
    padding: .82rem .9rem;
  }

  .hero-stats strong {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
    line-height: 1;
  }

  .scroll-cue,
  .hero-noise,
  .hero-vignette,
  .bg-glow {
    display: none;
  }

  .cinema-strip {
    margin-top: 0;
  }

  .studio-grid,
  .experience-grid,
  .booth-feature-grid,
  .about-capability-grid,
  .flow-line,
  .contact-showcase,
  .booth-flow-card,
  .about-split,
  .config-shell {
    grid-template-columns: 1fr !important;
  }

  .studio-grid,
  .experience-grid,
  .booth-feature-grid,
  .about-capability-grid,
  .flow-line {
    border-radius: 20px;
  }

  .studio-grid article,
  .experience-card,
  .booth-feature-grid article,
  .about-capability-grid article {
    min-height: 190px;
    padding: 1rem;
  }

  .experience-card {
    min-height: 218px;
  }

  .video-card-link .experience-play {
    width: 58px;
    height: 58px;
  }

  .video-card-link .experience-play::before {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .album-page,
  .video-page {
    padding-top: 5.6rem;
  }

  .album-hero,
  .video-hero-panel,
  .video-console,
  .contact.card,
  .map-card,
  .booth-flow-card,
  .about-copy-card,
  .price-card {
    border-radius: 20px;
  }

  .album-hero,
  .video-hero-panel {
    min-height: auto;
    grid-template-columns: 1fr !important;
    gap: .9rem;
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .album-hero::before,
  .album-hero-orbit,
  .video-hero-card,
  .video-hero-panel::after {
    display: none;
  }

  .album-toolbar {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: .65rem;
    padding: .7rem;
    border-radius: 18px;
  }

  .album-menu,
  .album-layout-toggle,
  .video-category-menu {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: .5rem;
    padding-bottom: .18rem;
    -webkit-overflow-scrolling: touch;
  }

  .album-btn,
  .layout-btn,
  .video-filter {
    flex: 0 0 auto;
    min-height: 40px;
    padding: .62rem .82rem;
    white-space: nowrap;
  }

  .album-layout-mosaic .album-gallery,
  .album-layout-clean .album-gallery,
  .album-layout-compact .album-gallery,
  .video-gallery {
    display: grid;
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    gap: .85rem;
  }

  .album-layout-mosaic .fancy-shot,
  .album-layout-mosaic .fancy-shot:nth-child(n),
  .album-layout-clean .fancy-shot,
  .album-layout-compact .fancy-shot,
  .video-card,
  .video-card-featured {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 230px;
  }

  .video-card-meta h2,
  .video-card-featured .video-card-meta h2 {
    font-size: clamp(1.1rem, 6vw, 1.55rem);
    line-height: 1.16;
  }

  .video-console-top {
    display: grid;
    gap: .35rem;
    align-items: start;
  }

  body.fotobox-page::before,
  body.ueber-filmly-page::before {
    background-attachment: scroll;
    background-position: center top;
  }

  .fotobox-content {
    margin-top: 0;
  }

  .fotobox-hero,
  .about-hero {
    gap: 1.1rem;
    background-position: center top !important;
  }

  .fotobox-hero::before,
  .about-hero::before,
  .fotobox-hero::after,
  .about-hero::after {
    display: none;
  }

  .fotobox-hero-copy,
  .about-hero-copy {
    max-width: 100%;
    padding: .95rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    background: rgba(3,5,7,.56);
    backdrop-filter: blur(12px);
  }

  .fotobox-hero-panel {
    min-height: auto;
    justify-items: stretch;
  }

  .booth-scan-card,
  .about-mission-card {
    width: 100%;
    min-height: 250px;
    border-radius: 20px;
  }

  .booth-status {
    width: 100%;
    margin: .65rem 0 0;
    justify-content: center;
    white-space: normal;
  }

  .about-signal-row span {
    width: 100%;
    text-align: center;
  }

  .about-image-stack {
    display: none;
  }

  .about-copy-card,
  .about-image-stack {
    min-height: auto;
    border-radius: 20px;
  }

  .booth-flow-card li {
    align-items: flex-start;
    line-height: 1.4;
  }

  .contact-showcase {
    gap: 1rem;
  }

  .contact-form,
  .config-form,
  .chat-field-grid,
  .chat-code-row,
  .verify-row,
  .distance-row,
  .send-row,
  .config-action-row {
    grid-template-columns: 1fr !important;
  }

  input,
  textarea,
  select {
    min-height: 46px;
    font-size: 16px;
  }

  textarea {
    min-height: 120px;
  }

  .map-frame-wrap iframe,
  .route-card .map-frame-wrap iframe {
    min-height: 280px;
  }

  .map-meta {
    padding: 1rem;
  }

  .config-modal.open {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .config-dialog {
    width: calc(100vw - 16px);
    height: auto;
    min-height: calc(100svh - 16px);
    max-height: none;
    margin: 8px auto;
    border-radius: 20px;
    overflow: visible;
  }

  .config-close {
    top: 10px;
    right: 10px;
    z-index: 5;
  }

  .config-visual {
    position: relative;
    min-height: 210px;
    padding: 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .config-visual h3 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
    line-height: 1.05;
  }

  .config-feature-stage {
    min-height: 110px;
  }

  .config-device,
  .config-benefits {
    display: none;
  }

  .config-form {
    max-height: none;
    overflow: visible;
    padding: .85rem;
  }

  .config-panel {
    padding: .9rem;
    border-radius: 16px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: .65rem;
    padding: .85rem 1rem calc(.85rem + env(safe-area-inset-bottom));
    text-align: left;
  }

  .site-footer p {
    margin: 0;
    line-height: 1.4;
  }

  .footer-links {
    width: 100%;
    justify-content: flex-start;
    gap: .75rem;
    flex-wrap: wrap;
  }

  .footer-links a {
    padding: .35rem 0;
  }

  .scroll-top-btn {
    right: 84px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }

  .filmly-chat {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
  }

  body.is-near-footer .scroll-top-btn {
    bottom: calc(88px + env(safe-area-inset-bottom));
  }

  body.is-near-footer .filmly-chat {
    bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .filmly-chat-launcher {
    width: 58px;
    height: 58px;
  }

  .filmly-chat-panel {
    right: -4px;
    bottom: 72px;
    width: calc(100vw - 20px);
    height: min(640px, calc(100svh - 96px));
    border-radius: 20px;
  }

  .filmly-chat-head,
  .filmly-chat-messages,
  .filmly-chat-verify,
  .filmly-chat-suggestions,
  .filmly-chat-form {
    padding-left: .8rem;
    padding-right: .8rem;
  }

  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: auto;
    max-height: calc(100svh - 20px);
    overflow-y: auto;
    grid-template-columns: 1fr;
    padding: .9rem;
    border-radius: 20px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .55rem;
  }

  #legalContent {
    max-width: 100%;
    white-space: pre-wrap;
    word-break: break-word;
    font-size: .96rem;
    line-height: 1.68;
  }
}

@media (max-width: 430px) {
  .hero-content h1,
  .album-hero h1,
  .fotobox-hero h1,
  .about-hero h1,
  .video-hero-panel h1 {
    font-size: clamp(1.95rem, 11vw, 2.75rem);
    line-height: 1.1;
  }

  .section-head h2,
  .booth-flow-card h2,
  .about-copy-card h2 {
    font-size: clamp(1.85rem, 10vw, 2.65rem);
    line-height: 1.08;
  }

  .section {
    padding-left: .85rem;
    padding-right: .85rem;
  }

  .hero,
  .fotobox-hero,
  .about-hero {
    padding-left: .85rem;
    padding-right: .85rem;
  }

  .hero-stats article,
  .studio-grid article,
  .experience-card,
  .booth-feature-grid article,
  .about-capability-grid article,
  .contact.card,
  .map-card,
  .price-card {
    padding: .9rem;
  }

  .filmly-chat-panel {
    width: calc(100vw - 16px);
    height: min(620px, calc(100svh - 92px));
  }
}
