:root {
    --landing-bg: #070908;
    --landing-surface: #101310;
    --landing-surface-2: #151915;
    --landing-surface-3: #1a1f1a;
    --landing-ink: #f3f1e8;
    --landing-muted: #a5aa9f;
    --landing-line: rgba(230, 232, 218, 0.13);
    --landing-line-strong: rgba(230, 232, 218, 0.22);
    --landing-lime: #d7f171;
    --landing-lime-soft: rgba(215, 241, 113, 0.13);
    --landing-amber: #f2b84b;
    --landing-red: #ff7e6e;
    --landing-cyan: #65d7cf;
    --landing-blue: #78a9ff;
    --landing-container: 1200px;
}

* {
    box-sizing: border-box;
}

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

body.landing-page {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 76% 4%, rgba(215, 241, 113, 0.09), transparent 24rem),
        radial-gradient(circle at 5% 28%, rgba(101, 215, 207, 0.055), transparent 25rem),
        var(--landing-bg);
    color: var(--landing-ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

.landing-page ::selection {
    background: var(--landing-lime);
    color: #11140c;
}

.landing-page a {
    color: inherit;
}

.landing-page a:focus-visible,
.landing-page button:focus-visible {
    outline: 3px solid rgba(215, 241, 113, 0.55);
    outline-offset: 4px;
}

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

.landing-nav {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid var(--landing-line);
    background: rgba(7, 9, 8, 0.82);
    backdrop-filter: blur(20px);
}

.landing-nav-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--landing-ink);
    font-size: 1rem;
    font-weight: 750;
    letter-spacing: -0.015em;
    text-decoration: none;
    white-space: nowrap;
}

/*
 * Preserved alternate Naksha monogram. The dial-free chart-arrow logo is used
 * in the header; this original rounded N remains available as a compact mark.
 */
.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(215, 241, 113, 0.44);
    border-radius: 10px;
    background:
        linear-gradient(145deg, rgba(215, 241, 113, 0.18), rgba(215, 241, 113, 0.02)),
        #11140f;
    box-shadow: inset 0 0 0 4px rgba(215, 241, 113, 0.025);
    color: var(--landing-lime);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 800;
}

.brand-logo {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
    object-position: center;
}

.brand-product {
    color: var(--landing-muted);
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.landing-nav-links a {
    color: var(--landing-muted);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 160ms ease;
}

.landing-nav-links a:hover {
    color: var(--landing-ink);
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.72rem 1.15rem;
    font-size: 0.87rem;
    font-weight: 750;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.landing-button:hover {
    transform: translateY(-2px);
}

.landing-button-primary {
    border-color: var(--landing-lime);
    background: var(--landing-lime);
    box-shadow: 0 10px 30px rgba(215, 241, 113, 0.08);
}

.landing-page .landing-button-primary,
.landing-page .landing-button-primary:visited {
    color: #10130b;
}

.landing-page .landing-button-primary:hover,
.landing-page .landing-button-primary:focus-visible {
    border-color: #e2fa82;
    background: #e2fa82;
    color: #10130b;
}

.landing-button-secondary {
    border-color: var(--landing-line-strong);
    background: rgba(255, 255, 255, 0.025);
    color: var(--landing-ink);
}

.landing-button-secondary:hover {
    border-color: rgba(215, 241, 113, 0.42);
    background: rgba(215, 241, 113, 0.06);
    color: var(--landing-ink);
}

.landing-button-text {
    min-height: 42px;
    color: var(--landing-muted);
}

.landing-button-text:hover {
    color: var(--landing-ink);
}

.hero {
    position: relative;
    padding: 90px 0 86px;
}

.hero::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: min(92vw, 1360px);
    height: 100%;
    background-image:
        linear-gradient(var(--landing-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--landing-line) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 85%);
    opacity: 0.22;
    transform: translateX(-50%);
}

.hero-grid {
    display: grid;
    align-items: center;
    gap: clamp(50px, 7vw, 94px);
    grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: var(--landing-lime);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 1px;
    background: currentColor;
    content: "";
}

.hero h1 {
    max-width: 780px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.65rem, 6.9vw, 6.7rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.94;
}

.hero h1 em {
    color: var(--landing-lime);
    font-weight: 400;
}

.hero-copy {
    max-width: 680px;
    margin: 30px 0 0;
    color: var(--landing-muted);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
}

.hero-copy strong {
    color: var(--landing-ink);
    font-weight: 650;
}

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

.hero-actions .landing-button {
    min-height: 52px;
    padding-inline: 1.35rem;
}

.hero-offer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
    margin: 18px 0 0;
    color: #858b80;
    font-size: 0.78rem;
}

