:root {
    color-scheme: light;
    --bg: #ffffff;
    --bg-secondary: #f8f9ff;
    --card: #ffffff;
    --card-hover: #f5f7ff;
    --accent: #8b5cf6;
    --accent-2: #7c3aed;
    --accent-light: #a78bfa;
    --accent-soft: rgba(139, 92, 246, 0.1);
    --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #a78bfa 100%);
    --text: #1a1a2e;
    --text-secondary: #2d2d44;
    --muted: #6b7280;
    --border: rgba(139, 92, 246, 0.2);
    --border-light: rgba(139, 92, 246, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(139, 92, 246, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(139, 92, 246, 0.15), 0 2px 4px -1px rgba(139, 92, 246, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(139, 92, 246, 0.2), 0 4px 6px -2px rgba(139, 92, 246, 0.15);
    --shadow-xl: 0 20px 25px -5px rgba(139, 92, 246, 0.25), 0 10px 10px -5px rgba(139, 92, 246, 0.15);
    font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.06), transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: min(1280px, 92vw);
    margin: 0 auto;
    padding: 0 2rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.75rem;
    color: var(--text-secondary);
}

p {
    margin: 0 0 1.25rem;
    color: var(--muted);
    font-size: 1rem;
}

ul {
    padding-left: 1.25rem;
}

header,
section {
    position: relative;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(139, 92, 246, 0.1);
}

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

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.logo:hover {
    opacity: 0.8;
}

/* Logo image sizing */
.logo.logo-img img {
    display: block;
    height: 90px;
    width: auto;
}

.site-footer .logo.logo-img img {
    height: 78px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.waitlist-link {
    padding: 0.625rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    transition: all 0.2s ease;
    margin-left: 0.5rem;
}

.waitlist-link:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent-light);
}

.hero {
    padding: 8rem 0 6rem;
    position: relative;
}

.page-hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-hero .section-header {
    margin-bottom: 0;
}

.page-hero h1 {
    margin-bottom: 1.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
}

.subhead {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.value-carousel-container {
    margin: 3rem auto 0;
    position: relative;
    max-width: 1200px;
}

.value-carousel-wrapper {
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    position: relative;
}

.value-carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.value-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 0;
    background: var(--card);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.2));
}

.value-card p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: var(--card);
    color: var(--accent);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--accent-gradient);
    border-color: var(--accent);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.indicator:hover::after {
    border-color: var(--accent);
}

.indicator.active {
    background: var(--accent-gradient);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.3);
}

.indicator.active::after {
    display: none;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(139, 92, 246, 0.4);
}

.cta:active {
    transform: translateY(0);
}

.hero-card {
    background: var(--card);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.card-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.card-header p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--muted);
}

.label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.stat {
    margin-bottom: 1.5rem;
}

.stat:last-of-type {
    margin-bottom: 0;
}

