/* Stundenzettl - Startseite. Keine externen Schriften, keine Inline-Stile (CSP). */

:root {
  color-scheme: light dark;
  --bg: #f5f8ff;
  --bg-2: #ffffff;
  --ink: #0b1220;
  --ink-2: #3b4658;
  --muted: #6a7486;
  --line: rgb(11 18 32 / 9%);
  --blue: #1f7aff;
  --blue-2: #0a5ce0;
  --cyan: #38c8ff;
  --violet: #7a5cff;
  --card: rgb(255 255 255 / 72%);
  --card-line: rgb(255 255 255 / 85%);
  --shadow-phone: 0 50px 100px -30px rgb(15 40 90 / 45%), 0 30px 60px -40px rgb(0 0 0 / 45%);
  --shadow-card: 0 18px 40px -18px rgb(15 40 90 / 35%);
  --radius: 28px;
  --wrap: 1180px;
  --display: -apple-system, "SF Pro Display", BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --text: -apple-system, "SF Pro Text", BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #05070d;
    --bg-2: #0b0f19;
    --ink: #f2f5fb;
    --ink-2: #c3cad8;
    --muted: #8b95a8;
    --line: rgb(255 255 255 / 10%);
    --card: rgb(22 28 42 / 72%);
    --card-line: rgb(255 255 255 / 10%);
    --shadow-phone: 0 50px 110px -30px rgb(0 0 0 / 80%), 0 0 0 1px rgb(255 255 255 / 6%);
    --shadow-card: 0 18px 40px -18px rgb(0 0 0 / 70%);
  }
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-2); }
@media (prefers-color-scheme: dark) { a { color: #6fb0ff; } }

.wrap {
  width: min(var(--wrap), 100% - 40px);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--bg);
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid #ffbf47; outline-offset: 3px; border-radius: 6px; }

.mono { font-variant-numeric: tabular-nums; }

.grad {
  background: linear-gradient(100deg, var(--blue) 0%, var(--cyan) 45%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted { color: var(--muted); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 16px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: scale(.97); }

.btn-dark {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 10px 30px -12px rgb(11 18 32 / 55%);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -14px rgb(11 18 32 / 60%); }

.btn-ghost {
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover { transform: translateY(-2px); }

.btn-small { min-height: 38px; padding: 0 16px; font-size: 14px; }

.btn-store { min-height: 58px; padding: 0 26px 0 22px; }
.btn-store span { display: flex; flex-direction: column; line-height: 1.05; font-size: 19px; letter-spacing: -.01em; }
.btn-store small { font-size: 11px; font-weight: 500; opacity: .8; letter-spacing: .02em; }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 12px 0 auto;
  z-index: 50;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: min(1000px, 100% - 24px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 8px 8px 14px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--card-line);
  box-shadow: 0 10px 30px -20px rgb(0 0 0 / 35%);
  backdrop-filter: saturate(1.6) blur(20px);
  -webkit-backdrop-filter: saturate(1.6) blur(20px);
  transition: transform .35s ease;
}
.nav.is-hidden .nav-inner { transform: translateY(-120%); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -.01em;
}
.brand img { border-radius: 10px; }

.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 550;
  padding: 8px 12px;
  border-radius: 999px;
}
.nav-links a:hover { background: var(--line); color: var(--ink); }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-inner .btn { margin-left: auto; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 900px;
  z-index: -2;
  background:
    radial-gradient(40% 45% at 72% 38%, rgb(31 122 255 / 38%), transparent 70%),
    radial-gradient(30% 35% at 88% 18%, rgb(122 92 255 / 28%), transparent 70%),
    radial-gradient(35% 40% at 12% 8%, rgb(56 200 255 / 22%), transparent 70%);
  filter: blur(10px);
  animation: glow 14s ease-in-out infinite alternate;
}
@keyframes glow {
  to { transform: translate3d(-3%, 4%, 0) scale(1.06); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(60% 60% at 50% 35%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 35%, #000 20%, transparent 75%);
  opacity: .7;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 40px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--card-line);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.pill .mono { color: var(--ink); font-weight: 750; }

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgb(34 197 94 / 60%);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  to { box-shadow: 0 0 0 12px rgb(34 197 94 / 0%); }
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 8.2vw, 104px);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.045em;
}

.hero-lede {
  max-width: 34ch;
  margin: 26px 0 32px;
  font-size: clamp(18px, 1.9vw, 21px);
  color: var(--ink-2);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 550;
}
.hero-facts li { display: inline-flex; align-items: center; gap: 8px; position: relative; padding-left: 24px; }
.hero-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
}
.hero-facts li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 6px;
  height: 3px;
  translate: 0 -70%;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  rotate: -45deg;
}

/* ---------- Phone frame ---------- */

.phone {
  position: relative;
  margin: 0;
  width: 300px;
  aspect-ratio: 660 / 1434;
  padding: 10px;
  border-radius: 54px;
  background: linear-gradient(145deg, #3a4150, #11151d 40%, #2a303c);
  box-shadow: var(--shadow-phone), inset 0 0 0 2px rgb(255 255 255 / 10%);
}
.phone::before {
  /* Dynamic Island */
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 92px;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: #000;
  z-index: 2;
}
.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 44px;
  background: #fff;
}

.hero-stage {
  position: relative;
  height: 680px;
  perspective: 1400px;
}
.hero-stage .phone { position: absolute; }
.phone-front {
  left: 16%;
  top: 0;
  width: 318px;
  transform: rotateY(-14deg) rotateX(6deg) rotateZ(2deg);
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
  z-index: 2;
  animation: float 7s ease-in-out infinite;
}
.phone-back {
  left: 50%;
  top: 60px;
  width: 280px;
  transform: rotateY(-22deg) rotateX(6deg) rotateZ(6deg) translateZ(-120px);
  opacity: .9;
  filter: saturate(.9);
  animation: float 8s ease-in-out -2s infinite;
}
@keyframes float {
  50% { translate: 0 -14px; }
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--card-line);
  box-shadow: var(--shadow-card);
  backdrop-filter: saturate(1.6) blur(18px);
  -webkit-backdrop-filter: saturate(1.6) blur(18px);
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}
.float-card b { display: block; font-weight: 700; color: var(--ink); }
.float-card small { color: var(--muted); font-size: 12.5px; }
.fc-emoji {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgb(31 122 255 / 12%);
  font-size: 20px;
}
.fc-dot {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  position: relative;
}
.fc-dot::after {
  content: "";
  position: absolute;
  inset: 11px 10px 13px 11px;
  border: solid #fff;
  border-width: 0 0 3px 3px;
  transform: rotate(-45deg);
}
.fc-1 { left: -6%; top: 330px; animation-delay: -1s; }
.fc-2 { right: -4%; top: 380px; animation-delay: -3s; }
.fc-3 { left: 30%; bottom: -8px; animation-delay: -4.5s; }

