:root {
    color-scheme: light;
    --landing-bg: #f6f9fc;
    --landing-bg-soft: #edf4fa;
    --landing-surface: rgba(255, 255, 255, 0.88);
    --landing-surface-solid: #ffffff;
    --landing-surface-raised: #f8fbfe;
    --landing-text: #102033;
    --landing-text-soft: #42566d;
    --landing-muted: #6c7f94;
    --landing-border: rgba(15, 45, 75, 0.12);
    --landing-border-strong: rgba(15, 45, 75, 0.2);
    --landing-primary: #0284c7;
    --landing-primary-bright: #38bdf8;
    --landing-secondary: #6366f1;
    --landing-success: #16a34a;
    --landing-danger: #dc2626;
    --landing-warning: #d97706;
    --landing-shadow: 0 24px 70px rgba(29, 59, 88, 0.14);
    --landing-shadow-soft: 0 14px 42px rgba(29, 59, 88, 0.09);
    --landing-header: rgba(246, 249, 252, 0.86);
    --landing-preview-bg: #0f1a2c;
    --landing-preview-surface: #172438;
    --landing-preview-surface-soft: #1c2c43;
    --landing-preview-text: #f8fafc;
    --landing-preview-muted: #94a3b8;
    --landing-max-width: 1220px;
}

:root.dark-mode {
    color-scheme: dark;
    --landing-bg: #07111f;
    --landing-bg-soft: #0b1728;
    --landing-surface: rgba(14, 27, 45, 0.86);
    --landing-surface-solid: #0e1b2d;
    --landing-surface-raised: #132238;
    --landing-text: #f5f9ff;
    --landing-text-soft: #c1cee0;
    --landing-muted: #8ea0b7;
    --landing-border: rgba(148, 163, 184, 0.14);
    --landing-border-strong: rgba(148, 163, 184, 0.24);
    --landing-primary: #38bdf8;
    --landing-primary-bright: #7dd3fc;
    --landing-secondary: #818cf8;
    --landing-success: #4ade80;
    --landing-danger: #fb7185;
    --landing-warning: #fbbf24;
    --landing-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
    --landing-shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.24);
    --landing-header: rgba(7, 17, 31, 0.84);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body.landing-page {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--landing-bg);
    color: var(--landing-text-soft);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.landing-page a {
    color: inherit;
    text-decoration: none;
}

.landing-page button,
.landing-page a {
    -webkit-tap-highlight-color: transparent;
}

.landing-page button,
.landing-page input,
.landing-page select {
    font: inherit;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page p {
    margin-top: 0;
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
    color: var(--landing-text);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.landing-page svg {
    display: block;
}

.landing-shell {
    width: min(calc(100% - 40px), var(--landing-max-width));
    margin-inline: auto;
}

.landing-skip-link {
    position: fixed;
    z-index: 200;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--landing-text);
    color: var(--landing-bg) !important;
    font-weight: 750;
    transform: translateY(-150%);
    transition: transform 0.15s ease;
}

.landing-skip-link:focus {
    transform: translateY(0);
}

.landing-page :focus-visible {
    outline: 3px solid color-mix(in srgb, var(--landing-primary) 70%, transparent);
    outline-offset: 3px;
}

.landing-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid var(--landing-border);
    background: var(--landing-header);
    backdrop-filter: blur(18px);
}

.landing-header__inner {
    display: flex;
    align-items: center;
    min-height: 76px;
}

.landing-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
    color: var(--landing-text) !important;
    font-size: 0.98rem;
    font-weight: 780;
    letter-spacing: -0.025em;
}

.landing-brand img {
    border-radius: 11px;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.16);
}

.landing-navigation {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-left: 52px;
}

.landing-nav,
.landing-header__actions {
    display: flex;
    align-items: center;
}

.landing-nav {
    gap: clamp(18px, 2.2vw, 32px);
}

.landing-nav a,
.landing-login-link {
    color: var(--landing-text-soft);
    font-size: 0.88rem;
    font-weight: 650;
    transition: color 0.16s ease;
}

.landing-nav a:hover,
.landing-login-link:hover {
    color: var(--landing-text);
}

.landing-header__actions {
    gap: 14px;
}

.landing-language {
    display: inline-flex;
    padding: 3px;
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    background: color-mix(in srgb, var(--landing-surface-solid) 70%, transparent);
}

.landing-language button {
    min-width: 32px;
    padding: 5px 7px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--landing-muted);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.landing-language button[aria-pressed="true"] {
    background: var(--landing-surface-raised);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
    color: var(--landing-primary);
}

.landing-icon-button,
.landing-menu-button {
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--landing-border);
    background: color-mix(in srgb, var(--landing-surface-solid) 70%, transparent);
    color: var(--landing-text-soft);
    cursor: pointer;
}

.landing-icon-button {
    width: 38px;
    height: 38px;
    border-radius: 11px;
}

.landing-theme-icon {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

:root.dark-mode .landing-theme-icon--moon,
:root:not(.dark-mode) .landing-theme-icon--sun {
    display: none;
}

.landing-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    gap: 4px;
    padding: 10px;
    border-radius: 12px;
}

.landing-menu-button span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.landing-menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.landing-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.landing-menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.landing-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    box-shadow: 0 12px 30px color-mix(in srgb, var(--landing-primary) 25%, transparent);
    color: #fff !important;
    font-size: 0.92rem;
    font-weight: 760;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.landing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 17px 36px color-mix(in srgb, var(--landing-primary) 32%, transparent);
    filter: saturate(1.08);
}

.landing-button svg,
.landing-text-link svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.landing-button--small {
    min-height: 40px;
    padding: 0 17px;
    border-radius: 11px;
    font-size: 0.82rem;
}

.landing-button--ghost {
    border-color: var(--landing-border-strong);
    background: color-mix(in srgb, var(--landing-surface-solid) 58%, transparent);
    box-shadow: none;
    color: var(--landing-text) !important;
}

.landing-button--ghost:hover {
    border-color: color-mix(in srgb, var(--landing-primary) 45%, var(--landing-border));
    box-shadow: var(--landing-shadow-soft);
}

.landing-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(74px, 9vw, 124px) 0 clamp(72px, 9vw, 118px);
}

.landing-hero::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image:
        linear-gradient(var(--landing-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--landing-border) 1px, transparent 1px);
    background-position: center top;
    background-size: 74px 74px;
    content: "";
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 78%);
    opacity: 0.28;
}

.landing-hero__glow {
    position: absolute;
    z-index: -1;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.17;
    pointer-events: none;
}

