/* /public_html/css/akilli-yasam.css */
/* FAFUER — Akıllı Yaşam sayfası v3 */

:root {
    --ly-black: #050505;
    --ly-black-2: #0d0d0f;
    --ly-black-3: #141417;

    --ly-white: #ffffff;
    --ly-white-soft: #f5f5f7;
    --ly-white-soft-2: #fbfbfd;

    --ly-text-dark: #1d1d1f;
    --ly-text-dark-soft: #4b5563;
    --ly-text-dark-faint: #6e6e73;

    --ly-text-light: #f5f5f7;
    --ly-text-light-soft: rgba(245, 245, 247, .82);
    --ly-text-light-faint: rgba(245, 245, 247, .58);

    --ly-shadow-soft: 0 16px 40px rgba(0, 0, 0, .08);
    --ly-shadow-mid: 0 24px 70px rgba(0, 0, 0, .14);
    --ly-shadow-strong: 0 36px 110px rgba(0, 0, 0, .22);

    --ly-radius-sm: 18px;
    --ly-radius-md: 24px;
    --ly-radius-lg: 34px;
    --ly-radius-xl: 42px;
    --ly-radius-pill: 999px;

    --ly-container: 1360px;
    --ly-header-h: 92px;
    --ly-speed: .28s ease;
}

/* RESET */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    background: var(--ly-black);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Segoe UI", sans-serif;
}

.site-shell,
.living-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.living-page *,
.living-page *::before,
.living-page *::after {
    box-sizing: border-box;
}

.living-page {
    min-height: 100svh;
    min-height: 100dvh;
    background: var(--ly-black);
    color: var(--ly-text-light);
    overflow-x: clip;
}

.living-page img,
.living-page video {
    display: block;
    max-width: 100%;
}

.living-page a {
    color: inherit;
    text-decoration: none;
}

.living-page main,
.living-page section,
.living-page header,
.living-page footer {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.living-page .container {
    width: min(calc(100% - 48px), var(--ly-container));
    max-width: var(--ly-container);
    margin-inline: auto;
}

.living-page .skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.living-page .skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    border-radius: 14px;
    background: #111;
    color: #fff;
    box-shadow: var(--ly-shadow-soft);
    z-index: 9999;
}

.living-page .section-label {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.living-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: var(--ly-radius-pill);
    font-size: 15px;
    font-weight: 700;
    transition:
        transform var(--ly-speed),
        background var(--ly-speed),
        border-color var(--ly-speed),
        color var(--ly-speed);
}

.living-page .btn:hover {
    transform: translateY(-1px);
}

.living-page .btn-primary {
    background: #fff;
    color: #111;
}

.living-page .btn-primary:hover {
    background: #f0f0f0;
}

.living-page .btn-secondary {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
}

.living-page .btn-secondary:hover {
    background: rgba(255, 255, 255, .12);
}

/* HEADER */
.living-page .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 120;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .18) 100%);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.living-page .header-row {
    min-height: var(--ly-header-h);
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 84px;
    align-items: center;
    gap: 18px;
}

.living-page .header-balance {
    width: 84px;
    height: 44px;
}

.living-page .header-center {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.living-page .brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.living-page .brand-center {
    justify-self: center;
}

.living-page .brand-logo-main {
    width: auto;
    height: 68px;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .12));
}

.living-page .main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.living-page .main-nav-left {
    justify-content: flex-end;
}

.living-page .main-nav-right {
    justify-content: flex-start;
}

.living-page .main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: var(--ly-radius-pill);
    color: var(--ly-text-light-soft);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.01em;
    white-space: nowrap;
    transition: color var(--ly-speed), background var(--ly-speed), transform var(--ly-speed);
}

.living-page .main-nav a:hover,
.living-page .main-nav a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.living-page .header-actions {
    width: 84px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    position: relative;
}

.living-page .nav-login-icon,
.living-page .nav-user-trigger {
    width: 44px;
    height: 44px;
    border-radius: var(--ly-radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    overflow: hidden;
    padding: 0;
}

.living-page .nav-login-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.living-page .nav-user {
    position: relative;
}

.living-page .nav-user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.living-page .nav-user-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    min-width: 240px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(15, 15, 17, .96);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--ly-shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--ly-speed), visibility var(--ly-speed), transform var(--ly-speed);
}

