@import url('https://fonts.bunny.net/css?family=inter:400,500,600,700&family=noto-serif-jp:400,500,600,700&display=swap');

:root {
    --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
    --font-heading: "Noto Serif JP", ui-serif, Georgia, serif;
    --lp-max-width: 89.5rem;
    --lp-content-padding: 1.5rem;
    --lp-content-padding-sm: 2rem;
    --lp-content-padding-lg: 2.5rem;
    --lp-section-space: clamp(2.5rem, 5vw, 3.5rem);
    --lp-color-text: #ffffff;
    --lp-color-text-muted: rgba(255, 255, 255, 0.76);
    --lp-color-text-soft: rgba(255, 255, 255, 0.62);
    --lp-color-text-faint: rgba(255, 255, 255, 0.48);
    --lp-color-primary: var(--color-primary, #bc9f7d);
    --lp-color-primary-muted: var(--color-primary-muted, #e1c082);
    --lp-color-primary-hover: var(--color-primary-hover, #b99f7d);
    --lp-button-primary-bg: var(--lp-color-primary);
    --lp-button-primary-hover: var(--lp-color-primary-hover);
    --lp-button-primary-text: #ffffff;
    --lp-button-secondary-bg: rgba(255, 255, 255, 0.08);
    --lp-button-secondary-hover: rgba(255, 255, 255, 0.12);
    --lp-button-secondary-border: rgba(255, 255, 255, 0.14);
    --lp-button-secondary-text: #ffffff;
    --lp-color-background: var(--color-background, #311222);
    --lp-surface-start: #2f0e1e;
    --lp-surface-end: #1f0a16;
    --lp-surface-image: none;
    --lp-h1-font-size-mobile: 54px;
    --lp-h1-font-size-tablet: 72px;
    --lp-h1-font-size-desktop: 96px;
    --lp-h1-font-weight-mobile: 500;
    --lp-h1-font-weight-tablet: 500;
    --lp-h1-font-weight-desktop: 500;
    --lp-h1-line-height-mobile: 1;
    --lp-h1-line-height-tablet: 1;
    --lp-h1-line-height-desktop: 0.98;
    --lp-h1-text-color-mobile: #ffffff;
    --lp-h1-text-color-tablet: #ffffff;
    --lp-h1-text-color-desktop: #ffffff;
    --lp-h2-font-size-mobile: 32px;
    --lp-h2-font-size-tablet: 40px;
    --lp-h2-font-size-desktop: 52px;
    --lp-h2-font-weight-mobile: 500;
    --lp-h2-font-weight-tablet: 500;
    --lp-h2-font-weight-desktop: 500;
    --lp-h2-line-height-mobile: 1.08;
    --lp-h2-line-height-tablet: 1.06;
    --lp-h2-line-height-desktop: 1.04;
    --lp-h2-text-color-mobile: #ffffff;
    --lp-h2-text-color-tablet: #ffffff;
    --lp-h2-text-color-desktop: #ffffff;
    --lp-h3-font-size-mobile: 22px;
    --lp-h3-font-size-tablet: 24px;
    --lp-h3-font-size-desktop: 28px;
    --lp-h3-font-weight-mobile: 600;
    --lp-h3-font-weight-tablet: 600;
    --lp-h3-font-weight-desktop: 600;
    --lp-h3-line-height-mobile: 1.3;
    --lp-h3-line-height-tablet: 1.3;
    --lp-h3-line-height-desktop: 1.3;
    --lp-h3-text-color-mobile: #ffffff;
    --lp-h3-text-color-tablet: #ffffff;
    --lp-h3-text-color-desktop: #ffffff;
    --lp-p-font-size-mobile: 16px;
    --lp-p-font-size-tablet: 17px;
    --lp-p-font-size-desktop: 18px;
    --lp-p-font-weight-mobile: 400;
    --lp-p-font-weight-tablet: 400;
    --lp-p-font-weight-desktop: 400;
    --lp-p-line-height-mobile: 1.8;
    --lp-p-line-height-tablet: 1.85;
    --lp-p-line-height-desktop: 1.9;
    --lp-p-text-color-mobile: #d9d1d7;
    --lp-p-text-color-tablet: #d9d1d7;
    --lp-p-text-color-desktop: #d9d1d7;
}

@media (min-width: 40rem) {
    :root {
        --lp-content-padding: var(--lp-content-padding-sm);
    }
}

@media (min-width: 64rem) {
    :root {
        --lp-content-padding: var(--lp-content-padding-lg);
    }
}

.lp-page {
    color: var(--lp-color-text);
    font-family: var(--font-sans);
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

.lp-type-scope {
    --lp-h1-font-size: var(--lp-h1-font-size-mobile);
    --lp-h1-font-weight: var(--lp-h1-font-weight-mobile);
    --lp-h1-line-height: var(--lp-h1-line-height-mobile);
    --lp-h1-text-color: var(--lp-h1-text-color-mobile);
    --lp-h2-font-size: var(--lp-h2-font-size-mobile);
    --lp-h2-font-weight: var(--lp-h2-font-weight-mobile);
    --lp-h2-line-height: var(--lp-h2-line-height-mobile);
    --lp-h2-text-color: var(--lp-h2-text-color-mobile);
    --lp-h3-font-size: var(--lp-h3-font-size-mobile);
    --lp-h3-font-weight: var(--lp-h3-font-weight-mobile);
    --lp-h3-line-height: var(--lp-h3-line-height-mobile);
    --lp-h3-text-color: var(--lp-h3-text-color-mobile);
    --lp-p-font-size: var(--lp-p-font-size-mobile);
    --lp-p-font-weight: var(--lp-p-font-weight-mobile);
    --lp-p-line-height: var(--lp-p-line-height-mobile);
    --lp-p-text-color: var(--lp-p-text-color-mobile);
}

@media (min-width: 40rem) {
    .lp-type-scope {
        --lp-h1-font-size: var(--lp-h1-font-size-tablet);
        --lp-h1-font-weight: var(--lp-h1-font-weight-tablet);
        --lp-h1-line-height: var(--lp-h1-line-height-tablet);
        --lp-h1-text-color: var(--lp-h1-text-color-tablet);
        --lp-h2-font-size: var(--lp-h2-font-size-tablet);
        --lp-h2-font-weight: var(--lp-h2-font-weight-tablet);
        --lp-h2-line-height: var(--lp-h2-line-height-tablet);
        --lp-h2-text-color: var(--lp-h2-text-color-tablet);
        --lp-h3-font-size: var(--lp-h3-font-size-tablet);
        --lp-h3-font-weight: var(--lp-h3-font-weight-tablet);
        --lp-h3-line-height: var(--lp-h3-line-height-tablet);
        --lp-h3-text-color: var(--lp-h3-text-color-tablet);
        --lp-p-font-size: var(--lp-p-font-size-tablet);
        --lp-p-font-weight: var(--lp-p-font-weight-tablet);
        --lp-p-line-height: var(--lp-p-line-height-tablet);
        --lp-p-text-color: var(--lp-p-text-color-tablet);
    }
}

@media (min-width: 64rem) {
    .lp-type-scope {
        --lp-h1-font-size: var(--lp-h1-font-size-desktop);
        --lp-h1-font-weight: var(--lp-h1-font-weight-desktop);
        --lp-h1-line-height: var(--lp-h1-line-height-desktop);
        --lp-h1-text-color: var(--lp-h1-text-color-desktop);
        --lp-h2-font-size: var(--lp-h2-font-size-desktop);
        --lp-h2-font-weight: var(--lp-h2-font-weight-desktop);
        --lp-h2-line-height: var(--lp-h2-line-height-desktop);
        --lp-h2-text-color: var(--lp-h2-text-color-desktop);
        --lp-h3-font-size: var(--lp-h3-font-size-desktop);
        --lp-h3-font-weight: var(--lp-h3-font-weight-desktop);
        --lp-h3-line-height: var(--lp-h3-line-height-desktop);
        --lp-h3-text-color: var(--lp-h3-text-color-desktop);
        --lp-p-font-size: var(--lp-p-font-size-desktop);
        --lp-p-font-weight: var(--lp-p-font-weight-desktop);
        --lp-p-line-height: var(--lp-p-line-height-desktop);
        --lp-p-text-color: var(--lp-p-text-color-desktop);
    }
}

.lp-page--landing {
    margin-top: -2rem;
    padding-bottom: 5rem;
}

.lp-page,
.lp-page * {
    box-sizing: border-box;
}

.lp-page [x-cloak] {
    display: none !important;
}

.lp-page :where(h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd) {
    margin: 0;
}

.lp-page :where(ul, ol) {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-page :where(a) {
    color: inherit;
    text-decoration: none;
}

.lp-page :where(button, input, select, textarea) {
    font: inherit;
    color: inherit;
}

.lp-page :where(img, picture, svg, video, canvas, iframe) {
    display: block;
    max-width: 100%;
}

.lp-shell-bleed {
    width: 100vw;
    max-width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.lp-container {
    width: min(100%, var(--lp-max-width));
    margin-inline: auto;
    padding-inline: var(--lp-content-padding);
}

.lp-container--narrow {
    max-width: 64rem;
}

.lp-container--content {
    max-width: 56rem;
}

.lp-section {
    position: relative;
    padding-block: var(--lp-section-space);
}

.lp-section--full {
    width: 100vw;
    max-width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.lp-surface {
    position: relative;
    overflow: hidden;
    background-color: var(--lp-surface-start);
    background-image:
        var(--lp-surface-image),
        linear-gradient(180deg, var(--lp-surface-start) 0%, var(--lp-surface-end) 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.lp-surface::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.04), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%),
        radial-gradient(circle at 78% 20%, rgba(196, 167, 132, 0.08), transparent 24%);
    pointer-events: none;
}

.lp-surface--framed {
    border: 1px solid rgba(196, 167, 132, 0.16);
    border-radius: 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.lp-section__inner {
    position: relative;
    z-index: 1;
}

.lp-theme-light {
    color: var(--lp-color-text);
}

.lp-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lp-accent {
    color: var(--lp-color-primary);
    font-weight: 500;
}

.lp-header {
    max-width: 64rem;
}

.lp-header--center {
    margin-inline: auto;
    text-align: center;
}

.lp-page :where(h1, h2, h3) {
    font-family: var(--font-heading, serif);
    letter-spacing: 0;
}

.lp-page :where(h1) {
    font-size: var(--lp-h1-font-size);
    font-weight: var(--lp-h1-font-weight);
    line-height: var(--lp-h1-line-height);
    color: var(--lp-h1-text-color);
}

.lp-page :where(h2) {
    font-size: var(--lp-h2-font-size);
    font-weight: var(--lp-h2-font-weight);
    line-height: var(--lp-h2-line-height);
    color: var(--lp-h2-text-color);
}

.lp-page :where(h3) {
    font-size: var(--lp-h3-font-size);
    font-weight: var(--lp-h3-font-weight);
    line-height: var(--lp-h3-line-height);
    color: var(--lp-h3-text-color);
}

.lp-page :where(p) {
    font-size: var(--lp-p-font-size);
    font-weight: var(--lp-p-font-weight);
    line-height: var(--lp-p-line-height);
    color: var(--lp-p-text-color);
}

.lp-eyebrow {
    font-size: calc(var(--lp-p-font-size) * 0.875);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lp-color-primary-muted);
}

.lp-eyebrow--light {
    color: var(--lp-color-primary);
}

.lp-title {
    margin-top: 1rem;
}

.lp-title--sans {
    font-family: var(--font-sans, sans-serif);
}

.lp-title--uppercase {
    text-transform: uppercase;
}

.lp-copy {
    line-height: var(--lp-p-line-height);
}

.lp-copy--lead {
    font-size: calc(var(--lp-p-font-size) + 2px);
    line-height: var(--lp-p-line-height);
}

.lp-copy--center {
    margin-inline: auto;
    text-align: center;
}

.lp-copy--strong {
    color: var(--lp-h3-text-color);
}

.lp-header__copy {
    margin-top: 1.25rem;
}

.lp-header__copy--center {
    margin-inline: auto;
    text-align: center;
}

.lp-header__copy--md {
    max-width: 48rem;
}

.lp-header__copy--lg {
    max-width: 56rem;
}

.lp-copy-space-top-sm {
    margin-top: 0.5rem;
}

.lp-copy-space-top-md {
    margin-top: 0.75rem;
}

.lp-body-copy--strong {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: var(--lp-p-line-height);
}

.lp-ink {
    color: #171413;
}

.lp-subtitle {
    line-height: var(--lp-h3-line-height);
}

.lp-subtitle--muted {
    color: rgba(255, 255, 255, 0.92);
}

.lp-aspect-video {
    aspect-ratio: 16 / 9;
}

.lp-aspect-portrait {
    aspect-ratio: 4 / 5;
}

.lp-icon-xs {
    width: 0.875rem;
    height: 0.875rem;
}

.lp-icon-sm {
    width: 1rem;
    height: 1rem;
}

.lp-icon-md {
    width: 1.25rem;
    height: 1.25rem;
}

.lp-icon-shift {
    margin-left: 0.125rem;
}

.lp-transition {
    transition: transform 150ms ease;
}

.lp-rotated {
    transform: rotate(180deg);
}

.lp-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    margin-top: 1.25rem;
    color: var(--lp-p-text-color);
    font-size: calc(var(--lp-p-font-size) - 1px);
}

.lp-meta--center {
    justify-content: center;
}

.lp-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-meta__label {
    color: var(--lp-p-text-color);
    opacity: 0.72;
}

.lp-meta__value {
    color: var(--lp-h3-text-color);
    font-weight: 500;
}

.lp-hero__meta-separator {
    display: none;
    color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 40rem) {
    .lp-hero__meta-separator {
        display: inline;
    }
}

.lp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.65rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease, opacity 150ms ease;
}

.lp-button:hover {
    transform: translateY(-1px);
}

.lp-button--primary {
    background: var(--lp-button-primary-bg);
    color: var(--lp-button-primary-text);
}

.lp-button--primary:hover {
    background: var(--lp-button-primary-hover);
}

.lp-button--ghost {
    border: 1px solid var(--lp-button-secondary-border);
    background: var(--lp-button-secondary-bg);
    color: var(--lp-button-secondary-text);
}

.lp-button--ghost:hover {
    background: var(--lp-button-secondary-hover);
}

.lp-button-group {
    display: grid;
    gap: 0.75rem;
}

.lp-button-group--row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-button-group--single {
    grid-template-columns: minmax(0, 1fr);
}

.lp-button-group .lp-button {
    width: 100%;
}

.lp-hero {
    position: relative;
    overflow: hidden;
    background: #120c12;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.lp-hero__media,
.lp-hero__overlay {
    position: absolute;
    inset: 0;
}

.lp-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.lp-hero__fallback {
    position: absolute;
    inset-block: 0;
    left: 0;
    width: 100%;
    background: #1b1320;
}

@media (min-width: 64rem) {
    .lp-hero__fallback {
        width: 62vw;
    }
}

@media (min-width: 80rem) {
    .lp-hero__fallback {
        width: 58vw;
    }
}

.lp-hero__overlay--horizontal {
    inset: 0;
}

.lp-hero__inner {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 2.5rem;
    width: min(100%, var(--lp-max-width));
    min-height: 42rem;
    margin-inline: auto;
    padding-inline: var(--lp-content-padding);
    padding-block: 2rem;
}

@media (min-width: 64rem) {
    .lp-hero__inner--side {
        grid-template-columns: minmax(0, 1fr) 23rem;
    }
}

.lp-hero__content {
    display: flex;
    padding-block: 1rem;
}

@media (min-width: 64rem) {
    .lp-hero__content {
        padding-block: 2rem;
    }
}

.lp-hero__content--bottom {
    align-items: flex-end;
}

.lp-hero__content--v-center {
    align-items: center;
}

.lp-hero__content--h-center {
    justify-content: center;
}

.lp-hero__body {
    max-width: 42rem;
}

.lp-hero__body--center {
    max-width: 48rem;
    margin-inline: auto;
    text-align: center;
}

.lp-hero__description {
    max-width: 36rem;
    margin-top: 1.5rem;
}

.lp-hero__description--center {
    margin-inline: auto;
}

.lp-hero__cta-copy {
    max-width: 36rem;
    margin-top: 2rem;
}

.lp-hero__cta-copy--center {
    margin-inline: auto;
}

.lp-hero__cta-title {
    font-size: var(--lp-h3-font-size);
    font-weight: var(--lp-h3-font-weight);
    color: var(--lp-h3-text-color);
}

.lp-hero__cta-description {
    margin-top: 1rem;
    color: var(--lp-p-text-color);
    font-size: var(--lp-p-font-size);
    line-height: var(--lp-p-line-height);
}

.lp-hero__cta-actions {
    max-width: 20rem;
    margin-top: 2rem;
}

.lp-hero__actions-shell--row {
    max-width: 28rem;
}

.lp-hero__cta-actions--center {
    margin-inline: auto;
}

.lp-hero__aside {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 1rem;
}

@media (min-width: 64rem) {
    .lp-hero__aside {
        justify-content: flex-end;
        padding-block: 2rem;
    }
}

.lp-hero__aside--hidden {
    display: none;
}

.lp-hero__aside-card {
    width: 100%;
    max-width: 20rem;
}

.lp-hero__aside-title {
    margin-top: 1.5rem;
    text-align: center;
}

.lp-hero__aside-description {
    max-width: 20rem;
    margin-top: 1rem;
    margin-inline: auto;
    text-align: center;
}

.lp-stack {
    display: grid;
    gap: 2rem;
}

.lp-stack > * {
    min-width: 0;
}

.lp-grid-2 {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 64rem) {
    .lp-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.lp-grid-split {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 64rem) {
    .lp-grid-split {
        grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
        gap: 3rem;
    }
}

.lp-grid-feature {
    display: grid;
    gap: 2rem;
}

@media (min-width: 64rem) {
    .lp-grid-feature {
        grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
        align-items: center;
        gap: 3rem;
    }
}

.lp-grid-case {
    display: grid;
    gap: 2rem;
}

@media (min-width: 64rem) {
    .lp-grid-case {
        grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.22fr);
        align-items: start;
        gap: 2.5rem;
    }
}

.lp-feature__items {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.lp-feature__copy {
    max-width: 48rem;
}

.lp-feature__kicker {
    margin-top: 2rem;
}

.lp-feature__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.lp-feature__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.25rem;
    border: 1px solid rgba(188, 159, 125, 0.5);
    border-radius: 999px;
    color: var(--lp-color-primary);
}

.lp-surface__glow {
    position: absolute;
    inset: 0;
    transform: translate(1rem, 1rem);
    border-radius: 2rem;
    background: rgba(188, 159, 125, 0.12);
    filter: blur(2rem);
}

.lp-surface-frame-wrap {
    position: relative;
}

.lp-surface__frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.lp-media-stage {
    background: #120c12;
}

.lp-media-placeholder {
    background:
        radial-gradient(circle at top, rgba(196, 167, 132, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.lp-media-embed {
    width: 100%;
    height: 100%;
}

.lp-media-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-actions {
    margin-top: 2.5rem;
}

.lp-section-space-top-md {
    margin-top: 1.5rem;
}

.lp-section-space-top-lg {
    margin-top: 2.5rem;
}

.lp-section-space-top-xl {
    margin-top: 3rem;
}

.lp-gallery-grid {
    display: grid;
    gap: 1.25rem;
}

.lp-gallery-copy {
    max-width: 42rem;
}

@media (min-width: 40rem) {
    .lp-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.lp-faq__layout {
    display: grid;
    gap: 2.5rem;
}

.lp-faq__intro {
    max-width: 20rem;
}

.lp-faq__title {
    margin-top: 0.75rem;
}

.lp-faq__description {
    margin-top: 1.25rem;
}

@media (min-width: 64rem) {
    .lp-faq__layout--split {
        grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
        gap: 3.5rem;
    }
}

.lp-faq__columns {
    display: grid;
    gap: 2.5rem;
    align-items: start;
    margin-top: 2.5rem;
}

@media (min-width: 64rem) {
    .lp-faq__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.lp-faq__list {
    display: grid;
    gap: 0.25rem;
    align-content: start;
    align-self: start;
}

.lp-faq__item {
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.lp-faq__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    padding-block: 1.25rem;
    color: inherit;
    text-align: left;
}

.lp-faq__question {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

.lp-faq__hint {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--lp-color-text-soft);
    font-size: 0.95rem;
}

.lp-faq__answer {
    padding-bottom: 1.25rem;
}

.lp-comparison {
    max-width: 56rem;
    margin-inline: auto;
    margin-top: 3rem;
}

.lp-comparison__wrap {
    position: relative;
}

.lp-comparison__divider {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(219, 195, 164, 0.65);
    transform: translateX(-50%);
}

@media (min-width: 64rem) {
    .lp-comparison__divider {
        display: block;
    }
}

.lp-comparison__header,
.lp-comparison__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    text-align: center;
}

.lp-comparison__body {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

.lp-comparison__label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.lp-comparison__label--accent {
    color: #d1b08a;
}

.lp-comparison__value {
    color: rgba(255, 255, 255, 0.56);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

.lp-comparison__value--strong {
    color: #fff;
    font-weight: 600;
}

.lp-video-card {
    display: block;
}

.lp-video-card--default {
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
}

.lp-video-card--gallery {
    aspect-ratio: 1.35 / 1;
    border-radius: 1.5rem;
}

.lp-video-card--case {
    aspect-ratio: 0.72 / 1;
    border-radius: 1.6rem;
}

.lp-video-card--carousel {
    aspect-ratio: 1.28 / 1;
    border-radius: 1.75rem;
}

.lp-video-card--testimonial {
    aspect-ratio: 0.78 / 1;
    border-radius: 1.6rem;
}

.lp-video-card-surface {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.lp-video-card-surface--testimonial {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.06);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.16);
}

.lp-video-card__button {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    text-align: left;
    transition: transform 200ms ease;
}

.lp-video-card__button:hover {
    transform: translateY(-2px);
}

.lp-video-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-video-card__placeholder {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at top, rgba(196, 167, 132, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.lp-video-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 8, 15, 0.06) 0%, rgba(16, 8, 15, 0.18) 52%, rgba(16, 8, 15, 0.72) 100%);
}

.lp-video-card__overlay-content {
    position: relative;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
}

@media (min-width: 64rem) {
    .lp-video-card__overlay-content {
        padding: 1.75rem;
    }
}

.lp-video-card__overlay-head {
    display: flex;
    justify-content: flex-end;
}

.lp-video-card__overlay-foot {
    padding-right: 2.5rem;
    text-align: left;
}

.lp-video-card__meta {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.75rem;
    font-weight: 600;
}

.lp-video-card__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-video-card__play-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    background: var(--lp-color-primary);
    color: var(--lp-color-background);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    transition: transform 200ms ease;
}

.lp-video-card__button:hover .lp-video-card__play-badge {
    transform: scale(1.04);
}

.lp-video-card__slot {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.lp-video-card__details {
    margin-top: 0.75rem;
}

.lp-video-card__meta-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.lp-video-card__meta-text {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.875rem;
    font-weight: 500;
}

.lp-card-caption {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
}

.lp-card-caption--center {
    text-align: center;
}

.lp-card-caption--muted {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lp-video-modal {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.lp-video-modal__dialog {
    width: 100%;
    max-width: 80rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    background: #120c12;
    box-shadow: 0 34px 120px rgba(0, 0, 0, 0.44);
}

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

.lp-video-modal__copy {
    min-width: 0;
}

.lp-video-modal__title {
    overflow: hidden;
    margin-top: 0.25rem;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 40rem) {
    .lp-video-modal__title {
        font-size: 1.25rem;
    }
}

.lp-video-modal__body {
    padding: 1rem;
}

@media (min-width: 40rem) {
    .lp-video-modal__header {
        padding-inline: 1.5rem;
    }

    .lp-video-modal__body {
        padding: 1.5rem;
    }
}

.lp-video-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
}

.lp-video-modal__frame {
    overflow: hidden;
    border-radius: 1.5rem;
    background: #000;
}

.lp-progress--narrow {
    max-width: 48rem;
    margin-inline: auto;
}

.lp-carousel-shell {
    position: relative;
    margin-top: 3rem;
}

.lp-carousel-viewport {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.lp-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.lp-carousel-track {
    display: flex;
    width: max-content;
    align-items: stretch;
}

.lp-carousel-track--video {
    gap: 1.25rem;
}

@media (min-width: 40rem) {
    .lp-carousel-track--video {
        gap: 1.5rem;
    }
}

@media (min-width: 64rem) {
    .lp-carousel-track--video {
        gap: 2rem;
    }
}

.lp-carousel-track--case {
    gap: 1rem;
}

@media (min-width: 40rem) {
    .lp-carousel-track--case {
        gap: 1.25rem;
    }
}

.lp-carousel-viewport--padded {
    padding-inline: var(--lp-content-padding);
    padding-bottom: 1.5rem;
}

.lp-carousel-card {
    flex-shrink: 0;
    transition: transform 300ms ease, opacity 300ms ease;
}

.lp-carousel-spacer {
    flex-shrink: 0;
}

.lp-carousel-card--active {
    opacity: 1;
    transform: scale(1);
}

.lp-carousel-card--near {
    opacity: 0.5;
    transform: scale(0.96);
}

.lp-carousel-card--far {
    opacity: 0.2;
    transform: scale(0.92);
}

.lp-progress {
    height: 1px;
    margin-top: 1.75rem;
    background: rgba(255, 255, 255, 0.12);
}

.lp-progress__thumb {
    height: 1px;
    background: var(--lp-color-primary);
    transition: width 150ms ease, margin-left 150ms ease;
}

.lp-marquee__viewport {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8rem, black calc(100% - 8rem), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8rem, black calc(100% - 8rem), transparent 100%);
}

.lp-marquee__track {
    display: flex;
    width: max-content;
    gap: 1rem;
    padding-block: 0.5rem;
    will-change: transform;
    animation: lpLogoMarqueeScroll 60s linear infinite;
}

.lp-marquee-card {
    border-radius: 1.4rem;
}

.lp-marquee-card--logo {
    padding: 1.25rem 1.5rem;
}

.lp-marquee-card--content {
    display: flex;
    gap: 1rem;
    padding-block: 1rem;
}

.lp-marquee-card__media--content {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
}

.lp-marquee-card__media--logo {
    display: flex;
    width: 100%;
    height: 3.5rem;
    align-items: center;
    justify-content: center;
}

.lp-marquee-card__image--content {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-marquee-card__image--logo {
    width: auto;
    max-width: 100%;
    max-height: 3rem;
    object-fit: contain;
    opacity: 0.9;
    filter: saturate(0) brightness(1.2) contrast(1.05);
}

.lp-marquee-card__copy {
    min-width: 0;
}

.lp-marquee-card__meta {
    overflow: hidden;
    color: var(--lp-color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.lp-marquee-card__title {
    overflow: hidden;
    margin-top: 0.25rem;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.lp-marquee__note {
    margin-top: 2rem;
    text-align: center;
}

@keyframes lpLogoMarqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-marquee__track {
        animation: none;
    }
}

.lp-highlight-grid {
    position: relative;
    display: grid;
    gap: 1.75rem;
    margin-top: 3.5rem;
}

@media (min-width: 64rem) {
    .lp-highlight-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }
}

.lp-highlight-grid::before {
    content: "";
    position: absolute;
    inset: -8% 10% auto;
    height: 18rem;
    pointer-events: none;
    background: radial-gradient(circle, rgba(195, 160, 116, 0.08), transparent 68%);
    filter: blur(22px);
}

.lp-highlight-card {
    position: relative;
    padding: 2.5rem 2rem;
    border: 1px solid var(--lp-color-primary);
    border-radius: 2rem;
    text-align: center;
}

.lp-highlight-card__image {
    max-width: 13rem;
    margin-inline: auto;
    margin-bottom: 3rem;
}

.lp-highlight-card__media {
    width: 100%;
}

.lp-highlight-card__title {
    margin-bottom: 2rem;
    color: var(--lp-h3-text-color);
}

.lp-highlight-card__icon {
    display: flex;
    min-height: 10rem;
    max-width: 13rem;
    margin-inline: auto;
    margin-bottom: 3rem;
    align-items: center;
    justify-content: center;
    color: var(--lp-color-primary);
}

.lp-highlight-card__subtitle {
    margin-top: 1rem;
    color: var(--lp-p-text-color);
    font-size: calc(var(--lp-p-font-size) + 2px);
    font-weight: 600;
}

.lp-highlight-card__description {
    margin-top: 0.5rem;
    color: var(--lp-p-text-color);
    font-size: var(--lp-p-font-size);
    line-height: var(--lp-p-line-height);
}

.lp-section__footer-note {
    color: var(--lp-h3-text-color);
    font-size: calc(var(--lp-p-font-size) + 4px);
    font-weight: 600;
    line-height: var(--lp-p-line-height);
}

.lp-stats-list {
    display: grid;
    gap: 0.75rem;
    max-width: 48rem;
    margin-top: 2.5rem;
    margin-inline: auto;
}

.lp-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lp-stat__track {
    position: relative;
    flex: 1;
    height: 2.75rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.12);
}

.lp-stat__fill {
    position: absolute;
    inset-block: 0;
    left: 0;
    border-radius: 999px;
    background: #171413;
}

.lp-stat__label {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding-inline: 1.25rem;
    color: #f3ddbe;
    font-size: 0.875rem;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.lp-stat__value {
    width: 4rem;
    color: #171413;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: right;
}

.lp-card-grid-2 {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 40rem) {
    .lp-card-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.lp-card-grid-5 {
    display: grid;
    gap: 1rem;
}

@media (min-width: 40rem) {
    .lp-card-grid-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 64rem) {
    .lp-card-grid-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.lp-case-featured__avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.lp-case-featured {
    max-width: 28rem;
}

.lp-case-featured__quote {
    margin-top: 1.25rem;
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2rem);
    line-height: 1.35;
}

.lp-case-featured__details {
    margin-top: 1.25rem;
}

.lp-case-carousel {
    position: relative;
}

@media (min-width: 64rem) {
    .lp-case-carousel {
        margin-left: 1rem;
    }
}

.lp-case-featured__name {
    color: var(--lp-color-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.lp-case-featured__role {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lp-carousel-card--case {
    width: 12.5rem;
}

@media (min-width: 40rem) {
    .lp-carousel-card--case {
        width: 14rem;
    }
}

@media (min-width: 64rem) {
    .lp-carousel-card--case {
        width: 15rem;
    }
}

.lp-carousel-card--video {
    width: 18rem;
}

@media (min-width: 40rem) {
    .lp-carousel-card--video {
        width: 22rem;
    }
}

@media (min-width: 64rem) {
    .lp-carousel-card--video {
        width: 27rem;
    }
}

.lp-embed {
    display: grid;
    gap: 1.5rem;
}

.lp-embed__frame {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: #120c12;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.lp-surface__scrim {
    position: absolute;
    inset: 0;
}
