/* =========================================================================
   CuraNota — Landing (Identität „Pulsnota")
   Display: Fraunces · Body: Hanken Grotesk · warm, editorial, premium.
   ========================================================================= */
:root {
  --coral: #F1502B;
  --coral-2: #FF7150;
  --coral-deep: #D9431F;
  --coral-ink: #C53D18; /* Aktions-/Textkoralle, WCAG-AA als kleiner Text/Button */
  --ink: #221C1A;
  --ink-soft: #4A4038;
  --muted: #8A7E6F;
  --cream: #FBF8F4;
  --paper: #FFFFFF;
  --sand: #F3ECE2;
  --line: #EBE2D5;
  --teal: #1B9C7E;
  --radius: 20px;
  --shadow-sm: 0 2px 8px rgba(34,28,26,.06);
  --shadow: 0 24px 60px -28px rgba(34,28,26,.30), 0 4px 14px rgba(34,28,26,.05);
  --shadow-coral: 0 18px 40px -16px rgba(217,67,31,.55);
  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* warme Atmosphäre */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 88% -8%, rgba(255,113,80,.16), transparent 70%),
    radial-gradient(48% 42% at -8% 8%, rgba(27,156,126,.08), transparent 70%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.08; letter-spacing: -.02em; }
section { padding: clamp(64px, 9vw, 132px) clamp(22px, 5vw, 56px); }

.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--coral-ink); margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  --pad: 15px 26px;
  display: inline-flex; align-items: center; gap: 10px; padding: var(--pad);
  font-family: inherit; font-weight: 600; font-size: 16px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  will-change: transform;
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn.sm { --pad: 11px 20px; font-size: 15px; }
.btn.lg { --pad: 17px 32px; font-size: 17px; }
.btn-solid { background: var(--coral-ink); color: #fff; box-shadow: var(--shadow-coral); }
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -16px rgba(217,67,31,.62); background: #A8330F; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(0,0,0,.5); }
.btn-line-cream { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.4); }
.btn-line-cream:hover { border-color: var(--cream); transform: translateY(-2px); }

/* Icon-only-Links (z. B. WhatsApp) — bewusst kein Button, nur Glyphe im Kreis */
.icon-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid transparent; transition: transform .25s var(--ease), border-color .2s, color .2s, background .2s;
}
.icon-link:hover { transform: translateY(-2px); }
.icon-link-cream { color: var(--cream); border-color: rgba(255,255,255,.4); align-self: center; }
.icon-link-cream:hover { border-color: var(--cream); background: rgba(255,255,255,.12); }
.icon-link-foot { width: 34px; height: 34px; color: #C9BEB0; border-color: rgba(255,255,255,.18); margin-top: 4px; }
.icon-link-foot:hover { color: var(--coral-2); border-color: var(--coral-2); }
/* .foot-cols a setzt display:block (hoehere Spezifitaet) — Icon-Link zurueckholen */
.foot-cols .icon-link { display: inline-flex; margin-bottom: 0; }

/* ---------- Header ---------- */
.site {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(22px, 5vw, 56px); transition: background .3s, box-shadow .3s, padding .3s;
}
.site.scrolled {
  background: rgba(251,248,244,.82); backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line); padding-top: 12px; padding-bottom: 12px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: "Fraunces", serif; font-weight: 600; font-size: 22px; letter-spacing: -.01em; }
.brand img { width: 34px; height: 35px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav > a:not(.btn) { font-weight: 500; color: var(--ink-soft); font-size: 15.5px; transition: color .2s; }
.nav > a:not(.btn):hover { color: var(--coral); }

/* ---------- Hero ---------- */
.hero {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; max-width: var(--maxw); margin: 0 auto;
  padding-top: clamp(36px, 6vw, 76px);
}
.hero h1 { font-size: clamp(40px, 6vw, 74px); font-weight: 600; margin: 4px 0 22px; }
.hero h1 em {
  font-style: normal; color: var(--coral); position: relative; white-space: nowrap;
}
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .14em;
  background: var(--coral); opacity: .22; border-radius: 4px;
}
.lede { font-size: clamp(17px, 1.5vw, 19.5px); color: var(--ink-soft); max-width: 33em; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 26px; }
.ticks { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; }
.ticks li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--ink-soft); font-weight: 500; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 18px; height: 18px;
  display: grid; place-items: center; border-radius: 50%; background: rgba(27,156,126,.14);
  color: var(--teal); font-size: 11px; font-weight: 800;
}

/* Hero-Artwork */
.hero-art { position: relative; justify-self: center; width: 100%; max-width: 460px; }
.blob {
  position: absolute; inset: -10% -14% -16% 4%; z-index: 0; border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  background: linear-gradient(150deg, var(--coral-2), var(--coral-deep));
  filter: blur(2px); opacity: .96; transform: rotate(-6deg);
  box-shadow: var(--shadow-coral);
  animation: floaty 9s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: rotate(-6deg) translateY(0) } 50% { transform: rotate(-4deg) translateY(-12px) } }