.landing-hero__glow--one {
    top: -230px;
    left: 7%;
    background: var(--landing-primary);
}

.landing-hero__glow--two {
    right: -170px;
    bottom: -210px;
    background: var(--landing-secondary);
}

.landing-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(580px, 1.18fr);
    align-items: center;
    gap: clamp(42px, 5.4vw, 78px);
}

.landing-hero__copy {
    max-width: 610px;
}

.landing-eyebrow,
.landing-kicker {
    color: var(--landing-primary);
    font-size: 0.76rem;
    font-weight: 820;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 7px 12px;
    border: 1px solid color-mix(in srgb, var(--landing-primary) 26%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--landing-primary) 8%, transparent);
}

.landing-eyebrow__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--landing-success);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--landing-success) 16%, transparent);
}

.landing-hero h1 {
    max-width: 700px;
    margin-bottom: 26px;
    font-size: clamp(2.85rem, 5vw, 5.25rem);
    font-weight: 820;
    letter-spacing: -0.065em;
}

.landing-hero__lead {
    max-width: 630px;
    margin-bottom: 32px;
    color: var(--landing-text-soft);
    font-size: clamp(1.04rem, 1.45vw, 1.23rem);
    line-height: 1.7;
}

.landing-hero__actions,
.landing-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
}

.landing-hero__note {
    position: relative;
    margin: 22px 0 0;
    padding-left: 18px;
    color: var(--landing-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.landing-hero__note::before {
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 7px;
    height: 7px;
    border: 2px solid var(--landing-primary);
    border-radius: 50%;
    content: "";
}

.landing-product-frame,
.landing-scene {
    border: 1px solid color-mix(in srgb, var(--landing-border-strong) 78%, transparent);
    background: var(--landing-preview-bg);
    box-shadow: var(--landing-shadow);
}

.landing-product-frame {
    min-width: 0;
    overflow: hidden;
    border-radius: 22px;
    transform: perspective(1600px) rotateY(-3deg) rotateX(1.5deg);
    transform-origin: center;
}

.landing-product-frame::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    content: "";
    pointer-events: none;
}

.landing-product-frame__bar {
    display: flex;
    position: relative;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 13px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    background: #111d30;
}

.landing-product-frame__bar > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fb7185;
}

.landing-product-frame__bar > span:nth-child(2) {
    background: #fbbf24;
}

.landing-product-frame__bar > span:nth-child(3) {
    background: #4ade80;
}

.landing-product-frame__bar > div {
    position: absolute;
    left: 50%;
    color: #64748b;
    font-size: 0.54rem;
    letter-spacing: 0.03em;
    transform: translateX(-50%);
}

.landing-dashboard-preview {
    display: grid;
    grid-template-columns: 70px 1fr;
    min-height: 420px;
    color: var(--landing-preview-muted);
}

.landing-preview-sidebar {
    padding: 17px 12px;
    border-right: 1px solid rgba(148, 163, 184, 0.1);
    background: #0b1525;
}

.landing-preview-sidebar > div:not(.landing-preview-logo) {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 9px 0;
    padding: 8px;
    border-radius: 7px;
}

.landing-preview-sidebar > div.is-active {
    background: rgba(56, 189, 248, 0.11);
}

.landing-preview-sidebar > div span {
    width: 9px;
    height: 9px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
}

.landing-preview-sidebar > div i {
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: currentColor;
    opacity: 0.5;
}

.landing-preview-sidebar > div.is-active span,
.landing-preview-sidebar > div.is-active i {
    color: #38bdf8;
}

.landing-preview-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 24px;
    color: #f8fafc;
    font-size: 0.7rem;
}

.landing-dashboard-preview__content {
    min-width: 0;
    padding: 22px;
    background:
        radial-gradient(circle at 100% 0, rgba(129, 140, 248, 0.09), transparent 36%),
        var(--landing-preview-bg);
}

.landing-preview-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.landing-preview-heading > div,
.landing-preview-card-title span,
.landing-scene__header span {
    display: flex;
    flex-direction: column;
}

.landing-preview-heading small,
.landing-scene__header small {
    color: #38bdf8;
    font-size: 0.48rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.landing-preview-heading strong {
    margin-top: 3px;
    color: var(--landing-preview-text);
    font-size: 1.08rem;
}

.landing-preview-heading > span {
    padding: 6px 9px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 7px;
    background: rgba(56, 189, 248, 0.08);
    color: #7dd3fc;
    font-size: 0.52rem;
    font-weight: 700;
}

.landing-preview-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
}

.landing-preview-kpis article {
    display: flex;
    min-width: 0;
    min-height: 86px;
    flex-direction: column;
    justify-content: center;
    padding: 11px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.11);
    border-radius: 9px;
    background: var(--landing-preview-surface);
}

.landing-preview-kpis article.is-primary {
    border-color: rgba(56, 189, 248, 0.23);
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.14), rgba(23, 36, 56, 0.95));
}

.landing-preview-kpis small,
.landing-preview-kpis span,
.landing-preview-kpis i {
    overflow: hidden;
    color: var(--landing-preview-muted);
    font-size: 0.48rem;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-preview-kpis strong {
    margin: 4px 0;
    overflow: hidden;
    color: var(--landing-preview-text);
    font-size: clamp(0.58rem, 0.85vw, 0.8rem);
    font-variant-numeric: tabular-nums;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.is-positive,
.landing-preview-kpis .is-positive {
    color: #4ade80 !important;
}

.is-negative {
    color: #fb7185 !important;
}

.landing-preview-kpis span i {
    color: #4ade80;
}

.landing-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.48fr) minmax(190px, 0.72fr);
    gap: 9px;
    margin-top: 9px;
}

.landing-preview-chart,
.landing-preview-allocation {
    min-width: 0;
    padding: 13px;
    border: 1px solid rgba(148, 163, 184, 0.11);
    border-radius: 9px;
    background: var(--landing-preview-surface);
}

.landing-preview-card-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.landing-preview-card-title b {
    color: var(--landing-preview-text);
    font-size: 0.62rem;
}

.landing-preview-card-title small {
    margin-top: 2px;
    font-size: 0.45rem;
}

.landing-preview-card-title > i {
    padding: 3px 7px;
    border-radius: 5px;
    background: rgba(56, 189, 248, 0.11);
    color: #7dd3fc;
    font-size: 0.45rem;
    font-style: normal;
}

.landing-preview-chart > svg {
    width: 100%;
    height: 150px;
    margin-top: 7px;
    overflow: visible;
}

.landing-chart-grid path {
    fill: none;
    stroke: rgba(148, 163, 184, 0.1);
    stroke-width: 1;
}

