/* === Variables === */
:root {
    --bg-dark: #0e0e0e;
    --bg-light: #f9f8f6;
    --accent: #6c5ce7;
    --accent-hover: #5849c2;
    --text-dark: #1a1a1a;
    --text-light: #f0efe8;
    --text-muted: #888680;
    --code-bg: #1e1e2e;
    --code-text: #cdd6f4;
    --border: #e5e4df;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-code: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; }

/* === Nav === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(10px);
}
.nav-logo {
    font-family: var(--font-code);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
}
.nav-logo:hover { color: var(--text-light); }
.nav-logo .accent { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: var(--text-muted); font-size: 0.9rem; }
.nav-links a:hover { color: var(--text-light); }

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-accent {
    background: var(--accent);
    color: #fff;
}
.btn-accent:hover {
    background: var(--accent-hover);
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-full { width: 100%; }
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-dark);
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}
.dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(108, 92, 231, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: dotPulse 8s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-proof {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* === Sections === */
.section { padding: 5rem 2rem; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); }
.container { max-width: 900px; margin: 0 auto; }
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}
.section-title.light { color: var(--text-light); }

/* === Steps === */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.step { text-align: center; }
.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* === Mode selector === */
.mode-selector {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.mode-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.mode-btn:hover { border-color: rgba(108, 92, 231, 0.3); color: var(--text-light); }
.mode-btn.active {
    border-color: var(--accent);
    color: var(--text-light);
    background: rgba(108, 92, 231, 0.08);
}
.mode-btn svg { opacity: 0.6; }
.mode-btn.active svg { opacity: 1; color: var(--accent); }
.mode-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === AI Impact Score teaser === */
.impact-teaser {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, rgba(108,92,231,0.08), rgba(108,92,231,0.02));
    border: 1px solid rgba(108,92,231,0.2);
    border-radius: 12px;
    padding: 1.5rem;
    overflow: hidden;
}
.impact-teaser-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.impact-score-circle {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108,92,231,0.06);
}
.impact-score-circle span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.impact-pct-sign {
    font-size: 1rem !important;
    font-weight: 500 !important;
}
.impact-teaser-text h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}
.impact-teaser-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}
.impact-cta {
    margin-top: 0.5rem !important;
    color: var(--accent) !important;
    font-weight: 500;
    font-size: 0.8rem !important;
}
@media (max-width: 767px) {
    .impact-teaser-inner { flex-direction: column; text-align: center; }
    .mode-selector { flex-direction: column; }
}

