:root{
  /* Blau/Orange – inspiriert von klimadialoge.de */
  --bg: #f7fafc;
  --card: #ffffff;
  --ink: #0b1b2a;
  --muted: #3b556b;

  --blue-900:#0a2a43;
  --blue-700:#135a8b;
  --blue-500:#1b86c8;
  --blue-200:#cfe9fb;

  --orange-600:#f37a1f;

  --shadow: 0 14px 40px rgba(10, 42, 67, .14);
  --radius: 22px;
  --max: 980px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1100px 520px at 10% 0%, rgba(27,134,200,.18), transparent 55%),
    radial-gradient(900px 520px at 90% 20%, rgba(243,122,31,.14), transparent 55%),
    linear-gradient(180deg, var(--bg), #ffffff 70%);
}

a{ color:var(--blue-700); text-decoration:none; }
a:hover{ text-decoration:underline; }

.wrap{
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding: clamp(18px, 3.5vw, 40px);
}

.shell{
  width:100%;
  max-width: var(--max);
}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 10px 4px 22px 4px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width: 240px;
}

.logo{
  height:44px;
  width:auto;
  display:block;
}

.tag{
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
}

.tag-right{ text-align:right; }

.card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,42,67,.08);
  overflow:hidden;
}

.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
}

.hero-left{
  padding: clamp(22px, 4vw, 44px);
}

h1{
  margin:0 0 14px 0;
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.sub{
  margin:0 0 22px 0;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
}

.pillbar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 18px 0 26px 0;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(19,90,139,.18);
  background: linear-gradient(180deg, rgba(207,233,251,.55), rgba(255,255,255,.9));
  color: var(--blue-900);
  font-size: 14px;
}

.dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(27,134,200,.18);
}

.dot-orange{
  background: var(--orange-600);
  box-shadow: 0 0 0 4px rgba(243,122,31,.16);
}

.dot-dark{
  background: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(19,90,139,.16);
}

.cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-top: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(10,42,67,.14);
  background: #ffffff;
  color: var(--blue-900);
  font-weight: 650;
}

.btn.primary{
  border-color: rgba(19,90,139,0);
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(19,90,139,.18);
}

.btn:hover{ text-decoration:none; }
.btn.primary:hover{ filter: brightness(1.02); }

.hint{
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.hero-right{
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding: 18px 18px 0 18px;
  background:
    radial-gradient(520px 420px at 50% 45%, rgba(243,122,31,.14), transparent 60%),
    radial-gradient(520px 420px at 50% 65%, rgba(27,134,200,.16), transparent 60%);
}

.ribbon{
  position:absolute;
  top: 18px;
  right: 18px;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  border: 1px solid rgba(10,42,67,.10);
  color: var(--blue-900);
  font-size: 13px;
}

.otter{
  width: min(360px, 80%);
  height:auto;
  display:block;
  filter: drop-shadow(0 20px 30px rgba(10,42,67,.18));
  transform: translateY(10px);
}

.footer{
  margin-top: 18px;
  padding: 18px 6px 2px 6px;
  width:100%;
  max-width: var(--max);
  display:flex;
  justify-content:space-between;
  gap:14px;
  color: rgba(11,27,42,.70);
  font-size: 12.5px;
}

.mini{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.mini-line{
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-500), var(--orange-600));
  opacity:.9;
}

/* Responsive */
@media (max-width: 860px){
  .hero{ grid-template-columns: 1fr; }
  .header{ flex-direction:column; align-items:flex-start; }
  .tag{ white-space: normal; }
  .tag-right{ text-align:left; }
}

/* Print */
@media print{
  body{ background:#fff; }
  .card{ box-shadow:none; }
  .ribbon{ display:none; }
  .btn{ display:none; }
}
