/* body {
  font-family: 'Inter', 'Segoe UI', Arial, system-ui, sans-serif;
  background: linear-gradient(to bottom, #7dbbe6 0%, #b2d8f7 100%);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: #222;
} */

.welcome-card {
  background: rgba(255,255,255,0.10);
  border-radius: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  margin-top: 32px;
  padding: 36px 18px 32px 18px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sun-icon {
  font-size: 72px;
  margin-bottom: 18px;
}
.welcome-title {
  font-size: 2em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}
.welcome-desc {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 28px;
  color: #f8f9fa;
}
.start-btn {
  background: #ffe066;
  color: #222;
  border: none;
  border-radius: 32px;
  padding: 18px 0;
  font-size: 1.2em;
  font-weight: 600;
  width: 80%;
  margin: 0 auto 18px auto;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s;
  display: block;
}
.start-btn:hover {
  background: #ffe799;
}
.welcome-footer {
  font-size: 0.9em;
  color: #e0e0e0;
  margin-top: 24px;
  text-align: center;
}






.next-btn, .continue-btn {
  background: #ffe066;
  color: #222;
  border: none;
  border-radius: 32px;
  padding: 14px 0;
  font-size: 1.1em;
  font-weight: 600;
  width: 180px;
  margin: 32px auto 0 auto;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, opacity 0.2s;
  display: block;
  opacity: 1;
}
.next-btn:disabled, .continue-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#summary, #strengths, #opportunities {
  margin: 18px 0;
  font-size: 1.1em;
  text-align: center;
}

canvas#radarChart {
  margin: 0 auto 18px auto;
  display: block;
  background: rgba(255,255,255,0.10);
  border-radius: 18px;
}

