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

:root {
    --text-primary: #000000;
    --text-secondary: #444444;
    --text-light: #666666;
    --link-color: #0066cc;
    --border-color: #dddddd;
    --background-light: #f5f5f5;
    --background-white: #ffffff;
    --green-accent: #00703c;
    --green-light: #e6f3ed;
    --green-dark: #004d2a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
}

/* General section spacing improvements */
section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* Improve heading hierarchy */
h1 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
}

h2 {
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.3;
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(20px, 3vw, 24px);
    line-height: 1.4;
    margin-bottom: 15px;
}

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

/* Header */
.header {
    background-color: var(--background-white);
    border-bottom: 4px solid var(--green-accent);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-maori {
    font-size: 12px;
    color: var(--text-secondary);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.nav a:hover {
    color: var(--green-accent);
    border-bottom-color: var(--green-accent);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-menu-toggle .hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--background-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 100;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav a {
        font-size: 18px;
        padding: 10px 0;
    }
}

/* Audio Call-to-Action Section */
.audio-cta {
    background: linear-gradient(135deg, var(--green-light) 0%, #f8f9fa 100%);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.audio-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.audio-text {
    flex: 1;
}

.kiwi-flag {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.audio-text h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.audio-tagline {
    font-size: 16px;
    color: var(--text-secondary);
    font-style: italic;
}

.audio-player-container {
    position: relative;
    flex-shrink: 0;
}

.audio-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--green-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 112, 60, 0.3);
}

.audio-icon-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 112, 60, 0.4);
}

.audio-icon {
    font-size: 24px;
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
}

.audio-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--green-accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

.click-indicator {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bounce-arrow {
    font-size: 28px;
    color: var(--green-accent);
    font-weight: bold;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.audio-icon-wrapper.playing .audio-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Progress Ring */
.progress-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 90px;
    height: 90px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audio-icon-wrapper.playing .progress-ring {
    opacity: 1;
}

.progress-ring-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.progress-ring-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 3;
}

.progress-ring-circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 251.2; /* 2 * PI * 40 */
    stroke-dashoffset: 251.2;
    transition: stroke-dashoffset 0.1s ease;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
}

/* Time Display */
.audio-time-display {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--green-accent);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 112, 60, 0.2);
    box-shadow: 0 4px 12px rgba(0, 112, 60, 0.1);
    transition: all 0.3s ease;
}

.audio-time-display.visible {
    display: block !important;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.current-time {
    color: var(--green-accent);
    font-weight: 600;
}

.separator {
    margin: 0 4px;
    color: var(--text-secondary);
}

.total-time {
    color: var(--text-secondary);
}

/* Responsive audio section */
@media (max-width: 768px) {
    .audio-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .audio-text h2 {
        font-size: 24px;
    }
    
    .click-indicator {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 15px;
    }
    
    .bounce-arrow {
        font-size: 24px;
    }
    
    .audio-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .audio-icon {
        font-size: 20px;
    }
    
    .progress-ring {
        top: -10px;
        left: -10px;
        width: 90px;
        height: 90px;
    }
    
    .audio-time-display {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background-color: var(--background-white);
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.lead {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.key-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: var(--green-accent);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Hero Share Section */
.hero-share {
    margin-top: 30px;
    text-align: center;
}

.hero-share .share-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}

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

.share-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.share-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.linkedin {
    background-color: #0a66c2;
    color: white;
}

.share-btn.linkedin:hover {
    background-color: #004182;
    transform: translateY(-2px);
}

.share-btn.twitter {
    background-color: #000000;
    color: white;
    font-weight: bold;
}

.share-btn.twitter:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.share-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background-color: #166fe5;
    transform: translateY(-2px);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--green-accent);
    color: white;
}

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

.btn-secondary {
    background-color: var(--background-white);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--background-light);
    border-color: var(--green-accent);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Sections */
section {
    padding: 80px 0;
}

section:nth-child(odd) {
    background-color: var(--background-light);
}

h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

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

/* Petition Section */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.petition-card {
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.petition-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--text-primary);
}

.petition-card h3:first-child {
    margin-top: 0;
}

.petition-ask {
    font-size: 18px;
    font-weight: 500;
    padding: 20px;
    background-color: var(--green-light);
    border-left: 4px solid var(--green-accent);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-secondary);
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: 700;
    font-size: 18px;
}

.petition-status {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 40px;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 4px;
}

.petition-status i {
    color: var(--green-accent);
    font-size: 24px;
    margin-top: 5px;
}

.action-card {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.action-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.note {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 10px;
    text-align: center;
}

.share-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background-color: var(--background-white);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 18px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    background-color: var(--green-light);
    border-color: var(--green-accent);
    color: var(--green-accent);
}

