:root {
  --magenta: #ff415a;
  --ink: #1d1d1b;
  --paper: #ffffff;
  --mist: #f3f3f3;
  --mint: #e8f1ee;
  --font: "Encode Sans Expanded", system-ui, sans-serif;
  --max: 1180px;
  --type-h1: clamp(2.55rem, 5vw, 3.6rem);
  --type-h2-display: clamp(2rem, 4vw, 3.2rem);
  --type-h2: clamp(1.32rem, 2.2vw, 1.72rem);
  --type-h3: clamp(1.18rem, 1.8vw, 1.48rem);
  --type-kicker: 1rem;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
h1 {
  font-size: var(--type-h1);
  font-weight: 800;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 8px; background: #fff; padding: 8px; z-index: 40; }

.mark {
  display: inline;
  background: #111;
  color: #fff;
  padding: 0.12em 0.28em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 800;
  line-height: 1.22;
}
.tag {
  display: inline;
  background: #fff;
  color: var(--ink);
  padding: 0.08em 0.28em;
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 7px 87px 0 86px;
  pointer-events: none;
}
.top a, .top button { pointer-events: auto; }
.logo-box {
  display: block;
  width: 110px;
  height: 116px;
  background: transparent;
  color: var(--ink);
}
.logo-box img, .logo-box svg {
  width: 110px;
  height: 116px;
  object-fit: cover;
  display: block;
}
.menu-btn {
  margin: 40px 0 0;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0;
  min-width: 24px;
  min-height: 24px;
}
body.home .menu-btn, body.work .menu-btn, body.blog .menu-btn, body.post .menu-btn { color: #fff; }
body.about .menu-btn, body.services .menu-btn, body.contact .menu-btn { color: #fff; }
.menu-btn svg { display: block; width: 78px; height: 31px; }
.top.is-stuck {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 6px;
}
.top.is-stuck .logo-box,
.top.is-stuck .logo-box img,
.top.is-stuck .logo-box svg {
  width: 88px;
  height: 93px;
}
@media (max-width: 900px) {
  .top { padding: 21px 20px 0; }
  .logo-box,
  .logo-box img,
  .logo-box svg {
    width: 83px;
    height: 88px;
  }
  .menu-btn { margin-top: 30px; }
  .menu-btn svg { width: 59px; height: 23px; }
  .top.is-stuck { padding-top: 17px; }
  .top.is-stuck .logo-box,
  .top.is-stuck .logo-box img,
  .top.is-stuck .logo-box svg {
    width: 66px;
    height: 70px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .top {
    transition: background 0.2s ease, padding-top 0.2s ease, backdrop-filter 0.2s ease;
  }
  .logo-box,
  .logo-box img,
  .logo-box svg {
    transition: width 0.2s ease, height 0.2s ease;
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  color: var(--ink);
  z-index: 40;
  display: block;
  padding: 40px 72px 48px 10vw;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  grid-template-areas:
    "nav social"
    "addr social";
  column-gap: clamp(48px, 8vw, 120px);
  row-gap: clamp(2.4rem, 8vh, 5rem);
  width: min(100%, 1080px);
  align-items: start;
}
.nav-overlay nav { grid-area: nav; min-width: 0; }
.nav-aside { grid-area: social; justify-self: start; }
.nav-addr { grid-area: addr; }
.nav-overlay nav a {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  padding: 0 0.18em;
  z-index: 0;
}
.nav-overlay nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--magenta);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.32s ease;
  z-index: -1;
}
.nav-overlay nav a:hover::before,
.nav-overlay nav a:focus-visible::before {
  transform: scaleY(1);
}
.nav-overlay nav a:hover,
.nav-overlay nav a:focus-visible {
  outline: none;
}
.nav-overlay a:focus-visible,
.nav-overlay .close:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}
.nav-social {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: clamp(48px, 8vw, 96px);
  row-gap: 32px;
  align-items: start;
}
.nav-social a {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  text-decoration: none;
  display: grid;
  gap: 14px;
  justify-items: start;
  line-height: 1.15;
  color: var(--ink);
}
.nav-social a .nav-label { max-width: 8em; }
.nav-social .circ {
  width: 84px;
  height: 84px;
  border: 1.5px solid #c8c8c8;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.nav-social .circ svg { width: 26px; height: 26px; }
.nav-addr {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink);
}
.nav-overlay .close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: 0;
  color: var(--ink);
  width: 56px;
  height: 56px;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}
.nav-overlay .close svg { width: 48px; height: 48px; display: block; }
.nav-overlay.is-open nav a,
.nav-overlay.is-open .nav-social a,
.nav-overlay.is-open .nav-addr,
.nav-overlay.is-open .close {
  animation: navFadeIn 0.5s ease both;
}
.nav-overlay.is-open nav a:nth-child(1) { animation-delay: 0.05s; }
.nav-overlay.is-open nav a:nth-child(2) { animation-delay: 0.1s; }
.nav-overlay.is-open nav a:nth-child(3) { animation-delay: 0.15s; }
.nav-overlay.is-open nav a:nth-child(4) { animation-delay: 0.2s; }
.nav-overlay.is-open .nav-addr { animation-delay: 0.32s; }
.nav-overlay.is-open .nav-social a:nth-child(1) { animation-delay: 0.44s; }
.nav-overlay.is-open .nav-social a:nth-child(2) { animation-delay: 0.5s; }
.nav-overlay.is-open .nav-social a:nth-child(3) { animation-delay: 0.56s; }
.nav-overlay.is-open .nav-social a:nth-child(4) { animation-delay: 0.62s; }
.nav-overlay.is-open .nav-social a:nth-child(5) { animation-delay: 0.68s; }
.nav-overlay.is-open .close { animation-delay: 0.05s; }
@keyframes navFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-overlay { transition: none; }
  .nav-overlay.is-open nav a,
  .nav-overlay.is-open .nav-social a,
  .nav-overlay.is-open .nav-addr,
  .nav-overlay.is-open .close {
    animation: none;
  }
}
body.menu-open .rail { visibility: hidden; }

.rail {
  position: fixed;
  right: 14px;
  top: 38%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 25;
}
.rail a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #ddd;
  color: var(--ink);
  text-decoration: none;
}
.rail svg { width: 20px; height: 20px; }

