@import url('immersive-ui.css');

.lp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 243, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lp-logo {
  font-family: var(--lp-font-serif);
  font-size: 20px;
  color: var(--lp-navy);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.lp-logo span {
  color: var(--lp-gold);
}

.lp-nav-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--lp-gray);
}

.lp-nav-links a {
  text-decoration: none;
  color: inherit;
  transition: color var(--lp-transition);
}

.lp-nav-links a:hover {
  color: var(--lp-navy);
}

.lp-progress {
  height: 3px;
  background: var(--lp-border-light);
  border-radius: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}

.lp-progress-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--lp-gold);
  transition: width 0.5s ease;
}

.lp-voice-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.lp-voice-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lp-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-voice-wave {
  height: 3px;
  width: 80px;
  background: var(--lp-border-light);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.lp-voice-wave-fill {
  height: 100%;
  background: var(--lp-gold);
  border-radius: 2px;
  animation: lp-wave 2s ease-in-out infinite;
}

@keyframes lp-wave {
  0%,
  100% {
    width: 30%;
  }
  50% {
    width: 80%;
  }
}

.lp-voice-label {
  font-size: 11px;
  color: var(--lp-gray-lighter);
}

.lp-q-title {
  font-family: var(--lp-font-serif);
  font-size: 22px;
  color: var(--lp-navy);
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 400;
}

.lp-q-desc {
  font-size: 15px;
  color: var(--lp-gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.lp-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  font-size: 17px;
  font-family: var(--lp-font-sans);
  color: var(--lp-navy);
  background: var(--lp-warm-bg);
  outline: none;
  transition: border-color var(--lp-transition);
}

.lp-input:focus {
  border-color: var(--lp-gold);
}

.lp-input::placeholder {
  color: var(--lp-gray-lighter);
}

.lp-input-year {
  max-width: 180px;
  text-align: center;
  font-family: var(--lp-font-serif);
  font-size: 24px;
  letter-spacing: 2px;
}

.lp-option {
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-md);
  padding: 16px 18px;
  margin-bottom: 10px;
  background: var(--lp-warm-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--lp-transition);
  -webkit-tap-highlight-color: transparent;
}

.lp-option:hover {
  border-color: var(--lp-gold);
  background: var(--lp-gold-light);
}

.lp-option.selected {
  border-color: var(--lp-gold);
  background: var(--lp-gold-light);
}

.lp-option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--lp-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--lp-transition);
}

.lp-option.selected .lp-option-radio {
  border-color: var(--lp-gold);
}

.lp-option-radio-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lp-gold);
  transform: scale(0);
  transition: transform 0.2s ease;
}

.lp-option.selected .lp-option-radio-inner {
  transform: scale(1);
}

.lp-option-label {
  font-size: 16px;
  color: var(--lp-navy);
  line-height: 1.4;
}

.lp-btn-primary {
  display: inline-block;
  background: var(--lp-gold);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--lp-font-sans);
  padding: 16px 36px;
  border-radius: var(--lp-radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--lp-transition), transform 0.1s;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
  min-height: 52px;
}

.lp-btn-primary:hover {
  background: var(--lp-gold-hover);
}

.lp-btn-primary:active {
  transform: scale(0.98);
}

.lp-btn-primary-full {
  display: block;
  width: 100%;
  background: var(--lp-gold);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--lp-font-sans);
  padding: 18px;
  border-radius: var(--lp-radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--lp-transition), transform 0.1s;
  text-align: center;
  min-height: 56px;
}

.lp-btn-primary-full:hover {
  background: var(--lp-gold-hover);
}

.lp-btn-primary-full:active {
  transform: scale(0.98);
}

.lp-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--lp-navy);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--lp-radius-sm);
  border: 1px solid var(--lp-navy);
  cursor: pointer;
  transition: all var(--lp-transition);
}

.lp-feedback {
  background: var(--lp-navy);
  border-radius: var(--lp-radius-lg);
  padding: 28px 24px;
  margin-top: 24px;
}

.lp-feedback-personal {
  font-family: var(--lp-font-serif);
  font-size: 17px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 14px;
}

.lp-feedback-text {
  font-size: 14px;
  color: #B0BCC8;
  line-height: 1.7;
}

.lp-feedback-text strong {
  color: #fff;
}

.lp-feedback-emphasis {
  font-size: 14px;
  color: var(--lp-gold);
  font-style: italic;
  margin-top: 14px;
}

.lp-feedback-data {
  font-size: 12px;
  color: var(--lp-blue);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--lp-border-dark);
}

.lp-feedback-number {
  font-family: var(--lp-font-serif);
  font-size: 56px;
  color: var(--lp-gold);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}

.lp-feedback-number-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lp-blue);
  text-align: center;
  margin-bottom: 16px;
}

.lp-timeline {
  position: relative;
  height: 64px;
  margin: 20px 0 12px;
}

.lp-timeline-line {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lp-border-dark);
}

.lp-timeline-dot {
  position: absolute;
  top: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--lp-gold);
  border: 3px solid var(--lp-navy);
}

.lp-timeline-dot-now {
  position: absolute;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lp-blue);
  border: 2px solid var(--lp-navy);
}

.lp-timeline-label {
  position: absolute;
  top: 40px;
  font-size: 11px;
  color: var(--lp-gray-light);
  transform: translateX(-50%);
}

.lp-screen {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 0;
  background: var(--lp-warm-white);
}

.lp-screen.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 2;
}

.lp-screen:not(.active) {
  z-index: 0;
}

.lp-screen:not(.active) * {
  pointer-events: none !important;
}
