/* Map */
.mapCanvas {
  min-height: 260px;
  border: 1px dashed rgba(15,23,42,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.8);
  position: relative;
  overflow: hidden;
}
.mapCanvas.is-drawing {
  touch-action: none;
}
.mapStatus {
  font-size: 13px;
  color: var(--muted2);
  margin-top: 10px;
}
:root {
  --bg: #f3f7fb;
  --bg2:#e9f2ff;
  --card: #ffffff;
  --text: #0f172a;
  --muted: rgba(15, 23, 42, .74);
  --muted2: rgba(15, 23, 42, .58);
  --line: rgba(15, 23, 42, .12);
  --accent: #dc2626;
  --accent2: rgba(251,113,133,.55);
  --accent-rgb: 220, 38, 38;
  --accent-text: #06b6d4;
  --ok: #16a34a;
  --radius: 18px;
  --shadow: 0 18px 60px rgba(2, 6, 23, .10);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 18px 80px; }

.band {
  position: relative;
  z-index: 1;
}
.band::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}
.bandTop::before {
  background:
    radial-gradient(1200px 600px at 18% 0%, rgba(var(--accent-rgb), .10), transparent 60%),
    radial-gradient(900px 520px at 82% 4%, rgba(37,99,235,.10), transparent 55%),
    linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}
.bandMid::before {
  background:
    radial-gradient(780px 420px at 14% 20%, rgba(59,130,246,.12), transparent 65%),
    radial-gradient(820px 420px at 86% 12%, rgba(248,113,113,.12), transparent 60%),
    linear-gradient(180deg, #e5efff 0%, #f9fbff 100%);
}
.bandMid {
  padding-top: 28px;
}
.bandLower::before {
  background:
    radial-gradient(640px 320px at 20% 0%, rgba(14,116,144,.12), transparent 60%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}
.bandTop {
  padding-bottom: 48px;
}

/* Top bar */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0 26px;
  flex-wrap: wrap;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; letter-spacing: .2px;
}
.logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  padding: 6px;
  background: linear-gradient(140deg, rgba(255,255,255,.95), rgba(248,250,255,.4));
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 34px rgba(2,8,23,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo img,
.logo svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.topNav {
  display: flex; gap: 16px; align-items: center;
  color: var(--muted);
  font-weight: 800; font-size: 14px;
}
.topNavLink {
  position: relative;
  padding: 8px 6px;
  border-radius: 10px;
  transition: color .15s ease, background .15s ease;
}
.topNavLink:hover { color: #0f172a; background: rgba(15,23,42,.06); }
.topNavLink[aria-current="page"] { color: #0f172a; }

.navCta {
  margin-left: 6px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(var(--accent-rgb), .22);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .96), var(--accent2));
  color: #fff;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(var(--accent-rgb), .22);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.navCta:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(var(--accent-rgb), .26); border-color: rgba(var(--accent-rgb), .36); }
.navCta:focus-visible { outline: 2px solid rgba(var(--accent-rgb), .6); outline-offset: 3px; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 4px;
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
}

/* ONE hero card around both columns */
.hero{background:transparent; border:none; box-shadow:none;}
.heroGrid {
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .heroGrid { grid-template-columns: 1fr; }
}

.heroLeft {
  padding: 8px 6px;
}

.heroCard {
  margin-bottom: 56px;
}
@media (max-width: 640px) {
  .heroCard {
    margin-bottom: 40px;
  }
}

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(var(--accent-rgb), .10);
  border: 1px solid rgba(var(--accent-rgb), .22);
  color: rgba(15,23,42,.92);
  font-weight: 800; font-size: 12px;
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .12);
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.textAccent {
  color: var(--accent-text);
}

.rohdatenAccent {
  display: inline-block;
  font-weight: 800;
  transition: color .2s ease, -webkit-text-stroke .2s ease;
}
.rohGraphit { color: #475569; }
.rohSlate { color: #334155; }
.rohOutline {
  color: transparent;
  -webkit-text-stroke: 1.1px rgba(15,23,42,.85);
}
.rohFog { color: #94a3b8; }
.rohMuted { color: rgba(15,23,42,.62); }


.sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
  margin-top: 10px;
}

.ctaRow {
  display: flex; flex-wrap: wrap;
  gap: 12px; margin-top: 18px;
}
.btn {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.75);
  font-weight: 900; font-size: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(15,23,42,.22); background: rgba(255,255,255,.92); }
.btnPrimary {
  background: linear-gradient(135deg, rgba(15,23,42,.94), rgba(15,23,42,.78));
  color:#fff;
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(2,6,23,.16);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr; }
}
.stat {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
  padding: 12px;
}
.stat b { font-size: 18px; display: block; }
.stat span { color: var(--muted2); font-weight: 700; font-size: 12px; }

/* Viewer */
.viewerWrap {
  position: relative;
  padding: 0;
}
.viewerBg {
  position: absolute;
  inset: 0;
  background-image: url('gisbackground.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 640px) {
  .viewerBg { display: none; }
}

.frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: none;
  z-index: 1;
}

/* Base image */
.imgBase {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: contain;
  object-position: top center;
  user-select: none;
  pointer-events: none;
}

/* Wipe overlay image */
.imgWipe {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: contain;
  object-position: top center;
  user-select:none;
  pointer-events:none;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}
.imgWipe.wiping {
  animation: wipeIn 0.4s ease-in-out forwards;
}
@keyframes wipeIn {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

.chip {
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.78);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}
.chip .stateDot {
  width: 7px; height: 7px; border-radius: 999px; background: var(--ok);
  box-shadow: 0 0 0 4px rgba(22,163,74,.10);
}
.chip.paused .stateDot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .12);
}

