.start-page {
    min-height: 100vh;
    color: #f8fafc;
    background: #020617;
    animation: pageReveal .7s cubic-bezier(.16, 1, .3, 1) both;
    transform-origin: left center;
}

@keyframes pageReveal {
    0% {
        opacity: 0;
        transform: perspective(1200px) rotateY(-14deg) translateX(24px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: perspective(1200px) rotateY(0) translateX(0);
        filter: blur(0);
    }
}

.container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.start-cover {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, .15), #020617 88%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, .22), transparent 34%),
        radial-gradient(circle at 20% 90%, rgba(71, 85, 105, .22), transparent 32%);
}

.start-cover-inner {
    position: relative;
    padding: 96px 0;
}

.back-link {
    display: inline-flex;
    margin-bottom: 72px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 700;
}

.start-kicker {
    margin: 0 0 22px;
    color: #60a5fa;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.start-cover h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(54px, 8vw, 104px);
    line-height: .92;
    letter-spacing: -.020em;
}

.start-lead {
    max-width: 650px;
    margin: 30px 0 0;
    color: #94a3b8;
    font-size: 20px;
    line-height: 1.75;
}

.start-scroll-indicator {
    margin-top: 74px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

.start-scroll-indicator span {
    width: 70px;
    height: 1px;
    background: rgba(148, 163, 184, .35);
}

.story-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #020617, #0f172a);
}

.story-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/photographer-workflow.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(2px) brightness(.7);
    transform: scale(1.04);
    opacity: .75;
    z-index: 0;
}

.story-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, .82), rgba(2, 6, 23, .45)),
        linear-gradient(180deg, rgba(2, 6, 23, .35), rgba(15, 23, 42, .72));
    z-index: 1;
}

.story-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.story-left {
    position: sticky;
    top: 80px;
}

.story-left h2 {
    margin: 0;
    max-width: 420px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -.07em;
}

.story-steps {
    display: grid;
    gap: 18px;
}

.story-step {
    padding: 34px 0 34px 34px;
    border-left: 1px solid rgba(148, 163, 184, .18);
    position: relative;
}

.story-step::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 42px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #60a5fa;
    box-shadow: 0 0 24px rgba(96, 165, 250, .7);
}

.story-step span {
    color: #64748b;
    font-size: 13px;
    font-weight: 900;
}

.story-step h3 {
    margin: 12px 0 10px;
    font-size: 26px;
    letter-spacing: -.05em;
}

.story-step p {
    max-width: 560px;
    margin: 0;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.75;
}

.plans-section {
    padding: 120px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(37, 99, 235, .16), transparent 32%),
        #020617;
}

.plans-head {
    text-align: center;
    margin-bottom: 46px;
}

.plans-head h2 {
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -.075em;
}

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

.plan {
    position: relative;
    padding: 34px;
    border-radius: 24px;
    background: rgba(15, 23, 42, .68);
    border: 1px solid rgba(148, 163, 184, .14);
}

.plan-pro {
    transform: translateY(-14px);
    border-color: rgba(96, 165, 250, .45);
    box-shadow: 0 24px 70px rgba(37, 99, 235, .18);
}

.plan-badge {
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #bfdbfe;
    background: rgba(37, 99, 235, .16);
    font-size: 12px;
    font-weight: 900;
}

.plan h3 {
    margin: 0 0 18px;
    font-size: 24px;
    letter-spacing: -.05em;
}

.plan-price {
    margin: 18px 0 12px;
}

.plan-price strong {
    font-size: 46px;
    letter-spacing: -.07em;
}

.plan-price span {
    color: #94a3b8;
    font-weight: 700;
}

.plan p {
    margin: 18px 0 0;
    color: #94a3b8;
    line-height: 1.7;
}

.plan-features {
    margin: 24px 0 0;
    padding: 22px 0 0;
    list-style: none;
    border-top: 1px solid rgba(148, 163, 184, .14);
}

.plan-features li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #60a5fa;
    font-weight: 900;
}

.start-final {
    position: relative;
    margin-top: 90px;
    min-height: 420px;
    padding: 120px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 45%, rgba(37, 99, 235, .34), transparent 42%),
        #020617;
}

.start-final-bg {
    position: absolute;
    inset: 0;
    background-image: url("/assets/img/gallery-bg.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(7px) brightness(.34);
    transform: scale(1.12);
    opacity: .78;
}

.start-final::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, .45), rgba(2, 6, 23, .88)),
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, .26), transparent 50%);
}

.start-final-content {
    position: relative;
    z-index: 2;
}

.start-final h2 {
    margin: 0 auto;
    max-width: 780px;
    color: #f8fafc;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -.07em;
}

.start-final p {
    max-width: 600px;
    margin: 22px auto 0;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.7;
}

.start-final a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 32px;
    padding: 0 26px;
    border-radius: 12px;
    color: #fff;
    background: #2563eb;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(37, 99, 235, .32);
}

@media (max-width: 900px) {
    .story-layout,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .story-left {
        position: static;
    }

    .plan-pro {
        transform: none;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 32px, 1120px);
    }

    .start-cover h1 {
        font-size: 48px;
    }

    .start-lead {
        font-size: 17px;
    }

    .story-section,
    .plans-section {
        padding: 80px 0;
    }

    .plan {
        padding: 28px;
    }

    .start-final {
        border-radius: 24px;
        padding: 84px 20px;
    }
}