/*
Theme Name: 2080
Theme URI:
Author:
Description: Minimalist theme for 2080 Task Manager
Version: 1.0
License: Private
Text Domain: 2080
*/

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

:root {
    --bg-primary: #f9f7f4;
    --bg-secondary: #fff;
    --bg-tertiary: #f0ebe3;
    --bg-card: #f9f7f4;
    --bg-accent: #e4ddd1;
    --text-primary: #3d332d;
    --text-secondary: #6b5a49;
    --text-tertiary: #9d8d77;
    --border-color: #d1c7b7;
    --accent-primary: #d4a574;
    --accent-secondary: #9d8d77;
    --button-bg: #6b5a49;
    --button-hover: #554740;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
}

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

/* WordPress content containers */
.hero .wp-block-group__inner-container,
.why-section .wp-block-group__inner-container,
.how-section .wp-block-group__inner-container,
.what-section .wp-block-group__inner-container,
.name-section .wp-block-group__inner-container,
.download-section .wp-block-group__inner-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 24px 0;
}

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

.site-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
}

.logo {
    width: 32px;
    height: 32px;
}

.site-name,
.site-tagline {
    transition: opacity 0.3s ease;
}

.site-name {
    opacity: 1;
}

.site-tagline {
    position: absolute;
    left: 44px;
    opacity: 0;
    pointer-events: none;
    font-size: 14px;
    white-space: nowrap;
}

.site-title:hover .site-name {
    opacity: 0;
}

.site-title:hover .site-tagline {
    opacity: 1;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-nav a:hover {
    color: var(--text-primary);
}

.header-nav a.cta-primary {
    color: var(--bg-primary);
}

.header-nav a.cta-primary:hover {
    color: var(--bg-primary);
}

/* Hero Section */
.hero {
    padding: 96px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

.hero::before {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #d4a574 0%, #9d8d77 100%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero::after {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #e4ddd1 0%, #c4b5a0 100%);
    bottom: -150px;
    right: -150px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 32px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #3d332d 0%, #6b5a49 50%, #3d332d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 8s ease-in-out infinite, scaleIn 0.8s ease-out both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.lead {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.lead.highlight {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

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

.download-buttons .cta {
}

@media (max-width: 540px) {
    .download-buttons {
        flex-direction: column;
        width: 100%;
    }

    .download-buttons .cta {
        width: 100%;
    }
}

.cta-note {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Hero Screenshot */
.hero-screenshot {
    margin-top: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    animation: slideUp 1.2s ease-out 0.8s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    height: 350px;
    overflow: hidden;
}

.hero-screenshot::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--bg-primary));
    pointer-events: none;
}

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

.app-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: top;
}

/* Buttons */
.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.2s;
}

.cta svg {
    flex-shrink: 0;
}

.cta-primary {
    background: var(--button-bg);
    color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-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;
}

.cta-primary:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

.cta-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cta-secondary:hover {
    background: var(--bg-tertiary);
}

.cta-large {
    padding: 18px 36px;
    font-size: 18px;
}

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

.download-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: linear-gradient(90deg, #d4a574, #9d8d77);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 32px;
    text-align: center;
}

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