.living-page .nav-user.is-open .nav-user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.living-page .nav-user-card {
    padding: 12px 14px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    margin-bottom: 6px;
}

.living-page .nav-user-card strong {
    display: block;
    font-size: 14px;
    line-height: 1.2;
}

.living-page .nav-user-card span {
    display: block;
    margin-top: 4px;
    color: var(--ly-text-light-faint);
    font-size: 12px;
    text-transform: capitalize;
}

.living-page .nav-user-menu-item {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--ly-text-light-soft);
    font-size: 14px;
    font-weight: 600;
}

.living-page .nav-user-menu-item:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.living-page .nav-user-menu-logout {
    color: #ff9a9a;
}

.living-page .nav-toggle,
.living-page .nav-toggle-label,
.living-page .mobile-nav-shell {
    display: none;
}

.living-page .desktop-only-login,
.living-page .desktop-only-user {
    display: inline-flex;
}

/* HERO */
.living-page .ly-hero {
    position: relative;
    width: 100%;
    min-height: clamp(520px, 72svh, 760px);
    min-height: clamp(520px, 72dvh, 760px);
    overflow: hidden;
    background: #000;
}

.living-page .ly-hero-media {
    position: absolute;
    inset: 0;
    background: #000;
    overflow: hidden;
}

.living-page .ly-hero-video,
.living-page .ly-hero-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.living-page .ly-hero-video {
    z-index: 1;
    opacity: 1;
    transform: translateZ(0);
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background: #000;
}

.living-page .ly-hero-fallback {
    z-index: 0;
    opacity: 1;
    transition: opacity .22s ease;
}

html.hero-video-ready .living-page .ly-hero-fallback,
.living-page .ly-hero-video.is-ready+.ly-hero-fallback {
    opacity: 0;
}

.living-page .ly-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at center, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .24) 42%, rgba(0, 0, 0, .62) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .32) 0%, rgba(0, 0, 0, .08) 34%, rgba(0, 0, 0, .72) 100%);
}

.living-page .ly-hero-inner {
    position: relative;
    z-index: 3;
    min-height: clamp(520px, 72svh, 760px);
    min-height: clamp(520px, 72dvh, 760px);
    padding-top: calc(var(--ly-header-h) + 28px + env(safe-area-inset-top));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
}

.living-page .ly-hero-copy {
    max-width: 980px;
}

.living-page .ly-hero-copy h1 {
    margin: 0;
    max-width: 13ch;
    font-size: clamp(36px, 5.8vw, 72px);
    line-height: .96;
    letter-spacing: -.06em;
    font-weight: 700;
    color: #fff;
}

.living-page .ly-hero-lead {
    margin: 16px 0 0;
    max-width: 58ch;
    color: var(--ly-text-light-soft);
    font-size: 17px;
    line-height: 1.68;
}

/* LIGHT / DARK */
.living-page .ly-light {
    background: var(--ly-white-soft);
    color: var(--ly-text-dark);
}

.living-page .ly-dark {
    background: var(--ly-black);
    color: var(--ly-text-light);
}

.living-page .ly-light .section-label {
    color: var(--ly-text-dark-faint);
}

.living-page .ly-dark .section-label {
    color: var(--ly-text-light-faint);
}

/* SECTION HEAD */
.living-page .ly-section-head {
    max-width: 940px;
    margin-bottom: 28px;
}

.living-page .ly-section-head h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.05em;
    font-weight: 700;
}

.living-page .ly-section-head-light h2 {
    color: var(--ly-text-dark);
}

/* INTRO */
.living-page .ly-intro {
    padding: 78px 0 64px;
}

.living-page .ly-intro-inner {
    max-width: 980px;
    text-align: center;
}

.living-page .ly-intro-inner h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -.05em;
    font-weight: 700;
}

