/* Modern Glow AI Styling */

:root {
    --primary-color: #ff147a;
    --primary-dark: #e5126e;
    --primary-light: #ff479a;
    --secondary-color: #fb8f00;
    --accent-color: #002a53;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --background: #ffffff;
    --background-alt: #f9fafb;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(227deg, #ff147a 0%, #fb8f00 100%);
    --gradient-text: linear-gradient(227deg, #ff147a 0%, #fb8f00 100%);
    --capsule-radius: 999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--background);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-logo img {
    border-radius: 12px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--capsule-radius);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-cta::after {
    display: none;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-burger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 152px 0 116px;
    position: relative;
    overflow: hidden;
    min-height: 86vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 88% 22%, rgba(255, 20, 122, 0.08), transparent 28%),
        radial-gradient(circle at 82% 82%, rgba(102, 166, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fffafa 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
    align-items: center;
    min-width: 0;
}

.hero-text {
    z-index: 1;
    width: 100%;
    max-width: 640px;
    min-width: 0;
}

.hero-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #a73a61;
    background: rgba(255, 20, 122, 0.09);
    border: 1px solid rgba(255, 20, 122, 0.18);
    border-radius: var(--capsule-radius);
    padding: 0.55rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
}

.hero-trust-sparkles {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(32%) sepia(30%) saturate(1079%) hue-rotate(286deg) brightness(93%) contrast(88%);
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 0, 83, 0.1), rgba(251, 143, 0, 0.1));
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--capsule-radius);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 0, 83, 0.2);
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-title-line {
    display: block;
}

