/* Notepad.exe - Beautiful Light Theme */
/* Unified Design System */

:root {
    --bg: #fafafa;
    --bg-elevated: #ffffff;
    --text: #1a1a1a;
    --text-secondary: #666666;
    --accent: #0066cc;
    --accent-hover: #0052a3;
    --border: rgba(0, 0, 0, 0.08);
    --border-strong: rgba(0, 0, 0, 0.12);
    --success: #059669;
    --radius: 10px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3 {
    font-family: "EB Garamond", Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text);
}

p {
    color: var(--text-secondary);
}

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

a:hover {
    text-decoration: underline;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
    text-decoration: none;
}

.nav-cta {
    display: flex;
    gap: 16px;
}

.nav-cta .btn {
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: 6px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text);
    text-decoration: none;
}

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

a.btn-primary:hover,
.btn-primary:hover {
    color: white;
    text-decoration: none;
}

/* Hero */
.hero {
    padding: 120px 32px 60px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 102, 204, 0.08);
    border-radius: 100px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 48px;
    transition: background 0.2s;
}

.hero-badge:hover {
    background: rgba(0, 102, 204, 0.12);
    text-decoration: none;
}

.hero h1 {
    font-family: "EB Garamond", Georgia, serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 32px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Screenshot */
.hero-screenshot {
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 32px;
}

.screenshot-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.04),
        0 48px 96px rgba(0, 0, 0, 0.08);
}

.screenshot-frame img {
    display: block;
    width: 100%;
    height: auto;
}

/* CTA */
.cta {
    text-align: center;
    padding: 0 32px 60px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1rem;
}

.brew {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.brew-command {
    display: inline-block;
    margin-top: 12px;
    padding: 14px 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: "SF Mono", Monaco, monospace;
    font-size: 0.9rem;
    color: var(--text);
    user-select: all;
}

/* Sections */
.section {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 32px;
}

.section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 80px;
}

.feature h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.feature p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Gallery */
.gallery {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 32px 60px;
}

.gallery-item {
    margin-bottom: 40px;
}

.gallery-item:last-child {
    margin-bottom: 0;
}

.gallery-image {
    width: 100%;
    border-radius: 16px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.04),
        0 32px 64px rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.02),
        0 24px 48px rgba(0, 0, 0, 0.06),
        0 48px 96px rgba(0, 0, 0, 0.08);
}

.gallery-caption {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.gallery-caption strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text);
}

.gallery-caption p {
    font-size: 1rem;
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-elevated);
    padding: 120px 32px;
}

