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

html, body {
  margin: 0;
  padding: 0;
  background: #07090f;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f6f7fb;
}

/* ── LAYOUT ── */
.app-wrap {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 0%, rgba(224,176,74,0.10) 0%, transparent 40%),
    radial-gradient(circle at 10% 10%, rgba(74,98,180,0.07) 0%, transparent 30%),
    #07090f;
  padding: 12px 8px 20px;
}

.shell {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
}

.phone {
  width: 100%;
  background: linear-gradient(180deg, #10141e 0%, #070910 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  padding: 14px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.65);
  position: relative;
  overflow: hidden;
}

/* ── VIEWS ── */
.view { display: none; }
.view.active { display: block; }

/* ── CARDS ── */
.card {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  background: rgba(11,15,24,0.97);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
}

.header-card {
  padding: 15px;
  border-color: rgba(224,176,74,0.38);
  background: linear-gradient(180deg, rgba(16,20,31,0.98), rgba(7,10,17,0.98));
}

/* ── BRANDING ── */
.logo-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.brand-name {
  color: #f1bd55;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1;
}

.brand-sub {
  color: rgba(241,189,85,0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-top: 2px;
  text-transform: uppercase;
}

.badge {
  border: 1px solid rgba(241,189,85,0.42);
  color: #f1bd55;
  font-size: 9px;
  font-weight: 900;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(241,189,85,0.08);
  white-space: nowrap;
  flex-shrink: 0;
}

.claim {
  margin: 0 0 12px;
  color: #aeb5c4;
  font-size: 12px;
  line-height: 1.4;
}

/* ── PROGRESS ── */
.progress-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 6px;
}

.progress-label {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.progress-num {
  color: #f1bd55;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.progress-track {
  width: 100%;
  height: 5px;
  background: #1e2535;
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f2c35f, #d99b2f);
  border-radius: 99px;
  transition: width 0.5s ease;
}

/* ── TODAY CARD ── */
.today-card {
  padding: 15px;
  background: linear-gradient(160deg, rgba(241,189,85,0.06) 0%, rgba(10,14,23,0.98) 60%);
  border-color: rgba(241,189,85,0.22);
}

.kicker {
  color: #f1bd55;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
}

.today-card h2 {
  margin: 0 0 8px;
  color: #f6f7fb;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
}

.today-card p {
  margin: 0 0 14px;
  color: #aeb5c4;
  font-size: 12px;
  line-height: 1.4;
}

/* ── SECTION TITLE ── */
.section-title {
  color: #f6f7fb;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .8px;
  margin: 4px 0 12px;
}

/* ── ROADMAP GRID (dashboard) ── */
.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 16px;
}

.step-card {
  min-height: 86px;
  padding: 11px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0c111d 0%, #060a12 100%);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.025);
}

.step-card:hover {
  border-color: rgba(241,189,85,0.4);
  transform: translateY(-1px);
}

.step-card.active {
  border-color: rgba(241,189,85,0.82);
  background:
    radial-gradient(circle at top left, rgba(241,189,85,0.14), transparent 50%),
    linear-gradient(180deg, #10131c 0%, #070a12 100%);
}

.step-card.done {
  border-color: rgba(100,200,100,0.35);
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1e2635;
  color: #aeb5c4;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 9px;
  font-weight: 900;
  margin-bottom: 7px;
}

.step-card.active .step-num {
  background: #f1bd55;
  color: #10131b;
}

.step-card.done .step-num {
  background: #2a5c2a;
  color: #7fdc7f;
}

.step-name {
  color: #f6f7fb;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 4px;
}

.step-desc-small {
  color: #9ca4b4;
  font-size: 10px;
  line-height: 1.2;
  padding-bottom: 16px;
}

.step-state {
  position: absolute;
  left: 11px;
  bottom: 9px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #9ca4b4;
}

.step-card.active .step-state { color: #f1bd55; }
.step-card.done .step-state { color: #7fdc7f; }
.step-card.in-progress { border-color: rgba(241,189,85,0.35); }
.step-card.in-progress .step-num { background: rgba(241,189,85,0.18); color: #f1bd55; }
.step-card.in-progress .step-state { color: rgba(241,189,85,0.65); }

/* ── ROADMAP LIST (roadmap view) ── */
.roadmap-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.roadmap-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(12,17,29,0.98), rgba(7,10,16,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}

.roadmap-row:hover {
  border-color: rgba(241,189,85,0.35);
  transform: translateX(2px);
}

.roadmap-row.active {
  border-color: rgba(241,189,85,0.75);
  background: radial-gradient(circle at left, rgba(241,189,85,0.1), transparent 60%),
    linear-gradient(90deg, rgba(14,18,30,0.98), rgba(7,10,16,0.98));
}

.roadmap-row.done { border-color: rgba(80,180,80,0.3); }
.roadmap-row.in-progress { border-color: rgba(241,189,85,0.35); }
.roadmap-row.in-progress .rm-num { background: rgba(241,189,85,0.18); color: #f1bd55; }
.roadmap-row.in-progress .rm-arrow { color: rgba(241,189,85,0.65); }

.rm-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1e2635;
  color: #aeb5c4;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

.roadmap-row.active .rm-num { background: #f1bd55; color: #10131b; }
.roadmap-row.done .rm-num { background: #2a5c2a; color: #7fdc7f; }

.rm-info { flex: 1; }

.rm-name {
  color: #f6f7fb;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 3px;
}

.rm-desc {
  color: #9ca4b4;
  font-size: 11px;
}

.rm-arrow {
  color: #9ca4b4;
  font-size: 14px;
}

.roadmap-row.active .rm-arrow { color: #f1bd55; }

/* ── PAGE TITLE CARD ── */
.page-title-card {
  padding: 14px;
  border-color: rgba(241,189,85,0.18);
  background: linear-gradient(160deg, rgba(241,189,85,0.05), rgba(10,14,23,0.98));
}

.page-title-card h2 {
  margin: 0 0 7px;
  color: #f6f7fb;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.08;
}

.page-title-card p {
  margin: 0;
  color: #aeb5c4;
  font-size: 12px;
  line-height: 1.4;
}

/* ── WORK CARDS (Builder steps) ── */
.work-card {
  padding: 13px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0c111d 0%, #070b15 100%);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 10px;
}

.work-card-num {
  color: #f1bd55;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 6px;
}

.work-card-title {
  color: #f6f7fb;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.2;
}

.work-card-help {
  color: #9ca4b4;
  font-size: 11px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.example-box {
  background: rgba(241,189,85,0.07);
  border: 1px solid rgba(241,189,85,0.2);
  border-radius: 11px;
  padding: 10px 11px;
  color: #d4ae5a;
  font-size: 11px;
  line-height: 1.4;
}

.example-box strong {
  color: #f1bd55;
  font-weight: 900;
}

.note-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 11px;
  padding: 10px 11px;
  color: #9ca4b4;
  font-size: 10px;
  line-height: 1.4;
  margin-top: 10px;
}
.btn-copy-prompt {
  width: 100%;
  margin-top: 12px;
  padding: 13px;
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  color: #0a0a0f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}
.btn-copy-prompt:hover {
  background: linear-gradient(135deg, #d4b05a, #f0d47a);
}
.btn-copy-prompt.copied {
  background: linear-gradient(135deg, #2a7a4a, #3a9a5c);
  color: #ffffff;
}

/* ── INPUT FIELDS (Builder) ── */
.input-field {
  width: 100%;
  background: rgba(7,10,17,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 11px;
  color: #f6f7fb;
  font-size: 12px;
  line-height: 1.5;
  font-family: inherit;
  resize: vertical;
  min-height: 72px;
  margin-top: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  display: block;
}

.input-field:focus {
  border-color: rgba(241,189,85,0.6);
  box-shadow: 0 0 0 2px rgba(241,189,85,0.08);
}

.input-field::placeholder {
  color: rgba(156,164,180,0.45);
}

/* ── RESULT CARD ── */
.result-card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(241,189,85,0.05);
  border: 1px solid rgba(241,189,85,0.18);
  margin-bottom: 10px;
}

.result-card-icon { font-size: 18px; flex-shrink: 0; }

.result-card-text {
  color: #9ca4b4;
  font-size: 11px;
  line-height: 1.4;
}

.result-output-card {
  background: linear-gradient(180deg, #0d1222 0%, #070a14 100%);
  border: 1px solid rgba(241,189,85,0.25);
  border-radius: 14px;
  padding: 15px;
  margin-bottom: 10px;
}
.result-output-headline {
  color: #f1bd55;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}
.result-output-body {
  color: #9ca4b4;
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.result-output-label {
  color: rgba(241,189,85,0.7);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.result-output-text {
  background: rgba(7,10,23,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 12px;
  color: #e8ecf4;
  font-size: 12px;
  line-height: 1.55;
}
.result-output-text.empty {
  color: rgba(156,164,180,0.4);
  font-style: italic;
}

/* ── DT HEADER BRANDING ── */
.brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  margin-bottom: 10px;
}
.dt-header-logo-img {
  width: 58px;
  height: 58px;
  max-width: 58px;
  max-height: 58px;
  object-fit: contain;
  display: block;
}

/* ── KLARHEITS-CHECK ── */
.clarity-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  min-height: 18px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
}
.clarity-indicator.clarity-empty { display: none; }
.clarity-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.clarity-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.clarity-message {
  font-size: 10px;
  color: rgba(156,164,180,0.75);
  line-height: 1.4;
}
.clarity-red .clarity-dot { background: #e05a5a; }
.clarity-red .clarity-label { color: #e05a5a; }
.clarity-yellow .clarity-dot { background: #d9a035; }
.clarity-yellow .clarity-label { color: #d9a035; }
.clarity-green .clarity-dot { background: #4caf8a; }
.clarity-green .clarity-label { color: #4caf8a; }

/* ── STEP NAVIGATION ── */
.step-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

/* ── BUTTONS ── */
.btn-gold {
  display: block;
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #f2c35f, #d99b2f);
  color: #0d1018;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .5px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(217,155,47,0.2);
  transition: opacity 0.2s, transform 0.15s;
  text-align: center;
}

.btn-gold:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-gold.wide { flex: 1; }

.btn-ghost {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px 16px;
  background: transparent;
  color: #9ca4b4;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(241,189,85,0.4);
  color: #f1bd55;
}

.btn-outline {
  display: block;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 11px 14px;
  background: transparent;
  color: #9ca4b4;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  margin-bottom: 14px;
  transition: border-color 0.2s, color 0.2s;
  text-align: center;
}

.btn-outline:hover {
  border-color: rgba(241,189,85,0.35);
  color: #f1bd55;
}

/* ── TOOLS GRID ── */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 16px;
}

.tool-card {
  padding: 14px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0c111d 0%, #060a12 100%);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  text-align: center;
}

.tool-card { cursor: pointer; transition: border-color 0.2s, transform 0.15s; }
.tool-card:hover { border-color: rgba(241,189,85,0.45); transform: translateY(-2px); }
.tool-card.locked { opacity: 0.75; }

.tool-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.tool-name {
  color: #f6f7fb;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 4px;
}

.tool-desc {
  color: #9ca4b4;
  font-size: 10px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.tool-open-hint {
  font-size: 10px;
  font-weight: 800;
  color: #f1bd55;
  margin-top: 8px;
}
.tool-profi-hint {
  font-size: 10px;
  font-weight: 500;
  color: #c9a84c;
  opacity: .7;
  margin-top: 3px;
}

.tool-steps { display: flex; flex-direction: column; gap: 7px; }

.tool-step {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #aeb5c4;
  font-size: 12px;
  line-height: 1.4;
}

.tool-step-num {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(241,189,85,0.15);
  border: 1px solid rgba(241,189,85,0.3);
  color: #f1bd55;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prompt-box {
  background: rgba(7,10,17,0.9);
  border: 1px solid rgba(241,189,85,0.25);
  border-radius: 11px;
  padding: 11px 12px;
  color: #c8b87a;
  font-size: 11px;
  line-height: 1.55;
  font-family: 'Courier New', Courier, monospace;
  white-space: pre-wrap;
  word-break: break-word;
  margin-bottom: 10px;
  user-select: all;
}

.lock-badge {
  display: inline-block;
  font-size: 8px;
  font-weight: 900;
  color: #f1bd55;
  border: 1px solid rgba(241,189,85,0.4);
  border-radius: 99px;
  padding: 3px 7px;
  background: rgba(241,189,85,0.08);
  letter-spacing: .5px;
}

/* ── TEMPLATES LIST ── */
.templates-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.template-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 16px;
  background: linear-gradient(90deg, #0c111d, #070a12);
  border: 1px solid rgba(255,255,255,0.07);
}

.template-item.locked { opacity: 0.75; }
.template-item.tb-clickable { cursor: pointer; transition: border-color 0.2s, transform 0.15s; }
.template-item.tb-clickable:hover { border-color: rgba(241,189,85,0.4); transform: translateX(3px); }

.template-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.template-info { flex: 1; }

.template-name {
  color: #f6f7fb;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 3px;
}

.template-desc {
  color: #9ca4b4;
  font-size: 11px;
}

/* ── PROFIL ── */
.profil-hero {
  padding: 20px 15px;
  text-align: center;
  border-color: rgba(241,189,85,0.22);
  background: linear-gradient(160deg, rgba(241,189,85,0.07), rgba(10,14,23,0.98));
}

.status-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #141c2e, #07090f);
  border: 1.5px solid rgba(241,189,85,0.65);
  box-shadow:
    0 0 0 5px rgba(241,189,85,0.07),
    0 0 22px rgba(241,189,85,0.18),
    0 10px 30px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto 12px;
}

.status-logo-symbol {
  color: #f1bd55;
  font-size: 24px;
  line-height: 1;
}

.status-logo-label {
  color: rgba(241,189,85,0.6);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 3px;
}

.profil-name {
  color: #f6f7fb;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 3px;
}

.profil-tagline {
  color: #f1bd55;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  margin-bottom: 16px;
}

.profil-stats {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
}

.stat { text-align: center; }

.stat-num {
  color: #f1bd55;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  color: #9ca4b4;
  font-size: 10px;
  margin-top: 3px;
}

.profil-section {
  padding: 13px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0c111d, #060a12);
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 10px;
}

.profil-section-title {
  color: #f1bd55;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.profil-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.profil-item:last-child { border-bottom: none; }

.profil-item-label {
  color: #9ca4b4;
  font-size: 12px;
}

.profil-item-val {
  color: #f6f7fb;
  font-size: 12px;
  font-weight: 700;
}

.profil-item-val.gold { color: #f1bd55; }

/* ── POSITIONIERUNG ── */
.positionierung {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 13px;
  background: rgba(241,189,85,0.05);
  border: 1px solid rgba(241,189,85,0.15);
  margin-bottom: 14px;
}

.pos-badge {
  background: linear-gradient(135deg, #f2c35f, #d99b2f);
  color: #0d1018;
  font-size: 10px;
  font-weight: 900;
  border-radius: 99px;
  padding: 3px 9px;
  white-space: nowrap;
}

.pos-text {
  color: #aeb5c4;
  font-size: 11px;
}

/* ── FOOTER NOTE ── */
.footer-note {
  text-align: center;
  color: #687084;
  font-size: 9px;
  margin-top: 6px;
  margin-bottom: 4px;
  letter-spacing: .3px;
}

/* ── BOTTOM NAV ── */
.bottom-nav {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  padding: 7px;
  border-radius: 18px;
  background: rgba(7,11,18,0.97);
  border: 1px solid rgba(255,255,255,0.09);
  margin: 10px 0 6px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.nav-item {
  border: none;
  background: transparent;
  border-radius: 12px;
  padding: 8px 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-item:hover {
  background: rgba(241,189,85,0.08);
}

.nav-item.active {
  background: rgba(241,189,85,0.15);
}

.nav-icon {
  color: #9ca4b4;
  font-size: 16px;
  line-height: 1;
  display: block;
}

.nav-label {
  color: #9ca4b4;
  font-size: 8px;
  font-weight: 800;
  display: block;
}

.nav-item.active .nav-icon,
.nav-item.active .nav-label {
  color: #f1bd55;
}

/* ── TUTORIAL CARD ── */
.tutorial-card {
  padding: 13px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0c111d 0%, #070b15 100%);
  border: 1px solid rgba(241,189,85,0.18);
  margin-bottom: 10px;
}

.tutorial-header {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 9px;
}

.tutorial-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(241,189,85,0.09);
  border: 1px solid rgba(241,189,85,0.28);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f1bd55;
  font-size: 13px;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}
.tutorial-icon:hover {
  border-color: rgba(241,189,85,0.6);
  box-shadow: 0 0 10px rgba(241,189,85,0.22);
  color: #fdd07a;
}

.tutorial-meta { flex: 1; }

.tutorial-badge {
  color: #f1bd55;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.tutorial-title {
  color: #f6f7fb;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.tutorial-desc {
  color: #9ca4b4;
  font-size: 11px;
  line-height: 1.4;
  margin-bottom: 11px;
}

.tutorial-hint {
  display: none;
  color: rgba(156,164,180,0.65);
  font-size: 10px;
  margin-top: 7px;
  text-align: center;
}

/* ── TOOLBOX RESSOURCEN ── */
.resource-access-block {
  background: linear-gradient(180deg, #0d1222 0%, #070a14 100%);
  border: 1px solid rgba(241,189,85,0.2);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}
.resource-access-title {
  color: #f1bd55;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.resource-access-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.resource-meta-label {
  color: rgba(156,164,180,0.6);
  font-size: 10px;
  font-weight: 600;
}
.resource-type-badge {
  background: rgba(241,189,85,0.12);
  color: #f1bd55;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  border: 1px solid rgba(241,189,85,0.25);
}
.resource-status-label {
  font-size: 10px;
  font-weight: 600;
  margin-left: auto;
}
.resource-status-label.ready { color: #4caf8a; }
.resource-status-label.pending { color: rgba(156,164,180,0.5); }
.resource-access-desc {
  color: rgba(156,164,180,0.75);
  font-size: 11px;
  line-height: 1.55;
  margin-bottom: 4px;
}
.resource-hint {
  display: none;
  color: rgba(156,164,180,0.65);
  font-size: 10px;
  margin-top: 8px;
  text-align: center;
}
.resource-list-status {
  font-size: 9px;
  font-weight: 600;
  display: block;
  margin-top: 3px;
}
.resource-list-status.ready { color: #4caf8a; }
.resource-list-status.pending { color: rgba(156,164,180,0.45); }

/* ── EXPORT VIEW ── */
.export-section {
  padding: 15px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0c111d 0%, #070b15 100%);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 10px;
}

.export-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.export-section-num {
  color: #f1bd55;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .8px;
  white-space: nowrap;
}

.export-section-name {
  color: #f6f7fb;
  font-size: 13px;
  font-weight: 800;
  flex: 1;
}

.export-section-status {
  font-size: 9px;
  font-weight: 900;
  color: #9ca4b4;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px;
  padding: 2px 7px;
  white-space: nowrap;
}

.export-section-status.done { color: #7fdc7f; border-color: rgba(100,200,100,0.3); }
.export-section-status.partial { color: #f1bd55; border-color: rgba(241,189,85,0.3); }

.export-qa { margin-bottom: 14px; }
.export-qa:last-child { margin-bottom: 0; }

.export-q {
  color: #f6f7fb;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 5px;
  line-height: 1.3;
}

.export-answer-box {
  background: rgba(7,10,17,0.85);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px;
  padding: 9px 12px;
  color: #aeb5c4;
  font-size: 12px;
  line-height: 1.5;
}

.export-answer-box.empty {
  color: rgba(156,164,180,0.38);
  font-style: italic;
  border-color: rgba(255,255,255,0.04);
}

.export-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f1bd55;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 14px 0 10px;
}

.export-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(241,189,85,0.18);
}

.export-kurzfassung-item {
  margin-bottom: 13px;
}

.export-kurzfassung-item:last-child { margin-bottom: 0; }

.export-kurzfassung-label {
  color: #f1bd55;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .9px;
  margin-bottom: 5px;
}

.export-actions { margin-bottom: 14px; }

.copy-success {
  display: none;
  text-align: center;
  color: #7fdc7f;
  font-size: 12px;
  font-weight: 800;
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(100,200,100,0.25);
  border-radius: 10px;
  background: rgba(100,200,100,0.05);
}

/* ── EXPORT SUMMARY CARD ── */
.export-summary {
  padding: 16px;
  border-color: rgba(241,189,85,0.3);
  background: linear-gradient(160deg, rgba(241,189,85,0.07) 0%, rgba(10,14,23,0.98) 60%);
  margin-bottom: 14px;
}

.export-summary h2 {
  margin: 6px 0 8px;
  color: #f6f7fb;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.1;
}

.export-summary p {
  margin: 0 0 14px;
  color: #aeb5c4;
  font-size: 11px;
  line-height: 1.45;
}

.export-summary-stats {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 12px;
  gap: 6px;
}

.export-summary-stat {
  text-align: center;
  flex: 1;
}

.export-summary-num {
  color: #f1bd55;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.export-summary-label {
  color: #9ca4b4;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.export-status-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 900;
  border-radius: 99px;
  padding: 3px 9px;
  margin-bottom: 4px;
  letter-spacing: .4px;
}

.export-status-badge.ready {
  color: #7fdc7f;
  background: rgba(100,200,100,0.1);
  border: 1px solid rgba(100,200,100,0.3);
}

.export-status-badge.partial {
  color: #f1bd55;
  background: rgba(241,189,85,0.08);
  border: 1px solid rgba(241,189,85,0.3);
}

.export-actions .btn-gold { margin-bottom: 10px; }
.export-actions .btn-outline { margin-bottom: 10px; }
.export-masterprompt-desc { font-size: 11px; color: rgba(156,164,180,0.8); margin-bottom: 10px; line-height: 1.5; }
.export-masterprompt-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(197,163,90,0.2); border-radius: 8px; padding: 14px; font-size: 11px; color: rgba(220,225,235,0.85); line-height: 1.7; white-space: pre-wrap; word-break: break-word; }
.export-ki-section { background: rgba(197,163,90,0.05); border: 1px solid rgba(197,163,90,0.15); border-radius: 10px; padding: 16px; margin-bottom: 14px; }
.export-ki-title { font-size: 9px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(197,163,90,0.8); margin-bottom: 6px; }
.export-ki-hint { font-size: 11px; color: rgba(156,164,180,0.7); line-height: 1.5; margin-bottom: 12px; }
.export-ki-links { display: flex; gap: 8px; margin-top: 10px; }
.export-ki-btn { flex: 1; text-align: center; text-decoration: none; display: block; }

/* ── FAQ ── */
.faq-card { margin-bottom: 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; }
.faq-header { width: 100%; background: none; border: none; cursor: pointer; padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; gap: 10px; text-align: left; }
.faq-header-text { flex: 1; }
.faq-headline { font-size: 9px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(197,163,90,0.85); margin-bottom: 3px; }
.faq-subline { font-size: 11px; color: rgba(156,164,180,0.6); line-height: 1.4; }
.faq-card-arrow { font-size: 18px; color: rgba(197,163,90,0.5); flex-shrink: 0; transition: transform 0.25s; }
.faq-card.faq-card-open .faq-card-arrow { transform: rotate(90deg); color: rgba(197,163,90,0.9); }
.faq-list { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding: 0 16px; }
.faq-card.faq-card-open .faq-list { padding: 0 16px 10px; }
.faq-category { font-size: 8px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(156,164,180,0.4); margin: 14px 0 4px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; padding: 11px 0; display: flex; justify-content: space-between; align-items: center; gap: 10px; text-align: left; font-size: 12px; font-weight: 600; color: rgba(220,225,235,0.85); line-height: 1.4; }
.faq-arrow { font-size: 16px; color: rgba(197,163,90,0.6); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.faq-open .faq-arrow { transform: rotate(90deg); color: rgba(197,163,90,1); }
.faq-a { max-height: 0; overflow: hidden; font-size: 11px; color: rgba(156,164,180,0.8); line-height: 1.6; transition: max-height 0.3s ease; }
.faq-item.faq-open .faq-a { padding-bottom: 11px; }

/* ── RESPONSIVE ── */
@media (max-width: 420px) {
  .app-wrap { padding: 8px 5px 16px; }
  .shell { max-width: 100%; }
  .phone { padding: 11px; border-radius: 20px; }
  .brand-name { font-size: 18px; }
  .dt-header-logo-img { width: 48px; height: 48px; max-width: 48px; max-height: 48px; }
  .today-card h2, .page-title-card h2 { font-size: 17px; }
  .progress-num { font-size: 17px; }
  .section-title { font-size: 15px; }
  .step-name { font-size: 12px; }
  .step-desc-small { font-size: 9px; }
  .step-num { width: 20px; height: 20px; font-size: 8px; }
  .step-card { min-height: 72px; padding: 9px; }
  .roadmap-grid { gap: 7px; }
  .bottom-nav { padding: 6px; }
  .nav-icon { font-size: 14px; }
  .nav-label { font-size: 7px; }
}
