/* Weekly Opportunities Report — dark conversion landing */
:root {
    --wor-navy: #06101f;
    --wor-navy-mid: #0c1a2e;
    --wor-navy-soft: #132338;
    --wor-blue: #1a6bb5;
    --wor-blue-glow: rgba(26, 107, 181, 0.35);
    --wor-green: #16a34a;
    --wor-green-bright: #22c55e;
    --wor-green-glow: rgba(34, 197, 94, 0.4);
    --wor-gold: #d4af37;
    --wor-gold-soft: #e8c96a;
    --wor-hot: #e85d04;
    --wor-hot-deep: #dc2f02;
    --wor-text: #f1f5f9;
    --wor-text-muted: rgba(241, 245, 249, 0.72);
    --wor-border: rgba(212, 175, 55, 0.18);
    --wor-radius: 1rem;
    --wor-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #06101f;
    color-scheme: dark;
}

body.wor-body {
    margin: 0;
    font-family: 'Cairo', system-ui, -apple-system, sans-serif;
    background: #06101f;
    background: var(--wor-navy);
    color: var(--wor-text);
    -webkit-font-smoothing: antialiased;
    padding-top: 68px;
    line-height: 1.7;
}

body.wor-body--en {
    font-family: 'Manrope', 'Cairo', system-ui, -apple-system, sans-serif;
}

/* ── Nav ── */
.wor-nav {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 100;
    background: rgba(6, 16, 31, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wor-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 1rem;
}

.wor-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.wor-brand img {
    border-radius: 6px;
}

.wor-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.wor-lang-btn {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0.5rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color var(--wor-transition), color var(--wor-transition), background var(--wor-transition);
}

.wor-lang-btn:hover {
    color: var(--wor-gold) !important;
    border-color: rgba(212, 175, 55, 0.55);
    background: rgba(255, 255, 255, 0.04);
}

.wor-nav-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--wor-green-bright), var(--wor-green));
    color: #04140a !important;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.55rem 1.1rem;
    border-radius: 0.55rem;
    text-decoration: none;
    box-shadow: 0 4px 18px var(--wor-green-glow);
    transition: transform var(--wor-transition), box-shadow var(--wor-transition);
}

.wor-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--wor-green-glow);
    color: #04140a !important;
}

/* ── Hero ── */
.wor-hero {
    position: relative;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    padding: 3.5rem 0 4.5rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(26, 107, 181, 0.28), transparent 55%),
        radial-gradient(ellipse 50% 40% at 15% 80%, rgba(34, 197, 94, 0.12), transparent 50%),
        linear-gradient(165deg, #040b16 0%, var(--wor-navy) 40%, #0a2240 100%);
}

.wor-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.wor-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, black 15%, transparent 72%);
}

.wor-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.wor-hero-glow--blue {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--wor-blue-glow), transparent 70%);
    top: -160px;
    inset-inline-end: -120px;
}

.wor-hero-glow--green {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.18), transparent 70%);
    bottom: -80px;
    inset-inline-start: 10%;
}

.wor-hero-glow--gold {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 70%);
    top: 30%;
    inset-inline-start: -60px;
}

.wor-hero-inner {
    position: relative;
    z-index: 1;
}

.wor-brand-mark {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 900;
    color: var(--wor-gold);
    letter-spacing: -0.02em;
    margin: 0 0 1.1rem;
    line-height: 1.2;
}

.wor-hero h1 {
    font-size: clamp(1.75rem, 4.2vw, 2.85rem);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin: 0 0 1.25rem;
    color: #fff;
    max-width: 18ch;
}

body.wor-body--en .wor-hero h1,
body.wor-body--en .wor-section-title {
    max-width: 22ch;
}

.wor-hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 500;
    color: var(--wor-text-muted);
    line-height: 1.85;
    margin: 0 0 2rem;
    max-width: 36rem;
}