@media (max-width: 980px) {
  .hero { padding-top: 120px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stage { height: 620px; margin-top: 10px; }
  .phone-front { left: calc(50% - 190px); }
  .phone-back { left: calc(50% - 10px); }
}
@media (max-width: 560px) {
  .hero-stage { height: 520px; }
  .phone-front { width: 250px; left: calc(50% - 150px); }
  .phone-back { width: 220px; left: calc(50% - 20px); top: 50px; }
  .fc-1 { left: 0; top: 90px; }
  .fc-2 { right: 0; top: 300px; }
  .fc-3 { left: 6px; bottom: 10px; }
  .float-card { font-size: 13px; padding: 10px 12px 10px 10px; }
  .fc-emoji, .fc-dot { width: 32px; height: 32px; }
  .fc-dot::after { inset: 9px 8px 11px 9px; }
}

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  padding: 22px 0;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 750;
  letter-spacing: -.02em;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track span:nth-child(3n + 2) { color: var(--ink); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */

.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }

.eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.04em;
  max-width: 18ch;
}

.section-lede {
  max-width: 44ch;
  margin: 22px 0 0;
  font-size: clamp(18px, 1.7vw, 20px);
  color: var(--ink-2);
}

/* Three taps */

.steps {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 28px 30px;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.step::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgb(31 122 255 / 18%), transparent);
}
.step-num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 10px 24px -10px rgb(31 122 255 / 70%);
}
.step h3 { margin: 22px 0 8px; font-size: 24px; letter-spacing: -.02em; }
.step p { margin: 0; color: var(--ink-2); }

