:root {
  --aip-navy-blue: #2d3648;
  --aip-mustard: #fdc35e;
  --aip-white: #ffffff;
  --aip-burnt-orange: #cc633e;
  --aip-cream: #e6dec8;
  --aip-light-orange: rgba(204, 99, 62, 0.1);
  --font-main: 'Inter', sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: var(--aip-navy-blue);
  background-image: url('https://cdn.prod.website-files.com/67ab2a95777a506d08092426/67ab777a6f79338ef70272cb_Stars.png');
  background-repeat: repeat;
  background-size: auto;
  color: var(--aip-white);
  margin: 0;
  padding: 2rem;
}

h1 {
  color: var(--aip-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.quiz-container {
  background-color: var(--aip-white);
  color: var(--aip-navy-blue);
  padding: 0;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  min-height: 600px;
  box-shadow: 0 4px 6px rgba(45, 54, 72, 0.1);
  position: relative;
  overflow: hidden;
}

.question-page {
  display: none;
  padding: 2rem;
  box-sizing: border-box;
  width: 100%;
  min-height: 100%;
  overflow-y: auto;
}

.question-page.active {
  display: block;
  animation: slideInRight 0.4s ease-out;
}


.question-page.slide-out-left {
  animation: slideOutLeft 0.4s ease-in;
}

.question-page.slide-out-right {
  animation: slideOutRight 0.4s ease-in;
}

@keyframes slideInRight {
  from { 
    transform: translateX(100%);
    opacity: 0;
  }
  to { 
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from { 
    transform: translateX(-100%);
    opacity: 0;
  }
  to { 
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutLeft {
  from { 
    transform: translateX(0);
    opacity: 1;
  }
  to { 
    transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes slideOutRight {
  from { 
    transform: translateX(0);
    opacity: 1;
  }
  to { 
    transform: translateX(100%);
    opacity: 0;
  }
}

.question {
  min-height: auto;
}

.question-content {
  text-align: center;
}

.question h2 {
  color: var(--aip-burnt-orange);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
  line-height: 1.4;
  min-height: 4rem;
}

#persona-title {
  min-height: auto;
}

.likert-scale {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem 0;
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--aip-burnt-orange);
}

label {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0.75rem 0.5rem;
  background-color: var(--aip-cream);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.85rem;
  border: 1px solid var(--aip-mustard);
  transform: scale(1);
}

label:hover {
  background-color: var(--aip-mustard);
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(253, 195, 94, 0.3);
}

label:has(input:checked) {
  background-color: var(--aip-burnt-orange);
  color: var(--aip-white);
  border-color: var(--aip-burnt-orange);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(204, 99, 62, 0.4);
}

label input[type="radio"] {
  margin-bottom: 0.5rem;
  transform: scale(1.2);
  accent-color: var(--aip-burnt-orange);
}

label input[type="radio"]:checked {
  animation: radio-pulse 0.3s ease;
}

@keyframes radio-pulse {
  0% { transform: scale(1.2); }
  50% { transform: scale(1.6); }
  100% { transform: scale(1.2); }
}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 2rem;
}

.progress {
  color: var(--aip-burnt-orange);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.progress-bar-container {
  width: 200px;
  height: 6px;
  background-color: var(--aip-cream);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--aip-mustard), var(--aip-burnt-orange));
  border-radius: 3px;
  transition: width 0.5s ease;
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: progress-shine 2s ease-in-out infinite;
}

@keyframes progress-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

button {
  background-color: var(--aip-burnt-orange);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: var(--aip-white);
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  transform: scale(1);
  box-shadow: 0 2px 4px rgba(204, 99, 62, 0.2);
}

button:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(204, 99, 62, 0.3);
  background-color: #d4714a;
}

button:active:not(:disabled) {
  transform: scale(0.98);
  transition: all 0.1s ease;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: scale(1);
  box-shadow: none;
}

button.secondary {
  background-color: transparent;
  color: var(--aip-navy-blue);
  border: 2px solid var(--aip-navy-blue);
  box-shadow: 0 2px 4px rgba(45, 54, 72, 0.1);
}

button.secondary:hover:not(:disabled) {
  background-color: var(--aip-navy-blue);
  color: var(--aip-white);
  box-shadow: 0 4px 8px rgba(45, 54, 72, 0.2);
}

.result {
  margin: 2rem 0;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: var(--aip-burnt-orange);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.result.show {
  opacity: 1;
  transform: translateY(0);
  animation: result-bounce 0.6s ease;
}

@keyframes result-bounce {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

#restart-btn {
  display: block;
  margin: 2rem auto 0;
  background-color: var(--aip-mustard);
  color: var(--aip-navy-blue);
}

.explainer {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--aip-burnt-orange);
  font-style: italic;
  text-align: left;
}

.explainer a {
  color: var(--aip-navy-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--aip-navy-blue);
  transition: all 0.3s ease;
  font-weight: 600;
}

.explainer a:hover {
  color: var(--aip-burnt-orange);
  border-bottom-color: var(--aip-burnt-orange);
  background-color: rgba(45, 54, 72, 0.05);
  padding: 0 2px;
  border-radius: 2px;
}

.logo {
  text-align: center;
  margin-bottom: 2rem;
}

.logo img {
  max-width: 600px;
  height: auto;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  .logo img {
    max-width: 300px;
  }

  .quiz-container {
    margin: 0;
    min-height: auto;
    overflow: visible;
  }

  .question-page {
    padding: 1.5rem;
  }

  .question h2 {
    font-size: 1.3rem;
    min-height: auto;
    margin-bottom: 1.5rem;
  }

  .likert-scale {
    flex-direction: column;
    gap: 0.75rem;
  }

  .scale-labels {
    display: none;
  }

  label {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem;
    text-align: left;
    font-size: 0.9rem;
  }

  label input[type="radio"] {
    margin-bottom: 0;
    margin-right: 0.75rem;
    transform: scale(1.3);
  }

  .explainer {
    font-size: 0.85rem;
    margin-top: 1rem;
  }

  .navigation {
    padding-top: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .progress {
    align-items: center;
    text-align: center;
  }

  .progress-bar-container {
    width: 100%;
  }

  .navigation > div:last-child {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
  }

  button {
    padding: 1rem;
    font-size: 1rem;
  }

  .prev-btn, .next-btn {
    flex: 1;
    max-width: 120px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: 5px;
    text-align: center;
  }

  .submit-btn {
    width: 100%;
    padding: 1rem;
  }

  .score-counter {
    font-size: 2.5rem;
  }

  .result {
    font-size: 1.5rem;
  }

  .results-layout {
    flex-direction: column;
    gap: 1.5rem;
  }

  .persona-image-container {
    max-width: 100%;
    text-align: center;
  }

  .persona-image {
    width: 100%;
    max-width: 250px;
    height: auto;
  }

  .persona-content h2 {
    text-align: center;
  }

  .conference-promo {
    padding: 1rem;
    margin: 1.5rem 0;
  }

  .conference-promo h3 {
    font-size: 1.1rem;
  }

  .discount-code {
    font-size: 1.3rem;
    padding: 0.75rem 1.5rem;
  }

  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .ai-spectrum {
    padding: 1rem;
    margin: 1.5rem 0;
  }

  .spectrum-container {
    height: 30px;
  }

  .spectrum-indicator {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }

  .welcome-content h1 {
    font-size: 2rem;
  }

  .welcome-arrow {
    font-size: 1.1rem;
  }

  .start-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }

  .share-box {
    padding: 1rem;
    margin: 1.5rem 0;
  }

  .share-content {
    flex-direction: column;
    gap: 1rem;
  }

  .share-preview-img {
    max-width: 150px;
  }

  .download-image-btn, .share-linkedin {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }

  .global-footer {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-width: 250px;
  }

  .quiz-container {
    margin: 0;
    min-height: auto;
    overflow: visible;
  }

  .question-page {
    padding: 1rem;
  }

  .question h2 {
    font-size: 1.2rem;
  }

  label {
    font-size: 0.85rem;
    padding: 0.875rem;
  }

  .explainer {
    font-size: 0.8rem;
  }

  .prev-btn, .next-btn {
    max-width: 100px;
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }

  .score-counter {
    font-size: 2rem;
  }

  .result {
    font-size: 1.3rem;
  }

  .persona-image {
    width: 100%;
    max-width: 200px;
    height: auto;
  }

  .share-box {
    padding: 1rem;
  }

  .share-preview-img {
    max-width: 120px;
  }

  .share-text textarea {
    min-height: 100px;
    font-size: 0.7rem;
  }

  .download-image-btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
  
  .share-steps {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .share-step {
    justify-content: center;
  }
  
  .download-image-btn, .copy-text-btn, .share-linkedin {
    flex: 1;
    max-width: 200px;
  }

  .conference-promo {
    padding: 0.75rem;
  }

  .discount-code {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
  }

  .cta-button {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  .ai-spectrum {
    padding: 0.75rem;
  }

  .spectrum-container {
    height: 25px;
  }

  .spectrum-indicator {
    width: 35px;
    height: 35px;
    font-size: 0.7rem;
  }

  .welcome-content h1 {
    font-size: 1.8rem;
  }

  .welcome-content {
    padding: 1.5rem 0.75rem;
  }

  .start-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .global-footer {
    padding: 1rem;
  }

  .global-footer p {
    font-size: 0.8rem;
  }
}

/* Confetti Animation */
.confetti {
  position: absolute;
  width: 12px;
  height: 6px;
  background: var(--aip-mustard);
  pointer-events: none;
  border-radius: 2px;
}

.confetti.rectangle {
  width: 8px;
  height: 12px;
  background: var(--aip-burnt-orange);
}

.confetti.square {
  width: 8px;
  height: 8px;
  background: var(--aip-navy-blue);
  border-radius: 1px;
}

.confetti.triangle {
  width: 0;
  height: 0;
  background: transparent;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 8px solid var(--aip-cream);
  border-radius: 0;
}

@keyframes confetti-burst {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
    scale: 1;
  }
  50% {
    opacity: 1;
    scale: 1.1;
  }
  100% {
    opacity: 0;
    scale: 0.8;
  }
}

.score-counter {
  font-size: 3rem;
  font-weight: bold;
  color: var(--aip-burnt-orange);
  text-align: center;
  margin: 2rem 0;
}

.results-celebration {
  background: var(--aip-white);
}

.results-celebration .question {
  color: var(--aip-navy-blue);
}

/* Loading screen styles */
.loading-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--aip-white);
  padding: 3rem 2rem;
  height: 100%;
}

.loading-screen.active {
  display: flex;
}

.loading-text {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: var(--aip-mustard);
}

.cogs-container {
  display: flex;
  gap: 1.5rem;
  margin: 3rem 0;
  flex: 1;
  align-items: center;
}

.cog {
  width: 60px;
  height: 60px;
  border: 4px solid var(--aip-burnt-orange);
  border-radius: 50%;
  position: relative;
  animation: spin 2s linear infinite;
}

.cog::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 16px;
  background: var(--aip-burnt-orange);
}