.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  display: grid;
  align-items: end;
}
.hero video, .hero .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding: 28vh 6vw 7vh;
  background: linear-gradient(transparent, rgba(0,0,0,.42));
  width: 100%;
}
.hero h1 {
  display: grid;
  gap: 0.16em;
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.12;
  font-weight: 800;
  max-width: none;
}
.hero .hero-line { display: block; }
.hero-tagline { display: grid; gap: 6px; }
.consult {
  background: linear-gradient(165deg, rgba(255, 65, 90, 0.82) 0%, rgba(140, 8, 36, 0.72) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 28px 30px 22px;
  min-width: 280px;
  max-width: 320px;
  align-self: end;
  color: #fff;
  flex-shrink: 0;
}
.consult strong {
  display: block;
  font-size: clamp(1.55rem, 2.2vw, 1.95rem);
  font-weight: 800;
  line-height: 1.12;
}
.consult p { margin: 12px 0 0; }
.consult a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.consult-phone { width: 16px; height: 16px; flex-shrink: 0; }
.consult .plus {
  display: block;
  margin-top: 20px;
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1;
}

.band { padding: 72px 6vw; }
.band-magenta { background: var(--magenta); color: #fff; }
.band-dark { background: var(--ink); color: #fff; }
.wrap { max-width: var(--max); margin: 0 auto; }
.dialect { font-size: clamp(1.6rem, 4vw, 2.7rem); font-weight: 800; line-height: 1.12; margin: 0 0 12px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ok-copy h2 { margin: 0 0 12px; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.no-gif { width: min(100%, 280px); margin: 8px 0 0; }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
  margin-top: 16px;
}

.figure { position: relative; min-height: 80vh; overflow: hidden; }
.figure-slides { position: absolute; inset: 0; z-index: 0; }
.figure-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.8s ease;
}
.figure-slides img.is-on {
  opacity: 1;
  z-index: 1;
  animation: workPan 5s linear forwards;
}
@keyframes workPan {
  from { object-position: 50% 0%; }
  to { object-position: 50% 100%; }
}
.figure .label {
  position: absolute;
  left: 6vw;
  bottom: 8vh;
  color: #fff;
  max-width: 16ch;
  z-index: 2;
}
.figure .label h2 {
  margin: 0;
  font-size: var(--type-h2-display);
  font-weight: 800;
  line-height: 1.12;
}
.figure .label .mark { display: inline; }
.figure .label .cta {
  color: #fff;
  background: #111;
  padding: 6px 10px;
  margin-top: 10px;
  font-size: var(--type-kicker);
}

.offer {
  position: relative;
  min-height: 78vh;
  color: #fff;
  display: grid;
  align-items: center;
}
.offer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.offer-inner {
  position: relative;
  z-index: 1;
  padding: 80px 6vw;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.offer-title { margin: 0 0 28px; font-size: var(--type-h2-display); font-weight: 800; max-width: 12ch; }
h1.offer-title { font-size: var(--type-h1); }
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card {
  position: relative;
  background: var(--magenta);
  color: #fff;
  padding: 22px 18px 18px;
  min-height: 280px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.card:hover {
  transform: translateY(-6px);
  filter: brightness(1.08);
}
.card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.card ul { margin: 0; padding: 0; list-style: none; font-size: 0.88rem; line-height: 1.4; }
.card .plus { margin-top: 16px; font-weight: 800; font-size: 1.2rem; }
.offer-page .cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
}
.here-ribbon {
  position: absolute;
  top: 16px;
  left: -36px;
  z-index: 2;
  background: #111;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(-42deg);
  pointer-events: none;
}
.card.is-here { overflow: hidden; padding-top: 48px; }
.cards-4--path {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.cards-4--path .card {
  flex: 1 1 160px;
  max-width: 220px;
}
.card-arrow {
  flex: 0 0 auto;
  width: 36px;
  align-self: center;
  height: 28px;
  position: relative;
}
.card-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.card-arrow::after {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
}

.team-band { padding: 80px 6vw; }
.team-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.team-photos { display: flex; gap: 16px; justify-content: flex-end; }
.team-photos figure { margin: 0; width: 150px; }
.team-photos img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; background: #111; }
.team-photos figcaption { margin-top: 8px; font-size: 0.78rem; }
.team-photos strong { display: block; }
.about-link { font-size: 1.6rem; }

.blog-home { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: start; }
.blog-home h2 { margin: 0 0 8px; font-size: var(--type-h2-display); font-weight: 800; }
.blog-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.blog-tile {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  min-height: 160px;
  overflow: hidden;
}
.blog-tile img { width: 100%; height: 160px; object-fit: cover; }
.blog-tile span {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-shadow: 0 1px 8px #000;
}
.blog-tile.wide { grid-column: 1 / -1; }
.blog-tile.wide img { height: 150px; }

.clients {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 6vw;
  text-align: center;
}
.clients h2 { margin: 0 0 40px; font-size: var(--type-h2-display); font-weight: 800; }
.client-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.client-tile {
  background: #fff;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 12px;
}
.client-tile--lg { grid-column: span 2; }
.client-tile img {
  max-width: 82%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
}

body.contact { background: #111; }
.page-hero { background: var(--magenta); color: #fff; padding: 120px 6vw 48px; }
.page-hero h1 { margin: 0 0 12px; font-size: var(--type-h1); font-weight: 800; }
.page-light { background: #fff; color: var(--ink); padding: 120px 6vw 32px; }
.page-light h1 { margin: 0 0 16px; font-size: var(--type-h1); font-weight: 800; }
.page-dark { background: #1a1a1a; color: #fff; padding: 168px 7vw 80px; }
.page-dark h1 { margin: 0 0 28px; font-size: clamp(2.6rem, 6vw, 4.2rem); }
body.work {
  background: #141414 url("/assets/media/work/bg-texture.webp") center / cover fixed;
  color: #fff;
}
body.work .page-dark {
  background: transparent;
  padding-top: 220px;
}
body.work .work-heading {
  max-width: 9ch;
  margin: 0 0 5.25rem;
  font-size: var(--type-h1);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

body.about { background: var(--magenta); color: #fff; }
.about-copy { max-width: 68ch; }
.about-copy h2 { margin: 0 0 16px; font-size: var(--type-h2); font-weight: 800; }
.about-team { padding: 24px 6vw 80px; }
.about-team h2 { text-align: center; margin: 0 0 28px; font-size: var(--type-h2-display); font-weight: 800; }
.team-tilt { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; align-items: flex-end; }
.team-tilt figure { margin: 0; width: 210px; }
.team-tilt img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; background: #111; }
.team-tilt figcaption { text-align: center; margin-top: 10px; }
.rot-l { transform: rotate(-7deg); }
.rot-n { transform: rotate(2deg) translateY(-18px); }
.rot-r { transform: rotate(8deg); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-card {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  min-height: 180px;
  overflow: hidden;
  background: #111;
}
.blog-card img { width: 100%; height: 200px; object-fit: cover; opacity: 0.9; }
.blog-card span {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  text-shadow: 0 1px 10px #000;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin: 0 0 52px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.filters button {
  background: none;
  border: 0;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  opacity: 1;
  padding: 0;
}
.filters button.is-on {
  color: var(--magenta);
  font-weight: 800;
}
.filters button:focus-visible,
.work-card:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
}
.work-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.work-card {
  text-decoration: none;
  background: #ecf6f7;
  color: var(--ink);
  padding: 20px 20px 16px;
  display: block;
  transition: transform 0.4s ease;
  --ci1: #111;
  --ci2: #ff4800;
  --ci3: #fff;
  --ci1-ink: #fff;
}
.work-card[hidden] { display: none; }
.work-card.is-in:hover { transform: scale(1.03); }
.work-shot { position: relative; overflow: visible; background: #d7e4df; }
.work-shot img,
.work-shot .ph { width: 100%; height: 190px; object-fit: cover; object-position: top; display: block; }
.work-shot::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.42));
  pointer-events: none;
  z-index: 1;
}
.work-shot .stripes {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -12px;
  height: 22px;
  z-index: 1;
  background:
    linear-gradient(108deg,
      var(--ci1) 0 28%,
      transparent 28% 30%,
      var(--ci2) 30% 56%,
      transparent 56% 58%,
      var(--ci3) 58% 82%,
      transparent 82%);
  transform: skewX(-18deg);
}
.work-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 96px;
  margin-top: 10px;
}
.work-logo img {
  max-height: 52px;
  width: auto;
  height: auto;
  max-width: 72%;
  object-fit: contain;
}
.work-card h2 {
  position: absolute;
  left: 12px;
  top: 10px;
  right: 12px;
  z-index: 2;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.prose { max-width: 72ch; }
.prose h1 { font-size: var(--type-h1); font-weight: 800; line-height: 1.1; }
.prose h2 { font-size: var(--type-h2); font-weight: 800; margin: 2em 0 0.6em; }
.prose h3 { font-size: var(--type-h3); font-weight: 800; margin: 1.4em 0 0.4em; }
.prose img { margin: 16px 0; }
.meta { font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; color: #666; }
.imprint-map { width: 100%; height: 360px; border: 0; margin-top: 24px; }

body.legal { background: #fff; color: var(--ink); }
body.legal .menu-btn { color: var(--ink); }
.legal-page { padding: 176px 6vw 80px; }
.legal-head { max-width: 52rem; }
.legal-head h1 {
  margin: 0;
  font-size: var(--type-h1);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}
.legal-kicker {
  margin: 12px 0 0;
  font-size: 1rem;
  font-weight: 400;
  color: #5a5a5a;
}
.legal-body {
  max-width: 52rem;
  margin-top: 28px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #3a3a3a;
}
.legal-body h2,
.legal-body h3 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.legal-body h2 {
  font-size: var(--type-h2);
  margin: 2.15em 0 0.65em;
}
.legal-body h3 {
  font-size: var(--type-h3);
  margin: 1.7em 0 0.5em;
}
.legal-body h2:first-child,
.legal-body p:first-child { margin-top: 0; }
.legal-body p { margin: 0 0 1.05em; }
.legal-body a {
  color: var(--magenta);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-body a:hover { color: var(--ink); }
.legal-body a:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 2px;
}
.legal-num {
  display: block;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 0.18em;
}
.legal-body strong { color: var(--ink); font-weight: 700; }
.legal-body a strong { color: inherit; }
.legal-body em { font-style: italic; }
.legal-body ul {
  margin: 0 0 1.2em;
  padding: 0;
  list-style: none;
}
.legal-body li { margin: 0 0 0.9em; }
.legal-imprint {
  max-width: 36rem;
  margin-top: 10px;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #4a4a4a;
}
.legal-imprint p { margin: 0 0 1.2em; }
.legal-imprint .imprint-co {
  font-weight: 700;
  color: var(--ink);
}
.legal-imprint a {
  color: inherit;
  text-decoration: none;
}
.legal-imprint a:hover,
.legal-imprint a:focus-visible {
  color: var(--magenta);
  text-decoration: underline;
}
.legal-imprint a:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 2px;
}
.imprint-map-wrap { margin: 4px 0 0; padding: 0; }
.legal-body b { color: var(--ink); font-weight: 700; }
body.legal .imprint-map {
  width: 100%;
  height: 450px;
  border: 0;
  margin-top: 0;
  display: block;
}

.form { display: grid; gap: 12px; max-width: 480px; }
.form input, .form textarea {
  font: inherit; padding: 12px; border: 0; background: #fff; color: var(--ink); width: 100%;
}
.form button {
  font: inherit; font-weight: 800; border: 0; background: var(--ink); color: #fff;
  padding: 14px 18px; cursor: pointer;
}
.alert { padding: 12px; background: #111; color: #fff; }

.foot { background: #111; color: #fff; padding: 56px 6vw 24px; }
.foot-grid { display: grid; grid-template-columns: 160px 1fr 1fr; gap: 28px; align-items: start; }
.foot a { text-decoration: none; display: block; margin: 4px 0; }
.foot h2 { font-size: 1rem; margin: 0 0 12px; }
.foot-line { display: grid; grid-template-columns: 18px 1fr; gap: 8px; align-items: start; }
.foot-ico { color: var(--magenta); display: inline-block; width: 16px; }
.foot-ico svg { width: 16px; height: 16px; display: block; }
.foot-logo { width: 140px; height: auto; }
.foot-legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  font-size: 0.78rem;
  opacity: 0.85;
}
.foot-legal a { display: inline; margin-right: 12px; }
.muted { opacity: 0.7; font-size: 0.9rem; }
.flag { font-size: 1.1rem; margin-top: 10px; display: inline-block; }

body.blog { background: #1a1a1a; color: #fff; }
body.work .band, body.blog .band { color: #fff; }

@media (max-width: 900px) {
  body.work .page-dark { padding-top: 168px; }
  body.work .work-heading { margin-bottom: 2.4rem; max-width: 8.5ch; }
  .filters { gap: 12px 22px; margin-bottom: 36px; }
  .split, .blog-home, .cards-4, .work-grid, .foot-grid, .team-row, .blog-grid, .offer-page .cards-4 {
    grid-template-columns: 1fr;
  }
  .card-arrow { display: none; }
  .cards-4--path { gap: 14px; }
  .hero, .offer { min-height: 70vh; }
  .page-hero-img { min-height: 100svh; }
  .hero-inner, .page-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 22vh 6vw 6vh;
  }
  .consult { max-width: none; width: min(100%, 340px); }
  .figure { min-height: 80vh; }
  .client-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
  .clients { min-height: 70vh; padding: 48px 5vw; }
  .rail { top: auto; bottom: 12px; flex-direction: row; right: 12px; }
  .legal-page { padding: 156px 7vw 56px; }
  .legal-body { font-size: 0.98rem; }
  body.legal .imprint-map { height: 280px; }
  .team-photos { justify-content: flex-start; }
  .blog-tile.wide { grid-column: auto; }
  .split-block, .post-grid, .plan-grid, .compare, .nav-grid, .nav-social, .sites-layout, .play-split { grid-template-columns: 1fr; }
  .nav-overlay { padding: 72px 8vw 40px; }
  .nav-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "nav"
      "social"
      "addr";
    row-gap: 2.25rem;
    column-gap: 0;
  }
  .nav-aside { justify-self: start; }
  .nav-social {
    grid-template-columns: max-content max-content;
    column-gap: 28px;
  }
  .nav-overlay nav a { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  .star-box .leaf { left: 8px; width: 96px; }
  .quote-copy { width: 100%; }
  .products-tag { right: -8%; }
}

.visually {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
body.inner-hero .menu-btn,
body.work-detail .menu-btn { color: #fff; }
body.work-detail {
  background: #141414 url("/assets/media/work/bg-texture.webp") center / cover fixed;
  color: #fff;
}
body.work-detail .band-dark {
  background: transparent;
  overflow: hidden;
}
body.work-detail .band-dark .cta {
  background: #fff;
  color: #111;
  padding: 10px 18px;
  margin-top: 28px;
}

.page-hero-img {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: #fff;
  display: grid;
  align-items: end;
}
.page-hero-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding: 28vh 6vw 7vh;
  background: linear-gradient(transparent 20%, rgba(0,0,0,.5));
  width: 100%;
}
.page-hero-inner h1 {
  display: grid;
  gap: 0.16em;
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 5.4vw, 4.3rem);
  line-height: 1.12;
  font-weight: 800;
  max-width: none;
}
.page-hero-inner .hero-line { display: block; }
.lead-band {
  padding: 72px 10vw 88px;
  text-align: center;
}
.lead-band p {
  margin: 0 auto 18px;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.55;
  max-width: 68ch;
}
.lead-band p:last-child { margin-bottom: 0; }
.lead-copy { font-size: 1.15rem; text-align: center; max-width: 62ch; }

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.split-pad { padding: 48px 6vw; color: #fff; }
.split-visual { position: relative; }
.split-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.caption-box {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 340px;
  background: #163a3a;
  color: #fff;
  padding: 18px;
  font-size: 0.92rem;
}
.tone-teal { background: #1aa3a3; }
.tone-teal .caption-box { background: #128f8f; }
.tone-mint { background: #9fd6c6; color: var(--ink); }
.tone-mint .split-pad { color: var(--ink); }
.tone-mint .caption-box { background: #3d8f7a; }
.tone-ink { background: #1d1d1b; }
.tone-ink .caption-box { background: #1d1d1b; }
.tone-navy { background: #142033; }
.tone-navy .caption-box { background: #2a1848; }
.split-lead { margin: 18px 0 0; max-width: 36ch; font-size: 0.95rem; }
.split-sub {
  margin: 10px 0 0;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 16ch;
}
.checks { list-style: none; padding: 0; margin: 16px 0; }
.checks li { padding: 0 0 8px 22px; position: relative; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: currentColor; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.compare .minus, .compare .plus-badge {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-weight: 800;
}
.circle-wrap { text-align: center; margin-top: 48px; }
.circle-stage {
  position: relative;
  display: inline-block;
  margin: 24px auto 0;
}
.circle {
  width: min(420px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--magenta);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  padding: 32px;
}
.products-tag {
  position: absolute;
  right: -18%;
  top: 36%;
  width: min(200px, 42vw);
  height: auto;
  pointer-events: none;
}
.circle-note {
  max-width: 52ch;
  margin: 28px auto 0;
  font-size: 0.95rem;
}
.quote-split {
  position: relative;
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 8% 5%;
}
.quote-copy {
  position: relative;
  z-index: 1;
  width: min(52%, 640px);
  background: #1d1d1bc2;
  padding: 5%;
  display: grid;
  gap: 12px;
}
.quote-copy h2 { margin: 0; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.quote-copy p { margin: 12px 0 0; max-width: 42ch; font-size: 1.05rem; }
.quote-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.play-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: #111;
  color: #fff;
  align-items: stretch;
}
.play-visual { min-height: 280px; }
.play-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.play-copy {
  padding: 64px 8vw;
  display: grid;
  align-content: center;
  gap: 14px;
}
.play-copy h2 { margin: 0; font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.play-copy p { margin: 0; max-width: 36ch; }

.mission {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 72px 6vw;
}
.mission h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  text-transform: none;
}
.banner-kicker {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.canvas { position: relative; min-height: 380px; color: #fff; }
.canvas > img { width: 100%; height: 380px; object-fit: cover; }
.canvas-copy {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 48px 8vw;
  gap: 16px;
}

.reviews { background: #fff; padding: 48px 6vw; }
.reviews-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.reviews blockquote {
  margin: 0;
  background: #f6f6f6;
  padding: 16px;
  font-size: 0.88rem;
}
.reviews span { display: block; font-size: 0.75rem; opacity: 0.7; margin: 4px 0 8px; }

.cta-block {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 48px 6vw 72px;
  overflow: hidden;
}
.cta-arrow { font-size: 1.6rem; margin: 0 0 12px; }
.cta-block h2 { max-width: 18ch; margin: 0 auto 24px; font-size: var(--type-h2-display); font-weight: 800; }
.cta-form {
  --cta-bg: #2c0a48;
  position: relative;
  z-index: 0;
  max-width: 540px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  background: var(--cta-bg);
  border: 0;
  padding: 28px 24px;
  text-align: left;
  overflow: hidden;
}
.cta-form::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 220%;
  height: 220%;
  translate: -50% -50%;
  background: conic-gradient(#ff415a, #c44bff, #4b6cff, #ff415a);
  animation: ctaBorder 5s linear infinite;
}
.cta-form::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4px;
  background: var(--cta-bg);
}
.cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.cta-form-extra { max-width: 540px; }
.cta-extra { padding-top: 64px; }
.cta-form input, .cta-form textarea, .cta-form select {
  font: inherit;
  width: 100%;
  padding: 12px;
  border: 0;
  background: #fff;
  color: var(--ink);
}
.cta-form [name="company_url"] { position: absolute; left: -9999px; width: 1px; height: 1px; }
.cta-form button {
  font: inherit;
  font-weight: 800;
  border: 0;
  background: var(--magenta);
  color: #fff;
  padding: 14px;
  cursor: pointer;
  text-transform: uppercase;
}
@keyframes ctaBorder {
  to { transform: rotate(360deg); }
}

.project-top {
  background: #1a1a1a;
  color: #fff;
  padding: 120px 6vw 48px;
  --ci1: #c9a227;
  --ci2: #111111;
  --ci3: #ffffff;
  --ci1-ink: #111;
  --ci2-ink: #fff;
}
.project-hero {
  position: relative;
  padding: 20px 4% 36px;
  margin: 0 0 28px;
}
.project-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 6%;
  right: 18%;
  bottom: 8%;
  background: var(--ci1);
  transform: skewX(-16deg);
}
.project-hero .chip-row {
  position: relative;
  z-index: 3;
}
.project-hero .project-frame {
  position: relative;
  z-index: 1;
}
.project-frame {
  position: relative;
  margin: 20px 0 0;
  padding: 12px 8% 8px 4%;
}
.project-frame::before,
.project-frame::after {
  content: "";
  position: absolute;
  z-index: 0;
  transform: skewX(-16deg);
}
.project-frame::before {
  top: -10%;
  right: 4%;
  width: 48%;
  height: 62%;
  background: var(--ci2);
}
.project-frame::after {
  display: none;
}
.project-shot {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: top;
  background: var(--mint);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--ink);
  padding: 6px 12px 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 4px;
}
.chip::before {
  content: "+";
  color: var(--magenta);
  font-weight: 800;
}
.project-done {
  background: linear-gradient(180deg, #2c2c2c 0%, #111 100%);
  padding: 22px 24px;
  margin: 0 0 28px;
}
.done-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: none;
}
.done-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #fff;
  padding: 8px 14px 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 4px;
}
.done-row li::before {
  content: "✓";
  color: var(--magenta);
  font-weight: 800;
}
.partners {
  position: relative;
  margin: 48px 0 40px;
  padding: 56px 8% 64px 12%;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
}
.partners::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 8%;
  left: 22%;
  right: 8%;
  bottom: 6%;
  background: #cfcfcf;
  transform: skewX(-18deg);
}
.partners h2 {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin: 0 0 28px -4%;
  font-size: var(--type-h2-display);
  font-weight: 800;
  color: #fff;
}
.project-top h1 {
  display: inline-block;
  max-width: 18ch;
  margin: 0 0 18px;
  font-size: var(--type-h1);
  font-weight: 800;
  line-height: 1.15;
  color: #111;
  background: #d8d8d8;
  padding: 0.35em 1.4em 0.4em 0.55em;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}
.project-story h2 { color: #fff; font-size: var(--type-h2); font-weight: 800; }
.project-top .mark-cta {
  background: #fff;
  color: #111;
  padding: 12px 22px;
  text-transform: uppercase;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}
.partner-logos {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
}
.partner-logos img {
  height: 52px;
  width: auto;
  background: none;
  padding: 0;
}
.project-story { color: #fff; }

body.post { background: #2f2f2f; color: #fff; }
.post-hero {
  position: relative;
  min-height: 78vh;
  color: #fff;
  display: grid;
  align-items: center;
}
.post-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.post-hero-inner {
  position: relative;
  z-index: 1;
  padding: 140px 6vw 64px;
  width: 100%;
}
.post-card {
  background: var(--magenta);
  color: #fff;
  max-width: 34rem;
  padding: 28px 28px 22px;
}
.post-card h1 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1.15;
  font-weight: 800;
}
.post-kicker { margin: 0; font-size: 0.95rem; font-weight: 500; line-height: 1.45; }
.post-layout { padding: 48px 6vw 72px; }
.post-grid { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
.post-layout .prose { color: #fff; }
.post-layout .prose h3 { margin: 32px 0 12px; font-size: var(--type-h3); }
.post-layout .prose p.problem,
.post-layout .prose p.loesung { border-left: 0; padding-left: 0; }
.post-layout .prose p.problem { font-weight: 500; }
.post-figure { margin: 18px 0 28px; }
.post-figure img { width: 100%; height: auto; }
.post-foot { margin-top: 40px; text-align: center; }
.post-foot .hero-cta { margin-top: 16px; }
.related { display: grid; gap: 18px; }
.related h2 {
  margin: 0;
  font-size: 1rem;
  background: var(--magenta);
  color: #fff;
  padding: 8px 12px;
  justify-self: start;
}
.related a { text-decoration: none; display: grid; gap: 8px; color: #fff; }
.related img { width: 100%; height: 140px; object-fit: cover; }
.related span { font-size: 0.88rem; font-weight: 700; }
.related small { letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.7rem; color: var(--magenta); }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan {
  background: #fff;
  padding: 0 0 18px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-head { background: var(--magenta); color: #fff; padding: 16px; }
.plan-head h2 { margin: 0; }
.plan-head p { margin: 4px 0 0; font-size: 0.85rem; }
.plan.popular { outline: 3px solid var(--magenta); }
.popular-flag {
  position: absolute;
  top: 12px;
  right: -8px;
  background: #111;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
}
.price { margin: 16px 18px 8px; }
.price s { display: block; font-size: 0.85rem; color: #c45; font-weight: 500; }
.price-now { display: flex; align-items: flex-start; gap: 6px; line-height: 1; }
.price-now .cur { font-size: 0.85rem; margin-top: 8px; }
.price-now strong { font-size: 2.6rem; font-weight: 800; }
.price-now sup { font-size: 0.95rem; margin-top: 6px; }
.price small { display: block; font-size: 0.85rem; margin-top: 6px; color: #666; }
.plan .checks { padding: 0 18px; flex: 1; }
.plan-buy {
  display: block;
  margin: 8px 18px;
  background: var(--magenta);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  padding: 10px;
  text-transform: uppercase;
}
.plan .muted { padding: 0 18px; font-size: 0.75rem; }
.care-intro { text-align: center; max-width: 52ch; margin: 0 auto 32px; }
.star-intro {
  padding: 48px 6vw 24px;
  display: flex;
  justify-content: center;
}
.star-box {
  position: relative;
  max-width: 720px;
  width: 100%;
  background: #fff;
  padding: 48px 56px 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}
.star-box .star-icon {
  display: block;
  font-size: 2.2rem;
  margin: 0 0 12px;
}
.star-box h2 { margin: 0 0 12px; font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.star-box .leaf {
  position: absolute;
  left: -48px;
  bottom: -28px;
  width: 140px;
  height: auto;
}
.pitch-band { text-align: center; padding: 24px 6vw 8px; }
.pitch-kicker { margin: 0 0 20px; font-size: clamp(1.4rem, 3vw, 2rem); }
.pitch-circle {
  width: min(520px, 90vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--magenta);
  color: #fff;
  display: grid;
  place-items: center;
  padding: 48px;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
}
.sites-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 8vw 72px;
  max-width: 1200px;
  margin: 0 auto;
}
.sites-aside h2 { margin: 0 0 12px; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.sites-aside .bush-img { width: min(280px, 100%); margin: 28px 0 0; }
.site-acc {
  background: #111;
  color: #fff;
  margin: 0 0 10px;
}
.site-acc summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 16px 48px 16px 18px;
  list-style: none;
  position: relative;
}
.site-acc summary::-webkit-details-marker { display: none; }
.site-acc summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}
.site-acc[open] summary::after { content: "−"; }
.site-acc .site-acc-body { padding: 0 18px 16px; font-size: 0.95rem; }
.why-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.faq details { background: #111; color: #fff; margin: 0 0 8px; }
.faq summary { cursor: pointer; font-weight: 800; padding: 14px 16px; list-style: none; }
.faq details p { margin: 0; padding: 0 16px 14px; font-size: 0.92rem; }
.bush { text-align: center; margin: 32px 0 0; }
.bush img { margin: 0 auto; max-width: 220px; }
.hero-cta {
  display: inline-block;
  background: var(--magenta);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  padding: 14px 18px;
  align-self: end;
}
.post-card .hero-cta {
  background: transparent;
  padding: 16px 0 0;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.post-kicker { max-width: 36ch; font-weight: 700; }
.prose p.problem { border-left: 3px solid #111; padding-left: 12px; }
.prose p.loesung { border-left: 3px solid var(--magenta); padding-left: 12px; }
.check-line { display: flex; gap: 8px; align-items: flex-start; font-size: 0.82rem; color: #fff; }
.check-line input { margin-top: 4px; }
.related small { opacity: 0.65; font-size: 0.75rem; }

@media (max-width: 900px) {
  .reviews-row, .post-grid, .plan-grid, .why-faq, .cta-row { grid-template-columns: 1fr; }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal.is-in { opacity: 1; transform: none; }
.card.reveal.is-in:hover { transform: translateY(-6px); }
.work-card.reveal.is-in:hover { transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  .figure-slides img.is-on { animation: none; }
  .card:hover, .work-card.is-in:hover, .work-card.reveal.is-in:hover { transform: none; }
  .cta-form::before { animation: none; }
}

.nf {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  padding: 120px 6vw 80px;
}
.nf-inner {
  text-align: center;
  max-width: 640px;
}
.nf-code {
  margin: 0 0 8px;
  font-size: clamp(4.5rem, 18vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--magenta);
}
.nf-title { margin: 0 0 20px; font-size: var(--type-h2-display); }
.nf-title .mark { display: inline; }
.nf-lead {
  margin: 0 auto 30px;
  max-width: 46ch;
  font-size: 1.05rem;
}
.nf-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.nf-btn {
  display: inline-block;
  background: var(--magenta);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  padding: 14px 22px;
  border: 0;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.nf-btn--ghost { background: var(--ink); }
.nf-btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.nf-btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  .nf-btn { transition: none; }
  .nf-btn:hover { transform: none; }
}
@media (max-width: 900px) {
  .nf { padding: 90px 6vw 60px; }
}