.card.app {
  position: relative; z-index: 1; background: var(--paper); border-radius: 22px;
  box-shadow: var(--shadow); overflow: hidden; transform: rotate(1.4deg);
  transition: transform .5s var(--ease);
}
.hero-art:hover .card.app { transform: rotate(0deg) translateY(-4px); }
.app-top { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: var(--sand); border-bottom: 1px solid var(--line); }
.app-top .dot { width: 10px; height: 10px; border-radius: 50%; background: #D8CFC0; }
.app-top .dot:first-child { background: #FF6B5E; } .app-top .dot:nth-child(2){ background:#FFBE3D;} .app-top .dot:nth-child(3){background:#3FCB7F;}
.app-url { margin-left: auto; font-size: 12px; color: var(--muted); }
.app-body { padding: 20px; display: grid; gap: 14px; }
.row.head { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 13px; background: linear-gradient(150deg, var(--coral-2), var(--coral-deep)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 15px; }
.who strong { display: block; font-size: 15.5px; } .who small { color: var(--muted); font-size: 12.5px; }
.pill { margin-left: auto; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.pill.ok { background: rgba(27,156,126,.12); color: var(--teal); }
.vitals { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 10px; }
.vital { background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; }
.vital small { color: var(--muted); font-size: 11.5px; display: block; } .vital b { font-size: 18px; }
.vital.pulse { display: grid; place-items: center; padding: 8px; }
.vital.pulse svg { width: 100%; height: 34px; }
.ai { display: flex; align-items: center; gap: 12px; background: linear-gradient(120deg, rgba(241,80,43,.08), rgba(241,80,43,.03)); border: 1px solid rgba(241,80,43,.18); border-radius: 14px; padding: 12px 14px; }
.ai .spark { width: 30px; height: 30px; border-radius: 9px; background: var(--coral); color: #fff; display: grid; place-items: center; flex: none; }
.ai small { color: var(--coral-deep); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; display: block; }
.ai span { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Stats ---------- */
.stats {
  max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr);
  gap: 18px; padding-top: 12px; padding-bottom: 12px;
}
.stats > div { text-align: center; padding: 22px 14px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.stats b { font-family: "Fraunces", serif; font-size: 30px; color: var(--coral); display: block; }
.stats span { font-size: 13.5px; color: var(--muted); }

/* ---------- Section heads ---------- */
.sec-head { max-width: 660px; margin: 0 auto 54px; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 16px; }
.sec-head p { color: var(--ink-soft); font-size: 17px; }

/* ---------- Features ---------- */
.features { background: linear-gradient(180deg, transparent, var(--sand) 14%, var(--sand) 86%, transparent); }
.grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.feat:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(241,80,43,.35); }
.ficon { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; font-size: 24px; background: linear-gradient(150deg, rgba(255,113,80,.16), rgba(241,80,43,.10)); margin-bottom: 18px; }
.feat h3 { font-size: 21px; margin-bottom: 9px; }
.feat p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Trust ---------- */
.trust { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px,5vw,80px); align-items: center; }
.trust h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 14px; }
.checks { list-style: none; display: grid; gap: 18px; margin-top: 28px; }
.checks li { position: relative; padding-left: 38px; color: var(--ink-soft); font-size: 15.5px; }
.checks li b { color: var(--ink); }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 26px; height: 26px; border-radius: 8px; background: var(--coral); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 800; }
.shield { display: grid; place-items: center; }
.shield-card { background: var(--paper); border: 1px solid var(--line); border-radius: 28px; padding: 44px 56px; box-shadow: var(--shadow); display: grid; place-items: center; gap: 22px; }
.badges { display: flex; gap: 8px; }
.badges span { font-size: 12px; font-weight: 700; padding: 6px 13px; border-radius: 999px; background: var(--sand); color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { max-width: var(--maxw); margin: 0 auto clamp(48px,7vw,90px); border-radius: 32px; background: linear-gradient(135deg, var(--coral-2), var(--coral-deep)); color: #fff; padding: clamp(40px,5vw,64px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; box-shadow: var(--shadow-coral); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -60px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.10); }
.cta-text { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(26px,3vw,38px); margin-bottom: 8px; color: #fff; }
.cta-band p { color: #FFE6DC; max-width: 30em; }
.cta-band .cta-row { position: relative; z-index: 1; margin: 0; }

/* ---------- Footer ---------- */
.site-foot { background: var(--ink); color: #C9BEB0; padding: clamp(48px,6vw,76px) clamp(22px,5vw,56px) 30px; }
.foot-top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.10); }
.foot-brand .brand { color: var(--cream); margin-bottom: 14px; }
.foot-brand p { font-size: 14px; max-width: 30em; }
.foot-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.foot-cols h3 { font-family: "Hanken Grotesk", sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #8A7E6F; margin-bottom: 14px; }
.foot-cols a, .foot-cols span { display: block; font-size: 14.5px; color: #C9BEB0; margin-bottom: 9px; transition: color .2s; }
.foot-cols a:hover { color: var(--coral-2); }
.foot-base { max-width: var(--maxw); margin: 22px auto 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; font-size: 13px; color: #8A7E6F; }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal-main { max-width: 720px; margin: 0 auto; padding: clamp(48px, 8vw, 88px) clamp(22px, 5vw, 56px) clamp(64px, 9vw, 110px); }
.legal-main .eyebrow { margin-bottom: 14px; }
.legal-main h1 { font-size: clamp(32px, 4.4vw, 46px); margin-bottom: 30px; }
.legal-main h2 { font-size: 22px; margin: 40px 0 12px; }
.legal-main h2:first-of-type { margin-top: 8px; }
.legal-main p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
.legal-main address { font-style: normal; color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
.legal-main ul { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 14px 20px; }
.legal-main li { margin-bottom: 6px; }
.legal-main a { color: var(--coral-ink); text-decoration: underline; text-underline-offset: 2px; }
.legal-main strong { color: var(--ink); }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ink-soft); font-size: 15px; transition: color .2s; }
.back-link:hover { color: var(--coral); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 400px; }
  .trust { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .grid { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav a:not(.btn) { display: none; }
  .grid { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob { animation: none; }
}