@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* Feature rows */

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.flip .feature-copy { order: 2; }
.feature-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 680px;
}
.feature-visual::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  border-radius: 48px;
  background:
    radial-gradient(60% 60% at 50% 40%, rgb(31 122 255 / 22%), transparent 70%),
    linear-gradient(160deg, rgb(56 200 255 / 10%), rgb(122 92 255 / 12%));
  z-index: -1;
}
.feature-visual .phone { width: 310px; }
.fc-side { animation-duration: 7s; }
.fc-a { right: 2%; bottom: 18%; }
.fc-b { left: 0; top: 22%; }

.checks {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.checks li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-2);
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgb(31 122 255 / 14%);
}
.checks li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  width: 8px;
  height: 4px;
  border: solid var(--blue);
  border-width: 0 0 2.2px 2.2px;
  rotate: -45deg;
}

@media (max-width: 900px) {
  .feature-inner { grid-template-columns: 1fr; gap: 24px; }
  .flip .feature-copy { order: 0; }
  .feature-visual { min-height: 600px; }
}
@media (max-width: 560px) {
  .feature-visual .phone { width: 260px; }
  .feature-visual { min-height: 540px; }
}

/* Bento */

.bento {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(210px, auto);
  gap: 16px;
}
.tile {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgb(15 40 90 / 40%); }
.tile h3 { margin: 14px 0 8px; font-size: 21px; letter-spacing: -.02em; line-height: 1.2; }
.tile p { margin: 0; color: var(--ink-2); font-size: 16px; }
.tile-emoji { font-size: 34px; line-height: 1; }

.tile-tall {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-rows: auto 1fr;
  padding-bottom: 0;
}
.tile-tall .tile-copy { max-width: 36ch; }
.phone-mini {
  width: 240px;
  margin: 26px auto -150px;
  transform: rotate(-4deg);
  transition: transform .5s ease;
}
.tile-tall:hover .phone-mini { transform: rotate(0deg) translateY(-12px); }

