/* UniPub Landing Page Styles */

:root {
    --primary: #ffffff;
    --primary-dark: #eeeeee;
    --secondary: #aaaaaa;
    --accent: #888888;
    --text: #ffffff;
    --text-light: #cccccc;
    --bg: #000000;
    --bg-light: #111111;
    --bg-dark: #000000;
    --border: #333333;
    --shadow: none;
    --shadow-lg: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: var(--bg);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 80%;
}

.btn-primary {
    background: var(--primary) !important;
    color: var(--bg) !important;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
    color: var(--bg) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.1);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: var(--bg);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-cta {
    background: var(--primary);
    color: var(--bg);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border: 1px solid var(--primary);
}

.btn-cta:hover {
    background: var(--primary-dark);
    color: var(--bg);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border: 1px solid var(--border);
}

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

.hero-note {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Transformation Demo */
.transformation-demo {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2rem;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

.before, .after {
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 1rem;
}

.before h4, .after h4 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.draft-preview {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-light);
}

.paper-preview h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.paper-preview p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.charts-indicator {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
}

.arrow i {
    font-size: 1.5rem;
}

.arrow span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
}

/* Value Props */
.value-props {
    padding: 6rem 0;
    background: var(--bg);
}

.value-props h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text);
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.prop {
    text-align: left;
    padding: 2rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
}


.prop-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prop h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.prop p {
    color: var(--text-light);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-light);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--text);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
}

.step-number {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Examples */
.examples {
    padding: 6rem 0;
    background: var(--bg);
}

.examples h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.example {
    background: var(--bg-light);
    padding: 2rem;
    border: 1px solid var(--border);
}


.example-type {
    display: inline-block;
    background: var(--primary);
    color: var(--bg);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.example h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.example p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.example-metrics {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.example-metrics span {
    background: var(--bg);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.demo-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text);
    text-align: center;
}

.demo-container {
    max-width: 900px;
    margin: 0 auto;
}

.demo-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 2rem;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.demo-step {
    color: var(--text);
    font-weight: 600;
    font-size: 1.125rem;
}

.demo-restart {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.demo-restart:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.demo-input-panel, .demo-output-panel {
    height: 280px;
}

.demo-input-panel h4, .demo-output-panel h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.demo-raw-text, .demo-formatted-text {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    height: 220px;
    overflow-y: auto;
}

.demo-raw-text {
    color: var(--text-light);
    font-family: monospace;
}

.demo-formatted-text {
    color: var(--text);
}

.demo-formatted-text h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.demo-formatted-text p {
    color: var(--text);
    margin-bottom: 1rem;
}

.demo-formatted-text strong {
    color: var(--text);
}

.demo-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.loading-dots {
    display: flex;
    gap: 0.25rem;
}

.loading-dots span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 1.5s infinite;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}

.demo-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.demo-complete {
    color: var(--primary);
    font-weight: 600;
}

.btn-demo {
    background: var(--primary);
    color: var(--bg);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid var(--primary);
}

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

.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--primary);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--primary);
    }
}

@media (max-width: 768px) {
    .demo-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .demo-arrow {
        transform: rotate(90deg);
    }
    
    .demo-actions {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Blog Styles */
.blog-posts {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    background: var(--bg);
}

.blog-post:hover::before {
    transform: scaleX(1);
}

.post-date {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-post:hover h2 {
    color: var(--primary);
}

.blog-post p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-post:hover .read-more::after {
    transform: translateX(4px);
}

.blog-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg) 100%);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.02), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.blog-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    position: relative;
    z-index: 2;
}

.blog-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
}

/* Contact Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info,
.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-info:hover,
.contact-form:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text);
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.contact-method i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    width: 20px;
}

.contact-method h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.contact-method p {
    color: var(--text-light);
    margin: 0;
}

.contact-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-light);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    background: var(--bg-light);
    padding: 3rem;
    border: 1px solid var(--border);
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem 0;
    color: var(--text);
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--text);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text);
    font-weight: 600;
}

.legal-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
}

.legal-footer p {
    margin: 0;
    font-style: italic;
    color: var(--text-light);
}

/* Article Styles */
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.back-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateX(-4px);
    color: var(--primary-dark);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.125rem;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
    color: var(--text);
    position: relative;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    width: 4px;
    height: 60%;
    background: var(--primary);
    transform: translateY(-50%);
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--text);
}