.hero-offer span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-offer i {
    color: var(--landing-lime);
}

.workspace-shell {
    position: relative;
}

.workspace-shell::before {
    position: absolute;
    z-index: -1;
    inset: 10% -8% -8% 8%;
    border-radius: 30px;
    background: rgba(215, 241, 113, 0.09);
    filter: blur(45px);
    content: "";
}

.workspace-card {
    overflow: hidden;
    border: 1px solid rgba(224, 231, 205, 0.2);
    border-radius: 22px;
    background: #0c0f0c;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.workspace-caption {
    max-width: 600px;
    margin: 14px 12px 0;
    color: #7f857b;
    font-size: 0.68rem;
    line-height: 1.55;
}

.workspace-caption strong {
    color: #aeb4a8;
    font-weight: 750;
}

.workspace-topbar {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--landing-line);
    padding: 0 17px;
    color: #b8bdb2;
    font-size: 0.72rem;
}

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

.workspace-window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3d433d;
}

.workspace-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.workspace-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--landing-lime);
}

.workspace-status::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 4px rgba(215, 241, 113, 0.08);
    content: "";
}

.workspace-body {
    display: grid;
    min-height: 470px;
    grid-template-columns: minmax(0, 1.45fr) minmax(160px, 0.55fr);
}

.market-panel {
    min-width: 0;
    border-right: 1px solid var(--landing-line);
}

.market-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 20px 14px;
}