.tile-dark {
  background: #070a12;
  border-color: rgb(255 255 255 / 8%);
  color: #f2f5fb;
}
.tile-dark p { color: #aeb7c8; }
.tile-dark .phone-mini { transform: rotate(4deg); }

.tile-blue {
  background: linear-gradient(150deg, var(--blue), #5b55ff);
  border: 0;
  color: #fff;
}
.tile-blue p { color: rgb(255 255 255 / 85%); }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .tile-tall { grid-column: auto; }
}

/* Anywhere chips */

.anywhere { padding-top: 0; }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.chip {
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  font-weight: 650;
  font-size: 17px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.chip:hover { transform: translateY(-3px) rotate(-1deg); background: var(--ink); color: var(--bg); }

/* Gallery */

.gallery-section { padding-top: 0; }
.gallery {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px max(20px, (100vw - var(--wrap)) / 2) 120px;
  scrollbar-width: none;
  cursor: grab;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery .phone {
  flex: 0 0 auto;
  width: 270px;
  scroll-snap-align: center;
  transition: transform .5s ease;
}
.gallery .phone:nth-child(odd) { transform: translateY(30px); }
.gallery .phone:hover { transform: translateY(-8px); }
.gallery img { pointer-events: none; user-select: none; -webkit-user-drag: none; }

/* Privacy */

.privacy {
  background: #05070d;
  color: #f2f5fb;
  overflow: hidden;
}
.privacy::before {
  content: "";
  position: absolute;
  inset: -30% 10% auto;
  height: 700px;
  background: radial-gradient(40% 50% at 50% 30%, rgb(31 122 255 / 45%), transparent 70%);
  pointer-events: none;
}
.privacy-inner { position: relative; text-align: center; }
.privacy .section-title, .privacy .section-lede { margin-inline: auto; }
.privacy .section-lede { color: #aeb7c8; }
.lock { color: #6fb0ff; display: grid; place-items: center; margin-bottom: 22px; }
.privacy-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pstat {
  padding: 30px 20px;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 10%);
}
.pstat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(180deg, #fff, #7fb4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pstat span { display: block; margin-top: 10px; color: #aeb7c8; font-weight: 550; }
@media (max-width: 700px) { .privacy-grid { grid-template-columns: 1fr; } }

/* Plus */

.plans {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 18px;
  align-items: stretch;
}
.plan {
  position: relative;
  padding: 36px 34px;
  border-radius: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.plan h3 { margin: 0; font-size: 20px; letter-spacing: -.01em; }
.price {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}
.price small { font-size: 20px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price-note { margin: 10px 0 0; color: var(--muted); font-weight: 550; }
.plan-plus {
  background:
    linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
    linear-gradient(135deg, var(--blue), var(--cyan), var(--violet)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 40px 80px -40px rgb(31 122 255 / 55%);
}
.badge {
  position: absolute;
  top: 26px;
  right: 26px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .04em;
}
.trial {
  margin: 24px 0 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgb(34 197 94 / 12%);
  color: var(--ink);
  font-weight: 650;
}
.trial::before { content: "🎁 "; }
.legacy {
  margin: 28px 0 0;
  max-width: 64ch;
  color: var(--ink-2);
}
@media (max-width: 820px) { .plans { grid-template-columns: 1fr; } }

/* FAQ */

.faq-inner { max-width: 820px; }
.faq details {
  margin-top: 14px;
  border-radius: 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq .section-title { margin-bottom: 36px; }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 60px 22px 26px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  translate: 0 -50%;
  font-size: 28px;
  font-weight: 400;
  color: var(--blue);
  transition: rotate .3s ease;
}
.faq details[open] summary::after { rotate: 45deg; }
.faq details p { margin: 0; padding: 0 26px 24px; color: var(--ink-2); }
.faq-more { margin-top: 26px; font-weight: 650; }

/* Final */

.final { overflow: hidden; }
.final::before {
  content: "";
  position: absolute;
  inset: 20% -10% -30%;
  background: radial-gradient(40% 50% at 50% 60%, rgb(31 122 255 / 25%), transparent 70%);
  z-index: -1;
}
.final-inner { text-align: center; display: grid; justify-items: center; gap: 30px; }
.final-icon {
  width: 132px;
  height: 132px;
  filter: drop-shadow(0 30px 40px rgb(31 122 255 / 35%));
  animation: float 6s ease-in-out infinite;
}
.final-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.045em;
}

/* Footer */

.footer {
  padding: 40px 0 56px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 30px;
  align-items: center;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; }
.footer-brand img { border-radius: 8px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px 20px; }
.footer-links a { color: var(--ink-2); text-decoration: none; }
.footer-links a:hover { color: var(--ink); text-decoration: underline; }
.footer-note { grid-column: 1 / -1; margin: 0; font-size: 13px; }
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

/* Keyword-Zeile im H1 (klein, über der großen Schlagzeile) */

.hero-kicker {
  display: block;
  margin: 0 0 18px;
  font-family: var(--text);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--blue);
}
@media (prefers-color-scheme: dark) { .hero-kicker { color: #6fb0ff; } }

/* Kostenlose Hilfen (Links zu Vorlage, Ratgeber, Rechner, Minijob) */

.guides { padding-top: 0; }
.guide-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 26px 28px;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.guide-card:hover {
  transform: translateY(-4px);
  border-color: rgb(31 122 255 / 35%);
  box-shadow: 0 24px 50px -30px rgb(15 40 90 / 40%);
}
.guide-card .tile-emoji { margin-bottom: 6px; }
.guide-card strong { font-size: 20px; letter-spacing: -.02em; line-height: 1.2; padding-right: 22px; }
.guide-card span.guide-text { color: var(--ink-2); font-size: 15.5px; }
.guide-card::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 34px;
  width: 10px;
  height: 10px;
  border: solid var(--blue);
  border-width: 2.4px 2.4px 0 0;
  rotate: 45deg;
  transition: translate .3s ease;
}
.guide-card:hover::after { translate: 4px 0; }
@media (max-width: 980px) { .guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .guide-grid { grid-template-columns: 1fr; } }

.footer-links + .footer-links { grid-column: 1 / -1; justify-content: flex-start; }

/* ---------- Reveal on scroll ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--d, 0s);
}
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
