/* ============================================================
   JumpingPoint — Parkseite / "Diese Seite ist im Aufbau"
   Eigenständiges Stylesheet (keine Grav-/Theme-Abhängigkeit).
   Farb- und Typo-Tokens sind identisch zum Theme
   user/themes/jumpingpoint, damit die Parkseiten optisch
   zum Hauptauftritt passen.
   ============================================================ */

:root {
  --jp-ink:        #0d1b33;
  --jp-navy:       #0a1733;
  --jp-navy-deep:  #0c2a63;
  --jp-blue:       #1f5fe0;
  --jp-blue-soft:  #eaf1ff;
  --jp-blue-light: #5f93f5;
  --jp-orange:     #f5821f;
  --jp-orange-dk:  #e0730f;
  --jp-muted:      #5b6b86;
  --jp-muted-dark: #c3d0ea;
  --jp-line:       #eef1f8;
  --jp-line-2:     #e9edf6;
  --jp-surface:    #f4f7fc;
  --jp-field:      #f7f9fd;
  --jp-field-line: #e2e8f4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--jp-ink);
  background: #fff;
  overflow-x: hidden;
}
::selection { background: var(--jp-blue); color: #fff; }
a { text-decoration: none; color: inherit; }

@keyframes jpfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes jpfade  { from { opacity: 0; } to { opacity: 1; } }
@keyframes jppop   { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes jpspin  { to { transform: rotate(360deg); } }

#jp-root { min-height: 100vh; display: flex; flex-direction: column; }

/* ---------- shared bits ---------- */
.jp-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; flex: none; }
.jp-dot--orange { background: var(--jp-orange); }
.jp-dot--blue   { background: #279fe5; }

.jp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 700; border-radius: 9px; cursor: pointer;
  border: none; transition: background .2s, color .2s;
}
.jp-btn-blue {
  background: var(--jp-blue); color: #fff; font-size: 14.5px; padding: 13px 22px;
  box-shadow: 0 10px 22px rgba(31,95,224,.28);
}
.jp-btn-blue:hover { background: var(--jp-navy-deep); }
.jp-btn-ghost {
  background: transparent; color: var(--jp-blue); font-size: 15px; padding: 12px 22px;
  border: 1.5px solid var(--jp-blue);
}
.jp-btn-ghost:hover { background: var(--jp-blue); color: #fff; }

/* ---------- top bar ---------- */
.jp-topbar { background: var(--jp-navy); color: var(--jp-muted-dark); font-size: 13.5px; }
.jp-topbar-inner {
  max-width: 1240px; margin: 0 auto; padding: 11px 28px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.jp-topbar-link, .jp-topbar-note { display: flex; align-items: center; gap: 9px; }
.jp-topbar-link { transition: color .2s; }
.jp-topbar-link:hover { color: #fff; }
.jp-topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,.16); }

/* ---------- header ---------- */
.jp-header { background: #fff; border-bottom: 1px solid var(--jp-line-2); }
.jp-header-inner {
  max-width: 1240px; margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.jp-brand { display: flex; align-items: center; gap: 12px; }
.jp-logo {
  width: 42px; height: 42px; border-radius: 11px; position: relative;
  background: linear-gradient(135deg, var(--jp-blue), var(--jp-navy-deep));
  display: grid; place-items: center; box-shadow: 0 8px 20px rgba(31,95,224,.35);
}
.jp-logo-diamond { width: 16px; height: 16px; background: #fff; border-radius: 3px; transform: rotate(45deg); }
.jp-logo-dot { position: absolute; top: 9px; right: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--jp-orange); }
.jp-brand-name {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 22px;
  letter-spacing: -.02em; color: var(--jp-ink);
}
.jp-brand-name span { color: var(--jp-blue); }

/* ---------- hero ---------- */
.jp-hero {
  position: relative; flex: 1; color: #fff; overflow: hidden;
  background: linear-gradient(118deg, #0a1733 0%, #0c2a63 52%, #1f5fe0 118%);
}
.jp-hero-deco { position: absolute; pointer-events: none; }
.jp-hero-deco--clip {
  inset: 0;
  background: linear-gradient(120deg, rgba(31,95,224,0) 40%, rgba(47,110,240,.35) 100%);
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 38% 100%);
}
.jp-hero-deco--chevrons { top: 70px; right: 60px; display: flex; gap: 18px; opacity: .5; }
.jp-hero-deco--chevrons span {
  width: 70px; height: 70px; transform: rotate(45deg);
  border-top: 9px solid rgba(255,255,255,.16); border-right: 9px solid rgba(255,255,255,.16);
}
.jp-hero-deco--chevrons span:last-child {
  border-top-color: rgba(255,255,255,.10); border-right-color: rgba(255,255,255,.10);
}
.jp-hero-deco--ring1 { bottom: -120px; left: -80px; width: 360px; height: 360px; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); }
.jp-hero-deco--ring2 { bottom: -160px; left: -40px; width: 360px; height: 360px; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); }

.jp-hero-grid {
  position: relative; z-index: 1; max-width: 1240px; margin: 0 auto;
  padding: 84px 28px 96px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}

/* min-width:0 verhindert, dass lange Wörter das Grid sprengen */
.jp-hero-copy, .jp-form-wrap { min-width: 0; }

.jp-badge {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
  padding: 8px; border-radius: 100px;
}
.jp-badge-switch {
  width: 38px; height: 21px; border-radius: 100px; background: var(--jp-orange);
  position: relative; display: inline-block; flex: none;
}
.jp-badge-switch span { position: absolute; top: 3px; right: 3px; width: 15px; height: 15px; border-radius: 50%; background: #fff; }
.jp-badge-text { font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; padding-right: 8px; }

.jp-hero-h1 {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 64px; line-height: .99;
  letter-spacing: -.025em; margin: 0 0 24px; text-wrap: balance;
}
.jp-accent { color: var(--jp-orange); }

.jp-hero-lead { font-size: 18px; line-height: 1.6; color: var(--jp-muted-dark); max-width: 500px; margin: 0 0 32px; }

.jp-checks { list-style: none; margin: 0 0 34px; padding: 0; display: grid; gap: 14px; }
.jp-checks li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; font-size: 15.5px; color: #e7edfb; }
.jp-check {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 14px;
}

.jp-hero-mail {
  display: inline-flex; flex-direction: column; gap: 4px;
  border-left: 3px solid var(--jp-orange); padding-left: 16px;
}
.jp-hero-mail-label { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--jp-muted-dark); }
.jp-hero-mail-link { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 20px; color: #fff; }
.jp-hero-mail-link:hover { color: var(--jp-orange); }

/* ---------- form card ---------- */
.jp-form-card {
  background: #fff; color: var(--jp-ink); border-radius: 20px; padding: 38px 38px 32px;
  box-shadow: 0 40px 90px rgba(8,18,40,.45); animation: jppop .3s cubic-bezier(.2,.9,.3,1.2);
}

.jp-modal-head { margin-bottom: 22px; }
.jp-modal-kicker {
  display: inline-flex; align-items: center; gap: 9px; color: var(--jp-blue);
  font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px;
}
.jp-kicker-rule { width: 22px; height: 2px; background: var(--jp-orange); display: inline-block; }
.jp-modal-head h2 {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 27px; line-height: 1.1;
  letter-spacing: -.02em; margin: 0 0 10px; color: var(--jp-ink);
}
.jp-modal-head p { color: var(--jp-muted); font-size: 15px; line-height: 1.55; margin: 0; }
.jp-modal-head strong { color: var(--jp-ink); }

.jp-form .form-group { margin-bottom: 16px; }
.jp-form label { display: block; font-weight: 600; font-size: 14px; color: #28354f; margin-bottom: 7px; }
.jp-form input[type=text],
.jp-form input[type=email],
.jp-form textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--jp-ink);
  background: var(--jp-field); border: 1.5px solid var(--jp-field-line); border-radius: 10px;
  padding: 13px 15px; transition: border-color .18s, background .18s;
}
.jp-form textarea { resize: vertical; min-height: 120px; }
.jp-form input:focus, .jp-form textarea:focus { outline: none; border-color: var(--jp-blue); background: #fff; }
.jp-form input::placeholder, .jp-form textarea::placeholder { color: #9aa7c0; }
.jp-form input.jp-invalid, .jp-form textarea.jp-invalid { border-color: #d6432a; background: #fdf5f4; }

.jp-req { color: var(--jp-orange); font-weight: 700; }

.jp-consent-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-weight: 500; font-size: 13.5px; line-height: 1.5; color: var(--jp-muted); margin: 0;
}
.jp-consent-label input { flex: none; width: 18px; height: 18px; margin-top: 1px; accent-color: var(--jp-blue); }
.jp-consent-label.jp-invalid { color: #d6432a; }

/* Honeypot bleibt für Menschen unsichtbar */
.form-field-honeypot {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.jp-form .buttons { margin-top: 22px; }
.jp-form button[type=submit] {
  width: 100%; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 16px; color: #fff;
  background: var(--jp-blue); border: none; padding: 16px 26px; border-radius: 10px;
  box-shadow: 0 12px 26px rgba(31,95,224,.3); transition: background .2s, opacity .2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.jp-form button[type=submit]:hover { background: var(--jp-navy-deep); }
.jp-form button[type=submit][disabled] { opacity: .65; cursor: progress; }
.jp-spinner {
  width: 16px; height: 16px; border-radius: 50%; flex: none;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff;
  animation: jpspin .7s linear infinite;
}

.jp-form-foot { color: #9aa7c0; font-size: 12.5px; margin: 14px 0 0; text-align: center; }

/* status / validation */
.jp-alert {
  border-radius: 10px; padding: 13px 16px; font-size: 14.5px; line-height: 1.5; margin-bottom: 16px;
  animation: jpfade .2s ease;
}
.jp-alert--error   { background: #fdecea; color: #d6432a; border: 1px solid #f5c6bd; }
.jp-alert--success { background: #eafaf0; color: #1aa861; border: 1px solid #b9eccd; }
.jp-alert a { font-weight: 700; text-decoration: underline; color: inherit; }

.jp-success { text-align: center; padding: 18px 0 8px; animation: jpfade .25s ease; }
.jp-success-icon {
  width: 62px; height: 62px; border-radius: 50%; background: #eafaf0; color: #1aa861;
  display: grid; place-items: center; margin: 0 auto 18px; font-size: 30px; font-weight: 800;
}
.jp-success h3 {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 24px;
  margin: 0 0 10px; color: var(--jp-ink);
}
.jp-success p { color: var(--jp-muted); font-size: 15px; line-height: 1.6; margin: 0 0 22px; }

/* ---------- footer ---------- */
.jp-footer { background: var(--jp-navy); color: #aebbd6; padding: 26px 0; }
.jp-footer-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px; font-size: 13.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.jp-footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.jp-footer-link { transition: color .2s; }
.jp-footer-link:hover { color: #fff; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .jp-hero-grid { grid-template-columns: 1fr; gap: 44px; padding: 64px 28px 72px; }
  .jp-hero-deco--clip, .jp-hero-deco--chevrons { display: none; }
  .jp-hero-lead { max-width: none; }
  .jp-form-wrap { max-width: 560px; width: 100%; }
}

@media (max-width: 860px) {
  .jp-hero-h1 { font-size: 46px; }
  .jp-header-cta { display: none; }
}

@media (max-width: 620px) {
  .jp-topbar-inner { padding: 10px 20px; gap: 10px; }
  .jp-topbar-sep, .jp-topbar-note { display: none; }
  .jp-header-inner { padding: 14px 20px; }
  .jp-hero-grid { padding: 48px 20px 60px; }
  .jp-hero-h1 { font-size: 38px; }
  .jp-hero-lead { font-size: 16.5px; }
  .jp-form-card { padding: 28px 22px 24px; border-radius: 16px; }
  .jp-modal-head h2 { font-size: 23px; }
  .jp-footer-inner { padding: 0 20px; flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}