/* Why Section */
.why-section {
    background: var(--bg-secondary);
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.problem-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.problem-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.problem-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

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

.problem-card {
    padding: 24px;
    background: var(--bg-card);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4a574, #9d8d77);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61, 51, 45, 0.08);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    border-radius: 8px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    transition: transform 0.3s ease, background 0.3s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-primary);
    color: var(--bg-secondary);
}

.problem-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

/* How Section */
.how-section {
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.value-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.value-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.value-card {
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--bg-accent);
}

.value-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

/* What Section (Features) */
.what-section {
    background: var(--bg-tertiary);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-item:nth-child(1) {
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

.feature-item:nth-child(2) {
    animation: fadeInUp 0.5s ease-out 0.15s both;
}

.feature-item:nth-child(3) {
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.feature-item:nth-child(4) {
    animation: fadeInUp 0.5s ease-out 0.25s both;
}

.feature-item:nth-child(5) {
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.feature-item:nth-child(6) {
    animation: fadeInUp 0.5s ease-out 0.35s both;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: default;
}

.feature-item:hover {
    transform: translateX(4px);
    background: var(--bg-secondary);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    border-radius: 6px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: var(--bg-secondary);
    transform: rotate(-5deg) scale(1.05);
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Name Section */
.name-section {
    background: var(--bg-secondary);
    text-align: center;
}

.name-section .section-desc {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.name-section .section-desc:last-child {
    margin-bottom: 0;
}

/* Download Section */
.download-section {
    text-align: center;
    padding: 96px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.download-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.8;
    }
}

.download-section .section-title {
    margin-bottom: 32px;
}

.download-section .section-desc {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

.note {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Footer */
footer {
    padding: 48px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
    color: var(--text-tertiary);
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
}

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

.social-links {
    display: none;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.social-links span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: default;
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Comparison Pages */
.compare-hero {
    padding: 80px 0 64px;
    text-align: center;
}

.compare-hero h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.compare-hero .lead {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.compare-section {
    padding: 0 0 80px;
}

.compare-table {
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    padding: 20px 24px;
}

.compare-row:not(:last-child) {
    border-bottom: 1px solid var(--bg-tertiary);
}

.compare-header {
    background: var(--bg-tertiary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: var(--text-secondary);
}

.compare-feature strong {
    font-weight: 600;
}

.compare-them,
.compare-us {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.compare-them span,
.compare-us span {
    display: block;
}

.compare-them .note,
.compare-us .note {
    font-size: 13px;
    color: var(--text-tertiary);
}

.good {
    color: #2d5a27;
    font-weight: 600;
}

.bad {
    color: #8b3a3a;
    font-weight: 500;
}

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

.compare-cta {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-secondary);
}

.compare-cta h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

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

/* Mission Page */
.mission-hero {
    padding: 80px 0 48px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.mission-hero h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.mission-hero .lead {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.mission-section {
    padding: 80px 0;
}

.mission-section:nth-child(odd) {
    background: var(--bg-secondary);
}

.mission-section:nth-child(even) {
    background: var(--bg-primary);
}

.mission-section .section-label {
    margin-bottom: 12px;
}

.mission-section .section-title {
    margin-bottom: 32px;
}

.mission-text {
    max-width: 720px;
}

.mission-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

.mission-text strong {
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-top: 32px;
}

.mission-text strong:first-child {
    margin-top: 0;
}

.mission-cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.mission-cta h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
}

.mission-cta .cta-note {
    margin-top: 12px;
    display: block;
}

/* Terms Page */
.terms-content {
    max-width: 720px;
    margin: 0 auto;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 64px 0 0;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .lead {
        font-size: 18px;
    }

    .hero-screenshot {
        margin-top: 32px;
        height: 300px;
        max-width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .problem-grid,
    .value-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .header-nav {
        gap: 12px;
    }

    .header-nav a {
        font-size: 13px;
    }

    .compare-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .compare-header {
        display: none;
    }

    .compare-them,
    .compare-us {
        padding-left: 16px;
        border-left: 2px solid #e4ddd1;
    }

    .compare-them::before {
        content: 'Them: ';
        font-weight: 600;
        font-size: 12px;
        color: #9d8d77;
    }

    .compare-us::before {
        content: '2080: ';
        font-weight: 600;
        font-size: 12px;
        color: #9d8d77;
    }

    .mission-hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .mission-section {
        padding: 48px 0;
    }

    .mission-text p {
        font-size: 16px;
    }

    .mission-cta h3 {
        font-size: 24px;
    }
}

/* WordPress Block Editor Fixes */
.wp-block-group {
    width: 100%;
}

main .wp-block-group__inner-container {
    width: 100%;
}

/* Apply section padding to WordPress block groups */
.hero.wp-block-group {
    padding: 96px 0 0;
}

.why-section.wp-block-group,
.how-section.wp-block-group,
.what-section.wp-block-group,
.name-section.wp-block-group {
    padding: 80px 0;
}

.download-section.wp-block-group {
    padding: 96px 0;
}

/* Ensure WordPress blocks respect section styling */
.hero .wp-block-heading {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 32px !important;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #3d332d 0%, #6b5a49 50%, #3d332d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
}

.section-title.wp-block-heading {
    margin-bottom: 16px !important;
}

.section-label.wp-block-paragraph {
    margin-bottom: 12px !important;
}

main .wp-block-paragraph {
    margin-bottom: 16px;
}

/* Support Page */
.support-hero {
    padding: 80px 0 48px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.support-hero h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.support-hero .lead {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.support-section {
    padding: 64px 0 80px;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.support-message h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.support-message p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.support-list {
    list-style: none;
    margin: 24px 0;
}

.support-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-secondary);
}

.support-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.support-note {
    font-size: 15px;
    color: var(--text-tertiary);
    margin-top: 24px;
}

.support-note a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.support-note a:hover {
    color: var(--text-primary);
}

.support-form-container {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.support-form-container h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.amount-presets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.amount-btn {
    padding: 14px 8px;
    font-size: 18px;
    font-weight: 600;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-primary);
}

.amount-btn:hover {
    border-color: var(--accent-primary);
    background: var(--bg-tertiary);
}

.amount-btn.selected {
    border-color: var(--accent-primary);
    background: var(--accent-primary);
    color: white;
}

.custom-amount {
    margin-bottom: 24px;
}

.custom-amount label {
    display: block;
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.custom-amount-field {
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.custom-amount-field:focus-within {
    border-color: var(--accent-primary);
}

.currency-symbol {
    padding: 12px 0 12px 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.custom-amount-field input {
    flex: 1;
    padding: 12px 16px 12px 4px;
    font-size: 18px;
    border: none;
    background: transparent;
    outline: none;
    color: var(--text-primary);
}

.custom-amount-field input::placeholder {
    color: var(--text-tertiary);
}

.support-cta {
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
}

.payment-note {
    font-size: 13px;
    color: var(--text-tertiary);
    text-align: center;
    margin: 0;
}

.payment-amount-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--bg-primary);
    border-radius: 8px;
    margin-bottom: 20px;
}

.payment-amount-display span {
    color: var(--text-secondary);
}

.payment-amount-display strong {
    font-size: 20px;
    color: var(--text-primary);
}

.change-amount-btn {
    background: none;
    border: none;
    color: var(--accent-primary);
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
}

.change-amount-btn:hover {
    color: var(--text-primary);
}

#payment-element {
    margin-bottom: 20px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-left: 8px;
}

.spinner.hidden {
    display: none;
}

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

.payment-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

.payment-message.hidden {
    display: none;
}

.payment-message.error {
    background: #fee;
    color: #c00;
}

.payment-message.success {
    background: #efe;
    color: #060;
}

.success-message {
    text-align: center;
    padding: 32px 16px;
}

.success-message svg {
    color: #22c55e;
    margin-bottom: 16px;
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.success-message p {
    color: var(--text-secondary);
    margin: 0;
}

.support-faq {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.support-faq h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Donate Banner */
.donate-banner {
    background: #f5f3f0;
    padding: 24px 0;
    text-align: center;
}

.donate-banner p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.donate-banner a {
    color: var(--text-primary);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.donate-banner a:hover {
    color: var(--accent-primary);
}

/* Pricing Section */
.pricing-section {
    padding: 96px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.pricing-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-primary);
}

.pricing-card-plus {
    border-style: dashed;
    opacity: 0.85;
}

.pricing-card-plus:hover {
    opacity: 1;
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    padding: 32px 32px 24px;
    text-align: center;
    border-bottom: 1px solid var(--bg-tertiary);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--text-primary);
}

.price .period {
    font-size: 16px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.price-alt {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.pricing-body {
    padding: 24px 32px 32px;
}

.pricing-desc {
    font-size: 15px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--bg-tertiary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: #22c55e;
}

.pricing-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.pricing-cta-disabled {
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
}

/* Bottom CTA */
.bottom-cta {
    padding: 48px 0;
    text-align: center;
    background: var(--bg-secondary);
}

.bottom-cta p {
    font-size: 15px;
    color: var(--text-tertiary);
    margin: 0;
}

.bottom-cta a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
}

.bottom-cta a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

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

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-header {
        padding: 24px 24px 20px;
    }

    .pricing-header h3 {
        font-size: 20px;
    }

    .price .amount {
        font-size: 40px;
    }

    .pricing-body {
        padding: 20px 24px 28px;
    }

    .pricing-badge {
        top: 12px;
        right: 12px;
        font-size: 11px;
        padding: 3px 10px;
    }
}

@media (max-width: 768px) {
    .support-hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .support-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-form-container {
        padding: 24px;
    }

    .amount-presets {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Buy Page */
.buy-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: var(--bg-primary);
}

.buy-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.buy-hero .lead {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.buy-section {
    padding: 60px 0 80px;
    background: var(--bg-tertiary);
}

.buy-section .buy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.buy-message h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.buy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.buy-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
}

.buy-list li svg {
    color: #2d5a27;
    flex-shrink: 0;
}

.buy-trial-note {
    font-size: 14px;
    color: var(--text-tertiary);
}

.buy-trial-note a {
    color: var(--accent-primary);
    text-decoration: none;
}

.buy-trial-note a:hover {
    text-decoration: underline;
}

.buy-form-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
}

.buy-form-container h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.buy-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    font-size: 16px;
    color: var(--text-tertiary);
}

.buy-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
}

.buy-form-container .payment-note {
    font-size: 13px;
    color: var(--text-tertiary);
    text-align: center;
}

.buy-faq {
    padding: 80px 0;
    background: var(--bg-primary);
}

.buy-faq h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .buy-hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .buy-section .buy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .buy-form-container {
        padding: 24px;
    }
}

/* Three feature grid */
.features-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .features-grid-three {
        grid-template-columns: 1fr;
    }
}

/* Single pricing card layout */
.pricing-grid-single {
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

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

.pricing-note a {
    color: var(--accent-primary);
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* Waitlist Section */
.waitlist-section {
    padding: 60px 0;
    background: var(--bg-tertiary);
}

.waitlist-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.waitlist-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.waitlist-form {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-secondary);
    transition: border-color 0.2s;
}

.waitlist-form:focus-within {
    border-color: var(--accent-primary);
}

.waitlist-form input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    font-size: 15px;
    font-family: inherit;
    border: none;
    background: transparent;
    color: var(--text-primary);
    min-width: 0;
}

.waitlist-form input[type="email"]::placeholder {
    color: var(--text-tertiary);
}

.waitlist-form input[type="email"]:focus {
    outline: none;
}

.waitlist-form button {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    white-space: nowrap;
    border: none;
    background: var(--button-bg);
    color: var(--bg-primary);
    cursor: pointer;
    transition: background 0.2s;
}

.waitlist-form button:hover {
    background: var(--button-hover);
}

.waitlist-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.waitlist-message {
    margin-top: 16px;
    font-size: 14px;
    min-height: 20px;
}

.waitlist-message.success {
    color: var(--accent-primary);
}

.waitlist-message.error {
    color: #c45d4e;
}

@media (max-width: 480px) {
    .waitlist-form {
        flex-direction: column;
        border-radius: 8px;
    }

    .waitlist-form button {
        border-radius: 0 0 7px 7px;
    }
}

/* Download Page */
.download-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: var(--bg-tertiary);
}

.download-content {
    max-width: 560px;
    text-align: center;
}

.download-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.download-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.download-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.download-icon {
    color: var(--text-primary);
    flex-shrink: 0;
}

.download-info {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.download-platform {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.download-details {
    font-size: 14px;
    color: var(--text-tertiary);
}

.download-action {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.download-warning {
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.5;
    margin-bottom: 24px;
}

.download-warning strong {
    color: var(--text-secondary);
}

.download-note {
    font-size: 14px;
    color: var(--text-tertiary);
}

.download-note a {
    color: var(--accent-primary);
    text-decoration: none;
}

.download-note a:hover {
    text-decoration: underline;
}

@media (max-width: 540px) {
    .download-content h1 {
        font-size: 32px;
    }

    .download-card {
        padding: 16px 20px;
    }

    .download-icon svg {
        width: 36px;
        height: 36px;
    }
}