.wor-cta-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, #4ade80, var(--wor-green-bright) 45%, var(--wor-green));
    color: #052e14 !important;
    font-weight: 900;
    font-size: clamp(1rem, 2vw, 1.15rem);
    padding: 1rem 1.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow:
        0 4px 0 #15803d,
        0 10px 32px var(--wor-green-glow);
    transition: transform var(--wor-transition), box-shadow var(--wor-transition);
}

.wor-cta-green:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 #15803d,
        0 14px 36px var(--wor-green-glow);
    color: #052e14 !important;
}

/* ── Report booklet mockup ── */
.wor-booklet {
    position: relative;
    width: min(100%, 340px);
    margin-inline: auto;
    aspect-ratio: 3 / 4;
    transform: rotate(-1.5deg);
}

.wor-booklet-shadow {
    position: absolute;
    inset: 12% 8% -6% 8%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55), transparent 70%);
    filter: blur(18px);
    z-index: 0;
}

.wor-booklet-page {
    position: absolute;
    inset: 4% 0 0 6%;
    background: linear-gradient(135deg, #1e3a5f, #152a45);
    border-radius: 4px 14px 14px 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
    transform: rotate(3deg);
}

.wor-booklet-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    border-radius: 4px 16px 16px 4px;
    overflow: hidden;
    background:
        linear-gradient(145deg, #0f2744 0%, #0a1c33 55%, #071525 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wor-booklet-spine {
    width: 14px;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--wor-gold), #9a7b1a 40%, #6b5510);
    box-shadow: inset -2px 0 4px rgba(0, 0, 0, 0.35);
}

.wor-booklet-content {
    flex: 1;
    padding: 1.5rem 1.35rem 1.25rem;
    display: flex;
    flex-direction: column;
}

.wor-booklet-badge {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #052e14;
    background: var(--wor-green-bright);
    padding: 0.25rem 0.55rem;
    border-radius: 0.3rem;
    margin-bottom: 0.85rem;
}

.wor-booklet-kicker {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--wor-gold-soft);
}

.wor-booklet-title {
    margin: 0.35rem 0 0;
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    direction: ltr;
    text-align: start;
}

.wor-booklet-divider {
    height: 2px;
    width: 48px;
    background: linear-gradient(90deg, var(--wor-gold), transparent);
    margin: 1rem 0;
}

.wor-booklet-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.wor-booklet-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wor-booklet-list span {
    color: var(--wor-text-muted);
    font-weight: 600;
}

.wor-booklet-list strong {
    color: var(--wor-green-bright);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    direction: ltr;
}

.wor-booklet-chart {
    margin-top: 0.75rem;
}

.wor-booklet-chart svg {
    width: 100%;
    height: auto;
    display: block;
}

.wor-booklet-powered {
    margin: 0.75rem 0 0;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    direction: ltr;
    text-align: center;
}

/* ── Social proof ── */
.wor-proof {
    background: linear-gradient(90deg, #0a1f14, var(--wor-navy-soft) 40%, #12253d);
    border-block: 1px solid rgba(34, 197, 94, 0.2);
    padding: 1.15rem 0;
}

.wor-proof-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem 2.5rem;
}

.wor-proof-text {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 700;
    color: var(--wor-text);
}

.wor-proof-text strong {
    color: var(--wor-gold);
    font-weight: 900;
}

.wor-exchanges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.wor-exchange {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.9);
    direction: ltr;
}

.wor-exchange-icon {
    font-size: 1rem;
    line-height: 1;
}

/* ── Value + Form ── */
.wor-value-form {
    padding: 4.5rem 0 5rem;
    background:
        radial-gradient(ellipse 60% 50% at 85% 20%, rgba(26, 107, 181, 0.15), transparent 55%),
        linear-gradient(180deg, var(--wor-navy) 0%, var(--wor-navy-mid) 100%);
}

.wor-section-title {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 900;
    line-height: 1.35;
    margin: 0 0 2rem;
    color: #fff;
    max-width: 18ch;
}

