:root {
    --bg: #000000;
    --bg-alt: #1A1A1A;
    --card: #1C1C1E;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --accent: #0a84ff;
    --accent-hover: #409cff;
    --border: rgba(255, 255, 255, 0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

[data-theme="light"] {
    --bg: #FAFAFA;
    --bg-alt: #F5F5F5;
    --card: #FFFFFF;
    --text-primary: #000000;
    --text-secondary: rgba(0, 0, 0, 0.6);
    --border: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
}

svg {
    max-width: 100%;
    overflow: hidden;
}

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

a:hover {
    color: var(--accent-hover);
}

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

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

[data-theme="light"] .nav {
    background: rgba(250, 250, 250, 0.8);
}

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

.nav-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

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

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

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

.nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--accent-hover);
    color: #fff !important;
}

.theme-toggle {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 14px;
    transition: background 0.2s;
}

.theme-toggle:hover {
    background: var(--bg-alt);
}

/* Mobile nav */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 16px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

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

.hero-logo {
    display: block;
    width: 120px;
    height: 120px;
    max-width: 120px;
    max-height: 120px;
    border-radius: var(--radius-xl);
    margin: 0 auto 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 32px;
}

.hero-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: var(--radius);
    font-size: 17px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    color: white;
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(10, 132, 255, 0.1);
    color: var(--accent);
}

.btn-secondary:hover {
    background: rgba(10, 132, 255, 0.2);
    color: var(--accent);
}

