:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:#6a6a6a;
  --hair:rgba(0,0,0,0.14);
  --max: 760px;
  --hero-image: url("assets/ChatGPT Image 18. Mai 2026, 14_09_50.png");
}

/* ------------------------------------------------------------
   Computer Modern Typewriter / CM-Super style (self-hosted)
   Place the font files into /fonts and keep filenames as below.
   If you use different filenames, adjust the URLs accordingly.
   ------------------------------------------------------------ */

@font-face {
  font-family: "CMU Typewriter Text";
  src:
    url("fonts/cmu-typewriter-text-regular.woff2") format("woff2"),
    url("fonts/cmu-typewriter-text-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CMU Typewriter Text";
  src:
    url("fonts/cmu-typewriter-text-bold.woff2") format("woff2"),
    url("fonts/cmu-typewriter-text-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*{ box-sizing:border-box; }

html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
}

/* Typewriter aesthetics: slightly larger text + more line-height for readability */
body{
  font-family: "CMU Typewriter Text", "CMU Typewriter", "Latin Modern Mono", "LM Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0;
  background:
    linear-gradient(rgba(255,255,255,0.58), rgba(255,255,255,0.9) 74%, var(--bg)),
    var(--hero-image) center top / cover no-repeat fixed;
}

/* Layout */
.page{
  max-width: var(--max);
  margin: 0 auto;
  padding: 168px 32px 132px;
  text-align:center;
  overflow-wrap: break-word;
}

.hero{
  margin-bottom: 136px;
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker{
  margin:0 0 34px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

h1{
  margin:0 0 32px;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
}

.typewriter-name{
  display: inline-block;
  max-width: 14ch;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
  border-right: 1px solid var(--text);
  animation:
    type-name 1.45s steps(14, end) 0.2s both,
    type-caret 0.85s step-end infinite;
}

@keyframes type-name{
  from{ max-width: 0; }
  to{ max-width: 14ch; }
}

@keyframes type-caret{
  0%, 45%{ border-color: var(--text); }
  46%, 100%{ border-color: transparent; }
}

@media (prefers-reduced-motion: reduce){
  .typewriter-name{
    max-width: none;
    animation: none;
    border-right: 0;
  }
}

.subtitle{
  margin:0 0 30px;
  font-size: 15px;
  letter-spacing: 0.12em;
  line-height: 1.9;
}

.meta{
  margin:0;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.hero-actions{
  margin-top: 58px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.sep{
  padding: 0 10px;
  color: var(--hair);
}

.section{
  margin: 0 0 126px;
}

h2{
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

p{
  margin: 0 auto;
  max-width: 700px;
  font-size: 15px;
  line-height: 1.95;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.legal .section{
  margin-bottom: 88px;
}

.section > p,
.note,
.legal p{
  text-align: justify;
  text-align-last: auto;
}

.card p,
.step-txt{
  text-align: left;
  text-align-last: auto;
}

/* Links: very restrained */
.link{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.22);
  padding-bottom: 2px;
}

.link:hover{
  border-bottom-color: rgba(0,0,0,0.55);
}

/* Cards: subtle, nearly paper-like */
.grid{
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card{
  padding: 22px;
  border: 1px solid var(--hair);
  border-radius: 8px;
  text-align: left;
}

.card h3{
  margin:0 0 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.card p{
  margin:0;
  max-width: none;
  font-size: 14px;
  line-height: 1.9;
  hyphens: auto;
  -webkit-hyphens: auto;
  text-align: left;
  text-align-last: auto;
}

.note{
  margin-top: 36px;
  color: var(--muted);
  font-size: 13px;
  max-width: 680px;
}

.steps{
  list-style: none;
  padding: 0;
  margin: 36px auto 0;
  max-width: 700px;
  text-align: left;
  border-top: 1px solid var(--hair);
}

.steps li{
  display:flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hair);
}

.step-nr{
  min-width: 44px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.step-txt{
  font-size: 14px;
  line-height: 1.9;
  hyphens: auto;
  -webkit-hyphens: auto;
  text-align: justify;
}

.contact{
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: center;
}

.label{
  margin:0 0 6px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer{
  margin-top: 68px;
  padding-top: 42px;
  border-top: 1px solid var(--hair);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
}

/* Responsive */
@media (min-width: 720px){
  .page{ padding: 190px 44px 144px; }
  .grid{ grid-template-columns: 1fr 1fr; }
  .contact{ grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 520px){
  body{
    font-size: 15px;
    line-height: 1.75;
    background:
      linear-gradient(rgba(255,255,255,0.62), rgba(255,255,255,0.92) 70%, var(--bg)),
      var(--hero-image) 32% top / auto 62vh no-repeat scroll;
  }

  .page{
    padding: 88px 22px 76px;
  }

  .hero{
    margin-bottom: 88px;
    min-height: 52vh;
  }

  .kicker,
  h2,
  .label{
    letter-spacing: 0.12em;
  }

  h1{
    font-size: 40px;
    margin-bottom: 28px;
  }

  .subtitle{
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1.85;
    margin-bottom: 26px;
  }

  .meta,
  .hero-actions,
  .footer{
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .section{
    margin-bottom: 88px;
  }

  p{
    font-size: 14px;
    line-height: 1.8;
  }

  .card{
    padding: 18px;
  }

  .steps li{
    display: block;
    padding: 20px 0;
  }

  .step-nr{
    display: block;
    min-width: 0;
    margin-bottom: 6px;
  }

  .contact{
    gap: 24px;
  }
}