.landing-chart-cost {
    fill: none;
    stroke: rgba(148, 163, 184, 0.6);
    stroke-dasharray: 5 5;
    stroke-width: 1.7;
}

.landing-chart-fill {
    fill: url(#landingChartArea);
}

.landing-chart-line {
    fill: none;
    stroke: #38bdf8;
    stroke-linecap: round;
    stroke-width: 3;
}

.landing-preview-chart circle {
    fill: #38bdf8;
    stroke: #0f1a2c;
    stroke-width: 3;
}

.landing-preview-donut-row {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-preview-donut,
.landing-scene-donut {
    display: grid;
    position: relative;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(#38bdf8 0 31%, #818cf8 31% 55%, #4ade80 55% 73%, #fbbf24 73% 100%);
}

.landing-preview-donut {
    width: 88px;
    height: 88px;
    margin: 15px 0 10px;
}

.landing-preview-donut::after,
.landing-scene-donut::after {
    position: absolute;
    border-radius: 50%;
    background: var(--landing-preview-surface);
    content: "";
}

.landing-preview-donut::after {
    inset: 10px;
}

.landing-preview-donut > span,
.landing-scene-donut > span {
    display: flex;
    z-index: 1;
    flex-direction: column;
    align-items: center;
}

.landing-preview-donut b {
    color: #f8fafc;
    font-size: 0.9rem;
}

.landing-preview-donut small {
    font-size: 0.44rem;
}

.landing-preview-allocation ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-preview-allocation li {
    display: grid;
    grid-template-columns: 6px 1fr auto;
    align-items: center;
    gap: 5px;
    margin: 4px 0;
    font-size: 0.45rem;
}

.landing-preview-allocation li > i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #38bdf8;
}

.landing-preview-allocation li > i.c2 {
    background: #818cf8;
}

.landing-preview-allocation li > i.c3 {
    background: #4ade80;
}

.landing-preview-allocation li > i.c4 {
    background: #fbbf24;
}

.landing-preview-allocation li b {
    color: #cbd5e1;
}

.landing-capability-strip {
    border-block: 1px solid var(--landing-border);
    background: color-mix(in srgb, var(--landing-surface) 72%, transparent);
}

.landing-capability-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 94px;
    align-items: stretch;
}

.landing-capability-strip__inner > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    border-right: 1px solid var(--landing-border);
    color: var(--landing-text-soft);
    font-size: 0.83rem;
}

.landing-capability-strip__inner > div:last-child {
    border-right: 0;
}

.landing-capability-icon {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--landing-primary) 28%, transparent);
    border-radius: 50%;
    background: color-mix(in srgb, var(--landing-primary) 8%, transparent);
    color: var(--landing-primary);
    font-size: 0.6rem;
    font-weight: 800;
}

.landing-section {
    padding: clamp(84px, 10vw, 140px) 0;
}

.landing-section-heading {
    max-width: 700px;
    margin-bottom: clamp(48px, 6vw, 72px);
}

.landing-section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.landing-kicker {
    margin-bottom: 14px;
}

.landing-section-heading h2,
.landing-story__copy h2,
.landing-trust__copy h2,
.landing-final-cta h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    font-weight: 800;
}

.landing-section-heading > p:last-child,
.landing-story__copy > p,
.landing-trust__copy > p,
.landing-final-cta__inner > p {
    color: var(--landing-text-soft);
    font-size: 1.02rem;
    line-height: 1.75;
}

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

.landing-outcome-grid article,
.landing-trust-grid article {
    border: 1px solid var(--landing-border);
    background: var(--landing-surface);
    box-shadow: var(--landing-shadow-soft);
}

.landing-outcome-grid article {
    min-height: 260px;
    padding: 32px;
    border-radius: 20px;
}

.landing-outcome-grid article:nth-child(2) {
    transform: translateY(20px);
}

.landing-outcome-icon,
.landing-trust-grid article > span {
    display: inline-grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--landing-primary) 25%, transparent);
    background: color-mix(in srgb, var(--landing-primary) 9%, transparent);
    color: var(--landing-primary);
}

.landing-outcome-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 26px;
    border-radius: 14px;
}

.landing-outcome-icon svg,
.landing-trust-grid svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.landing-outcome-grid h3,
.landing-trust-grid h3 {
    margin-bottom: 12px;
    font-size: 1.18rem;
}

.landing-outcome-grid p,
.landing-trust-grid p {
    margin: 0;
    color: var(--landing-muted);
    font-size: 0.91rem;
    line-height: 1.7;
}

.landing-stories {
    padding-top: 70px;
    background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--landing-bg-soft) 74%, transparent) 14%, color-mix(in srgb, var(--landing-bg-soft) 74%, transparent) 86%, transparent);
}

.landing-story {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: clamp(52px, 8vw, 110px);
    min-height: 620px;
    padding: 74px 0;
    border-bottom: 1px solid var(--landing-border);
}

.landing-story:last-child {
    border-bottom: 0;
}

.landing-story--reverse .landing-story__copy {
    order: 2;
}

.landing-story--reverse .landing-scene {
    order: 1;
}

.landing-story__copy > p:not(.landing-kicker) {
    margin-bottom: 28px;
}

.landing-check-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--landing-text-soft);
    font-size: 0.9rem;
    font-weight: 620;
}

.landing-check-list li::before {
    position: absolute;
    top: 0.18em;
    left: 0;
    width: 19px;
    height: 19px;
    border: 1px solid color-mix(in srgb, var(--landing-success) 35%, transparent);
    border-radius: 50%;
    background: color-mix(in srgb, var(--landing-success) 9%, transparent);
    color: var(--landing-success);
    content: "✓";
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 17px;
    text-align: center;
}

.landing-scene {
    min-width: 0;
    min-height: 450px;
    overflow: hidden;
    border-radius: 22px;
    color: var(--landing-preview-muted);
}

.landing-scene__header {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.landing-scene__header b {
    margin-top: 5px;
    color: var(--landing-preview-text);
    font-size: 1.06rem;
}

.landing-scene__header em {
    color: #94a3b8;
    font-size: 0.68rem;
    font-style: normal;
}

.landing-scene__allocation-body {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: center;
    gap: 38px;
    min-height: 365px;
    padding: 36px;
    background: radial-gradient(circle at 24% 48%, rgba(56, 189, 248, 0.1), transparent 40%);
}

.landing-scene-donut {
    width: min(100%, 210px);
    aspect-ratio: 1;
    margin: auto;
    box-shadow: 0 0 55px rgba(56, 189, 248, 0.1);
}

.landing-scene-donut::after {
    inset: 22px;
}

.landing-scene-donut b {
    color: #f8fafc;
    font-size: 1.42rem;
}

.landing-scene-donut small {
    color: #94a3b8;
    font-size: 0.62rem;
}

.landing-scene-bars {
    display: grid;
    gap: 22px;
}

.landing-scene-bars > div > span {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #cbd5e1;
    font-size: 0.72rem;
}

.landing-scene-bars i {
    color: #94a3b8;
    font-style: normal;
}

.landing-scene-bars > div > em {
    display: block;
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.12);
}