.living-page .ly-intro-inner p:last-child {
    margin: 16px auto 0;
    max-width: 800px;
    color: var(--ly-text-dark-soft);
    font-size: 18px;
    line-height: 1.78;
}

/* BENEFITS */
.living-page .ly-benefits {
    padding: 78px 0;
}

.living-page .ly-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.living-page .ly-benefit-card {
    overflow: hidden;
    border-radius: var(--ly-radius-lg);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--ly-shadow-mid);
}

.living-page .ly-benefit-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #111;
    overflow: hidden;
}

.living-page .ly-benefit-media img,
.living-page .ly-benefit-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.living-page .ly-benefit-copy {
    padding: 24px 24px 26px;
}

.living-page .ly-benefit-tag {
    margin: 0 0 10px;
    color: var(--ly-text-light-faint);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.living-page .ly-benefit-copy h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.06;
    letter-spacing: -.04em;
}

.living-page .ly-benefit-copy p {
    margin: 14px 0 0;
    color: var(--ly-text-light-soft);
    font-size: 16px;
    line-height: 1.74;
}

/* EXPERIENCE */
.living-page .ly-experience {
    padding: 82px 0;
}

.living-page .ly-experience-row {
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
    gap: 28px;
    align-items: center;
}

.living-page .ly-experience-copy h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.05em;
    font-weight: 700;
    color: var(--ly-text-dark);
    max-width: 12ch;
}

.living-page .ly-experience-copy p:not(.section-label) {
    margin: 16px 0 0;
    color: var(--ly-text-dark-soft);
    font-size: 18px;
    line-height: 1.78;
    max-width: 58ch;
}

.living-page .ly-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.living-page .ly-points div {
    min-height: 62px;
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--ly-shadow-soft);
    color: var(--ly-text-dark);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
}

.living-page .ly-experience-media {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    background: transparent;
    box-shadow: var(--ly-shadow-mid);
    line-height: 0;
}

.living-page .ly-experience-media video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
    background: transparent;
}

/* USAGE */
.living-page .ly-usage {
    padding: 78px 0;
}

.living-page .ly-usage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.living-page .ly-usage-card {
    overflow: hidden;
    border-radius: var(--ly-radius-lg);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--ly-shadow-mid);
}

.living-page .ly-usage-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #111;
    overflow: hidden;
}

.living-page .ly-usage-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.living-page .ly-usage-copy {
    padding: 24px 24px 26px;
}

.living-page .ly-usage-copy h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.06;
    letter-spacing: -.04em;
}

.living-page .ly-usage-copy p {
    margin: 14px 0 0;
    color: var(--ly-text-light-soft);
    font-size: 16px;
    line-height: 1.74;
}

/* SHOWCASE */
.living-page .ly-showcase {
    position: relative;
    min-height: 84vh;
    overflow: hidden;
    background: #000;
    color: #fff;
}

.living-page .ly-showcase-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.living-page .ly-showcase-media img {
    position: absolute;
    left: 0;
    top: -24%;
    width: 100%;
    height: 150%;
    object-fit: cover;
    transform: translate3d(0, 0, 0) scale(1.12);
    will-change: transform;
}

.living-page .ly-showcase-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .22) 0%, rgba(0, 0, 0, .12) 36%, rgba(0, 0, 0, .72) 100%);
}

.living-page .ly-showcase-copy {
    position: relative;
    z-index: 2;
    min-height: 84vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.living-page .ly-showcase-copy h2 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 700;
}

.living-page .ly-showcase-copy p:last-child {
    margin: 16px 0 0;
    max-width: 42ch;
    color: var(--ly-text-light-soft);
    font-size: 18px;
    line-height: 1.74;
}

/* CTA */
.living-page .ly-cta {
    padding: 78px 0 44px;
}

.living-page .ly-cta-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 34px;
    border-radius: 36px;
    background: #fff;
    box-shadow: var(--ly-shadow-soft);
}

.living-page .ly-cta-copy h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -.05em;
    font-weight: 700;
    color: var(--ly-text-dark);
}

.living-page .ly-cta-copy p:last-child {
    margin: 14px 0 0;
    color: var(--ly-text-dark-soft);
    font-size: 17px;
    line-height: 1.74;
    max-width: 56ch;
}

