/* ===========================================================
   WOWADS — holografische Displays
   Palette (OKLCH): bg / ink / muted / accent
   =========================================================== */
:root {
  --bg:        oklch(0.16 0.024 248);
  --bg-soft:   oklch(0.20 0.026 248);
  --bg-deep:   oklch(0.12 0.020 248);
  --ink:       oklch(0.95 0.012 240);
  --muted:     oklch(0.66 0.022 240);
  --line:      oklch(0.32 0.025 248);
  --accent:    oklch(0.80 0.145 205);
  --accent-dim:oklch(0.66 0.115 205);

  --maxw: 1240px;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --r: 14px;

  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.accent { color: var(--accent); }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; }

/* ---------- atmospheric layers ---------- */
.spotlight {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 18%),
              oklch(0.80 0.145 205 / 0.10), transparent 70%);
  transition: opacity .4s ease; opacity: 0;
}
.grain {
  position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad);
  transition: background .4s ease, backdrop-filter .4s ease, padding .4s ease;
}
.nav.is-stuck {
  background: oklch(0.14 0.02 248 / 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding-top: .8rem; padding-bottom: .8rem;
}
.nav__brand {
  font-family: var(--display); font-weight: 700; font-size: 1.15rem;
  letter-spacing: 0.04em; display: flex; align-items: center; gap: .55rem;
}
.nav__dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 12px 2px var(--accent-dim);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(.78)} }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); font-size: .95rem; }
.nav__links a { color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  color: var(--ink) !important; border: 1px solid var(--line);
  padding: .5rem 1rem; border-radius: 100px; transition: border-color .2s, background .2s;
}
.nav__cta:hover { border-color: var(--accent); background: oklch(0.80 0.145 205 / 0.08); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 500; font-size: .98rem;
  padding: .85rem 1.6rem; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: transform .25s ease, background .25s, border-color .25s, color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--accent); color: oklch(0.14 0.03 248); }
.btn--solid:hover { background: oklch(0.86 0.145 205); }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- shared section bits ---------- */
.eyebrow, .thesis__eyebrow, .rows__eyebrow {
  font-family: var(--display); font-size: .8rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent-dim);
}

/* ---------- 1. HERO ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 0 var(--pad); overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero__halo {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 22% 50%, oklch(0.10 0.02 248 / 0.92), transparent 60%),
    linear-gradient(to top, var(--bg) 2%, transparent 32%),
    linear-gradient(to right, oklch(0.10 0.02 248 / 0.7), transparent 55%);
}
.hero__inner { position: relative; z-index: 3; max-width: 760px; }
.hero__title {
  font-size: clamp(2.8rem, 8vw, 6.4rem); margin: 1.1rem 0 1.4rem;
  text-shadow: 0 8px 60px oklch(0.08 0.02 248 / 0.8);
}
.hero__lede { font-size: clamp(1.05rem, 1.4vw, 1.35rem); color: var(--ink); max-width: 30ch; opacity: .9; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero__scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-family: var(--display); font-size: .72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll i { width: 1px; height: 42px; background: linear-gradient(var(--accent), transparent); animation: drop 2s ease-in-out infinite; }
@keyframes drop { 0%{transform:scaleY(0);transform-origin:top} 45%{transform:scaleY(1);transform-origin:top} 55%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ---------- 2. THESIS ---------- */
.thesis {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(7rem, 16vh, 12rem) var(--pad);
  text-align: center;
}
.thesis__line {
  font-size: clamp(2.4rem, 6.5vw, 5.2rem); margin: 1.4rem auto 1.6rem; max-width: 16ch;
}
.thesis__line .word { display: inline-block; }
.thesis__sub { color: var(--muted); max-width: 52ch; margin: 0 auto; font-size: clamp(1.05rem,1.3vw,1.25rem); }