/* === Upload widget === */
.upload-widget {
    max-width: 600px;
    margin: 0 auto 3rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 2rem;
}
.upload-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tab {
    flex: 1;
    padding: 0.75rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.tab.active {
    color: var(--text-light);
    border-bottom-color: var(--accent);
}
.tab:hover { color: var(--text-light); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* === Drop zone === */
.drop-zone {
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.2s;
    margin-bottom: 1rem;
}
.drop-zone.dragover {
    border-color: var(--accent);
    background: rgba(108, 92, 231, 0.05);
}
.drop-zone-inner p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.drop-hint {
    font-size: 0.8rem !important;
    margin-bottom: 1rem !important;
}
.drop-icon {
    width: 40px;
    height: 40px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
}
#file-size, #file-size-linkedin { color: var(--text-muted); font-size: 0.8rem; }
.file-remove {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

/* Paste textarea */
#cv-text {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-light);
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    resize: vertical;
    margin-bottom: 1rem;
}
#cv-text::placeholder { color: var(--text-muted); }

.upload-error {
    padding: 0.75rem 1rem;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 6px;
    color: #ff4757;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* === Code editor / preview === */
.code-editor {
    background: var(--code-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
.code-editor-small { font-size: 0.85rem; }
.code-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.traffic-lights { display: flex; gap: 6px; }
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.amber { background: #febc2e; }
.dot.green { background: #28c840; }
.code-filename {
    font-family: var(--font-code);
    font-size: 0.8rem;
    color: var(--text-muted);
}
.code-actions {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
}
.code-body {
    position: relative;
}
.code-body pre {
    padding: 1.5rem;
    overflow-x: auto;
}
.code-body code, .example-code {
    font-family: var(--font-code);
    font-size: 0.85rem;
    color: var(--code-text);
    line-height: 1.7;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Preview blur */
.preview-blur {
    position: relative;
}
.preview-blur pre {
    filter: blur(6px);
    user-select: none;
    pointer-events: none;
}
.blur-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(30, 30, 46, 0.7);
    backdrop-filter: blur(2px);
    text-align: center;
    padding: 2rem;
}
.lock-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
    margin-bottom: 1rem;
}
.blur-overlay h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.blur-overlay p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.stripe-badge {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    margin-top: 0.5rem !important;
}

/* === Preview loading skeleton === */
.preview-loading { max-width: 600px; margin: 0 auto; }
.skeleton-editor {
    background: var(--code-bg);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.skeleton-body { padding: 1.5rem; }
.skeleton-line {
    height: 14px;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
.w80 { width: 80%; }
.w60 { width: 60%; }
.w90 { width: 90%; }
.w70 { width: 70%; }
.w50 { width: 50%; }
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Loading text */
.loading-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* === Unlock promises === */
.unlock-promises {
    margin-top: 1.5rem;
    background: var(--code-bg);
    border: 1px solid rgba(108,92,231,0.25);
    border-radius: 12px;
    padding: 1.5rem 2rem;
}
.unlock-promises h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}
.unlock-promises ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.unlock-promises li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--code-text);
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.unlock-promises li:last-child {
    border-bottom: none;
}
.promise-icon {
    flex-shrink: 0;
    color: var(--accent);
    font-size: 0.85rem;
    width: 1.2rem;
    text-align: center;
    margin-top: 0.15rem;
}
.unlock-cta {
    text-align: center;
    padding-top: 0.5rem;
}
.unlock-cta .btn {
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
}
.unlock-cta .stripe-badge {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === Pro banner === */
.pro-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(108, 92, 231, 0.08);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === Two column === */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 768px) {
    .two-col { grid-template-columns: 1fr 1fr; }
}
.two-col p { margin-bottom: 1rem; color: var(--text-muted); }
.two-col p:first-child { color: var(--text-dark); }

/* === Success page === */
.success-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}
.loading-container {
    text-align: center;
    padding: 4rem 2rem;
}
.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(108, 92, 231, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-sub { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.5rem; }
.error-container { text-align: center; padding: 4rem 2rem; }
.error-container h2 { margin-bottom: 1rem; }
.error-container p { color: var(--text-muted); margin-bottom: 2rem; }

/* === Score card === */
.score-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}
.score-heading {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}
.score-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .score-layout { grid-template-columns: 180px 1fr; }
}
.score-circle-wrap { text-align: center; }
.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.score-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}
.score-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}
.score-headline {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}
.score-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .score-columns { grid-template-columns: 1fr 1fr; }
}
.score-columns h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.score-columns p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.score-bars { margin-bottom: 1.5rem; }
.score-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.score-bar-item span { min-width: 140px; }
.score-bar {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}
.score-bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    transition: width 1s ease-out;
    width: 0;
}
.score-details h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.score-strengths {
    list-style: none;
    margin-bottom: 1.5rem;
}
.score-strengths li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 1.2rem;
    position: relative;
}
.score-strengths li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.score-callout {
    background: rgba(108, 92, 231, 0.06);
    border-left: 3px solid var(--accent);
    padding: 1rem 1.25rem;
    border-radius: 0 6px 6px 0;
}
.score-callout p { font-size: 0.9rem; color: var(--text-dark); margin: 0; }

