/* ATC Startup Registration Form Stylesheet */

/* Fonts Definition */
@font-face {
  font-family: 'Nexa';
  src: url('./fonts/Nexa-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: url('./fonts/Nexa-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: url('./fonts/Nexa-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: url('./fonts/Nexa-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: url('./fonts/Nexa-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Color Variables and Tokens */
:root {
  --color-primary-dark: #013171;
  /* ATC Pantone P 103-16 U */
  --color-primary-blue: #1269A2;
  /* ATC Pantone P 107-6 U */
  --color-accent-blue-1: #2899D5;
  /* ATC Pantone P 109-6 U */
  --color-accent-blue-2: #74C0EB;
  /* ATC Pantone P 112-4 U */
  --color-orange: #EB6815;
  /* ATC Pantone P 27-8 U */
  --color-red: #E85A59;
  /* ATC Pantone P 55-5 U */
  --color-yellow: #FFC400;
  /* ATC Pantone P 7-8 U */
  --color-green: #5FB343;
  /* ATC Pantone P 151-7 U */
  --color-grey: #97999C;
  /* ATC Pantone P 179-6 U */

  --color-bg-main: #f8fafc;
  --color-card-bg: #ffffff;
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-light: #ffffff;
  --color-input-border: #cbd5e1;
  --color-input-focus: #1269A2;

  --font-family-sans: 'Nexa', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-premium: 0 10px 30px -10px rgba(1, 49, 113, 0.1);
  --shadow-focus: 0 0 0 4px rgba(40, 153, 213, 0.25);
}

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

html,
body {
  height: 100%;
  width: 100%;
  font-family: var(--font-family-sans);
  background-color: var(--color-bg-main);
  color: var(--color-text-primary);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* App Container */
.app-container {
  display: flex;
  height: 100vh;
  width: 100vw;
  position: relative;
}

/* Left Brand Panel */
.brand-panel {
  flex: 0 0 40%;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #001f4d 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  color: var(--color-text-light);
  overflow: hidden;
  z-index: 10;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
}

.brand-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./assets/Screenshot 2026-06-26 at 3.22.16 PM.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.brand-logo-container {
  position: relative;
  z-index: 2;
}

.brand-logo {
  height: auto;
  width: 180px;
  max-width: 100%;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.brand-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: auto;
}

.brand-content h1 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff, var(--color-accent-blue-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-content p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.9;
  color: #e2e8f0;
}

.brand-footer {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Floating Geometric Squares (Aesthetic Effect) */
.brand-squares {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.square {
  position: absolute;
  background-color: rgba(116, 192, 235, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  animation: float 20s infinite ease-in-out;
}

.square-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.square-2 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
  background-color: rgba(40, 153, 213, 0.05);
}

.square-3 {
  width: 50px;
  height: 50px;
  top: 50%;
  left: 70%;
  animation-delay: 5s;
}

.square-4 {
  width: 90px;
  height: 90px;
  top: 70%;
  left: 20%;
  animation-delay: 1s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-20px) rotate(90deg) scale(1.05);
  }

  100% {
    transform: translateY(0) rotate(180deg) scale(1);
  }
}

/* Right Form Slider Panel */
.form-panel {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-main);
  overflow: hidden;
}

/* Progress Tracker Bar */
.progress-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #e2e8f0;
  z-index: 20;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--color-primary-blue), var(--color-accent-blue-1));
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.progress-text {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--color-primary-blue);
  z-index: 20;
}

/* Slides Wrapper */
.slides-wrapper {
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
}

/* Base Slide Styles */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.5s ease,
    visibility 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 80px 10%;
  overflow-x: hidden;
  overflow-y: auto;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.slide.exit-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-40px);
}

.slide.exit-down {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
}

/* Slide Content formatting */
.slide-content-card {
  max-width: 680px;
  width: 100%;
  margin: auto;
  position: relative;
}

.question-number {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-primary-blue);
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  line-height: 1.4;
}

.question-number span {
  margin-right: 0;
}

.question-label {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.question-label .required-star {
  color: var(--color-red);
  margin-left: 4px;
}

.question-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

/* Custom Premium Inputs */
.input-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.form-input-text {
  width: 100%;
  font-size: 1.4rem;
  font-family: var(--font-family-sans);
  border: none;
  border-bottom: 2px solid var(--color-input-border);
  background-color: transparent;
  padding: 10px 0;
  color: var(--color-text-primary);
  outline: none;
  transition: var(--transition-smooth);
}

.form-input-text:focus {
  border-bottom-color: var(--color-input-focus);
}

/* Focus bar effect */
.input-focus-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--color-accent-blue-1);
  transition: var(--transition-smooth);
}

.form-input-text:focus~.input-focus-bar {
  width: 100%;
}

