﻿/* 08:00 HERO */

.story-morning {
    min-height: calc(100vh - 210px);
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: clamp(36px, 7vw, 84px);
    padding: clamp(42px, 7vw, 92px) 0;
}

.story-morning h1 {
    max-width: 760px;
    margin: 18px 0 0;
    color: #f8fafc;
    font-size: clamp(2.85rem, 7vw, 6rem);
    font-weight: 620;
    letter-spacing: -.08em;
    line-height: .95;
}

.story-morning p {
    max-width: 640px;
    margin: 24px 0 0;
    color: var(--a3-muted);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.78;
}

.story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.story-morning-stage {
    position: relative;
    min-height: 660px;
}

.story-dashboard-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(460px, 88%);
    padding: 20px;
    border: 1px solid var(--a3-border-strong);
    border-radius: 32px;
    background: rgba(8, 15, 28, .82);
    box-shadow: 0 32px 90px rgba(0,0,0,.42);
    backdrop-filter: blur(24px);
}

.story-dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.story-dashboard-top small {
    color: var(--a3-soft);
    font-size: .72rem;
}

.story-dashboard-top strong {
    display: block;
    color: #f8fafc;
    font-weight: 720;
}

.story-dashboard-top span {
    border-radius: 999px;
    padding: 6px 10px;
    background: color-mix(in srgb, var(--a3-primary), transparent 82%);
    color: color-mix(in srgb, var(--a3-primary), #ffffff 22%);
    font-size: .7rem;
    font-weight: 720;
}

.story-map {
    position: relative;
    min-height: 140px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        rgba(255,255,255,.045);
    background-size: 24px 24px;
    overflow: hidden;
}

.story-map-pin {
    width: 18px;
    height: 18px;
    border: 4px solid #f8fafc;
    border-radius: 999px;
    background: var(--a3-primary);
    box-shadow: 0 0 0 9px color-mix(in srgb, var(--a3-primary), transparent 82%);
}

.story-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.story-metrics article {
    padding: 13px;
    border: 1px solid var(--a3-border);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
}

.story-metrics small {
    display: block;
    color: var(--a3-soft);
    font-size: .68rem;
}

.story-metrics strong {
    display: block;
    margin-top: 5px;
    color: #f8fafc;
    font-weight: 720;
}

/* GENERIC TWO COLUMN SECTIONS */

.story-split {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: clamp(34px, 6vw, 74px);
}

.story-panel-stack {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.story-panel {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border: 1px solid var(--a3-border);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    transition: .18s ease;
}

.story-panel:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.075);
}

.story-panel b {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: color-mix(in srgb, var(--a3-primary), transparent 78%);
    color: color-mix(in srgb, var(--a3-primary), #ffffff 24%);
    font-size: .78rem;
}

.story-panel strong {
    color: #f8fafc;
    font-weight: 680;
}

.story-panel small {
    display: block;
    margin-top: 2px;
    color: var(--a3-muted);
}

.story-panel span {
    color: color-mix(in srgb, var(--a3-primary), #ffffff 20%);
    font-weight: 720;
}

/* PEOPLE */

.story-people-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.story-person {
    padding: 16px;
    border: 1px solid var(--a3-border);
    border-radius: 24px;
    background: rgba(255,255,255,.055);
}

.story-person-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--a3-primary), var(--a3-primary-dark));
    color: #ffffff;
    font-size: .74rem;
    font-weight: 720;
}

.story-person strong {
    display: block;
    color: #f8fafc;
    font-weight: 680;
}

.story-person small {
    display: block;
    margin-top: 3px;
    color: var(--a3-muted);
}

/* APPROVAL FLOW */

.story-flow {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.story-flow article {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--a3-border);
    border-radius: 24px;
    background: rgba(255,255,255,.055);
}

.story-flow article:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 40px;
    bottom: -15px;
    width: 2px;
    height: 14px;
    background: color-mix(in srgb, var(--a3-primary), transparent 40%);
}

.story-flow span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--a3-primary), var(--a3-primary-dark));
    color: #ffffff;
    font-size: .72rem;
    font-weight: 720;
}

.story-flow strong {
    color: #f8fafc;
    font-weight: 680;
}