.ticker-lockup {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-symbol {
    color: var(--landing-ink);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.ticker-price {
    color: var(--landing-muted);
    font-size: 0.76rem;
}

.analysis-label {
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    padding: 0.32rem 0.58rem;
    color: #8d9389;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.market-chart {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-top: 1px solid rgba(230, 232, 218, 0.065);
    border-bottom: 1px solid rgba(230, 232, 218, 0.065);
    background-image:
        linear-gradient(rgba(230, 232, 218, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 232, 218, 0.055) 1px, transparent 1px);
    background-size: 52px 52px;
}

.price-segment {
    position: absolute;
    z-index: 2;
    width: 14%;
    height: 2px;
    border-radius: 999px;
    background: #e8eadf;
    box-shadow: 0 0 14px rgba(232, 234, 223, 0.14);
    transform-origin: left center;
}

.price-segment.s1 { top: 72%; left: 2%; transform: rotate(-16deg); }
.price-segment.s2 { top: 66%; left: 15%; transform: rotate(11deg); }
.price-segment.s3 { top: 69%; left: 28%; transform: rotate(-23deg); }
.price-segment.s4 { top: 58%; left: 41%; transform: rotate(-10deg); }
.price-segment.s5 { top: 53%; left: 54%; transform: rotate(19deg); }
.price-segment.s6 { top: 58%; left: 67%; transform: rotate(-35deg); }
.price-segment.s7 { top: 44%; left: 79%; transform: rotate(-18deg); }

.level-line {
    position: absolute;
    z-index: 1;
    right: 0;
    left: 0;
    height: 1px;
    border-top: 1px dashed currentColor;
    color: var(--landing-muted);
    opacity: 0.78;
}

.level-line span {
    position: absolute;
    top: -11px;
    right: 9px;
    border: 1px solid currentColor;
    border-radius: 4px;
    background: #0c0f0c;
    padding: 2px 5px;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.level-yasr { top: 24%; color: var(--landing-amber); }
.level-gex { top: 43%; color: var(--landing-lime); }
.level-spot { top: 57%; border-style: solid; color: #e8eadf; opacity: 0.35; }
.level-flow { top: 73%; color: var(--landing-cyan); }
.level-risk { top: 88%; color: var(--landing-red); }

.chart-note {
    position: absolute;
    z-index: 3;
    top: 44%;
    left: 47%;
    width: 105px;
    border: 1px solid rgba(215, 241, 113, 0.2);
    border-radius: 7px;
    background: rgba(12, 15, 12, 0.92);
    padding: 7px 8px;
    color: #c8cdc0;
    font-size: 0.58rem;
    line-height: 1.45;
}

.chart-note strong {
    display: block;
    margin-bottom: 2px;
    color: var(--landing-lime);
    font-size: 0.62rem;
}

.market-footer {
    display: grid;
    gap: 1px;
    background: var(--landing-line);
    grid-template-columns: repeat(3, 1fr);
}

.market-stat {
    min-width: 0;
    background: #0c0f0c;
    padding: 16px 14px;
}

.market-stat span {
    display: block;
    color: #7f857b;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.market-stat strong {
    display: block;
    overflow: hidden;
    margin-top: 3px;
    color: #dfe2d7;
    font-size: 0.74rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.signal-rail {
    display: flex;
    min-width: 0;
    flex-direction: column;
    background: #0e110e;
}

.signal-rail-title {
    border-bottom: 1px solid var(--landing-line);
    padding: 20px 16px 13px;
    color: #858b80;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.signal-item {
    border-bottom: 1px solid var(--landing-line);
    padding: 15px 16px;
}

.signal-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.signal-item strong {
    color: #daddd2;
    font-size: 0.7rem;
}

.signal-item p {
    margin: 6px 0 0;
    color: #7f857b;
    font-size: 0.62rem;
    line-height: 1.45;
}

.signal-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--landing-lime);
    box-shadow: 0 0 0 4px rgba(215, 241, 113, 0.07);
}

.signal-dot.cyan { background: var(--landing-cyan); box-shadow: 0 0 0 4px rgba(101, 215, 207, 0.07); }
.signal-dot.amber { background: var(--landing-amber); box-shadow: 0 0 0 4px rgba(242, 184, 75, 0.07); }
.signal-dot.blue { background: var(--landing-blue); box-shadow: 0 0 0 4px rgba(120, 169, 255, 0.07); }

.signal-decision {
    margin: auto 12px 12px;
    border: 1px solid rgba(215, 241, 113, 0.26);
    border-radius: 10px;
    background: var(--landing-lime-soft);
    padding: 13px;
}

.signal-decision span {
    color: var(--landing-lime);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.signal-decision strong {
    display: block;
    margin-top: 3px;
    color: var(--landing-ink);
    font-size: 0.76rem;
}

.proof-strip {
    border-top: 1px solid var(--landing-line);
    border-bottom: 1px solid var(--landing-line);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(4, 1fr);
}

.proof-intro,
.proof-item {
    min-height: 120px;
    border-right: 1px solid var(--landing-line);
    padding: 25px 22px;
}

.proof-grid > :last-child {
    border-right: 0;
}

.proof-intro {
    display: flex;
    align-items: center;
    color: var(--landing-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.45;
    text-transform: uppercase;
}

.proof-item strong {
    display: block;
    color: var(--landing-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.proof-item span {
    display: block;
    margin-top: 5px;
    color: #81877d;
    font-size: 0.7rem;
    line-height: 1.4;
}

.landing-section {
    padding: 118px 0;
}

.landing-section-compact {
    padding: 86px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 55px;
}

.section-header-copy {
    max-width: 670px;
}

.section-kicker {
    display: block;
    margin-bottom: 16px;
    color: var(--landing-lime);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 1;
}

.section-lede {
    max-width: 500px;
    margin: 0;
    color: var(--landing-muted);
    font-size: 0.97rem;
    line-height: 1.75;
}

.platform-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(12, 1fr);
}

.feature-panel {
    position: relative;
    display: flex;
    overflow: hidden;
    min-height: 330px;
    flex-direction: column;
    border: 1px solid var(--landing-line);
    border-radius: 20px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.028), transparent 55%),
        var(--landing-surface);
    padding: 28px;
    transition: border-color 180ms ease, transform 180ms ease;
}

.feature-panel:hover {
    border-color: rgba(215, 241, 113, 0.3);
    transform: translateY(-3px);
}

.feature-panel-large {
    grid-column: span 7;
}

.feature-panel-medium {
    grid-column: span 5;
}

.feature-panel-third {
    min-height: 290px;
    grid-column: span 4;
}

.feature-panel::after {
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(215, 241, 113, 0.08);
    border-radius: 50%;
    box-shadow:
        0 0 0 28px rgba(215, 241, 113, 0.018),
        0 0 0 58px rgba(215, 241, 113, 0.012);
    content: "";
}

.feature-number {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--landing-line-strong);
    border-radius: 50%;
    color: var(--landing-lime);
    font-size: 0.68rem;
    font-weight: 800;
}

.feature-panel h3 {
    max-width: 510px;
    margin: 44px 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 3vw, 2.65rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.feature-panel-third h3 {
    margin-top: 34px;
    font-size: 1.75rem;
}

.feature-panel p {
    position: relative;
    z-index: 1;
    max-width: 540px;
    margin: 0;
    color: var(--landing-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.feature-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    gap: 7px;
    margin-top: auto;
    padding-top: 24px;
}

.feature-tags span {
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.12);
    padding: 0.35rem 0.58rem;
    color: #989e94;
    font-size: 0.62rem;
    font-weight: 700;
}

.feature-panel-highlight {
    background:
        linear-gradient(145deg, rgba(215, 241, 113, 0.13), transparent 62%),
        var(--landing-surface);
}

.feature-panel-cyan {
    background:
        linear-gradient(145deg, rgba(101, 215, 207, 0.1), transparent 62%),
        var(--landing-surface);
}

.level-section {
    border-top: 1px solid var(--landing-line);
    border-bottom: 1px solid var(--landing-line);
    background: #0a0d0a;
}

.level-grid {
    display: grid;
    align-items: stretch;
    gap: 70px;
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
}

.level-copy {
    padding: 112px 0;
}

.level-copy .section-title {
    max-width: 580px;
}

.level-copy > p {
    max-width: 560px;
    margin: 26px 0 0;
    color: var(--landing-muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

.level-list {
    display: grid;
    gap: 0;
    margin-top: 42px;
    border-top: 1px solid var(--landing-line);
}

.level-list-item {
    display: grid;
    gap: 15px;
    border-bottom: 1px solid var(--landing-line);
    padding: 19px 0;
    grid-template-columns: 24px 1fr;
}

.level-list-item i {
    margin-top: 3px;
    color: var(--landing-lime);
}

.level-list-item strong {
    display: block;
    color: var(--landing-ink);
    font-size: 0.87rem;
}

.level-list-item span {
    display: block;
    margin-top: 4px;
    color: #858b81;
    font-size: 0.75rem;
    line-height: 1.55;
}

.levels-console {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--landing-line);
    border-left: 1px solid var(--landing-line);
    background:
        linear-gradient(var(--landing-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--landing-line) 1px, transparent 1px),
        #0d100d;
    background-size: 70px 70px;
    padding: 58px 52px;
}

.levels-console-card {
    overflow: hidden;
    border: 1px solid rgba(232, 235, 221, 0.18);
    border-radius: 18px;
    background: rgba(11, 14, 11, 0.95);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.35);
}

.levels-console-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--landing-line);
    padding: 18px 19px;
}

.levels-console-head strong {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

.levels-console-head span {
    color: #858b81;
    font-size: 0.63rem;
}

.active-level-row {
    display: grid;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--landing-line);
    padding: 15px 18px;
    grid-template-columns: 82px 1fr auto;
}

.active-level-row:last-child {
    border-bottom: 0;
}

.active-level-price {
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.82rem;
    font-weight: 700;
}

.active-level-track {
    position: relative;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: #242a23;
}

.active-level-track span {
    position: absolute;
    inset: 0 auto 0 0;
    border-radius: inherit;
    background: currentColor;
}

.active-level-source {
    min-width: 82px;
    text-align: right;
}

.active-level-source strong {
    display: block;
    font-size: 0.64rem;
}

.active-level-source span {
    display: block;
    margin-top: 2px;
    color: #747a71;
    font-size: 0.56rem;
}

.level-amber { color: var(--landing-amber); }
.level-lime { color: var(--landing-lime); }
.level-cyan { color: var(--landing-cyan); }
.level-blue { color: var(--landing-blue); }
.level-red { color: var(--landing-red); }

.console-caption {
    margin: 15px 0 0;
    color: #767c73;
    font-size: 0.66rem;
    line-height: 1.55;
    text-align: center;
}

.workflow-grid {
    display: grid;
    border-top: 1px solid var(--landing-line);
    border-left: 1px solid var(--landing-line);
    grid-template-columns: repeat(4, 1fr);
}

.workflow-step {
    min-height: 300px;
    border-right: 1px solid var(--landing-line);
    border-bottom: 1px solid var(--landing-line);
    padding: 29px 25px;
}

.workflow-step-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #737970;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.workflow-step-number i {
    color: var(--landing-lime);
    font-size: 1rem;
}

.workflow-step h3 {
    margin: 83px 0 13px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.72rem;
    font-weight: 400;
    letter-spacing: -0.035em;
}

.workflow-step p {
    margin: 0;
    color: var(--landing-muted);
    font-size: 0.79rem;
    line-height: 1.65;
}

.risk-section {
    border-top: 1px solid var(--landing-line);
    border-bottom: 1px solid var(--landing-line);
    background:
        radial-gradient(circle at 78% 48%, rgba(242, 184, 75, 0.08), transparent 28rem),
        #0b0d0b;
}

.risk-grid {
    display: grid;
    align-items: center;
    gap: 80px;
    grid-template-columns: 0.92fr 1.08fr;
}

.risk-copy .section-title {
    max-width: 620px;
}

.risk-copy > p {
    max-width: 560px;
    margin: 25px 0 0;
    color: var(--landing-muted);
    line-height: 1.8;
}

.broker-api-callout {
    display: grid;
    gap: 14px;
    max-width: 590px;
    margin-top: 27px;
    border: 1px solid rgba(101, 215, 207, 0.22);
    border-radius: 15px;
    background:
        linear-gradient(135deg, rgba(101, 215, 207, 0.09), transparent 68%),
        rgba(255, 255, 255, 0.018);
    padding: 17px;
    grid-template-columns: auto minmax(0, 1fr);
}

.broker-api-icon {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid rgba(101, 215, 207, 0.24);
    border-radius: 10px;
    background: rgba(101, 215, 207, 0.08);
    color: var(--landing-cyan);
}

.broker-api-copy {
    min-width: 0;
}

.broker-api-eyebrow {
    display: block;
    color: var(--landing-cyan);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.broker-api-copy strong {
    display: block;
    margin-top: 5px;
    color: var(--landing-ink);
    font-size: 0.82rem;
}

.broker-api-copy p {
    margin: 7px 0 0;
    color: #8d9489;
    font-size: 0.66rem;
    line-height: 1.6;
}

.broker-api-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 11px;
}

.broker-api-tags span {
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    padding: 0.3rem 0.5rem;
    color: #a7ada2;
    font-size: 0.57rem;
}

.risk-principles {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 23px;
}

.risk-principles span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    padding: 0.48rem 0.7rem;
    color: #a7ada2;
    font-size: 0.68rem;
}