.form-textarea {
  width: 100%;
  min-height: 100px;
  font-size: 1.2rem;
  font-family: var(--font-family-sans);
  border: 1px solid var(--color-input-border);
  border-radius: 8px;
  background-color: #ffffff;
  padding: 15px;
  color: var(--color-text-primary);
  outline: none;
  resize: vertical;
  transition: var(--transition-smooth);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-textarea:focus {
  border-color: var(--color-input-focus);
  box-shadow: var(--shadow-focus);
}

/* Multiple Choice Cards */
.choices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 30px;
  width: 100%;
}

.choice-card {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-input-border);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
  position: relative;
  user-select: none;
}

.choice-card:hover {
  border-color: var(--color-primary-blue);
  background-color: rgba(18, 105, 162, 0.02);
  transform: translateY(-1px);
}

.choice-card.selected {
  border-color: var(--color-primary-blue);
  background-color: rgba(18, 105, 162, 0.05);
  box-shadow: 0 4px 12px rgba(18, 105, 162, 0.1);
}

.choice-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-input-border);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--color-text-secondary);
  background-color: var(--color-bg-main);
  margin-right: 15px;
  transition: var(--transition-smooth);
}

.choice-card.selected .choice-letter {
  background-color: var(--color-primary-blue);
  border-color: var(--color-primary-blue);
  color: #ffffff;
}

.choice-label {
  font-size: 1rem;
  font-weight: normal;
  color: var(--color-text-primary);
  line-height: 1.4;
  flex: 1;
}

/* Radio button style helper */
.choice-card input[type="radio"],
.choice-card input[type="checkbox"] {
  display: none;
}

/* Interactive Pill Selection (Verticals/Tags) */
.pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.pill-item {
  padding: 10px 18px;
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid var(--color-input-border);
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  user-select: none;
}

.pill-item:hover {
  border-color: var(--color-primary-blue);
  color: var(--color-primary-blue);
}

.pill-item.active {
  background-color: var(--color-primary-blue);
  border-color: var(--color-primary-blue);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(18, 105, 162, 0.2);
}

/* Dynamic Founders section */
.founders-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}

.founder-card {
  background-color: #ffffff;
  border: 1px solid var(--color-input-border);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  box-shadow: var(--shadow-premium);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.founder-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 10px;
}

.founder-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-primary-blue);
}

.btn-remove-founder {
  background: none;
  border: none;
  color: var(--color-red);
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-family-sans);
  display: flex;
  align-items: center;
}

.btn-remove-founder:hover {
  text-decoration: underline;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 600px) {
  .founder-grid {
    grid-template-columns: 1fr 1fr;
  }

  .founder-grid .full-width {
    grid-column: span 2;
  }
}

.mini-input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mini-label {
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--color-text-secondary);
}

.mini-input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--color-input-border);
  outline: none;
  font-family: var(--font-family-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.mini-input:focus {
  border-color: var(--color-primary-blue);
  box-shadow: var(--shadow-focus);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px dashed var(--color-primary-blue);
  background-color: transparent;
  color: var(--color-primary-blue);
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-family-sans);
}

.btn-secondary:hover {
  background-color: rgba(18, 105, 162, 0.05);
}

/* Button Layout & Navigation Controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-blue);
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(18, 105, 162, 0.25);
  transition: var(--transition-smooth);
  font-family: var(--font-family-sans);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(1, 49, 113, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.keyboard-hint {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  opacity: 0.8;
  margin-left: 10px;
}

.btn-back-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-input-border);
  background-color: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-back-arrow:hover {
  background-color: #ffffff;
  color: var(--color-text-primary);
  border-color: var(--color-text-primary);
}

/* Welcome Page Specifics */
.welcome-slide {
  text-align: center;
}

.welcome-badge {
  display: inline-block;
  background-color: rgba(40, 153, 213, 0.12);
  color: var(--color-primary-dark);
  font-weight: bold;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.welcome-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-primary-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.welcome-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 580px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  font-weight: 300;
}

/* Error States */
.error-msg {
  display: flex;
  align-items: center;
  color: var(--color-red);
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: -15px;
  margin-bottom: 25px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: var(--transition-smooth);
}

.error-msg.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.error-msg svg {
  margin-right: 6px;
}

.shake {
  animation: shake 0.4s ease;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-8px);
  }

  75% {
    transform: translateX(8px);
  }
}

/* Accordion Review Screen */
.review-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  width: 100%;
}

.review-section {
  border: 1px solid var(--color-input-border);
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background-color: rgba(18, 105, 162, 0.02);
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  color: var(--color-primary-dark);
  user-select: none;
  transition: var(--transition-smooth);
}

.review-header:hover {
  background-color: rgba(18, 105, 162, 0.05);
}

.review-body {
  padding: 20px;
  display: none;
  border-top: 1px solid #f1f5f9;
  flex-direction: column;
  gap: 12px;
}

