:root {
  --bg: #f7f9fb;
  --paper: #ffffff;
  --ink: #132031;
  --muted: #5b6674;
  --line: #dbe2e8;
  --navy: #12243a;
  --navy-hover: #0b1828;
  --blue: #2e6f8f;
  --blue-soft: #eaf3f7;
  --mint: #bfe3dc;
  --mint-dark: #185c58;
  --sand: #f1eee7;
  --sans: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  --pad: clamp(1.25rem, 5vw, 4.75rem);
  --max: 1180px;
  --radius: 0.85rem;
  --shadow: 0 24px 70px rgba(18, 36, 58, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--navy);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-200%);
  padding: 0.65rem 0.9rem;
  background: var(--navy);
  color: #fff;
  border-radius: 0.35rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
  padding: 0.85rem var(--pad);
  background: rgba(250, 251, 252, 0.94);
  background: color-mix(in srgb, var(--bg) 92%, white);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(19, 32, 49, 0.1);
}

.wordmark {
  flex: 0 0 auto;
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.wordmark span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  margin-left: auto;
  font-size: 0.89rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0 1rem;
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--navy);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  width: 15px;
  height: 1.5px;
  background: var(--ink);
}

.hero,
.problem-section,
.solutions,
.affordable,
.examples,
.experience,
.screenshots,
.approach,
.contact,
.impressum,
.privacy {
  padding: clamp(4.5rem, 9vw, 7.5rem) var(--pad);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  max-width: calc(var(--max) + var(--pad) * 2);
  margin: 0 auto;
  min-height: 0;
}

.motto {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(52vh, 32rem);
  overflow: hidden;
  background:
    radial-gradient(60rem 30rem at 85% 15%, rgba(46, 111, 143, 0.55), transparent 65%),
    radial-gradient(40rem 22rem at 10% 100%, rgba(191, 227, 220, 0.16), transparent 70%),
    linear-gradient(160deg, #0b1828 0%, var(--navy) 55%, #16304a 100%);
  color: #fff;
}

.motto > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.motto::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.25));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.25));
}

.motto::after {
  content: "";
  position: absolute;
  right: -8rem;
  top: -10rem;
  z-index: 1;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(191, 227, 220, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(191, 227, 220, 0.045), 0 0 0 8rem rgba(191, 227, 220, 0.03);
}

.motto-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(var(--max) + var(--pad) * 2);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 6rem) var(--pad) clamp(2.75rem, 6vw, 4.25rem);
}

.motto-text {
  display: grid;
  gap: 0.12em;
  font-size: clamp(2rem, 6vw, 4.4rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
  max-width: 24ch;
  hyphens: manual;
  -webkit-hyphens: manual;
}

.motto-now {
  color: var(--mint);
}

.motto-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35em 1.1em;
  margin-top: clamp(1rem, 2.5vw, 1.6rem);
  padding-top: clamp(0.9rem, 2vw, 1.3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  font-weight: 620;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.88);
}

.hero-copy {
  padding: 2rem 0;
}

.kicker {
  font-family: var(--mono);
  font-size: 0.76rem;
  line-height: 1.4;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.15rem;
}

.kicker.light {
  color: var(--mint);
}

.hero h1 {
  font-size: clamp(2.55rem, 5.8vw, 5.2rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.02;
  max-width: 12ch;
}

.lead {
  margin-top: 1.6rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.15rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0 1.25rem;
  font-size: 0.93rem;
  font-weight: 650;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-solid {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(18, 36, 58, 0.14);
}

.btn-solid:hover,
.btn-solid:focus-visible {
  background: var(--navy-hover);
}

.btn-ghost {
  background: var(--paper);
  border-color: var(--line);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--navy);
}

.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.3rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.trust-list li {
  position: relative;
  padding-left: 1.15rem;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--mint-dark);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -6rem;
  width: 14rem;
  height: 14rem;
  border: 1px solid rgba(191, 227, 220, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 2.5rem rgba(191, 227, 220, 0.04), 0 0 0 5rem rgba(191, 227, 220, 0.03);
}

.panel-label {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.panel-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 2rem 0 1.8rem;
}

.panel-flow > div:not(.flow-arrow) {
  display: grid;
  gap: 0.65rem;
}

.panel-flow span {
  margin-bottom: 0.25rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-flow strong {
  font-size: 0.92rem;
  font-weight: 550;
}

.flow-arrow {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--navy);
  font-size: 1.15rem;
}

.panel-note {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.section-head,
.problem-grid,
.solution-grid,
.affordable,
.example-list,
.experience,
.shot-grid,
.steps,
.contact-grid,
.legal-wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}

.section-head {
  margin-bottom: 2.7rem;
}

.section-head h2,
.affordable h2,
.experience h2,
.screenshots h2,
.contact h2,
.impressum h2,
.privacy h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
  max-width: 17ch;
}