.risk-principles i {
    color: var(--landing-lime);
}

.stress-card {
    overflow: hidden;
    border: 1px solid rgba(232, 235, 221, 0.18);
    border-radius: 19px;
    background: #101310;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.stress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--landing-line);
    padding: 19px 21px;
}

.stress-head span {
    color: #858b81;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stress-head strong {
    color: var(--landing-lime);
    font-size: 0.72rem;
}

.stress-metrics {
    display: grid;
    gap: 1px;
    background: var(--landing-line);
    grid-template-columns: repeat(3, 1fr);
}

.stress-metric {
    background: #101310;
    padding: 19px;
}

.stress-metric span {
    display: block;
    color: #7f857b;
    font-size: 0.58rem;
    text-transform: uppercase;
}

.stress-metric strong {
    display: block;
    margin-top: 4px;
    color: var(--landing-ink);
    font-size: 1.05rem;
}

.stress-chart {
    padding: 23px 21px 20px;
}

.stress-row {
    display: grid;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
    grid-template-columns: 88px 1fr 44px;
}

.stress-row:last-child {
    margin-bottom: 0;
}

.stress-row-label {
    color: #9ca297;
    font-size: 0.66rem;
}

.stress-track {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #282d27;
}

.stress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--landing-lime);
}

.stress-row.warning .stress-track span {
    background: var(--landing-amber);
}