.landing-scene-bars > div > em::before {
    display: block;
    width: var(--bar);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    content: "";
}

.landing-portfolio-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 22px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.landing-portfolio-tabs > span {
    display: grid;
    grid-template-columns: 9px 1fr auto;
    align-items: center;
    gap: 7px;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 9px;
    background: rgba(23, 36, 56, 0.7);
    font-size: 0.63rem;
}

.landing-portfolio-tabs > span.is-active {
    border-color: rgba(56, 189, 248, 0.3);
    background: rgba(56, 189, 248, 0.1);
}

.landing-portfolio-tabs i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #818cf8;
}

.landing-portfolio-tabs span:nth-child(2) i {
    background: #4ade80;
}

.landing-portfolio-tabs span:nth-child(3) i {
    background: #fbbf24;
}

.landing-portfolio-tabs b {
    color: #e2e8f0;
}

.landing-portfolio-tabs small {
    color: #64748b;
}

.landing-position-table {
    padding: 8px 22px;
}

.landing-position-table > div {
    display: grid;
    grid-template-columns: minmax(165px, 1.45fr) repeat(3, minmax(66px, 0.65fr));
    align-items: center;
    min-height: 58px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    color: #cbd5e1;
    font-size: 0.68rem;
    text-align: right;
}

.landing-position-table > div > span:first-child {
    text-align: left;
}

.landing-position-table__head {
    min-height: 35px !important;
    color: #64748b !important;
    font-size: 0.55rem !important;
    font-weight: 700;
    text-transform: uppercase;
}

.landing-position-table > div:not(.landing-position-table__head) > span:first-child {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    column-gap: 9px;
}

.landing-position-table > div:not(.landing-position-table__head) i {
    display: grid;
    grid-row: 1 / 3;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 8px;
    background: rgba(56, 189, 248, 0.13);
    color: #7dd3fc;
    font-style: normal;
    font-weight: 800;
}

.landing-position-table .asset-jnj {
    background: rgba(129, 140, 248, 0.14) !important;
    color: #a5b4fc !important;
}

.landing-position-table .asset-o {
    background: rgba(74, 222, 128, 0.12) !important;
    color: #86efac !important;
}

.landing-position-table small {
    color: #64748b;
    font-size: 0.55rem;
}

.landing-import-pill {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 11px;
    margin: 14px 22px 22px;
    padding: 11px 13px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 11px;
    background: rgba(74, 222, 128, 0.07);
}

.landing-import-pill > svg {
    width: 19px;
    margin: auto;
    fill: none;
    stroke: #86efac;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.landing-import-pill > span {
    display: flex;
    flex-direction: column;
}

.landing-import-pill b {
    color: #dcfce7;
    font-size: 0.67rem;
}

.landing-import-pill small {
    color: #86a393;
    font-size: 0.54rem;
}

.landing-import-pill em {
    color: #4ade80;
    font-style: normal;
}

.landing-scene-legend {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.56rem;
}

.landing-scene-legend i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #38bdf8;
}

.landing-scene-legend i:nth-of-type(2) {
    margin-left: 8px;
    background: #818cf8;
}

.landing-calendar-weekdays,
.landing-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.landing-calendar-weekdays {
    padding: 16px 18px 6px;
    color: #64748b;
    font-size: 0.52rem;
    font-weight: 800;
    text-align: center;
}

.landing-calendar-grid {
    gap: 4px;
    padding: 5px 18px 14px;
}

.landing-calendar-grid > span {
    display: flex;
    min-width: 0;
    min-height: 45px;
    flex-direction: column;
    padding: 6px;
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 7px;
    color: #94a3b8;
    font-size: 0.55rem;
}

.landing-calendar-grid > span.is-muted {
    opacity: 0.35;
}

.landing-calendar-grid > span.has-event {
    border-color: rgba(56, 189, 248, 0.22);
    background: rgba(56, 189, 248, 0.08);
    color: #e2e8f0;
}

.landing-calendar-grid > span.is-estimated {
    border-color: rgba(129, 140, 248, 0.22);
    background: rgba(129, 140, 248, 0.08);
}

.landing-calendar-grid em {
    margin-top: 5px;
    overflow: hidden;
    color: #7dd3fc;
    font-size: 0.46rem;
    font-style: normal;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-calendar-grid .is-estimated em {
    color: #a5b4fc;
}

.landing-dividend-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 18px 18px;
}

.landing-dividend-summary > span {
    display: flex;
    flex-direction: column;
    padding: 9px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 8px;
    background: rgba(23, 36, 56, 0.65);
}

.landing-dividend-summary small {
    color: #64748b;
    font-size: 0.48rem;
}

.landing-dividend-summary b {
    margin-top: 3px;
    color: #e2e8f0;
    font-size: 0.72rem;
}

.landing-market-heading {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 20px 22px 10px;
}

.landing-market-logo {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 11px;
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.22), rgba(129, 140, 248, 0.18));
    color: #e0f2fe;
    font-size: 1.15rem;
    font-weight: 800;
}

.landing-market-heading > span:nth-child(2) {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
}

.landing-market-heading small {
    grid-column: 1 / -1;
    color: #64748b;
    font-size: 0.5rem;
}

.landing-market-heading > span b,
.landing-market-heading > div b {
    color: #f8fafc;
    font-size: 0.88rem;
}

.landing-market-heading > span em {
    color: #7dd3fc;
    font-size: 0.6rem;
    font-style: normal;
}

.landing-market-heading > div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.landing-market-heading > div em {
    color: #4ade80;
    font-size: 0.56rem;
    font-style: normal;
}

.landing-market-status {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 22px;
    color: #64748b;
    font-size: 0.55rem;
}

.landing-market-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.09);
}

.landing-market-chart {
    padding: 12px 22px 4px;
}

.landing-market-chart svg {
    width: 100%;
    height: 210px;
}

.landing-market-fill {
    fill: url(#landingMarketArea);
}

.landing-market-line {
    fill: none;
    stroke: #818cf8;
    stroke-linecap: round;
    stroke-width: 3;
}

.landing-market-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 22px 22px;
}