.story-flow small {
    display: block;
    color: var(--a3-muted);
    margin-top: 3px;
}

/* FINAL */

.story-final {
    min-height: 72vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: clamp(70px, 10vw, 130px) 0;
}

.story-final-box {
    max-width: 920px;
    padding: clamp(32px, 6vw, 72px);
    border: 1px solid var(--a3-border-strong);
    border-radius: 48px;
    background:
        radial-gradient(circle at 80% 12%, color-mix(in srgb, var(--a3-primary), transparent 72%), transparent 32%),
        rgba(255,255,255,.055);
    box-shadow: var(--a3-shadow);
}

.story-final h2 {
    margin: 16px 0 0;
    color: #f8fafc;
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    font-weight: 620;
    letter-spacing: -.08em;
    line-height: .95;
}

.story-final p {
    max-width: 640px;
    margin: 20px auto 0;
    color: var(--a3-muted);
    line-height: 1.75;
}

.story-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

@media (max-width: 980px) {
    .story-morning,
    .story-split {
        grid-template-columns: 1fr;
    }

    .story-morning-stage {
        min-height: 560px;
    }
}

@media (max-width: 640px) {
    .story-morning-stage {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .story-office-window,
    .story-dashboard-card {
        position: relative;
        inset: auto;
        width: 100%;
        min-height: 320px;
    }

    .story-dashboard-card {
        min-height: auto;
    }

    .story-metrics,
    .story-people-grid {
        grid-template-columns: 1fr;
    }

    .story-panel {
        grid-template-columns: 48px 1fr;
    }

    .story-panel span {
        grid-column: 2;
    }
}

.story-office-window {
    position: absolute;
    inset: 0 48px 62px 0;
    overflow: hidden;
    border: 1px solid var(--a3-border-strong);
    border-radius: 42px;
    background: rgba(255,255,255,.03);
    box-shadow: var(--a3-shadow);
}

    .story-office-window::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient( 180deg, rgba(17,19,21,.08) 0%, rgba(17,19,21,.18) 45%, rgba(17,19,21,.42) 100%);
    }

.story-office-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .8s ease;
}

.story-office-window:hover .story-office-image {
    transform: scale(1.03);
}

.story-visual-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--a3-border);
    border-radius: 34px;
    background: rgba(255,255,255,.03);
    box-shadow: var(--a3-shadow);
}

.story-section-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    object-position: center left; /* Shows more of the logo on the left */
    transition: transform .7s ease;
}

.story-visual-card:hover .story-section-image {
    transform: scale(1.025);
}

.story-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient( 180deg, rgba(17,19,21,.06), rgba(17,19,21,.18) 55%, rgba(17,19,21,.35));
}

.pricing-title {
    margin-inline: auto;
    text-align: center;
}

    .pricing-title .story-eyebrow {
        margin-inline: auto;
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.pricing-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--a3-border);
    border-radius: 30px;
    background: linear-gradient( 180deg, rgba(255,255,255,.06), rgba(255,255,255,.025) );
    box-shadow: var(--a3-shadow-soft);
}

    .pricing-card.featured {
        border-color: rgba(193,138,75,.36);
        background: radial-gradient(circle at 80% 10%, rgba(193,138,75,.18), transparent 34%), linear-gradient( 180deg, rgba(193,138,75,.12), rgba(255,255,255,.035) );
        box-shadow: var(--a3-shadow), 0 0 70px rgba(193,138,75,.12);
    }

.pricing-label {
    width: fit-content;
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(193,138,75,.12);
    color: var(--a3-primary-light);
    font-size: .68rem;
    font-weight: 720;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin: 18px 0 0;
    color: var(--a3-text);
    font-size: 1.35rem;
    font-weight: 650;
    letter-spacing: -.035em;
}

.pricing-card p {
    margin: 10px 0 0;
    color: var(--a3-muted);
    line-height: 1.65;
}

.pricing-size {
    margin-top: 22px;
    padding: 14px;
    border: 1px solid var(--a3-border);
    border-radius: 20px;
    background: rgba(255,255,255,.045);
    color: var(--a3-text-soft);
    font-weight: 650;
}