.stress-row.danger .stress-track span {
    background: var(--landing-red);
}

.stress-row-value {
    color: #d5d8cd;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.66rem;
    text-align: right;
}

.stress-note {
    border-top: 1px solid var(--landing-line);
    padding: 14px 21px;
    color: #767c73;
    font-size: 0.62rem;
    line-height: 1.5;
}

.management-section {
    border-bottom: 1px solid var(--landing-line);
    background:
        radial-gradient(circle at 12% 34%, rgba(101, 215, 207, 0.055), transparent 25rem),
        var(--landing-bg);
}

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

.management-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid var(--landing-line);
    border-radius: 20px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.028), transparent 55%),
        var(--landing-surface);
    padding: 30px;
}

.management-card-consultant {
    background:
        linear-gradient(145deg, rgba(101, 215, 207, 0.09), transparent 58%),
        var(--landing-surface);
}

.management-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.management-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(215, 241, 113, 0.2);
    border-radius: 11px;
    background: var(--landing-lime-soft);
    color: var(--landing-lime);
}

.management-mode {
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    padding: 0.38rem 0.62rem;
    color: #91978d;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-align: center;
    text-transform: uppercase;
}

.management-card h3 {
    margin: 39px 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.8vw, 3.35rem);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 1;
}

.management-card > p {
    margin: 0;
    color: var(--landing-muted);
    font-size: 0.82rem;
    line-height: 1.7;
}

