* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Work Sans', system-ui, sans-serif;
  background: #faf7f2;
  color: #1f2937;
}
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 16px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header {
  width: 100%;
  max-width: 640px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.header h1 {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #0f766e;
  margin: 0;
}
.screen { width: 100%; display: flex; flex-direction: column; align-items: center; }
.screen[hidden] { display: none; }

.tabs {
  width: 100%;
  max-width: 640px;
  display: flex;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 20px;
}
.tab-btn {
  flex: 1;
  padding: 12px 8px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #6b7280;
  font-family: inherit;
}
.tab-btn.active { color: #0f766e; border-bottom-color: #0f766e; }

.card {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 24px;
}
.tab-panel[hidden] { display: none; }
.tab-panel p { margin: 0 0 10px; font-size: 14px; line-height: 1.7; color: #374151; }
.tab-panel ol { margin: 0; padding-left: 20px; font-size: 14px; line-height: 1.9; color: #374151; }
.benefits-title { font-family: 'Baloo 2', system-ui, sans-serif; font-size: 15px; font-weight: 700; margin: 0 0 8px; color: #111827; }

.field-group {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: #374151; }
.field input, .field select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
}
.field .hint { font-size: 11px; color: #9ca3af; }

.amount { font-family: 'Baloo 2', system-ui, sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 20px; text-align: center; }
.amount .sub { font-size: 14px; font-weight: 500; color: #6b7280; }

.primary-btn {
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  background: #0f766e;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}
.primary-btn:disabled { background: #d1d5db; cursor: not-allowed; }
.primary-btn:not(:disabled):hover { background: #0b5c54; }

.privacy-note {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  line-height: 1.6;
}

.error-banner {
  width: 100%;
  max-width: 640px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
}
.error-banner[hidden] { display: none; }

.center-card { text-align: center; margin-top: 40px; padding: 36px 26px; }
.status-line { display: flex; align-items: center; justify-content: center; gap: 6px; color: #059669; font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.center-card h2 { font-family: 'Baloo 2', system-ui, sans-serif; font-size: 19px; margin: 0 0 8px; }
.center-card .desc { font-size: 13px; color: #6b7280; margin-bottom: 22px; }

.practice-top {
  width: 100%;
  max-width: 720px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.practice-top h2 { font-family: 'Baloo 2', system-ui, sans-serif; font-size: 18px; margin: 0; }
.timer {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #111827;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.timer.low { background: #b45309; }

.sample-note { width: 100%; max-width: 720px; font-size: 11px; color: #9ca3af; margin-bottom: 14px; }

.q-list, .a-list { list-style: none; margin: 0; padding: 0; }
.q-list li { padding: 10px 0; border-bottom: 1px solid #f3f4f6; font-size: 15px; }
.q-list li .num { font-weight: 600; color: #0f766e; }

.a-list li { padding: 10px 0; border-bottom: 1px solid #f3f4f6; }
.a-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.a-row .num { font-weight: 600; }
.reveal-btn { font-size: 12px; font-weight: 600; color: #0f766e; background: none; border: none; cursor: pointer; white-space: nowrap; font-family: inherit; }
.solution { margin-top: 8px; padding: 12px 14px; background: #f9fafb; border-radius: 10px; font-size: 13px; color: #374151; line-height: 1.7; }
.solution[hidden] { display: none; }
.solution div { margin-bottom: 2px; }

.section-title { font-weight: 700; margin-bottom: 14px; font-size: 14px; }
