/* ===== APP SHARED ===== */
.hidden { display: none !important; }

/* ===== APP LAYOUT ===== */
.app-main {
  min-height: 100vh;
  padding: 7rem 1.5rem 4rem;
  background: var(--bg-deep);
}

.app-container {
  max-width: 640px;
  margin: 0 auto;
}

.app-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.app-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--text-primary);
  margin: 0.5rem 0;
  line-height: 1.2;
}

.app-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.section-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ===== FORM ===== */
.birth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.form-input {
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-dim);
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== RADIO CARDS ===== */
.radio-group {
  display: flex;
  gap: 0.75rem;
}

.radio-card {
  flex: 1;
  cursor: pointer;
}

.radio-card input {
  display: none;
}

.radio-card .radio-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  line-height: 1.4;
}

.radio-card .radio-label small {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.radio-card input:checked + .radio-label {
  border-color: var(--gold);
  background: var(--gold-glow);
}

.radio-card:hover .radio-label {
  border-color: var(--gold-dim);
}

/* ===== BUTTONS ===== */
.btn-primary {
  padding: 1rem 2rem;
  background: var(--gold);
  color: #07090f;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  margin-top: 0.5rem;
}

.btn-primary:hover { opacity: 0.9; }
.btn-primary:active { transform: scale(0.98); }

.btn-ghost {
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

/* ===== PAYMENT CARD ===== */
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.payment-preview {
  text-align: center;
}

.payment-glyph {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.payment-reading-type {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.payment-includes {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.payment-divider {
  height: 1px;
  background: var(--border);
}

.payment-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.payment-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.payment-crypto-logos {
  display: flex;
  gap: 0.5rem;
}

.crypto-badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.payment-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.helio-container {
  min-height: 60px;
}

/* ===== READING RESULT ===== */
.reading-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.reading-card-header {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.04));
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
}

.reading-system-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.reading-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.reading-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reading-body {
  padding: 2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.reading-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 0.5rem;
}

.reading-body h3:first-child { margin-top: 0; }

.reading-body p {
  margin-bottom: 1rem;
}

.reading-body ul {
  margin: 0.5rem 0 1rem 1.25rem;
}

.reading-body li {
  margin-bottom: 0.35rem;
}

.reading-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
}

.reading-loading {
  text-align: center;
  padding: 3rem;
}

.loading-glyph {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  animation: pulse 2s ease-in-out infinite;
  margin-bottom: 1rem;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.reading-error {
  background: rgba(255,80,80,0.06);
  border: 1px solid rgba(255,80,80,0.2);
  border-radius: 12px;
  padding: 1.5rem;
  color: #ff6b6b;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .radio-group { flex-direction: column; }
  .payment-price-row { flex-direction: column; align-items: flex-start; }
}