.landing-market-metrics > span {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 8px;
    background: rgba(23, 36, 56, 0.62);
}

.landing-market-metrics small {
    color: #64748b;
    font-size: 0.5rem;
}

.landing-market-metrics b {
    margin-top: 3px;
    color: #e2e8f0;
    font-size: 0.7rem;
}

.landing-how {
    position: relative;
    background: var(--landing-surface-solid);
}

.landing-how .landing-section-heading {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    max-width: none;
    align-items: end;
    column-gap: 70px;
}

.landing-how .landing-section-heading .landing-kicker {
    grid-column: 1 / -1;
}

.landing-how .landing-section-heading h2,
.landing-how .landing-section-heading > p:last-child {
    margin-bottom: 0;
}

.landing-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: landing-steps;
}

.landing-steps li {
    position: relative;
    padding: 30px 38px 12px;
    border-left: 1px solid var(--landing-border);
}

.landing-steps li:first-child {
    padding-left: 0;
    border-left: 0;
}

.landing-steps li:last-child {
    padding-right: 0;
}

.landing-steps li > span {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 28px;
    border: 1px solid color-mix(in srgb, var(--landing-primary) 28%, transparent);
    border-radius: 14px;
    background: color-mix(in srgb, var(--landing-primary) 8%, transparent);
    color: var(--landing-primary);
    font-size: 0.7rem;
    font-weight: 820;
}

.landing-steps h3 {
    margin-bottom: 12px;
    font-size: 1.17rem;
}

.landing-steps p {
    margin: 0;
    color: var(--landing-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.landing-trust {
    position: relative;
    overflow: hidden;
}

.landing-trust::before {
    position: absolute;
    top: 10%;
    right: -160px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--landing-secondary) 14%, transparent);
    content: "";
    filter: blur(90px);
}

.landing-trust__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
    align-items: center;
    gap: clamp(58px, 9vw, 120px);
}

.landing-trust__copy > p:not(.landing-kicker) {
    margin-bottom: 28px;
}

.landing-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--landing-primary) !important;
    font-size: 0.9rem;
    font-weight: 780;
}

.landing-text-link:hover svg {
    transform: translateX(3px);
}

.landing-text-link svg {
    transition: transform 0.16s ease;
}

.landing-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.landing-trust-grid article {
    min-height: 215px;
    padding: 27px;
    border-radius: 18px;
}

.landing-trust-grid article:nth-child(2),
.landing-trust-grid article:nth-child(4) {
    transform: translateY(24px);
}

.landing-trust-grid article > span {
    width: 41px;
    height: 41px;
    margin-bottom: 22px;
    border-radius: 12px;
}

.landing-trust-grid h3 {
    font-size: 1rem;
}

.landing-faq {
    background: var(--landing-surface-solid);
}

.landing-faq__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
    gap: clamp(58px, 9vw, 120px);
}

.landing-faq .landing-section-heading {
    margin-bottom: 0;
}

.landing-faq__list {
    border-top: 1px solid var(--landing-border);
}

.landing-faq details {
    border-bottom: 1px solid var(--landing-border);
}

.landing-faq summary {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 42px 24px 0;
    color: var(--landing-text);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    list-style: none;
}

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

.landing-faq summary::before,
.landing-faq summary::after {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: var(--landing-primary);
    content: "";
    transition: transform 0.16s ease;
}

.landing-faq summary::after {
    transform: rotate(90deg);
}

.landing-faq details[open] summary::after {
    transform: rotate(0deg);
}

.landing-faq details p {
    max-width: 680px;
    margin: -5px 0 24px;
    padding-right: 42px;
    color: var(--landing-muted);
    font-size: 0.91rem;
    line-height: 1.75;
}

.landing-final-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(100px, 12vw, 160px) 0;
    background: #091526;
    text-align: center;
}

.landing-final-cta::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image: radial-gradient(rgba(148, 163, 184, 0.13) 1px, transparent 1px);
    background-size: 24px 24px;
    content: "";
    mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}

.landing-final-cta__glow {
    position: absolute;
    z-index: -1;
    right: 50%;
    bottom: -360px;
    width: 760px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0ea5e9, #6366f1);
    filter: blur(115px);
    opacity: 0.23;
    transform: translateX(50%);
}

.landing-final-cta__inner {
    max-width: 800px;
}

.landing-final-cta h2 {
    max-width: 760px;
    margin-inline: auto;
    color: #f8fafc;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.landing-final-cta__inner > p:not(.landing-kicker) {
    max-width: 630px;
    margin: 0 auto 32px;
    color: #aebed2;
}

.landing-final-cta__actions {
    justify-content: center;
}

.landing-final-cta .landing-login-link {
    color: #d8e3ef;
}

.landing-footer {
    padding: 54px 0 26px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    background: #07111f;
    color: #8ea0b7;
}

.landing-footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 42px;
    padding-bottom: 40px;
}

.landing-footer .landing-brand {
    color: #f5f9ff !important;
}

.landing-footer__brand p {
    max-width: 430px;
    margin: 16px 0 0;
    font-size: 0.84rem;
}

.landing-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 22px;
    color: #bac8d8;
    font-size: 0.82rem;
    font-weight: 650;
}

.landing-footer__links a:hover {
    color: #f8fafc;
}

.landing-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    font-size: 0.73rem;
}

.landing-footer__bottom p {
    margin: 0;
}

@media (max-width: 1120px) {
    .landing-hero__inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(510px, 1.1fr);
        gap: 38px;
    }

    .landing-hero h1 {
        font-size: clamp(2.65rem, 5.6vw, 4.3rem);
    }

    .landing-preview-sidebar {
        display: none;
    }

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

    .landing-story {
        grid-template-columns: minmax(0, 0.84fr) minmax(470px, 1.16fr);
        gap: 48px;
    }

    .landing-trust__inner {
        grid-template-columns: minmax(0, 0.75fr) minmax(510px, 1.25fr);
        gap: 52px;
    }
}