.review-body.open {
  display: flex;
}

.review-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

@media (min-width: 500px) {
  .review-row {
    grid-template-columns: 200px 1fr;
    gap: 15px;
  }
}

.review-label {
  font-weight: bold;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.review-val {
  color: var(--color-text-primary);
  font-size: 0.95rem;
  word-break: break-word;
}

.review-edit-indicator {
  font-size: 0.8rem;
  color: var(--color-accent-blue-1);
  text-decoration: underline;
}

/* Security checkbox & submit layout */
.security-agreement-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: rgba(95, 179, 67, 0.05);
  border: 1px dashed var(--color-green);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.security-agreement-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.security-agreement-box label {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--color-text-secondary);
  cursor: pointer;
}

.security-agreement-box label strong {
  color: var(--color-primary-dark);
}

/* Security Visualizer Overlay */
.security-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 49, 113, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 40px;
  text-align: center;
}

.security-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.cipher-matrix {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--color-accent-blue-2);
  width: 100%;
  max-width: 500px;
  height: 120px;
  overflow: hidden;
  margin: 20px 0;
  opacity: 0.5;
  border: 1px solid rgba(116, 192, 235, 0.2);
  padding: 10px;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: left;
}

.visualizer-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.visualizer-subtitle {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 25px;
}

.shield-icon-container {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--color-green);
  animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
  from {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(95, 179, 67, 0.4));
  }

  to {
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px rgba(95, 179, 67, 0.8));
  }
}

.security-progress {
  width: 100%;
  max-width: 300px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}

.security-progress-fill {
  height: 100%;
  width: 0%;
  background-color: var(--color-green);
  transition: width 0.1s linear;
}

.security-status-text {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--color-accent-blue-2);
}

/* Success slide formatting */
.success-slide {
  text-align: center;
}

.success-check-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(95, 179, 67, 0.1);
  color: var(--color-green);
  font-size: 2.5rem;
  margin: 0 auto 25px auto;
}

.success-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
}

.success-desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 30px auto;
  font-weight: 300;
}

.success-summary-card {
  max-width: 480px;
  width: 100%;
  margin: 0 auto 30px auto;
  background-color: #ffffff;
  border: 1px solid var(--color-input-border);
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: var(--shadow-premium);
}

.success-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

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

.success-label {
  font-weight: bold;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.success-val {
  color: var(--color-text-primary);
  font-weight: bold;
  font-size: 0.9rem;
}

/* Sidebar Toggle for Desktop/Mobile layouts */
@media (max-width: 850px) {
  .app-container {
    flex-direction: column;
  }

  .brand-panel {
    flex: 0 0 auto;
    width: 100%;
    padding: 20px 30px;
    flex-direction: row;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 70px;
  }

  .brand-panel::before {
    background-image: none;
    /* Disable image on mobile header */
  }

  .brand-logo {
    width: 120px;
  }

  .brand-content,
  .brand-footer,
  .brand-squares {
    display: none;
  }

  .form-panel {
    flex: 1;
    height: calc(100vh - 70px);
  }

  .progress-container {
    top: 0;
  }

  .progress-text {
    top: 12px;
    right: 20px;
    font-size: 0.75rem;
  }

  .slide {
    padding: 40px 20px;
  }


  .welcome-title {
    font-size: 2rem;
  }

  .welcome-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .question-label {
    font-size: 1.4rem;
  }

  .form-input-text {
    font-size: 1.15rem;
  }
}

/* Step Tracker Sidebar */
.step-tracker {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  position: relative;
  cursor: default;
}

/* Vertical connector line between dots */
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 26px;
  width: 2px;
  height: calc(100% - 10px);
  background-color: rgba(255, 255, 255, 0.12);
  z-index: 0;
}

.step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

.step-item span {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.35s ease;
  letter-spacing: 0.02em;
}

/* Completed step state */
.step-item.completed .step-dot {
  background-color: var(--color-accent-blue-2);
  border-color: var(--color-accent-blue-2);
}

.step-item.completed .step-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background-color: white;
}

.step-item.completed span {
  color: rgba(255, 255, 255, 0.65);
}

/* Active step state */
.step-item.active-step .step-dot {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(235, 104, 21, 0.3);
  transform: scale(1.15);
}

.step-item.active-step span {
  color: #ffffff;
  font-weight: 700;
}

/* Completed line override */
.step-item.completed::after {
  background-color: rgba(116, 192, 235, 0.35);
}

/* Welcome Stats Strip */
.welcome-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #f1f7fd;
  border: 1px solid #e2edf7;
  border-radius: 12px;
  padding: 18px 30px;
  margin: 0 auto 32px auto;
  max-width: 380px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-primary-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: #dae5ef;
  margin: 0 20px;
}