@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    color-scheme: dark;
    --gold: #c9a84c;
    --gold-dim: #a07830;
    --gold-glow: rgba(201, 168, 76, .12);
    --purple: #8b5cf6;
    --purple-dim: #6d28d9;
    --purple-glow: rgba(139, 92, 246, .12);
    --background: #0a0c10;
    --bg: var(--background);
    --surface: #0f1118;
    --surface2: #141720;
    --text: #e8e4dc;
    --text-dim: #8a8580;
    --text-muted: #4a4640;
    --muted: #9b9690;
    --border: rgba(201, 168, 76, .2);
    --border-subtle: rgba(255, 255, 255, .06);
    --gold-border: rgba(201, 168, 76, .2);
    --red-soft: rgba(180, 70, 70, .1);
    --red-border: rgba(180, 70, 70, .25);
    --red-text: #c08080;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

html {
    min-height: 100%;
    background: var(--background);
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family: var(--font-body);
}

*, *::before, *::after {
    box-sizing: border-box;
}

.site-navbar {
    width: 100%;
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(201, 168, 76, .16);
    background: var(--background);
}

.site-navbar__brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-navbar__logo {
    display: block;
    width: auto;
    height: 180px;
    object-fit: contain;
}

@media (max-width: 520px) {
    .site-navbar {
        min-height: 108px;
        padding-block: 6px;
    }

    .site-navbar__logo {
        width: auto;
        height: 150px;
    }
}

.analysis-page .tips-title--spaced {
    margin-top: 16px;
}

.analysis-page .upload-zone--spaced {
    margin-top: 20px;
}

.analysis-page .privacy-note {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 12px;
}

.analysis-page .optional-label {
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
}

.analysis-page .field-input-spaced {
    margin-bottom: 8px;
}

.analysis-page .checkout-options {
    margin-top: 28px;
}

.analysis-page .price-option {
    margin-bottom: 12px;
    padding: 20px;
    border-radius: 2px;
}

.analysis-page .price-option--gold {
    border: 1px solid var(--gold-border);
    background: var(--gold-glow);
}

.analysis-page .price-option--purple {
    border: 1px solid rgba(155, 89, 182, .3);
    background: var(--surface);
}

.page-voice.analysis-page .price-option--purple {
    background: var(--purple-glow);
}

.analysis-page .price-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.analysis-page .price-details {
    flex: 1;
}

.analysis-page .price-label {
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.analysis-page .price-option--purple .price-label {
    color: var(--purple);
}

.analysis-page .price-desc {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.7;
}

.analysis-page .price-amount {
    margin-left: 20px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 24px;
    white-space: nowrap;
}

.analysis-page .btn-compact {
    margin-top: 4px;
}

.analysis-page .btn-back {
    margin-top: 16px;
}

.analysis-page .btn-purple {
    background: #7d3c98;
}

.analysis-page .card--centred,
.analysis-page .card--centred-spaced {
    text-align: center;
}

.analysis-page .card--centred-spaced {
    margin-top: 16px;
}

.page-handwriting .vote-card {
    margin-bottom: 28px;
    padding: 32px 24px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface);
    text-align: center;
}