@media (max-width: 980px) {
    .landing-header__inner {
        justify-content: space-between;
    }

    .landing-menu-button {
        display: inline-grid;
    }

    .landing-navigation {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        align-items: stretch;
        margin: 0;
        padding: 22px max(20px, calc((100vw - var(--landing-max-width)) / 2));
        border-bottom: 1px solid var(--landing-border);
        background: color-mix(in srgb, var(--landing-surface-solid) 96%, var(--landing-bg));
        box-shadow: var(--landing-shadow-soft);
        backdrop-filter: blur(18px);
    }

    .landing-navigation.is-open {
        display: block;
    }

    .landing-nav {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .landing-nav a {
        padding: 12px 4px;
        border-bottom: 1px solid var(--landing-border);
    }

    .landing-header__actions {
        flex-wrap: wrap;
        margin-top: 18px;
    }

    .landing-header__actions .landing-button {
        margin-left: auto;
    }

    .landing-hero__inner,
    .landing-story,
    .landing-trust__inner,
    .landing-faq__inner {
        grid-template-columns: 1fr;
    }

    .landing-hero__copy {
        max-width: 760px;
        margin-inline: auto;
        text-align: center;
    }

    .landing-hero__actions {
        justify-content: center;
    }

    .landing-hero__note {
        display: inline-block;
        text-align: left;
    }

    .landing-product-frame {
        width: min(100%, 760px);
        margin-inline: auto;
        transform: none;
    }

    .landing-story {
        min-height: 0;
        gap: 48px;
        padding: 80px 0;
    }

    .landing-story--reverse .landing-story__copy,
    .landing-story--reverse .landing-scene {
        order: initial;
    }

    .landing-story__copy {
        max-width: 690px;
    }

    .landing-scene {
        width: min(100%, 720px);
    }

    .landing-how .landing-section-heading {
        grid-template-columns: 1fr;
        max-width: 720px;
        gap: 20px;
    }

    .landing-how .landing-section-heading .landing-kicker {
        grid-column: auto;
    }

    .landing-trust__copy {
        max-width: 690px;
    }

    .landing-trust-grid {
        width: min(100%, 760px);
    }

    .landing-faq__inner {
        gap: 20px;
    }

    .landing-faq .landing-section-heading {
        max-width: 660px;
        margin-bottom: 30px;
    }
}

@media (max-width: 720px) {
    .landing-shell {
        width: min(calc(100% - 28px), var(--landing-max-width));
    }

    .landing-header__inner {
        min-height: 68px;
    }

    .landing-brand {
        font-size: 0.9rem;
    }

    .landing-brand img {
        width: 34px;
        height: 34px;
    }

    .landing-hero {
        padding-top: 60px;
    }

    .landing-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .landing-eyebrow {
        font-size: 0.64rem;
    }

    .landing-dashboard-preview__content {
        padding: 15px;
    }

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

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

    .landing-preview-allocation {
        display: none;
    }

    .landing-preview-chart > svg {
        height: 130px;
    }

    .landing-capability-strip__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-capability-strip__inner > div {
        justify-content: flex-start;
        border-bottom: 1px solid var(--landing-border);
    }

    .landing-capability-strip__inner > div:nth-child(2) {
        border-right: 0;
    }

    .landing-capability-strip__inner > div:nth-child(n+3) {
        border-bottom: 0;
    }

    .landing-outcome-grid,
    .landing-steps,
    .landing-trust-grid {
        grid-template-columns: 1fr;
    }

    .landing-outcome-grid article:nth-child(2),
    .landing-trust-grid article:nth-child(2),
    .landing-trust-grid article:nth-child(4) {
        transform: none;
    }

    .landing-outcome-grid article,
    .landing-trust-grid article {
        min-height: auto;
    }

    .landing-story__copy h2,
    .landing-section-heading h2,
    .landing-trust__copy h2 {
        font-size: clamp(1.95rem, 9vw, 2.8rem);
    }

    .landing-scene__allocation-body {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .landing-scene-donut {
        width: 155px;
    }

    .landing-position-table > div {
        grid-template-columns: minmax(145px, 1.4fr) repeat(2, minmax(60px, 0.7fr));
    }

    .landing-position-table > div > span:nth-child(2) {
        display: none;
    }

    .landing-position-table__head span:nth-child(2) {
        display: none;
    }

    .landing-calendar-grid > span {
        min-height: 39px;
    }

    .landing-calendar-grid em {
        font-size: 0;
    }

    .landing-calendar-grid em::before {
        display: block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: currentColor;
        content: "";
    }

    .landing-steps li,
    .landing-steps li:first-child,
    .landing-steps li:last-child {
        display: grid;
        grid-template-columns: 54px 1fr;
        gap: 17px;
        padding: 24px 0;
        border-top: 1px solid var(--landing-border);
        border-left: 0;
    }

    .landing-steps li > span {
        margin: 0;
    }

    .landing-footer__inner,
    .landing-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .landing-footer__links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .landing-brand span {
        max-width: 145px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

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

    .landing-header__actions .landing-login-link {
        text-align: right;
    }

    .landing-header__actions .landing-button {
        grid-column: 1 / -1;
        width: 100%;
        margin: 0;
    }

    .landing-hero__actions,
    .landing-final-cta__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .landing-hero__actions .landing-button,
    .landing-final-cta__actions .landing-button {
        width: 100%;
    }

    .landing-product-frame__bar > div {
        display: none;
    }

    .landing-dashboard-preview {
        min-height: 360px;
    }

    .landing-preview-heading > span {
        display: none;
    }

    .landing-preview-kpis article {
        min-height: 80px;
    }

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

    .landing-capability-strip__inner > div {
        min-height: 64px;
        padding: 14px 18px;
        border-right: 0;
        border-bottom: 1px solid var(--landing-border) !important;
    }

    .landing-capability-strip__inner > div:last-child {
        border-bottom: 0 !important;
    }

    .landing-section {
        padding-block: 78px;
    }

    .landing-story {
        padding-block: 60px;
    }

    .landing-outcome-grid article {
        padding: 26px;
    }

    .landing-scene {
        min-height: 400px;
        border-radius: 17px;
    }

    .landing-scene__header {
        padding-inline: 16px;
    }

    .landing-scene__header em,
    .landing-scene-legend {
        display: none;
    }

    .landing-scene__allocation-body {
        padding: 25px 22px;
    }

    .landing-portfolio-tabs {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .landing-portfolio-tabs span:not(.is-active) {
        display: none;
    }

    .landing-position-table {
        padding-inline: 15px;
    }

    .landing-position-table > div {
        grid-template-columns: minmax(130px, 1.35fr) minmax(58px, 0.65fr) minmax(58px, 0.65fr);
        font-size: 0.59rem;
    }

    .landing-position-table > div:not(.landing-position-table__head) > span:first-child {
        grid-template-columns: 27px 1fr;
        column-gap: 6px;
    }

    .landing-position-table > div:not(.landing-position-table__head) i {
        width: 26px;
        height: 26px;
    }

    .landing-import-pill {
        margin-inline: 15px;
    }

    .landing-calendar-weekdays,
    .landing-calendar-grid {
        padding-inline: 10px;
    }

    .landing-dividend-summary {
        grid-template-columns: 1fr 1fr;
        padding-inline: 10px;
    }

    .landing-dividend-summary span:last-child {
        display: none;
    }

    .landing-market-heading {
        grid-template-columns: 42px 1fr;
        padding-inline: 16px;
    }

    .landing-market-heading > div {
        display: none;
    }

    .landing-market-status {
        margin-inline: 16px;
    }

    .landing-market-chart {
        padding-inline: 16px;
    }

    .landing-market-chart svg {
        height: 190px;
    }

    .landing-market-metrics {
        grid-template-columns: 1fr 1fr;
        padding-inline: 16px;
    }

    .landing-market-metrics span:last-child {
        grid-column: 1 / -1;
    }

    .landing-trust-grid article {
        padding: 24px;
    }

    .landing-faq summary {
        font-size: 0.92rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .landing-header,
    .landing-hero__glow,
    .landing-final-cta__glow,
    .landing-menu-button,
    .landing-icon-button {
        display: none !important;
    }

    .landing-page,
    .landing-how,
    .landing-faq {
        background: #fff;
        color: #334155;
    }

    .landing-section,
    .landing-hero,
    .landing-final-cta {
        padding-block: 36px;
    }

    .landing-product-frame,
    .landing-scene {
        box-shadow: none;
    }
}

/* Shared public information pages and the landing privacy notice. */
.public-page-main {
    min-height: calc(100vh - 76px);
    padding: clamp(72px, 9vw, 124px) 0 96px;
    background:
        radial-gradient(circle at 85% 5%, color-mix(in srgb, var(--landing-primary) 13%, transparent), transparent 30%),
        var(--landing-bg);
}

.public-page-hero {
    max-width: 830px;
    margin-bottom: 54px;
}

.public-page-hero h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(2.5rem, 6vw, 4.7rem);
}

.public-page-hero > p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--landing-text-soft);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.public-card,
.public-document,
.public-contact-card,
.public-warning {
    border: 1px solid var(--landing-border);
    border-radius: 22px;
    background: var(--landing-surface);
    box-shadow: var(--landing-shadow-soft);
}

.public-card,
.public-contact-card {
    padding: 30px;
}

.public-card h2,
.public-contact-card h2 {
    margin-bottom: 12px;
    font-size: 1.22rem;
}

.public-card p,
.public-contact-card p {
    margin-bottom: 0;
}

.public-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 24px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--landing-primary) 13%, transparent);
    color: var(--landing-primary);
    font-size: .78rem;
    font-weight: 800;
}

