:root {
    --al-ink: #102033;
    --al-muted: #5f6f80;
    --al-line: #dce5ea;
    --al-paper: #fbfaf6;
    --al-cream: #f4f0e7;
    --al-navy: #0a1b2d;
    --al-navy-2: #102a42;
    --al-blue: #2d76a7;
    --al-teal: #1f8f83;
    --al-gold: #d2a34b;
    --al-green: #3a9b6c;
    --al-shadow: 0 24px 70px rgba(14, 31, 48, .13);
}

.al-home {
    overflow: hidden;
    color: var(--al-ink);
    background: var(--al-paper);
}

.al-home .btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    padding: 0 20px;
    font-weight: 850;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.al-home .btn:hover {
    transform: translateY(-2px);
}

.al-hero {
    position: relative;
    min-height: 860px;
    display: flex;
    align-items: center;
    padding: 138px 0 88px;
    color: #fff;
    background:
        linear-gradient(118deg, rgba(7, 22, 36, .99), rgba(12, 39, 57, .98) 54%, rgba(24, 54, 64, .96)),
        #0a1b2d;
    isolation: isolate;
}

.al-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .14;
    background-image:
        linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.al-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 190px;
    background: linear-gradient(to bottom, transparent, rgba(2, 13, 22, .34));
}

.al-hero-shape {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(2px);
    pointer-events: none;
}

.al-hero-shape-one {
    width: 520px;
    height: 520px;
    top: -250px;
    right: 12%;
    background: radial-gradient(circle, rgba(210, 163, 75, .30), rgba(210, 163, 75, 0) 68%);
}

.al-hero-shape-two {
    width: 460px;
    height: 460px;
    left: -220px;
    bottom: -170px;
    background: radial-gradient(circle, rgba(31, 143, 131, .25), rgba(31, 143, 131, 0) 70%);
}

.al-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
    gap: clamp(44px, 6vw, 94px);
    align-items: center;
}

.al-hero-copy {
    max-width: 720px;
}

.al-kicker,
.al-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .02em;
}

.al-kicker {
    min-height: 38px;
    padding: 0 14px 0 7px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.84);
    backdrop-filter: blur(12px);
}

.al-kicker-mark {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #1a2b35;
    background: #f2d38c;
    font-weight: 950;
}

.al-hero h1 {
    margin: 24px 0 20px;
    max-width: 850px;
    font-size: clamp(48px, 5.3vw, 82px);
    line-height: .98;
    letter-spacing: -.065em;
    font-weight: 950;
}

.al-hero h1 span {
    display: block;
    color: #f1cf86;
}

.al-hero-lead {
    margin: 0;
    max-width: 710px;
    color: rgba(239, 246, 248, .76);
    font-size: 18px;
    line-height: 1.78;
}

.al-hero-lead strong {
    color: #fff;
    font-weight: 900;
}

.al-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.al-btn-primary {
    border: 0;
    color: #0f2330;
    background: linear-gradient(135deg, #efd38f, #cfaa5c);
    box-shadow: 0 18px 38px rgba(210, 163, 75, .24);
}

.al-btn-primary:hover,
.al-btn-primary:focus {
    color: #0f2330;
    background: linear-gradient(135deg, #f6dea6, #dbb869);
    box-shadow: 0 22px 44px rgba(210, 163, 75, .32);
}

.al-btn-secondary {
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    background: rgba(255,255,255,.08);
}

.al-btn-secondary:hover,
.al-btn-secondary:focus {
    color: #fff;
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.34);
}

.al-hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
}

.al-hero-trust > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 92px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
}

.al-hero-trust i {
    margin-top: 2px;
    color: #f1cf86;
    font-size: 18px;
}

.al-hero-trust span {
    color: rgba(236, 244, 248, .67);
    font-size: 12px;
    line-height: 1.5;
}

.al-hero-trust strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: 13px;
}

.al-hero-stage {
    position: relative;
    padding-bottom: 72px;
}

.al-stage-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 30px;
    background: rgba(250, 252, 251, .97);
    color: var(--al-ink);
    box-shadow: 0 38px 95px rgba(0,0,0,.32);
    transform: rotate(1deg);
}

.al-stage-top {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    border-bottom: 1px solid #e2e9ed;
    background: #fff;
}

