.product-page {
    background:
        linear-gradient(180deg, #0a0a0b 0%, #111113 42%, #0a0a0b 100%);
}

.product-nav .nav-container {
    gap: var(--spacing-md);
}

.product-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    letter-spacing: 0;
}

.product-logo img {
    border-radius: 8px;
}

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

.product-hero {
    min-height: 94vh;
    padding: calc(var(--spacing-3xl) + 4rem) 0 var(--spacing-2xl);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.hero-copy {
    max-width: 700px;
}

.eyebrow {
    color: #f4a261;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.hero-copy h1,
.section-copy h2,
.wide-copy h2,
.section-header h2,
.faq-grid h2,
.final-cta h2,
.intent-copy h1,
.intent-section h2 {
    font-family: var(--font-display);
    letter-spacing: 0;
}

.hero-copy h1 {
    font-size: clamp(2.6rem, 6.4vw, 5.6rem);
    line-height: 1;
    margin-bottom: var(--spacing-md);
    max-width: 100%;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.hero-lede {
    color: var(--color-text-secondary);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: var(--spacing-lg);
}

.hero-actions,
.intent-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.app-store-badge-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform var(--transition-fast), filter var(--transition-fast);
}

.app-store-badge-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.app-store-badge-link img {
    display: block;
    width: auto;
    height: 3.25rem;
}

.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.95rem 1.35rem;
    border-radius: 8px;
    font-weight: 800;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.primary-action {
    background: #ffffff;
    color: #0a0a0b;
}

.secondary-action {
    border: 1px solid #3f3f46;
    color: var(--color-text);
}

.primary-action:hover,
.secondary-action:hover {
    transform: translateY(-2px);
}

.secondary-action:hover {
    border-color: #f4a261;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 520px;
}

.trust-row div {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
}

.trust-row dt {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
}

.trust-row dd {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.hero-media {
    position: relative;
    min-height: 700px;
}

.phone-shot {
    width: min(330px, 76vw);
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #f5f5f5;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.main-shot {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.secondary-shot {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: min(265px, 58vw);
    opacity: 0.96;
}

.product-page .hero-copy > * {
    animation: heroCopyIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.product-page .hero-copy > *:nth-child(2) {
    animation-delay: 80ms;
}

.product-page .hero-copy > *:nth-child(3) {
    animation-delay: 160ms;
}

.product-page .hero-copy > *:nth-child(4) {
    animation-delay: 240ms;
}

.product-page .hero-copy > *:nth-child(5) {
    animation-delay: 320ms;
}

.product-page .main-shot {
    animation: heroPhoneMainIn 0.86s cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

.product-page .secondary-shot {
    animation: heroPhoneSecondaryIn 0.86s cubic-bezier(0.22, 1, 0.36, 1) 320ms both;
}

.product-page.reveal-ready .scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        border-color var(--transition-fast),
        background var(--transition-fast);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.product-page.reveal-ready .reveal-left {
    transform: translate3d(-34px, 18px, 0);
}

.product-page.reveal-ready .reveal-right {
    transform: translate3d(34px, 18px, 0);
}

.product-page.reveal-ready .reveal-scale {
    transform: translate3d(0, 24px, 0) scale(0.96);
}

.product-page.reveal-ready .scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.product-page.reveal-ready .scroll-reveal.reveal-complete {
    transition-delay: 0ms;
    will-change: auto;
}

.product-page.reveal-ready .guide-link.scroll-reveal.reveal-complete {
    transition:
        transform var(--transition-fast),
        border-color var(--transition-fast),
        background var(--transition-fast);
}

.feature-strip {
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--color-border);
}

.strip-grid {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.strip-grid span {
    padding: 0.65rem 0.9rem;
    border: 1px solid #2f3338;
    border-radius: 8px;
    color: #d9d9df;
    background: #12151a;
    font-size: 0.9rem;
    font-weight: 700;
}

.story-section,
.features-section,
.screenshots-section,
.guides-section,
.faq-section,
.intent-section {
    padding: var(--spacing-3xl) 0;
}

.alt-section {
    background: #101216;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.split-section,
.intent-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.split-section.reverse {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.95fr);
}

.section-copy h2,
.wide-copy h2,
.section-header h2,
.intent-section h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.section-copy p,
.wide-copy p,
.intent-copy p,
.intent-section p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.check-list {
    display: grid;
    gap: 0.85rem;
}

.check-list li {
    color: #e5e7eb;
    padding-left: 1.65rem;
    position: relative;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #2dd4bf;
}

.screenshot-panel {
    display: grid;
    gap: var(--spacing-sm);
    justify-items: center;
}

.screenshot-panel img {
    width: min(320px, 82vw);
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #f5f5f5;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.screenshot-panel figcaption {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-align: center;
    max-width: 360px;
}

.ai-section {
    padding: var(--spacing-3xl) 0;
    background: #f2eee9;
    color: #15110e;
}

.ai-section .eyebrow,
.ai-section .wide-copy p,
.ai-section .ai-item p {
    color: #6b5547;
}

.wide-copy {
    max-width: 760px;
    margin-bottom: var(--spacing-xl);
}

.ai-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.ai-showcase .wide-copy {
    margin-bottom: 0;
}

.ai-showcase .screenshot-panel img {
    width: min(300px, 76vw);
    border-color: rgba(21, 17, 14, 0.14);
    box-shadow: 0 24px 70px rgba(21, 17, 14, 0.22);
}

.ai-showcase .screenshot-panel figcaption {
    color: #6b5547;
}

.ai-grid,
.features-grid,
.guide-grid,
.intent-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.ai-item,
.feature-card,
.guide-link,
.intent-card {
    border-radius: 8px;
    padding: var(--spacing-lg);
}

.ai-item {
    border: 1px solid #d8cfc4;
    background: #fffaf5;
}

.ai-item h3,
.feature-card h3,
.guide-link strong,
.intent-card h3 {
    font-size: 1.12rem;
    margin-bottom: 0.6rem;
}

.centered {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card,
.guide-link,
.intent-card {
    background: #111418;
    border: 1px solid var(--color-border);
}

.feature-card p,
.guide-link small,
.intent-card p {
    color: var(--color-text-muted);
}

.screenshots-scroll {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    padding: 0 max(var(--spacing-lg), calc((100vw - 1200px) / 2)) var(--spacing-sm);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.screenshots-scroll::-webkit-scrollbar {
    height: 10px;
}

.screenshots-scroll::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 999px;
}

.screenshot-item {
    flex: 0 0 280px;
    scroll-snap-align: center;
}

.screenshot-item img {
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #f5f5f5;
}

.screenshot-item figcaption {
    color: var(--color-text-secondary);
    font-weight: 800;
    text-align: center;
    margin-top: 0.85rem;
}

.guide-link {
    display: grid;
    gap: 0.45rem;
    min-height: 180px;
    position: relative;
    overflow: hidden;
    padding-right: 5.4rem;
    background:
        linear-gradient(135deg, rgba(var(--guide-rgb), 0.12), rgba(17, 20, 24, 0) 48%),
        #111418;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.guide-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgb(var(--guide-rgb));
}

.guide-link::after {
    content: attr(data-mark);
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    min-width: 2.9rem;
    padding: 0.45rem 0.5rem;
    border: 1px solid rgba(var(--guide-rgb), 0.44);
    border-radius: 8px;
    color: rgb(var(--guide-rgb));
    background: rgba(var(--guide-rgb), 0.1);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-align: center;
}

.guide-ai {
    --guide-rgb: 244, 162, 97;
}

.guide-format {
    --guide-rgb: 96, 165, 250;
}

.guide-import {
    --guide-rgb: 45, 212, 191;
}

.guide-playback {
    --guide-rgb: 167, 139, 250;
}

.guide-free {
    --guide-rgb: 163, 230, 53;
}

.guide-link:hover {
    border-color: rgb(var(--guide-rgb));
    transform: translateY(-3px);
}

.guide-link span {
    color: rgb(var(--guide-rgb));
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.guide-link strong {
    color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
    gap: var(--spacing-2xl);
}

.faq-list {
    display: grid;
    gap: var(--spacing-sm);
}

.faq-list details {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #111418;
    padding: 1.15rem 1.25rem;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 800;
}

.faq-list p {
    color: var(--color-text-secondary);
    margin-top: var(--spacing-sm);
}

.final-cta {
    padding: var(--spacing-2xl) 0;
    background: #f2eee9;
    color: #15110e;
}

.final-cta-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: var(--spacing-lg);
    align-items: center;
}

.final-cta img {
    border-radius: 16px;
}

.final-cta p {
    color: #6b5547;
}

.product-footer {
    gap: var(--spacing-md);
}

.app-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.app-footer-links a {
    color: var(--color-text-muted);
}

.app-footer-links a:hover {
    color: #f4a261;
}

/* Intent landing pages */
.intent-page {
    background: #0a0a0b;
}

.intent-hero {
    padding: calc(var(--spacing-3xl) + 4rem) var(--spacing-lg) var(--spacing-2xl);
    max-width: 1200px;
    margin: 0 auto;
}

.intent-copy h1 {
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.intent-media img {
    width: min(330px, 82vw);
    margin: 0 auto;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #f5f5f5;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.intent-section.alt {
    background: #101216;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.intent-narrow {
    max-width: 880px;
    margin: 0 auto;
}

.intent-copy-block {
    display: grid;
    gap: var(--spacing-md);
}

.intent-copy-block a,
.intent-faq-list a {
    color: #f4a261;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.intent-link-list {
    display: grid;
    gap: 0.75rem;
    margin-top: var(--spacing-sm);
}

.intent-link-list li {
    color: var(--color-text-secondary);
    padding-left: 1.35rem;
    position: relative;
}

.intent-link-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #f4a261;
}

.intent-faq-list {
    display: grid;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.intent-faq-list details {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #111418;
    padding: 1.15rem 1.25rem;
}

.intent-faq-list summary {
    cursor: pointer;
    color: var(--color-text);
    font-weight: 800;
}

.intent-faq-list p {
    margin-top: var(--spacing-sm);
    margin-bottom: 0;
}

.steps {
    counter-reset: steps;
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.steps li {
    counter-increment: steps;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: var(--spacing-md);
    color: var(--color-text-secondary);
    background: #111418;
}

.steps li::before {
    content: counter(steps);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-right: 0.75rem;
    border-radius: 50%;
    background: #ffffff;
    color: #0a0a0b;
    font-weight: 800;
}

@keyframes heroCopyIn {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes heroPhoneMainIn {
    from {
        opacity: 0;
        transform: translate3d(34px, 22px, 0) rotate(1.5deg) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
}

@keyframes heroPhoneSecondaryIn {
    from {
        opacity: 0;
        transform: translate3d(-34px, 26px, 0) rotate(-1.5deg) scale(0.96);
    }
    to {
        opacity: 0.96;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-page .hero-copy > *,
    .product-page .main-shot,
    .product-page .secondary-shot {
        animation: none;
    }

    .product-page.reveal-ready .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .split-section,
    .split-section.reverse,
    .intent-hero,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 580px;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .main-shot {
        right: 0;
    }

    .secondary-shot {
        left: 0;
    }

    .ai-grid,
    .features-grid,
    .guide-grid,
    .intent-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ai-showcase {
        grid-template-columns: 1fr;
    }

    .final-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
}

@media (max-width: 680px) {
    .product-hero,
    .intent-hero {
        padding-top: calc(var(--spacing-3xl) + 2rem);
    }

    .hero-copy h1 {
        font-size: clamp(2.15rem, 10vw, 3rem);
        line-height: 1.05;
    }

    .hero-media {
        min-height: auto;
        display: grid;
        gap: var(--spacing-md);
    }

    .main-shot,
    .secondary-shot {
        position: static;
        width: min(300px, 82vw);
        margin: 0 auto;
    }

    .trust-row,
    .ai-showcase,
    .ai-grid,
    .features-grid,
    .guide-grid,
    .intent-card-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-scroll {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }

    .screenshot-item {
        flex-basis: 235px;
    }

    .app-store-badge-link img {
        height: 3rem;
    }
}
