.landing-page {
    --landing-border: #d9e2ef;
    --landing-ink: #13233a;
    --landing-muted: #5d6b7c;
    --landing-panel: #ffffff;
    --landing-soft: #f4f7fb;
    --landing-blue: var(--blue-700);
    --landing-blue-dark: var(--blue-800);
    --landing-green: #176b4d;
    --landing-orange: #a8560b;
    --landing-gray: #4f5b67;

    color: var(--landing-ink);
    padding: 2rem clamp(1rem, 2.4vw, 2.5rem) 3rem;
}

.landing-hero {
    align-items: center;
    background:
        linear-gradient(rgba(32, 159, 252, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 128, 255, 0.07) 1px, transparent 1px),
        linear-gradient(135deg, #0d2b62 0%, #142a4b 60%, #193f87 100%);
    background-size: 32px 32px, 32px 32px, 100% 100%;
    border: 1px solid rgba(0, 212, 255, .15);
    border-radius: 8px;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    margin-top: .75rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
    padding: clamp(.9rem, 1.6vw, 1.35rem);
    position: relative;
}

.landing-hero::before {
    background: #00d4ff;
    box-shadow: 0 0 12px rgba(0, 212, 255, .7), 0 0 28px rgba(0, 212, 255, .35);
    content: "";
    inset: 0 auto 0 0;
    position: absolute;
    width: 4px;
}

.landing-hero__content,
.landing-hero__brand {
    position: relative;
}

.landing-eyebrow {
    align-items: center;
    color: var(--landing-blue);
    display: inline-flex;
    font-size: .76rem;
    font-weight: 800;
    gap: .45rem;
    letter-spacing: .06em;
    margin-bottom: .65rem;
    text-transform: uppercase;
}

.landing-hero h1 {
    color: #e8f6ff;
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 0 18px rgba(0, 212, 255, .25);
}

.landing-hero__brand {
    align-items: center;
    align-self: center;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.landing-brand-mark {
    align-items: center;
    color: #e8f6ff;
    display: inline-flex;
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    font-weight: 800;
    gap: .7rem;
    letter-spacing: .06em;
    line-height: 1;
    margin: 0;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
}

.landing-brand-mark::after {
    background: linear-gradient(90deg, transparent, #00d4ff);
    box-shadow: 0 0 6px rgba(0, 212, 255, .5);
    content: "";
    height: 1px;
    opacity: .7;
    position: absolute;
    right: 0;
    top: calc(100% + .35rem);
    width: 72%;
}

.landing-brand-mark i {
    align-items: center;
    background: rgba(0, 212, 255, .08);
    border: 1px solid rgba(0, 212, 255, .4);
    border-radius: 8px;
    box-shadow: 0 0 14px rgba(0, 212, 255, .3), 0 0 28px rgba(0, 212, 255, .12);
    color: #00d4ff;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.landing-brand-mark span {
    -webkit-background-clip: text;
    background: linear-gradient(90deg, #00d4ff 0%, #e8f6ff 55%, #00d4ff 100%);
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, .55));
}

.landing-quick-actions,
.landing-workflow {
    margin-bottom: 1.5rem;
}

.landing-section-heading {
    margin-bottom: .9rem;
}

.landing-section-heading h2 {
    color: var(--landing-ink);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0;
}

.landing-section-heading--split {
    align-items: end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.landing-section-heading--split p {
    color: var(--landing-muted);
    margin: 0;
    max-width: 440px;
    text-align: right;
}

.landing-action-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.landing-workflow__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-workflow__legend {
    color: var(--landing-muted);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    margin: 0;
    text-transform: uppercase;
}

.landing-workflow__legend i {
    color: var(--landing-blue);
    margin-right: .35rem;
}

.landing-action,
.landing-workflow-step,
.landing-card {
    background: var(--landing-panel);
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(19, 35, 58, .06);
}

/* ============= QUICK ACTIONS ============= */
.landing-action {
    --action-accent: var(--landing-blue);
    --action-accent-soft: #e8f1ff;
    align-items: center;
    color: var(--landing-ink);
    display: grid;
    gap: 1rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
    isolation: isolate;
    min-height: 110px;
    overflow: hidden;
    padding: 1.15rem 1.25rem;
    position: relative;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .25s ease, transform .2s ease;
}

.landing-action::before {
    background: var(--action-accent);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: width .25s ease;
    width: 4px;
    z-index: 1;
}

.landing-action__glow {
    background: radial-gradient(circle at top right, var(--action-accent-soft), transparent 65%);
    inset: 0;
    opacity: .55;
    pointer-events: none;
    position: absolute;
    transition: opacity .25s ease;
    z-index: 0;
}

.landing-action > *:not(.landing-action__glow) {
    position: relative;
    z-index: 1;
}

.landing-action:hover,
.landing-workflow-step:hover,
.landing-link:hover,
.landing-card__footer a:hover {
    text-decoration: none;
}

.landing-action:hover {
    border-color: var(--action-accent);
    box-shadow: 0 18px 38px rgba(19, 35, 58, .12);
    transform: translateY(-3px);
}

.landing-action:hover::before {
    width: 6px;
}

.landing-action:hover .landing-action__glow {
    opacity: 1;
}

.landing-action:hover .landing-action__cta {
    background: var(--action-accent);
    color: #fff;
    transform: translateX(3px);
}

/* Accent variants */
.landing-action--blue { --action-accent: var(--landing-blue); --action-accent-soft: #e8f1ff; }
.landing-action--red {
    --action-accent: #b42318;
    --action-accent-soft: #fee4e2;
}
.landing-action--green {
    --action-accent: var(--landing-green);
    --action-accent-soft: #e7f4ee;
}
.landing-action--orange {
    --action-accent: var(--landing-orange);
    --action-accent-soft: #fff0df;
}

/* Primary (featured) */
.landing-action--primary {
    background:
        linear-gradient(rgba(0, 212, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, .05) 1px, transparent 1px),
        linear-gradient(135deg, #0a1e4a 0%, #0d2354 60%, #0a1e4a 100%);
    background-size: 32px 32px, 32px 32px, 100% 100%;
    border-color: rgba(0, 212, 255, .35);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, .08), inset 0 0 40px rgba(0, 212, 255, .03);
    color: #fff;
    grid-row: span 1;
    overflow: hidden;
}

.landing-action--primary::before {
    background: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, .7), 0 0 20px rgba(0, 212, 255, .35);
    width: 4px;
}

.landing-action--primary::after {
    animation: cyber-scan 20s linear infinite;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, .18), transparent);
    content: "";
    height: 100%;
    left: -60%;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 50%;
    z-index: 1;
}

.landing-action--primary .landing-action__glow {
    background: radial-gradient(circle at top right, rgba(0, 212, 255, .1), transparent 60%),
                radial-gradient(circle at bottom left, rgba(0, 212, 255, .05), transparent 55%);
    opacity: 1;
}

.landing-action--primary:hover {
    border-color: rgba(0, 212, 255, .5);
    box-shadow: 0 18px 38px rgba(10, 30, 74, .35);
    transform: translateY(-3px);
}

.landing-action--primary small,
.landing-action--primary .landing-action__kicker {
    color: rgba(0, 212, 255, .75);
}

.landing-action--primary .landing-action__cta {
    background: rgba(0, 212, 255, .1);
    border: 1px solid rgba(0, 212, 255, .3);
    color: #00d4ff;
}

.landing-action--primary:hover .landing-action__cta {
    background: #00d4ff;
    color: #060d1a;
}

@keyframes cyber-scan {
    0%     { left: -50%; }
    22%    { left: 110%; }
    22.01% { left: -50%; }
    100%   { left: -50%; }
}

.landing-action__icon,
.landing-workflow-step__icon,
.landing-card__icon {
    align-items: center;
    border-radius: 10px;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.landing-action__icon {
    background: var(--action-accent-soft);
    color: var(--action-accent);
    font-size: 1.15rem;
}

.landing-action--primary .landing-action__icon {
    background: rgba(0, 212, 255, .1);
    border: 1px solid rgba(0, 212, 255, .35);
    box-shadow: 0 0 14px rgba(0, 212, 255, .25);
    color: #00d4ff;
    height: 54px;
    width: 54px;
}

.landing-action__body {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0;
}

.landing-action__kicker {
    color: var(--action-accent);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: .15rem;
    text-transform: uppercase;
}

.landing-action strong,
.landing-action small,
.landing-workflow-step strong,
.landing-workflow-step small {
    display: block;
}

.landing-action strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1.2;
}

.landing-action--primary strong {
    font-size: 1.1rem;
}

.landing-action small,
.landing-workflow-step small {
    color: var(--landing-muted);
    font-size: .82rem;
    line-height: 1.4;
    margin-top: .2rem;
}

.landing-action__cta {
    align-items: center;
    background: var(--action-accent-soft);
    border-radius: 50%;
    color: var(--action-accent);
    display: inline-flex;
    flex-shrink: 0;
    font-size: .95rem;
    height: 36px;
    justify-content: center;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
    width: 36px;
}

/* ============= WORKFLOW ============= */
.landing-workflow-step-wrap {
    position: relative;
}

.landing-workflow-step-wrap:not(:last-child)::after {
    align-items: center;
    background: var(--landing-panel);
    border: 1px solid var(--landing-border);
    border-radius: 50%;
    color: var(--landing-blue);
    content: "\f061";
    display: flex;
    font-family: "Font Awesome 6 Free";
    font-size: .7rem;
    font-weight: 900;
    height: 24px;
    justify-content: center;
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    z-index: 2;
}

.landing-workflow-step {
    --step-accent: var(--landing-blue);
    --step-accent-soft: #e8f1ff;
    align-items: start;
    color: var(--landing-ink);
    display: grid;
    column-gap: .9rem;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    height: 100%;
    isolation: isolate;
    min-height: 170px;
    overflow: hidden;
    padding: 1.15rem 1.25rem;
    position: relative;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .25s ease, transform .2s ease;
}

.landing-workflow-step::before {
    background: linear-gradient(135deg, var(--step-accent-soft) 0%, transparent 70%);
    content: "";
    height: 100%;
    inset: 0;
    opacity: .55;
    pointer-events: none;
    position: absolute;
    transition: opacity .25s ease;
    z-index: 0;
}

.landing-workflow-step > * {
    position: relative;
    z-index: 1;
}

.landing-workflow-step:hover {
    border-color: var(--step-accent);
    box-shadow: 0 18px 38px rgba(19, 35, 58, .12);
    transform: translateY(-3px);
}

.landing-workflow-step:hover::before {
    opacity: 1;
}

.landing-workflow-step:hover .landing-workflow-step__arrow {
    background: var(--step-accent);
    color: #fff;
    transform: translateX(3px);
}

.landing-workflow-step--blue { --step-accent: var(--landing-blue); --step-accent-soft: #e8f1ff; }
.landing-workflow-step--orange { --step-accent: var(--landing-orange); --step-accent-soft: #fff0df; }
.landing-workflow-step--green { --step-accent: var(--landing-green); --step-accent-soft: #e7f4ee; }
.landing-workflow-step--purple {
    --step-accent: #6941c6;
    --step-accent-soft: #f0eaff;
}

.landing-workflow-step__number {
    color: var(--step-accent);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    grid-column: 1 / span 2;
    grid-row: 1;
    letter-spacing: -.04em;
    line-height: 1;
    opacity: .18;
    pointer-events: none;
    position: absolute;
    right: 1rem;
    top: .85rem;
    z-index: 0;
}

.landing-workflow-step__phase {
    color: var(--step-accent);
    font-size: .7rem;
    font-weight: 800;
    grid-column: 1 / span 2;
    grid-row: 1;
    letter-spacing: .12em;
    line-height: 1;
    margin-bottom: .35rem;
    text-transform: uppercase;
}

.landing-workflow-step__icon {
    background: #fff;
    border: 1px solid var(--step-accent);
    color: var(--step-accent);
    font-size: 1.1rem;
    grid-column: 1 / span 2;
    grid-row: 2;
    margin: .35rem 0 .65rem;
}

.landing-workflow-step strong {
    color: var(--landing-ink);
    font-size: 1rem;
    font-weight: 800;
    grid-column: 1 / span 2;
    grid-row: 3;
    letter-spacing: -.01em;
    line-height: 1.25;
}

.landing-workflow-step small {
    grid-column: 1 / span 2;
    grid-row: 4;
}

.landing-workflow-step__arrow {
    align-items: center;
    background: var(--step-accent-soft);
    border-radius: 50%;
    bottom: 1rem;
    color: var(--step-accent);
    display: inline-flex;
    font-size: .8rem;
    height: 30px;
    justify-content: center;
    position: absolute;
    right: 1rem;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
    width: 30px;
}

.landing-section-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.landing-card__header {
    border-top: 4px solid var(--landing-blue);
    display: grid;
    gap: .85rem;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 1.1rem 1.15rem .95rem;
}

.landing-card--green .landing-card__header {
    border-top-color: var(--landing-green);
}

.landing-card--orange .landing-card__header {
    border-top-color: var(--landing-orange);
}

.landing-card--gray .landing-card__header {
    border-top-color: var(--landing-gray);
}

.landing-card__icon {
    background: #e8f1ff;
    color: var(--landing-blue);
}

.landing-card--green .landing-card__icon {
    background: #e7f4ee;
    color: var(--landing-green);
}

.landing-card--orange .landing-card__icon {
    background: #fff0df;
    color: var(--landing-orange);
}

.landing-card--gray .landing-card__icon {
    background: #eef1f4;
    color: var(--landing-gray);
}

.landing-card h3 {
    color: var(--landing-ink);
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 .25rem;
}

.landing-card p {
    color: var(--landing-muted);
    font-size: .86rem;
    line-height: 1.45;
    margin: 0;
}

.landing-card__links {
    display: grid;
    gap: .35rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 1rem 1rem;
}

.landing-link {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--landing-ink);
    display: grid;
    font-size: .9rem;
    gap: .55rem;
    grid-template-columns: 1.25rem minmax(0, 1fr) auto;
    min-height: 42px;
    padding: .55rem .65rem;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.landing-link:hover {
    background: #f4f8ff;
    border-color: #d8e7ff;
    color: var(--landing-blue-dark);
}

.landing-link-icon {
    color: var(--landing-blue);
    text-align: center;
}

.landing-link-arrow {
    color: #a0adba;
    font-size: .78rem;
}

.landing-card__footer {
    background: #f7f9fc;
    border-top: 1px solid var(--landing-border);
    margin-top: auto;
    padding: .75rem 1.15rem;
}

.landing-card__footer a {
    align-items: center;
    color: var(--landing-blue);
    display: inline-flex;
    font-weight: 700;
    gap: .45rem;
    text-decoration: none;
}

@media (max-width: 1399.98px) {
    .landing-action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-action--primary {
        grid-column: 1 / -1;
    }

    .landing-workflow__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-workflow-step-wrap:nth-child(2n)::after {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .landing-hero,
    .landing-section-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero__content {
        text-align: center;
    }

    .landing-hero__brand {
        justify-content: center;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .landing-page {
        padding: 1rem .85rem 2rem;
    }

    .landing-hero {
        padding: 1.25rem;
    }

    .landing-section-heading--split {
        align-items: start;
        flex-direction: column;
    }

    .landing-section-heading--split p {
        text-align: left;
    }

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

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

    .landing-action--primary {
        grid-column: auto;
    }

    .landing-workflow-step-wrap::after {
        display: none !important;
    }

    .landing-action {
        grid-template-columns: auto minmax(0, 1fr) auto;
        padding: 1rem;
    }

    .landing-action__cta {
        height: 32px;
        width: 32px;
    }
}