.living-page .ly-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.living-page .ly-cta .btn-primary {
    background: #111;
    color: #fff;
}

.living-page .ly-cta .btn-secondary {
    color: #111;
    background: transparent;
    border-color: rgba(17, 17, 17, .14);
}

/* FAQ */
.living-page .ly-faq {
    padding: 78px 0;
}

.living-page .ly-faq-inner {
    max-width: 980px;
}

.living-page .ly-faq-stack {
    display: grid;
    gap: 14px;
}

.living-page .ly-faq-item {
    background: #fff;
    border-radius: 24px;
    padding: 0 22px;
    box-shadow: var(--ly-shadow-soft);
}

.living-page .ly-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ly-text-dark);
}

.living-page .ly-faq-item summary::-webkit-details-marker {
    display: none;
}

.living-page .ly-faq-item div {
    padding: 0 0 22px;
    color: var(--ly-text-dark-soft);
    font-size: 16px;
    line-height: 1.72;
}

/* SEO COPY */
.living-page .ly-seo-copy {
    padding: 0 0 82px;
}

.living-page .ly-seo-copy-inner {
    max-width: 980px;
}

.living-page .ly-seo-copy-inner h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.06;
    letter-spacing: -.04em;
    color: var(--ly-text-dark);
}

.living-page .ly-seo-copy-inner p {
    margin: 14px 0 0;
    color: var(--ly-text-dark-soft);
    font-size: 16px;
    line-height: 1.78;
}

/* FOOTER */
.living-page .site-footer-apple {
    background: var(--ly-white-soft);
    color: var(--ly-text-dark);
    padding: 0 0 calc(28px + env(safe-area-inset-bottom));
}

.living-page .footer-apple-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(17, 17, 17, .08);
}

.living-page .footer-apple-bottom p {
    margin: 0;
    color: var(--ly-text-dark-faint);
    font-size: 13px;
}

.living-page .footer-apple-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.living-page .footer-apple-links a {
    color: var(--ly-text-dark-faint);
    font-size: 13px;
}

.living-page .footer-apple-links a:hover {
    color: var(--ly-text-dark);
}

