:root {
    --lp-bg: #f3f7fc;
    --lp-navy: #061528;
    --lp-navy-light: #0b2342;
    --lp-blue: #0d73f6;
    --lp-cyan: #00afea;
    --lp-text: #0b1728;
    --lp-muted: #66758c;
    --lp-border: #dce5f0;
    --lp-white: #ffffff;
    --lp-success: #047857;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    color: var(--lp-text);
    background: var(--lp-bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
.lp-header {
    background: var(--lp-navy);
    padding: 18px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lp-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
}
.lp-brand__mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: linear-gradient(145deg, var(--lp-blue), var(--lp-cyan));
}
.lp-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.lp-nav a {
    color: #9db1cf;
    font-size: 14px;
    font-weight: 600;
}
.lp-nav a:hover { color: #fff; }
.lp-nav .lp-cta-small {
    padding: 9px 18px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-cyan));
    color: #fff;
}
.lp-hero {
    background: var(--lp-navy);
    padding: 60px 5vw 90px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
    gap: 48px;
    align-items: center;
}
.lp-hero__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    min-height: 280px;
}
.lp-hero__card-live {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9db1cf;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}
.lp-hero__card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-cyan);
    animation: heroDotPulse 1.4s ease-in-out infinite;
}
@keyframes heroDotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.lp-hero__card-content {
    position: relative;
    min-height: 200px;
}
.hero-card-inner {
    background: var(--lp-white);
    border-radius: 14px;
    padding: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-card-inner.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.hero-card-sport {
    color: var(--lp-blue);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hero-card-market {
    background: rgba(4, 120, 87, 0.08);
    color: var(--lp-success);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 7px;
}
.hero-card-teams {
    color: var(--lp-navy);
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 18px;
}
.hero-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 14px;
    border-top: 1px solid var(--lp-border);
}
.hero-card-prob {
    color: var(--lp-success);
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}
.hero-card-odd {
    color: var(--lp-navy);
    font-size: 18px;
    font-weight: 800;
    text-align: right;
}
.hero-card-label {
    color: var(--lp-muted);
    font-size: 11px;
    margin-top: 2px;
}
.hero-card-odd-wrap {
    text-align: right;
}
.lp-hero__eyebrow {
    color: var(--lp-cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 14px;
}
.lp-hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}
.lp-hero p {
    color: #9db1cf;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 30px;
    max-width: 480px;
}
.lp-hero__actions {
    display: flex;
    gap: 14px;
}
.lp-btn-primary {
    padding: 14px 26px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-cyan));
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(13, 115, 246, 0.35);
}
.lp-btn-secondary {
    padding: 14px 26px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}
.lp-section {
    padding: 80px 5vw;
    max-width: 1180px;
    margin: 0 auto;
}
.lp-section__eyebrow {
    color: var(--lp-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.lp-section h2 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.015em;
    margin: 0 0 14px;
}
.lp-section > p {
    color: var(--lp-muted);
    font-size: 15px;
    max-width: 560px;
    margin: 0 0 44px;
}
.lp-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.lp-feature {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lp-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(13, 115, 246, 0.12);
    border-color: var(--lp-blue);
}
.lp-feature__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-cyan));
}
.lp-feature:nth-child(2) .lp-feature__icon {
    background: linear-gradient(135deg, #d85a30, #f0997b);
}
.lp-feature:nth-child(3) .lp-feature__icon {
    background: linear-gradient(135deg, #047857, #5dcaa5);
}
.lp-feature:nth-child(4) .lp-feature__icon {
    background: linear-gradient(135deg, #534ab7, #7f77dd);
}
.lp-feature h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
}
.lp-feature p {
    font-size: 13px;
    color: var(--lp-muted);
    line-height: 1.55;
    margin: 0;
}
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.lp-step {
    position: relative;
    padding-top: 20px;
}
.lp-step__number {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-blue);
    margin-bottom: 10px;
}
.lp-step h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
}
.lp-step p {
    font-size: 13px;
    color: var(--lp-muted);
    line-height: 1.6;
    margin: 0;
}
.lp-cta-section {
    background: var(--lp-navy);
    padding: 70px 5vw;
    text-align: center;
}
.lp-cta-section h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 14px;
}
.lp-cta-section p {
    color: #9db1cf;
    font-size: 15px;
    margin: 0 0 28px;
}
.lp-footer {
    padding: 30px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--lp-muted);
    font-size: 12px;
    border-top: 1px solid var(--lp-border);
}
.lp-footer__links {
    display: flex;
    gap: 20px;
}
@media (max-width: 900px) {
    .lp-hero { grid-template-columns: minmax(0, 1fr); }
    .lp-hero__card { max-width: 360px; margin: 0 auto; }
    .lp-hero h1 { font-size: 32px; }
    .lp-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lp-steps { grid-template-columns: minmax(0, 1fr); }
    .lp-nav { display: none; }
}
@media (max-width: 560px) {
    .lp-features { grid-template-columns: minmax(0, 1fr); }
    .lp-hero__actions { flex-direction: column; }
    .lp-footer { flex-direction: column; gap: 12px; text-align: center; }
}


