:root {
  --red: #FF0000;
  --red-dark: #A32D2D;
  --cream: #FEE4BC;
  --cream-soft: #F5F3EC;
  --ink: #2B2B28;
  --muted: #6B6B60;
  --line: #E5E2D6;
  --green-bg: #EAF3DE;
  --green-text: #3B6D11;
  --gray-bg: #F1EFE8;
  --gray-text: #6B6B60;
  --red-bg: #FCEBEB;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream-soft);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#app {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  min-height: 100vh;
}

.screen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hidden {
  display: none !important;
}

.header {
  background: #fff;
  padding: 22px 20px 18px;
  border-bottom: 1px solid #eee9df;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.logo-single {
  height: 28px;
  width: auto;
  display: block;
}

.logo-photo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
}

.logo-text-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.powered-by {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.header h1 {
  margin: 0 0 2px;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.header p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.content {
  flex: 1;
  padding: 18px 18px 90px;
  overflow-y: auto;
}

.auth-content {
  padding: 24px 22px 40px;
}

.card {
  background: var(--cream-soft);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
}

.card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--muted);
}

.card-row strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.progress-track {
  width: 100%;
  height: 8px;
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--red);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.highlight-card {
  background: var(--red-bg);
  border: 0.5px solid #F0A5A5;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

.highlight-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--red-dark);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.highlight-title {
  margin: 6px 0 2px;
  font-size: 15px;
  font-weight: 600;
  color: #501313;
}

.highlight-ziel {
  margin: 0 0 12px;
  font-size: 13px;
  color: #791F1F;
}

.section-label {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.step-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--line);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.step-row:last-child {
  border-bottom: none;
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
}

.step-icon.done { background: var(--green-bg); color: var(--green-text); }
.step-icon.current { background: var(--red-bg); color: var(--red-dark); }
.step-icon.open { background: var(--gray-bg); color: var(--gray-text); }

.step-title {
  flex: 1;
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  min-width: 0;
}

.step-title.open { color: var(--gray-text); }

.badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

.badge.done { background: var(--green-bg); color: var(--green-text); }
.badge.current { background: var(--red-bg); color: var(--red-dark); }
.badge.open { background: var(--gray-bg); color: var(--gray-text); }

.btn {
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-secondary {
  background: var(--cream-soft);
  color: var(--ink);
  border: 0.5px solid var(--line);
}

.btn-small {
  width: auto;
  padding: 8px 14px;
  font-size: 13px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.field input, .field textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 9px;
  border: 1px solid var(--line);
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
}

.field input:focus, .field textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}

.field textarea {
  resize: vertical;
  min-height: 70px;
}

.field-hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.msg {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 14px;
}

.msg-error {
  background: var(--red-bg);
  color: var(--red-dark);
}

.msg-success {
  background: var(--green-bg);
  color: var(--green-text);
}

.link-row {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.link-btn {
  background: none;
  border: none;
  color: var(--red);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.bottom-nav {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  border-top: 0.5px solid var(--line);
  background: #fff;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  color: #9C9A8F;
  font-family: inherit;
  padding: 4px 10px;
}

.nav-item.active {
  color: var(--red);
}

.nav-item span {
  font-size: 10px;
  font-weight: 600;
}

.icon-circle {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.back-btn {
  background: var(--cream-soft);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
}

.step-detail-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
}

.step-detail-title {
  margin: 4px 0 8px;
  font-size: 19px;
  font-weight: 700;
}

.step-detail-intro {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
}

.question-list, .result-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.question-list li {
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 0.5px solid var(--line);
}

.story-box {
  background: var(--cream-soft);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.story-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 6px;
}

.story-text {
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  color: var(--ink);
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 0.5px solid var(--line);
  cursor: pointer;
}

.result-item input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  flex-shrink: 0;
}

.result-item span {
  font-size: 14px;
  line-height: 1.4;
}

.notes-save {
  margin-top: 6px;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.center-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 60px 0;
  color: var(--muted);
  font-size: 14px;
}

.countdown-card {
  background: var(--red);
  border-radius: 14px;
  padding: 20px 18px;
  margin-bottom: 16px;
  text-align: center;
}

.countdown-number {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.countdown-label {
  font-size: 13px;
  color: #fff;
  opacity: 0.92;
  margin-top: 4px;
}

.next-tasks-card {
  padding: 6px 16px;
}

.next-task-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--line);
  cursor: pointer;
}

.next-task-row:last-child {
  border-bottom: none;
}

.next-task-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.next-task-text p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.next-task-step {
  font-size: 11.5px;
  color: var(--muted);
}

.story-error {
  border-left: 3px solid var(--red);
  border-radius: 0 12px 12px 0;
}

.story-tip {
  border-left: 3px solid var(--green-text);
  border-radius: 0 12px 12px 0;
}

.task-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}

.task-save-status {
  font-size: 12px;
  color: var(--muted);
}

.choice-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.choice-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 14px;
  cursor: pointer;
}

.choice-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
}

.toggle-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--red);
}

.field select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 9px;
  border: 1px solid var(--line);
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
}


