.landing-page {
    background: var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
}

.landing-shell {
    max-width: 1240px;
    margin: 0 auto;
}

.landing-hero {
    padding: 104px 24px 64px;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 85, 0, 0.12), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(255, 208, 0, 0.08), transparent 26%);
    opacity: 0.85;
}

.landing-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 85, 0, 0.25);
    background: rgba(255, 85, 0, 0.1);
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.landing-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.9rem, 6vw, 5.6rem);
    line-height: 0.88;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin: 18px 0 18px;
}

.landing-hero__copy,
.landing-section__copy {
    color: var(--text-muted);
    font-size: 1.06rem;
    line-height: 1.75;
    max-width: 58ch;
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.landing-hero__panel {
    padding: 22px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(16, 16, 16, 0.98)),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
}

.landing-hero__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.08), transparent 55%);
}

.landing-panel__title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    line-height: 0.95;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 14px;
    max-width: 11ch;
    position: relative;
    z-index: 1;
}

.landing-panel__list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

.landing-panel__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.landing-panel__item strong,
.landing-point strong {
    display: block;
    margin-bottom: 4px;
}

.landing-panel__item span,
.landing-point span {
    color: var(--text-muted);
    line-height: 1.55;
}

.landing-section {
    padding: 28px 24px;
}

.landing-section--alt {
    background: var(--bg-2);
}

.guide-section {
    position: relative;
    overflow: hidden;
}

.guide-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 85, 0, 0.12), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(255, 208, 0, 0.08), transparent 24%);
    opacity: 0.95;
}

.guide-section .section-shell {
    position: relative;
    z-index: 1;
}

.guide-heading .section-copy {
    max-width: 60ch;
}

.guide-slider {
    margin-top: 28px;
    position: relative;
}

.guide-slider__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 16px;
}

.guide-slider__status {
    display: grid;
    gap: 10px;
    min-width: min(100%, 340px);
}

.guide-slider__counter {
    font-family: var(--font-mono);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    font-size: 0.72rem;
}

.guide-slider__progress {
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.guide-slider__progress-fill {
    width: 16.66%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    transition: width 0.3s ease;
}

.guide-slider__controls {
    display: flex;
    gap: 10px;
    flex: none;
}

.guide-slider__button {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.guide-slider__button:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: rgba(255, 85, 0, 0.28);
    background: rgba(255, 85, 0, 0.08);
}

.guide-slider__button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.guide-slider__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.guide-slider__viewport::-webkit-scrollbar {
    display: none;
}

.guide-slider__track {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.guide-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 24px;
    min-height: 0;
    align-self: flex-start;
}

.guide-slide__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 85, 0, 0.1);
    border: 1px solid rgba(255, 85, 0, 0.22);
    color: var(--orange);
    font-family: var(--font-mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.guide-slide__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 340px);
    gap: 28px;
    align-items: start;
    align-content: start;
}

.guide-slide__copy {
    min-width: 0;
    align-self: start;
}

.guide-slider__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.guide-slider__dots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.guide-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    padding: 0;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, width 0.18s ease;
}

.guide-slider__dot:hover {
    transform: scale(1.1);
}

.guide-slider__dot.is-active {
    width: 30px;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    border-color: transparent;
}

.guide-slider__hint {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.guide-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.guide-intro__pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    line-height: 1.35;
    font-size: 0.92rem;
}

.guide-steps {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.guide-step {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    grid-template-areas: "copy media";
    gap: 28px;
    align-items: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.guide-step::before {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.14), transparent 70%);
    pointer-events: none;
}

.guide-step--reverse {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    grid-template-areas: "media copy";
}

.guide-step__copy {
    min-width: 0;
}

.guide-step__media {
    justify-self: end;
    align-self: start;
    width: 100%;
    max-width: 320px;
}

.guide-step__eyebrow {
    font-family: var(--font-mono);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    font-size: 0.72rem;
    margin-bottom: 12px;
}

.guide-step__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.7vw, 2.8rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 14px;
    width: 100%;
}

.guide-step__text {
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 48ch;
}

.guide-step__text strong {
    color: var(--text);
}

.guide-step__list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.guide-step__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    line-height: 1.55;
}

.guide-step__list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex: none;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    box-shadow: 0 0 0 4px rgba(255, 85, 0, 0.1);
}

.guide-phone {
    position: relative;
    padding: 10px 10px 10px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(12, 12, 12, 1)),
        var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    overflow: hidden;
    width: 100%;
}

.guide-phone::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.08), transparent 55%);
}

.guide-phone__topbar {
    height: 10px;
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.guide-phone__topbar span {
    width: 28px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.guide-phone__topbar span:first-child {
    background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.guide-phone__screen {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0a0a0a;
    aspect-ratio: 9 / 18.8;
}

.guide-phone__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.guide-step__caption {
    margin-top: 10px;
    text-align: center;
    color: var(--orange);
    font-family: var(--font-mono);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.landing-section__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 0.96;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 12px 0 12px;
}

.landing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.landing-point {
    padding: 18px;
    border-radius: 22px;
    background: var(--card);
    border: 1px solid var(--card-border);
    transition: transform 0.2s, border-color 0.2s;
}

.landing-point:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 85, 0, 0.28);
}

.landing-point__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 85, 0, 0.1);
    color: var(--orange);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.landing-point__title {
    font-weight: 800;
    margin-bottom: 6px;
}

.landing-point__text {
    color: var(--text-muted);
    line-height: 1.65;
}

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

.landing-hero .landing-point {
    padding: 14px 16px;
    min-height: 148px;
}

.landing-hero .landing-point__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.landing-hero .landing-point__title {
    font-size: 0.98rem;
}

.landing-hero .landing-point__text {
    font-size: 0.92rem;
    line-height: 1.55;
}

.landing-link-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.landing-link-card:hover {
    color: inherit;
}

.faq-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.faq-item {
    border-radius: 20px;
    border: 1px solid var(--card-border);
    background: var(--card);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    font-weight: 800;
}

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

.faq-item summary::after {
    content: '+';
    color: var(--orange);
    font-size: 1.2rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px 18px;
    color: var(--text-muted);
    line-height: 1.65;
}

.landing-cta {
    margin-top: 28px;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255, 85, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.15), rgba(255, 208, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.landing-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.landing-cta__copy {
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 58ch;
}

.landing-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ideal-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ideal-card--link:hover {
    color: inherit;
}

@media (max-width: 920px) {
    .landing-hero__grid,
    .landing-grid,
    .landing-cta {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-points {
        grid-template-columns: 1fr;
    }

    .guide-slider__top,
    .guide-slider__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .guide-slide__grid,
    .guide-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }

.guide-slide {
    padding: 18px;
}

.guide-step__media {
    max-width: 320px;
}
}

@media (max-width: 720px) {
    .landing-hero {
        padding-top: 108px;
    }

    .landing-hero__title {
        font-size: clamp(2.6rem, 13vw, 4.2rem);
    }

    .landing-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero__panel {
        width: 100%;
    }

    .guide-slider__status {
        min-width: 100%;
    }

    .guide-intro {
        flex-direction: column;
    }

    .guide-step__title {
        font-size: clamp(1.75rem, 9vw, 2.4rem);
    }

    .guide-phone {
        padding: 12px 10px 10px;
    }

    .guide-slider__button {
        width: 42px;
        height: 42px;
    }
}