.welcome-card.with-bg {
  background: url('../design/welcome') center center/cover no-repeat;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-content {
  background: rgba(255,255,255,0.85);
  border-radius: 28px;
  padding: 36px 18px 32px 18px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.welcome-figma {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
  background: none;
  padding: 0 12px;
}
.sun-figma {
  font-size: 110px;
  margin-bottom: 32px;
  margin-top: 32px;
  line-height: 1;
}
.welcome-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.1;
}
.welcome-desc {
  font-size: 1.15em;
  color: #cfe6f7;
  text-align: center;
  margin-bottom: 38px;
  font-weight: 400;
}
.start-btn {
  background: #ffe066;
  color: #222;
  border: none;
  border-radius: 32px;
  padding: 18px 0;
  font-size: 1.25em;
  font-weight: 600;
  width: 220px;
  margin: 0 auto 32px auto;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s;
  display: block;
}
.start-btn:hover {
  background: #ffe799;
}
.welcome-footer {
  font-size: 1.1em;
  color: #cfe6f7;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 400;
}
.welcome-links {
  font-size: 1em;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 18px;
}
.welcome-links a {
  color: #e0e0e0;
  text-decoration: underline;
  margin: 0 2px;
}

.email-figma {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  width: 100vw;
  padding-top: 48px;
}
.email-question {
  font-size: 1.5em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 38px;
  line-height: 1.2;
}
.email-input {
  width: 340px;
  max-width: 90vw;
  padding: 22px 18px;
  border-radius: 28px;
  border: none;
  font-size: 1.15em;
  margin-bottom: 32px;
  box-sizing: border-box;
  background: #fff;
  color: #222;
  font-weight: 400;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  outline: none;
  transition: border 0.2s;
}
.email-input:focus {
  border: 2px solid #ffe066;
}
.email-note {
  font-size: 1.1em;
  color: #cfe6f7;
  text-align: center;
  margin-bottom: 120px;
  font-weight: 400;
}





/* Results screen styles for pretty gauge and bars */

.results-gauge {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.gauge-canvas-container {
  position: relative;
  width: 310px;
  height: 160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gauge-canvas-container canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.gauge-score {
  position: relative;
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  z-index: 5;
  /* margin-top: 18px; */
}

.gauge-label {
  position: relative;
  font-size: 1em;
  color: #666;
  text-align: center;
  z-index: 5;
}

.category-label {
  color: #fff;
  font-size: 1.15em;
  font-weight: 600;
  margin-bottom: 2px;
}
.category-score {
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 4px;
}
.category-bar-bg {
  width: 100%;
  height: 10px;
  background: #b2d8f7;
  border-radius: 8px;
  margin-bottom: 8px;
  margin-top: 2px;
  overflow: hidden;
}
.category-bar {
  height: 100%;
  background: #fff;
  border-radius: 8px;
  transition: width 0.5s;
}
.continue-btn, .next-btn {
  background: #ffe066;
  color: #222;
  border: none;
  border-radius: 32px;
  padding: 20px 0;
  font-size: 1.2em;
  font-weight: 600;
  width: 90%;
  max-width: 340px;
  margin: 36px auto 0 auto;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, opacity 0.2s;
  display: block;
  opacity: 1;
}
.continue-btn:disabled, .next-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}





.special-offer-container {
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px 120px 12px;
}
.special-offer-title {
  color: #fff;
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  margin-top: 48px;
  margin-bottom: 18px;
  line-height: 1.1;
}
.special-offer-desc {
  color: #cfe6f7;
  font-size: 1.15em;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 400;
}
.special-offer-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 32px 18px 24px 18px;
  width: 100%;
  max-width: 370px;
  margin-bottom: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.special-offer-badge {
  position: absolute;
  top: -18px;
  right: 18px;
  background: #3BFF95;
  color: #fff;
  font-size: 1em;
  font-weight: 600;
  border-radius: 18px;
  padding: 6px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2;
}
.special-offer-main {
  font-size: 1.5em;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 12px;
  margin-top: 12px;
  line-height: 1.1;
}
.special-offer-sub {
  color: #6a7a8c;
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 18px;
}
.special-offer-sub .strike {
  text-decoration: line-through;
  color: #b2d8f7;
  font-weight: 400;
}
.special-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #222;
  font-size: 1.1em;
  text-align: left;
}
.special-offer-list li {
  margin-bottom: 10px;
  padding-left: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.special-offer-note {
  color: #cfe6f7;
  font-size: 1.1em;
  text-align: center;
  margin-top: 18px;
  margin-bottom: 32px;
  font-weight: 400;
}
.special-offer-btn {
  background: #ffe066;
  color: #222;
  border: none;
  border-radius: 40px;
  padding: 22px 0;
  font-size: 1.15em;
  font-weight: 600;
  width: 90vw;
  max-width: 340px;
  margin: 0 auto;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s;
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 32px;
  z-index: 10;
}

.thankyou-container {
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px 120px 12px;
}
.confetti-svg {
  margin-top: 48px;
  margin-bottom: 18px;
  width: 120px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thankyou-title {
  color: #fff;
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.1;
}
.thankyou-desc {
  color: #cfe6f7;
  font-size: 1.15em;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 400;
}
.thankyou-note {
  color: #cfe6f7;
  font-size: 1.1em;
  text-align: center;
  margin-top: 18px;
  margin-bottom: 32px;
  font-weight: 400;
}
.thankyou-btn {
  background: #ffe066;
  color: #222;
  border: none;
  border-radius: 40px;
  padding: 22px 0;
  font-size: 1.15em;
  font-weight: 600;
  width: 90vw;
  max-width: 340px;
  margin: 0 auto;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s;
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 32px;
  z-index: 10;
}

/* Results specific styles */
.results-gauge svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}


/* Special offer specific styles */
.special-offer-badge {
  background: #4CD964;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  position: absolute;
  top: -15px;
  right: -15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.special-offer-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #555;
  font-size: 16px;
}

/* Thank you page specific styles */
.confetti-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
} 

