.aw-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 12px; /* Enforcing absolute left-aligned 12px padding law */
  background-color: #0a0e17; /* Slate dark console hue */
  color: #f3f4f6;
  font-family: monospace, sans-serif;
  min-height: 100vh;
}

/* Step Navigation Header */
.aw-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1f2937;
  padding-bottom: 12px;
}

.aw-back-link {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.aw-step-indicator {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 700;
}

/* Industry Context-Aware Value Pitch Banner */
.aw-pitch-card {
  background-color: rgba(245, 158, 11, 0.05); /* Soft ambient gold tint */
  border: 1px dashed #f59e0b; /* Amber warning outline token */
  border-radius: 8px;
  padding: 16px;
  text-align: left;
}

.aw-pitch-heading {
  margin: 0 0 6px 0;
  font-size: 14px;
  font-weight: 700;
  color: #f59e0b;
}

.aw-pitch-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #d1d5db;
}

/* Step State Display Core Layout Panels */
.aw-step-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #111827; /* Deep container tile layer */
  border: 1px solid #1f2937;
  border-radius: 8px;
  padding: 16px;
}

.aw-step-panel.aw-hidden {
  display: none !important; /* Immediate visibility switching */
}

.aw-panel-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
}

.aw-panel-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #9ca3af;
  text-align: left;
}

/* High Density Input Fields Stack */
.aw-form-scroll-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 50vh;
  overflow-y: auto; /* Clean padding isolation constraints for small screens */
  padding-right: 4px;
}

.aw-field-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.aw-field-label {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.aw-text-input {
  height: 44px; /* Rigid adherence to the 44px mobile touch-target law */
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 6px;
  padding: 0 12px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
}

.aw-textarea-input {
  height: 100px;
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 6px;
  padding: 12px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  resize: none;
}

.aw-text-input:focus, .aw-textarea-input:focus {
  outline: none;
  border-color: #3b82f6; /* Blue interaction ring highlight token */
}

.aw-info-subtext {
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
}

/* File Selection Asset Row */
.aw-file-upload-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aw-file-status {
  font-size: 11px;
  color: #9ca3af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

/* Touch-Optimized Layout Action Triggers */
.aw-full-btn, .aw-secondary-btn, .aw-mock-action-btn {
  height: 44px; /* Absolute touch target parameter safety parameter */
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease;
}

.aw-full-btn {
  background-color: #3b82f6;
  color: #ffffff;
  border: 1px solid transparent;
  width: 100%;
}

.aw-full-btn:hover { background-color: #2563eb; }

.aw-full-btn:disabled {
  background-color: #374151;
  color: #6b7280;
  cursor: not-allowed;
}

.aw-secondary-btn {
  background-color: #1f2937;
  color: #ffffff;
  border: 1px solid #374151;
  padding: 0 16px;
}

.aw-secondary-btn:hover { background-color: #374151; }

.aw-btn-split-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.aw-btn-split-row .aw-full-btn {
  flex: 1;
}

/* Hardened Premium Amber Glowing Mockup Container */
.aw-mockup-frame-box {
  background-color: #0a0e17;
  border: 1px solid #1f2937;
  border-radius: 8px;
  padding: 16px;
  margin: 4px 0;
}

.aw-mockup-billboard-card {
  background-color: #111827;
  border: 1px solid #f59e0b; /* Signature Amber Outline Token */
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.15); /* Premium ambient outer radiance */
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.aw-mockup-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.aw-mock-name {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.aw-mock-verified-badge {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #10b981;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}

.aw-mock-tagline {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #d1d5db;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Matches our rigid 3-line clamping parameters */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aw-mock-meta-row {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: #9ca3af;
}

.aw-mock-action-btn {
  width: 100%;
  background-color: #1f2937;
  border: 1px solid #374151;
  color: #9ca3af;
}

/* Compliance Terms Checkbox Gate Row Elements */
.aw-terms-card-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 6px;
  padding: 12px;
  text-align: left;
}

.aw-checkbox-gate {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  cursor: pointer;
}

.aw-terms-label {
  font-size: 11px;
  line-height: 1.4;
  color: #9ca3af;
  cursor: pointer;
  user-select: none;
}

/* Hidden Utility Classes */
.aw-hidden-file-input {
  display: none !important;
}

/* Desktop Viewport Alignment Logic Structure Constraints */
@media (min-width: 1024px) {
  .aw-container {
    max-width: 480px; /* Lock bounding dimensions to verify multi-device layout accuracy */
    margin: 0 auto;
    padding: 40px 12px;
  }
}