.cog::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 16px;
  background: var(--aip-burnt-orange);
}

.cog:nth-child(2) {
  animation-direction: reverse;
  animation-duration: 1.5s;
}

.cog:nth-child(3) {
  animation-duration: 2.5s;
}

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

.results-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin: 1rem 0;
}

.persona-image-container {
  flex: 0 0 auto;
  max-width: 300px;
}

.persona-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  background-color: transparent;
  display: block;
}

.persona-content {
  flex: 1;
  min-width: 0;
}

.persona-content h2 {
  text-align: left;
  margin-top: 0;
}


.persona-explanation {
  margin: 1.5rem 0;
  color: var(--aip-navy-blue);
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
  font-style: italic;
}

/* AI Spectrum Slider */
.ai-spectrum {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(230, 222, 200, 0.1);
  border-radius: 10px;
  border: 1px solid var(--aip-cream);
}

.spectrum-title {
  text-align: center;
  color: var(--aip-navy-blue);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.spectrum-container {
  position: relative;
  height: 30px;
  background: linear-gradient(90deg, #dc3545 0%, #ffc107 50%, #28a745 100%);
  border-radius: 15px;
  margin: 0.5rem 0;
}

.spectrum-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--aip-navy-blue);
}

.spectrum-indicator {
  position: absolute;
  top: -10px;
  width: 50px;
  height: 50px;
  background: var(--aip-white);
  border: 3px solid var(--aip-mustard);
  border-radius: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--aip-navy-blue);
  font-size: 0.8rem;
  transition: left 0.8s ease-out;
}