.hero-title .gradient-text {
    background: none;
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.1rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--capsule-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.nav-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.nav-cta:focus-visible {
    border-radius: var(--capsule-radius);
}

.social-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(255, 0, 83, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(255, 0, 83, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--background-alt);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.store-badge {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.store-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.store-badge img {
    display: block;
    max-width: 100%;
    width: auto;
    height: 90px;
}

.arrow-icon {
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn:hover .arrow-icon {
    transform: translateX(4px);
}

.hero-proof {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
}

.hero-proof-stars {
    color: #ffa21a;
    letter-spacing: 0;
}

.hero-proof-divider {
    width: 1px;
    height: 1.4rem;
    background: var(--border-color);
}

.hero-platforms {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 0.85rem;
    margin-left: 0;
    color: var(--text-light);
    font-weight: 700;
}

.hero-platform-icons {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-platform-icons img {
    width: 38px;
    height: 38px;
    border: 2px solid #fff;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
    object-fit: cover;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.hero-demo {
    position: relative;
    width: 100%;
    max-width: 600px;
    min-height: 620px;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    padding: 46px 0 96px;
}

.hero-demo::before {
    content: "";
    position: absolute;
    inset: 10% 4% 8% 8%;
    border-radius: 44px;
    background: linear-gradient(135deg, rgba(255, 20, 122, 0.16), rgba(251, 143, 0, 0.08));
    filter: blur(34px);
    opacity: 0.9;
}

.demo-phone {
    position: relative;
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 26px 60px rgba(17, 24, 39, 0.18);
}

.demo-phone img {
    display: block;
    width: 100%;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: inherit;
}

.demo-phone-input {
    width: 39%;
    z-index: 1;
    transform: rotate(-4deg) translateY(-4px);
}

.demo-phone-output {
    width: 48%;
    margin-left: -22px;
    z-index: 2;
    transform: rotate(3deg) translateY(28px);
}

.demo-screen-label {
    position: absolute;
    left: 50%;
    top: -16px;
    z-index: 5;
    transform: translateX(-50%);
    color: #a73a61;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 20, 122, 0.16);
    border-radius: var(--capsule-radius);
    padding: 0.42rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.1);
}

.demo-feature-strip {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transform: translateX(-50%);
}

.demo-feature-strip span {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: var(--capsule-radius);
    padding: 0.5rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
}

.section-kicker {
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

/* App Tour Section */
.app-tour {
    padding: 112px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #070708 0%, #151014 100%);
    color: #fff;
}

.app-tour .section-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.app-tour .section-title {
    color: #fff;
}

.app-tour .section-description {
    color: rgba(255, 255, 255, 0.68);
}

.tour-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3.5rem;
}

.tour-step {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 620px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.tour-step:nth-child(even) {
    transform: translateY(34px);
}

.step-copy {
    position: relative;
    z-index: 2;
    padding: 1.4rem 1.35rem 0.8rem;
}

.step-number {
    display: inline-flex;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.step-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0 0.9rem;
}

.step-image img {
    display: block;
    width: min(100%, 235px);
    height: auto;
    margin-bottom: -24px;
    border-radius: 26px;
    box-shadow: 0 28px 54px rgba(0, 0, 0, 0.45);
}

.tour-step h3 {
    font-size: 1.38rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.7rem;
    color: #fff;
}

.tour-step p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

/* Routines Showcase */
.routines-showcase {
    padding: 96px 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 20, 122, 0.07), transparent 28%),
        var(--background-alt);
}

.routines-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.routine-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.routine-column {
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(255, 20, 122, 0.12);
    transition: all 0.3s ease;
    text-align: left;
}

.routine-column:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 20, 122, 0.24);
}

.routine-pill {
    display: inline-flex;
    color: #a73a61;
    background: rgba(255, 20, 122, 0.09);
    border: 1px solid rgba(255, 20, 122, 0.16);
    border-radius: var(--capsule-radius);
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.routine-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.routine-column p {
    color: var(--text-light);
    line-height: 1.6;
}

.routine-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.mini-stat {
    text-align: center;
}

.mini-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.mini-label {
    color: var(--text-lighter);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0;
}


/* Testimonials */
.testimonials {
    padding: 96px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
    border: 1px solid rgba(255, 20, 122, 0.12);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    display: block;
    font-size: 0.875rem;
    color: var(--text-lighter);
}

/* CTA Section */
.cta {
    padding: 112px 0;
    background:
        radial-gradient(circle at 82% 20%, rgba(255, 20, 122, 0.12), transparent 30%),
        linear-gradient(180deg, #fffafa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-kicker {
    display: inline-flex;
    color: #a73a61;
    background: rgba(255, 20, 122, 0.09);
    border: 1px solid rgba(255, 20, 122, 0.16);
    border-radius: var(--capsule-radius);
    padding: 0.5rem 1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-store-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-proof,
.cta-imports {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.cta-imports {
    margin-top: 1rem;
    color: var(--text-light);
}

.cta-imports img {
    width: 38px;
    height: 38px;
    border: 2px solid #fff;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
    object-fit: cover;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-brand img {
    border-radius: 8px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.social-link svg {
    fill: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

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

/* Mobile Navigation */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-nav {
    position: fixed;
    top: 80px;
    right: 20px;
    left: 20px;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.mobile-nav-overlay.active .mobile-nav {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

.mobile-nav-link:last-child {
    border-bottom: none;
    margin-top: 0.75rem;
    padding: 0.85rem 1.25rem;
    border-radius: var(--capsule-radius);
    background: var(--primary-color);
    color: white;
    text-align: center;
    font-weight: 700;
}

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

.mobile-nav-link:last-child:hover {
    color: white;
    background: var(--primary-dark);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease forwards;
}

.animate-slide-up-delay {
    animation: slideUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .hero-proof,
    .hero-platforms {
        justify-content: center;
    }

    .hero-proof {
        display: flex;
    }

    .hero-platforms {
        margin-top: 0.9rem;
    }

    .hero-demo {
        margin: 0 auto;
        max-width: 560px;
        min-height: 560px;
        padding-bottom: 88px;
    }

    .tour-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tour-step,
    .tour-step:nth-child(even) {
        min-height: 590px;
        transform: none;
    }

    .step-image img {
        width: min(100%, 240px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-burger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .store-badge {
        width: min(100%, 300px);
    }

    .store-badge img {
        width: 100%;
        height: auto;
    }

    .hero-proof {
        justify-content: center;
    }

    .hero-demo {
        min-height: 500px;
    }

    .demo-phone-input {
        width: 43%;
    }

    .demo-phone-output {
        width: 54%;
        margin-left: -20px;
    }
    
    .tour-steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2.5rem;
    }

    .tour-step,
    .tour-step:nth-child(even) {
        min-height: 560px;
        transform: none;
    }

    .step-image img {
        width: min(100%, 250px);
    }

    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-trust-chip {
        font-size: 0.82rem;
        max-width: 100%;
        justify-content: center;
    }

    .hero-content {
        overflow: hidden;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-trust-chip,
    .hero-description {
        width: min(100%, 330px);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-trust-chip {
        padding: 0.55rem 0.8rem;
        font-size: 0.78rem;
    }

    .hero-buttons {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .store-badge {
        width: min(100%, 280px);
    }

    .hero-proof {
        gap: 0.55rem;
        font-size: 0.92rem;
        justify-content: center;
    }

    .hero-proof-divider {
        display: none;
    }

    .hero-platforms {
        flex-direction: column;
        margin-top: 1.5rem;
    }

    .hero-platform-icons img {
        width: 34px;
        height: 34px;
    }

    .hero-demo {
        min-height: 430px;
        padding: 34px 0 82px;
    }

    .demo-phone-input {
        width: 46%;
        transform: rotate(-4deg) translateY(-2px);
    }

    .demo-phone-output {
        width: 58%;
        margin-left: -18px;
        transform: rotate(3deg) translateY(24px);
    }

    .demo-screen-label {
        top: -12px;
        padding: 0.34rem 0.52rem;
        font-size: 0.62rem;
    }

    .demo-feature-strip {
        bottom: 22px;
        gap: 0.35rem;
    }

    .demo-feature-strip span {
        padding: 0.42rem 0.55rem;
        font-size: 0.68rem;
    }

    .app-tour {
        padding: 76px 0;
    }

    .tour-step,
    .tour-step:nth-child(even) {
        min-height: 520px;
    }

    .step-copy {
        padding: 1.2rem 1.1rem 0.6rem;
    }

    .tour-step h3 {
        font-size: 1.22rem;
    }

    .tour-step p {
        font-size: 0.9rem;
    }

    .step-image img {
        width: min(100%, 220px);
        border-radius: 24px;
    }
    
    .routine-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}