/* Features */
.features {
    padding: 60px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

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

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

/* Page content */
.page {
    padding: 100px 20px 60px;
}

.page-header {
    margin-bottom: 32px;
}

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

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

/* Legal sections */
.legal-section {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.legal-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.legal-section-icon {
    font-size: 20px;
}

.legal-section h2 {
    font-size: 18px;
    font-weight: 600;
}

.legal-section p,
.legal-section ul {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-section ul {
    margin-top: 8px;
    padding-left: 20px;
}

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

.legal-section .email-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-weight: 500;
}

/* FAQ */
.faq-item {
    background: var(--card);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: var(--bg-alt);
}

.faq-chevron {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease-out;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 20px 20px;
    opacity: 1;
}

.faq-answer ul,
.faq-answer ol {
    margin: 12px 0;
    padding-left: 24px;
    color: var(--text-secondary);
}

.faq-answer li {
    margin-bottom: 6px;
}

/* Support */
.contact-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.contact-card h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.contact-email {
    font-size: 20px;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 40px 20px;
    border-top: 1px solid var(--border);
    margin-top: 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

@media (max-width: 640px) {
    .hero h1 {
        font-size: 32px;
    }

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

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

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

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.28s ease-out, transform 0.28s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.btn {
    transition: all 0.2s ease;
}

.btn:active {
    transform: scale(0.97);
}

/* Developer section */
.developer-section {
    padding: 60px 20px;
    text-align: center;
}

.developer-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.developer-section p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--bg-alt);
    border-color: var(--accent);
    color: var(--text-primary);
    transform: translateY(-2px);
}

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

@media (max-width: 640px) {
    .social-grid {
        gap: 8px;
    }

    .social-link {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Download page */
.download-hero {
    padding: 120px 20px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.download-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.version-badge {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(10, 132, 255, 0.1);
}

.platform-section {
    padding: 20px 20px 60px;
    max-width: 700px;
    margin: 0 auto;
}

.platform-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .platform-cards {
        grid-template-columns: 1fr;
    }
}

.platform-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .platform-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.platform-icon {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
    margin: 0 auto 16px;
    color: var(--accent);
    overflow: hidden;
}

.platform-icon svg {
    width: 100%;
    height: 100%;
    max-width: 48px;
    max-height: 48px;
}

.platform-card h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.platform-req {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.platform-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
}

.platform-btn svg {
    width: 18px;
    height: 18px;
}

.platform-card.platform-muted {
    opacity: 0.4;
    filter: grayscale(0.5);
    transition: opacity 0.3s, filter 0.3s, transform 0.2s, box-shadow 0.2s;
}

.platform-card.platform-muted:hover {
    opacity: 0.75;
    filter: grayscale(0);
}

.platform-btn-alt {
    margin-top: 8px;
}

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

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.download-features {
    max-width: 900px;
    margin: 0 auto;
}

.desktop-updates {
    padding: 20px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.desktop-updates-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.desktop-updates-meta {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.desktop-updates-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.desktop-updates-list li + li {
    margin-top: 8px;
}

.feature-icon-svg {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    color: var(--accent);
}

.feature-icon-svg svg {
    width: 100%;
    height: 100%;
}

.also-available {
    padding: 40px 20px 60px;
    text-align: center;
}

.platform-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: border-color 0.2s;
}

a.platform-badge:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.platform-badge svg {
    flex-shrink: 0;
}

.platform-badge-muted {
    opacity: 0.75;
    border-style: dashed;
}

.download-faq {
    padding: 40px 20px 60px;
}

/* Mac Desktop Frame */
.mac-frame {
    position: relative;
    width: 480px;
    max-width: 100%;
    background: #1c1c1e;
    border-radius: 12px;
    padding: 0;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

[data-theme="light"] .mac-frame {
    background: #e8e8ed;
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.05),
        0 20px 40px rgba(0, 0, 0, 0.12);
}

.mac-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #2c2c2e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .mac-titlebar {
    background: #d1d1d6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mac-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mac-dot.red { background: #ff5f57; }
.mac-dot.yellow { background: #febc2e; }
.mac-dot.green { background: #28c840; }

.mac-screen {
    width: 100%;
    overflow: hidden;
    background: #000;
}

.mac-screen img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.mac-stand {
    width: 80px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(180deg, #3a3a3c, #2c2c2e);
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

[data-theme="light"] .mac-stand {
    background: linear-gradient(180deg, #c7c7cc, #b0b0b5);
}

.mac-base {
    width: 140px;
    height: 6px;
    margin: 0 auto;
    background: #3a3a3c;
    border-radius: 0 0 4px 4px;
}

[data-theme="light"] .mac-base {
    background: #c7c7cc;
}

/* Apple Watch Frame */
.watch-frame {
    position: relative;
    width: 130px;
    background: #1c1c1e;
    border-radius: 36px;
    padding: 10px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 0 3px #0a0a0a,
        0 12px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .watch-frame {
    background: #e8e8ed;
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.05),
        0 0 0 3px #d1d1d6,
        0 12px 30px rgba(0, 0, 0, 0.12);
}

.watch-crown {
    position: absolute;
    right: -8px;
    top: 35%;
    width: 6px;
    height: 28px;
    background: #3a3a3c;
    border-radius: 3px;
}

[data-theme="light"] .watch-crown {
    background: #c7c7cc;
}

.watch-screen {
    width: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: #000;
}

.watch-screen img {
    width: 100%;
    height: auto;
    display: block;
}

/* Vision Pro Frame */
.vision-frame {
    position: relative;
    width: 560px;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.08),
        0 20px 50px rgba(0, 0, 0, 0.35);
}

.vision-screen {
    width: 100%;
    overflow: hidden;
    background: #000;
}

.vision-screen img {
    width: 100%;
    height: auto;
    display: block;
}

.vision-glass {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

/* Device Showcase Sections */
.device-showcase {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.device-showcase-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.device-showcase-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.device-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
}

.device-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

a.device-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

a.device-link:hover {
    transform: scale(1.03);
}

.device-caption {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.watch-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
}

@media (max-width: 1200px) {
    .mac-frame {
        width: 400px;
    }

    .vision-frame {
        width: 460px;
    }
}

@media (max-width: 900px) {
    .mac-frame {
        width: 340px;
    }

    .vision-frame {
        width: 380px;
    }

    .watch-frame {
        width: 110px;
        border-radius: 30px;
        padding: 8px;
    }

    .watch-screen {
        border-radius: 22px;
    }

    .watch-crown {
        height: 22px;
        right: -6px;
    }
}

@media (max-width: 640px) {
    .mac-frame {
        width: 300px;
    }

    .vision-frame {
        width: 300px;
        border-radius: 14px;
    }

    .vision-glass {
        border-radius: 14px;
    }

    .watch-frame {
        width: 95px;
        border-radius: 26px;
        padding: 7px;
    }

    .watch-screen {
        border-radius: 19px;
    }

    .device-row {
        gap: 20px;
    }

    .watch-row {
        gap: 16px;
    }

    .device-showcase-title {
        font-size: 22px;
    }
}

/* iPhone Showcase */
.web-preview {
    padding: 10px 20px 20px;
}

.web-preview-card {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(10, 132, 255, 0.14), rgba(10, 132, 255, 0.04));
    border: 1px solid rgba(10, 132, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}

[data-theme="light"] .web-preview-card {
    background: linear-gradient(160deg, rgba(10, 132, 255, 0.1), rgba(10, 132, 255, 0.03));
}

.web-preview-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.web-preview h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.web-preview p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0 auto 20px;
    max-width: 620px;
}

@media (max-width: 640px) {
    .web-preview-card {
        padding: 22px 18px;
    }

    .web-preview h2 {
        font-size: 24px;
    }
}

.showcase {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.showcase-scroll {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.iphone-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iphone-frame {
    position: relative;
    width: 220px;
    height: 450px;
    background: #1c1c1e;
    border-radius: 40px;
    padding: 8px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 0 3px #0a0a0a,
        0 20px 40px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .iphone-frame {
    background: #e8e8ed;
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.05),
        0 0 0 3px #d1d1d6,
        0 20px 40px rgba(0, 0, 0, 0.12);
}

.iphone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #0a0a0a;
    border-radius: 12px;
    z-index: 10;
}

[data-theme="light"] .iphone-notch {
    background: #1c1c1e;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
}

.iphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.iphone-caption {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

@media (max-width: 1200px) {
    .iphone-frame {
        width: 170px;
        height: 348px;
        border-radius: 32px;
        padding: 6px;
    }

    .iphone-notch {
        width: 62px;
        height: 19px;
        top: 6px;
        border-radius: 10px;
    }

    .iphone-screen {
        border-radius: 26px;
    }

    .showcase-scroll {
        gap: 14px;
    }

    .iphone-caption {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .iphone-frame {
        width: 130px;
        height: 266px;
        border-radius: 24px;
        padding: 5px;
    }

    .iphone-notch {
        width: 48px;
        height: 15px;
        top: 5px;
        border-radius: 8px;
    }

    .iphone-screen {
        border-radius: 19px;
    }

    .iphone-caption {
        font-size: 12px;
        margin-top: 10px;
    }

    .showcase-scroll {
        gap: 10px;
    }

    .showcase-title {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .showcase-scroll {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .showcase-scroll::-webkit-scrollbar {
        display: none;
    }

    .iphone-container {
        flex-shrink: 0;
    }

    .iphone-frame {
        width: 150px;
        height: 307px;
        border-radius: 26px;
        padding: 5px;
    }

    .iphone-notch {
        width: 55px;
        height: 17px;
        top: 5px;
        border-radius: 9px;
    }

    .iphone-screen {
        border-radius: 21px;
    }

    .showcase-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
}