/* === Install accordion === */
.install-section {
    margin-top: 2rem;
}
.install-section h3 { margin-bottom: 1rem; }
.accordion-trigger {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-bottom: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}
.accordion-trigger:first-of-type { border-radius: 8px 8px 0 0; }
.accordion-trigger:last-of-type,
.accordion-panel:last-child { border-bottom: 1px solid var(--border); border-radius: 0 0 8px 8px; }
.accordion-trigger.open { background: rgba(108,92,231,0.05); }
.accordion-panel {
    display: none;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-top: none;
}
.accordion-panel.open { display: block; }
.accordion-panel code {
    font-family: var(--font-code);
    background: var(--code-bg);
    color: var(--code-text);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* === Pro modal === */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    max-width: 460px;
    width: 100%;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
}
.modal-close:hover { color: var(--text-dark); }
.modal-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.modal-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.modal-card .form-group {
    margin-bottom: 1rem;
}
.modal-card .form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}
.modal-card .form-group input {
    width: 100%;
    padding: 0.7rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-body);
}
.modal-card .form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}
.modal-card .stripe-badge {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    color: var(--text-muted) !important;
}

/* === Persona tabs === */
.persona-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}
.persona-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-bottom: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s;
}
.persona-tab:first-child { border-radius: 12px 0 0 0; }
.persona-tab:last-child { border-radius: 0 12px 0 0; }
.persona-tab.active {
    background: var(--code-bg);
    color: var(--text-light);
    border-color: rgba(255,255,255,0.06);
}
.persona-tab:hover:not(.active) {
    background: rgba(108, 92, 231, 0.05);
}
.persona-tabs + .code-editor {
    border-radius: 0 0 12px 12px;
}

/* === Pro upsell === */
.pro-upsell { margin-top: 2rem; }
.pro-card {
    background: rgba(108, 92, 231, 0.04);
    border: 1px solid rgba(108, 92, 231, 0.15);
    border-radius: 12px;
    padding: 2rem;
}
.pro-card h3 { margin-bottom: 0.5rem; }
.pro-card p { color: var(--text-muted); margin-bottom: 1rem; }
.pro-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}
.pro-card li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.pro-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* === Content pages === */
.content-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}
.content-page h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.last-updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2rem; }
.content-page h2 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.content-page p { margin-bottom: 1rem; color: var(--text-muted); line-height: 1.7; }
.content-page ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.content-page li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.content-page strong { color: var(--text-dark); }

/* Data table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.data-table th, .data-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.data-table th { color: var(--text-dark); font-weight: 600; }
.data-table td { color: var(--text-muted); }

/* === Deletion form === */
.deletion-form { margin-top: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.form-group textarea { resize: vertical; }

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.alert-success {
    background: rgba(40, 200, 64, 0.08);
    border: 1px solid rgba(40, 200, 64, 0.2);
    color: #1a8a3a;
}
.alert-error {
    background: rgba(255, 71, 87, 0.08);
    border: 1px solid rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

/* === Consent banner === */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 2rem;
}
.consent-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.consent-inner p {
    color: var(--text-muted);
    font-size: 0.85rem;
    flex: 1;
    min-width: 250px;
}
.consent-inner a { color: var(--accent); }
.consent-buttons { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* === Footer === */
.footer {
    background: var(--bg-dark);
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-inner p { color: var(--text-muted); font-size: 0.85rem; }
.footer-inner nav { display: flex; gap: 1.5rem; }
.footer-inner a { color: var(--text-muted); font-size: 0.85rem; }
.footer-inner a:hover { color: var(--text-light); }

/* === Mobile === */
@media (max-width: 767px) {
    .nav { padding: 0.75rem 1rem; }
    .hero { min-height: auto; padding: 8rem 1.5rem 4rem; }
    .section { padding: 3rem 1.5rem; }
    .upload-widget { padding: 1.25rem; }
    .pro-banner { flex-direction: column; text-align: center; }
    .unlock-promises { padding: 1.25rem 1.5rem; }
    .consent-inner { flex-direction: column; text-align: center; }
    .footer-inner { flex-direction: column; text-align: center; }
    .code-actions { gap: 0.25rem; }
}