.section-head > p:not(.kicker),
.split-head > p {
  margin-top: 1rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.split-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}

.split-head > p {
  margin: 0;
}

.problem-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.problem-grid article {
  padding: 1.7rem clamp(1rem, 2.5vw, 1.8rem) 0.5rem 0;
}

.problem-grid article + article {
  padding-left: clamp(1rem, 2.5vw, 1.8rem);
  border-left: 1px solid var(--line);
}

.problem-grid span,
.card-number,
.affordable-points > article > span,
.steps li::before {
  display: block;
  margin-bottom: 1.4rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.problem-grid h3,
.solution-card h3,
.affordable-points h3,
.example-list h3,
.experience-grid h3,
.steps h3 {
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
  line-height: 1.3;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.problem-grid p,
.solution-card > p:not(.card-number),
.affordable p,
.example-list article > p:not(.example-type),
.experience-grid p,
.steps p {
  color: var(--muted);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.solution-card {
  min-height: 15rem;
  padding: 1.65rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  display: flex;
  flex-direction: column;
}

.solution-card .example-btn {
  margin-top: auto;
}

.solution-card.featured .example-btn {
  margin-top: 1.25rem;
}

.solution-card.featured {
  grid-row: span 2;
  min-height: 31rem;
  display: flex;
  flex-direction: column;
  background: var(--blue-soft);
  border-color: #c7dce5;
}

.solution-card.featured ul {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid #c7dce5;
  color: var(--ink);
  font-size: 0.9rem;
}

.solution-card.featured li::before {
  content: "✓";
  margin-right: 0.65rem;
  color: var(--mint-dark);
  font-weight: 700;
}

.example-btn {
  margin-top: 1.25rem;
  align-self: start;
  min-height: 2.55rem;
  padding: 0 1.05rem;
  background: var(--paper);
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
}

.example-btn:hover,
.example-btn:focus-visible {
  background: var(--navy);
  color: #fff;
}

.example-dialog {
  width: min(96vw, 880px);
  max-height: 92vh;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  overflow: auto;
}

.example-dialog::backdrop {
  background: rgba(11, 24, 40, 0.82);
}

.example-dialog h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.example-dialog > p:not(.kicker) {
  color: var(--muted);
  max-width: 46rem;
}

.example-shots {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.example-shots .shot {
  aspect-ratio: 16 / 9;
}

.example-dialog-close {
  float: right;
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  margin: -0.3rem -0.3rem 0.6rem 0.6rem;
  border: 0;
  border-radius: 50%;
  background: var(--bg);
  cursor: pointer;
}

.example-dialog-close::before,
.example-dialog-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--ink);
}

.example-dialog-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.example-dialog-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.affordable {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.affordable-intro {
  position: sticky;
  top: 7rem;
}

.affordable-intro > p:not(.kicker) {
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  color: var(--navy);
  font-weight: 680;
  border-bottom: 1px solid var(--navy);
}

.text-link span {
  transition: transform 0.15s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(0.25rem);
}

.affordable-points {
  border-top: 1px solid var(--line);
}

.affordable-points article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--line);
}

.affordable-points > article > span {
  margin: 0;
  padding-top: 0.2rem;
}

.examples {
  background: var(--sand);
  border-top: 1px solid #ded9cf;
  border-bottom: 1px solid #ded9cf;
}

.example-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.example-list article {
  min-height: 17rem;
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid #ded9cf;
  border-radius: 0.65rem;
}

.example-type {
  margin-bottom: 3.25rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
}

.experience {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 7rem);
  background: var(--navy);
  color: #fff;
}

.experience-copy > p:not(.kicker) {
  margin-top: 1.3rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.experience-grid article {
  padding: 1.45rem 1.4rem 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.experience-grid article:nth-child(even) {
  padding-left: 1.4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.experience-grid p {
  color: rgba(255, 255, 255, 0.62);
}

.screenshots {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.shot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
}

.shot-figure {
  display: grid;
  gap: 0.6rem;
  margin: 0;
}

.shot-figure.shot-wide {
  grid-column: 1 / -1;
}

.shot-figure.shot-wide .shot {
  aspect-ratio: 32 / 10;
}

.shot-figure figcaption {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.shot-figure figcaption strong {
  color: var(--ink);
  font-weight: 650;
}

.shot.shot-portrait img,
.shot-figure:nth-child(2) .shot img {
  object-fit: contain;
  object-position: center;
  background: var(--navy);
}

.shot {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  cursor: zoom-in;
}

.shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.25s ease;
}

.shot:hover img,
.shot:focus-visible img {
  transform: scale(1.03);
}

.shot:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.lightbox {
  width: min(96vw, 1200px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(11, 24, 40, 0.82);
}

.lightbox img {
  display: block;
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  background: #0b1828;
  border-radius: 0.5rem;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--ink);
}

.lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  padding: 1.55rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
}

.steps li::before {
  content: "0" counter(step);
}

.contact {
  background: var(--blue-soft);
  border-top: 1px solid #c7dce5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.contact h2 {
  max-width: 15ch;
}

.contact-grid > div > p:not(.kicker) {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #c7dce5;
}

.contact-details p {
  display: grid;
  gap: 0.15rem;
  color: var(--ink) !important;
  font-size: 0.95rem !important;
}

.contact-details span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.contact-details a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--paper);
  border: 1px solid #c7dce5;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(18, 36, 58, 0.08);
}