.page-handwriting .vote-eyebrow {
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.page-handwriting .vote-title {
    margin-bottom: 8px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 20px;
}

.page-handwriting .vote-description {
    margin-bottom: 28px;
    color: var(--text-dim);
    font-size: 13px;
}

.page-handwriting .vote-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-handwriting .vote-btn {
    padding: 14px 20px;
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    background: var(--surface);
    color: var(--text-dim);
    font-family: var(--font-body);
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.page-handwriting .vote-btn--featured {
    border-color: var(--border);
    background: var(--gold-glow);
    color: var(--text);
}

/* index.php */
body.page-home {
color-scheme: dark; font-family: Inter, system-ui, sans-serif;
}
body.page-home * {
box-sizing: border-box;
}
body.page-home {
margin: 0; min-height: 100vh; background: #0a0c10; color: #e8e4dc;
}
body.page-home main {
width: min(680px, calc(100% - 40px)); margin: clamp(48px, 10vh, 100px) auto;
}
body.page-home p {
color: #9b9690; line-height: 1.65;
}
body.page-home nav {
display: grid; gap: 12px; margin-top: 28px;
}
body.page-home main a {
padding: 18px 20px; border: 1px solid rgba(201,168,76,.3); color: #e8e4dc; text-decoration: none; background: #0f1118;
}
body.page-home main a:hover {
border-color: #c9a84c;
}

/* access.php */
body.page-access {
color-scheme: dark;
            --gold: #c9a84c;
            --background: #0a0c10;
            --surface: #0f1118;
            --text: #e8e4dc;
            --muted: #9b9690;
            --border: rgba(201, 168, 76, .25);
}
body.page-access * {
box-sizing: border-box;
}
body.page-access {
min-height: 100vh;
            margin: 0;
            background: var(--background);
            color: var(--text);
            font-family: Inter, sans-serif;
}
body.page-access main {
width: min(460px, calc(100% - 40px));
            margin: clamp(48px, 10vh, 100px) auto;
            padding: clamp(28px, 6vw, 48px);
            background: var(--surface);
            border: 1px solid var(--border);
}
body.page-access .eyebrow {
color: var(--gold);
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
}
body.page-access h1 {
margin: 10px 0 12px;
            font-family: "Playfair Display", serif;
            font-size: 32px;
}
body.page-access p {
margin: 0 0 24px; color: var(--muted); line-height: 1.7;
}
body.page-access label {
display: block;
            margin-bottom: 8px;
            color: var(--muted);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
}
body.page-access input {
width: 100%;
            padding: 14px 16px;
            border: 1px solid rgba(255,255,255,.12);
            background: #141720;
            color: var(--text);
            font: inherit;
            outline: none;
}
body.page-access input:focus {
border-color: var(--gold);
}
body.page-access button {
width: 100%;
            margin-top: 14px;
            padding: 14px 20px;
            border: 0;
            background: var(--gold);
            color: #0a0c10;
            font: 600 12px Inter, sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
}
body.page-access .error {
margin: 0 0 16px;
            padding: 12px 14px;
            border: 1px solid rgba(192,80,80,.35);
            background: rgba(192,80,80,.1);
            color: #d59a9a;
            font-size: 13px;
}

/* find-your-handbrake.php */
body.page-handwriting *,
body.page-handwriting *::before,
body.page-handwriting *::after {
box-sizing: border-box; margin: 0; padding: 0;
}
body.page-handwriting {
--gold: #c9a84c;
    --gold-dim: #a07830;
    --gold-glow: rgba(201,168,76,0.12);
    --bg: #0a0c10;
    --surface: #0f1118;
    --surface2: #141720;
    --border: rgba(201,168,76,0.15);
    --border-subtle: rgba(255,255,255,0.06);
    --text: #e8e4dc;
    --text-dim: #8a8580;
    --text-muted: #4a4640;
    --red-soft: rgba(180,70,70,0.1);
    --red-border: rgba(180,70,70,0.25);
    --red-text: #c08080;
}
html,
body.page-handwriting {
min-height: 100vh; background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.6;
}
body.page-handwriting .wrap {
max-width: 680px; margin: 0 auto; padding: 0 20px 60px;
}
body.page-handwriting .header {
padding: 36px 0 28px; border-bottom: 1px solid var(--border); margin-bottom: 40px;
}
body.page-handwriting .header-label {
font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
body.page-handwriting .header-title {
font-family: 'Playfair Display', serif; font-size: clamp(26px,5vw,36px); font-weight: 600; color: var(--text); line-height: 1.2; margin-bottom: 10px;
}
body.page-handwriting .header-sub {
font-size: 13px; color: var(--text-dim); font-weight: 300;
}
body.page-handwriting .steps {
display: flex; gap: 4px; margin-bottom: 36px;
}
body.page-handwriting .step {
flex: 1; height: 2px; background: var(--surface2); transition: background 0.4s;
}
body.page-handwriting .step.active {
background: var(--gold);
}
body.page-handwriting .step.done {
background: var(--gold-dim);
}
body.page-handwriting .panel {
display: none;
}
body.page-handwriting .panel.visible {
display: block;
}
body.page-handwriting .upload-zone {
border: 1px dashed var(--border); border-radius: 2px; padding: 48px 24px; text-align: center; cursor: pointer; transition: border-color 0.3s, background 0.3s; background: var(--surface); position: relative;
}
body.page-handwriting .upload-zone:hover,
body.page-handwriting .upload-zone.dragover {
border-color: var(--gold); background: var(--gold-glow);
}
body.page-handwriting .upload-zone input[type=file] {
position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
body.page-handwriting .upload-icon {
width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--gold); font-size: 20px;
}
body.page-handwriting .upload-title {
font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 6px;
}
body.page-handwriting .upload-hint {
font-size: 12px; color: var(--text-dim); line-height: 1.6;
}
body.page-handwriting .preview-wrap {
margin-top: 20px; display: none;
}
body.page-handwriting .preview-wrap img {
width: 100%; max-height: 280px; object-fit: contain; border: 1px solid var(--border); border-radius: 2px; background: var(--surface2);
}
body.page-handwriting .preview-name {
margin-top: 10px; font-size: 12px; color: var(--text-dim); text-align: center;
}
body.page-handwriting .tips {
margin-top: 20px; padding: 16px 20px; background: var(--surface); border: 1px solid var(--border-subtle); border-radius: 2px;
}
body.page-handwriting .tips-title {
font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px;
}
body.page-handwriting .tips-list {
list-style: none; font-size: 12px; color: var(--text-dim); line-height: 2;
}
body.page-handwriting .tips-list li::before {
content: '—'; color: var(--gold-dim); margin-right: 8px;
}
body.page-handwriting .tease-intro {
margin-bottom: 28px; padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 2px;
}
body.page-handwriting .tease-intro-label {
font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
body.page-handwriting .tease-intro-text {
font-size: 14px; color: var(--text-dim); line-height: 1.9;
}
body.page-handwriting .tease-signal {
margin-bottom: 24px; padding: 24px; background: var(--gold-glow); border: 1px solid var(--border); border-radius: 2px;
}
body.page-handwriting .tease-signal-label {
font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
body.page-handwriting .tease-signal-text {
font-family: 'Playfair Display', serif; font-size: 18px; color: var(--text); line-height: 1.6;
}
body.page-handwriting .locked-sections {
margin-bottom: 24px;
}
body.page-handwriting .locked-section {
margin-bottom: 12px; padding: 20px 24px; background: var(--surface); border: 1px solid var(--border-subtle); border-radius: 2px; position: relative; overflow: hidden;
}
body.page-handwriting .locked-label {
font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
body.page-handwriting .locked-question {
font-family: 'Playfair Display', serif; font-size: 16px; color: var(--text-muted); margin-bottom: 12px;
}
body.page-handwriting .locked-preview {
font-size: 13px; color: var(--text-dim); line-height: 1.8; min-height: 24px;
}
body.page-handwriting .locked-badge {
display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 8px 16px; background: var(--surface2); border: 1px solid var(--border); border-radius: 2px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
}
body.page-handwriting .tease-cta {
padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 2px; text-align: center; margin-bottom: 4px;
}
body.page-handwriting .tease-cta-label {
font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
body.page-handwriting .tease-cta-text {
font-size: 14px; color: var(--text-dim); line-height: 1.8; margin-bottom: 18px;
}
body.page-handwriting .gate-intro {
margin-bottom: 28px;
}
body.page-handwriting .gate-intro p {
font-size: 14px; color: var(--text-dim); margin-bottom: 12px;
}
body.page-handwriting .gate-intro strong {
color: var(--text); font-weight: 500;
}
body.page-handwriting .field {
margin-bottom: 16px;
}
body.page-handwriting .field label {
display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
body.page-handwriting .field input {
width: 100%; background: var(--surface); border: 1px solid var(--border-subtle); border-radius: 2px; padding: 13px 16px; color: var(--text); font-family: 'Inter', sans-serif; font-size: 14px; outline: none; transition: border-color 0.3s;
}
body.page-handwriting .field input:focus {
border-color: var(--gold);
}
body.page-handwriting .field input::placeholder {
color: var(--text-muted);
}
body.page-handwriting .field-note {
font-size: 11px; color: var(--text-muted); margin-top: 6px; line-height: 1.6;
}
body.page-handwriting .btn {
width: 100%; padding: 15px 24px; border: none; border-radius: 2px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; margin-top: 8px;
}
body.page-handwriting .btn-primary {
background: var(--gold); color: #0a0c10;
}
body.page-handwriting .btn-primary:hover:not(:disabled) {
background: #dbb95a;
}
body.page-handwriting .btn-primary:disabled {
opacity: 0.35; cursor: not-allowed;
}
body.page-handwriting .btn-ghost {
background: transparent; color: var(--text-dim); border: 1px solid var(--border-subtle); margin-top: 12px;
}
body.page-handwriting .btn-ghost:hover {
border-color: var(--border); color: var(--text);
}
body.page-handwriting .loading-wrap {
text-align: center; padding: 60px 20px;
}
body.page-handwriting .spinner {
width: 44px; height: 44px; border: 2px solid var(--surface2); border-top-color: var(--gold); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 24px;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
body.page-handwriting .loading-title {
font-family: 'Playfair Display', serif; font-size: 20px; color: var(--text); margin-bottom: 8px;
}
body.page-handwriting .loading-sub {
font-size: 12px; color: var(--text-dim); letter-spacing: 1px;
}
body.page-handwriting .loading-phases {
margin-top: 28px; display: flex; flex-direction: column; gap: 8px;
}
body.page-handwriting .phase {
font-size: 11px; color: var(--text-muted); transition: color 0.5s;
}
body.page-handwriting .phase.active {
color: var(--gold);
}
body.page-handwriting .phase.done {
color: var(--text-dim);
}
body.page-handwriting .report-header {
margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
body.page-handwriting .report-eyebrow {
font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
body.page-handwriting .report-name {
font-family: 'Playfair Display', serif; font-size: clamp(22px,4vw,30px); color: var(--text); margin-bottom: 6px;
}
body.page-handwriting .report-date {
font-size: 12px; color: var(--text-muted);
}
body.page-handwriting .section {
margin-bottom: 28px; padding: 28px 24px; background: var(--surface); border: 1px solid var(--border-subtle); border-radius: 2px;
}
body.page-handwriting .section-number {
font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
body.page-handwriting .section-question {
font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold); margin-bottom: 16px; line-height: 1.3;
}
body.page-handwriting .section-body {
font-size: 14px; color: var(--text-dim); line-height: 1.9;
}
body.page-handwriting .section-body p {
margin-bottom: 14px;
}
body.page-handwriting .section-body p:last-child {
margin-bottom: 0;
}
body.page-handwriting .handbrake {
margin-bottom: 28px; padding: 28px 24px; background: var(--gold-glow); border: 1px solid var(--border); border-radius: 2px;
}
body.page-handwriting .handbrake-label {
font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
body.page-handwriting .handbrake-text {
font-family: 'Playfair Display', serif; font-size: 19px; color: var(--text); line-height: 1.55;
}
body.page-handwriting .cta-block {
padding: 32px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 2px; text-align: center;
}
body.page-handwriting .cta-label {
font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
body.page-handwriting .cta-signal {
font-family: 'Playfair Display', serif; font-size: 16px; color: var(--text); line-height: 1.5; margin-bottom: 14px; font-style: italic;
}
body.page-handwriting .cta-text {
font-size: 14px; color: var(--text-dim); line-height: 1.9; margin-bottom: 18px;
}
body.page-handwriting .cta-closer {
font-size: 14px; font-weight: 600; color: var(--gold); margin-bottom: 24px;
}
body.page-handwriting .cta-link {
display: inline-block; padding: 15px 32px; background: var(--gold); color: #0a0c10; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.3s;
}
body.page-handwriting .cta-link:hover {
background: #dbb95a;
}
body.page-handwriting .error-box {
display: none; margin-top: 16px; padding: 18px 20px; background: var(--red-soft); border: 1px solid var(--red-border); border-radius: 2px;
}
body.page-handwriting .error-label {
font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--red-text); margin-bottom: 8px;
}
body.page-handwriting .error-msg {
font-size: 13px; color: var(--text-dim); line-height: 1.6; margin-bottom: 10px;
}
body.page-handwriting .error-tips {
font-size: 12px; color: var(--text-muted); line-height: 1.8;
}
body.page-handwriting .verify-wrap {
text-align: center; padding: 60px 20px;
}
body.page-handwriting .verify-icon {
font-size: 48px; margin-bottom: 20px;
}
body.page-handwriting .verify-title {
font-family: 'Playfair Display', serif; font-size: 24px; color: var(--text); margin-bottom: 12px;
}
body.page-handwriting .verify-text {
font-size: 14px; color: var(--text-dim); line-height: 1.8; max-width: 400px; margin: 0 auto;
}
body.page-handwriting .disclaimer {
margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border-subtle); font-size: 11px; color: var(--text-muted); line-height: 1.7;
}
body.page-handwriting .mt-20 {
margin-top: 20px;
}
@media (max-width: 480px) {
body.page-handwriting .section,
body.page-handwriting .handbrake,
body.page-handwriting .cta-block,
body.page-handwriting .tease-signal,
body.page-handwriting .tease-intro {
padding: 20px 16px;
}
}

/* find-your-voice.php */
body.page-voice *,
body.page-voice *::before,
body.page-voice *::after {
box-sizing: border-box; margin: 0; padding: 0;
}
body.page-voice {
--purple: #8b5cf6; --purple-dim: #6d28d9; --purple-glow: rgba(139,92,246,0.12);
    --gold: #c9a84c; --gold-glow: rgba(201,168,76,0.12);
    --bg: #0a0c10; --surface: #0f1118; --surface2: #141720;
    --border: rgba(139,92,246,0.2); --border-subtle: rgba(255,255,255,0.06);
    --text: #e8e4dc; --text-dim: #8a8580; --text-muted: #4a4640;
    --teal: #00b4a0; --teal-glow: rgba(0,180,160,0.1); --teal-border: rgba(0,180,160,0.2);
    --gold-border: rgba(201,168,76,0.2);
    --rec: #ef4444;
}
html,
body.page-voice {
min-height:100vh; background:var(--bg); color:var(--text); font-family:'Inter',sans-serif; font-size:15px; line-height:1.6;
}
body.page-voice .wrap {
max-width:520px; margin:0 auto; padding:0 20px 80px;
}
body.page-voice .header {
padding:32px 0 24px; border-bottom:1px solid var(--border); margin-bottom:36px; text-align:center;
}
body.page-voice .header-label {
font-size:10px; letter-spacing:4px; text-transform:uppercase; color:var(--purple); margin-bottom:10px;
}
body.page-voice .header-title {
font-family:'Playfair Display',serif; font-size:clamp(24px,5vw,32px); font-weight:600; color:var(--text); line-height:1.2; margin-bottom:8px;
}
body.page-voice .header-sub {
font-size:13px; color:var(--text-dim);
}
body.page-voice .steps {
display:flex; gap:4px; margin-bottom:32px;
}
body.page-voice .step {
flex:1; height:2px; background:var(--surface2); border-radius:1px; transition:background 0.4s;
}
body.page-voice .step.done {
background:var(--purple-dim);
}
body.page-voice .step.active {
background:var(--purple);
}
body.page-voice .panel {
display:none; animation:fadeIn 0.3s ease;
}
body.page-voice .panel.active {
display:block;
}
@keyframes fadeIn {
from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); }
}
body.page-voice .card {
padding:24px; background:var(--surface); border:1px solid var(--border-subtle); border-radius:2px; margin-bottom:16px;
}
body.page-voice .card-label {
font-size:10px; letter-spacing:4px; text-transform:uppercase; color:var(--purple); margin-bottom:10px;
}
body.page-voice .card-title {
font-family:'Playfair Display',serif; font-size:18px; color:var(--text); margin-bottom:12px; line-height:1.3;
}
body.page-voice .card-body {
font-size:14px; color:var(--text-dim); line-height:1.9;
}
body.page-voice .card-body p {
margin-bottom:10px;
}
body.page-voice .card-body p:last-child {
margin-bottom:0;
}
body.page-voice .tips {
padding:20px 24px; background:var(--purple-glow); border:1px solid var(--border); border-radius:2px; margin-bottom:16px;
}
body.page-voice .tips-title {
font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--purple); margin-bottom:10px;
}
body.page-voice .tips-list {
list-style:none; padding:0;
}
body.page-voice .tips-list li {
font-size:13px; color:var(--text-dim); line-height:1.8; padding-left:20px; position:relative; margin-bottom:6px;
}
body.page-voice .tips-list li::before {
content:'—'; position:absolute; left:0; color:var(--purple);
}
body.page-voice .consent-block {
padding:16px; background:var(--surface2); border:1px solid var(--border-subtle); border-radius:2px; margin-bottom:16px;
}
body.page-voice .consent-check {
display:flex; align-items:flex-start; gap:12px; cursor:pointer;
}
body.page-voice .consent-check input[type="checkbox"] {
margin-top:3px; width:16px; height:16px; accent-color:var(--purple); flex-shrink:0; cursor:pointer;
}
body.page-voice .consent-text {
font-size:12px; color:var(--text-muted); line-height:1.7;
}
body.page-voice .consent-text a {
color:var(--purple); text-decoration:none;
}
body.page-voice .record-area {
text-align:center; padding:40px 20px;
}
body.page-voice .record-btn {
width:100px; height:100px; border-radius:50%; border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; transition:all 0.3s; position:relative;
}
body.page-voice .record-btn.idle {
background:var(--purple-glow); border:2px solid var(--border);
}
body.page-voice .record-btn.idle:hover {
background:rgba(139,92,246,0.2); border-color:var(--purple);
}
body.page-voice .record-btn.recording {
background:rgba(239,68,68,0.15); border:2px solid var(--rec); animation:pulse 1.5s infinite;
}
@keyframes pulse {
0%,100% { box-shadow:0 0 0 0 rgba(239,68,68,0.4); } 50% { box-shadow:0 0 0 16px rgba(239,68,68,0); }
}
body.page-voice .record-icon {
font-size:36px;
}
body.page-voice .record-label {
font-size:12px; letter-spacing:2px; text-transform:uppercase; color:var(--text-muted); margin-bottom:8px;
}
body.page-voice .record-status {
font-family:'Playfair Display',serif; font-size:18px; color:var(--text); min-height:28px;
}
body.page-voice .record-timer {
font-size:13px; color:var(--text-dim); margin-top:6px; min-height:20px; font-variant-numeric:tabular-nums;
}
body.page-voice .waveform-wrap {
margin:20px 0;
}
body.page-voice canvas#waveform {
width:100%; height:60px; border-radius:2px; background:var(--surface2);
}
body.page-voice .stop-btn {
display:none; width:100%; padding:14px 24px; background:var(--rec); color:white; border:none; border-radius:2px; font-family:'Inter',sans-serif; font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; cursor:pointer; margin-top:16px;
}
body.page-voice .stop-btn.visible {
display:block;
}
body.page-voice .tease-signal {
padding:24px; background:var(--purple-glow); border:1px solid var(--border); border-radius:2px; margin-bottom:16px;
}
body.page-voice .tease-signal-label {
font-size:10px; letter-spacing:4px; text-transform:uppercase; color:var(--purple); margin-bottom:10px;
}
body.page-voice .tease-signal-text {
font-family:'Playfair Display',serif; font-size:18px; color:var(--text); line-height:1.6;
}
body.page-voice .locked {
padding:20px 24px; background:var(--surface); border:1px solid var(--border-subtle); border-radius:2px; margin-bottom:10px; position:relative; overflow:hidden;
}
body.page-voice .locked-label {
font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--text-muted); margin-bottom:6px;
}
body.page-voice .locked-q {
font-family:'Playfair Display',serif; font-size:16px; color:var(--text-muted); margin-bottom:10px;
}
body.page-voice .locked-preview {
font-size:13px; color:var(--text-dim); line-height:1.8; min-height:24px;
}
body.page-voice .locked-badge {
display:inline-flex; align-items:center; gap:8px; margin-top:16px; padding:8px 16px; background:var(--surface2); border:1px solid var(--border); border-radius:2px; font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--purple);
}
body.page-voice .field {
margin-bottom:16px;
}
body.page-voice .field label {
display:block; font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--text-muted); margin-bottom:8px;
}
body.page-voice .field input {
width:100%; background:var(--surface); border:1px solid var(--border-subtle); border-radius:2px; padding:12px 16px; color:var(--text); font-family:'Inter',sans-serif; font-size:14px; outline:none; transition:border-color 0.2s;
}
body.page-voice .field input:focus {
border-color:var(--purple);
}
body.page-voice .field-note {
font-size:11px; color:var(--text-muted); margin-top:6px; line-height:1.6;
}
body.page-voice .price-option {
padding:20px; border-radius:2px; margin-bottom:12px;
}
body.page-voice .price-option.gold {
background:var(--gold-glow); border:1px solid var(--gold-border);
}
body.page-voice .price-option.purple {
background:var(--purple-glow); border:1px solid var(--border);
}
body.page-voice .price-header {
display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:10px;
}
body.page-voice .price-label {
font-size:10px; letter-spacing:3px; text-transform:uppercase; margin-bottom:6px;
}
body.page-voice .price-option.gold .price-label {
color:var(--gold);
}
body.page-voice .price-option.purple .price-label {
color:var(--purple);
}
body.page-voice .price-desc {
font-size:13px; color:var(--text-dim); line-height:1.7; flex:1;
}
body.page-voice .price-amount {
font-family:'Playfair Display',serif; font-size:24px; color:var(--text); margin-left:20px; white-space:nowrap;
}
body.page-voice .btn {
width:100%; padding:14px 24px; border:none; border-radius:2px; font-family:'Inter',sans-serif; font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; cursor:pointer; transition:all 0.2s; margin-top:8px;
}
body.page-voice .btn-primary {
background:var(--purple); color:white;
}
body.page-voice .btn-primary:hover:not(:disabled) {
background:var(--purple-dim);
}
body.page-voice .btn-primary:disabled {
opacity:0.4; cursor:not-allowed;
}
body.page-voice .btn-gold {
background:var(--gold); color:#0a0c10;
}
body.page-voice .btn-gold:hover:not(:disabled) {
background:#dbb95a;
}
body.page-voice .btn-gold:disabled {
opacity:0.4; cursor:not-allowed;
}
body.page-voice .btn-ghost {
background:transparent; color:var(--text-dim); border:1px solid var(--border-subtle); margin-top:12px;
}
body.page-voice .btn-ghost:hover {
border-color:var(--purple); color:var(--text);
}
body.page-voice .loading-wrap {
text-align:center; padding:60px 20px;
}
body.page-voice .spinner {
width:48px; height:48px; border:2px solid var(--border-subtle); border-top-color:var(--purple); border-radius:50%; animation:spin 0.8s linear infinite; margin:0 auto 24px;
}
@keyframes spin {
to { transform:rotate(360deg); }
}
body.page-voice .loading-title {
font-family:'Playfair Display',serif; font-size:22px; color:var(--text); margin-bottom:10px;
}
body.page-voice .loading-sub {
font-size:13px; color:var(--text-dim); margin-bottom:24px;
}
body.page-voice .loading-phase {
font-size:12px; color:var(--purple); letter-spacing:2px; text-transform:uppercase; min-height:18px;
}
body.page-voice .verify-wrap {
text-align:center; padding:60px 20px;
}
body.page-voice .verify-icon {
font-size:48px; margin-bottom:20px;
}
body.page-voice .verify-title {
font-family:'Playfair Display',serif; font-size:24px; color:var(--text); margin-bottom:12px;
}
body.page-voice .verify-text {
font-size:14px; color:var(--text-dim); line-height:1.8; max-width:360px; margin:0 auto;
}
body.page-voice .vote-btn {
width:100%; padding:14px 20px; background:var(--surface); border:1px solid var(--border-subtle); border-radius:2px; color:var(--text-dim); font-family:'Inter',sans-serif; font-size:13px; cursor:pointer; text-align:left; margin-bottom:8px; transition:all 0.2s;
}
body.page-voice .vote-btn:hover {
border-color:var(--purple); color:var(--text);
}
body.page-voice .accuracy-note {
margin-top:10px; padding:12px 16px; background:var(--surface2); border:1px solid var(--border-subtle); border-radius:2px; font-size:11px; color:var(--text-muted); line-height:1.7; text-align:center;
}
@media(max-width:480px) {
body.page-voice .card,
body.page-voice .tease-signal,
body.page-voice .locked,
body.page-voice .tips {
padding:16px;
}
}

/* thank-you.php */
body.page-thank-you {
color-scheme: dark;
            --gold: #c9a84c;
            --background: #0a0c10;
            --surface: #0f1118;
            --text: #e8e4dc;
            --muted: #9b9690;
            --border: rgba(201, 168, 76, .25);
}
body.page-thank-you * {
box-sizing: border-box;
}
body.page-thank-you {
margin: 0;
            min-height: 100vh;
            background: var(--background);
            color: var(--text);
            font-family: Inter, sans-serif;
}
body.page-thank-you .page-content {
width: 100%;
            padding: clamp(40px, 8vh, 80px) 24px;
}
body.page-thank-you main {
width: min(760px, 100%);
            margin: 0 auto;
            padding: clamp(28px, 7vw, 60px);
            background: var(--surface);
            border: 1px solid var(--border);
}
body.page-thank-you #reportLoading,
body.page-thank-you #reportError {
text-align: center;
}
body.page-thank-you .spinner-border {
width: 3rem;
            height: 3rem;
            margin-bottom: 24px;
            color: var(--gold) !important;
}
body.page-thank-you .eyebrow,
body.page-thank-you .section-label {
color: var(--gold);
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
}
body.page-thank-you h1,
body.page-thank-you h2 {
font-family: "Playfair Display", serif;
            line-height: 1.2;
}
body.page-thank-you h1 {
margin: 12px 0 18px; font-size: clamp(30px, 7vw, 46px);
}
body.page-thank-you h2 {
margin: 32px 0 12px; font-size: clamp(22px, 5vw, 28px);
}
body.page-thank-you p,
body.page-thank-you li {
color: var(--muted); font-size: 15px; line-height: 1.8;
}
body.page-thank-you .report-intro {
margin-top: 22px;
}
body.page-thank-you .confirmation-box {
margin-bottom: 38px;
            padding: 24px;
            text-align: center;
            border: 1px solid var(--border);
            background: rgba(201, 168, 76, .07);
}
body.page-thank-you .confirmation-box h2 {
margin: 10px 0 12px;
}
body.page-thank-you .confirmation-box p {
margin: 0;
}
body.page-thank-you .confirmation-box p + p {
margin-top: 8px;
            color: var(--text);
}
body.page-thank-you .highlight {
margin: 28px 0;
            padding: 22px;
            border-left: 3px solid var(--gold);
            background: rgba(201, 168, 76, .07);
}
body.page-thank-you .highlight p {
margin: 10px 0 0; color: var(--text);
}
body.page-thank-you .leadership {
margin-top: 40px;
            padding-top: 34px;
            border-top: 1px solid var(--border);
}
body.page-thank-you .report-list {
padding-left: 22px;
}
body.page-thank-you .report-list li {
margin-bottom: 9px;
}
body.page-thank-you a,
body.page-thank-you .btn-link {
color: var(--gold);
            text-underline-offset: 4px;
}
body.page-thank-you .retry-button {
margin-top: 12px;
            border-color: var(--gold);
            color: var(--gold);
}
body.page-thank-you .retry-button:hover {
background: var(--gold); color: #0a0c10;
}
