:root {
    --color-bg: #050505;
    --color-card: #0a0a0a;
    --color-primary: #00d9ff;
    --color-secondary: #7000ff;
    --color-text: #ffffff;
    --color-text-dim: rgba(255, 255, 255, 0.6);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.5;
}

.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 217, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(112, 0, 255, 0.05) 0%, transparent 40%);
}

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

/* Header */
header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

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

.nav-link {
    color: var(--color-text-dim);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
}

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

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    /* display: flex removed to prevent flex-wraper behavior on text nodes */
}

.logo span {
    color: var(--color-primary);
}

/* Platform Ecosystem Strip */
.ecosystem-strip {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.ecosystem-strip::-webkit-scrollbar {
    display: none;
}

.ecosystem-scroll {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 0 24px;
    min-width: max-content;
}

.eco-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #f5f5f7;
    transition: opacity 0.2s ease;
    min-width: 72px;
}

.eco-item:hover {
    opacity: 0.7;
}

.eco-icon {
    font-size: 36px !important;
    color: #f5f5f7;
}

.eco-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #f5f5f7;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .ecosystem-scroll {
        justify-content: flex-start;
        gap: 36px;
    }
}

/* Apple Style Hero */
.hero-apple {
    position: relative;
    padding: 18vh 0 60px;
    text-align: center;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.ring-1 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

.ring-2 {
    width: 60vw;
    height: 60vw;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.ring-3 {
    width: 80vw;
    height: 80vw;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content .badge {
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--color-text-dim);
    display: block;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    color: #fff;
    background: linear-gradient(to bottom right, #fff 40%, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-text-dim);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Start the image from the absolute top and span the full width without cropping the sides */
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 1;
    /* Full opacity as requested */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Invisible at the top to keep background bright, fading to black at the bottom */
    background: linear-gradient(to bottom, transparent 0%, rgba(5, 5, 5, 0.6) 50%, var(--color-bg) 90%);
    z-index: 2;
}

.badge-waiting {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    color: #ffb400;
    border: 1px solid rgba(255, 180, 0, 0.3);
    background: rgba(255, 180, 0, 0.1);
}

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

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--color-primary);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline:hover {
    background: var(--glass);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Intro Pitch Section (Apple Style: Description + Price/Value + Buy) */
.intro-pitch {
    padding: 80px 0 100px;
    background: #000;
    color: #f5f5f7;
}

.intro-pitch-content {
    max-width: 680px;
}

.pitch-text {
    font-size: clamp(1.5rem, 3.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: #f5f5f7;
    margin-bottom: 32px;
}

.pitch-price {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--color-primary);
    margin-bottom: 24px;
}

.btn-buy {
    display: inline-block;
    background: #0071e3;
    color: #fff;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-buy:hover {
    background: #0077ed;
}

@media (max-width: 600px) {
    .intro-pitch {
        padding: 60px 0 80px;
    }

    .intro-pitch-content {
        padding: 0 24px;
    }

    .pitch-text {
        font-size: 1.375rem;
    }
}

/* Bento Box Features (Apple AirTag Style) */
.bento-section {
    padding: 100px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: #111111;
    /* Very dark grey, typical for Apple Dark Mode cards */
    border-radius: 40px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-card.full-width {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 400px;
}

.bento-card.full-width.reverse-layout {
    flex-direction: row-reverse;
}

.bento-text {
    z-index: 2;
    position: relative;
}

.bento-card.half-width .bento-text {
    margin-bottom: auto;
}

.bento-card.full-width .bento-text {
    flex: 1;
    max-width: 500px;
}

.bento-text-side {
    flex: 1;
    max-width: 400px;
    z-index: 2;
}

.bento-text h2,
.bento-text-side h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #fff;
}

.bento-text p,
.bento-text-side p {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: var(--color-text-dim);
    line-height: 1.5;
}

.bento-media {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-card.half-width .bento-media {
    margin-top: 40px;
    min-height: 200px;
}

.bento-card.full-width .bento-media {
    flex: 1;
}

.bento-media-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Background Gradients for Cards */
.bento-card.half-width .glow-blue {
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.15), transparent 70%);
}

.bento-card.half-width .glow-purple {
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.15), transparent 70%);
}

