/* INTRO SCREEN */
.intro-logo {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 8px;
}
.intro-logo span { color: var(--gold); }

.intro-sub {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 32px;
}

.intro-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 12px;
}

.intro-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 40px;
}

/* QUESTION CARD */
.q-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}

.q-number {
  font-family: 'Fraunces', serif;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 8px;
}

.q-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* OPTIONS */
.options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--white);
}

.option:hover {
  border-color: var(--navy);
  background: #f0f4f8;
}

.option.selected {
  border-color: var(--navy);
  background: #eaf0f7;
}

.option-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.15s;
  position: relative;
}

.option.selected .option-dot {
  border-color: var(--navy);
  background: var(--navy);
}

.option.selected .option-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.option-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--mid);
}

.option.selected .option-text {
  color: var(--dark);
  font-weight: 500;
}

/* FREE TEXT */
.free-text-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 6px;
  margin-top: 4px;
}

.free-text, .open-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--mid);
  resize: vertical;
  background: var(--soft);
  outline: none;
  transition: border-color 0.15s;
}

.free-text:focus, .open-textarea:focus { 
  border-color: var(--navy); 
  background: var(--white); 
}

.free-text::placeholder, .open-textarea::placeholder { 
  color: var(--muted); 
  font-style: italic; 
}

/* OPEN CARD */
.open-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}

.open-q {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.55;
  margin-bottom: 16px;
}

.open-textarea {
  min-height: 100px;
  line-height: 1.6;
}

/* BUTTONS */
.btn-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 13px 32px;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover { 
  background: var(--dark); 
  transform: translateY(-1px); 
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-secondary:hover { 
  border-color: var(--navy); 
  color: var(--navy); 
}

/* REVEAL SCREEN */
.reveal-header {
  background: var(--dark);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
  border-left: 4px solid var(--gold);
}

.reveal-subtitle {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
}

.reveal-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--white);
  font-weight: 300;
  line-height: 1.4;
}

.reveal-quote {
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  line-height: 1.6;
}

.reveal-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 16px;
}

.reveal-block-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.reveal-block-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.reveal-block-body {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--mid);
}

.reveal-block-body p { margin-bottom: 8px; }
.reveal-block-body p:last-child { margin-bottom: 0; }

/* GAINS TABLE */
.gains-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.gains-table th {
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}

.gains-table th:first-child { border-radius: 6px 0 0 0; }
.gains-table th:last-child { border-radius: 0 6px 0 0; }

.gains-table td {
  padding: 9px 14px;
  font-size: 12.5px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}

.gains-table tr:nth-child(even) td { background: var(--soft); }
.gains-table tr:last-child td { border-bottom: none; }

.gains-col-who {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  width: 130px;
}

/* CLOSE LINE */
.close-line {
  background: var(--gold-lt);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--dark);
  font-style: italic;
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
}

.footer-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 36px;
  font-style: italic;
}