/* ==============================================
   Zeitgeist Exchange - Main Stylesheet
   ============================================== */

/* CSS Variables */
:root {
    --purple-primary: #667eea;
    --purple-dark: #764ba2;
    --purple-light: #a78bfa;
    --text-primary: #1a1a1a;
    --text-secondary: #6b6b6b;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-green: #10b981;
    --error-red: #ef4444;
    --warning-orange: #f59e0b;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Pro', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--purple-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--purple-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==============================================
   STICKY CTA BAR
   ============================================== */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 16px 0;
    z-index: 1000;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sticky-cta-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.sticky-cta-text .count {
    color: var(--purple-primary);
    font-weight: 700;
}

/* ==============================================
   HEADER
   ============================================== */

header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.logo {
    font-family: 'Crimson Pro', serif;
    font-size: 28px;
    font-weight: 700;
}

.logo-primary {
    color: var(--purple-primary);
}

.logo-secondary {
    color: var(--text-primary);
}

/* ==============================================
   HERO SECTION
   ============================================== */

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 500;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.avatars {
    display: flex;
    margin-right: 8px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-1 { background: #fbbf24; color: #78350f; }
.avatar-2 { background: #34d399; color: #065f46; }
.avatar-3 { background: #60a5fa; color: #1e3a8a; }

.proof-text {
    font-size: 16px;
    opacity: 0.95;
}

.urgency {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-top: 32px;
}

/* Progress Section */
.progress-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    margin: 32px auto;
    max-width: 600px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.progress-count {
    font-size: 32px;
    font-weight: 700;
}

.progress-goal {
    text-align: right;
}

.progress-bar-container {
    width: 100%;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #34d399 0%, #10b981 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.5s ease;
    min-width: 60px;
}

.progress-bar span {
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.progress-message {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.progress-incentive {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-incentive .highlight {
    font-size: 16px;
    font-weight: 700;
}

.progress-incentive div:last-child {
    font-size: 14px;
    opacity: 0.9;
}

/* ==============================================
   BUTTONS
   ============================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--purple-primary);
}

.btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary-small {
    padding: 10px 24px;
    font-size: 15px;
    background: var(--purple-primary);
    color: white;
}

.btn-primary-small:hover {
    background: var(--purple-dark);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ==============================================
   SECTIONS
   ============================================== */

section {
    padding: 80px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==============================================
   PROBLEM HOOK SECTION
   ============================================== */

.problem-hook {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hook-line {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.hook-question {
    font-size: 24px;
    color: var(--text-secondary);
    margin-top: 40px;
    line-height: 1.5;
}

/* ==============================================
   COMPARISON TABLE
   ============================================== */

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.comparison-col {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-col h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.comparison-old {
    border: 2px solid #fca5a5;
}

.comparison-old h3 {
    color: #dc2626;
}

.comparison-new {
    border: 2px solid #86efac;
}

.comparison-new h3 {
    color: #16a34a;
}

.comparison-item {
    padding: 12px 16px;
    margin-bottom: 8px;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 16px;
}

.hypothesis-statement {
    font-size: 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==============================================
   STEPS GRID
   ============================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--purple-primary);
}

.step-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==============================================
   YES/NO GRID
   ============================================== */

.yes-no-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.yes-no-col {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.yes-col {
    border: 3px solid #86efac;
}

.yes-col h3 {
    color: #16a34a;
    font-size: 24px;
    margin-bottom: 24px;
}

.no-col {
    border: 3px solid #fca5a5;
}

.no-col h3 {
    color: #dc2626;
    font-size: 24px;
    margin-bottom: 24px;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.criteria-item {
    font-size: 16px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 6px;
    line-height: 1.5;
}

/* ==============================================
   SKILLS GRID
   ============================================== */

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--purple-primary);
    color: var(--purple-primary);
}

.filter-btn.active {
    background: var(--purple-primary);
    color: white;
    border-color: var(--purple-primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.loading-skills {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
    font-size: 18px;
}

.skill-category-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.skill-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.skill-category-card.need {
    border-left-color: #ef4444;
    background: #fef2f2;
}

.skill-category-card.low {
    border-left-color: #f59e0b;
    background: #fffbeb;
}

.skill-category-card.healthy {
    border-left-color: #10b981;
    background: #f0fdf4;
}

.skill-category-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.skill-progress {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.skill-progress-bar {
    height: 100%;
    background: var(--purple-primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.skill-stats {
    margin-top: 8px;
}

.skill-status {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.skill-category-card.need .skill-status {
    color: #dc2626;
    font-weight: 600;
}

.skill-category-card.low .skill-status {
    color: #d97706;
    font-weight: 600;
}

.skill-category-card.healthy .skill-status {
    color: #059669;
    font-weight: 600;
}

.skill-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.skill-full {
    font-size: 14px;
    font-weight: 700;
    color: var(--error-red);
    background: #fee2e2;
    padding: 4px 12px;
    border-radius: 4px;
}

.skill-examples {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: var(--text-light);
}

.skills-urgency {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--warning-orange);
    padding: 16px;
    background: #fef3c7;
    border-radius: 8px;
    margin-bottom: 32px;
}

/* ==============================================
   FOUNDING PRINCIPLES
   ============================================== */

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--purple-primary);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--purple-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question {
    color: var(--purple-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    margin: 0;
    line-height: 1.7;
    color: var(--text-secondary);
}

.faq-answer a {
    color: var(--purple-primary);
    text-decoration: underline;
}

/* ==============================================
   FOUNDING PRINCIPLES
   ============================================== */

.experiment-intro {
    font-size: 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px;
    color: var(--text-secondary);
}

.experiment-questions {
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 18px;
}

.experiment-q {
    padding: 12px 0;
    color: var(--text-secondary);
}

.founding-principles {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.founding-principles h3 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--purple-primary);
}

.principle {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.principle:last-child {
    border-bottom: none;
}

.principle-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.principle-desc {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ==============================================
   TIMELINE
   ============================================== */

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.timeline-step {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.timeline-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.timeline-period {
    font-size: 14px;
    font-weight: 700;
    color: var(--purple-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.timeline-label {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.timeline-details {
    list-style: none;
    text-align: left;
    padding: 0;
}

.timeline-details li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 15px;
}

.timeline-details li:before {
    content: "✓ ";
    color: var(--success-green);
    font-weight: 700;
    margin-right: 8px;
}

/* ==============================================
   TIME COMMITMENT
   ============================================== */

.time-commitment {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.time-commitment h3 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
}

.commitment-scale {
    margin-bottom: 24px;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.scale-ideal {
    color: var(--success-green);
    font-weight: 700;
}

.scale-min {
    color: var(--warning-orange);
    font-weight: 700;
}

.scale-bar {
    position: relative;
    height: 40px;
    background: linear-gradient(90deg, #fca5a5 0%, #86efac 100%);
    border-radius: 20px;
}

.scale-marker {
    position: absolute;
    top: -8px;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 700;
    padding: 4px 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scale-marker-ideal {
    background: var(--success-green);
    color: white;
}

.scale-marker-min {
    background: var(--warning-orange);
    color: white;
}

.commitment-note {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.8;
}

/* ==============================================
   PRIVACY GRID
   ============================================== */

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 32px;
}

.privacy-col {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.privacy-yes {
    border: 3px solid #86efac;
}

.privacy-yes h3 {
    color: #16a34a;
    font-size: 24px;
    margin-bottom: 24px;
}

.privacy-no {
    border: 3px solid #fca5a5;
}

.privacy-no h3 {
    color: #dc2626;
    font-size: 24px;
    margin-bottom: 24px;
}

.privacy-col ul {
    list-style: none;
    padding: 0;
}

.privacy-col li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.privacy-col li:last-child {
    border-bottom: none;
}

.privacy-note {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* ==============================================
   APPLICATION SECTION
   ============================================== */

.application-section {
    background: var(--bg-light);
}

.prompt-box {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 48px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.copy-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 10px 24px;
    background: var(--purple-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: var(--purple-dark);
}

.copy-btn.copied {
    background: var(--success-green);
}

.prompt-box pre {
    font-family: 'DM Sans', monospace;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    white-space: pre-wrap;
    word-wrap: break-word;
    padding-right: 120px;
}

/* ==============================================
   APPLICATION FORM
   ============================================== */

.application-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.application-form h3 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
}

.form-group {
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-primary);
}

.form-group textarea {
    font-family: monospace;
    line-height: 1.6;
    resize: vertical;
}

.helper-text {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

/* ==============================================
   PREFERENCE CARDS
   ============================================== */

.pref-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pref-card {
    position: relative;
    padding: 24px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    display: block;
}

.pref-card:hover {
    border-color: var(--purple-primary);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.pref-card.selected {
    border-color: var(--purple-primary);
    background: #f5f3ff;
}

.pref-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.pref-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.pref-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pref-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==============================================
   CHECKBOXES
   ============================================== */

.checkboxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-primary);
}

/* ==============================================
   FORM FOOTER
   ============================================== */

.form-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 15px;
    color: var(--text-secondary);
}

/* ==============================================
   SUCCESS MESSAGE
   ============================================== */

.success-message {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.success-message h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--success-green);
}

.success-message > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.success-steps {
    text-align: left;
    margin-bottom: 40px;
}

.success-steps h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.success-step {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 16px;
}

.success-step-num {
    width: 40px;
    height: 40px;
    background: var(--purple-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.success-step-content strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
    color: var(--text-primary);
}

.success-step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* ==============================================
   SHARE SECTION
   ============================================== */

.share-section {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.share-section h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.share-section h3:first-of-type {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 600;
}

.share-section p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 24px;
    background: var(--purple-primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.share-btn:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
}

.success-footer {
    font-size: 16px;
    color: var(--text-secondary);
}

.success-footer a {
    color: var(--purple-primary);
    text-decoration: underline;
}

/* ==============================================
   FOOTER
   ============================================== */

footer {
    background: var(--text-primary);
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin-bottom: 16px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* ==============================================
   RESPONSIVE STYLES
   ============================================== */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .progress-section {
        padding: 24px;
    }
    
    .progress-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .progress-goal {
        text-align: center;
    }
    
    .progress-count {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .comparison-table,
    .yes-no-grid,
    .privacy-grid,
    .pref-cards,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        grid-template-columns: 1fr;
    }
    
    .sticky-cta .container {
        flex-direction: column;
        gap: 12px;
    }
    
    .sticky-cta-text {
        font-size: 16px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .application-form {
        padding: 32px 24px;
    }
    
    .prompt-box {
        padding: 24px 16px;
    }
    
    .copy-btn {
        position: static;
        width: 100%;
        margin-bottom: 16px;
    }
    
    .prompt-box pre {
        padding-right: 0;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hook-line {
        font-size: 24px;
    }
    
    .hook-question {
        font-size: 18px;
    }
    
    .comparison-col,
    .yes-no-col,
    .privacy-col,
    .step-card,
    .timeline-step {
        padding: 24px;
    }
}