body .assessment-holding-shell {
  font-family:
    "Source Sans 3",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #1b2a3d;
}

.assessment-holding-app * {
  box-sizing: border-box;
}

.assessment-holding-app {
  min-height: 95vh;
}

.ah-screen {
  min-height: 95vh;
  padding: 40px 20px;
}

.ah-entry,
.ah-intro {
  background: linear-gradient(160deg, #0d1b2a, #1b2a3d 40%, #1e3348);
}

.ah-intro {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ah-question,
.ah-contact,
.ah-results {
  background: #f5f0e8;
}

.ah-panel {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.ah-entry-panel,
.ah-intro-panel {
  max-width: 760px;
  text-align: center;
}

.ah-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(184, 149, 58, 0.3);
  border-radius: 999px;
  color: #b8953a;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ah-panel h1,
.ah-panel h2,
.ah-panel h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0;
}

.ah-entry-panel h1,
.ah-intro-panel h1 {
  margin-top: 24px;
  color: #fff;
  font-size: 38px;
  line-height: 1.2;
}

.ah-lede,
.ah-subtitle,
.ah-copy,
.ah-note {
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.ah-lede,
.ah-copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.ah-subtitle,
.ah-note {
  color: #b8953a;
}

.ah-note {
  font-size: 13px;
}

.ah-path-grid {
  margin-top: 36px;
  display: grid;
  gap: 16px;
}

.ah-path-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ah-path-card:hover {
  border-color: #b8953a;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.ah-path-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 26px;
}

.ah-path-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.ah-path-copy strong {
  font-size: 18px;
}

.ah-path-copy span {
  color: rgba(255, 255, 255, 0.6);
}

.ah-path-copy small {
  color: #b8953a;
  font-size: 12px;
}

.ah-path-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
}

.ah-footer-note {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.ah-footer-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.ah-round-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b8953a, #d4af37);
  box-shadow: 0 8px 32px rgba(184, 149, 58, 0.3);
  font-size: 36px;
}

.ah-round-icon-small {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  font-size: 28px;
}

.ah-question-panel,
.ah-contact-panel,
.ah-results-panel {
  max-width: 640px;
}

.ah-topline {
  display: flex;
  justify-content: space-between;
  color: #888;
  font-size: 12px;
  margin-bottom: 8px;
}

.ah-dim {
  color: #b8953a;
  font-weight: 700;
}

.ah-progress {
  height: 6px;
  border-radius: 999px;
  background: #e0dcd4;
  overflow: hidden;
  margin-bottom: 28px;
}

.ah-progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d1b2a, #b8953a);
}

.ah-question-panel h2,
.ah-contact-panel h2,
.ah-results-panel h1 {
  color: #0d1b2a;
  font-size: 30px;
  line-height: 1.25;
}

.ah-options {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.ah-option-btn {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid #e0dcd4;
  border-radius: 12px;
  background: #fff;
  color: #1b2a3d;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}

.ah-option-btn:hover,
.ah-option-btn.is-selected {
  border-color: #b8953a;
  background: #fdfbf7;
}

.ah-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.ah-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ah-form-grid span {
  color: #0d1b2a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ah-form-grid input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid #e0dcd4;
  background: #fff;
  font-size: 14px;
}

.ah-form-grid input:focus {
  border-color: #b8953a;
  outline: none;
}

.ah-full {
  grid-column: 1 / -1;
}

.ah-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  color: #777;
  font-size: 12px;
  line-height: 1.6;
}

.ah-privacy a {
  color: #b8953a;
}

.ah-error {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(155, 27, 27, 0.08);
  color: #9b1b1b;
  font-size: 14px;
}

.ah-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.ah-actions-center {
  justify-content: center;
}

.ah-intro-panel .ah-actions-center {
  flex-direction: column;
  gap: 14px;
}

.ah-intro-panel .ah-link-btn {
  font-size: 12px;
}

.ah-question-panel #ah-exit-btn {
  display: block;
  margin: 28px 0 0;
  padding: 0;
  text-align: left;
  font-size: 12px;
}

.ah-contact-panel .ah-copy-tight {
  color: #777;
}

.ah-contact-panel .ah-actions {
  flex-direction: column-reverse;
  align-items: stretch;
  gap: 16px;
}

.ah-contact-panel #ah-submit-btn {
  width: 100%;
}

.ah-contact-panel #ah-contact-back {
  background: none;
  border: none;
  color: #999;
  text-decoration: underline;
  min-height: 0;
  padding: 0;
  font-weight: 400;
  font-size: 12px;
  align-self: flex-start;
  box-shadow: none;
}

.ah-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.ah-btn-gold {
  background: linear-gradient(135deg, #b8953a, #d4af37);
  color: #0d1b2a;
  box-shadow: 0 4px 20px rgba(184, 149, 58, 0.35);
}

.ah-btn-dark {
  background: #0d1b2a;
  color: #fff;
}

.ah-btn-light {
  background: #fff;
  color: #1b2a3d;
  border: 1px solid #ddd;
}

.ah-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.ah-link-btn {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  text-decoration: underline;
}

.ah-kicker {
  color: #b8953a;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
}

.ah-score-ring {
  width: 148px;
  height: 148px;
  margin: 28px auto;
  border: 6px solid #b8953a;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.ah-score-ring strong {
  font-size: 42px;
}

.ah-score-ring span {
  color: #999;
  font-size: 12px;
}

.ah-result-box,
.ah-card-block,
.ah-benchmark-block {
  border-radius: 14px;
  padding: 22px 24px;
  margin-top: 24px;
}

.ah-result-box {
  color: #fff;
  text-align: center;
}

.ah-result-box span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.ah-result-box strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.ah-result-box p {
  margin: 10px 0 0;
  line-height: 1.7;
}

.ah-card-block {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.ah-card-block h3 {
  color: #0d1b2a;
  font-size: 18px;
  margin-bottom: 18px;
}

.ah-dimension-row + .ah-dimension-row,
.ah-weak-item + .ah-weak-item {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.ah-dimension-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.ah-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e8e8;
}

.ah-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.ah-weak-item p,
.ah-benchmark-block p {
  margin: 8px 0 0;
  line-height: 1.7;
}

.ah-benchmark-block {
  background: #0d1b2a;
  color: #fff;
}

.ah-benchmark-block span {
  color: #b8953a;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

@media (max-width: 720px) {
  .ah-entry-panel h1,
  .ah-intro-panel h1,
  .ah-question-panel h2,
  .ah-contact-panel h2,
  .ah-results-panel h1 {
    font-size: 28px;
  }

  .ah-path-card,
  .ah-actions,
  .ah-topline {
    flex-direction: column;
    align-items: stretch;
  }

  .ah-form-grid {
    grid-template-columns: 1fr;
  }
}