.al-window-dots {
    display: flex;
    gap: 6px;
}

.al-window-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5dc;
}

.al-window-dots span:nth-child(2) {
    background: #d8b56d;
}

.al-window-dots span:nth-child(3) {
    background: #6ea899;
}

.al-stage-top strong {
    font-size: 13px;
}

.al-live-pill {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #226b4e;
    background: #edf8f2;
    font-size: 11px;
    font-weight: 850;
}

.al-live-pill i,
.al-product-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3a9b6c;
    box-shadow: 0 0 0 4px rgba(58, 155, 108, .12);
}

.al-stage-content {
    padding: 26px;
    background:
        radial-gradient(circle at 100% 0%, rgba(210, 163, 75, .12), transparent 35%),
        linear-gradient(180deg, #fbfaf6, #f5f7f5);
}

.al-stage-heading > span {
    color: #7b6540;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.al-stage-heading h2 {
    margin: 8px 0 22px;
    max-width: 440px;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.06;
    letter-spacing: -.04em;
    font-weight: 950;
}

.al-stage-flow {
    display: grid;
}

.al-stage-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 108px;
    padding: 17px;
    border: 1px solid #dde6e9;
    border-radius: 20px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 12px 28px rgba(18, 39, 55, .06);
}

.al-stage-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 21px;
}

.al-step-help .al-stage-icon {
    color: #235f89;
    background: #e9f4fb;
}

.al-step-asset .al-stage-icon {
    color: #8a6726;
    background: #fbf1da;
}

.al-step-survey .al-stage-icon {
    color: #247465;
    background: #e7f6f1;
}

.al-stage-step small,
.al-stage-step strong,
.al-stage-step span {
    display: block;
}

.al-stage-step small {
    color: #80909d;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.al-stage-step strong {
    margin-top: 3px;
    font-size: 16px;
}

.al-stage-step span {
    margin-top: 4px;
    color: #6f7f8d;
    font-size: 12px;
    line-height: 1.48;
}

.al-flow-connector {
    width: 34px;
    height: 28px;
    display: grid;
    place-items: center;
    margin-left: 27px;
    color: #a58b58;
    border-left: 1px dashed #cbb98f;
}

.al-human-card {
    position: absolute;
    right: -28px;
    bottom: 0;
    width: min(430px, 82%);
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 14px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 22px;
    background: rgba(13, 35, 49, .91);
    box-shadow: 0 20px 50px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
}

.al-human-card img {
    width: 86px;
    height: 68px;
    object-fit: cover;
    border-radius: 15px;
}

.al-human-card small,
.al-human-card strong {
    display: block;
}

.al-human-card small {
    color: #e4c77f;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.al-human-card strong {
    margin-top: 4px;
    color: #fff;
    font-size: 13px;
    line-height: 1.45;
}

.al-manifest {
    position: relative;
    z-index: 2;
    background: #efe8d9;
    border-bottom: 1px solid #e1d8c7;
}

.al-manifest-grid {
    min-height: 205px;
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 80px;
    align-items: center;
}

.al-manifest-title span {
    color: #876b35;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.al-manifest-title h2 {
    max-width: 610px;
    margin: 10px 0 0;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.06;
    letter-spacing: -.045em;
    font-weight: 950;
}

.al-manifest-copy {
    border-left: 1px solid #d1c4aa;
    padding-left: 38px;
}

.al-manifest-copy p {
    margin: 0;
    color: #596675;
    font-size: 17px;
    line-height: 1.75;
}

.al-products {
    padding: 110px 0;
    background:
        radial-gradient(circle at 5% 10%, rgba(45, 118, 167, .08), transparent 29%),
        #fbfaf6;
}

.al-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 36px;
}

.al-section-head-center {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
}

.al-section-kicker {
    min-height: 32px;
    padding: 0 12px;
    color: #416275;
    border: 1px solid #d9e3e8;
    background: #f3f7f8;
}

.al-section-head h2,
.al-journey-copy h2,
.al-team-copy h2,
.al-start h2 {
    margin: 14px 0 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 950;
}

.al-section-head p {
    margin: 0;
    color: var(--al-muted);
    font-size: 16px;
    line-height: 1.72;
}

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

.al-product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #dbe4e8;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 52px rgba(20, 41, 57, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.al-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--al-shadow);
}

