/* File: wwwroot/css/pages/landing.page.css
   Marketing site styles: hero, feature grid, pricing grid, trade marquee.
   Shared with Landing/Index, Features, Pricing, Contact — all under _LayoutPublic.
*/

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 56px 0 72px;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 32px;
    }
}

.hero .eyebrow {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-strong);
    margin-bottom: 14px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.hero .sub {
    font-size: 16px;
    color: var(--text-muted);
    margin: 18px 0 26px;
    max-width: 460px;
    line-height: 1.6;
}

.hero-preview {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px -20px rgba(20, 24, 31, 0.28), var(--shadow-card);
    overflow: hidden;
}

.hero-preview .pv-bar {
    display: flex;
    gap: 6px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
}

.hero-preview .pv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-strong);
}

.hero-preview .pv-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pv-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.pv-stat {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
}

.pv-stat .n {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
}

.pv-stat .l {
    font-size: 10.5px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.pv-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
}

.pv-row:last-child {
    border-bottom: none;
}

.pv-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--brand-wash);
    flex-shrink: 0;
}

.pv-line {
    height: 8px;
    border-radius: 4px;
    background: var(--border);
    flex: 1;
}

/* trade marquee */
.marquee-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    margin-bottom: 8px;
}

.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: je-marquee 32s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

@keyframes je-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.trade-card {
    width: 156px;
    height: 104px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--surface);
    flex-shrink: 0;
}

.trade-card svg {
    width: 28px;
    height: 28px;
    color: var(--brand-strong);
}

.trade-card span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

/* section headers */
.section-head {
    max-width: 560px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-head .kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--brand-strong);
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: 28px;
}

.section-head p {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.6;
}

/* feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.feature-card .icon-badge {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--brand-wash);
    color: var(--brand-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.feature-card .icon-badge svg {
    width: 19px;
    height: 19px;
}

.feature-card h3 {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

/* pricing grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.pricing-grid .card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 4px;
}

.pricing-grid .card .price {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing-grid .card ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-grid .card ul li {
    font-size: 13.5px;
    color: var(--text);
    padding-left: 20px;
    position: relative;
}

.pricing-grid .card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
}

/* contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
    align-items: start;
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
