/*
Theme Name: Photoflare
Theme URI: https://photoflare.app
Author: Photoflare
Description: Official theme for Photoflare - PhotoPrism iOS Client
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: photoflare
*/

:root {
    /* App Brand Colors */
    --color-primary: #FF9933;
    --color-primary-dark: #FF801A;
    --color-primary-pale: rgba(255, 230, 204, 0.6);

    /* Surface Colors */
    --color-bg: #FFFFFF;
    --color-bg-alt: #F7F7F7;

    /* Text Colors */
    --color-text: #1A1A1A;
    --color-text-secondary: #666666;

    /* UI Colors */
    --color-border: #e5e5e7;
    --gradient-hero: linear-gradient(135deg, #FF9933 0%, #FF801A 100%);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --radius-sm: 8px;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    :root {
        --color-primary: #FF801A;
        --color-primary-dark: #FF9933;
        --color-primary-pale: rgba(204, 179, 153, 0.5);
        --color-bg: #1A1A1A;
        --color-bg-alt: #1F1F1F;
        --color-text: #F5F5F5;
        --color-text-secondary: #999999;
        --color-border: #333333;
        --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
        --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

@media (prefers-color-scheme: dark) {
    .site-header {
        background: rgba(26, 26, 26, 0.8);
    }
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 20px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-icon .icon-light {
    display: block;
}

.logo-icon .icon-dark {
    display: none;
}

@media (prefers-color-scheme: dark) {
    .logo-icon .icon-light {
        display: none;
    }

    .logo-icon .icon-dark {
        display: block;
    }
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

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

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

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

.hero-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-icon .icon-light {
    display: block;
}

.hero-icon .icon-dark {
    display: none;
}

@media (prefers-color-scheme: dark) {
    .hero-icon .icon-light {
        display: none;
    }

    .hero-icon .icon-dark {
        display: block;
    }
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

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

.hero .subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-primary {
    background: white;
    color: #1A1A1A;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* Feature Cards (shared) */

.feature-card {
    padding: 32px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--color-bg-alt);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

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

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

.feature-card ul {
    margin-top: 12px;
    padding-left: 20px;
    color: var(--color-text-secondary);
    font-size: 15px;
}

.feature-card ul li {
    margin-bottom: 6px;
}

/* Spotlight Sections */
.spotlight {
    padding: 100px 0;
    overflow: hidden;
}

.spotlight-alt {
    background: var(--color-bg-alt);
}

.spotlight-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.spotlight-image-left .spotlight-media {
    order: 0;
}

.spotlight-image-left .spotlight-content {
    order: 1;
}

.spotlight-image-right .spotlight-media {
    order: 1;
}

.spotlight-image-right .spotlight-content {
    order: 0;
}

.spotlight-media {
    display: flex;
    justify-content: center;
}

.spotlight-screenshot {
    max-width: 280px;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s, box-shadow 0.3s;
}

.spotlight-screenshot:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.spotlight-screenshot-wide {
    max-width: 480px;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s, box-shadow 0.3s;
}

.spotlight-screenshot-wide:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.spotlight-media .screenshot-light {
    display: block;
}

.spotlight-media .screenshot-dark {
    display: none;
}

@media (prefers-color-scheme: dark) {
    .spotlight-media .screenshot-light {
        display: none;
    }

    .spotlight-media .screenshot-dark {
        display: block;
    }
}

.spotlight-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.spotlight-lead {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.spotlight-features {
    list-style: none;
    padding: 0;
}

.spotlight-features li {
    padding: 12px 0;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.spotlight-features li:last-child {
    border-bottom: 1px solid var(--color-border);
}

.spotlight-features li strong {
    color: var(--color-text);
}

.spotlight-features li a {
    color: var(--color-primary);
    text-decoration: none;
}

.spotlight-features li a:hover {
    text-decoration: underline;
}

/* Spotlight Badge */
.spotlight-badge {
    display: inline-block;
    background: var(--color-primary-pale);
    color: var(--color-primary-dark);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 12px;
    vertical-align: middle;
}

/* Detail Page Screenshot Gallery */
.detail-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.detail-screenshot-pair {
    text-align: center;
}

.detail-screenshot-pair .spotlight-media {
    margin-bottom: 12px;
}

.detail-screenshot-pair .spotlight-screenshot {
    max-width: 240px;
}

.detail-screenshot-pair p {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Feature Group */
.feature-group {
    padding: 80px 0;
}

.feature-group h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
}

.feature-group-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

/* Privacy Banner */
.privacy-banner {
    padding: 80px 0;
    background: var(--color-bg-alt);
    text-align: center;
}

.privacy-banner h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.privacy-banner p {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    padding: 48px 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

/* Privacy Policy Page */
.page-header {
    padding: 140px 0 60px;
    background: var(--color-bg-alt);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header p {
    color: var(--color-text-secondary);
    font-size: 18px;
}

.page-content {
    padding: 64px 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 16px;
}

.page-content h2:first-child {
    margin-top: 0;
}

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

.page-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
    color: var(--color-text-secondary);
}

.page-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.highlight-box {
    background: var(--color-primary-pale);
    border-left: 4px solid var(--color-primary);
    padding: 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 32px 0;
}

.highlight-box p {
    color: var(--color-text);
    margin: 0;
    font-weight: 500;
}

/* Roadmap Page */
.roadmap-hero {
    padding: 140px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
    color: white;
}

.roadmap-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.roadmap-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.roadmap-hero h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.roadmap-hero p {
    font-size: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

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

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

.roadmap-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-hero);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.roadmap-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.roadmap-card:hover::before {
    opacity: 1;
}

.roadmap-card.completed {
    background: rgba(46, 125, 50, 0.05);
    border-color: rgba(46, 125, 50, 0.2);
}

@media (prefers-color-scheme: dark) {
    .roadmap-card.completed {
        background: rgba(46, 125, 50, 0.08);
        border-color: rgba(46, 125, 50, 0.25);
    }
}

.roadmap-card-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.roadmap-card-content {
    flex: 1;
}

.roadmap-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.roadmap-card-content p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.roadmap-status {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
}

.roadmap-status.upcoming {
    background: var(--color-primary-pale);
    color: var(--color-primary-dark);
}

.roadmap-status.in-progress {
    background: #E8F5E9;
    color: #2E7D32;
}

.roadmap-status.completed {
    background: #E3F2FD;
    color: #1565C0;
}

@media (prefers-color-scheme: dark) {
    .roadmap-status.in-progress {
        background: rgba(46, 125, 50, 0.2);
        color: #81C784;
    }

    .roadmap-status.completed {
        background: rgba(46, 125, 50, 0.2);
        color: #81C784;
    }
}

.roadmap-cta {
    text-align: center;
    padding: 60px;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.roadmap-cta h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.roadmap-cta .btn-primary {
    background: var(--gradient-hero);
    color: white;
    padding: 16px 32px;
}

.roadmap-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 128, 26, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle-checkbox {
    display: none;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 48px;
    }

    /* Spotlight - Tablet */
    .spotlight {
        padding: 72px 0;
    }

    .spotlight-inner {
        gap: 40px;
    }

    .spotlight-screenshot {
        max-width: 240px;
    }

    .spotlight-screenshot-wide {
        max-width: 400px;
    }

    .spotlight-content h2 {
        font-size: 30px;
    }

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

    .detail-screenshot-pair .spotlight-screenshot {
        max-width: 200px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 16px;
    }

    /* Mobile Navigation */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--color-bg);
        padding: 80px 32px 32px;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 18px;
    }

    .menu-toggle-checkbox:checked ~ nav .nav-links {
        right: 0;
    }

    .menu-toggle-checkbox:checked ~ .menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle-checkbox:checked ~ .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle-checkbox:checked ~ .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .menu-toggle-checkbox:checked ~ .menu-overlay {
        display: block;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 60px;
    }

    .hero-icon {
        width: 100px;
        height: 100px;
        border-radius: 24px;
        margin-bottom: 24px;
    }

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

    .hero .tagline {
        font-size: 20px;
    }

    .hero .subtitle {
        font-size: 16px;
        padding: 0 8px;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 24px;
    }

    /* Feature Cards - Mobile */
    .feature-card {
        padding: 24px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
        border-radius: 12px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p,
    .feature-card ul {
        font-size: 14px;
    }

    /* Spotlight - Mobile */
    .spotlight {
        padding: 60px 0;
    }

    .spotlight-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .spotlight-image-left .spotlight-media,
    .spotlight-image-right .spotlight-media {
        order: 0;
    }

    .spotlight-image-left .spotlight-content,
    .spotlight-image-right .spotlight-content {
        order: 1;
        text-align: center;
    }

    .spotlight-screenshot {
        max-width: 200px;
    }

    .spotlight-screenshot-wide {
        max-width: 300px;
    }

    .spotlight-content h2 {
        font-size: 28px;
    }

    .spotlight-lead {
        font-size: 16px;
    }

    .spotlight-features {
        text-align: left;
    }

    .spotlight-badge {
        display: block;
        margin: 8px auto 0;
        width: fit-content;
    }

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

    .detail-screenshot-pair .spotlight-screenshot {
        max-width: 220px;
    }

    /* Feature Group - Mobile */
    .feature-group {
        padding: 60px 0;
    }

    .feature-group h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .feature-group-grid {
        grid-template-columns: 1fr;
    }

    /* Privacy Banner */
    .privacy-banner {
        padding: 60px 0;
    }

    .privacy-banner h2 {
        font-size: 26px;
    }

    .privacy-banner p {
        font-size: 16px;
        padding: 0 8px;
    }

    /* Footer */
    .site-footer {
        padding: 32px 0;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

    .footer-links a {
        font-size: 15px;
        padding: 8px 0;
    }

    /* Privacy Page */
    .page-header {
        padding: 120px 0 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .page-content {
        padding: 40px 0;
    }

    .page-content h2 {
        font-size: 20px;
        margin: 32px 0 12px;
    }

    .page-content p,
    .page-content ul {
        font-size: 15px;
    }

    .highlight-box {
        padding: 20px;
        margin: 24px 0;
    }

    /* Roadmap Page */
    .roadmap-hero {
        padding: 120px 0 60px;
    }

    .roadmap-hero h1 {
        font-size: 36px;
    }

    .roadmap-hero p {
        font-size: 17px;
    }

    .roadmap-section {
        padding: 60px 0;
    }

    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 60px;
    }

    .roadmap-card {
        padding: 20px;
        padding-right: 24px;
    }

    .roadmap-card-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
        border-radius: 12px;
    }

    .roadmap-card-content h3 {
        font-size: 16px;
        padding-right: 60px;
    }

    .roadmap-card-content p {
        font-size: 14px;
    }

    .roadmap-status {
        top: 12px;
        right: 12px;
        font-size: 10px;
        padding: 3px 8px;
    }

    .roadmap-cta {
        padding: 40px 24px;
    }

    .roadmap-cta h2 {
        font-size: 24px;
    }

    .roadmap-cta p {
        font-size: 16px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-inner {
        height: 56px;
    }

    .logo {
        font-size: 18px;
        gap: 10px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

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

    .hero-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero .tagline {
        font-size: 18px;
    }

    .hero .subtitle {
        font-size: 15px;
    }

    .btn {
        font-size: 15px;
        padding: 14px 20px;
    }

    .feature-card {
        padding: 20px;
    }

    /* Spotlight - Small Mobile */
    .spotlight {
        padding: 48px 0;
    }

    .spotlight-screenshot {
        max-width: 180px;
    }

    .spotlight-screenshot-wide {
        max-width: 260px;
    }

    .spotlight-content h2 {
        font-size: 24px;
    }

    .spotlight-lead {
        font-size: 15px;
    }

    .spotlight-features li {
        font-size: 14px;
    }

    /* Feature Group - Small Mobile */
    .feature-group {
        padding: 48px 0;
    }

    .feature-group h2 {
        font-size: 24px;
    }

    .privacy-banner h2 {
        font-size: 22px;
    }

    .privacy-banner p {
        font-size: 15px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .roadmap-hero h1 {
        font-size: 28px;
    }

    .roadmap-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .roadmap-card {
        gap: 16px;
    }

    .roadmap-card-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .roadmap-cta {
        padding: 32px 20px;
    }

    .roadmap-cta h2 {
        font-size: 22px;
    }
}