.al-product-media {
    position: relative;
    height: 238px;
    overflow: hidden;
    background: #10263b;
}

.al-product-media > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.al-product-card:hover .al-product-media > img {
    transform: scale(1.035);
}


.al-product-asset .al-product-media > img {
    object-fit: contain;
    object-position: center top;
    padding: 10px;
    background: transparent;
}

.al-product-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(6, 22, 35, .34), transparent 52%);
}

.al-product-status {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 999px;
    color: #1f674a;
    background: rgba(247, 253, 249, .95);
    border: 1px solid rgba(47, 133, 92, .16);
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(8, 30, 21, .10);
}

.al-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.al-product-name {
    display: flex;
    align-items: center;
    gap: 13px;
}

.al-product-logo {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: #2d76a7;
    font-size: 21px;
}

.al-product-survey .al-product-logo {
    background: #1f8f83;
}

.al-product-asset .al-product-logo {
    color: #3f2e0d;
    background: #e4c273;
}

.al-product-name small,
.al-product-name h3 {
    display: block;
}

.al-product-name small {
    color: #87949d;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.al-product-name h3 {
    margin: 2px 0 0;
    font-size: 27px;
    font-weight: 950;
    letter-spacing: -.04em;
}

.al-product-body > p {
    min-height: 108px;
    margin: 20px 0 0;
    color: var(--al-muted);
    line-height: 1.65;
}

.al-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.al-product-tags span {
    padding: 7px 9px;
    border-radius: 999px;
    color: #536575;
    background: #f2f5f6;
    border: 1px solid #e3e9ec;
    font-size: 10px;
    font-weight: 850;
}

.al-product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 24px;
}

.al-product-primary {
    min-height: 44px !important;
    padding: 0 14px !important;
    border: 0;
    color: #fff;
    background: #102a42;
    font-size: 12px;
}

.al-product-primary:hover,
.al-product-primary:focus {
    color: #fff;
    background: #173d5d;
}

.al-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #244f6a;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.al-text-link:hover {
    color: #17384d;
}

.al-asset-media {
    display: grid;
    place-items: center;
    padding: 20px;
    background:
        radial-gradient(circle at 90% 8%, rgba(226, 192, 113, .27), transparent 32%),
        linear-gradient(135deg, #0c1f32, #173f56);
}

.al-asset-media::after {
    display: none;
}

.al-asset-app {
    width: 100%;
    max-width: 360px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 17px;
    background: #f8faf9;
    box-shadow: 0 18px 38px rgba(0,0,0,.28);
    transform: perspective(900px) rotateX(2deg) rotateY(-2deg);
}

.al-asset-app-top {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 11px;
    color: #fff;
    background: #122d40;
    font-size: 9px;
}

.al-asset-app-top strong {
    font-size: 12px;
}

.al-asset-app-top span {
    color: rgba(255,255,255,.58);
}

.al-asset-app-top i {
    margin-left: auto;
}

.al-asset-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 9px;
    background: #f1f4f3;
}

.al-asset-metrics div {
    padding: 7px;
    border-radius: 9px;
    background: #fff;
    border: 1px solid #e0e7e5;
}

.al-asset-metrics small,
.al-asset-metrics strong {
    display: block;
}

.al-asset-metrics small {
    color: #8a979d;
    font-size: 7px;
}

.al-asset-metrics strong {
    margin-top: 2px;
    color: #223846;
    font-size: 9px;
}

.al-asset-table {
    display: grid;
    gap: 5px;
    padding: 0 9px 9px;
}

.al-asset-row {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 7px;
    border: 1px solid #e1e7e6;
    border-radius: 9px;
    background: #fff;
}

.al-device-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #436b7d;
    background: #edf3f5;
    font-size: 11px;
}

.al-asset-row strong,
.al-asset-row small {
    display: block;
}

.al-asset-row strong {
    color: #263c48;
    font-size: 8px;
}

.al-asset-row small {
    margin-top: 1px;
    color: #8b989d;
    font-size: 6px;
}

.al-row-state {
    padding: 4px 5px;
    border-radius: 999px;
    color: #2d7858;
    background: #eaf7ef;
    font-size: 6px;
    font-weight: 900;
}

.al-row-warn {
    color: #83621e;
    background: #fbf2d9;
}