.task-timing {
  margin-left: auto;
  flex-shrink: 0;
  padding: 4px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  background: var(--gray-bg);
  color: var(--gray-text);
}
.task-timing.overdue { background: var(--red-bg); color: var(--red-dark); }
.task-timing.today { background: var(--red); color: #fff; }
.task-timing.week { background: #fff4d6; color: #765500; }
.task-timing.later { background: var(--gray-bg); color: var(--gray-text); }
.next-task-dot.overdue, .next-task-dot.today { background: var(--red); }
.next-task-dot.week { background: #d59a00; }
.next-task-dot.later { background: var(--muted); }
@media (max-width: 390px) {
  .task-timing { display: none; }
}

.countdown-meta { margin-top: 8px; font-size: 11px; opacity: .72; }


.document-progress { margin-bottom: 18px; }
.document-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.document-group-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  background: var(--gray-bg);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.document-group-head span { color: var(--muted); font-size: 12px; font-weight: 700; }
.document-group .result-list { padding: 0 14px; }


.status-summary { margin-bottom: 16px; }
.status-list { padding: 2px 14px; }
.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.status-row:last-child { border-bottom: 0; }
.status-row input { width: 19px; height: 19px; accent-color: var(--red); flex-shrink: 0; }
.status-row-main { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.status-row-main strong { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.status-row-main small { font-size: 11px; color: var(--muted); }
.status-chip { font-size: 10px; font-weight: 700; color: var(--muted); white-space: nowrap; }
.empty-copy { margin: 0; color: var(--muted); font-size: 13px; }


.bottom-nav { justify-content: space-evenly; padding-left: 2px; padding-right: 2px; }
.nav-item { flex: 1 1 0; min-width: 0; padding: 4px 2px; }
.nav-item span { font-size: 9px; }
@media (max-width: 390px) {
  .nav-item span { font-size: 8.5px; }
  .icon-circle { width: 20px; height: 20px; }
}



.document-group-head { gap: 10px; }
.document-collapse-btn {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.document-collapse-btn strong { min-width: 0; }
.document-chevron { width: 12px; color: var(--muted); font-size: 11px; flex-shrink: 0; }
.document-group-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.document-count { color: var(--muted); font-size: 12px; font-weight: 700; white-space: nowrap; }
.category-relevance-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.category-relevance-btn:hover { border-color: #c9bebe; color: var(--ink); }
.document-group.is-irrelevant { opacity: .74; }
.document-group.is-irrelevant .document-group-head { border-bottom: 0; }
.document-group.is-irrelevant .category-relevance-btn { color: var(--green-text); border-color: #bfd9c6; background: #f2faf4; }
.category-irrelevant-note { padding: 10px 14px 2px; color: var(--muted); font-size: 11px; line-height: 1.4; }
.document-group-body[hidden] { display: none !important; }
@media (max-width: 430px) {
  .document-group-head { align-items: flex-start; }
  .document-group-actions { flex-direction: column; align-items: flex-end; gap: 4px; }
  .category-relevance-btn { font-size: 9px; padding: 3px 7px; }
}


.auth-title { font-size: 20px; margin: 0 0 4px; }
.auth-subtitle { font-size: 13px; color: var(--muted); margin: 0 0 20px; }
.auth-copy { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 18px; }
.auth-subtitle-tight { margin-bottom: 8px; }
.auth-note { font-size: 12px; color: var(--muted); margin: 0 0 20px; }
.btn-spaced { margin-top: 8px; }
.muted-card-copy { margin: 0; font-size: 14px; color: var(--muted); }
.content-top-spaced { padding-top: 20px; }
.section-label-flat { margin: 0; }
.profile-summary { margin: 8px 0 0; font-size: 13px; color: var(--muted); }
.btn-stack-gap { margin-bottom: 10px; }
.progress-native { width: 100%; height: 10px; border: 0; border-radius: 999px; overflow: hidden; appearance: none; -webkit-appearance: none; background: var(--line, #eee); }
.progress-native::-webkit-progress-bar { background: var(--line, #eee); border-radius: 999px; }
.progress-native::-webkit-progress-value { background: var(--red, #E8181F); border-radius: 999px; }
.progress-native::-moz-progress-bar { background: var(--red, #E8181F); border-radius: 999px; }


.verify-page { font-family: system-ui, sans-serif; background: #FCE0AA; padding: 40px 20px; text-align: center; }
.verify-card { max-width: 420px; margin: 0 auto; background: #fff; border-radius: 16px; padding: 32px 24px; }
.verify-title { color: #3B6D11; font-size: 20px; }
.verify-title.is-error { color: #A32D2D; }
.verify-copy { color: #444; font-size: 15px; line-height: 1.6; }
.verify-link { display: inline-block; margin-top: 16px; background: #E8181F; color: #fff; text-decoration: none; padding: 10px 18px; border-radius: 8px; font-size: 14px; }


:root{--pilot-navy:#0d2438;--pilot-red:#e91d17;--pilot-bg:#fbfaf6;--pilot-card:#fff;--pilot-shadow:0 8px 28px rgba(27,36,42,.07)}
#app{max-width:520px;background:var(--pilot-bg)}
.premium-screen{background:var(--pilot-bg)}
.pilot-topbar{min-height:84px;padding:16px 18px;display:flex;align-items:center;justify-content:space-between;background:#fff;border-bottom:1px solid #eee9df;position:sticky;top:0;z-index:5}
.pilot-topbar .logo-row{margin:0}.pilot-topbar .logo-photo{width:48px;height:48px}.pilot-topbar .logo-single{height:26px}.pilot-topbar .powered-by{font-size:10.5px}.pilot-menu{border:0;background:transparent;color:var(--pilot-navy);padding:8px;display:flex}
.premium-content{padding:16px 16px 100px}.welcome-card{display:flex;justify-content:space-between;align-items:center;background:#fff;border:1px solid #eee9df;border-radius:18px;padding:16px 18px;margin-bottom:14px;box-shadow:var(--pilot-shadow)}
.welcome-card h1{font-size:20px;margin:0 0 7px;color:var(--pilot-navy)}.welcome-card p{margin:3px 0;font-size:12.5px;color:#6d716e}.cyprus-badge{width:54px;height:54px;border-radius:15px;background:linear-gradient(145deg,#ffe3ba,#f7c884);display:flex;align-items:center;justify-content:center;padding:8px;overflow:hidden}.cyprus-badge img{width:100%;height:100%;object-fit:contain}
.progress-hero{display:grid;grid-template-columns:130px 1fr;gap:16px;background:#fff;border:1px solid #eee9df;border-radius:18px;padding:17px;margin-bottom:20px;box-shadow:var(--pilot-shadow)}.section-kicker{font-size:13px;font-weight:700;color:var(--pilot-navy);margin-bottom:10px}
.progress-ring{--progress:0deg;width:108px;height:108px;border-radius:50%;background:conic-gradient(var(--pilot-red) var(--progress),#eee9df 0);display:grid;place-items:center;position:relative}.progress-ring:before{content:"";position:absolute;width:84px;height:84px;border-radius:50%;background:#fff}.progress-ring div{z-index:1;text-align:center}.progress-ring strong{display:block;font-size:25px;color:var(--pilot-red)}.progress-ring span{font-size:9px;color:#888}
.progress-details{display:flex;flex-direction:column;justify-content:center}.progress-details>strong{font-size:14px;color:var(--pilot-navy)}.progress-details p{font-size:11.5px;color:#73756f;margin:5px 0 8px}.days-chip{font-size:11px;background:#fff1ef;color:#9d2c25;border-radius:999px;padding:6px 9px;align-self:flex-start}.days-chip b{font-size:14px}.text-cta,.section-head button{border:0;background:none;color:var(--pilot-red);font-weight:700;font-size:11.5px;padding:8px 0;text-align:left;cursor:pointer}
.section-head{display:flex;justify-content:space-between;align-items:center;margin:3px 2px 8px}.section-head h2{font-size:14px;margin:0;color:var(--pilot-navy)}.section-head button{padding:0}.premium-card{background:#fff;border:1px solid #eee9df;box-shadow:var(--pilot-shadow);border-radius:18px}.next-tasks-card{padding:5px 14px;margin-bottom:14px}.next-task-row{padding:12px 0}.next-task-text p{font-size:12.5px}.next-task-step{font-size:10.5px}
.milestone-premium{display:flex;justify-content:space-between;align-items:center;background:linear-gradient(135deg,#fff5f3,#fde9e6);border:1px solid #f4c0bb;border-radius:18px;padding:16px;margin:14px 0;cursor:pointer}.milestone-premium span{font-size:9px;font-weight:800;color:var(--pilot-red);letter-spacing:.5px}.milestone-premium h3{margin:5px 0 3px;font-size:15px;color:#541d1a}.milestone-premium p{margin:0;font-size:11.5px;color:#7b403c}.milestone-premium>b{font-size:28px;color:var(--pilot-red);font-weight:400}
.support-card{display:grid;grid-template-columns:44px 1fr;gap:12px;background:linear-gradient(135deg,#fff7f5,#ffeceb);border:1px solid #f3c1bc;border-radius:18px;padding:15px;margin:0 0 20px}.support-icon{width:42px;height:42px;border-radius:13px;background:#fff;color:var(--pilot-red);display:grid;place-items:center}.support-card span{font-size:13px;font-weight:800;color:#6d1f1a}.support-card p{font-size:11.5px;line-height:1.4;margin:4px 0 9px;color:#77544f}.support-btn{background:var(--pilot-red);color:#fff;border:0;border-radius:9px;padding:9px 12px;font-weight:700;font-size:11px}
.premium-content .step-row{background:#fff;border:1px solid #eee9df;border-radius:14px;margin-bottom:7px;padding:10px 11px;box-shadow:0 3px 12px rgba(27,36,42,.035)}
.bottom-nav{position:fixed;left:50%;transform:translateX(-50%);bottom:0;width:min(520px,100%);z-index:10;padding:8px 3px 9px;box-shadow:0 -5px 20px rgba(30,35,38,.06)}.nav-item{padding:3px 1px}.nav-item span{font-size:8.5px}.nav-item.active{color:var(--pilot-red)}
.help-page{padding-top:22px}.help-intro span{font-size:10px;color:var(--pilot-red);font-weight:800;letter-spacing:.6px}.help-intro h1{font-size:25px;color:var(--pilot-navy);margin:7px 0}.help-intro p{font-size:13px;line-height:1.55;color:#686c68;margin:0 0 20px}.help-option{display:grid;grid-template-columns:52px 1fr;gap:13px;background:#fff;border:1px solid #eae6dd;border-radius:18px;padding:16px;margin-bottom:12px;box-shadow:var(--pilot-shadow)}.help-option-icon{width:50px;height:50px;border-radius:50%;display:grid;place-items:center;font-size:12px;font-weight:900}.help-option h3{font-size:14px;margin:1px 0 5px}.help-option p{font-size:11.5px;line-height:1.45;color:#70736e;margin:0 0 10px}.whatsapp{background:#f4fbf5;border-color:#d8ebd9}.whatsapp .help-option-icon{background:#25d366;color:#fff}.whatsapp h3{color:#14732d}.consult{background:#fff6f4;border-color:#f2d4cf}.consult .help-option-icon{background:#ffe3df;color:#bd2820}.urgent{background:#fffaf2}.urgent .help-option-icon{background:#fff0d5;color:#9a6713}.downloads{background:#f4f9ff}.downloads .help-option-icon{background:#e2efff;color:#2168ae}.videos{background:#f7f6ff;border-color:#dddaf4}.videos .help-option-icon{background:#e9e6ff;color:#4b4494}.videos h3{color:#29235c}.help-action.video{background:#4b4494}.help-action{border:0;border-radius:9px;background:#20ad50;color:#fff;padding:9px 12px;font-weight:700;font-size:11px}.help-action.red{background:var(--pilot-red)}.help-action.outline{background:#fff;color:#805d27;border:1px solid #d9bf92}.help-action.blue{background:#2274c8}.help-note{display:none;background:#fff3cd;border-radius:12px;padding:12px;font-size:11px;color:#715a1d;margin:8px 0}.help-note.show{display:block}.empty-state{font-size:13px;color:#70736e}
@media(max-width:390px){.progress-hero{grid-template-columns:112px 1fr;padding:14px}.progress-ring{width:96px;height:96px}.progress-ring:before{width:74px;height:74px}.welcome-card{padding:14px}.premium-content{padding-left:12px;padding-right:12px}}

.faq-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.faq-pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.faq-pill.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.faq-card {
  padding: 4px 16px;
}

.faq-item {
  border-bottom: 0.5px solid var(--line);
}

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

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-family: inherit;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.faq-question.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  padding: 0 0 14px;
}

.download-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--line);
}

.download-row:last-child {
  border-bottom: none;
}

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

.download-text {
  flex: 1;
  font-size: 13.5px;
  font-weight: 600;
}

.premium-product-card {
  padding: 16px;
}

.premium-product-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.premium-product-head .download-icon {
  font-size: 24px;
}

.premium-product-head strong {
  color: var(--red);
  font-size: 16px;
}

.premium-product-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.premium-product-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 10px;
  line-height: 1.5;
}

.download-features {
  margin: 0 0 14px;
  padding-left: 18px;
}

.download-features li {
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 4px;
}

.product-form-slot:not(:empty) {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 0.5px solid var(--line);
}

.coach-form .field {
  margin-bottom: 10px;
}

.coach-form textarea {
  width: 100%;
  min-height: 60px;
  padding: 10px;
  border-radius: 9px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 14px;
}

#coach-form-slot:not(:empty) {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.4);
}

.help-option.faq .help-option-icon {
  background: #EFEDE4;
  color: var(--ink);
  font-weight: 700;
}

.download-probe-row {
  margin-bottom: 10px;
}

.download-probe {
  font-size: 12.5px;
}

.coach-bank-link {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
}

.bank-result {
  margin-top: 14px;
  padding: 14px;
  background: var(--cream-soft);
  border-radius: 10px;
}

.bank-result-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
}

.bank-result-copy {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--muted);
}

.bank-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.bank-details div {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  gap: 10px;
}

.bank-details span {
  color: var(--muted);
}

.bank-details strong {
  text-align: right;
}

.bank-hint {
  margin: 0;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red-dark);
}

.upsell-note {
  background: var(--cream-soft);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 18px;
}

.upsell-note p {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.upsell-note .link-btn {
  font-size: 12.5px;
}

.upsell-note #upsell-form-slot:not(:empty) {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 0.5px solid var(--line);
}

.legal-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 0.5px solid var(--line);
}

.legal-links-row span {
  color: var(--muted);
  font-size: 12px;
}

.legal-links-row .link-btn {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.quiz-progress {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 6px;
}

.quiz-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.quiz-nav-row .btn {
  width: auto;
  flex: 1;
}

.quiz-result {
  text-align: center;
  padding: 18px 4px 6px;
}

.quiz-result-emoji {
  font-size: 36px;
  margin-bottom: 8px;
}

.quiz-result-low .auth-title { color: var(--red-dark); }
.quiz-result-mid .auth-title { color: #a8710f; }
.quiz-result-high .auth-title { color: var(--green-text); }

.quiz-teaser {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 16px 14px;
  border-radius: 12px;
  background: var(--cream);
  text-align: center;
}

.quiz-teaser p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

.quiz-teaser .btn {
  width: auto;
  padding: 10px 18px;
}



.install-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(76px + env(safe-area-inset-bottom));
  z-index: 1200;
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(18, 39, 58, 0.10);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(18, 39, 58, 0.18);
  padding: 14px;
}
.install-banner-inner { display:flex; gap:12px; align-items:center; }
.install-banner-icon { width:46px; height:46px; border-radius:12px; flex:0 0 46px; }
.install-banner-copy { min-width:0; flex:1; }
.install-banner-title { display:block; color:#12273a; font-size:15px; font-weight:800; margin-bottom:2px; }
.install-banner-text { margin:0; color:var(--muted); font-size:12px; line-height:1.35; }
.install-banner-actions { display:flex; gap:8px; margin-top:11px; }
.install-banner .btn-install { border:0; border-radius:11px; background:#ff1b14; color:#fff; font-weight:800; padding:9px 13px; cursor:pointer; }
.install-banner .btn-install-secondary { border:0; background:transparent; color:#6d6b63; font-weight:700; padding:9px 8px; cursor:pointer; }
.install-help-overlay { position:fixed; inset:0; z-index:1300; background:rgba(12,25,37,.42); display:flex; align-items:flex-end; justify-content:center; padding:16px; }
.install-help-card { width:min(100%,520px); background:#fff; border-radius:22px; padding:20px; box-shadow:0 18px 50px rgba(0,0,0,.22); }
.install-help-card h3 { margin:0 0 8px; color:#12273a; font-size:19px; }
.install-help-card p { color:#5f625f; font-size:14px; line-height:1.5; margin:0 0 12px; }
.install-help-steps { margin:0 0 16px; padding-left:20px; color:#12273a; font-size:14px; line-height:1.7; }
.install-help-close { width:100%; border:0; border-radius:12px; background:#12273a; color:#fff; font-weight:800; padding:12px; cursor:pointer; }
@media (min-width: 760px) {
  .install-banner { bottom:24px; }
  .install-help-overlay { align-items:center; }
}


.quiz-progress-bar {
  width: 100%;
  height: 8px;
  display: block;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: var(--line);
  appearance: none;
  -webkit-appearance: none;
}
.quiz-progress-bar::-webkit-progress-bar {
  background: var(--line);
  border-radius: 999px;
}
.quiz-progress-bar::-webkit-progress-value {
  background: var(--red);
  border-radius: 999px;
  transition: width .25s ease;
}
.quiz-progress-bar::-moz-progress-bar {
  background: var(--red);
  border-radius: 999px;
}
.quiz-question-title { font-size: 17px; }
.quiz-result-title { font-size: 18px; }
.quiz-result-body { font-size: 14px; color: var(--muted); line-height: 1.6; }
.quiz-result-score { font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.quiz-result-cta { margin-top: 16px; }
.quiz-privacy-note { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 18px; }

.payment-status-screen { padding-top: 60px; text-align: center; }
.payment-status-icon { font-size: 40px; }
.payment-status-title { font-size: 19px; }
.payment-status-msg { font-size: 14px; color: var(--muted); }

.legal-body { font-size: 14px; line-height: 1.6; }
.legal-body-spaced { margin: 0 0 14px; }
.legal-body-last { margin: 0; }
.legal-muted { color: var(--muted); font-size: 13px; }
.legal-paragraph { margin: 0 0 10px; font-size: 13.5px; color: var(--ink); line-height: 1.6; }
.legal-link { color: var(--red); }
.legal-external-link { font-size: 13.5px; color: var(--red); font-weight: 600; }
.legal-footer-content { padding-top: 0; }

.progress-ring-svg {
  background: none;
  position: relative;
  display: grid;
  place-items: center;
}
.progress-ring-svg:before { display: none; }
.progress-ring-svg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.progress-ring-bg,
.progress-ring-meter {
  fill: none;
  stroke-width: 3;
}
.progress-ring-bg { stroke: #eee9df; }
.progress-ring-meter {
  stroke: var(--pilot-red);
  stroke-linecap: round;
}
.progress-ring-svg > div {
  position: relative;
  z-index: 1;
  text-align: center;
}


.onboarding-section {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line, #e8e2d9);
}
.onboarding-section-kicker {
  margin-bottom: 12px;
  color: var(--pilot-navy, #18324a);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.choice-group-stacked {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.field-help {
  margin: 6px 0 10px;
  color: #74746f;
  font-size: 12px;
  line-height: 1.45;
}
.field-label-inline {
  margin: 0 0 8px;
  color: var(--pilot-navy, #18324a);
  font-size: 13px;
  font-weight: 700;
}
.field-label-inline span {
  color: #85857f;
  font-weight: 500;
}
.community-topics {
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line, #e8e2d9);
  border-radius: 14px;
  background: #fffaf4;
}
.onboarding-update-note {
  border-left: 3px solid var(--pilot-red, #d73535);
  padding-left: 10px;
}

.community-welcome{background:linear-gradient(145deg,#fff,#fff8f5);border:1px solid rgba(204,45,45,.16);border-radius:20px;padding:20px;margin-bottom:20px}.community-welcome h2{margin:0 0 8px}.community-welcome p{color:var(--muted);line-height:1.5}.community-toolbar{display:flex;justify-content:space-between;gap:14px;align-items:center;background:#fff;border:1px solid var(--border);border-radius:18px;padding:16px;margin-bottom:18px}.community-toolbar p{margin:4px 0 0;color:var(--muted);font-size:13px}.community-card,.community-request-card{background:#fff;border:1px solid var(--border);border-radius:18px;padding:16px;margin-bottom:12px;box-shadow:0 5px 18px rgba(30,35,38,.05)}.community-card-head{display:flex;align-items:center;gap:12px}.community-card h3{margin:0;font-size:17px}.community-avatar{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#f9e7e7;color:var(--pilot-red);font-weight:800;font-size:18px}.community-match{font-size:12px;color:var(--pilot-red);font-weight:700;margin-top:3px}.community-meta,.community-intro{font-size:13px;line-height:1.5;color:var(--muted)}.community-intro{color:var(--text)}.community-tags{display:flex;flex-wrap:wrap;gap:6px;margin:10px 0}.community-tags span{background:#f5f2ee;border-radius:999px;padding:5px 8px;font-size:11px}.community-action{margin-top:12px}.community-status{font-size:12px;font-weight:700;color:var(--muted)}.community-status.connected{color:#27824a}.community-response,.community-contact-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}.community-master{background:#fff8f5;border:1px solid rgba(204,45,45,.18);border-radius:16px;padding:14px}.community-master small{display:block;color:var(--muted);margin-top:3px;font-weight:400}.spinner-line{display:flex;gap:8px;align-items:center;color:var(--muted);font-size:13px;margin-top:12px}
@media(max-width:420px){.bottom-nav{overflow-x:auto;justify-content:flex-start}.nav-item{min-width:64px;flex:0 0 64px}.community-toolbar{align-items:flex-start;flex-direction:column}}


.icon-circle{position:relative}.nav-badge{position:absolute;top:-7px;right:-11px;min-width:17px;height:17px;padding:0 4px;border-radius:999px;background:var(--pilot-red);color:#fff!important;font-size:9px!important;line-height:17px;text-align:center;font-weight:800;box-shadow:0 0 0 2px #fff}
.community-inbox-cta{display:flex;align-items:center;justify-content:space-between;gap:14px;background:linear-gradient(145deg,#fff7f4,#fff);border:1px solid rgba(204,45,45,.16);border-radius:18px;padding:15px 16px;margin-bottom:18px}.community-inbox-cta p{margin:4px 0 0;color:var(--muted);font-size:12px;line-height:1.4}.community-inbox-cta strong{font-size:15px}
.message-intro{display:flex;gap:13px;align-items:flex-start;background:linear-gradient(145deg,#fff,#fff8f5);border:1px solid rgba(204,45,45,.14);border-radius:18px;padding:16px;margin-bottom:18px}.message-intro-icon{width:40px;height:40px;border-radius:13px;background:#f9e7e7;display:flex;align-items:center;justify-content:center;font-size:20px;flex:0 0 auto}.message-intro strong{display:block;margin-bottom:4px}.message-intro p{margin:0;color:var(--muted);font-size:12.5px;line-height:1.5}.message-list{background:#fff;border:1px solid var(--border);border-radius:20px;overflow:hidden;box-shadow:0 5px 20px rgba(30,35,38,.05)}.message-thread{width:100%;display:flex;gap:12px;align-items:center;text-align:left;background:#fff;border:0;border-bottom:1px solid var(--border);padding:14px;cursor:pointer;font-family:inherit;color:var(--text)}.message-thread:last-child{border-bottom:0}.message-thread:active{background:#faf8f5}.message-avatar{flex:0 0 44px}.message-thread-main{min-width:0;flex:1;display:flex;flex-direction:column;gap:3px}.message-thread-head{display:flex;align-items:center;justify-content:space-between;gap:8px}.message-thread-head strong{font-size:15px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.message-thread-head small{font-size:10px;color:var(--muted);white-space:nowrap}.message-thread-meta{font-size:10.5px;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.message-thread-preview{font-size:12.5px;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.message-thread-preview.unread{color:var(--text);font-weight:700}.message-unread{min-width:23px;height:23px;padding:0 6px;border-radius:999px;background:var(--pilot-red);color:#fff;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:800}.message-chevron{font-size:24px;color:#bbb}.message-empty{text-align:center;background:#fff;border:1px solid var(--border);border-radius:20px;padding:30px 22px}.message-empty-icon{font-size:34px}.message-empty h2{font-size:19px;margin:10px 0 7px}.message-empty p{color:var(--muted);font-size:13px;line-height:1.55;margin:0 0 18px}
.chat-screen{min-height:100vh}.chat-top{position:sticky;top:0;z-index:8;display:flex;align-items:center;gap:10px;background:#fff;border-bottom:1px solid var(--border);padding:10px 14px;min-height:62px}.chat-back{border:0;background:#f5f2ee;border-radius:12px;width:38px;height:38px;display:flex;align-items:center;justify-content:center;color:var(--text);cursor:pointer}.chat-avatar{width:38px;height:38px;flex:0 0 38px}.chat-person{min-width:0;display:flex;flex-direction:column}.chat-person strong{font-size:15px}.chat-person small{font-size:10.5px;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.chat-body{padding:12px 12px 86px;background:linear-gradient(#faf7f2,#f8f5f0);min-height:calc(100vh - 130px)}.chat-note{max-width:420px;margin:0 auto 14px;background:#fff6df;border:1px solid #f0ddb1;color:#6d5a25;border-radius:13px;padding:9px 11px;font-size:10.5px;line-height:1.45;text-align:center}.chat-messages{max-width:500px;margin:0 auto;display:flex;flex-direction:column;gap:8px;padding-bottom:12px}.chat-row{display:flex}.chat-row.mine{justify-content:flex-end}.chat-row.theirs{justify-content:flex-start}.chat-bubble{max-width:82%;border-radius:18px;padding:9px 11px 6px;box-shadow:0 2px 8px rgba(30,35,38,.05)}.chat-row.mine .chat-bubble{background:var(--pilot-red);color:#fff;border-bottom-right-radius:5px}.chat-row.theirs .chat-bubble{background:#fff;color:var(--text);border:1px solid var(--border);border-bottom-left-radius:5px}.chat-text{font-size:13.5px;line-height:1.45;white-space:pre-wrap;overflow-wrap:anywhere}.chat-time{font-size:9px;margin-top:4px;opacity:.72;text-align:right}.chat-first{text-align:center;padding:32px 18px;color:var(--muted)}.chat-first>div{font-size:34px}.chat-first strong{display:block;color:var(--text);margin:8px 0 4px}.chat-first p{font-size:12px;margin:0}.chat-compose{position:sticky;bottom:70px;z-index:7;max-width:520px;margin:8px auto 0;display:flex;align-items:flex-end;gap:8px;background:#fff;border:1px solid var(--border);border-radius:18px;padding:8px;box-shadow:0 8px 25px rgba(30,35,38,.12)}.chat-compose textarea{flex:1;resize:none;border:0;outline:0;background:transparent;font:inherit;font-size:13.5px;line-height:1.45;min-height:38px;max-height:110px;padding:9px}.chat-send{width:40px;height:40px;flex:0 0 40px;border:0;border-radius:13px;background:var(--pilot-red);color:#fff;font-size:17px;cursor:pointer}.chat-send:disabled{opacity:.45}.community-message-open{min-width:130px}
@media(max-width:420px){.community-inbox-cta{align-items:flex-start;flex-direction:column}.community-inbox-cta .btn{width:100%}.chat-body{padding-left:8px;padding-right:8px}.chat-bubble{max-width:88%}}


.topbar-actions{display:flex;align-items:center;gap:8px;margin-left:auto}.standard-topbar{display:flex;align-items:center;justify-content:space-between;gap:12px}.standard-topbar .logo-row{margin:0}.pilot-topbar{display:flex;align-items:center;justify-content:space-between;gap:12px}.hamburger-btn{position:relative;width:42px;height:42px;border:1px solid var(--border);border-radius:13px;background:#fff;color:var(--text);display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 3px 12px rgba(30,35,38,.05)}.hamburger-lines{font-size:22px;line-height:1;font-weight:700}.hamburger-dot{position:absolute;right:3px;top:3px;width:10px;height:10px;border-radius:50%;background:var(--pilot-red);box-shadow:0 0 0 2px #fff}.app-menu-overlay[hidden]{display:none}.app-menu-overlay{position:fixed;inset:0;z-index:1000}.app-menu-backdrop{position:absolute;inset:0;background:rgba(20,24,28,.42);backdrop-filter:blur(2px)}.app-menu-drawer{position:absolute;right:0;top:0;bottom:0;width:min(390px,92vw);background:#faf8f4;box-shadow:-12px 0 35px rgba(20,24,28,.18);display:flex;flex-direction:column;animation:menuSlideIn .2s ease-out}@keyframes menuSlideIn{from{transform:translateX(100%)}to{transform:translateX(0)}}body.menu-open{overflow:hidden}.app-menu-head{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:15px 16px 10px;background:#fff;border-bottom:1px solid var(--border)}.app-menu-head .logo-row{margin:0}.app-menu-head .logo-photo{width:38px;height:38px}.app-menu-head .logo-single{max-width:135px}.app-menu-close{width:38px;height:38px;border:0;border-radius:12px;background:#f4f1ed;font-size:27px;line-height:1;color:var(--text);cursor:pointer}.app-menu-user{padding:14px 18px;background:#fff;border-bottom:1px solid var(--border);display:flex;flex-direction:column;gap:2px}.app-menu-user strong{font-size:15px}.app-menu-user span{font-size:11px;color:var(--muted);overflow:hidden;text-overflow:ellipsis}.app-menu-scroll{overflow-y:auto;padding:10px 12px 30px}.menu-section{background:#fff;border:1px solid var(--border);border-radius:18px;overflow:hidden;margin-bottom:12px;box-shadow:0 4px 14px rgba(30,35,38,.035)}.menu-section-title{padding:12px 14px 7px;font-size:10px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);font-weight:800}.menu-link{width:100%;min-height:48px;border:0;border-top:1px solid #f1ede8;background:#fff;padding:9px 13px;display:flex;align-items:center;gap:11px;text-align:left;color:var(--text);font-family:inherit;cursor:pointer}.menu-section-title+.menu-link{border-top:0}.menu-link-icon{width:25px;text-align:center;font-size:17px;color:var(--pilot-red)}.menu-link-copy{min-width:0;flex:1;display:flex;flex-direction:column;gap:2px}.menu-link-copy strong{font-size:13.5px}.menu-link-copy small{font-size:10.5px;color:var(--muted)}.menu-count{min-width:24px;height:24px;padding:0 7px;border-radius:999px;background:var(--pilot-red);color:#fff;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:800}.menu-logout{color:#a92727}.bottom-nav{overflow:visible!important}.nav-item{min-width:0!important;flex:1 1 0!important}.nav-item span{font-size:8.5px}
@media(max-width:420px){.bottom-nav{justify-content:space-evenly!important}.nav-item{min-width:0!important;flex:1 1 0!important}.app-menu-drawer{width:94vw}}


.floating-app-actions{position:fixed;top:max(10px,env(safe-area-inset-top));right:12px;z-index:950;display:flex;align-items:center;justify-content:flex-end;pointer-events:none}
.floating-app-actions .topbar-actions{pointer-events:auto;background:rgba(255,255,255,.94);padding:4px;border:1px solid var(--border);border-radius:16px;box-shadow:0 5px 18px rgba(30,35,38,.10);backdrop-filter:blur(10px)}
@media (min-width:760px){.floating-app-actions{right:max(18px,calc((100vw - 760px)/2 + 18px))}}


.user-avatar{display:inline-flex;align-items:center;justify-content:center;overflow:hidden;border-radius:50%;background:#f9e7e7;color:var(--pilot-red);font-weight:800;flex:0 0 auto}
.user-avatar img{width:100%;height:100%;display:block;object-fit:cover}
.avatar-fallback{font-weight:800}
.topbar-avatar{width:36px;height:36px;font-size:14px;border:2px solid #fff;box-shadow:0 2px 10px rgba(30,35,38,.12)}
.pilot-avatar-button{padding:2px!important;border-radius:50%!important}
.profile-avatar-card{display:flex;align-items:center;gap:18px;background:#fff;border:1px solid var(--border);border-radius:20px;padding:18px;margin-bottom:14px;box-shadow:0 5px 18px rgba(30,35,38,.05)}
.profile-avatar-preview{flex:0 0 auto}.profile-avatar-large{width:92px;height:92px;font-size:32px;border:3px solid #fff;box-shadow:0 4px 18px rgba(30,35,38,.13)}
.profile-avatar-copy{min-width:0;flex:1}.profile-avatar-copy h2{font-size:17px;margin:0 0 5px}.profile-avatar-copy p{font-size:11.5px;line-height:1.5;color:var(--muted);margin:0 0 11px}.profile-avatar-copy .btn{margin-right:6px;margin-bottom:5px}.avatar-file-input{position:absolute!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important}
.community-avatar.user-avatar{width:44px;height:44px;font-size:18px}.message-avatar.user-avatar{width:44px;height:44px}.chat-avatar.user-avatar{width:38px;height:38px}

.avatar-editor-modal[hidden]{display:none}.avatar-editor-modal{position:fixed;inset:0;z-index:1800;display:flex;align-items:flex-end;justify-content:center}.avatar-editor-backdrop{position:absolute;inset:0;background:rgba(17,22,27,.62);backdrop-filter:blur(3px)}.avatar-editor-sheet{position:relative;width:min(520px,100%);max-height:96vh;overflow-y:auto;background:#fbf9f6;border-radius:24px 24px 0 0;padding:18px 18px calc(22px + env(safe-area-inset-bottom));box-shadow:0 -18px 50px rgba(20,24,28,.25)}.avatar-editor-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}.avatar-editor-head strong{display:block;font-size:18px}.avatar-editor-head small{display:block;color:var(--muted);font-size:11px;margin-top:2px}.avatar-editor-close{width:40px;height:40px;border:0;border-radius:12px;background:#eee9e3;font-size:27px;color:var(--text);cursor:pointer}.avatar-canvas-wrap{position:relative;width:min(320px,82vw);aspect-ratio:1;margin:0 auto 16px;border-radius:20px;overflow:hidden;background:#eee9e3;box-shadow:0 8px 25px rgba(30,35,38,.12);touch-action:none}.avatar-canvas-wrap canvas{display:block;width:100%;height:100%;touch-action:none;cursor:grab}.avatar-canvas-wrap canvas:active{cursor:grabbing}.avatar-circle-guide{position:absolute;inset:8%;border:3px solid rgba(255,255,255,.92);border-radius:50%;box-shadow:0 0 0 999px rgba(18,23,28,.30),inset 0 0 0 1px rgba(0,0,0,.08);pointer-events:none}.avatar-editor-controls{display:flex;align-items:flex-end;gap:12px;margin-bottom:14px}.avatar-editor-controls label{flex:1;font-size:11px;font-weight:700;color:var(--muted)}.avatar-editor-controls input[type=range]{width:100%;margin-top:7px;accent-color:var(--pilot-red)}.avatar-privacy-note{font-size:10.5px;line-height:1.45;color:var(--muted);text-align:center;margin:10px 4px 0}body.avatar-editor-open{overflow:hidden}
@media(min-width:700px){.avatar-editor-modal{align-items:center}.avatar-editor-sheet{border-radius:24px;padding-bottom:22px}.profile-avatar-card{padding:20px}}
.app-menu-user-with-avatar{flex-direction:row!important;align-items:center;gap:11px}.app-menu-user-with-avatar>div{min-width:0;display:flex;flex-direction:column}.menu-user-avatar{width:42px;height:42px;font-size:15px;box-shadow:0 2px 10px rgba(30,35,38,.10)}


.admin-stats-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-bottom:18px}
.admin-stat-card{background:#fff;border:1px solid #eee5dc;border-radius:16px;padding:16px;box-shadow:0 8px 24px rgba(26,32,44,.05);display:flex;flex-direction:column;gap:8px}
.admin-stat-card span{font-size:.82rem;color:#6b7280;font-weight:700}
.admin-stat-card strong{font-size:1.8rem;line-height:1;color:#172554}
.admin-stat-card.admin-stat-accent{border-color:#f1b5ad;background:#fff8f6}
.admin-stat-card.admin-stat-accent strong{color:#d94132}
.admin-stats-table-card{margin-top:8px}
.admin-table-wrap{overflow-x:auto}
.admin-stats-table{width:100%;border-collapse:collapse;margin-top:10px;font-size:.92rem}
.admin-stats-table th,.admin-stats-table td{text-align:left;padding:10px 8px;border-bottom:1px solid #eee5dc}
.admin-stats-table th{color:#172554;font-size:.78rem;text-transform:uppercase;letter-spacing:.04em}
.admin-privacy-note{font-size:.8rem;line-height:1.5;color:#6b7280;margin:14px 2px 90px}
@media(max-width:760px){.admin-stats-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.admin-stat-card strong{font-size:1.55rem}}


.admin-user-tools{display:flex;align-items:center;gap:12px;margin-bottom:12px}.admin-user-tools .input{margin:0;flex:1}.admin-user-count{font-size:11px;color:var(--muted);white-space:nowrap}.admin-user-row{margin-bottom:10px}.admin-user-main{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}.admin-user-main>div{min-width:0}.admin-user-main strong{display:block;font-size:15px}.admin-user-main span:not(.admin-user-status){display:block;font-size:11px;color:var(--muted);margin-top:3px;overflow-wrap:anywhere}.admin-user-status{font-size:10px;font-weight:800;padding:5px 8px;border-radius:999px;white-space:nowrap}.admin-user-status.active{background:#e7f7ed;color:#277847}.admin-user-status.suspended{background:#fde9e7;color:#b42318}.admin-user-status.pending{background:#fff4d8;color:#8a5b00}.admin-user-meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:6px 12px;margin:12px 0;font-size:10.5px;color:#5f6770}.admin-user-meta b{color:var(--text)}.admin-user-actions{display:flex;gap:8px;justify-content:flex-end;border-top:1px solid #f0ece7;padding-top:11px}.btn-danger{background:#fff;color:#b42318;border:1px solid #efb5ae}.admin-user-protected{font-size:11px;color:#6b7280;background:#f5f4f2;border-radius:10px;padding:9px 10px;margin-top:10px}.system-avatar{background:#fff;border:1px solid var(--border)}.system-avatar img{object-fit:cover}.system-message-note{margin:12px auto 90px;max-width:520px;padding:12px 14px;border-radius:14px;background:#fff7ed;color:#7c4a13;font-size:11px;line-height:1.45;border:1px solid #f4d8b2}
@media(max-width:520px){.admin-user-meta{grid-template-columns:1fr}.admin-user-actions{flex-direction:column}.admin-user-actions .btn{width:100%}.admin-users-stats{grid-template-columns:repeat(2,minmax(0,1fr))}}




.detail-app-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:52px;
  margin:-4px -2px 16px;
  padding:4px 2px 10px;
  background:#fff;
  border-bottom:1px solid #eee9df;
}
.detail-app-topbar .topbar-actions{
  margin-left:auto;
  background:transparent;
  padding:0;
  border:0;
  border-radius:0;
  box-shadow:none;
  backdrop-filter:none;
}
.detail-app-topbar .back-btn{
  flex:0 0 auto;
}
.detail-app-topbar-solo{
  margin-top:-4px;
}
.detail-topbar-spacer{
  width:34px;
  height:34px;
  flex:0 0 34px;
}

.floating-app-actions{display:none!important}
@media (max-width:420px){
  .detail-app-topbar{margin-left:-2px;margin-right:-2px}
}




.header > .standard-topbar{
  width:100%;
  min-height:48px;
  margin:0 0 14px;
  padding:0;
}
.header > .standard-topbar .logo-row{
  margin-bottom:0;
  min-width:0;
}
.header > .standard-topbar .topbar-actions{
  flex:0 0 auto;
}



.header + .content > .detail-app-topbar-solo:first-child{
  display:none!important;
}



.task-explain-item{border-bottom:1px solid var(--border)}
.task-explain-item:last-child{border-bottom:0}
.task-explain-row{display:flex;align-items:center;gap:6px;min-height:48px}
.task-check-row{flex:1;min-width:0;border-bottom:0!important;padding:11px 4px!important;margin:0!important}
.task-context-toggle{flex:0 0 auto;display:inline-flex;align-items:center;gap:4px;border:0;background:transparent;color:var(--pilot-red);font:inherit;font-size:11px;font-weight:800;padding:10px 5px 10px 8px;cursor:pointer;border-radius:10px}
.task-context-toggle:hover,.task-context-toggle:focus-visible{background:#fff4f2;outline:none}
.task-context-chevron{font-size:17px;line-height:1;display:inline-block;transform:translateY(-1px);transition:transform .18s ease}
.task-context-toggle[aria-expanded="true"] .task-context-chevron{transform:rotate(180deg) translateY(1px)}
.task-context-panel{margin:0 4px 12px 38px;padding:11px 13px;border-radius:12px;background:#f7f4ef;border-left:3px solid rgba(215,53,53,.7)}
.task-context-panel[hidden]{display:none}
.task-context-panel p{margin:0;color:#4d535a;font-size:12px;line-height:1.55}
@media(max-width:390px){.task-context-label{display:none}.task-context-toggle{padding-left:8px}.task-context-panel{margin-left:36px}}


body.briefing-open{overflow:hidden}.briefing-overlay{position:fixed;inset:0;z-index:5000;display:flex;align-items:flex-end;justify-content:center}.briefing-backdrop{position:absolute;inset:0;background:rgba(23,28,33,.48);backdrop-filter:blur(3px)}.briefing-modal{position:relative;width:min(100% - 20px,520px);max-height:88vh;overflow:auto;margin:10px;padding:25px 20px 20px;border-radius:24px;background:#fff;box-shadow:0 22px 70px rgba(0,0,0,.24)}.briefing-close{position:absolute;right:14px;top:12px;width:34px;height:34px;border:0;border-radius:50%;background:#f4f1ed;font-size:24px;line-height:1;cursor:pointer}.briefing-kicker{font-size:10px;font-weight:900;letter-spacing:.12em;color:var(--pilot-red);margin-bottom:6px}.briefing-modal h2,.current-hero h2{font-size:24px;margin:0 42px 6px 0}.briefing-intro,.current-hero p{font-size:12.5px;line-height:1.55;color:var(--muted);margin:12px 0}.briefing-meta{display:flex;flex-wrap:wrap;gap:7px;margin:10px 0 14px}.briefing-meta span{display:inline-flex;align-items:center;gap:3px;padding:7px 10px;border-radius:999px;background:#f7f4ef;font-size:10.5px;color:#525861}.briefing-task-list{display:flex;flex-direction:column;gap:8px}.briefing-task{width:100%;display:flex;align-items:center;gap:10px;text-align:left;border:1px solid #eee8e1;background:#fff;border-radius:14px;padding:11px 12px;cursor:pointer}.briefing-task:hover{background:#fffaf8}.briefing-task-check{width:26px;height:26px;border-radius:50%;display:grid;place-items:center;flex:0 0 26px;background:#fff0ed;color:var(--pilot-red);font-weight:900}.briefing-task>span:nth-child(2){flex:1;min-width:0}.briefing-task strong{display:block;font-size:12px;line-height:1.35;color:var(--text)}.briefing-task small{display:block;margin-top:3px;font-size:9.5px;color:var(--muted)}.briefing-task>b{font-size:20px;color:#aaa}.briefing-status{margin:14px 0 0;padding:12px 13px;border-radius:13px;background:#f7f4ef;color:#4d535a;font-size:11.5px;line-height:1.5}.briefing-actions{display:grid;gap:8px;margin-top:15px}.briefing-current-link{width:100%;border:0;background:transparent;color:var(--pilot-red);font-size:10.5px;font-weight:800;margin-top:12px;cursor:pointer}.briefing-empty{padding:18px;border-radius:14px;background:#f7f4ef;text-align:center;font-size:12px}.current-hero{padding:18px;border-radius:20px;background:#fff;border:1px solid var(--border);margin-bottom:12px}.current-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:12px 0 20px}.current-stats>div{padding:13px 8px;text-align:center;border-radius:14px;background:#f7f4ef}.current-stats strong{display:block;font-size:18px}.current-stats span{display:block;font-size:9px;color:var(--muted);margin-top:3px}.current-note{margin-top:14px}.current-note strong,.current-community>strong{font-size:12px}.current-note p{font-size:11.5px;line-height:1.55;color:var(--muted);margin:6px 0 0}.current-community{margin-top:12px}.current-community button{width:100%;display:flex;align-items:center;justify-content:space-between;border:0;border-top:1px solid #eee9e2;background:transparent;padding:12px 0;font:inherit;font-size:11.5px;text-align:left;cursor:pointer}.current-community button:first-of-type{margin-top:8px}@media(min-width:600px){.briefing-overlay{align-items:center}.briefing-modal{margin:20px}}


.guide-page{padding-bottom:100px}.guide-hero{background:linear-gradient(145deg,#fff,#fff8f5);border:1px solid #eee7df;border-radius:22px;padding:20px;margin-bottom:12px}.guide-kicker{font-size:9px;font-weight:900;letter-spacing:.13em;color:var(--pilot-red)}.guide-hero h1{font-size:23px;margin:6px 0}.guide-hero>p{font-size:12px;line-height:1.55;color:var(--muted);margin:0 0 14px}.guide-search-wrap{display:flex;align-items:center;gap:8px;background:#fff;border:1px solid #ddd5cd;border-radius:14px;padding:0 12px}.guide-search-wrap span{font-size:20px;color:#8b8f94}.guide-search-wrap input{border:0!important;box-shadow:none!important;background:transparent!important;padding:12px 0!important;width:100%;font-size:12px}.guide-quick{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin:12px 0 16px}.guide-quick button{border:1px solid var(--border);background:#fff;border-radius:14px;padding:13px 10px;display:flex;align-items:center;gap:8px;text-align:left;font:inherit;cursor:pointer}.guide-quick button>span{font-size:10.5px;font-weight:800}.guide-section{background:#fff;border:1px solid var(--border);border-radius:18px;margin:10px 0;overflow:hidden;scroll-margin-top:16px}.guide-section-head{display:flex;align-items:center;gap:11px;padding:15px 16px;background:#faf8f5}.guide-section-head>span{font-size:23px}.guide-section-head h2{font-size:14px;margin:0}.guide-section-head p{font-size:9px;color:var(--muted);margin:2px 0 0}.guide-faq{border-top:1px solid #eee9e3}.guide-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:12px;border:0;background:#fff;padding:14px 16px;text-align:left;font:inherit;cursor:pointer}.guide-q span{font-size:11.5px;font-weight:750;line-height:1.35}.guide-q b{font-size:18px;color:#999;transition:transform .18s}.guide-q[aria-expanded=true] b{transform:rotate(180deg)}.guide-a{padding:0 16px 14px;background:#fff}.guide-a p{font-size:11.5px;line-height:1.6;color:#555c63;margin:0;padding:12px 13px;background:#f7f4ef;border-radius:12px}.guide-empty{text-align:center;padding:24px;background:#fff;border:1px solid var(--border);border-radius:18px}.guide-empty p{font-size:11px;color:var(--muted)}.guide-more{margin:18px 0 6px;padding:17px;background:#292f35;color:#fff;border-radius:18px}.guide-more>strong{font-size:13px}.guide-more>p{font-size:10.5px;line-height:1.55;color:#d5d8db}.guide-more>div{display:flex;gap:8px;flex-wrap:wrap}.guide-more .btn{font-size:10px}.guide-section[hidden],.guide-faq[hidden],.guide-empty[hidden]{display:none!important}


.discover-menu-section{border-color:#dce8e5}.discover-menu-link{background:linear-gradient(135deg,#f8fffd,#fff)}.discover-menu-link .menu-link-icon{font-size:20px}.discover-external-mark{font-size:15px;color:#80908b}.discover-page{padding-bottom:100px}.discover-hero{position:relative;overflow:hidden;background:linear-gradient(145deg,#fff,#f2fbf8);border:1px solid #dceae5;border-radius:24px;padding:21px;margin-bottom:12px}.discover-hero:after{content:'🇨🇾';position:absolute;right:-12px;bottom:-26px;font-size:90px;opacity:.055;transform:rotate(-8deg)}.discover-brand-pill{display:inline-flex;align-items:center;gap:5px;padding:6px 9px;border-radius:999px;background:#eef8f5;color:#287260;font-size:9px;font-weight:900;letter-spacing:.09em}.discover-hero h1{position:relative;z-index:1;font-size:22px;line-height:1.18;margin:11px 0 9px;color:var(--text)}.discover-hero h1 span{color:#287260}.discover-hero p{position:relative;z-index:1;font-size:11.5px;line-height:1.6;color:#5e6764;margin:0 0 15px;max-width:520px}.discover-main-cta{position:relative;z-index:1;width:auto!important;display:inline-flex!important;align-items:center;gap:7px}.discover-region-note{display:flex;gap:11px;align-items:flex-start;background:#fff;border:1px solid var(--border);border-radius:17px;padding:14px;margin:12px 0}.discover-region-note>span{font-size:23px}.discover-region-note strong{font-size:12px}.discover-region-note p{font-size:10.5px;line-height:1.5;color:var(--muted);margin:4px 0 0}.discover-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:10px;margin:19px 2px 9px}.discover-section-head>span{font-size:13px;font-weight:850}.discover-section-head small{font-size:8.5px;color:var(--muted);text-align:right}.discover-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}.discover-feature-card{min-width:0;border:1px solid var(--border);border-radius:17px;background:#fff;padding:13px;display:grid;grid-template-columns:32px 1fr auto;gap:8px;align-items:start;text-align:left;font:inherit;cursor:pointer}.discover-feature-card:hover{border-color:#bfd9d1;background:#fbfffd}.discover-feature-icon{width:32px;height:32px;border-radius:10px;background:#f0f8f6;display:grid;place-items:center;font-size:17px}.discover-feature-card strong{display:block;font-size:11px;line-height:1.3}.discover-feature-card small{display:block;font-size:9px;line-height:1.45;color:var(--muted);margin-top:4px}.discover-feature-card>b{font-size:13px;color:#8a9793}.discover-why{display:flex;gap:10px;margin:13px 0;background:#f7f4ef;border-radius:16px;padding:14px}.discover-why>span{font-size:20px}.discover-why strong{font-size:11.5px}.discover-why p{font-size:10.5px;line-height:1.55;color:var(--muted);margin:4px 0 0}.discover-task-card{display:flex;gap:10px;margin:0 0 10px 36px;padding:11px 12px;border:1px solid #dceae5;border-radius:13px;background:linear-gradient(135deg,#f8fffd,#fff)}.discover-task-icon{width:30px;height:30px;flex:0 0 30px;border-radius:9px;background:#edf8f5;display:grid;place-items:center;font-size:16px}.discover-task-copy{min-width:0}.discover-task-copy>strong{display:block;font-size:10.5px;color:#235f51}.discover-task-copy>p{font-size:9.5px;line-height:1.5;color:#626b68;margin:3px 0 6px}.discover-task-region{display:block;font-size:8.5px;font-weight:750;color:#68746f;margin-bottom:6px}.discover-task-link{border:0;background:transparent;padding:0;color:#287260;font:inherit;font-size:9.5px;font-weight:850;cursor:pointer}.discover-task-link span{font-size:10px}@media(max-width:390px){.discover-grid{grid-template-columns:1fr}.discover-section-head small{display:none}.discover-task-card{margin-left:0}.discover-hero h1{font-size:20px}}


.discover-step-card{display:flex;gap:11px;margin:16px 0 18px;padding:13px 14px;border:1px solid #dceae5;border-radius:15px;background:linear-gradient(135deg,#f8fffd,#fff)}
.discover-step-card .discover-task-link{display:inline-flex;align-items:center;gap:4px;text-decoration:none;margin-top:1px}


.chat-safety-btn{margin-left:auto;min-height:38px;border:1px solid var(--border);border-radius:12px;background:#fff;color:#30363b;padding:0 10px;display:inline-flex;align-items:center;justify-content:center;gap:5px;font:inherit;font-size:10.5px;font-weight:800;white-space:nowrap;cursor:pointer}.chat-safety-btn .chat-action-icon{font-size:14px;line-height:1}@media(max-width:360px){.chat-safety-btn{padding:0 8px;font-size:10px}.chat-safety-btn .chat-action-icon{display:none}}
.chat-blocked-panel{margin:10px 14px 16px;padding:14px;border:1px solid #eadfd6;border-radius:15px;background:#faf7f3;text-align:center}.chat-blocked-panel strong{display:block;font-size:12px}.chat-blocked-panel p{font-size:10.5px;line-height:1.5;color:var(--muted);margin:5px 0 10px}
.community-safety-overlay{position:fixed;inset:0;z-index:7200;display:flex;align-items:flex-end;justify-content:center}.community-safety-backdrop{position:absolute;inset:0;background:rgba(20,24,28,.48);backdrop-filter:blur(2px)}.community-safety-sheet,.community-report-dialog{position:relative;width:min(100% - 18px,520px);max-height:90vh;overflow:auto;background:#fff;border-radius:24px 24px 18px 18px;padding:20px;margin:9px;box-shadow:0 25px 70px rgba(0,0,0,.25)}.community-safety-handle{width:42px;height:4px;border-radius:4px;background:#ddd;margin:-7px auto 15px}.community-safety-sheet h3{font-size:18px;margin:0 0 2px}.community-safety-sheet>p{font-size:10.5px;color:var(--muted);margin:0 0 14px}.community-safety-action{width:100%;display:grid;grid-template-columns:36px 1fr;gap:10px;align-items:center;text-align:left;border:1px solid var(--border);border-radius:14px;background:#fff;padding:12px;margin:8px 0;font:inherit;cursor:pointer}.community-safety-action>span{width:34px;height:34px;border-radius:11px;background:#f7f4ef;display:grid;place-items:center;font-size:18px}.community-safety-action strong{display:block;font-size:11.5px}.community-safety-action small{display:block;font-size:9.5px;line-height:1.45;color:var(--muted);margin-top:2px}.community-safety-action.report>span{background:#fff4df}.community-safety-action.danger{border-color:#f0d4d1}.community-safety-action.danger>span{background:#fff0ee;color:#b3261e}.community-report-dialog h2{font-size:21px;margin:6px 0}.community-report-dialog>p{font-size:11px;line-height:1.5;color:var(--muted);margin:0 32px 15px 0}.community-report-preview{padding:11px 12px;border-radius:12px;background:#f7f4ef;margin:10px 0}.community-report-preview small{font-size:8.5px;font-weight:800;color:#777}.community-report-preview p{font-size:10.5px;line-height:1.45;margin:4px 0 0}.community-report-success{text-align:center;padding:8px}.community-report-success>div{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;background:#eaf7ef;color:#247a45;font-size:24px;font-weight:900;margin:0 auto 10px}.community-report-success h2{margin:0 0 7px}.community-report-success p{font-size:11px;line-height:1.55;color:var(--muted);margin:0 0 15px}.community-blocked-list{margin:16px 0;padding:12px;border-radius:15px;background:#f7f4ef}.community-blocked-list .section-label{margin-top:0}.community-blocked-row{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:9px 0;border-top:1px solid #e8e1d9}.community-blocked-row:first-of-type{border-top:0}.community-blocked-row span{font-size:11px;font-weight:750}
.admin-report-card{margin-bottom:10px}.admin-report-meta{display:grid;gap:5px;margin:10px 0;font-size:9.5px;color:#626970}.admin-report-message{padding:11px 12px;border-radius:12px;background:#f7f4ef}.admin-report-message small{font-size:8px;font-weight:850;color:#777}.admin-report-message p{font-size:10.5px;line-height:1.5;margin:4px 0 0}.admin-report-comment{font-size:10px;line-height:1.5}.admin-report-list{margin-top:10px}
@media(min-width:600px){.community-safety-overlay{align-items:center}.community-safety-sheet,.community-report-dialog{border-radius:24px;margin:20px}}



.document-privacy-info{margin:10px 0 14px;border:1px solid #dfe7e4;border-radius:16px;background:linear-gradient(135deg,#fbfffd,#fff);overflow:hidden}
.document-privacy-toggle{width:100%;display:grid;grid-template-columns:32px 1fr auto;gap:9px;align-items:center;border:0;background:transparent;padding:12px 13px;text-align:left;font:inherit;cursor:pointer}
.document-privacy-lock{width:32px;height:32px;border-radius:10px;background:#edf7f3;display:grid;place-items:center;font-size:16px}.document-privacy-title{font-size:11px;font-weight:850;line-height:1.35;color:#30383b}.document-privacy-chevron{font-size:18px;color:#7c8884;transition:transform .18s}.document-privacy-toggle[aria-expanded=true] .document-privacy-chevron{transform:rotate(180deg)}
.document-privacy-body{border-top:1px solid #e8eeeb;padding:13px 14px 14px}.document-privacy-body p{font-size:10.5px;line-height:1.6;color:#59625f;margin:0 0 10px}.document-privacy-tip{background:#f7f4ef;border-radius:12px;padding:11px 12px;margin:11px 0}.document-privacy-tip strong{font-size:10.5px}.document-privacy-tip p{margin:4px 0 0;font-size:10px}.document-privacy-help{display:inline-flex;align-items:center;gap:5px;border:0;border-radius:10px;background:#2f6f60;color:#fff;padding:9px 11px;font:inherit;font-size:9.5px;font-weight:850;cursor:pointer}.document-privacy-body>small{display:block;font-size:8.8px;line-height:1.45;color:#7a817f;margin-top:7px}
.document-privacy-body[hidden]{display:none!important}



.video-library{padding-bottom:110px}.video-intro-card{display:flex;gap:18px;justify-content:space-between;align-items:center;background:linear-gradient(135deg,#fff 0%,#fff7f0 100%);border:1px solid #f1ded2;border-radius:20px;padding:20px;margin-bottom:14px;box-shadow:0 8px 24px rgba(34,49,72,.06)}.video-intro-copy{min-width:0}.video-intro-copy h2{margin:5px 0 7px;font-size:1.28rem;line-height:1.25}.video-intro-copy p{margin:0;color:#5e6571;line-height:1.55}.video-overall-progress{min-width:125px;text-align:center;background:#fff;border:1px solid #eee3dc;border-radius:16px;padding:12px}.video-overall-progress strong{display:block;font-size:1.25rem;color:#df2f2f}.video-overall-progress span{display:block;font-size:.75rem;color:#727986;margin:2px 0 8px}.video-overall-progress progress{width:100%;height:7px;accent-color:#df2f2f}.video-tools{display:flex;gap:10px;align-items:center;margin:12px 0}.video-search{flex:1;display:flex;align-items:center;gap:8px;background:#fff;border:1px solid #dedfe3;border-radius:14px;padding:0 12px}.video-search:focus-within{border-color:#df2f2f;box-shadow:0 0 0 3px rgba(223,47,47,.08)}.video-search input{border:0;outline:0;background:transparent;width:100%;padding:12px 0;font:inherit}.video-unwatched-toggle{display:flex;align-items:center;gap:7px;background:#fff;border:1px solid #dedfe3;border-radius:14px;padding:10px 12px;white-space:nowrap;font-size:.86rem}.video-unwatched-toggle input{accent-color:#df2f2f}.video-topic-strip{display:flex;gap:8px;overflow-x:auto;padding:3px 0 10px;scrollbar-width:none}.video-topic-strip::-webkit-scrollbar{display:none}.video-topic-pill{border:1px solid #e1e3e7;background:#fff;color:#253149;border-radius:999px;padding:8px 12px;white-space:nowrap;font-weight:700;font-size:.82rem}.video-topic-pill.active{background:#253149;color:#fff;border-color:#253149}.video-library-summary{font-size:.82rem;color:#7a808a;margin:1px 0 10px}.video-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.video-card{background:#fff;border:1px solid #e5e6e9;border-radius:18px;overflow:hidden;box-shadow:0 6px 20px rgba(34,49,72,.05);transition:.18s ease}.video-card.watched{border-color:#cbded1;background:#fcfffd}.video-thumb{position:relative;aspect-ratio:16/9;background:#eef0f3;overflow:hidden}.video-thumb img{width:100%;height:100%;object-fit:cover;display:block}.video-thumb-placeholder{height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:6px;background:linear-gradient(135deg,#27354f,#192337);color:#fff}.video-thumb-placeholder span{font-size:2rem}.video-thumb-placeholder small{max-width:80%;text-align:center;opacity:.8}.video-duration{position:absolute;right:8px;bottom:8px;background:rgba(13,20,31,.82);color:#fff;border-radius:6px;padding:3px 6px;font-size:.72rem}.video-watched-badge{position:absolute;left:8px;top:8px;background:#27784c;color:#fff;border-radius:999px;padding:5px 8px;font-size:.7rem;font-weight:800}.video-card-body{padding:13px}.video-topic-label{display:block;font-size:.71rem;color:#df2f2f;font-weight:800;text-transform:uppercase;letter-spacing:.03em;margin-bottom:5px}.video-card h3{font-size:1rem;line-height:1.35;margin:0 0 6px}.video-card p{font-size:.84rem;color:#666e79;line-height:1.45;margin:0 0 11px}.video-card-actions{display:flex;gap:9px;align-items:center;justify-content:space-between;flex-wrap:wrap}.video-card-actions .btn{padding:8px 11px;font-size:.8rem}.video-watch-check{display:flex;align-items:center;gap:6px;font-size:.78rem;color:#4e5662;cursor:pointer}.video-watch-check input{width:17px;height:17px;accent-color:#27784c}.video-url-missing{font-size:.78rem;color:#9b6b6b}.video-empty{text-align:center;padding:25px}.video-empty p{margin-bottom:0;color:#727986}
@media(max-width:720px){.video-intro-card{align-items:flex-start}.video-overall-progress{min-width:105px}.video-tools{align-items:stretch;flex-direction:column}.video-unwatched-toggle{align-self:flex-start}.video-grid{grid-template-columns:1fr}}
@media(max-width:430px){.video-intro-card{display:block}.video-overall-progress{margin-top:14px;width:auto;display:grid;grid-template-columns:auto 1fr;column-gap:8px;text-align:left}.video-overall-progress progress{grid-column:1/3}.video-card-actions{align-items:flex-start;flex-direction:column}}



.task-video-topics{display:grid;gap:8px;margin:8px 0 3px 42px}.task-video-topic{width:100%;display:flex;align-items:center;gap:10px;text-align:left;border:1px solid #e4e7ec;background:#fbfcfe;border-radius:13px;padding:10px 11px;color:#263149;cursor:pointer;transition:border-color .16s ease,background .16s ease,transform .16s ease}.task-video-topic:hover{border-color:#cfd5dd;background:#fff;transform:translateY(-1px)}.task-video-topic-icon{width:29px;height:29px;border-radius:9px;background:#fff1ef;display:grid;place-items:center;flex:0 0 auto;font-size:.95rem}.task-video-topic-copy{min-width:0;display:flex;flex-direction:column;gap:2px}.task-video-topic-copy strong{font-size:.84rem;line-height:1.25}.task-video-topic-copy small{font-size:.73rem;color:#777f8b}.task-video-topic-arrow{margin-left:auto;font-size:1.4rem;color:#a0a6af;line-height:1}.task-video-topic:focus-visible{outline:3px solid rgba(223,47,47,.16);outline-offset:2px}
@media(max-width:520px){.task-video-topics{margin-left:0}.task-video-topic{padding:10px}.task-video-topic-copy strong{font-size:.82rem}}


.video-search-note{font-size:.78rem;color:#737b87;margin:-4px 0 10px 2px;line-height:1.4}
@media(min-width:721px){.video-topic-strip{display:flex;flex-wrap:wrap;overflow:visible;gap:8px;padding:3px 0 12px}.video-topic-pill{flex:0 0 auto}}
@media(max-width:720px){.video-topic-strip{display:flex;flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;padding-bottom:10px}.video-search-note{margin-top:-2px}}


.step-video-knowledge{margin:18px 0 12px;border:1px solid #e4e7ec;background:#fff;border-radius:16px;padding:14px}.step-video-knowledge-head{display:flex;align-items:center;gap:10px;margin-bottom:10px}.step-video-knowledge-head>span{width:34px;height:34px;border-radius:10px;background:#fff1ef;display:grid;place-items:center}.step-video-knowledge-head>div{display:flex;flex-direction:column;gap:1px}.step-video-knowledge-head strong{font-size:.92rem;color:#172033}.step-video-knowledge-head small{font-size:.75rem;color:#777f8b}.step-video-knowledge .task-video-topics{margin:0;grid-template-columns:repeat(2,minmax(0,1fr))}@media(max-width:700px){.step-video-knowledge .task-video-topics{grid-template-columns:1fr}}

.video-filter-row{display:flex;gap:10px;align-items:center;flex-wrap:wrap}.video-topic-select-wrap{display:flex;align-items:center;gap:8px;font-size:.82rem;font-weight:700;color:#4e5662}.video-topic-select-wrap select{max-width:330px;border:1px solid #dedfe3;background:#fff;color:#253149;border-radius:12px;padding:9px 34px 9px 11px;font:inherit;font-weight:700}.video-topic-strip{display:none!important}
@media(max-width:720px){.video-filter-row{width:100%;justify-content:space-between}.video-topic-select-wrap{flex:1;min-width:0}.video-topic-select-wrap select{min-width:0;max-width:100%;width:100%}.video-unwatched-toggle{align-self:auto}.video-search-note{font-size:.76rem;line-height:1.35}}
\n\n
.video-tools{display:grid!important;grid-template-columns:minmax(0,1fr);gap:9px!important;align-items:stretch!important;margin:12px 0 8px!important}
.video-search{width:100%;min-width:0;box-sizing:border-box;display:flex;align-items:center;gap:9px;background:#fff;border:1px solid #dedfe3;border-radius:14px;padding:0 13px;min-height:46px}
.video-search-icon{flex:0 0 auto;font-size:1.05rem;color:#596271}
.video-search input{display:block;min-width:0;flex:1;width:auto!important;padding:11px 0!important;font-size:16px!important;color:#172033}
.video-filter-row{display:grid!important;grid-template-columns:minmax(0,1fr) auto;gap:9px!important;align-items:center;width:100%}
.video-topic-select-wrap{display:block!important;min-width:0;width:100%}
.video-topic-select-wrap select{display:block;width:100%!important;max-width:none!important;min-width:0!important;box-sizing:border-box;border:1px solid #dedfe3;background:#fff;color:#253149;border-radius:13px;padding:10px 36px 10px 12px;font:inherit;font-size:.88rem;font-weight:750;min-height:44px}
.video-unwatched-toggle{box-sizing:border-box;min-height:44px;padding:9px 12px!important;align-self:stretch!important;justify-content:center}
.video-library-summary{font-size:.82rem;color:#737b87;margin:0 0 11px 2px}
.video-search-note{display:none!important}
@media(max-width:430px){
  .video-filter-row{grid-template-columns:minmax(0,1fr) auto!important}
  .video-unwatched-toggle{padding:9px 10px!important;font-size:.8rem!important}
}



.video-tools{display:block!important;margin:12px 0 8px!important}
.video-search{display:flex!important;width:100%!important;min-width:0!important;box-sizing:border-box!important;align-items:center!important;gap:9px!important;background:#fff!important;border:1px solid #dedfe3!important;border-radius:14px!important;padding:0 13px!important;min-height:46px!important}
.video-search-icon{display:inline-block!important;flex:0 0 auto!important;width:auto!important;font-size:1.05rem!important;color:#596271!important}
.video-search input{display:block!important;flex:1 1 auto!important;width:100%!important;min-width:0!important;max-width:none!important;border:0!important;outline:0!important;background:transparent!important;padding:11px 0!important;font:inherit!important;font-size:16px!important;color:#172033!important}
.video-filter-row{display:flex!important;width:100%!important;gap:9px!important;align-items:center!important;margin-top:9px!important;flex-wrap:nowrap!important}
.video-topic-select-wrap{display:block!important;flex:1 1 auto!important;min-width:0!important;width:auto!important}
.video-topic-select-wrap select{display:block!important;width:100%!important;max-width:none!important;min-width:0!important;box-sizing:border-box!important;border:1px solid #dedfe3!important;background:#fff!important;color:#253149!important;border-radius:13px!important;padding:10px 36px 10px 12px!important;font:inherit!important;font-size:.88rem!important;font-weight:700!important;min-height:44px!important}
.video-unwatched-toggle{display:flex!important;flex:0 0 auto!important;box-sizing:border-box!important;min-height:44px!important;padding:9px 12px!important;align-items:center!important;justify-content:center!important;white-space:nowrap!important}
.video-search-note{display:none!important}
@media(max-width:430px){.video-filter-row{gap:7px!important}.video-unwatched-toggle{padding:9px 9px!important;font-size:.78rem!important}.video-topic-select-wrap select{font-size:.82rem!important;padding-left:10px!important}}


.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.video-filter-row{display:grid!important;grid-template-columns:minmax(0,1fr) minmax(145px,auto)!important;gap:10px!important;align-items:stretch!important;width:100%!important;margin-top:9px!important}
.video-topic-select-wrap,.video-unwatched-toggle{height:48px!important;min-height:48px!important;margin:0!important;box-sizing:border-box!important}
.video-topic-select-wrap{display:block!important;width:100%!important;min-width:0!important}
.video-topic-select-wrap select{height:48px!important;min-height:48px!important;width:100%!important;margin:0!important;padding:0 38px 0 13px!important;border-radius:14px!important;box-sizing:border-box!important}
.video-unwatched-toggle{display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;padding:0 14px!important;border-radius:14px!important;white-space:nowrap!important}
.video-unwatched-toggle input{margin:0!important}
@media(max-width:430px){
  .video-filter-row{grid-template-columns:minmax(0,1fr) minmax(132px,auto)!important;gap:8px!important}
  .video-topic-select-wrap,.video-unwatched-toggle,.video-topic-select-wrap select{height:46px!important;min-height:46px!important}
  .video-unwatched-toggle{padding:0 10px!important;font-size:.79rem!important}
}

.menu-version{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:9px 14px;border-top:1px solid #f1ede8;background:#fbfaf8;color:var(--muted);font-size:10px}.menu-version strong{font-size:10px;color:#6d7478;font-weight:800;white-space:nowrap}




.detail-standard-header{
  padding-bottom:0;
}
.detail-standard-header .standard-topbar{
  margin-bottom:0;
}
.content.content-top-spaced > .back-row:first-child{
  margin-top:0;
  margin-bottom:12px;
}

.back-row.detail-app-topbar{
  display:flex;
  min-height:0;
  margin:0 0 12px;
  padding:0;
  border-bottom:0;
  background:transparent;
}



.step-authorities{margin:18px 0 12px;border:1px solid #dfe5e8;background:#fff;border-radius:16px;padding:14px}.step-authority-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px}.step-authority-head>div{display:flex;align-items:center;gap:10px}.step-authority-head>div>span{width:34px;height:34px;border-radius:10px;background:#f3f5f6;display:grid;place-items:center}.step-authority-head>div>div{display:flex;flex-direction:column}.step-authority-head strong{font-size:.92rem}.step-authority-head small{font-size:.74rem;color:var(--muted)}.step-authority-region{max-width:190px;min-height:40px;border:1px solid #d9dde0;border-radius:11px;background:#fff;padding:0 32px 0 10px;font:inherit;font-size:.8rem;font-weight:700}.authority-region-open{padding:12px;border-radius:12px;background:#f7f4ef;margin-bottom:10px}.authority-region-open strong{font-size:.8rem}.authority-region-open p{font-size:.72rem;line-height:1.5;color:var(--muted);margin:4px 0 0}.step-authority-list{display:grid;gap:8px}.authority-card{display:grid;grid-template-columns:38px 1fr;gap:11px;border:1px solid #e5e7e9;background:#fff;border-radius:15px;padding:13px}.authority-card-icon{width:38px;height:38px;border-radius:11px;background:#f3f5f6;display:grid;place-items:center;font-size:18px}.authority-card-main{min-width:0}.authority-type{display:block;color:#6b747c;font-size:.68rem;font-weight:800;margin-bottom:2px}.authority-card-main>strong{display:block;font-size:.88rem;line-height:1.3}.authority-purpose,.authority-address{font-size:.75rem;line-height:1.45;color:#606870;margin:5px 0 0}.authority-card-compact .authority-purpose{display:none}.authority-contacts{display:flex;flex-wrap:wrap;gap:7px;margin-top:8px}.authority-contact{font-size:.72rem;color:#47525c;text-decoration:none}.authority-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:9px}.authority-route,.authority-official{font-size:.75rem;font-weight:850;text-decoration:none}.authority-route{color:var(--pilot-red)}.authority-official{color:#52616c}.authority-step-foot{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}.authority-profile-link{color:#69747c!important}.authorities-page{padding-bottom:105px}.authorities-intro{display:flex;gap:12px;align-items:flex-start;padding:16px;background:linear-gradient(145deg,#fff,#f7f9fa);border:1px solid var(--border);border-radius:18px;margin-bottom:12px}.authorities-intro-icon{font-size:25px}.authorities-intro strong{font-size:.95rem}.authorities-intro p{font-size:.78rem;line-height:1.55;color:var(--muted);margin:5px 0 0}.authority-filters{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-bottom:12px}.authority-filters label span{display:block;font-size:.7rem;font-weight:850;color:#667078;margin:0 0 5px 2px}.authority-filters select{width:100%;height:44px;border:1px solid #d9dde0;border-radius:13px;background:#fff;padding:0 34px 0 11px;font:inherit;font-size:.82rem;font-weight:700}.authority-results-head{display:flex;justify-content:space-between;align-items:center;margin:14px 2px 8px}.authority-results-head strong{font-size:.85rem}.authority-results-head span{font-size:.72rem;color:var(--muted)}.authority-list{display:grid;grid-template-columns:1fr 1fr;gap:9px}.authority-verification-note{margin:14px 0;padding:13px 14px;border-radius:14px;background:#fff8ec;border:1px solid #f1dfba}.authority-verification-note strong{font-size:.78rem}.authority-verification-note p{font-size:.7rem;line-height:1.55;color:#6f6759;margin:5px 0 0}@media(max-width:700px){.authority-list{grid-template-columns:1fr}.authority-filters{grid-template-columns:1fr}.step-authority-head{align-items:flex-start;flex-direction:column}.step-authority-region{width:100%;max-width:none}.authority-card{padding:11px}.authority-step-foot{flex-direction:column;align-items:flex-start}}
.authority-emergency{font-weight:850;color:#a82a2a}.authority-note{font-size:.7rem;line-height:1.5;color:#6b6257;background:#fff8ec;border-radius:10px;padding:8px 9px;margin:8px 0 0}


.step-sequence-nav{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:10px}.step-sequence-btn{min-width:0;border:1px solid #dfe2e7;background:#fff;border-radius:12px;padding:9px 10px;text-align:left;color:var(--pilot-navy);box-shadow:0 2px 8px rgba(34,49,72,.035);cursor:pointer}.step-sequence-btn.next{text-align:right;border-color:#efd8d2;background:#fff9f7}.step-sequence-btn span{display:block;font-size:.68rem;color:#777f8a;margin-bottom:2px;white-space:nowrap}.step-sequence-btn strong{display:block;font-size:.82rem;line-height:1.18}.step-sequence-btn:disabled{opacity:.55;cursor:wait}.step-sequence-hint{margin:6px 2px 0;text-align:center;color:#7a808a;font-size:.68rem}.message-delete-dialog .btn-danger{width:100%;margin-top:8px}
@media(max-width:520px){.step-sequence-nav{grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:6px;margin-top:8px}.step-sequence-btn{border-radius:11px;padding:8px 9px;min-height:54px}.step-sequence-btn span{font-size:.64rem;margin-bottom:2px}.step-sequence-btn strong{font-size:.78rem;line-height:1.15;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.step-sequence-hint{font-size:.64rem;margin-top:5px;text-align:center}}


.account-danger-zone{margin-top:18px;padding-top:16px;border-top:1px solid #eadfda;display:flex;align-items:center;justify-content:space-between;gap:14px}.account-danger-zone strong{display:block;font-size:14px}.account-danger-zone p{margin:4px 0 0;font-size:12px;line-height:1.45;color:#756b66}.account-delete-link{border:0;background:transparent;color:#c62828;font:inherit;font-weight:700;font-size:13px;padding:9px 0;white-space:nowrap;cursor:pointer}.account-delete-modal[hidden]{display:none}.account-delete-modal{position:fixed;inset:0;z-index:1200;display:flex;align-items:flex-end;justify-content:center}.account-delete-backdrop{position:absolute;inset:0;background:rgba(16,20,26,.48)}.account-delete-sheet{position:relative;width:min(100%,560px);max-height:88vh;overflow:auto;background:#fff;border-radius:22px 22px 0 0;padding:22px 20px calc(20px + env(safe-area-inset-bottom));box-shadow:0 -10px 40px rgba(0,0,0,.18)}.account-delete-close{position:absolute;right:14px;top:12px;width:38px;height:38px;border:0;border-radius:50%;background:#f4f1ed;font-size:25px;line-height:1;cursor:pointer}.account-delete-icon{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:#fff0ee;color:#d71920;font-weight:900;margin-bottom:12px}.account-delete-sheet h2{margin:0 42px 6px 0;font-size:22px}.account-delete-sheet>p{margin:0 0 14px;color:#6f625c}.account-delete-warning{background:#fff7f6;border:1px solid #f3cac6;border-radius:14px;padding:13px 14px;margin-bottom:16px;font-size:13px;line-height:1.45}.account-delete-warning ul{margin:8px 0 0;padding-left:19px}.account-delete-warning li+li{margin-top:3px}.account-delete-confirm{width:100%;background:#d71920;color:#fff;border:0;margin-bottom:8px}.account-delete-confirm:disabled{opacity:.45;cursor:not-allowed}body.account-delete-open{overflow:hidden}@media (min-width:700px){.account-delete-modal{align-items:center;padding:24px}.account-delete-sheet{border-radius:22px}.account-danger-zone{padding-left:2px;padding-right:2px}}@media (max-width:430px){.account-danger-zone{align-items:flex-start;flex-direction:column;gap:5px}.account-delete-link{padding:3px 0}.account-delete-sheet{padding-left:18px;padding-right:18px}.account-delete-sheet h2{font-size:20px}}


.community-profile-open{cursor:pointer;transition:transform .12s ease,border-color .12s ease}.community-profile-open:active{transform:scale(.99)}.community-profile-open:focus-visible{outline:2px solid var(--pilot-red);outline-offset:2px}.community-profile-chevron{margin-left:auto;font-size:28px;color:var(--muted);line-height:1}.community-profile-detail{background:#fff;border:1px solid var(--border);border-radius:20px;padding:18px;box-shadow:0 5px 18px rgba(30,35,38,.05)}.community-profile-hero{display:flex;align-items:center;gap:14px}.community-profile-hero h1{font-size:22px;margin:0 0 3px}.community-profile-avatar{width:68px;height:68px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#f9e7e7;color:var(--pilot-red);font-size:25px;font-weight:800;flex:0 0 auto}.community-profile-intro{font-size:15px;line-height:1.55;margin:18px 0}.community-profile-facts{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:16px 0}.community-profile-facts div{background:#f7f5f2;border-radius:12px;padding:10px;font-size:13px}.community-profile-section{margin-top:18px}.community-profile-section h2{font-size:15px;margin:0 0 8px}.community-profile-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:20px}.community-privacy-note{margin-top:16px}.detail-back{border:0;background:transparent;padding:4px 0 12px;color:var(--muted);font:inherit;font-weight:700;cursor:pointer}@media(max-width:480px){.community-profile-detail{padding:15px;border-radius:17px}.community-profile-avatar{width:58px;height:58px}.community-profile-hero h1{font-size:20px}.community-profile-facts{grid-template-columns:1fr}.community-profile-actions .btn{flex:1 1 auto}.community-profile-chevron{font-size:24px}}

.landing-menu-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: #fff;
  color: var(--pilot-navy, #222F3F);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.landing-menu-panel {
  display: none;
  position: absolute;
  top: 58px;
  right: 14px;
  z-index: 5;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.22);
  min-width: 190px;
}

.landing-menu-panel.open {
  display: block;
}

.landing-menu-panel button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
}

.landing-menu-panel button:hover {
  background: var(--cream-soft);
}

.landing-menu-panel button.muted {
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
}

.landing-menu-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 4px;
}

.landing-hero {
  position: relative;
  height: 260px;
  background-image: url('../assets/hero-couple.jpg');
  background-size: cover;
  background-position: 58% 38%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.landing-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.05) 30%, rgba(20,20,25,0.6) 72%, rgba(15,15,20,0.9) 100%);
}

.landing-hero-bottom {
  position: relative;
  z-index: 2;
  padding: 0 20px 16px;
}

.landing-hero-logo {
  width: 110px;
  height: auto;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.landing-hero-headline {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.landing-hero-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin: 0 0 6px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.landing-hero-caption {
  font-size: 11px;
  color: rgba(255,255,255,0.92);
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.landing-content {
  padding: 16px 20px 28px;
}

.landing-subline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 16px;
}

.landing-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}

.landing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-soft);
  border-radius: 12px;
  padding: 10px 14px;
}

.landing-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-feature-icon svg {
  width: 16px;
  height: 16px;
}

.landing-feature-title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.landing-feature-text {
  margin: 0;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4;
}

.landing-trust-note {
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.property-flow{max-width:720px;margin:0 auto;padding-bottom:96px}.property-hero{text-align:center;padding:8px 8px 18px}.property-hero>span{font-size:40px}.property-hero h1{font-size:26px;line-height:1.15;margin:8px 0}.property-hero p{margin:0;color:var(--muted,#667085);font-size:14px}.property-choice{width:100%;border:1px solid #e5e7eb;background:#fff;border-radius:18px;padding:16px;display:flex;align-items:center;gap:13px;text-align:left;margin:10px 0;box-shadow:0 4px 18px rgba(15,23,42,.05)}.property-choice-icon{font-size:28px}.property-choice span:nth-child(2){display:flex;flex-direction:column;gap:3px;flex:1}.property-choice strong{font-size:16px}.property-choice small{font-size:13px;color:#667085;line-height:1.35}.property-choice b{font-size:28px;font-weight:400;color:#98a2b3}.property-panel,.property-status,.property-service-card{background:#fff;border:1px solid #e7eaf0;border-radius:18px;padding:16px;margin:16px 0;box-shadow:0 5px 22px rgba(15,23,42,.05)}.property-panel h2{font-size:21px;margin:5px 0 8px}.property-panel>p{font-size:14px;line-height:1.5;color:#475467}.flow-progress{font-size:11px;font-weight:800;letter-spacing:.08em;color:#667085}.property-callout{margin-top:18px;padding:15px;border-radius:15px;background:#f6f8fb}.property-callout p{font-size:13px;color:#475467}.property-callout .btn{width:100%}.fee-card{display:flex;flex-direction:column;gap:6px;padding:14px;border-radius:15px;background:#f6f8fb;margin:14px 0}.fee-card strong{font-size:22px}.fee-card span{font-weight:700;font-size:13px}.fee-card small,.property-price-note span{font-size:12px;color:#667085;line-height:1.45}.check-grid{display:grid;grid-template-columns:1fr;gap:8px;margin:8px 0 15px}.check-grid label,.consent-row,.legal-consent-box label{font-size:13px;line-height:1.35}.legal-consent-box{border:1px solid #d9dee8;border-radius:14px;padding:13px;margin:16px 0;display:flex;flex-direction:column;gap:10px;background:#fbfcfe}.legal-consent-box small{font-size:11px;color:#667085}.property-price-note{display:flex;flex-direction:column;gap:4px;padding:12px;border-radius:13px;background:#fff8e8;margin:12px 0}.property-service-card{display:grid;grid-template-columns:auto 1fr;gap:10px;align-items:center}.property-service-icon{font-size:30px}.property-service-copy{display:flex;flex-direction:column;gap:3px}.property-service-copy span{font-size:12px;color:#667085}.property-service-btn{grid-column:1/-1;width:100%;margin:2px 0 0}.property-status{display:flex;flex-direction:column;gap:5px}.property-status p,.property-status small{margin:0;color:#667085}.status-chip{align-self:flex-start;font-size:11px;font-weight:800;text-transform:uppercase;background:#eef4ff;padding:5px 8px;border-radius:999px}.property-thanks{text-align:center;padding-top:28px;padding-bottom:28px}@media(min-width:640px){.check-grid{grid-template-columns:1fr 1fr}.property-service-card{grid-template-columns:auto 1fr auto}.property-service-btn{grid-column:auto;width:auto}.property-choice{padding:18px}}


.admin-dashboard-screen .content{padding-bottom:96px}.admin-view-switch{display:flex;align-items:center;justify-content:space-between;gap:12px;background:#fff;border:1px solid #e8e3dc;border-radius:16px;padding:12px 14px;margin-bottom:14px;box-shadow:0 6px 20px rgba(26,32,44,.04)}.admin-view-switch>div{min-width:0;display:flex;flex-direction:column;gap:2px}.admin-view-switch strong{font-size:13px}.admin-view-switch span{font-size:10.5px;line-height:1.35;color:var(--muted)}.admin-view-switch .btn{flex:0 0 auto;margin:0}.admin-user-view-banner{margin:0 0 14px}.admin-dashboard-hero{display:flex;align-items:center;justify-content:space-between;gap:14px;background:#fff;border:1px solid #eee5dc;border-radius:18px;padding:17px;margin-bottom:14px}.admin-dashboard-hero h2{font-size:20px;line-height:1.2;margin:3px 0 5px}.admin-dashboard-hero p{font-size:11px;line-height:1.45;color:var(--muted);margin:0}.admin-health-dot{width:13px;height:13px;border-radius:50%;flex:0 0 auto;box-shadow:0 0 0 5px rgba(39,120,71,.10)}.admin-health-dot.ok{background:#2f8a50}.admin-health-dot.attention{background:#d99024;box-shadow:0 0 0 5px rgba(217,144,36,.12)}.admin-overview-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;margin-bottom:18px}.admin-overview-card{border:1px solid #e9e5df;background:#fff;border-radius:16px;padding:12px;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:9px;text-align:left;min-width:0;box-shadow:0 5px 18px rgba(26,32,44,.04)}.admin-overview-card.urgent{border-color:#f0c9a3;background:#fffaf4}.admin-overview-icon{font-size:20px}.admin-overview-copy{display:flex;flex-direction:column;min-width:0}.admin-overview-copy small{font-size:9.5px;color:var(--muted);font-weight:700}.admin-overview-copy strong{font-size:19px;line-height:1.05;margin:2px 0;color:#172554}.admin-overview-copy em{font-style:normal;font-size:9px;line-height:1.3;color:#7b8189}.admin-overview-card>b,.admin-action-list button>b{font-size:20px;color:#a5a9ae;font-weight:400}.admin-section-head{margin-top:2px}.admin-quick-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;margin-bottom:18px}.admin-quick-stats>div{background:#fff;border:1px solid #eee5dc;border-radius:14px;padding:10px 8px;text-align:center}.admin-quick-stats span{display:block;font-size:9px;color:var(--muted);line-height:1.2}.admin-quick-stats strong{display:block;font-size:18px;color:#172554;margin-top:4px}.admin-action-list{display:flex;flex-direction:column;gap:8px;margin-bottom:18px}.admin-action-list button{width:100%;border:1px solid #e9e5df;background:#fff;border-radius:15px;padding:12px;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:10px;text-align:left}.admin-action-list button>span{font-size:21px}.admin-action-list button div{display:flex;flex-direction:column;gap:2px}.admin-action-list button strong{font-size:12px}.admin-action-list button small{font-size:9.5px;line-height:1.35;color:var(--muted)}.admin-dashboard-note{font-size:10px;line-height:1.45;color:var(--muted);background:#f7f5f2;border-radius:13px;padding:11px 12px;margin:10px 0 80px}
@media(max-width:520px){.admin-view-switch{align-items:flex-start}.admin-view-switch .btn{font-size:10px;padding:8px 9px}.admin-quick-stats{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(min-width:760px){.admin-overview-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.admin-dashboard-hero{padding:20px}.admin-dashboard-hero h2{font-size:23px}}


/* r52 - compact TikTok-style Videowissen grid */
.video-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.video-card.video-card-compact{border:0;border-radius:12px;background:transparent;box-shadow:none;overflow:visible;min-width:0}
.video-card.video-card-compact.watched{border:0;background:transparent}
.video-card-compact .video-thumb{aspect-ratio:9/16;border-radius:11px;overflow:hidden;background:#e9ebef;box-shadow:0 2px 9px rgba(34,49,72,.10)}
.video-card-compact .video-thumb img{width:100%;height:100%;object-fit:cover}
.video-card-compact .video-thumb-placeholder{min-height:100%;padding:8px;box-sizing:border-box}
.video-card-compact .video-thumb-placeholder span{font-size:1.45rem}
.video-card-compact .video-thumb-placeholder small{font-size:.68rem;line-height:1.2}
.video-card-compact .video-duration{right:5px;bottom:5px;padding:2px 4px;border-radius:4px;font-size:.63rem;z-index:3}
.video-card-compact .video-watched-badge{left:5px;top:5px;width:22px;height:22px;padding:0;display:grid;place-items:center;border-radius:50%;font-size:.72rem;z-index:3}
.video-thumb-play{position:absolute;inset:0;margin:auto;width:42px;height:42px;border:0;border-radius:50%;background:rgba(255,255,255,.92);color:#172033;display:grid;place-items:center;cursor:pointer;box-shadow:0 3px 12px rgba(0,0,0,.16);z-index:2;padding:0}
.video-thumb-play span{font-size:1rem;line-height:1;transform:translateX(1px)}
.video-card-compact .video-card-body{padding:7px 2px 0}
.video-card-compact .video-topic-label,.video-card-compact .video-card-body>p{display:none}
.video-card-compact h3{font-size:.82rem;line-height:1.28;margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:2.1em;font-weight:650}
.video-card-compact .video-card-actions{margin-top:5px;display:flex;align-items:center;justify-content:space-between;gap:5px;flex-wrap:nowrap}
.video-title-open{border:0;background:transparent;color:#d92323;font:inherit;font-size:.68rem;font-weight:800;padding:0;cursor:pointer;white-space:nowrap}
.video-card-compact .video-watch-check{gap:3px;font-size:.64rem;color:#68707c;min-width:0;white-space:nowrap}
.video-card-compact .video-watch-check input{width:14px;height:14px;flex:0 0 auto}
.video-card-compact .video-url-missing{font-size:.65rem}
@media(max-width:720px){
  .video-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:10px 8px!important}
  .video-card-compact .video-card-actions{flex-direction:row!important;align-items:center!important}
  .video-thumb-play{width:36px;height:36px}
  .video-card-compact h3{font-size:.76rem}
  .video-title-open{font-size:.64rem}
  .video-card-compact .video-watch-check{font-size:.60rem}
}
@media(max-width:360px){
  .video-grid{gap:9px 6px!important}
  .video-card-compact h3{font-size:.71rem}
  .video-card-compact .video-watch-check span{display:none}
  .video-thumb-play{width:32px;height:32px}
}
@media(min-width:721px){.video-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:14px 12px!important}}