.public-document {
    max-width: 900px;
    padding: clamp(26px, 5vw, 58px);
}

.public-document section + section {
    margin-top: 42px;
    padding-top: 38px;
    border-top: 1px solid var(--landing-border);
}

.public-document h2 {
    margin-bottom: 14px;
    font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.public-document h3 {
    margin: 24px 0 8px;
    font-size: 1.05rem;
}

.public-document a,
.public-contact-card a,
.public-warning a {
    color: var(--landing-primary);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.public-document ul {
    padding-left: 22px;
}

.public-document li + li {
    margin-top: 9px;
}

.public-warning {
    max-width: 900px;
    margin-bottom: 24px;
    padding: 18px 22px;
    border-color: color-mix(in srgb, var(--landing-warning) 40%, var(--landing-border));
    background: color-mix(in srgb, var(--landing-warning) 8%, var(--landing-surface));
}

.public-warning p {
    margin: 0;
}

.public-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 900px;
}

.public-contact-card a[aria-disabled="true"] {
    color: var(--landing-muted);
    cursor: not-allowed;
    text-decoration: none;
}

.public-meta-list {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
}

.public-meta-list div {
    display: grid;
    gap: 2px;
}

.public-meta-list dt {
    color: var(--landing-muted);
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.public-meta-list dd {
    margin: 0;
    color: var(--landing-text);
}

.public-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.privacy-notice {
    position: fixed;
    z-index: 150;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    width: min(680px, calc(100% - 48px));
    padding: 20px 22px;
    border: 1px solid var(--landing-border-strong);
    border-radius: 18px;
    background: color-mix(in srgb, var(--landing-surface-solid) 94%, transparent);
    box-shadow: 0 22px 65px rgba(0, 0, 0, .24);
    backdrop-filter: blur(18px);
}

.privacy-notice[hidden] {
    display: none;
}

.privacy-notice__copy {
    flex: 1;
}

.privacy-notice strong {
    display: block;
    margin-bottom: 4px;
    color: var(--landing-text);
}

.privacy-notice p {
    margin-bottom: 3px;
    color: var(--landing-text-soft);
    font-size: .86rem;
    line-height: 1.45;
}

.privacy-notice a {
    color: var(--landing-primary);
    font-size: .84rem;
    font-weight: 750;
}

.privacy-notice button {
    flex: 0 0 auto;
    padding: 10px 16px;
    border: 0;
    border-radius: 10px;
    background: var(--landing-primary);
    color: #fff;
    cursor: pointer;
    font-weight: 750;
}

@media (max-width: 980px) {
    .public-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .public-page-main {
        padding-block: 56px 72px;
    }

    .public-contact-grid {
        grid-template-columns: 1fr;
    }

    .privacy-notice {
        right: 16px;
        bottom: 16px;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        width: calc(100% - 32px);
    }

    .privacy-notice button {
        width: 100%;
    }
}

@media print {
    .privacy-notice {
        display: none !important;
    }

    .public-page-main {
        padding: 20px 0;
        background: #fff;
    }

    .public-document {
        border: 0;
        box-shadow: none;
    }
}

/* Dynamic public tier comparison. */
.pricing-page-main {
    padding-bottom: clamp(80px, 10vw, 132px);
}

.pricing-hero {
    max-width: 920px;
}

.pricing-hero h1 {
    max-width: 880px;
}

.pricing-catalog-shell {
    display: grid;
    min-width: 0;
    gap: 28px;
}

#pricingCatalog,
.pricing-comparison,
.pricing-table-scroll {
    min-width: 0;
}

.pricing-section-title {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.pricing-state {
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid var(--landing-border);
    border-radius: 22px;
    background: var(--landing-surface);
    box-shadow: var(--landing-shadow-soft);
}

.pricing-state[hidden],
#pricingCatalog[hidden] {
    display: none;
}

.pricing-state h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.pricing-state p {
    margin-bottom: 20px;
}

.pricing-state__label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--landing-muted);
    font-size: .9rem;
    font-weight: 700;
}