.wor-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wor-benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.wor-benefit-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 0.75rem;
}

.wor-benefit h3 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--wor-gold-soft);
}

.wor-benefit p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--wor-text-muted);
    line-height: 1.75;
    max-width: 32rem;
}

/* Form box — interactive container */
.wor-form-box {
    background:
        linear-gradient(160deg, rgba(19, 35, 56, 0.95), rgba(10, 26, 46, 0.98));
    border: 1px solid var(--wor-border);
    border-radius: var(--wor-radius);
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    scroll-margin-top: 90px;
}

.wor-form-title {
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    font-weight: 900;
    margin: 0 0 1.5rem;
    line-height: 1.4;
    color: #fff;
    text-align: center;
}

.wor-field {
    margin-bottom: 1.1rem;
}

.wor-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.4rem;
}

.wor-form .form-control,
.wor-form .form-select {
    background: rgba(4, 11, 22, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    border-radius: 0.6rem;
    padding: 0.75rem 0.95rem;
    font-size: 1rem;
    font-family: inherit;
    min-height: 3rem;
    transition: border-color var(--wor-transition), box-shadow var(--wor-transition);
}

.wor-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.wor-form .form-control:focus,
.wor-form .form-select:focus {
    background: rgba(4, 11, 22, 0.85);
    border-color: var(--wor-green-bright);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    color: #fff;
    outline: none;
}

.wor-form .form-select option {
    background: #0c1a2e;
    color: #fff;
}

.wor-field-error,
.wor-validation-summary {
    display: block;
    color: #fb923c;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.35rem;
}

.wor-validation-summary:empty {
    display: none;
}

.wor-cta-hot {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.35rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ff7b00, var(--wor-hot) 40%, var(--wor-hot-deep));
    color: #fff;
    font-family: inherit;
    font-weight: 900;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    padding: 1.05rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow:
        0 4px 0 #9a3412,
        0 12px 28px rgba(232, 93, 4, 0.4);
    transition: transform var(--wor-transition), box-shadow var(--wor-transition);
}

.wor-cta-hot:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 #9a3412,
        0 16px 36px rgba(232, 93, 4, 0.5);
}

.wor-cta-hot:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 #9a3412, 0 8px 20px rgba(232, 93, 4, 0.35);
}

.wor-privacy {
    margin: 1rem 0 0;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

.wor-success {
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.wor-success-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid var(--wor-green-bright);
    color: var(--wor-green-bright);
    font-size: 1.5rem;
    font-weight: 900;
}

.wor-success h2 {
    font-size: 1.35rem;
    font-weight: 900;
    margin: 0 0 0.75rem;
    color: #fff;
}

.wor-success p {
    margin: 0;
    color: var(--wor-text-muted);
    font-size: 0.95rem;
}

/* ── Footer ── */
.wor-footer {
    background: #030910;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.75rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.wor-footer a {
    color: var(--wor-gold-soft);
    text-decoration: none;
    font-weight: 600;
}

.wor-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .wor-hero {
        min-height: auto;
        padding: 2.5rem 0 3rem;
    }

    .wor-hero h1 {
        max-width: none;
    }

    .wor-booklet {
        width: min(100%, 280px);
        margin-top: 0.5rem;
    }

    .wor-section-title {
        max-width: none;
        text-align: center;
    }

    .wor-benefits {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .wor-nav-cta {
        font-size: 0.75rem;
        padding: 0.45rem 0.75rem;
    }

    .wor-brand span {
        font-size: 0.9rem;
    }

    .wor-cta-green {
        width: 100%;
    }

    .wor-proof-inner {
        flex-direction: column;
        gap: 0.85rem;
        text-align: center;
    }

    .wor-exchanges {
        justify-content: center;
    }

    .wor-form-box {
        padding: 1.35rem 1.1rem;
    }

    .wor-value-form {
        padding: 3rem 0 3.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}
