:root {
    --gradient-start: #db7f85;
    --gradient-end: #4f6cf1;
    --text-dark: #000000;
    --text-light: #FFFFFF;
    --background-light: #F9FAFB;
    --background-dark: #0f172a;
    --card-background-light: #FFFFFF;
    --card-background-dark: #1f2937;
    --border-color: #E5E7EB;
    --border-color-dark: rgba(148, 163, 184, 0.18);
    --muted-light: #4b5563;
    --muted-dark: #cbd5e1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* Confirmation Page */
.confirmation-wrapper {
    max-width: 860px;
    margin: 40px auto 96px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.confirmation-card {
    background: var(--card-background-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: clamp(28px, 5vw, 48px);
    text-align: center;
    box-shadow: 0 18px 45px rgba(79, 108, 241, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.confirmation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(79, 108, 241, 0.18);
}

.confirmation-card.is-error {
    border-color: #fca5a5;
    box-shadow: 0 18px 45px rgba(220, 38, 38, 0.15);
}

.confirmation-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 36px;
    box-shadow: 0 12px 30px rgba(79, 108, 241, 0.35);
}

.confirmation-icon.is-error {
    background: linear-gradient(135deg, #f87171, #ef4444);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3);
}

.confirmation-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
}

.confirmation-card.is-error .confirmation-eyebrow {
    color: #b91c1c;
}

.confirmation-title {
    font-size: clamp(1.75rem, 4.5vw, 2.4rem);
    margin-bottom: 12px;
    color: var(--text-dark);
}

.confirmation-message {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 28px;
}

.confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
}

.confirmation-primary,
.confirmation-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.confirmation-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(79, 108, 241, 0.35);
}

.confirmation-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(79, 108, 241, 0.4);
}

.confirmation-secondary {
    border: 1px solid var(--border-color);
    color: #1f2937;
    background: rgba(255, 255, 255, 0.9);
}

.confirmation-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
}

.confirmation-hint {
    font-size: 0.95rem;
    color: #4b5563;
}

.confirmation-help {
    background: rgba(79, 108, 241, 0.08);
    border: 1px solid rgba(79, 108, 241, 0.25);
    border-radius: 18px;
    padding: clamp(24px, 5vw, 40px);
}

.confirmation-help h2 {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    margin-bottom: 12px;
    color: #1f2937;
}

.confirmation-list {
    margin: 0 0 18px 0;
    padding-left: 20px;
    color: #374151;
}

.confirmation-list li {
    margin-bottom: 10px;
}

.confirmation-list a {
    color: var(--gradient-end);
    text-decoration: underline;
}

.confirmation-support {
    font-size: 0.95rem;
    color: #1f2937;
}

.confirmation-support a {
    color: var(--gradient-end);
    text-decoration: underline;
}

@media (max-width: 640px) {
    .confirmation-wrapper {
        margin-top: 24px;
    }

    .confirmation-actions {
        flex-direction: column;
    }

    .confirmation-primary,
    .confirmation-secondary {
        width: 100%;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 800px;
    padding-top: clamp(1.25rem, 5vh, 3rem);
    padding-bottom: clamp(2rem, 5vh, 3.5rem);
}

.hero-logo {
    margin-bottom: 2rem;
    position: relative;
    width: min(180px, 40vw);
    aspect-ratio: 1;
    border-radius: 25%;
    background: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-logo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    z-index: 1;
}

.hero-logo:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 40px rgba(255, 255, 255, 0.3),
        0 12px 32px rgba(0, 0, 0, 0.2);
}

.main-logo {
    width: 75%;
    height: auto;
    position: relative;
    z-index: 2;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero h1 {
    font-size: clamp(2.4rem, 7.5vw, 4rem);
    font-weight: 700;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
    padding: 0 1rem;
}

.hero .tagline {
    font-size: clamp(1.1rem, 3.5vw, 1.6rem);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    opacity: 0.9;
    max-width: min(600px, 90vw);
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 1rem;
}

.proof-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    white-space: nowrap;
}

