@import url('https://fonts.googleapis.com/css2?family=Anton&family=IBM+Plex+Mono:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #0B0B0C;
  --ink-soft: #3A3A38;
  --paper: #EDE8DC;
  --paper-dim: #E1DBCB;
  --signal: #D7FF3D;
  --stamp: #FF3B1F;
  --line: rgba(11,11,12,0.16);
  --line-paper: rgba(237,232,220,0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
h1, h2, h3, .display {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.mono { font-family: 'IBM Plex Mono', monospace; }

.grain {
  position: absolute; inset: -70px 0; pointer-events: none;
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 15px 15px;
  opacity: 0.05;
  will-change: transform;
}

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper); border-bottom: 2px solid var(--ink);
}
.topbar__row { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { font-family: 'Anton', sans-serif; font-size: 22px; text-transform: uppercase; }
.brand span { color: var(--stamp); }
.topbar__cta {
  background: var(--ink); color: var(--signal); padding: 12px 22px;
  font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: transform .12s ease;
}
.topbar__cta:hover { transform: translate(-2px,-2px); box-shadow: 3px 3px 0 var(--stamp); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 76px 0 64px; border-bottom: 2px solid var(--ink); }
.hero__grid { display: grid; grid-template-columns: 1.2fr 0.85fr; gap: 56px; align-items: start; position: relative; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.hero__eyebrow::before { content: "—"; color: var(--stamp); }
.hero h1 { font-size: clamp(52px, 7.4vw, 100px); }
.hero h1 .hl { color: var(--signal); -webkit-text-stroke: 2px var(--ink); }
.hero__sub { margin-top: 26px; font-size: 18px; color: var(--ink-soft); max-width: 48ch; }
.hero__actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--ink); color: var(--signal);
  font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 14px; letter-spacing: 0.03em;
  text-transform: uppercase; padding: 17px 28px; display: inline-block; border: 2px solid var(--ink); cursor: pointer;
  transition: transform .12s ease;
}
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 3px 3px 0 var(--stamp); }
.btn-ghost {
  border: 2px solid var(--ink); color: var(--ink);
  font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 14px; letter-spacing: 0.03em;
  text-transform: uppercase; padding: 15px 26px; display: inline-block;
  transition: transform .12s ease;
}
.btn-ghost:hover { transform: translate(-2px,-2px); box-shadow: 3px 3px 0 var(--ink); }

.hero__panel { border: 2px solid var(--ink); padding: 30px; background: var(--paper); position: relative; }
.hero__panel-label { font-family: 'IBM Plex Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 16px; }
.hero__panel-line { padding: 14px 0; border-top: 1px solid var(--line); }
.hero__panel-line:first-of-type { border-top: none; }
.hero__panel-line strong { font-family: 'Anton', sans-serif; font-size: 19px; text-transform: uppercase; display: block; }
.hero__panel-line span { color: var(--ink-soft); font-size: 14px; }

.stamp {
  position: absolute; right: 20px; top: 60px; width: 130px; height: 130px;
  border: 3px solid var(--stamp); border-radius: 50%; transform: rotate(-12deg);
  display: flex; align-items: center; justify-content: center; text-align: center;
  animation:
    stamp-in .45s cubic-bezier(.2,0,.1,1) .35s backwards,
    stamp-idle 6s ease-in-out 1.2s infinite;
}
@keyframes stamp-in {
  0%   { transform: rotate(-26deg) scale(1.8); opacity: 0; }
  62%  { transform: rotate(-10deg) scale(.94); opacity: 1; }
  100% { transform: rotate(-12deg) scale(1); opacity: 1; }
}
@keyframes stamp-idle {
  0%, 100% { transform: rotate(-12deg) scale(1); }
  50%      { transform: rotate(-8deg) scale(1.035); }
}
.stamp span {
  font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--stamp); line-height: 1.3;
}

