:root {
  --bg: #000000;
  --panel-bg: #0d0d10;
  --field-bg: #e8e8e8;
  --red: #d31414;
  --white: #ffffff;
  --muted: #9a9a9a;
  --border: #2a2a2e;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.page {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 100vh;
}

@media (max-width: 860px) {
  .page { grid-template-columns: 1fr; }
}

/* LEFT COPY PANEL */
.copy-panel {
  padding: 48px 40px;
}

.brand { margin-bottom: 32px; }
.brand-name {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
}
.brand-sub {
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: lowercase;
}

.copy-panel h1 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.subhead {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.step-block { margin-bottom: 28px; opacity: 0.35; transition: opacity .2s ease; }
.step-block.current { opacity: 1; }
.step-label {
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
}
.step-block h2 {
  font-size: 15px;
  text-transform: uppercase;
  margin: 6px 0;
}
.step-block p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* RIGHT FORM PANEL */
.form-panel {
  background: var(--panel-bg);
  padding: 40px 48px;
  border-left: 1px solid var(--border);
}

.progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.progress-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.progress-dot.active { background: var(--red); color: var(--white); }
.progress-line { width: 32px; height: 2px; background: var(--border); }

.form-errors {
  background: #3a0d0d;
  border: 1px solid var(--red);
  color: #ffb3b3;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 16px;
}

.step { display: none; }
.step.active { display: block; }

.row { display: flex; gap: 16px; }
.row .field { flex: 1; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.field label.radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  color: var(--white);
  margin-right: 20px;
  font-size: 13px;
}
.field small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 4px;
}

input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], input[type="number"], select, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 3px;
  border: none;
  background: var(--field-bg);
  color: #111;
  font-size: 14px;
}
textarea { min-height: 70px; resize: vertical; }
select[multiple] { min-height: 110px; }

.tip-input { width: 100px; }

hr { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.section-note {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 16px;
}

.rush-banner {
  background: #3a0d0d;
  border-left: 4px solid var(--red);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.summary-table { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.summary-table td { padding: 8px 4px; border-bottom: 1px solid var(--border); font-size: 14px; }
.summary-table td:last-child { text-align: right; }
.summary-table .total-row td { font-weight: 800; font-size: 16px; border-bottom: none; }
.tax-note { font-size: 11px; color: var(--muted); margin-bottom: 20px; }

.payment-fields { margin: 16px 0; }
.hosted-field-mount {
  background: var(--field-bg);
  border-radius: 3px;
  min-height: 40px;
  padding: 10px 12px;
  color: #888;
  font-size: 13px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.btn {
  background: #d9d9d9;
  color: #111;
  border: none;
  padding: 10px 28px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.btn:hover { background: var(--white); }
.btn.secondary { background: transparent; color: var(--muted); border: 1px solid var(--border); }

/* Rush fee popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.modal-box {
  background: var(--panel-bg);
  border: 1px solid var(--red);
  border-radius: 6px;
  padding: 28px;
  max-width: 380px;
  text-align: center;
}
.modal-box h3 { margin-top: 0; color: var(--red); font-size: 16px; }
.modal-box p { color: var(--white); font-size: 14px; line-height: 1.5; }
.modal-box .btn { margin-top: 12px; }

.modal-overlay[hidden] {
  display: none;
}
