:root {
  --navy: #000000;
  --navy-deep: #000000;
  --brass: #a6813f;
  --brass-light: #c9a868;
  --paper: #faf7f0;
  --paper-dim: #f1ece0;
  --charcoal: #26241f;
  --slate: #8c8c82;
  --line: #ded7c6;
  --white: #fff;
  --error: #a23b2e;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body { font-family: Inter, sans-serif; background: var(--paper-dim); color: var(--charcoal); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.auth-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at 50% 8%, #1c3566, transparent 55%), linear-gradient(180deg, var(--navy), var(--navy-deep) 55%, #060a13); }
.login-card { width: min(100%, 400px); text-align: center; color: var(--paper); }
.login-logo-wrap { width: 100%; margin: 0 auto 26px; display: grid; place-items: center; }
.login-logo { display: block; width: min(100%, 590px); height: auto; object-fit: contain; }
.login-badge { width: 132px; height: 132px; margin: 0 auto -20px; position: relative; display: grid; place-items: center; z-index: 1; }
.login-badge::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: repeating-conic-gradient(from -90deg, rgba(201,168,104,.55) 0 2.2deg, transparent 2.2deg 9deg); mask: radial-gradient(circle, #000 40%, #000 62%, transparent 80%); }
.login-badge span { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid var(--brass-light); border-radius: 50%; background: var(--navy-deep); color: var(--brass-light); font-size: 24px; z-index: 1; }
.login-plate { border: 1px solid var(--brass-light); background: var(--navy-deep); padding: 26px 34px 18px; }
.login-plate h1 { margin: 0 0 6px; color: var(--brass-light); font: 500 27px 'Source Serif 4', serif; letter-spacing: 2.5px; }
.login-plate p { margin: 0; color: rgba(250,247,240,.55); font-size: 11px; letter-spacing: 2px; }
.login-title { margin: 26px 0; color: var(--brass-light); font-weight: 600; font-size: 21px; }
.login-form { display: grid; gap: 14px; }
.login-field { width: 100%; padding: 15px 22px; border: 1px solid rgba(255,255,255,.18); border-radius: 30px; background: rgba(255,255,255,.1); color: var(--paper); }
.login-field::placeholder { color: rgba(255,255,255,.55); }
.login-field:focus { outline: none; border-color: var(--brass-light); background: rgba(255,255,255,.14); }
.login-btn, .submit-btn { border: 0; border-radius: 3px; padding: 14px 20px; background: var(--navy); color: var(--paper); font-weight: 600; }
.login-btn { margin-top: 10px; border-radius: 30px; background: linear-gradient(var(--brass-light), var(--brass)); color: var(--navy-deep); }
.login-error, .error-text { display: none; color: #e7a48f; font-size: 12px; }
.login-error.show, .field.invalid .error-text { display: block; }
.login-foot { margin-top: 22px; color: rgba(250,247,240,.45); font-size: 12px; line-height: 1.6; }
.login-foot a { color: var(--brass-light); }
.shake { animation: shake .4s ease; }
@keyframes shake { 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.review-page { min-height: 100vh; display: grid; place-items: center; padding: 32px 20px; }
.frame { width: min(100%, 1040px); min-height: 620px; display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; background: var(--paper); border-radius: 4px; box-shadow: 0 30px 60px -25px rgba(14,22,38,.35); }
.brand { position: relative; padding: 56px 44px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(165deg, var(--navy), var(--navy-deep)); color: var(--paper); }
.brand::after { content: ''; position: absolute; inset: 18px; border: 1px solid rgba(201,168,104,.7); box-shadow: 0 0 0 3px var(--navy-deep), 0 0 0 4px rgba(201,168,104,.7), 0 0 0 7px var(--navy-deep), 0 0 0 8px rgba(201,168,104,.7); pointer-events: none; }
.brand-mark { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.brand-logo { display: block; width: 350px; height: 210px; }
.brand-mark small { display: block; color: var(--brass-light); font-size: 22px; }
.brand-mid { margin: 18px 0; text-align: justify; }
.brand h1, .panel h2, .success h2 { font: 500 34px/1.28 'Source Serif 4', serif; }
.brand h1 { max-width: 350px; margin: 0 0 10px; }
.brand p, .brand-foot { color: rgba(250,247,240,.68); line-height: 1.65; }
.brand-foot { border-top: 1px solid rgba(201,168,104,.25); padding-top: 22px; font-size: 13px; text-align:justify ; }
.brand-foot strong { display: block; margin-bottom: 6px; color: var(--brass-light); font-size: 12px; text-align: center; }
.panel { padding: 56px 52px; }
.stepper { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; color: var(--slate); font-size: 12px; }
.step-dot { display: flex; align-items: center; gap: 8px; }
.step-dot .num { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); }
.step-dot.active .num, .step-dot.done .num { border-color: var(--navy); background: var(--navy); color: var(--paper); }
.step-dot.done .num { border-color: var(--brass); background: var(--brass); }
.step-line { width: 28px; height: 1px; background: var(--line); }
.panel h2 { margin: 0 0 8px; color: var(--navy); font-size: 26px; }
.panel-head p { margin: 0 0 34px; color: var(--slate); font-size: 14px; }
form, .stack { display: grid; gap: 24px; }
.row2, .row3 { display: grid; gap: 18px; }
.row2 { grid-template-columns: 1fr 1fr; }
.row3 { grid-template-columns: repeat(3, 1fr); }
.field label { display: block; margin-bottom: 9px; font-size: 13px; font-weight: 600; }
.hint { color: var(--slate); font-size: 12px; font-weight: 400; }
.field input, textarea, select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 3px; background: var(--white); color: var(--charcoal); }
input:focus, textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(166,129,63,.15); }
textarea { min-height: 96px; resize: vertical; line-height: 1.55; }
.field.invalid input, .field.invalid textarea { border-color: var(--error); }
.other-service { display: none; }
.other-service.show { display: block; }
.pill-group { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { padding: 8px 15px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); font-size: 13px; cursor: pointer; }
.pill.selected { border-color: var(--navy); background: var(--navy); color: var(--paper); }
.stars-row, .stars { display: flex; align-items: center; gap: 6px; }
.star-btn { padding: 2px; border: 0; background: none; }
.star-btn svg { width: 30px; height: 30px; }
.rating-label, .char-count, .rec-hint { color: var(--slate); font-size: 12px; }
.char-count { margin-top: 6px; text-align: right; }
.consent { display: flex; gap: 10px; color: var(--slate); font-size: 13px; line-height: 1.5; }
.consent input { width: 15px; accent-color: var(--navy); }
#pageTwo, .success { display: none; }
#pageTwo.show, .success.show { display: block; }
.step-nav { display: flex; gap: 12px; }
.back-btn { padding: 14px 22px; border: 1px solid var(--line); border-radius: 3px; background: var(--white); }
.step-nav .submit-btn { flex: 1; }
.skip-link { margin-top: 4px; border: 0; background: none; color: var(--slate); text-decoration: underline; font-size: 12px; }
.recorder-box { display: flex; align-items: center; gap: 16px; padding: 20px; border: 1px solid var(--line); background: var(--white); }
.rec-btn { width: 46px; height: 46px; flex: 0 0 auto; border: 0; border-radius: 50%; background: var(--navy); color: var(--paper); }
.rec-btn.recording { background: var(--error); }
.rec-status { flex: 1; }.rec-status-title { font-weight: 600; font-size: 13px; }.rec-status-sub { color: var(--slate); font-size: 12px; }
.rec-waveform { display: flex; gap: 3px; height: 22px; align-items: center; }.rec-waveform .bar { width: 3px; height: 6px; background: var(--brass); }
.rec-player { display: none; flex: 1; }.rec-player.show { display: block; }.rec-player audio { width: 100%; }.rec-clear { display: none; padding: 7px 12px; border: 1px solid var(--line); border-radius: 20px; background: none; color: var(--slate); }.rec-clear.show { display: inline-block; }
.dropzone { padding: 28px 20px; border: 1.5px dashed var(--line); background: var(--white); text-align: center; cursor: pointer; }.dropzone.drag { border-color: var(--brass); }.dropzone input { display: none; }.dropzone-title { font-weight: 600; font-size: 13px; }.dropzone-sub { color: var(--slate); font-size: 12px; }.thumb-grid { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }.thumb { position: relative; width: 72px; height: 72px; overflow: hidden; border: 1px solid var(--line); }.thumb img { width: 100%; height: 100%; object-fit: cover; }.thumb .remove { position: absolute; top: 3px; right: 3px; border: 0; border-radius: 50%; background: rgba(14,22,38,.75); color: var(--paper); }
.success { height: 100%; padding-top: 120px; }.success-mark { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--paper); }.success h2 { font-size: 24px; }.success p { max-width: 340px; color: var(--slate); line-height: 1.6; }.success-summary { border-top: 1px solid var(--line); padding-top: 18px; font-size: 13px; }.stars-mini svg { width: 16px; height: 16px; }.home-btn { display: inline-block; margin-top: 28px; padding: 13px 20px; border-radius: 3px; background: var(--navy); color: var(--paper); font-size: 13px; font-weight: 600; text-decoration: none; }.home-btn:hover { background: var(--brass); }
@media (max-width: 760px) { .frame { grid-template-columns: 1fr; }.brand { padding: 40px 32px; }.brand-mid { margin: 32px 0; }.panel { padding: 40px 30px; } }
@media (max-width: 600px) { .review-page { padding: 0; }.row2, .row3 { grid-template-columns: 1fr; }.login-plate { padding-inline: 24px; }.panel { padding-inline: 24px; } }




/* &nbsp; – Non-breaking space (adds 1 standard space).&ensp; – En space (adds 2 spaces).&emsp; – Em space (adds 4 spaces—great for indenting) */