.management-state-grid {
    display: grid;
    gap: 8px;
    margin-top: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.management-state {
    min-width: 0;
    border: 1px solid var(--landing-line);
    border-left: 3px solid #777d74;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.11);
    padding: 11px 12px;
}

.management-state strong {
    display: block;
    color: var(--landing-ink);
    font-size: 0.71rem;
}

.management-state span {
    display: block;
    margin-top: 3px;
    color: #82887f;
    font-size: 0.61rem;
    line-height: 1.45;
}

.management-state.state-danger { border-left-color: var(--landing-red); }
.management-state.state-warning { border-left-color: var(--landing-amber); }
.management-state.state-neutral { border-left-color: #838a80; }
.management-state.state-lime { border-left-color: var(--landing-lime); }
.management-state.state-cyan { border-left-color: var(--landing-cyan); }
.management-state.state-amber { border-left-color: #d28c45; }

.management-card .management-card-note {
    margin-top: auto;
    padding-top: 25px;
    color: #7d837a;
    font-size: 0.67rem;
    line-height: 1.6;
}

.consultant-context {
    margin-top: 28px;
}

.consultant-context-label,
.consultant-output-kicker {
    display: block;
    color: #7d8379;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.consultant-context-grid {
    display: grid;
    gap: 8px;
    margin-top: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.consultant-context-grid span {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 8px;
    border: 1px solid var(--landing-line);
    border-radius: 9px;
    background: rgba(0, 0, 0, 0.12);
    padding: 10px;
    color: #a8aea3;
    font-size: 0.64rem;
    line-height: 1.45;
}

.consultant-context-grid i {
    margin-top: 1px;
    flex: 0 0 auto;
    color: var(--landing-cyan);
}

.consultant-output {
    margin-top: 18px;
    border: 1px solid rgba(101, 215, 207, 0.19);
    border-radius: 12px;
    background: rgba(101, 215, 207, 0.055);
    padding: 16px;
}

.consultant-output strong {
    display: block;
    margin-top: 6px;
    color: var(--landing-ink);
    font-size: 0.79rem;
    line-height: 1.45;
}

.consultant-output p {
    margin: 8px 0 0;
    color: #858c82;
    font-size: 0.65rem;
    line-height: 1.55;
}

.management-rule-strip {
    display: grid;
    margin-top: 16px;
    border: 1px solid var(--landing-line);
    border-radius: 14px;
    background: #0c0f0c;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.management-rule-strip > div {
    display: grid;
    gap: 12px;
    border-right: 1px solid var(--landing-line);
    padding: 19px;
    grid-template-columns: 20px 1fr;
}

.management-rule-strip > div:last-child {
    border-right: 0;
}

.management-rule-strip i {
    margin-top: 2px;
    color: var(--landing-lime);
}

.management-rule-strip span {
    color: #7f857b;
    font-size: 0.65rem;
    line-height: 1.5;
}

.management-rule-strip strong {
    display: block;
    margin-bottom: 3px;
    color: #bdc2b7;
    font-size: 0.7rem;
}

.management-disclaimer {
    max-width: 780px;
    margin: 18px auto 0;
    color: #747a71;
    font-size: 0.66rem;
    line-height: 1.55;
    text-align: center;
}

.intelligence-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
}

.intelligence-card {
    min-height: 260px;
    border: 1px solid var(--landing-line);
    border-radius: 17px;
    background: var(--landing-surface);
    padding: 24px;
}

.intelligence-icon {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid rgba(215, 241, 113, 0.2);
    border-radius: 10px;
    background: var(--landing-lime-soft);
    color: var(--landing-lime);
}

.intelligence-card h3 {
    margin: 42px 0 11px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.035em;
}

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

.pricing-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(215, 241, 113, 0.27);
    border-radius: 26px;
    background:
        radial-gradient(circle at 88% 12%, rgba(215, 241, 113, 0.15), transparent 25rem),
        linear-gradient(140deg, #12170f, #0d100d 65%);
    padding: clamp(32px, 6vw, 70px);
}

.pricing-card::after {
    position: absolute;
    right: -140px;
    bottom: -230px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(215, 241, 113, 0.07);
    border-radius: 50%;
    box-shadow:
        0 0 0 58px rgba(215, 241, 113, 0.018),
        0 0 0 116px rgba(215, 241, 113, 0.012);
    content: "";
}

.pricing-layout {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    gap: 70px;
    grid-template-columns: 1.18fr 0.82fr;
}

.pricing-copy h2 {
    max-width: 700px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.45rem, 5vw, 4.9rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.pricing-copy p {
    max-width: 590px;
    margin: 25px 0 0;
    color: var(--landing-muted);
    line-height: 1.75;
}

.pricing-offer {
    border-left: 1px solid var(--landing-line-strong);
    padding-left: 45px;
}

.beta-eyebrow {
    color: var(--landing-lime);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 9px 0 3px;
}

.pricing-price strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: -0.07em;
}

.pricing-price span {
    color: var(--landing-muted);
    font-size: 0.82rem;
}

.beta-status {
    margin: 13px 0 8px;
}

.beta-status strong {
    display: block;
    max-width: 320px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5vw, 4.35rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.pricing-renewal {
    color: #8d9389;
    font-size: 0.7rem;
}

.pricing-offer .landing-button {
    width: 100%;
    margin-top: 24px;
}

.pricing-offer small {
    display: block;
    margin-top: 12px;
    color: #737970;
    font-size: 0.62rem;
    line-height: 1.5;
    text-align: center;
}

.pricing-checks {
    display: grid;
    gap: 10px 20px;
    margin-top: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-checks span {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #b8bdb3;
    font-size: 0.74rem;
}

.pricing-checks i {
    margin-top: 2px;
    color: var(--landing-lime);
}

.faq-grid {
    display: grid;
    gap: 0 60px;
    border-top: 1px solid var(--landing-line);
    grid-template-columns: repeat(2, 1fr);
}

.faq-item {
    border-bottom: 1px solid var(--landing-line);
    padding: 27px 0;
}

.faq-item h3 {
    margin: 0 0 9px;
    color: var(--landing-ink);
    font-size: 0.9rem;
}

.faq-item p {
    margin: 0;
    color: var(--landing-muted);
    font-size: 0.77rem;
    line-height: 1.65;
}

.final-cta {
    padding: 80px 0 110px;
    text-align: center;
}

.final-cta h2 {
    max-width: 800px;
    margin: 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.final-cta p {
    max-width: 590px;
    margin: 24px auto 0;
    color: var(--landing-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.final-cta .hero-actions {
    justify-content: center;
}

.landing-footer {
    border-top: 1px solid var(--landing-line);
    padding: 35px 0;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-copy strong {
    display: block;
    font-size: 0.8rem;
}

.footer-brand-copy span {
    display: block;
    color: #767c73;
    font-size: 0.64rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 20px;
}

.footer-links a,
.footer-links span {
    color: #858b81;
    font-size: 0.68rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--landing-ink);
}

@media (max-width: 1080px) {
    .landing-nav-links {
        display: none;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-grid,
    .level-grid,
    .risk-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 58px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .workspace-shell {
        max-width: 760px;
    }

    .proof-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .proof-intro {
        min-height: auto;
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 1px solid var(--landing-line);
    }

    .level-copy {
        padding-bottom: 30px;
    }

    .levels-console {
        min-height: 720px;
        border-right: 0;
        border-left: 0;
    }

    .risk-grid {
        gap: 50px;
    }
}

@media (max-width: 820px) {
    .landing-container {
        width: min(calc(100% - 30px), var(--landing-container));
    }

    .brand-product,
    .landing-nav-actions .landing-button-text {
        display: none;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 14vw, 5rem);
    }

    .workspace-body {
        grid-template-columns: 1fr;
    }

    .market-panel {
        border-right: 0;
    }

    .signal-rail {
        display: grid;
        border-top: 1px solid var(--landing-line);
        grid-template-columns: repeat(2, 1fr);
    }

    .signal-rail-title {
        grid-column: 1 / -1;
    }

    .signal-item {
        border-right: 1px solid var(--landing-line);
    }

    .signal-decision {
        grid-column: 1 / -1;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 42px;
    }

    .feature-panel-large,
    .feature-panel-medium,
    .feature-panel-third {
        grid-column: span 12;
    }

    .feature-panel {
        min-height: 310px;
    }

    .workflow-grid,
    .intelligence-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .management-grid,
    .management-rule-strip {
        grid-template-columns: 1fr;
    }

    .management-rule-strip > div {
        border-right: 0;
        border-bottom: 1px solid var(--landing-line);
    }

    .management-rule-strip > div:last-child {
        border-bottom: 0;
    }

    .pricing-layout {
        gap: 45px;
        grid-template-columns: 1fr;
    }

    .pricing-offer {
        border-top: 1px solid var(--landing-line-strong);
        border-left: 0;
        padding-top: 36px;
        padding-left: 0;
    }
}

@media (max-width: 600px) {
    html {
        scroll-padding-top: 72px;
    }

    .landing-nav-inner {
        min-height: 66px;
    }

    .landing-nav-actions .landing-button-primary {
        min-height: 40px;
        padding: 0.55rem 0.8rem;
        font-size: 0.76rem;
    }

    .hero {
        padding: 58px 0 62px;
    }

    .hero h1 {
        letter-spacing: -0.055em;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .landing-button {
        width: 100%;
    }

    .workspace-topbar {
        padding-inline: 12px;
    }

    .workspace-status {
        display: none;
    }

    .workspace-body {
        min-height: auto;
    }

    .market-heading {
        padding: 16px 14px 12px;
    }

    .market-chart {
        height: 265px;
    }

    .chart-note {
        left: 33%;
    }

    .market-stat {
        padding: 13px 10px;
    }

    .market-stat strong {
        font-size: 0.64rem;
    }

    .signal-rail {
        grid-template-columns: 1fr;
    }

    .signal-rail-title,
    .signal-decision {
        grid-column: auto;
    }

    .signal-item {
        border-right: 0;
    }

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

    .proof-item {
        border-bottom: 1px solid var(--landing-line);
    }

    .proof-grid > :nth-child(3),
    .proof-grid > :nth-child(5) {
        border-right: 0;
    }

    .landing-section {
        padding: 88px 0;
    }

    .landing-section-compact {
        padding: 68px 0;
    }

    .feature-panel {
        min-height: 355px;
        padding: 23px;
    }

    .feature-panel h3 {
        margin-top: 36px;
    }

    .feature-tags {
        padding-top: 22px;
    }

    .level-grid {
        gap: 35px;
    }

    .level-copy {
        padding: 85px 0 20px;
    }

    .levels-console {
        min-height: 600px;
        margin-inline: -15px;
        padding: 40px 15px 70px;
    }

    .active-level-row {
        gap: 10px;
        padding-inline: 12px;
        grid-template-columns: 66px 1fr 72px;
    }

    .active-level-source {
        min-width: 0;
    }

    .workflow-grid,
    .intelligence-grid {
        grid-template-columns: 1fr;
    }

    .management-card {
        padding: 23px;
    }

    .management-state-grid,
    .consultant-context-grid {
        grid-template-columns: 1fr;
    }

    .workflow-step {
        min-height: 245px;
    }

    .workflow-step h3 {
        margin-top: 56px;
    }

    .stress-metrics {
        grid-template-columns: 1fr;
    }

    .stress-row {
        grid-template-columns: 70px 1fr 36px;
    }

    .broker-api-callout {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        border-radius: 19px;
    }

    .pricing-checks,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

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

    .landing-page *,
    .landing-page *::before,
    .landing-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