/* ---------- Why: inverted, quote-led ---------- */
.why { background: var(--ink); color: var(--paper); padding: 100px 0; position: relative; overflow: hidden; }
.why .grain { color: var(--paper); }
.why__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: start; position: relative; }
.section-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--signal); margin-bottom: 16px; display: block;
}
.why h2 { font-size: clamp(32px, 4vw, 48px); max-width: 13ch; }
.why__quote {
  font-family: 'Anton', sans-serif; font-size: 30px; text-transform: none; line-height: 1.2;
  border-left: 4px solid var(--signal); padding-left: 24px;
}
.why__body { display: flex; flex-direction: column; gap: 24px; margin-top: 28px; }
.why__body p { font-size: 16px; color: rgba(237,232,220,0.78); max-width: 60ch; }

/* ---------- Path: ticket-stub boxes ---------- */
.path { padding: 100px 0; border-bottom: 2px solid var(--ink); }
.path h2 { font-size: clamp(32px, 4vw, 48px); max-width: 18ch; margin-bottom: 52px; }
.path .section-tag { color: var(--stamp); }
.path__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.path__step {
  --base-y: 0px;
  border: 2px solid var(--ink); padding: 26px 22px; position: relative;
  background: var(--paper);
  transform: translateY(var(--base-y));
}
.path__step:nth-child(2) { --base-y: 18px; }
.path__step:nth-child(3) { --base-y: 36px; }
.path__step:hover { box-shadow: 6px 6px 0 var(--ink); }
.path__num {
  font-family: 'IBM Plex Mono', monospace; font-size: 13px; font-weight: 700;
  color: var(--stamp); margin-bottom: 12px; display: block; text-transform: uppercase;
}
.path__step h3 { font-size: 24px; margin-bottom: 10px; }
.path__step p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Benefits: inverted, mono arrows ---------- */
.benefits { background: var(--ink); color: var(--paper); padding: 100px 0; position: relative; overflow: hidden; }
.benefits .grain { color: var(--paper); }
.benefits__head { max-width: 56ch; margin-bottom: 52px; position: relative; }
.benefits__head h2 { font-size: clamp(32px, 4vw, 48px); }
.benefits .section-tag { color: var(--signal); }
.benefits__list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-paper); position: relative; }
.benefits__item {
  padding: 28px 4px; border-bottom: 1px solid var(--line-paper);
  display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: baseline;
}
.benefits__item:nth-child(odd) { border-right: 1px solid var(--line-paper); padding-right: 30px; }
.benefits__item:nth-child(even) { padding-left: 30px; }
.benefits__mark { font-family: 'IBM Plex Mono', monospace; font-size: 15px; color: var(--signal); font-weight: 700; }
.benefits__item h3 { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: 19px; margin-bottom: 8px; }
.benefits__item p { color: rgba(237,232,220,0.72); font-size: 15px; }

/* ---------- Note ---------- */
.note {
  border: 2px dashed var(--ink); padding: 32px 36px; margin: 0 0 100px;
}
.note p { font-size: 15px; color: var(--ink-soft); max-width: 68ch; font-family: 'Inter', sans-serif; }
.note strong { color: var(--ink); font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; font-size: 13px; letter-spacing: 0.04em; }

/* ---------- Apply ---------- */
.apply { background: var(--ink); color: var(--paper); padding: 100px 0 112px; position: relative; overflow: hidden; }
.apply .grain { color: var(--paper); }
.apply__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; position: relative; }
.apply .section-tag { color: var(--stamp); }
.apply h2 { font-size: clamp(32px, 4vw, 46px); max-width: 12ch; }
.apply__intro p { margin-top: 20px; color: rgba(237,232,220,0.72); font-size: 16px; max-width: 44ch; }
.apply__phone { margin-top: 30px; font-family: 'IBM Plex Mono', monospace; font-size: 14px; color: rgba(237,232,220,0.6); }
.apply__phone a { color: var(--signal); font-weight: 600; }