.pricing-card ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    color: var(--a3-muted);
    font-size: .88rem;
}

    .pricing-card li::before {
        content: "✓";
        margin-right: 8px;
        color: var(--a3-primary-light);
        font-weight: 800;
    }

.pricing-card a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    border-radius: 18px;
    background: rgba(255,255,255,.075);
    color: var(--a3-text);
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    transition: .18s ease;
}

.pricing-card.featured a {
    background: linear-gradient(135deg, var(--a3-primary-light), var(--a3-primary-dark));
    color: #17130e;
}

.pricing-card a:hover {
    transform: translateY(-2px);
}

@media (max-width: 920px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.story-launch-offer {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 18px;
    border: 1px solid rgba(193,138,75,.28);
    border-radius: 18px;
    background: linear-gradient( 135deg, rgba(193,138,75,.12), rgba(255,255,255,.04) );
    backdrop-filter: blur(12px);
}

.story-launch-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #4ade80;
    box-shadow: 0 0 0 6px rgba(74,222,128,.12);
    animation: launchPulse 2s infinite;
}

.story-launch-offer strong {
    color: var(--a3-primary-light);
    font-size: .78rem;
    font-weight: 720;
}

.story-launch-offer span:last-child {
    color: var(--a3-text-soft);
    font-size: .8rem;
    line-height: 1.5;
}

@keyframes launchPulse {

    0% {
        transform: scale(.9);
        opacity: .8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(.9);
        opacity: .8;
    }
}

.pricing-single {
    max-width: 760px;
    margin: 34px auto 0;
}

    .pricing-single h3 {
        font-size: clamp(2rem, 5vw, 4rem);
        letter-spacing: -.06em;
    }

        .pricing-single h3 small {
            display: block;
            margin-top: 6px;
            color: var(--a3-muted);
            font-size: .92rem;
            font-weight: 500;
            letter-spacing: 0;
        }

.founding-discount {
    display: grid;
    gap: 4px;
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(193,138,75,.38);
    border-radius: 24px;
    background: radial-gradient(circle at 90% 0%, rgba(193,138,75,.18), transparent 34%), rgba(193,138,75,.1);
}

    .founding-discount strong {
        color: var(--a3-primary-light);
        font-size: clamp(1.35rem, 3vw, 2.2rem);
        font-weight: 720;
        letter-spacing: -.04em;
    }

    .founding-discount span {
        color: var(--a3-text-soft);
        font-size: .88rem;
    }

.pricing-table {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 15px;
    border: 1px solid var(--a3-border);
    border-radius: 18px;
    background: rgba(255,255,255,.045);
}

    .pricing-row span {
        color: var(--a3-text-soft);
        font-size: .88rem;
    }

    .pricing-row strong {
        color: var(--a3-text);
        font-size: .88rem;
        font-weight: 650;
        text-align: right;
    }

    .pricing-row.muted {
        opacity: .68;
    }

.pricing-note {
    margin-top: 18px;
    color: var(--a3-muted);
    font-size: .9rem;
    line-height: 1.65;
}

.pricing-single ul {
    columns: 2;
}

@media (max-width: 640px) {
    .pricing-row {
        align-items: flex-start;
        flex-direction: column;
    }

        .pricing-row strong {
            text-align: left;
        }

    .pricing-single ul {
        columns: 1;
    }
}

.pricing-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 18px 0 0;
}

.pricing-original {
    color: var(--a3-muted);
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: line-through;
    opacity: .7;
}

.pricing-current {
    color: var(--a3-primary-light);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 760;
    letter-spacing: -.08em;
    line-height: .95;
}

.pricing-price small {
    color: var(--a3-text-soft);
    font-size: .95rem;
    font-weight: 500;
    margin-top: 6px;
}

.pricing-row.active {
    border-color: color-mix(in srgb, var(--a3-primary) 35%, transparent);
    background: linear-gradient( 135deg, color-mix(in srgb, var(--a3-primary) 16%, transparent), rgba(255,255,255,.05) );
}

.pricing-highlight {
    color: var(--a3-primary-light);
    font-weight: 700;
}

.pricing-row.disabled {
    opacity: .45;
}

    .pricing-row.disabled strong {
        color: var(--a3-muted);
        text-decoration-thickness: 2px;
    }