/* ---------- 3. FEATURES ---------- */
.features { max-width: var(--maxw); margin: 0 auto; padding: 2rem var(--pad) 4rem; display: flex; flex-direction: column; gap: clamp(5rem, 12vh, 9rem); }
.feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.feature--reverse .feature__media { order: 2; }
.feature__media { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.feature__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.feature__media:hover img { transform: scale(1.04); }
.caption {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  font-family: var(--display); font-size: .92rem; letter-spacing: .04em;
  background: oklch(0.12 0.02 248 / 0.55); backdrop-filter: blur(6px);
  padding: .45rem .85rem; border-radius: 100px; border: 1px solid var(--line);
}
.feature__no { font-family: var(--display); color: var(--accent-dim); font-size: 1rem; letter-spacing: .2em; margin-bottom: .8rem; }
.feature__text h3 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin-bottom: 1.1rem; }
.feature__text p { color: var(--muted); margin-bottom: 1rem; max-width: 42ch; }

/* ---------- 4. GALLERY BAND ---------- */
.band {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem,8vh,6rem) var(--pad);
  display: grid; grid-template-columns: 0.62fr 1fr; gap: clamp(1rem, 2.4vw, 1.8rem); align-items: stretch;
}
.band__media { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.band__media--tall img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.band__media--wide video { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.band__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.2rem; font-family: var(--display); font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink);
  background: linear-gradient(to top, oklch(0.10 0.02 248 / 0.85), transparent);
}
.band__cap span:last-child { color: var(--accent); }

/* ---------- 5. NUMBERED ROWS ---------- */
.rows { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,10vh,7rem) var(--pad); }
.rows__eyebrow { display: block; margin-bottom: 2.5rem; }
.row {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.2rem, 4vw, 3.5rem);
  align-items: baseline; padding: 2rem 0; border-top: 1px solid var(--line);
}
.row:last-child { border-bottom: 1px solid var(--line); }
.row__no { font-family: var(--display); font-size: clamp(1.4rem,3vw,2.2rem); color: var(--accent); font-weight: 700; }
.row__body h3 { font-size: clamp(1.4rem, 2.6vw, 2.1rem); margin-bottom: .6rem; }
.row__body p { color: var(--muted); max-width: 56ch; }
.row__tag {
  font-family: var(--display); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); padding: .4rem .8rem; border-radius: 100px; white-space: nowrap;
}

/* ---------- 6. CTA / CONTACT ---------- */
.cta { max-width: 920px; margin: 0 auto; padding: clamp(5rem,12vh,8rem) var(--pad); }
.cta__head { text-align: center; margin-bottom: 3rem; }
.cta__head h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); margin: 1rem 0; }
.cta__sub { color: var(--muted); max-width: 48ch; margin: 0 auto; }

.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .5rem; }
.field span { font-family: var(--display); font-size: .82rem; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px;
  padding: .9rem 1rem; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: oklch(0.50 0.02 240); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px oklch(0.80 0.145 205 / 0.15);
}
.form__submit { margin-top: .4rem; justify-self: start; }
.form__note { font-size: .92rem; color: var(--accent); min-height: 1.2em; }
.form__note.is-error { color: oklch(0.72 0.16 25); }

.cta__direct {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; justify-content: center;
  margin-top: 3rem; padding-top: 2.4rem; border-top: 1px solid var(--line);
  font-family: var(--display); font-size: 1rem;
}
.cta__direct a { color: var(--ink); transition: color .2s; }
.cta__direct a:hover { color: var(--accent); }
.cta__direct span { color: var(--muted); }

/* ---------- 7. FOOTER ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-deep); overflow: hidden; }
.footer__marquee { padding: 2.2rem 0; border-bottom: 1px solid var(--line); }
.footer__track {
  display: inline-flex; gap: 2rem; white-space: nowrap; will-change: transform;
  font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem, 5vw, 3.4rem);
  color: var(--ink); animation: marquee 26s linear infinite;
}
.footer__track .accent { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.footer__grid {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem,7vh,4.5rem) var(--pad) 2rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem;
}
.footer__brand { font-family: var(--display); font-weight: 700; font-size: 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.footer__brand .nav__dot { display: inline-block; }
.footer__brand p { font-family: var(--body); font-weight: 400; font-size: .95rem; color: var(--muted); max-width: 34ch; margin-top: .4rem; }
.footer__nav, .footer__social { display: flex; flex-direction: column; gap: .7rem; color: var(--muted); }
.footer__nav a, .footer__social a { color: var(--muted); transition: color .2s; width: fit-content; }
.footer__nav a:hover, .footer__social a:hover { color: var(--accent); }
.footer__legal {
  max-width: var(--maxw); margin: 0 auto; padding: 1.6rem var(--pad);
  border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .85rem; color: var(--muted);
}
.footer__legal a:hover { color: var(--accent); }

/* ---------- reveal animation base (only hide when JS can animate) ---------- */
html.js [data-reveal], html.js [data-reveal-words] .word { opacity: 0; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .feature, .band { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: 0; }
  .feature__media img { aspect-ratio: 16/11; }
  .band__media--tall img, .band__media--wide video { min-height: 300px; }
  .row { grid-template-columns: auto 1fr; }
  .row__tag { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.6rem; }
}
@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
  .hero__lede { max-width: none; }
  .cta__direct { gap: 1rem; flex-direction: column; align-items: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal], [data-reveal-words] .word { opacity: 1 !important; transform: none !important; }
}