form.apply-form { display: grid; gap: 14px; }
.apply-form input, .apply-form textarea {
  width: 100%; background: transparent; border: 2px solid var(--line-paper);
  color: var(--paper); padding: 15px 16px; font-size: 15px; font-family: 'Inter', sans-serif;
}
.apply-form input::placeholder, .apply-form textarea::placeholder { color: rgba(237,232,220,0.42); }
.apply-form input:focus, .apply-form textarea:focus { outline: none; border-color: var(--signal); }
.apply-form textarea { resize: vertical; min-height: 92px; }
.apply-form button { justify-self: start; margin-top: 4px; }
.apply-form__status { font-family: 'IBM Plex Mono', monospace; font-size: 13px; min-height: 20px; color: rgba(237,232,220,0.7); }
.apply-form__status.ok { color: var(--signal); }
.apply-form__status.err { color: #FF9C7A; }

.apply .btn-primary {
  background: var(--signal); color: var(--ink); border-color: var(--signal);
}
.apply .btn-primary:hover { box-shadow: 3px 3px 0 var(--paper); }

/* ---------- Footer ---------- */
footer { padding: 34px 0; border-top: 2px solid var(--ink); }
.footer__row { display: flex; justify-content: space-between; align-items: center; font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--ink-soft); flex-wrap: wrap; gap: 12px; text-transform: uppercase; letter-spacing: 0.03em; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero__grid, .why__grid, .apply__grid { grid-template-columns: 1fr; }
  .path__row { grid-template-columns: 1fr; }
  .path__step:nth-child(2), .path__step:nth-child(3) { --base-y: 0px; }
  .benefits__list { grid-template-columns: 1fr; }
  .benefits__item:nth-child(odd) { border-right: none; padding-right: 4px; }
  .benefits__item:nth-child(even) { padding-left: 4px; }
  .note { padding: 26px 22px; }
  .stamp { display: none; }
}

/* ---------- Motion: Scroll-Reveals & Micro-Interactions ---------- */
/* Harte, schnelle Kurve — Stempel-Aufschlag statt weiches Floaten */
:root { --snap: cubic-bezier(.22, 1, .36, 1); --hit: cubic-bezier(.2, 0, 0, 1); }

.reveal {
  opacity: 0;
  transform: translateY(calc(var(--base-y, 0px) + 28px));
  transition:
    opacity .5s var(--snap),
    transform .5s var(--snap),
    box-shadow .14s var(--hit);
  transition-delay: calc(var(--d, 0) * 95ms), calc(var(--d, 0) * 95ms), 0s;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(var(--base-y, 0px));
}

/* Buttons & CTA: schneller, härter, mit Druckpunkt */
.topbar__cta, .btn-primary, .btn-ghost {
  transition: transform .1s var(--hit), box-shadow .1s var(--hit);
}
.topbar__cta:hover, .btn-primary:hover { transform: translate(-3px, -3px); box-shadow: 4px 4px 0 var(--stamp); }
.btn-ghost:hover { transform: translate(-3px, -3px); box-shadow: 4px 4px 0 var(--ink); }
.topbar__cta:active, .btn-primary:active, .btn-ghost:active {
  transform: translate(1px, 1px); box-shadow: 0 0 0 transparent; transition-duration: .05s;
}
.apply .btn-primary:hover { box-shadow: 4px 4px 0 var(--paper); }

/* Path-Boxen: Schatten schlägt schnell auf, Reveal bleibt weich */
.path__step { transition: opacity .5s var(--snap), transform .5s var(--snap), box-shadow .12s var(--hit); }

/* Benefits: Pfeil schiebt an, Titel leuchtet auf */
.benefits__mark { transition: transform .14s var(--hit); }
.benefits__item:hover .benefits__mark { transform: translateX(8px); }
.benefits__item h3 { transition: color .14s var(--hit); }
.benefits__item:hover h3 { color: var(--signal); }

/* Formular: Fokus rastet ein */
.apply-form input, .apply-form textarea { transition: border-color .14s var(--hit), box-shadow .14s var(--hit); }
.apply-form input:focus, .apply-form textarea:focus { box-shadow: 4px 4px 0 rgba(215, 255, 61, .18); }

/* Barrierefreiheit: Bewegung raus, Inhalte sofort sichtbar */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: translateY(var(--base-y, 0px)); transition: none; }
  .stamp { animation: none; }
  .grain { transform: none !important; }
  .topbar__cta, .btn-primary, .btn-ghost, .benefits__mark, .path__step { transition: none; }
}