/* Store Buttons */
.store-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.75rem, 3vw, 1rem);
    flex-wrap: nowrap;
    margin-top: 3rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 360px;
}

.store-button {
    display: inline-flex;
    flex: 1 1 0;
    justify-content: center;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.store-button img {
    width: 100%;
    max-width: 160px;
    height: auto;
    display: block;
}

.store-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background: var(--card-background-light);
}

.features h2 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    text-align: center;
    padding: 3rem;
    border-radius: 24px;
    background: var(--background-light);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-item h3 {
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--muted-light);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 8px 12px rgba(0, 0, 0, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transform-origin: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Screenshots Section */
.screenshots {
    padding: 4rem 0;
    background: var(--background-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-screenshots {
    width: 100%;
    padding: 0 0 3rem;
    position: relative;
    z-index: 1;
    background: transparent;
}

.hero-screenshots h2 {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-screenshots .swiper {
    max-width: 1200px;
    padding: 20px 72px 36px;
}

/* Benefits Section */
.benefits {
    background: var(--background-light);
    padding: 3.5rem 1.5rem 1.5rem;
}

.benefit-highlight {
    max-width: 980px;
    margin: 0 auto 2rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: clamp(1rem, 3vw, 2rem);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.benefit-highlight h2 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
}

.benefit-lead {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 0.75rem;
    color: #374151;
}

.benefit-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.benefit-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--muted-light);
    padding: 0.9rem 1rem;
    background: rgba(79, 108, 241, 0.06);
    border: 1px solid rgba(79, 108, 241, 0.1);
    border-radius: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.benefit-points li::before {
    content: "✓";
    flex: 0 0 auto;
    color: var(--gradient-end);
    font-weight: 700;
}

.founders-story {
    padding: 1rem 1.5rem 4rem;
    background: var(--background-light);
}

.story-card {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.story-eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gradient-end);
    margin-bottom: 0.75rem;
}

.story-card h2 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.story-copy {
    display: grid;
    gap: 1rem;
}

.story-copy p {
    color: var(--muted-light);
    font-size: 1rem;
    line-height: 1.75;
}

.swiper {
    width: 100%;
    max-width: 1400px;
    padding: 20px 80px;
    position: relative;
    overflow: visible;
}

@media (max-width: 768px) {
    .swiper {
        padding: 20px 40px;
    }
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gradient-end);
    width: 36px;
    height: 36px;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: transparent;
    transform: scale(1.08);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Pagination */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--gradient-end);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gradient-start);
    transform: scale(1.2);
}



.swiper-slide {
    width: 260px;
    height: 560px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 180px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        width: 160px;
        height: 350px;
    }
}

@media (max-width: 360px) {
    .swiper-slide {
        width: 140px;
        height: 310px;
    }
}

.screenshot-frame {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-background-light);
    border-radius: 40px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 12px 32px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    overflow: hidden;
    padding: 12px;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

@media (max-width: 480px) {
    .screenshot-frame {
        border-radius: 34px;
        padding: 8px;
    }
    .screenshot-img {
        border-radius: 26px;
    }
}

@media (max-width: 360px) {
    .screenshot-frame {
        border-radius: 30px;
        padding: 6px;
    }
    .screenshot-img {
        border-radius: 22px;
    }
}

.device-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1A1A1A;
    border-radius: 44px;
    padding: 12px;
    box-shadow: 
        0 48px 100px 0 rgba(17, 12, 46, 0.15),
        0 2px 4px 0 rgba(0, 0, 0, 0.1),
        inset 0 0 0 2px #2A2A2A;
    overflow: hidden;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 30px;
    background: #1A1A1A;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    z-index: 100;
}

.device-frame-buttons {
    position: absolute;
    right: -2px;
    top: 100px;
    width: 3px;
    height: 80px;
    background: #2A2A2A;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.device-frame-buttons::before {
    content: "";
    position: absolute;
    left: 0;
    top: -100px;
    width: 3px;
    height: 60px;
    background: #2A2A2A;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.app-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #F8F9FA;
}

.status-bar {
    height: 44px;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
}