.bento-card.full-width.glow-cyan {
    background: radial-gradient(circle at left center, rgba(0, 217, 255, 0.08), transparent 50%);
}

.giant-icon {
    font-size: 140px !important;
    color: rgba(255, 255, 255, 0.9);
}

.platform-icons.large {
    display: flex;
    gap: 32px;
    font-size: 72px;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-card.full-width,
    .bento-card.full-width.reverse-layout {
        flex-direction: column;
        text-align: left;
        padding: 40px 24px 0;
        gap: 24px;
        min-height: auto;
    }

    .bento-card {
        padding: 40px 24px 0;
        min-height: auto;
        text-align: left;
    }

    /* Target the text wrapper */
    .bento-card.full-width .bento-text,
    .bento-card.full-width .bento-text-side {
        max-width: 100%;
        margin-bottom: 24px;
        width: 100%;
    }

    .bento-text h2,
    .bento-text-side h2 {
        font-size: 2.25rem;
        margin-bottom: 16px;
    }

    .bento-text p,
    .bento-text-side p {
        font-size: 1.05rem;
    }

    /* Target media blocks */
    .bento-media,
    .bento-media-side {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        /* Pin icons to the bottom inside cards on mobile */
    }

    .bento-card.half-width .bento-media {
        min-height: 180px;
        margin-top: 32px;
    }
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--color-text-dim);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .cta-group {
        flex-direction: column;
    }

    /* Mobile Header Fixes */
    .header-nav {
        gap: 12px;
    }

    .header-nav .nav-link {
        display: none;
        /* Hide 'Learn' on mobile to prevent crowding */
    }

    .btn-small {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Mobile Hero Image Swap (Behind Text) */
.mobile-hero-img {
    display: none;
}

@media (max-width: 600px) {
    .hero-apple {
        justify-content: flex-start;
        padding-top: 100px;
    }

    .mobile-hero-img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        z-index: 0;
        opacity: 0.45;
        /* Darken for readability */
        pointer-events: none;
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    }

    .hero-rings,
    .hero-image-wrapper {
        display: none;
        /* Hide rings & desktop image to prevent clashes */
    }

    .hero-content {
        position: relative;
        z-index: 10;
        /* Increase padding if needed so text isn't at the very edge, but hero itself handles this */
    }
}

/* Platforms Section */
.platforms {
    text-align: center;
    padding: 40px 0 60px;
}

.platforms-label {
    color: var(--color-text-dim);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platform-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-dim);
    font-size: 1rem;
}

.platform-icon span {
    font-size: 1.25rem;
}

/* App Preview */
.app-preview {
    padding: 40px 0 80px;
}

.preview-container {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    max-width: 900px;
    margin: 0 auto;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    display: block;
}

.preview-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--color-text-dim);
    gap: 12px;
}

.preview-placeholder .material-icons-round {
    font-size: 48px;
    opacity: 0.3;
}

.preview-placeholder p {
    text-align: center;
    font-size: 0.875rem;
}

.preview-placeholder small {
    opacity: 0.5;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    text-align: center;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 32px 24px;
    border-radius: 20px;
    max-width: 260px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 16px;
    color: #000;
}

.step h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.step p {
    color: var(--color-text-dim);
    font-size: 0.875rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--color-text-dim);
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 16px;
}

.faq-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #fff;
}

