:root {
    --bitler-yellow: #f0b90b;
    --bitler-yellow-hover: #d89f00;
    --bitler-panel: #111820;
    --bitler-panel-2: #161d26;
    --bitler-panel-3: #1b2430;
    --bitler-border: #26313f;
    --bitler-text: #f5f7fa;
    --bitler-muted: #9aa4b2;
}

.landing-shell {
    padding-top: 32px;
}

.landing-shell .hero-exchange {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 28px;
    align-items: stretch;
    min-height: 520px;
}

.landing-shell .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 0;
}

.landing-shell .eyebrow {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border: 1px solid rgba(240, 185, 11, .22);
    border-radius: 999px;
    color: var(--bitler-yellow);
    background: rgba(240, 185, 11, .12);
    font-size: 23px;
    font-weight: 800;
    text-transform: uppercase;
}

.landing-shell .hero-copy h1 {
    max-width: 760px;
    margin-top: 18px;
    color: var(--bitler-text);
    font-size: 54px;
    line-height: 1.02;
}

.landing-shell .hero-copy p {
    max-width: 610px;
    margin-top: 18px;
    color: var(--bitler-muted);
    font-size: 17px;
}

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

.landing-shell .landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    transition: .2s;
}

.landing-shell .landing-btn.primary {
    background: var(--bitler-yellow);
    color: #111;
}

.landing-shell .landing-btn.primary:hover {
    background: var(--bitler-yellow-hover);
}

.landing-shell .landing-btn.secondary {
    background: var(--bitler-panel-3);
    color: var(--bitler-text);
    border: 1px solid var(--bitler-border);
}

.landing-shell .trust-row,
.landing-shell .steps,
.landing-shell .why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.landing-shell .trust-item,
.landing-shell .step-card,
.landing-shell .why-card,
.landing-shell .trade-panel,
.landing-shell .quote-box,
.landing-shell .market-strip {
    background: var(--bitler-panel);
    border: 1px solid var(--bitler-border);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
}

.landing-shell .trust-item,
.landing-shell .step-card,
.landing-shell .why-card {
    padding: 22px;
}

.landing-shell .trust-item strong,
.landing-shell .why-card strong {
    display: block;
    color: var(--bitler-text);
    font-size: 15px;
    margin-bottom: 6px;
}

.landing-shell .trust-item span,
.landing-shell .step-card p,
.landing-shell .why-card p,
.landing-shell .bitler-page-head p,
.landing-shell .quote-label,
.landing-shell .panel-top p,
.landing-shell .market-strip p {
    color: var(--bitler-muted);
}

.landing-shell .bitler-page-head {
    margin: 26px 0 18px;
}

.landing-shell .bitler-page-head h1,
.landing-shell .bitler-page-head h2 {
    color: var(--bitler-text);
    font-size: 32px;
    line-height: 1.15;
}

.landing-shell .bitler-page-head p {
    margin-top: 8px;
}

.landing-shell .trade-panel {
    align-self: center;
    padding: 20px;
}

.landing-shell .panel-top,
.landing-shell .quote-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.landing-shell .panel-top {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bitler-border);
}

.landing-shell .panel-title {
    color: var(--bitler-text);
    font-size: 17px;
    font-weight: 800;
}

.landing-shell .status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 7px 10px;
    border: 1px solid rgba(240, 185, 11, .25);
    background: rgba(240, 185, 11, .12);
    color: var(--bitler-yellow);
    font-size: 16px;
    font-weight: 800;
}

.landing-shell .status-pill::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bitler-yellow);
}

.landing-shell .quote-box {
    margin-top: 18px;
    padding: 16px;
}

.landing-shell .quote-line {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.landing-shell .quote-line:last-child {
    border-bottom: 0;
}

.landing-shell .quote-value {
    color: var(--bitler-text);
    font-weight: 800;
    text-align: right;
}

.landing-shell .step-number {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    border: 1px solid rgba(240, 185, 11, .25);
    background: rgba(240, 185, 11, .12);
    color: var(--bitler-yellow);
    font-weight: 900;
    margin-bottom: 16px;
}

.landing-shell .market-strip {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
}

.landing-shell .market-strip h2 {
    color: var(--bitler-text);
    font-size: 20px;
}

@media (max-width: 900px) {
    .landing-shell .hero-exchange,
    .landing-shell .trust-row,
    .landing-shell .steps,
    .landing-shell .why-grid {
        grid-template-columns: 1fr;
    }

    .landing-shell .hero-exchange {
        min-height: auto;
    }

    .landing-shell .hero-copy h1 {
        font-size: 40px;
    }

    .landing-shell .market-strip {
        align-items: flex-start;
        flex-direction: column;
    }
}