.op-hero {
    background: linear-gradient(160deg, var(--lp-navy), var(--lp-navy-light));
    padding: 40px 5vw 56px;
    text-align: center;
}
.op-hero__badge {
    display: inline-block;
    color: var(--lp-cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(0, 175, 234, 0.12);
    padding: 5px 14px;
    border-radius: 999px;
    margin: 0 0 14px;
}
.op-hero h1 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px;
}
.op-hero__subtitle {
    color: #9db1cf;
    font-size: 14px;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}
.op-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 5vw 72px;
}
.op-counter {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
}
.op-counter__label {
    font-size: 13px;
    color: var(--lp-muted);
    font-weight: 600;
}
.op-counter__total {
    font-size: 12px;
    color: var(--lp-blue);
    font-weight: 700;
}
.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}
.opportunity-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(6, 21, 40, 0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.opportunity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 21, 40, 0.08);
}
.opportunity-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.opp-market {
    background: rgba(13, 115, 246, 0.08);
    color: var(--lp-blue);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 7px;
    max-width: 65%;
}
.opp-probability {
    color: var(--lp-success);
    font-size: 15px;
    font-weight: 800;
}
.opp-teams {
    font-weight: 700;
    font-size: 13px;
    color: var(--lp-navy);
    line-height: 1.3;
    margin-bottom: 10px;
}
.opportunity-card__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--lp-border);
}
.opportunity-card__foot span {
    font-size: 11px;
    color: var(--lp-muted);
}
.opportunity-card__foot strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--lp-navy);
}
.opportunity-card--locked {
    background: repeating-linear-gradient(135deg, #f3f7fc, #f3f7fc 8px, #e9eff8 8px, #e9eff8 16px);
    border: 1px dashed #b9c8dc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    min-height: 126px;
    box-shadow: none;
}
.opportunity-card--locked:hover {
    transform: none;
    box-shadow: none;
}
.opp-locked__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(6, 21, 40, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--lp-muted);
    font-weight: 800;
}
.opp-locked__text {
    color: var(--lp-muted);
    font-size: 11px;
    font-weight: 700;
    max-width: 120px;
}
.op-empty-note {
    text-align: center;
    color: var(--lp-muted);
    font-size: 14px;
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.upgrade-banner {
    background: linear-gradient(135deg, var(--lp-navy), var(--lp-navy-light));
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}
.upgrade-banner p {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
}
.upgrade-banner__sub {
    color: #9db1cf !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    margin: 0 0 16px !important;
}
.upgrade-banner .cta-button {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-cyan));
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}
.upgrade-banner .cta-button:hover {
    opacity: 0.92;
}
@media (max-width: 700px) {
    .opportunities-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .op-hero { padding: 32px 6vw 40px; }
    .op-hero h1 { font-size: 22px; }
    .op-content { padding: 24px 6vw 56px; }
}