.testimonials-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.testimonial {
    padding: 36px;
    background: var(--bg);
    border-radius: 16px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.testimonial-author a {
    font-weight: 600;
    color: var(--text);
}

/* More Features */
.more-section {
    padding: 120px 32px;
}

.more-inner {
    max-width: 900px;
    margin: 0 auto;
}

.more-wrapper {
    margin-top: 48px;
}

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

.more-column h4 {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.more-column ul {
    list-style: none;
}

.more-column li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.more-column li:last-child {
    border-bottom: none;
}

.toggle-features-btn {
    display: none;
    width: 100%;
    margin-top: 32px;
    padding: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-features-btn:hover {
    border-color: var(--text-secondary);
    color: var(--text);
}

/* Secondary CTA */
.secondary-cta {
    text-align: center;
    padding: 120px 32px;
    background: var(--bg-elevated);
}

.secondary-cta h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

/* FAQ */
.faq-section {
    padding: 120px 32px;
}

.faq-inner {
    max-width: 680px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 48px;
}

.faq-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-item h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text);
}

.faq-answer {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Newsletter */
.newsletter {
    text-align: center;
    padding: 60px 32px;
    background: var(--bg-elevated);
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.newsletter p {
    margin-bottom: 40px;
}

.newsletter iframe {
    max-width: 420px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
}

/* Footer */
footer {
    padding: 48px 32px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-credit {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-credit a {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
    .features {
        gap: 48px 60px;
    }

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

    .more-columns {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    .nav-inner {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .nav-links {
        display: flex;
        gap: 1.5rem;
    }

    .hero {
        padding: 100px 24px 48px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

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

    .section {
        padding: 48px 24px;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .more-wrapper {
        max-height: 400px;
        overflow: hidden;
        position: relative;
    }

    .more-wrapper.collapsed::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 120px;
        background: linear-gradient(to bottom, transparent, var(--bg));
        pointer-events: none;
    }

    .more-wrapper.expanded {
        max-height: none;
    }

    .more-wrapper.expanded::after {
        display: none;
    }

    .toggle-features-btn {
        display: block;
    }

    .secondary-cta h2 {
        font-size: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .gallery-item {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .nav-cta .btn-ghost {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* ===========================================
   SHARED COMPONENTS FOR ALL PAGES
   =========================================== */

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 32px 60px;
}

/* Page Headers */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Site Navigation (shared across all pages) */
/* Note: Uses .nav-inner, .nav-brand, .nav-links structure defined above */

/* Card Component */
.card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.card-highlight {
    border: 2px solid var(--accent);
    box-shadow: 0 4px 24px rgba(0, 102, 204, 0.08);
}

/* Content Sections */
.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.content-section h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 32px;
    margin-bottom: 12px;
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-section ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-left: 20px;
    margin-bottom: 16px;
}

.content-section li {
    margin-bottom: 8px;
}

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

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

.content-section a.btn {
    text-decoration: none;
}

.content-section a.btn-primary {
    color: white;
}

/* Site Footer (subpages) */
.site-footer {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.site-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.site-footer .footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
}

.site-footer .footer-links a:hover {
    color: var(--text);
}

.site-footer .footer-text,
.site-footer .footer-credit {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.site-footer .footer-text a,
.site-footer .footer-credit a {
    color: var(--text-secondary);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.footer-social a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--text);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Utility Classes */
.center-aligned {
    text-align: center;
}

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

/* Info Box */
.info-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 32px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.info-box h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

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

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

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

    .container {
        padding: 100px 24px 40px;
    }

    .page-title {
        font-size: 2rem;
    }
}

/* ===========================================
   PRICING PAGE STYLES
   =========================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
    padding-top: 16px;
}

.pricing-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.pricing-card-featured {
    border: 2px solid var(--accent);
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.1);
    padding-top: 48px;
}

.pricing-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    color: var(--accent);
    padding: 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.pricing-card h3 {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    text-align: center;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
    white-space: nowrap;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 8px;
    white-space: nowrap;
}

.pricing-price {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.pricing-breakdown {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    white-space: nowrap;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

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

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.pricing-cta {
    margin-top: auto;
    text-align: center;
}

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

.pricing-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

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

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

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card-featured {
        order: -1;
    }
}

/* Support Links */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    margin-top: 60px;
}

.support-item {
    text-align: center;
}

.support-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 8px;
}

.support-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.support-item a {
    color: var(--accent);
    text-decoration: none;
}

.support-item a:hover {
    text-decoration: underline;
}

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

/* ===========================================
   NEWS/BLOG PAGE STYLES
   =========================================== */

.news-container {
    max-width: 720px;
    margin: 0 auto;
}

.news-post {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.news-post:last-child {
    border-bottom: none;
}

.news-header {
    margin-bottom: 24px;
}

.news-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

.news-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.anchor-link {
    color: var(--border-strong);
    text-decoration: none;
    margin-left: 8px;
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 0.8em;
}

.news-title:hover .anchor-link {
    opacity: 1;
}

.anchor-link:hover {
    color: var(--accent);
}

.news-content {
    line-height: 1.7;
    color: var(--text-secondary);
}

.news-content h3 {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 32px;
    margin-bottom: 16px;
}

.news-content p {
    margin-bottom: 16px;
}

.news-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.news-content li {
    margin-bottom: 8px;
}

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

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

.news-content strong {
    color: var(--text);
}

.blog-img {
    display: block;
    margin: 24px 0;
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.blog-quote {
    font-style: italic;
    margin: 24px 0;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
    color: var(--text-secondary);
}

.tagline {
    font-style: italic;
    text-align: center;
    margin: 24px 0;
    font-size: 1.15rem;
    color: var(--text);
}

/* ===========================================
   PRESS PAGE STYLES
   =========================================== */

.press-hero {
    text-align: center;
    margin-bottom: 40px;
}

.press-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin: 40px 0;
}

.press-screenshot {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.press-contact {
    padding: 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.press-contact h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 16px 0;
}

.press-contact p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.press-contact a {
    color: var(--accent);
    text-decoration: none;
}

.press-contact a:hover {
    text-decoration: underline;
}

.newsworthy-box {
    background: rgba(0, 102, 204, 0.04);
    border: 1px solid rgba(0, 102, 204, 0.1);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 40px 0;
    text-align: left;
}

.newsworthy-box p {
    margin: 0;
    color: var(--text-secondary);
}

.newsworthy-box strong {
    color: var(--text);
}

.facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    margin: 24px 0;
}

.facts-grid div {
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.facts-grid strong {
    color: var(--text);
}

.facts-grid a {
    color: var(--accent);
    text-decoration: none;
}

.facts-grid a:hover {
    text-decoration: underline;
}

.boilerplate-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 20px 0;
    position: relative;
}

.copy-button {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--text);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.copy-button:hover {
    background: #333;
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.asset-item {
    text-align: center;
}

.asset-item img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.asset-item:hover img {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.1);
}

.asset-item p {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.asset-item strong {
    color: var(--text);
}

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

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

/* ===========================================
   LEGAL PAGES (Privacy, Terms)
   =========================================== */

.legal-container {
    max-width: 720px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--accent);
    text-decoration: none;
}

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

.legal-section strong {
    color: var(--text);
}

.legal-indented {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 2px solid var(--border);
}

/* ===========================================
   TESTIMONIALS (Subpages)
   =========================================== */

.testimonials-subpage {
    margin: 60px 0;
}

.testimonials-subpage h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text);
    text-align: center;
    margin-bottom: 32px;
}

.testimonials-subpage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-subpage-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.testimonial-subpage-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-subpage-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-subpage-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testimonial-subpage-author a {
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}

.testimonial-subpage-author a:hover {
    color: var(--accent);
}

.testimonial-subpage-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

@media (max-width: 900px) {
    .testimonials-subpage-grid {
        grid-template-columns: 1fr;
    }
}

/* Educational Note */
.educational-note {
    text-align: center;
    margin: 32px 0;
    padding: 20px 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    background: var(--bg-elevated);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius);
}

.educational-note strong {
    color: var(--text);
}

.educational-note a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

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

/* Button variations */
.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* Download button (alias for btn-primary) */
.download-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--text);
    color: white;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.download-button:hover {
    background: #333;
    text-decoration: none;
}

.download-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 12px;
}

/* Button (simple) for press page etc */
a.button,
.button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--text);
    color: white;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

a.button:hover,
.button:hover {
    background: #333;
    color: white;
    text-decoration: none;
}

/* Section divider */
.section {
    margin-bottom: 40px;
}

.section h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 20px;
}

/* Blockquote */
blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-secondary);
}

blockquote footer {
    font-style: normal;
    margin-top: 12px;
    font-size: 0.9rem;
}

/* Hide old elements */
.marquee-container,
.news-banner {
    display: none;
}

/* Remove GIFs from display */
img[src*=".gif"] {
    display: none;
}