/* ===========================================================
   DISPLAYS PRODUCT SHOWCASE (horizontal)
   =========================================================== */
.show { padding: clamp(4rem, 10vh, 7rem) 0; overflow: hidden; }
.show__head {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2.4rem;
}
.show__head h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin: .9rem 0 .8rem; }
.show__sub { color: var(--muted); max-width: 46ch; }
.show__ctrls { display: flex; gap: .6rem; flex-shrink: 0; }
.show__btn {
  width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  font-size: 1.2rem; transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.show__btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.show__track {
  display: flex; gap: 20px; overflow-x: auto;
  padding: .5rem var(--pad) 1.5rem; scroll-padding-inline: var(--pad); cursor: grab;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.show__track.is-grab { cursor: grabbing; }
/* touch devices keep snap for a clean swipe; desktop uses continuous auto-scroll */
@media (pointer: coarse) { .show__track { scroll-snap-type: x mandatory; } .pcard { scroll-snap-align: start; } }
.show__track::-webkit-scrollbar { height: 7px; }
.show__track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 100px; }
.show__track::-webkit-scrollbar-thumb:hover { background: var(--accent-dim); }

.pcard {
  flex: 0 0 auto; width: clamp(258px, 30vw, 340px); scroll-snap-align: start;
  background: transparent; border: 0; perspective: 1500px;
}
/* 3D flip: front = generated visual, back = real photo */
.pcard__inner {
  position: relative; width: 100%; transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.pcard.is-flippable:hover .pcard__inner,
.pcard.is-flipped .pcard__inner { transform: rotateY(180deg); }
.pcard__front, .pcard__back {
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  background: var(--bg-soft);
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
}
.pcard__front { position: relative; display: flex; flex-direction: column; transition: border-color .3s; }
.pcard.is-flippable:hover .pcard__front { border-color: var(--accent-dim); }
.pcard.is-flippable .pcard__front::after {
  content: "▶ Video"; position: absolute; top: .8rem; right: .8rem; z-index: 3;
  font-family: var(--display); font-size: .68rem; letter-spacing: .08em; color: var(--ink);
  background: oklch(0.12 0.02 248 / 0.6); backdrop-filter: blur(6px);
  border: 1px solid var(--line); padding: .3rem .6rem; border-radius: 100px;
  opacity: .85; transition: opacity .2s, background .2s;
}
.pcard.is-flippable:hover .pcard__front::after { opacity: 0; }
.pcard__back {
  position: absolute; inset: 0; transform: rotateY(180deg);
  display: flex; align-items: center; justify-content: center;
}
.pcard__back { background: #000; }
.pcard__realimg, .pcard__realhint { display: none; } /* ponytail: photo back replaced by video */
/* video fills the card frame (cover-crop), iframe injected by app.js */
.pcard__back iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  height: 100%; aspect-ratio: 16 / 9; min-width: 100%; border: 0; pointer-events: none;
}
.pcard__back video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.pcard__backcap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1rem 1.2rem; font-family: var(--display); font-size: .9rem; color: var(--ink);
  background: linear-gradient(to top, oklch(0.10 0.02 248 / 0.85), transparent);
}
.pcard__media { aspect-ratio: 3/4; overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; }
.pcard__body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.pcard__tag {
  align-self: flex-start; font-family: var(--display); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent-dim);
  padding: .3rem .65rem; border-radius: 100px;
}
.pcard__body h3 { font-size: 1.45rem; }
.pcard__body > p { color: var(--muted); font-size: .96rem; flex: 1; }
.pcard__spec { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .3rem; }
.pcard__spec li {
  font-family: var(--display); font-size: .76rem; color: var(--ink);
  background: var(--bg-deep); border: 1px solid var(--line); padding: .32rem .6rem; border-radius: 8px;
}
.show__hint {
  max-width: var(--maxw); margin: .4rem auto 0; padding: 0 var(--pad);
  font-family: var(--display); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}