.nav-bar {
    height: 44px;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #1A1A1A;
}

.content {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
}

/* Feed Screen Styles */
.favorite-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.favorite-image {
    width: 100%;
    height: 160px;
    background: #E5E7EB;
    border-radius: 8px;
    margin-bottom: 12px;
}

.favorite-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.favorite-title {
    height: 20px;
    width: 70%;
    background: #E5E7EB;
    border-radius: 4px;
}

.favorite-description {
    height: 16px;
    width: 90%;
    background: #E5E7EB;
    border-radius: 4px;
}

/* Profile Screen Styles */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.profile-image {
    width: 96px;
    height: 96px;
    background: #E5E7EB;
    border-radius: 50%;
    margin-bottom: 12px;
}

.profile-name {
    height: 24px;
    width: 120px;
    background: #E5E7EB;
    border-radius: 4px;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    height: 24px;
    width: 40px;
    background: #E5E7EB;
    border-radius: 4px;
}

.stat-label {
    height: 16px;
    width: 60px;
    background: #E5E7EB;
    border-radius: 4px;
}

.profile-favorites {
    height: 200px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Questions Screen Styles */
.question-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.question-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.question-avatar {
    width: 40px;
    height: 40px;
    background: #E5E7EB;
    border-radius: 50%;
}

.question-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.question-name {
    height: 16px;
    width: 100px;
    background: #E5E7EB;
    border-radius: 4px;
}

.question-time {
    height: 14px;
    width: 60px;
    background: #E5E7EB;
    border-radius: 4px;
}

.question-content {
    height: 60px;
    background: #E5E7EB;
    border-radius: 8px;
    margin-bottom: 12px;
}

.question-actions {
    height: 32px;
    background: #E5E7EB;
    border-radius: 4px;
}

/* Dummy Screen Styles */
.dummy-screen {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    border-radius: 32px;
    overflow: hidden;
}

.dummy-header {
    height: 60px;
    background: var(--gradient-start);
    margin-bottom: 16px;
}

.dummy-content {
    padding: 16px;
}

.dummy-card {
    height: 120px;
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}

.dummy-profile {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.dummy-stats {
    height: 80px;
    background: white;
    border-radius: 12px;
    margin-bottom: 24px;
}

.dummy-list {
    height: 200px;
    background: white;
    border-radius: 12px;
}

.dummy-chat {
    height: 80px;
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    width: 80%;
}

.dummy-chat:nth-child(even) {
    margin-left: 20%;
}

.dummy-input {
    height: 50px;
    background: white;
    border-radius: 25px;
    margin-top: auto;
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gradient-end);
}

.swiper-pagination-bullet {
    background: var(--gradient-end);
}

.swiper-pagination-bullet-active {
    background: var(--gradient-start);
}

/* Footer */
footer {
    background: var(--card-background-light);
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-links a:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .swiper-slide {
        width: 220px;
        height: 476px;
    }

    .footer-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    footer {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {

    .hero {
        padding: 1rem;
    }

    .hero-content {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .hero-logo {
        width: min(148px, 42vw);
        margin-bottom: 1.5rem;
    }

    .hero .tagline {
        font-size: 1.02rem;
    }

    .hero-proof {
        gap: 0.4rem;
        max-width: 320px;
    }

    .proof-pill {
        width: auto;
        min-height: 30px;
        font-size: 0.75rem;
        padding: 0.3rem 0.55rem;
    }

    .store-section {
        margin-top: 2rem;
        gap: 0.75rem;
        max-width: 320px;
    }

    .store-button img {
        max-width: 145px;
    }

    .features,
    .benefits,
    .founders-story,
    .screenshots {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .feature-item,
    .benefit-highlight,
    .story-card {
        padding: 1.15rem;
        border-radius: 18px;
    }

    .swiper {
        padding: 20px 24px 10px;
    }

    .hero-screenshots {
        padding-bottom: 2rem;
    }

    .hero-screenshots .swiper {
        padding: 12px 24px 12px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .footer-links {
        gap: 0.75rem;
        font-size: 0.85rem;
    }
}