.form label {
  display: grid;
  gap: 0.42rem;
  font-size: 0.88rem;
  font-weight: 650;
}

.form input,
.form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 0.78rem 0.85rem;
  border-radius: 0.4rem;
  outline: none;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 111, 143, 0.12);
}

.form textarea {
  resize: vertical;
  min-height: 9rem;
}

.form .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

.form-hint {
  font-size: 0.86rem;
  color: var(--muted);
}

.form-fallback {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--blue-soft);
  border: 1px solid #c7dce5;
  border-radius: 0.5rem;
  font-size: 0.88rem;
}

.form-fallback a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  font-weight: 650;
}

.fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-small {
  min-height: 2.35rem;
  padding: 0 0.9rem;
  font-size: 0.84rem;
}

.form-hint.error {
  color: #a12f2f;
}

.form.sent .form-hint {
  color: var(--mint-dark);
}

.form-privacy {
  font-size: 0.86rem;
  color: var(--muted);
}

.form-privacy a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.impressum,
.privacy {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.impressum h2 {
  max-width: 14ch;
}

.privacy h2 {
  max-width: 20ch;
}

.legal-body {
  max-width: 42rem;
}

.legal-body h3 {
  margin: 2rem 0 0.55rem;
  font-size: 1.12rem;
  line-height: 1.3;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.legal-body h3:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.legal-body p + p {
  margin-top: 0.85rem;
}

.legal-body a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 1.5rem;
  padding: 2rem var(--pad) 2.4rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer .wordmark {
  display: inline-block;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.copy a:hover,
.copy a:focus-visible {
  color: var(--ink);
}

.copy {
  justify-self: end;
  font-family: var(--mono);
  font-size: 0.76rem;
}

.copy a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 5rem;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-panel {
    max-width: 44rem;
  }

  .problem-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid article:nth-child(3) {
    border-left: 0;
  }

  .problem-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-card.featured {
    grid-row: span 2;
  }
}

@media (max-width: 840px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
    min-height: 2.35rem;
    padding: 0 0.85rem;
    font-size: 0.82rem;
  }

  .nav-toggle {
    display: flex;
    margin-left: 0;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: var(--pad);
    left: var(--pad);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.55rem 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0.65rem;
    box-shadow: var(--shadow);
  }

  .nav-links a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav.open .nav-links {
    display: flex;
  }

  .split-head,
  .affordable,
  .experience,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-head {
    gap: 1rem;
  }

  .affordable-intro {
    position: static;
  }

  .example-list {
    grid-template-columns: 1fr;
  }

  .example-list article {
    min-height: 0;
  }

  .example-type {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 620px) {
  .motto {
    min-height: 0;
    align-items: end;
  }

  .motto::after {
    right: -14rem;
    top: -14rem;
    width: 26rem;
    height: 26rem;
  }

  .motto-text {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .motto-sub {
    display: grid;
    gap: 0.2em;
    font-size: 1.05rem;
  }

  .shot-figure.shot-wide .shot {
    aspect-ratio: 16 / 10;
  }

  .btn-small {
    width: auto;
  }

  .motto-copy {
    padding-top: 4.5rem;
  }

  .hero,
  .problem-section,
  .solutions,
  .affordable,
  .examples,
  .experience,
  .screenshots,
  .approach,
  .contact,
  .impressum,
  .privacy {
    padding-block: 4.2rem;
  }

  .hero {
    padding-top: 3.7rem;
    gap: 2.2rem;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-list {
    display: grid;
    gap: 0.55rem;
  }

  .panel-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .problem-grid,
  .solution-grid,
  .experience-grid,
  .shot-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .problem-grid article,
  .problem-grid article + article {
    padding: 1.5rem 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .problem-grid article:first-child {
    border-top: 0;
  }

  .solution-card,
  .solution-card.featured {
    min-height: 0;
  }

  .solution-card.featured ul {
    margin-top: 2rem;
  }

  .experience-grid article,
  .experience-grid article:nth-child(even) {
    padding: 1.35rem 0;
    border-left: 0;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: start;
  }

  .copy {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