/* ===========================================================
   SMART ASSISTANT
   =========================================================== */
.asst-launch {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 60;
  display: inline-flex; align-items: center; gap: .6rem; cursor: pointer;
  font-family: var(--display); font-weight: 500; font-size: .95rem; color: oklch(0.14 0.03 248);
  background: var(--accent); border: none; padding: .8rem 1.25rem; border-radius: 100px;
  box-shadow: 0 8px 30px oklch(0.08 0.05 248 / 0.5), 0 0 0 1px oklch(0.80 0.145 205 / 0.3);
  transition: transform .25s ease, opacity .25s, box-shadow .25s;
}
.asst-launch:hover { transform: translateY(-3px); }
.asst-launch.is-hidden { opacity: 0; pointer-events: none; transform: translateY(10px) scale(.9); }
.asst-launch__dot { width: 9px; height: 9px; border-radius: 50%; background: oklch(0.14 0.03 248); animation: pulse 2s ease-in-out infinite; }

.asst[hidden] { display: none !important; } /* truly hide when closed so it never blocks the launch button */
.asst {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 61;
  width: min(380px, calc(100vw - 2rem)); height: min(580px, calc(100svh - 2rem));
  display: flex; flex-direction: column;
  background: var(--bg-deep); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 70px oklch(0.05 0.03 248 / 0.7);
  transform-origin: bottom right;
}
/* Closed = display:none via [hidden]. Open = visible by default; GSAP only
   adds the fade/slide flourish, so the panel shows even if GSAP is unavailable. */
.asst__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.asst__id { display: flex; align-items: center; gap: .7rem; }
.asst__id strong { font-family: var(--display); font-size: 1rem; display: block; }
.asst__status { font-size: .76rem; color: var(--accent-dim); }
.asst__avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 35% 30%, var(--accent), oklch(0.40 0.10 240) 70%, var(--bg-deep));
  box-shadow: 0 0 16px oklch(0.80 0.145 205 / 0.5); }
.asst__close { background: none; border: none; color: var(--muted); font-size: 1.6rem; line-height: 1; cursor: pointer; transition: color .2s; }
.asst__close:hover { color: var(--ink); }

.asst__log { flex: 1; overflow-y: auto; padding: 1.1rem; display: flex; flex-direction: column; gap: .6rem; scrollbar-width: thin; scrollbar-color: var(--line) transparent; }
.asst__msg { max-width: 85%; padding: .7rem .9rem; border-radius: 14px; font-size: .94rem; line-height: 1.5; white-space: pre-wrap; }
.asst__msg--bot { align-self: flex-start; background: var(--bg-soft); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.asst__msg--user { align-self: flex-end; background: var(--accent); color: oklch(0.14 0.03 248); border-bottom-right-radius: 4px; }
.asst__typing { display: flex; gap: 4px; align-items: center; }
.asst__typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: blink 1.2s infinite ease-in-out; }
.asst__typing span:nth-child(2) { animation-delay: .2s; }
.asst__typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,80%,100%{opacity:.3;transform:translateY(0)} 40%{opacity:1;transform:translateY(-3px)} }

.asst__chips { display: flex; flex-wrap: wrap; gap: .45rem; padding: 0 1.1rem .6rem; }
.asst__chip {
  font-family: var(--display); font-size: .82rem; cursor: pointer;
  background: transparent; color: var(--accent); border: 1px solid var(--accent-dim);
  padding: .45rem .8rem; border-radius: 100px; transition: background .2s, color .2s;
}
.asst__chip:hover { background: var(--accent); color: oklch(0.14 0.03 248); }