/* Thumbnails */
.thumbs {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15,23,42,.65);
  backdrop-filter: blur(8px);
  pointer-events: auto;
}
.thumb {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(59,130,246,.6);
  background: rgba(59,130,246,.2);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  opacity: .8;
  transition: transform .12s ease, opacity .12s ease, background .12s ease, border-color .12s ease;
}
.thumb:hover { transform: translateY(-1px); opacity: 1; }
.thumb.active {
  opacity: 1;
  background: rgba(59,130,246,1);
  border-color: rgba(59,130,246,1);
}
.thumb img { width:100%; height:100%; object-fit: cover; display:block; opacity:0; }

/* Sections */
.sectionBlock {
  margin-top: 54px;
}
.sectionBlock:first-of-type {
  margin-top: 90px;
}
.sectionTitle {
  margin: 0 0 18px;
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -0.02em;
}
.versionBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted2);
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 999px;
  padding: 6px 12px;
  margin: 4px 0 16px;
}
.sectionGrid,
.section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 980px) {
  .sectionGrid,
  .section { grid-template-columns: 1fr; }
}

#leistungen {
  margin-top: 56px;
}
#demo {
  margin-bottom: 50px;
}
#about {
  margin-top: 50px;
}
#workflow {
  margin-bottom: 50px;
}
.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
}
.card h3 { margin: 0 0 8px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }

.serviceMedia {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 6px);
  border: 1px dashed rgba(15,23,42,.22);
  background: rgba(15,23,42,.04);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted2);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.serviceMedia.hasImage {
  border: none;
  background: none;
  padding: 0;
  overflow: hidden;
}
.serviceMedia.hasImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
  display: block;
}

.servicesIntro {
  margin-bottom: 18px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 22px rgba(2,6,23,.06);
  color: var(--muted);
  line-height: 1.65;
  display: grid;
  gap: 10px;
}
.servicesIntro ul {
  margin: 8px 0 0 18px;
  padding: 0;
  color: var(--muted2);
  font-weight: 700;
  line-height: 1.55;
}
.servicesIntro ul li { margin-bottom: 6px; }

.videoPlaceholder {
  border-radius: var(--radius);
  border: 1px dashed rgba(15,23,42,.22);
  background: rgba(255,255,255,.6);
  padding: clamp(40px, 12vw, 120px) 20px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--muted2);
}
.videoFrame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.14);
  box-shadow: 0 20px 60px rgba(2,6,23,.14);
  background: rgba(0,0,0,.6);
}
.videoFrame video {
  display: block;
  width: 100%;
  height: auto;
}

.process {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
@media (max-width: 820px) {
  .process {
    flex-direction: column;
  }
}
.processStep {
  flex: 1;
  min-width: 220px;
  position: relative;
  padding: 48px 18px 24px 110px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.8);
  box-shadow: 0 10px 30px rgba(2,6,23,.05);
}
.processStep:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 58px;
  top: 34px;
  bottom: -18px;
  width: 2px;
  background: rgba(15,23,42,.12);
}
@media (min-width: 820px) {
  .process {
    flex-wrap: nowrap;
  }
  .processStep {
    padding: 32px 24px 24px 110px;
  }
  .processStep:not(:last-child)::after {
    left: auto;
    right: -36px;
    top: 50%;
    bottom: auto;
    width: 72px;
    height: 2px;
    transform: translateY(-50%);
  }
  .stepNumber {
    left: 36px;
    top: 26px;
  }
}
.processStep h3 {
  margin-top: 6px;
  font-size: 16px;
}
.processStep p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.stepNumber {
  position: absolute;
  left: 40px;
  top: 26px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15,23,42,.9);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(2,6,23,.18);
}

.aboutText {
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.aboutSplit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin-top: 18px;
}
@media (max-width: 900px) {
  .aboutSplit {
    grid-template-columns: 1fr;
  }
}
.aboutColumn,
.teamColumn {
  width: 100%;
}
@media (max-width: 900px) {
  .teamColumn {
    margin-top: 16px;
  }
}

.aboutCard {
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.12);
  background: linear-gradient(135deg, rgba(13,148,136,.06), rgba(15,23,42,.03));
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 14px 40px rgba(2,6,23,.08);
}