.al-journey {
    padding: 112px 0;
    color: #fff;
    background:
        radial-gradient(circle at 5% 100%, rgba(31, 143, 131, .23), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(210, 163, 75, .18), transparent 30%),
        #0b2033;
}

.al-journey-shell {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(560px, 1.25fr);
    gap: 76px;
    align-items: center;
}

.al-journey-copy .al-section-kicker {
    color: #efd28f;
    border-color: rgba(239, 210, 143, .20);
    background: rgba(239, 210, 143, .08);
}

.al-journey-copy p {
    margin: 20px 0 24px;
    color: rgba(235, 243, 246, .69);
    font-size: 16px;
    line-height: 1.75;
}

.al-text-link-light {
    color: #f1d28a;
}

.al-text-link-light:hover {
    color: #ffe5a5;
}

.al-journey-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.al-journey-line {
    position: absolute;
    inset: 50% 15% auto;
    height: 1px;
    border-top: 1px dashed rgba(238, 211, 145, .24);
}

.al-journey-map article {
    position: relative;
    z-index: 1;
    min-height: 205px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(255,255,255,.065);
    backdrop-filter: blur(10px);
}

.al-journey-map article > span {
    position: absolute;
    right: 18px;
    top: 15px;
    color: rgba(255,255,255,.25);
    font-size: 26px;
    font-weight: 950;
}

.al-journey-map article > i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #132b35;
    background: #e8cb86;
    font-size: 20px;
}

.al-journey-map h3 {
    margin: 20px 0 8px;
    font-size: 19px;
    font-weight: 900;
}

.al-journey-map p {
    margin: 0;
    color: rgba(235, 243, 246, .64);
    font-size: 13px;
    line-height: 1.62;
}

.al-team {
    padding: 110px 0;
    background: #f5f1e8;
}

.al-team-grid {
    display: grid;
    grid-template-columns: minmax(460px, 1fr) minmax(0, .9fr);
    gap: 72px;
    align-items: center;
}

.al-team-photo {
    position: relative;
    padding: 12px;
    border: 1px solid #d9d1c1;
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--al-shadow);
}

.al-team-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    border-radius: 23px;
}

.al-team-caption {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 19px;
    color: #fff;
    background: rgba(9, 28, 41, .86);
    backdrop-filter: blur(14px);
}

.al-team-caption > i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #293323;
    background: #e7c879;
}

.al-team-caption small,
.al-team-caption strong {
    display: block;
}

.al-team-caption small {
    color: #e8cc89;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.al-team-caption strong {
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.4;
}

.al-team-copy > p {
    margin: 20px 0 0;
    color: var(--al-muted);
    font-size: 16px;
    line-height: 1.75;
}

.al-team-copy blockquote {
    margin: 26px 0 0;
    padding: 22px 24px;
    border-left: 4px solid #d2a34b;
    border-radius: 0 18px 18px 0;
    color: #263847;
    background: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.68;
    font-weight: 650;
}

.al-team-copy blockquote footer {
    margin-top: 10px;
    color: #7b6540;
    font-size: 12px;
    font-weight: 900;
}

.al-team-points {
    display: grid;
    gap: 10px;
    margin-top: 23px;
}

.al-team-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #405261;
    font-size: 13px;
    font-weight: 800;
}

.al-team-points i {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #3a8e6b;
}

.al-audience {
    padding: 104px 0;
    background: #fff;
}

.al-audience-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 38px;
}

.al-audience-grid article {
    min-height: 228px;
    padding: 22px;
    border: 1px solid #dfe7ea;
    border-radius: 22px;
    background: #fbfcfb;
    transition: transform .22s ease, box-shadow .22s ease;
}

.al-audience-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(18, 39, 55, .08);
}

.al-audience-grid article > span {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #315f78;
    background: #edf4f7;
    font-size: 20px;
}

.al-audience-grid article:nth-child(2) > span,
.al-audience-grid article:nth-child(4) > span {
    color: #78602e;
    background: #f8f0dc;
}

.al-audience-grid article:nth-child(3) > span {
    color: #276c60;
    background: #eaf5f1;
}

.al-audience-grid h3 {
    margin: 20px 0 8px;
    font-size: 17px;
    font-weight: 900;
}

.al-audience-grid p {
    margin: 0;
    color: var(--al-muted);
    font-size: 13px;
    line-height: 1.65;
}