/* MOBILE */
@media (max-width: 1200px) {

    .living-page .ly-benefits-grid,
    .living-page .ly-usage-grid {
        grid-template-columns: 1fr;
    }

    .living-page .ly-experience-row,
    .living-page .ly-cta-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .living-page .container {
        width: min(calc(100% - 28px), var(--ly-container));
    }

    .living-page .site-header {
        background: rgba(0, 0, 0, .82);
    }

    .living-page .header-row {
        grid-template-columns: 44px 1fr 44px;
        min-height: calc(76px + env(safe-area-inset-top));
        padding-top: env(safe-area-inset-top);
        gap: 10px;
    }

    .living-page .header-balance {
        width: 44px;
        height: 44px;
    }

    .living-page .header-center {
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 0;
        position: relative;
        width: 100%;
    }

    .living-page .main-nav {
        display: none;
    }

    .living-page .brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
    }

    .living-page .brand-logo-main {
        height: 58px;
    }

    .living-page .header-actions {
        width: 44px;
        gap: 8px;
        justify-content: flex-end;
    }

    .living-page .desktop-only-login,
    .living-page .desktop-only-user {
        display: none !important;
    }

    .living-page .nav-toggle-label {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .12);
        box-shadow: var(--ly-shadow-soft);
        position: relative;
        z-index: 121;
        cursor: pointer;
    }

    .living-page .nav-toggle-label span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: #fff;
        display: block;
        transition: transform var(--ly-speed), opacity var(--ly-speed);
    }

    .living-page .mobile-nav-shell {
        display: block;
        position: absolute;
        inset: calc(100% + 10px) 14px auto 14px;
        z-index: 120;
    }

    .living-page .mobile-nav {
        position: relative;
        display: grid;
        gap: 8px;
        padding: 14px;
        background: rgba(12, 12, 14, .98);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 22px;
        box-shadow: var(--ly-shadow-strong);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        pointer-events: none;
        transition: opacity var(--ly-speed), visibility var(--ly-speed), transform var(--ly-speed);
        z-index: 110;
    }

    .living-page .mobile-nav a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 14px;
        border-radius: 14px;
        color: #fff;
        font-weight: 650;
    }

    .living-page .mobile-nav a:hover,
    .living-page .mobile-nav a[aria-current="page"] {
        background: rgba(255, 255, 255, .06);
    }

    .living-page .mobile-nav-user {
        margin-top: 6px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .living-page .mobile-user-card {
        display: grid;
        gap: 4px;
        padding: 10px 12px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .05);
        margin-bottom: 8px;
    }

    .living-page .mobile-user-card strong {
        font-size: 14px;
        line-height: 1.2;
    }

    .living-page .mobile-user-card span {
        font-size: 12px;
        color: rgba(245, 245, 247, .58);
        text-transform: capitalize;
    }

    .living-page .site-header.is-mobile-nav-open .mobile-nav,
    .living-page #nav-toggle:checked~.mobile-nav-shell .mobile-nav,
    .living-page #nav-toggle:checked~.nav-toggle-label+.mobile-nav-shell .mobile-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .living-page .site-header.is-mobile-nav-open .nav-toggle-label span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .living-page .site-header.is-mobile-nav-open .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    .living-page .site-header.is-mobile-nav-open .nav-toggle-label span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .living-page .ly-hero {
        min-height: auto;
        padding-top: calc(76px + env(safe-area-inset-top));
    }

    .living-page .ly-hero-media {
        position: relative;
        inset: auto;
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .living-page .ly-hero-inner {
        min-height: auto;
        padding-top: 0;
        padding-bottom: 0;
        display: block;
    }

    .living-page .ly-hero-video,
    .living-page .ly-hero-fallback {
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .living-page .ly-hero-copy {
        display: none;
    }

    .living-page .ly-intro-inner h2,
    .living-page .ly-section-head h2,
    .living-page .ly-experience-copy h2,
    .living-page .ly-showcase-copy h2,
    .living-page .ly-cta-copy h2 {
        font-size: clamp(32px, 6vw, 52px);
    }

    .living-page .ly-intro-inner p:last-child,
    .living-page .ly-benefit-copy p,
    .living-page .ly-experience-copy p:not(.section-label),
    .living-page .ly-usage-copy p,
    .living-page .ly-showcase-copy p:last-child,
    .living-page .ly-cta-copy p:last-child,
    .living-page .ly-seo-copy-inner p {
        font-size: 17px;
    }

    .living-page .ly-points {
        grid-template-columns: 1fr;
    }

    .living-page .ly-showcase,
    .living-page .ly-showcase-copy {
        min-height: 68vh;
    }

    .living-page .ly-showcase-media img {
        top: -16%;
        height: 132%;
    }
}

@media (max-width: 640px) {
    .living-page .container {
        width: min(calc(100% - 22px), var(--ly-container));
    }

    .living-page .brand-logo-main {
        height: 54px;
    }

    .living-page .section-label {
        font-size: 11px;
        letter-spacing: .16em;
    }

    .living-page .ly-intro-inner h2,
    .living-page .ly-section-head h2,
    .living-page .ly-experience-copy h2,
    .living-page .ly-showcase-copy h2,
    .living-page .ly-cta-copy h2 {
        font-size: clamp(30px, 8vw, 44px);
    }

    .living-page .ly-cta-actions .btn {
        width: 100%;
    }

    .living-page .ly-benefit-card,
    .living-page .ly-experience-media,
    .living-page .ly-usage-card,
    .living-page .ly-cta-box,
    .living-page .ly-faq-item {
        border-radius: 24px;
    }

    .living-page .ly-showcase,
    .living-page .ly-showcase-copy {
        min-height: 58vh;
    }

    .living-page .ly-showcase-media img {
        top: -12%;
        height: 120%;
    }

    .living-page .footer-apple-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .living-page .mobile-nav-shell {
        inset: calc(100% + 8px) 11px auto 11px;
    }
}