.aboutGrid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(16px, 4vw, 26px);
  align-items: start;
}
@media (max-width: 860px) {
  .aboutGrid { grid-template-columns: 1fr; }
}

.aboutIntro { font-size: 16px; }
.aboutIntro p:first-child { font-weight: 800; color: #0f172a; }

.aboutDetail { background: rgba(255,255,255,.85); padding: 14px 16px; border-radius: 14px; border: 1px solid rgba(15,23,42,.08); box-shadow: 0 12px 28px rgba(2,6,23,.06); }
.aboutDetail p { margin-bottom: 10px; }
.aboutDetail p:last-child { margin-bottom: 12px; }

.aboutChips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(13,148,136,.10);
  color: #0f172a;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(13,148,136,.25);
  box-shadow: 0 8px 18px rgba(13,148,136,.14);
}

.teamGrid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fileList {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.fileItem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(22,163,74,.06);
}

.fileCheck {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(22,163,74,.15);
  border: 1px solid rgba(22,163,74,.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fileCheck::after {
  content: '';
  width: 8px;
  height: 4px;
  border-left: 2px solid #16a34a;
  border-bottom: 2px solid #16a34a;
  transform: rotate(-45deg);
  margin-top: -1px;
}

.fileNote {
  color: var(--muted2);
  font-weight: 700;
}

.formStatus {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.formStatus.error { color: #dc2626; }

.formStatus.overlay {
  position: fixed;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(220,38,38,.25);
  box-shadow: 0 16px 46px rgba(0,0,0,.16);
  padding: 16px 18px;
  border-radius: 14px;
  z-index: 9999;
  max-width: min(480px, 92vw);
  font-weight: 800;
  font-size: 17px;
}

.formStatus.overlay:not(.error) {
  border-color: rgba(22,163,74,.35);
  box-shadow: 0 18px 52px rgba(22,163,74,.18);
}
.contactMatrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 900px) {
  .contactMatrix {
    grid-template-columns: 1fr;
  }
}
.formPanel {
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.85);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(2,6,23,.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 320px;
}
.formPanel h3 {
  margin: 0;
  font-size: 18px;
}
.kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted2);
}
.contactPanel .kicker {
  margin-bottom: 26px;
}
.projectPanel .kicker,
.uploadPanel .kicker,
.mapPanel .kicker {
  margin-bottom: 14px;
}
.uploadPanel .optionalHeader .kicker {
  padding-left: 0;
}

.uploadPanel .optionalHeader .kicker::before,
.uploadPanel .optionalHeader .kicker::after {
  content: none;
  display: none;
}

.cookieBanner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr);
  padding: 14px 18px;
  background: #ffffff;
  color: #0f172a;
  border-top: 1px solid rgba(15,23,42,.12);
  border-radius: 0;
  box-shadow: 0 -8px 30px rgba(15,23,42,.12);
  z-index: 9999;
}
.cookieMain { display: grid; gap: 8px; }
.cookieTitle { font-weight: 900; letter-spacing: .04em; text-transform: uppercase; font-size: 12px; color: rgba(15,23,42,.68); }
.cookieText {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15,23,42,.78);
}
.cookieText a { color: #0f172a; font-weight: 800; text-decoration: underline; }
.cookieToggles { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.cookieToggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.08);
}
.cookieToggle input { margin-top: 4px; }
.cookieToggle strong { color: #0f172a; font-size: 13px; }
.cookieToggle small { display: block; color: rgba(15,23,42,.65); font-size: 11px; margin-top: 4px; }

.cookieActions { display: flex; gap: 10px; align-items: center; justify-content: flex-end; flex-wrap: wrap; }
.cookieBtn {
  padding: 11px 15px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  background: #ffffff;
  font-weight: 800;
  cursor: pointer;
  color: #0f172a;
}
.cookieBtn.primary {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  box-shadow: 0 12px 26px rgba(15,23,42,.16);
}
.cookieBtn.ghost { background: transparent; border-color: transparent; color: rgba(15,23,42,.72); text-decoration: underline; }
.cookieBtn:focus-visible { outline: 2px solid #0f172a; outline-offset: 2px; }
@media (max-width: 820px) {
  .cookieBanner { padding: 14px 12px; }
  .cookieActions { flex-direction: column; align-items: stretch; }
  .cookieBtn { width: 100%; text-align: center; }
}
.contactPanel {
  min-height: 360px;
}
.projectPanel {
  min-height: 360px;
}
.projectPanel textarea {
  min-height: 220px;
  flex: 1;
}
.uploadPanel {
  min-height: 360px;
}
.uploadPanel .dropZone {
  min-height: 220px;
  justify-content: center;
}
.contactForm label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted2);
  display: block;
  margin-bottom: 6px;
}
.requiredStar {
  color: var(--accent);
  margin-left: 4px;
}
.inputNote {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.uploadField {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fileInput {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
.dropZone {
  position: relative;
  border: 1px dashed rgba(15,23,42,.25);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
dropZone??
```}