.faq-item p {
    color: var(--color-text-dim);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(112, 0, 255, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    margin: 40px 0 80px;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.final-cta p {
    color: var(--color-text-dim);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* ===== Premium Footer ===== */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col p {
    color: var(--color-text-dim);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: var(--color-text-dim);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dim);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.system-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 100px;
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(2.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .footer-col {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

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


/* Download Section */
.download-section {
    padding: 80px 0;
    text-align: center;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.download-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.download-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
}

.download-card.ios {
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.download-card.chrome {
    background: linear-gradient(180deg, rgba(112, 0, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.download-card.safari {
    background: linear-gradient(180deg, rgba(0, 122, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

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

.platform-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.qr-container {
    margin: 24px 0;
}

.qr-placeholder {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.qr-caption {
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

.extension-features {
    margin-bottom: 32px;
    width: 100%;
}

.extension-features ul {
    list-style: none;
    text-align: left;
}

.extension-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-dim);
    font-size: 0.9375rem;
    margin-bottom: 12px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Additions */
@media (max-width: 768px) {
    .app-preview {
        display: none;
    }

    .step-arrow {
        display: none;
    }

    .steps {
        flex-direction: column;
        align-items: stretch;
    }

    .step {
        max-width: 100%;
    }

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

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

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

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

    .hero p {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 5px 14px;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
        padding: 0 8px;
    }

    .cta-group .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .download-card {
        padding: 24px;
    }

    .platform-header h3 {
        font-size: 1.25rem;
    }

    .download-card .btn-full {
        margin-top: 20px;
    }

    .beta-status {
        margin: 16px 0;
    }

    .section-heading {
        font-size: 1.625rem;
    }

    .how-it-works,
    .features,
    .faq,
    .download-section {
        padding: 60px 0;
    }

    .final-cta {
        padding: 48px 24px;
        margin: 32px 0 60px;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }

    .final-cta p {
        font-size: 1rem;
    }

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

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

    .footer-links a {
        font-size: 0.8125rem;
    }
}

@media (max-width: 600px) {
    .hero-apple {
        padding: 60px 0 40px;
        min-height: 70vh;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 16px;
    }

    .hero-rings {
        transform: translate(-50%, -40%);
        /* Shift rings slightly up on mobile */
    }

    .ring-1 {
        width: 60vw;
        height: 60vw;
    }

    .ring-2 {
        width: 90vw;
        height: 90vw;
    }

    .ring-3 {
        width: 120vw;
        height: 120vw;
    }

    h1 {
        font-size: clamp(2.5rem, 11vw, 3.2rem);
        line-height: 1.05;
        margin-bottom: 20px;
        letter-spacing: -0.04em;
    }

    .hero-subtext {
        font-size: 1.05rem;
        margin-bottom: 32px;
        line-height: 1.4;
    }

    .platform-icons.large {
        font-size: 48px;
        gap: 20px;
    }

    .giant-icon {
        font-size: 100px !important;
    }

    .bento-card {
        border-radius: 32px;
        /* Slightly tighter radius for mobile */
    }
}

/* ===== Social Proof Strip ===== */
.social-proof-strip {
    padding: 48px 0;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.5);
}

.proof-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.proof-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.proof-label {
    font-size: 0.875rem;
    color: var(--color-text-dim);
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 48px;
    background: var(--glass-border);
}

@media (max-width: 600px) {
    .proof-content {
        gap: 24px;
    }

    .proof-divider {
        display: none;
    }

    .proof-number {
        font-size: 1.5rem;
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--color-text-dim);
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-quote strong {
    color: #fff;
}

.testimonial-author {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

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

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

/* ===== Section Subheading ===== */
.section-subheading {
    text-align: center;
    color: var(--color-text-dim);
    font-size: 1.125rem;
    margin-top: -32px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section-subheading {
        font-size: 1rem;
        padding: 0 16px;
    }
}

/* ===== Exit Intent Popup ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    background: #111;
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 48px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-card {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text-dim);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.popup-close:hover {
    color: #fff;
}

.popup-icon {
    font-size: 48px !important;
    color: var(--color-primary);
    margin-bottom: 16px;
    display: block;
}

.popup-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.popup-card p {
    color: var(--color-text-dim);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.popup-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: 14px;
}

.popup-alt-link {
    display: block;
    margin-top: 16px;
    color: var(--color-primary);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.popup-alt-link:hover {
    opacity: 0.8;
}

/* ===== Small Note ===== */
.small-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 12px;
}

/* Image Logo */
.logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}