.asst__input { display: flex; gap: .5rem; padding: .8rem; border-top: 1px solid var(--line); background: var(--bg-soft); }
.asst__input input { flex: 1; background: var(--bg-deep); border: 1px solid var(--line); border-radius: 100px; padding: .7rem 1rem; color: var(--ink); font-family: var(--body); font-size: .94rem; }
.asst__input input:focus { outline: none; border-color: var(--accent); }
.asst__input button { width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; border: none; cursor: pointer; background: var(--accent); color: oklch(0.14 0.03 248); font-size: 1.1rem; transition: transform .2s; }
.asst__input button:hover { transform: translateY(-2px); }

@media (max-width: 560px) {
  .show__head { flex-direction: column; align-items: flex-start; }
  .asst { right: 0; bottom: 0; width: 100vw; height: 100svh; border-radius: 0; border: none; }
  .asst-launch__txt { display: inline; }
}

/* ===========================================================
   REFERENZEN / CASES
   =========================================================== */
.cases { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem,10vh,7rem) var(--pad); }
.cases__head { margin-bottom: 2.4rem; }
.cases__head h2 { font-size: clamp(2rem,5vw,3.4rem); margin-top: .8rem; }
.cases__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem,2.5vw,1.8rem); }
.case { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--bg-soft); transition: border-color .3s, transform .3s; }
.case:hover { border-color: var(--accent-dim); transform: translateY(-4px); }
.case__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.case__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* hover swaps the generated visual for the original event photo */
.case__real { opacity: 0; transition: opacity .5s ease; }
.case:hover .case__real { opacity: 1; }
.case__realtag {
  position: absolute; left: .9rem; bottom: .9rem; z-index: 2; opacity: 0;
  font-family: var(--display); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); background: oklch(0.12 0.02 248 / 0.6); backdrop-filter: blur(6px);
  border: 1px solid var(--line); padding: .3rem .6rem; border-radius: 100px;
  transition: opacity .3s ease .15s;
}
.case:hover .case__realtag { opacity: 1; }
.case__body { padding: 1.4rem 1.5rem 1.6rem; }
.case__meta { font-family: var(--display); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-dim); }
.case__body h3 { font-size: clamp(1.4rem,2.4vw,1.9rem); margin: .5rem 0 .7rem; }
.case__body p { color: var(--muted); }
.case__tag { display: inline-block; margin-top: 1rem; font-family: var(--display); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent-dim); padding: .3rem .65rem; border-radius: 100px; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq { max-width: 900px; margin: 0 auto; padding: clamp(3rem,8vh,6rem) var(--pad); }
.faq__head { margin-bottom: 2rem; }
.faq__head h2 { font-size: clamp(2rem,5vw,3.4rem); margin-top: .8rem; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.3rem 2.5rem 1.3rem 0; position: relative;
  font-family: var(--display); font-size: clamp(1.05rem,1.8vw,1.3rem); color: var(--ink); transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--accent); transition: transform .25s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { color: var(--muted); padding: 0 2.5rem 1.4rem 0; max-width: 70ch; }

/* ===========================================================
   TERMINBUCHUNG (Cal embed)
   =========================================================== */
.cta__cal { margin-top: 2.4rem; }
.cta__or { text-align: center; color: var(--muted); font-family: var(--display); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; position: relative; margin-bottom: 1.4rem; }
.cta__or span { background: var(--bg); padding: 0 1rem; position: relative; z-index: 1; }
.cta__or::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--line); }
.cta__calmount { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; min-height: 560px; background: var(--bg-soft); }
.cta__calmount iframe { width: 100%; min-height: 560px; border: 0; display: block; }

/* ===========================================================
   DATENSCHUTZ / LEGAL
   =========================================================== */
.legal { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem,7vh,5rem) var(--pad); border-top: 1px solid var(--line); }
.legal h2 { font-size: clamp(1.6rem,3.4vw,2.4rem); margin: .7rem 0 2rem; }
.legal__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.legal__item h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.legal__item p { color: var(--muted); font-size: .95rem; }
.legal__note { color: var(--muted); font-size: .88rem; margin-top: 1.8rem; }
.legal__note a { color: var(--accent); }
.legal a:hover { color: var(--accent); }

@media (max-width: 860px) {
  .cases__grid { grid-template-columns: 1fr; }
  .legal__grid { grid-template-columns: 1fr; gap: 1.4rem; }
}