.al-start {
    padding: 0 0 92px;
    background: #fff;
}

.al-start-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: center;
    padding: 44px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0%, rgba(210, 163, 75, .22), transparent 34%),
        linear-gradient(135deg, #0b1f31, #12384a);
    box-shadow: var(--al-shadow);
}

.al-start h2 {
    max-width: 800px;
    font-size: clamp(32px, 3.6vw, 50px);
}

.al-start p {
    max-width: 760px;
    margin: 16px 0 0;
    color: rgba(235, 243, 246, .70);
    line-height: 1.7;
}

.al-start .al-section-kicker {
    color: #efd28f;
    border-color: rgba(239, 210, 143, .20);
    background: rgba(239, 210, 143, .08);
}

.al-start-actions {
    display: grid;
    gap: 10px;
    min-width: 250px;
}

.al-btn-secondary-dark {
    border-color: rgba(255,255,255,.16);
}

@media (max-width: 1200px) {
    .al-hero-grid,
    .al-team-grid {
        grid-template-columns: 1fr;
    }

    .al-hero-copy {
        max-width: 920px;
    }

    .al-hero-stage {
        max-width: 780px;
    }

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

    .al-product-asset {
        grid-column: 1 / -1;
    }

    .al-product-asset .al-product-media {
        height: 285px;
    }

    .al-product-asset .al-product-body > p {
        min-height: auto;
    }

    .al-audience-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .al-hero {
        min-height: auto;
        padding-top: 122px;
    }

    .al-manifest-grid,
    .al-section-head,
    .al-journey-shell,
    .al-start-shell {
        grid-template-columns: 1fr;
    }

    .al-manifest-grid {
        gap: 26px;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .al-manifest-copy {
        border-left: 0;
        border-top: 1px solid #d1c4aa;
        padding: 24px 0 0;
    }

    .al-journey-shell {
        gap: 42px;
    }

    .al-section-head {
        gap: 18px;
    }

    .al-start-actions {
        width: min(100%, 430px);
    }
}

@media (max-width: 768px) {
    .al-hero h1 {
        font-size: clamp(41px, 12vw, 62px);
    }

    .al-hero-lead {
        font-size: 16px;
    }

    .al-hero-trust,
    .al-product-grid,
    .al-journey-map,
    .al-audience-grid {
        grid-template-columns: 1fr;
    }

    .al-product-asset {
        grid-column: auto;
    }

    .al-product-body > p {
        min-height: auto;
    }

    .al-hero-stage {
        padding-bottom: 0;
    }

    .al-human-card {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .al-stage-window {
        transform: none;
    }

    .al-team-grid {
        gap: 40px;
    }

    .al-team-caption {
        position: static;
        margin-top: 10px;
    }

    .al-start-shell {
        padding: 30px;
    }
}

@media (max-width: 560px) {
    .al-hero {
        padding: 104px 0 64px;
    }

    .al-hero-actions,
    .al-product-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .al-home .al-hero-actions .btn,
    .al-home .al-product-actions .btn,
    .al-start-actions .btn {
        width: 100%;
    }

    .al-product-actions {
        align-items: flex-start;
    }

    .al-stage-top {
        align-items: flex-start;
        flex-wrap: wrap;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .al-live-pill {
        margin-left: 0;
    }

    .al-stage-content {
        padding: 18px;
    }

    .al-stage-step {
        grid-template-columns: 44px 1fr;
        padding: 13px;
    }

    .al-stage-icon {
        width: 40px;
        height: 40px;
        border-radius: 13px;
        font-size: 17px;
    }

    .al-flow-connector {
        margin-left: 22px;
    }

    .al-human-card {
        grid-template-columns: 70px 1fr;
    }

    .al-human-card img {
        width: 70px;
        height: 60px;
    }

    .al-products,
    .al-journey,
    .al-team,
    .al-audience {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .al-product-media,
    .al-product-asset .al-product-media {
        height: 220px;
    }

    .al-product-body {
        padding: 20px;
    }

    .al-team-photo {
        padding: 7px;
        border-radius: 24px;
    }

    .al-team-photo img {
        border-radius: 18px;
    }

    .al-start {
        padding-bottom: 68px;
    }

    .al-start-shell {
        padding: 24px;
        border-radius: 24px;
    }
}