.article-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    color: var(--text);
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
    color: var(--text-light);
}

.article-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    font-style: italic;
    font-size: 1.125rem;
}

.article-content blockquote p {
    margin-bottom: 1rem;
    color: var(--text);
}

.article-content cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
}

.article-content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.article-content a:hover {
    border-bottom-color: var(--primary);
}

.article-content strong {
    color: var(--text);
    font-weight: 600;
}

.article-cta {
    text-align: center;
    margin: 4rem 0 2rem 0;
    padding: 3rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
}

.article-cta p {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .article-content {
        font-size: 1rem;
    }
    
    .article-content h2::before {
        display: none;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Success Stories Styles */
.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.story-card {
    background: var(--bg-light);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.story-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    background: var(--bg);
}

.story-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.story-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.story-link:hover {
    transform: translateX(4px);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .success-stories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Pricing */
.pricing-teaser {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: white;
}

.pricing-teaser h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.pricing-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.free-tier, .pro-tier {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.pro-tier {
    border: 2px solid var(--accent);
    position: relative;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.free-tier ul, .pro-tier ul {
    list-style: none;
    margin: 1.5rem 0;
}

.free-tier li, .pro-tier li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-start {
    background: var(--primary);
    color: var(--bg);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    width: 100%;
    display: inline-block;
}

.btn-start:hover {
    background: var(--primary-dark);
    color: var(--bg);
}

.earn-back {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    opacity: 0.8;
}

/* Social Proof */
.social-proof {
    padding: 6rem 0;
    background: var(--bg);
}

.social-proof h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--bg-light);
    padding: 2rem;
    position: relative;
    border: 1px solid var(--border);
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    position: absolute;
    top: -1rem;
    left: 1rem;
    font-family: serif;
}

.testimonial p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text);
}

.author {
    font-weight: 600;
    color: var(--primary);
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: var(--bg-light);
    color: var(--text);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.btn-cta-large {
    background: var(--primary);
    color: var(--bg);
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    border: 1px solid var(--primary);
}

.btn-cta-large:hover {
    background: var(--primary-dark);
    color: var(--bg);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.link-group a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.7;
}

/* About Page Specific Styles */
.about-hero {
    padding: 8rem 0 4rem;
    background: var(--bg);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.mission {
    padding: 6rem 0;
    background: var(--bg-light);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text);
}

.mission-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.problem, .solution {
    background: var(--bg);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
}

.problem h4, .solution h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.problem ul, .solution ul {
    list-style: none;
}

.problem li, .solution li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.vision {
    padding: 6rem 0;
    background: var(--bg);
}

.vision h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.vision-item {
    text-align: center;
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.vision-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vision-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.vision-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.technology {
    padding: 6rem 0;
    background: var(--bg-light);
}

.technology h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text);
}

.tech-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.tech-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.tech-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.team {
    padding: 6rem 0;
    background: var(--bg);
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text);
}

.team-intro {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-values h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border);
}

.value h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.value p {
    color: var(--text-light);
    line-height: 1.6;
}

.impact {
    padding: 6rem 0;
    background: var(--bg-light);
}

.impact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.impact-item {
    text-align: center;
    background: var(--bg);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
}

.impact-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.big-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.impact-item p {
    color: var(--text-light);
}

.impact-story h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text);
}

.impact-story blockquote {
    background: var(--bg);
    border-left: 4px solid var(--primary);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.7;
    border: 1px solid var(--border);
}

.impact-story cite {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1rem;
    font-style: normal;
}

.future {
    padding: 6rem 0;
    background: var(--bg);
}

.future h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text);
}

.roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.roadmap-item {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.roadmap-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.roadmap-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.join-us {
    padding: 6rem 0;
    background: var(--bg-light);
    color: var(--text);
    text-align: center;
}

.join-us h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.join-us p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.join-cta p {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
}