.conference-promo {
  background: var(--aip-burnt-orange);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  margin: 2rem 0;
  text-align: center;
}

.conference-promo h3 {
  color: var(--aip-white);
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
}

.conference-promo p {
  margin: 0.5rem 0;
  color: var(--aip-white);
  font-size: 0.9rem;
}

.event-details {
  font-weight: 600;
  font-size: 1rem;
  color: var(--aip-white) !important;
}

.discount-section {
  background: rgba(253, 195, 94, 0.3);
  border-radius: 10px;
  padding: 1.25rem;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.discount-label {
  color: var(--aip-navy-blue);
  font-size: 0.9rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.discount-code {
  background: var(--aip-mustard);
  color: var(--aip-navy-blue);
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: inline-block;
  margin: 0.25rem 0;
  cursor: pointer;
  user-select: all;
  transition: all 0.3s ease;
  border: 2px solid var(--aip-white);
}

.discount-code:hover {
  background: var(--aip-white);
  transform: scale(1.02);
}

.discount-amount {
  color: var(--aip-navy-blue);
  font-weight: 600;
  font-size: 1rem;
  margin: 0.5rem 0 0 0;
}

.cta-button {
  display: block;
  background: var(--aip-mustard);
  color: var(--aip-navy-blue);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  margin: 1rem auto;
  max-width: 350px;
  transition: all 0.3s ease;
  transform: scale(1);
  border: 2px solid var(--aip-white);
}

.cta-button:hover {
  background: var(--aip-white);
  color: var(--aip-navy-blue);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.share-box {
  background: var(--aip-light-orange);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.share-box h3 {
  color: var(--aip-navy-blue);
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.share-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin: 1rem 0;
}

.share-preview {
  flex: 0 0 auto;
  text-align: center;
}

.share-steps {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
  align-items: center;
}

.share-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-number {
  font-weight: bold;
  color: var(--aip-navy-blue);
  font-size: 1.1rem;
}

.copy-text-btn {
  background: var(--aip-mustard);
  color: var(--aip-navy-blue);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.copy-text-btn:hover {
  background: var(--aip-white);
  transform: scale(1.05);
}

.share-linkedin {
  background: #0077b5;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.share-linkedin:hover {
  background: #005885;
  transform: scale(1.05);
}

.share-preview-img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  border: 2px solid var(--aip-mustard);
  margin-bottom: 1rem;
}

.share-text {
  flex: 1;
  min-width: 0;
}

.share-text label {
  display: block;
  color: var(--aip-navy-blue);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.share-text textarea {
  width: 100%;
  min-height: 120px;
  padding: 0.75rem;
  border: 2px solid var(--aip-cream);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--aip-navy-blue);
  background-color: var(--aip-white);
  resize: vertical;
  cursor: pointer;
  margin-bottom: 0;
  box-sizing: border-box;
}

.share-text textarea:hover {
  border-color: var(--aip-mustard);
}

.share-text textarea:focus {
  outline: none;
  border-color: var(--aip-burnt-orange);
  box-shadow: 0 0 0 2px rgba(204, 99, 62, 0.2);
}

.download-image-btn {
  background: var(--aip-mustard);
  color: var(--aip-navy-blue);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.download-image-btn:hover {
  background: var(--aip-white);
  transform: scale(1.05);
}

.share-buttons {
  text-align: center;
  margin-top: 1rem;
}

.share-linkedin {
  background: #0077b5;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.share-linkedin:hover {
  background: #005885;
  transform: scale(1.05);
}

/* Welcome Page Styles */
.welcome-content {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.welcome-content h1 {
  color: var(--aip-burnt-orange);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.welcome-intro {
  font-size: 1.1rem;
  color: var(--aip-navy-blue);
  margin: 0.75rem 0;
  line-height: 1.5;
}

.welcome-highlight {
  background: rgba(253, 195, 94, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.welcome-arrow {
  font-size: 1.3rem;
  color: var(--aip-navy-blue);
  margin: 0;
  font-weight: 600;
}

.welcome-benefits {
  background: var(--aip-light-orange);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
}

.welcome-benefits p {
  color: var(--aip-navy-blue);
  font-weight: 600;
  margin: 0 0 1rem 0;
  text-align: center;
}

.welcome-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.welcome-benefits li {
  color: var(--aip-navy-blue);
  padding: 0.5rem 0;
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.welcome-benefits li::before {
  content: '✓';
  color: var(--aip-burnt-orange);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.welcome-tagline {
  font-style: italic;
  color: var(--aip-burnt-orange);
  font-size: 1.1rem;
  margin: 2rem 0;
}

.start-button {
  background: var(--aip-burnt-orange);
  color: var(--aip-white);
  border: none;
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.start-button:hover {
  background: #d4714a;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(204, 99, 62, 0.3);
}

/* Global Footer */
.global-footer {
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
  color: var(--aip-white);
}

.global-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.global-footer a {
  color: var(--aip-mustard);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.global-footer a:hover {
  color: var(--aip-white);
  text-decoration: underline;
}