.x-logo {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.challenge {
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 14px;
}

/* Panel Grid */
.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.member-card {
    background-color: var(--background-white);
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.member-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.role {
    color: var(--green-accent);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
}

.member-card p:last-child {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Case Grid */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.case-card {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.case-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--green-accent);
}

.precedent-box {
    background-color: var(--green-light);
    padding: 30px;
    border-radius: 4px;
    max-width: 800px;
    margin: 0 auto;
}

.precedent-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.precedent-box ul {
    list-style: none;
}

.precedent-box li {
    padding: 8px 0;
}

.precedent-box li:last-child {
    font-weight: 600;
    padding-top: 15px;
    border-top: 2px solid var(--green-accent);
    margin-top: 10px;
}

/* AI Demo Section */
.ai-demo {
    background-color: var(--background-white);
}

.demo-container {
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 4px;
    max-width: 900px;
    margin: 0 auto;
}

.demo-controls {
    margin-bottom: 30px;
}

.demo-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.demo-btn {
    padding: 10px 20px;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.demo-btn:hover {
    background-color: var(--green-light);
    border-color: var(--green-accent);
}

.demo-btn.active {
    background-color: var(--green-accent);
    color: white;
    border-color: var(--green-accent);
}

.demo-content {
    display: grid;
    gap: 30px;
}

.demo-question, .demo-response {
    background-color: var(--background-white);
    padding: 25px;
    border-radius: 4px;
}

.demo-question h4, .demo-response h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

#demo-analysis p {
    margin-bottom: 15px;
}

#demo-analysis strong {
    color: var(--green-accent);
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

a.news-item {
    display: block;
    background-color: var(--background-white);
    padding: 25px 25px 50px 25px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}

a.news-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

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

.news-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0 15px;
    color: var(--text-primary);
}

a.news-item:hover h3 {
    color: var(--green-accent);
}

.news-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.news-source {
    font-size: 12px;
    color: var(--green-accent);
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    bottom: 25px;
    right: 25px;
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: white;
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 20px;
    font-size: 14px;
}

/* Video Section */
.video-section {
    background-color: var(--background-white);
    padding: 60px 0;
}

.video-embed-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.video-embed-container video {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

.video-container video {
    width: 100%;
    border-radius: 4px;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
}

.close-video:hover {
    background-color: var(--green-accent);
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .nav {
        display: none;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .action-card {
        position: static;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .key-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 42px;
    }
}

/* Project Showcase Section */
.project-showcase {
    background: linear-gradient(135deg, var(--green-light) 0%, #f0f8f4 100%);
    padding: 80px 0;
    margin-top: 60px;
}

.showcase-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--green-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.showcase-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 50px;
}

.creation-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-content h3 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

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

.ai-capabilities {
    margin-bottom: 60px;
}

.ai-capabilities h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--green-dark);
    margin-bottom: 30px;
}

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

.capability {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.capability i {
    font-size: 1.5rem;
    color: var(--green-accent);
    margin-right: 15px;
    min-width: 30px;
}

.creator-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.creator-info, .ai-tool {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.creator-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green-accent);
}

.creator-initials {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--green-accent);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 600;
    border: 3px solid var(--green-accent);
}

.creator-details h3, .ai-details h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.creator-role, .ai-description {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.linkedin-btn, .claude-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--green-accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.linkedin-btn:hover, .claude-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.claude-logo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-purpose {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.purpose-content h3 {
    font-size: 1.8rem;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.purpose-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.meta-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--green-light);
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
    font-style: italic;
    font-weight: 500;
    color: var(--green-dark);
}

.meta-message i {
    font-size: 1.5rem;
    color: var(--green-accent);
}

@media (max-width: 768px) {
    .creator-showcase {
        grid-template-columns: 1fr;
    }
    
    .creator-info, .ai-tool {
        flex-direction: column;
        text-align: center;
    }
    
    .creation-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .share-buttons {
        gap: 16px;
    }
    
    .share-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .key-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .demo-buttons {
        flex-direction: column;
    }
    
    .demo-btn {
        width: 100%;
    }
    
    .creation-stats {
        grid-template-columns: 1fr;
    }
    
    .creator-info, .ai-tool {
        padding: 30px 20px;
    }
}

/* Live Petition Styles */
.petition-status.live {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.petition-status.live i {
    color: white;
    font-size: 1.5rem;
}

.petition-stats {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    border: 2px solid #e2e8f0;
}

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

.stat-item {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-accent);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.progress-bar {
    background: #e2e8f0;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-fill {
    background: linear-gradient(90deg, var(--green-accent) 0%, #10b981 100%);
    height: 100%;
    border-radius: 6px;
    transition: width 0.5s ease;
    width: 0%;
}

.countdown-timer {
    text-align: center;
}

.countdown-timer h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.time-unit {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 70px;
    border: 2px solid var(--green-accent);
}

.time-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-accent);
    line-height: 1;
}

.time-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* Pulse animation for urgent countdown */
@keyframes urgentPulse {
    0%, 100% { 
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transform: scale(1); 
    }
    50% { 
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
        transform: scale(1.05); 
    }
}

.time-unit.urgent {
    animation: urgentPulse 2s infinite;
    border-color: #ef4444;
}

.time-unit.urgent .time-number {
    color: #ef4444;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .countdown-display {
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 0.8rem;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .petition-stats {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .countdown-display {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .time-unit {
        min-width: 50px;
        padding: 0.6rem;
    }
}

/* Animation keyframes for notifications */
@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Live status indicators */
.hero .lead {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Signature count animation */
.stat-number {
    transition: all 0.3s ease;
}

.stat-number.updated {
    transform: scale(1.1);
    color: #10b981 !important;
}

/* API Error Message */
.api-error-message {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    position: sticky;
    top: 74px; /* Below header */
    z-index: 90;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.api-error-message i {
    color: #f59e0b;
    font-size: 16px;
}

.api-error-message button {
    background: none;
    border: none;
    color: #92400e;
    font-size: 24px;
    cursor: pointer;
    margin-left: auto;
    padding: 0 5px;
    line-height: 1;
}

.api-error-message button:hover {
    color: #451a03;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--green-accent);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0, 112, 60, 0.3);
}

.scroll-to-top:hover {
    background-color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 112, 60, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-container video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
}

.close-video {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-video:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .video-container {
        max-height: 70vh;
    }
    
    .close-video {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}