:root{
  --bg0:#060a10;
  --bg1:#071521;

  --panelA: rgba(255,255,255,.06);
  --panelB: rgba(255,255,255,.03);
  --line: rgba(255,255,255,.10);

  --text:#eaf2ff;
  --muted:#a8b3c7;

  /* Mehr Blau, weniger Grün */
  --brand:#1fe0ff;   /* cyan-blau */
  --brand2:#3b82f6;  /* blau */
  --brand3:#22c55e;  /* nur als Akzent, wenn gebraucht */

  --shadow: 0 22px 70px rgba(0,0,0,.55);
  --radius: 22px;
}

*{ box-sizing:border-box }
html,body{ height:100% }

body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);

  background:
    radial-gradient(1100px 600px at 15% 5%, rgba(31,224,255,.12), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(59,130,246,.14), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

.wrap{
  width:min(980px, 94vw);
  margin: 22px auto 34px;
  display:flex;
  flex-direction:column;
  gap: 16px;
  padding-bottom: 18px;
}

.top{
  padding: 16px 16px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panelA), var(--panelB));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-dot{
  width:14px;
  height:14px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 6px rgba(31,224,255,.08);
}

.brand-name{
  font-weight: 850;
  letter-spacing: .06em;
}

.brand-sub{
  color: var(--muted);
  font-size: .95rem;
  margin-top: 2px;
}

.meta{
  margin-top: 10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.stepinfo{
  color: var(--muted);
  font-weight: 750;
}

.progress{
  position:relative;
  height: 12px;
  width:100%;
  margin-top: 12px;
  border-radius: 999px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
}

/* BAR: flüssig + Schimmer + Bounce-Trigger */
.bar{
  height: 100%;
  width: 0%;
  border-radius: 999px;

  background: linear-gradient(90deg, var(--brand), var(--brand2), var(--brand));
  background-size: 200% 100%;

  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
  animation: flow 3s linear infinite;
  transform-origin: left center;
  will-change: width, transform, filter;
}

/* Schimmer */
@keyframes flow{
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* MINI-BOUNCE beim Ankommen */
.bar.bounce{
  animation:
    flow 3s linear infinite,
    arrive 520ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

@keyframes arrive{
  0%   { transform: scaleX(1); filter: brightness(1); }
  55%  { transform: scaleX(1.035); filter: brightness(1.10); }
  100% { transform: scaleX(1); filter: brightness(1); }
}

.card{
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: 20px 18px;
  display:none;
}

.card.active{ display:block; }

h1{
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3.4vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p{ margin: 10px 0; color: rgba(234,242,255,.92); line-height: 1.55; }

.quote{
  font-weight: 820;
  color: rgba(234,242,255,.98);
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(31,224,255,.25);
  background: rgba(31,224,255,.08);
}

.hint{
  color: var(--muted);
  font-size: .98rem;
}

.core{
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(31,224,255,.22);
  background: rgba(59,130,246,.08);
}

.micro{
  margin-top: 14px;
  color: rgba(168,179,199,.95);
  font-size: .95rem;
}

.bullets{
  margin: 10px 0 8px;
  padding-left: 20px;
  color: rgba(234,242,255,.92);
}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 8px;
}

label{
  display:flex;
  flex-direction:column;
  gap: 7px;
  font-weight: 700;
  color: rgba(234,242,255,.9);
}

input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline: none;
}

input::placeholder{ color: rgba(168,179,199,.75); }

input:focus, select:focus, textarea:focus{
  border-color: rgba(31,224,255,.45);
  box-shadow: 0 0 0 4px rgba(31,224,255,.12);
}

.actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  margin-top: 14px;
}

.btn{
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: .01em;
  color: #061018;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 14px 38px rgba(0,0,0,.35);
}

.btn:active{ transform: translateY(1px); }

.btn.ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: none;
}

.cal-wrap{
  margin-top: 14px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
}

#calendly-inline{
  min-height: 760px;
}

.foot{
  text-align:center;
  color: rgba(168,179,199,.9);
  font-size: .95rem;
  padding-top: 8px;
}

@media (max-width: 720px){
  .grid{ grid-template-columns: 1fr; }
  .top{ padding: 14px 14px 12px; }
  .card{ padding: 18px 16px; }
  #calendly-inline{ min-height: 820px; }
}
