  @font-face {
    font-family: 'IndustryCond';
    src: local('Arial Narrow');
  }

  :root {
    --black: #0A0A0A;
    --panel: #161616;
    --panel-line: #2A2A2A;
    --offwhite: #F2F0EA;
    --amber: #F5A800;
    --amber-dim: #B97E00;
    --warnred: #D43B2A;
    --text-dim: #9C9A92;
  }

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

  body {
    background: var(--black);
    color: var(--offwhite);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, .display {
    font-family: 'Arial Narrow', 'Oswald', sans-serif;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

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

  /* ===== HEADER ===== */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
    border-bottom: 1px solid var(--panel-line);
    position: sticky;
    top: 0;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(6px);
    z-index: 50;
  }

  .logo-mark {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .logo-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .logo-badge svg { width: 22px; height: 22px; }

  .logo-text {
    font-family: 'Arial Narrow', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.04em;
  }
  .logo-text span { color: var(--amber); }

  nav { display: flex; gap: 36px; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; }
  nav a { color: var(--text-dim); transition: color 0.2s; }
  nav a:hover { color: var(--offwhite); }

  .header-cta {
    background: var(--amber);
    color: var(--black);
    padding: 11px 22px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 2px;
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    padding: 110px 48px 90px;
    overflow: hidden;
    border-bottom: 1px solid var(--panel-line);
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -160px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,168,0,0.10) 0%, transparent 70%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
  }

  .hero-content { position: relative; max-width: 760px; }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--amber);
    display: inline-block;
  }

  .hero h1 {
    font-size: 68px;
    line-height: 0.98;
    margin-bottom: 26px;
  }
  .hero h1 .accent { color: var(--amber); }

  .hero p.lede {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 38px;
  }

  .hero-actions { display: flex; gap: 16px; }

  .btn-primary {
    background: var(--amber);
    color: var(--black);
    padding: 16px 30px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-ghost {
    border: 1px solid var(--panel-line);
    padding: 16px 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 2px;
    color: var(--offwhite);
  }

  .hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--panel-line);
  }
  .stat-num {
    font-family: 'Arial Narrow', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--amber);
  }
  .stat-label {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ===== SECTION HEADER ===== */
  .section { padding: 80px 48px; }
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 44px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .section-head h2 { font-size: 36px; }
  .section-head p { color: var(--text-dim); font-size: 15px; max-width: 380px; }

  /* ===== TYPENSCHILD CARDS (signature element) ===== */
  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .plate {
    background: var(--panel);
    border: 1px solid var(--panel-line);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.25s, transform 0.25s;
  }
  .plate:hover { border-color: var(--amber-dim); transform: translateY(-3px); }

  .plate-image {
    height: 180px;
    background: linear-gradient(135deg, #1f1f1f, #141414);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--panel-line);
  }
  .plate-image svg { width: 56px; height: 56px; opacity: 0.85; }

  .plate-rivet {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #3a3a3a;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.6);
  }
  .plate-rivet.tl { top: 10px; left: 10px; }
  .plate-rivet.tr { top: 10px; right: 10px; }

  .plate-status {
    position: absolute;
    top: 12px; right: 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 2px;
  }
  .status-free { background: rgba(118,200,120,0.15); color: #7ED389; border: 1px solid rgba(126,211,137,0.35); }
  .status-busy { background: rgba(212,59,42,0.15); color: #E8786A; border: 1px solid rgba(212,59,42,0.35); }

  .plate-body { padding: 20px 22px 22px; }

  .plate-serial {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    margin-bottom: 8px;
  }

  .plate-name {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: 0;
  }

  .plate-spec {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .plate-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px dashed var(--panel-line);
  }

  .plate-price { font-size: 13px; }
  .plate-price strong { font-size: 20px; color: var(--amber); font-weight: 800; }
  .plate-price span { color: var(--text-dim); font-size: 12px; }

  .plate-btn {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--offwhite);
    padding: 9px 16px;
    border-radius: 2px;
  }

  /* ===== PROCESS ===== */
  .process {
    background: var(--offwhite);
    color: var(--black);
    padding: 90px 48px;
  }
  .process .section-head p { color: #5a584f; }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .process-step {
    padding: 0 24px;
    position: relative;
  }
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    right: -12px;
    width: 24px;
    height: 1px;
    background: #c9c6ba;
  }
  .step-tag {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--amber-dim);
    margin-bottom: 14px;
  }
  .process-step h3 { font-size: 17px; margin-bottom: 10px; letter-spacing: 0; text-transform: none; }
  .process-step p { font-size: 13.5px; color: #5a584f; line-height: 1.55; }

  .id-note {
    margin-top: 48px;
    background: #fff;
    border: 1px solid #e0ddd1;
    border-left: 3px solid var(--warnred);
    padding: 18px 22px;
    font-size: 13.5px;
    color: #3a3833;
    line-height: 1.6;
    max-width: 720px;
  }
  .id-note strong { color: var(--warnred); }

  /* ===== MEMBER TEASER ===== */
  .member {
    padding: 90px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    border-top: 1px solid var(--panel-line);
  }
  .member-visual {
    background: var(--panel);
    border: 1px solid var(--panel-line);
    border-radius: 4px;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .member-visual .play {
    width: 64px; height: 64px;
    border-radius: 50%;
    border: 2px solid var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .member-visual .play::after {
    content: '';
    border-left: 14px solid var(--amber);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 3px;
  }
  .member h2 { font-size: 32px; margin-bottom: 18px; }
  .member p { color: var(--text-dim); font-size: 15px; line-height: 1.65; margin-bottom: 14px; max-width: 460px; }
  .member-lock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--amber);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-top: 12px;
  }

  /* ===== FOOTER ===== */
  footer {
    padding: 40px 48px;
    border-top: 1px solid var(--panel-line);
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--text-dim);
  }

  /* ===== KATALOG: FILTERLEISTE ===== */
  .filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .filter-chip {
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid var(--panel-line);
    border-radius: 2px;
    color: var(--text-dim);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
  }
  .filter-chip:hover { border-color: var(--amber-dim); color: var(--offwhite); }
  .filter-chip.active {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--black);
  }

  .empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-dim);
    border: 1px dashed var(--panel-line);
    border-radius: 4px;
  }

  /* ===== FORMULARE (Anfrage, Login, Registrierung) ===== */
  .form-page {
    max-width: 640px;
    margin: 0 auto;
    padding: 70px 24px 100px;
  }
  .form-card {
    background: var(--panel);
    border: 1px solid var(--panel-line);
    border-radius: 4px;
    padding: 40px;
  }
  .form-card h1 { font-size: 28px; margin-bottom: 10px; }
  .form-card .form-intro { color: var(--text-dim); font-size: 14px; margin-bottom: 32px; line-height: 1.6; }

  .field-group { margin-bottom: 20px; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
  }
  input[type="text"], input[type="email"], input[type="password"],
  input[type="tel"], input[type="date"], input[type="number"],
  select, textarea {
    width: 100%;
    background: var(--black);
    border: 1px solid var(--panel-line);
    border-radius: 2px;
    padding: 13px 14px;
    color: var(--offwhite);
    font-size: 14.5px;
    font-family: inherit;
    transition: border-color 0.2s;
  }
  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--amber);
  }
  textarea { resize: vertical; min-height: 90px; }

  .field-hint { font-size: 12px; color: var(--text-dim); margin-top: 6px; line-height: 1.5; }

  .alert-box {
    border-left: 3px solid var(--warnred);
    background: rgba(212,59,42,0.08);
    padding: 14px 18px;
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 28px;
    border-radius: 2px;
  }
  .alert-box.success {
    border-left-color: #7ED389;
    background: rgba(126,211,137,0.08);
  }
  .alert-box strong { color: var(--warnred); }
  .alert-box.success strong { color: #7ED389; }

  .btn-submit {
    width: 100%;
    background: var(--amber);
    color: var(--black);
    padding: 16px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    margin-top: 8px;
  }
  .btn-submit:hover { background: #ffb91a; }

  .form-footer-link { text-align: center; margin-top: 22px; font-size: 13.5px; color: var(--text-dim); }
  .form-footer-link a { color: var(--amber); font-weight: 600; }

  /* ===== STATUS-BADGES (Anfragen-Übersicht) ===== */
  .badge { display: inline-flex; padding: 4px 10px; font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; border-radius: 2px; }
  .badge-neu { background: rgba(245,168,0,0.15); color: var(--amber); border: 1px solid rgba(245,168,0,0.35); }
  .badge-bestaetigt { background: rgba(126,211,137,0.15); color: #7ED389; border: 1px solid rgba(126,211,137,0.35); }
  .badge-abgelehnt { background: rgba(212,59,42,0.15); color: #E8786A; border: 1px solid rgba(212,59,42,0.35); }
  .badge-abgeholt { background: rgba(160,160,255,0.15); color: #A8A8F5; border: 1px solid rgba(160,160,255,0.35); }

  /* ===== KATEGORIE-BADGE AUF TYPENSCHILD ===== */
  .plate-category {
    position: absolute;
    top: 12px; left: 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 2px;
    background: rgba(255,255,255,0.08);
    color: var(--text-dim);
  }

  @media (max-width: 900px) {
    header { padding: 18px 22px; }
    nav { display: none; }
    .hero { padding: 70px 22px 60px; }
    .hero h1 { font-size: 40px; }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    .section { padding: 56px 22px; }
    .catalog-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 28px; }
    .process-step::after { display: none; }
    .member { grid-template-columns: 1fr; padding: 56px 22px; }
    .field-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px; }
  }