.pricing-state--error {
    border-color: color-mix(in srgb, var(--landing-danger) 34%, var(--landing-border));
}

.pricing-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.pricing-skeleton-grid span {
    min-height: 230px;
    border-radius: 20px;
    background: linear-gradient(
        100deg,
        color-mix(in srgb, var(--landing-surface-raised) 82%, transparent) 25%,
        color-mix(in srgb, var(--landing-primary) 12%, var(--landing-surface-raised)) 45%,
        color-mix(in srgb, var(--landing-surface-raised) 82%, transparent) 65%
    );
    background-size: 220% 100%;
    animation: pricing-skeleton 1.25s ease-in-out infinite;
}

@keyframes pricing-skeleton {
    from { background-position: 100% 0; }
    to { background-position: -100% 0; }
}

.pricing-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 20px;
}

.pricing-tier-card {
    display: flex;
    min-width: 0;
    min-height: 292px;
    padding: clamp(25px, 3vw, 34px);
    border: 1px solid var(--landing-border);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0, color-mix(in srgb, var(--landing-primary) 10%, transparent), transparent 42%),
        var(--landing-surface);
    box-shadow: var(--landing-shadow-soft);
    flex-direction: column;
}

.pricing-tier-card__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    min-height: 28px;
    margin-bottom: 28px;
}

.pricing-availability,
.pricing-starting-plan {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border: 1px solid var(--landing-border-strong);
    border-radius: 999px;
    color: var(--landing-muted);
    font-size: .68rem;
    font-weight: 820;
    letter-spacing: .055em;
    line-height: 1.2;
    text-transform: uppercase;
}

.pricing-availability.is-available {
    border-color: color-mix(in srgb, var(--landing-success) 38%, var(--landing-border));
    background: color-mix(in srgb, var(--landing-success) 9%, transparent);
    color: var(--landing-success);
}

.pricing-availability.is-coming-soon {
    border-color: color-mix(in srgb, var(--landing-secondary) 42%, var(--landing-border));
    background: color-mix(in srgb, var(--landing-secondary) 10%, transparent);
    color: var(--landing-secondary);
}

.pricing-starting-plan {
    margin-left: auto;
    color: var(--landing-primary);
}

.pricing-tier-card h3 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.pricing-tier-card__description {
    margin-bottom: 18px;
    color: var(--landing-text-soft);
}

.pricing-tier-card__hint {
    margin-bottom: 26px;
    color: var(--landing-muted);
    font-size: .86rem;
}

.pricing-tier-card__footer {
    margin-top: auto;
}

.pricing-tier-card__cta {
    width: 100%;
}

.pricing-tier-card__cta.is-disabled {
    border-color: var(--landing-border-strong);
    background: var(--landing-surface-raised);
    box-shadow: none;
    color: var(--landing-muted) !important;
    cursor: not-allowed;
}

.pricing-tier-card__cta.is-disabled:hover {
    transform: none;
    box-shadow: none;
    filter: none;
}

.pricing-comparison {
    margin-top: clamp(44px, 7vw, 84px);
}

.pricing-comparison__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
    align-items: end;
    gap: 30px;
    margin-bottom: 24px;
}

.pricing-comparison__heading h2 {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.pricing-comparison__heading > p {
    margin-bottom: 3px;
    color: var(--landing-muted);
}

.pricing-table-scroll {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--landing-border);
    border-radius: 22px;
    background: var(--landing-surface);
    box-shadow: var(--landing-shadow-soft);
    scrollbar-color: var(--landing-border-strong) transparent;
}

.pricing-table {
    width: 100%;
    min-width: max(600px, 100%);
    border-collapse: separate;
    border-spacing: 0;
    color: var(--landing-text-soft);
}

.pricing-table caption {
    padding: 19px 22px;
    border-bottom: 1px solid var(--landing-border);
    color: var(--landing-muted);
    font-size: .78rem;
    font-weight: 740;
    letter-spacing: .045em;
    text-align: left;
    text-transform: uppercase;
}

.pricing-table th,
.pricing-table td {
    min-width: 170px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--landing-border);
    text-align: center;
    vertical-align: middle;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
    width: 36%;
    min-width: 260px;
    text-align: left;
}

.pricing-table thead th {
    background: var(--landing-surface-raised);
    color: var(--landing-text);
    font-size: .94rem;
}

.pricing-table thead th > span,
.pricing-table thead th > small {
    display: block;
}

.pricing-table thead th > small {
    margin-top: 3px;
    color: var(--landing-muted);
    font-size: .69rem;
    font-weight: 720;
}

.pricing-table thead th > small.is-available {
    color: var(--landing-success);
}

.pricing-table thead th > small.is-coming-soon {
    color: var(--landing-secondary);
}

.pricing-table tbody th {
    position: sticky;
    z-index: 1;
    left: 0;
    background: var(--landing-surface-solid);
    color: var(--landing-text);
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
    border-bottom: 0;
}

.pricing-feature-name,
.pricing-feature-description {
    display: block;
}

.pricing-feature-name {
    font-size: .92rem;
}

.pricing-feature-description {
    max-width: 310px;
    margin-top: 5px;
    color: var(--landing-muted);
    font-size: .74rem;
    font-weight: 500;
    line-height: 1.45;
}

.pricing-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--landing-text);
    font-size: .9rem;
    font-weight: 740;
}

.pricing-value.is-included {
    color: var(--landing-success);
}

.pricing-value.is-unavailable {
    color: var(--landing-muted);
}

.pricing-value__icon {
    display: inline-grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, currentColor 12%, transparent);
    font-size: .72rem;
}

.pricing-billing-note {
    max-width: 780px;
    margin: 22px auto 0;
    color: var(--landing-muted);
    font-size: .84rem;
    text-align: center;
}

@media (max-width: 820px) {
    .pricing-comparison__heading {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 720px) {
    .pricing-skeleton-grid {
        grid-template-columns: 1fr;
    }

    .pricing-tier-card {
        min-height: 260px;
    }

    .pricing-table-scroll {
        border-radius: 18px;
    }

    .pricing-table th,
    .pricing-table td {
        min-width: 150px;
        padding: 17px 15px;
    }

    .pricing-table th:first-child,
    .pricing-table td:first-child {
        width: 220px;
        min-width: 220px;
        max-width: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-skeleton-grid span {
        animation: none;
    }
}

@media print {
    .pricing-tier-card,
    .pricing-table-scroll {
        box-shadow: none;
    }

    .pricing-tier-card__cta,
    .pricing-billing-note {
        display: none;
    }
}