.timeline {
    border-top: 1px solid var(--border-light);
    margin-top: 2rem;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 0.375rem;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

.timeline-title {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.timeline-date {
    font-size: 0.8125rem;
    color: var(--muted);
    margin: 0;
}

.section {
    padding: 6rem 0;
}

.light-bg {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.light-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(124, 58, 237, 0.02) 100%);
    pointer-events: none;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header .eyebrow {
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
}

.intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.two-col {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.three-col {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.card,
.service-card {
    background: var(--card);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover,
.service-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.service-card p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    flex-grow: 1;
}

.highlight ul {
    list-style: none;
    padding: 0;
}

.highlight li {
    margin-bottom: 0.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vision {
    margin-top: 4rem;
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(124, 58, 237, 0.05) 100%);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.vision .eyebrow {
    margin-bottom: 1rem;
}

.vision h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    line-height: 1.4;
    color: var(--text);
    max-width: 900px;
    margin: 0 auto;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

ol {
    margin: 1.5rem 0;
    padding-left: 1.25rem;
}

.coming-soon {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 1.5rem 0;
}

.store-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-badges span {
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 0.875rem 1.5rem;
    background: var(--card);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
    box-shadow: var(--shadow-sm);
}

.store-badges span:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.download-card {
    justify-self: center;
}

.screen-mock {
    border-radius: 1.5rem;
    padding: 2rem;
    background: linear-gradient(165deg, rgba(210, 107, 255, 0.25), rgba(143, 76, 255, 0.25));
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 320px;
}

.progress {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
    overflow: hidden;
}

.progress span {
    display: block;
    height: 100%;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
}

.waitlist {
    padding-bottom: 7rem;
}

.waitlist-card {
    border-radius: 20px;
    border: 2px solid var(--border-light);
    padding: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.waitlist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.waitlist-card h2 {
    margin-bottom: 1rem;
}

.waitlist-card>div p {
    font-size: 1.0625rem;
    color: var(--muted);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.waitlist-form input {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    border: 2px solid var(--border-light);
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.waitlist-form input::placeholder {
    color: var(--muted);
}

.waitlist-form button {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: white;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-family: inherit;
}

.waitlist-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(139, 92, 246, 0.3);
}

.waitlist-form button:active {
    transform: translateY(0);
}

.form-note {
    font-size: 0.85rem;
}

.form-message {
    font-size: 0.9375rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

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

.site-footer {
    border-top: 2px solid var(--border-light);
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #ffffff 100%);
}

.site-footer a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.site-footer a[href^="mailto:"] {
    display: block;
    margin-top: 0.5rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.social a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
    display: block;
}

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

.legal {
    text-align: center;
    margin-top: 2rem;
    color: var(--muted);
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .waitlist-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem;
    }

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

@media (max-width: 640px) {
    .value-card {
        flex: 0 0 100%;
        padding: 2rem 1.5rem;
    }

    .value-carousel-wrapper {
        margin-bottom: 1rem;
    }
}

/* Hamburger button — hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animated X when open */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0;
        flex-wrap: nowrap;
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: -1.5rem;
        right: -1.5rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-light);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 1.5rem 1.25rem;
        box-shadow: 0 8px 24px rgba(139, 92, 246, 0.1);
        z-index: 150;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 1rem;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .nav a::after {
        display: none;
    }

    .waitlist-link {
        margin-left: 0;
        text-align: center;
        border: none;
        padding: 0.75rem 0;
        color: var(--accent) !important;
        font-weight: 600;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .waitlist-card {
        padding: 2.5rem 1.5rem;
    }

    .hero-card {
        padding: 2rem;
    }

    .card,
    .service-card {
        padding: 1.5rem;
    }

    .value-card {
        flex: 0 0 calc(50% - 0.75rem);
        padding: 2rem 1.5rem;
    }

    .value-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .value-card p {
        font-size: 0.9375rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}
/* ── Screenshots Section ── */
.screenshots-section {
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.screenshots-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    margin-top: 4rem;
}

.phone-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    transform: translateY(20px) scale(0.92);
    transition: transform 0.3s ease;
}

.phone-mockup--center {
    transform: translateY(0) scale(1);
    z-index: 1;
}

.phone-mockup:hover {
    transform: translateY(-8px) scale(0.95);
}

.phone-mockup--center:hover {
    transform: translateY(-8px) scale(1);
}

.phone-frame {
    width: 195px;
    height: 420px;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 12px;
    box-shadow:
        0 0 0 2px #3b0764,
        0 25px 60px rgba(109, 40, 217, 0.35),
        0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Notch */
.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 20px;
    background: #1a1a2e;
    border-radius: 0 0 14px 14px;
    z-index: 2;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
    display: block;
}

.screenshot-caption {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Mobile: horizontal scroll */
@media (max-width: 768px) {
    .screenshots-grid {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 1rem 1.5rem 2rem;
        gap: 1.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .screenshots-grid::-webkit-scrollbar {
        display: none;
    }

    .phone-mockup,
    .phone-mockup--center {
        transform: none;
        flex-shrink: 0;
    }

    .phone-frame {
        width: 180px;
        height: 380px;
    }
}
