@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Ticker Bar ──────────────────────────────────────────────────────────── */
.wynthor-ticker {
    background: #080d16;
    height: 46px;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wynthor-ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    animation: wynthor-ticker-scroll 140s linear infinite;
    will-change: transform;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wynthor-ticker-track.is-ready {
    opacity: 1;
}

.wynthor-ticker-track:hover {
    animation-play-state: paused;
}

.wynthor-ticker-item,
.wynthor-ticker-skeleton {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 24px;
    height: 46px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
    cursor: pointer !important;
    text-decoration: none !important;
}

.wynthor-ticker-item:hover {
    text-decoration: none !important;
}

.wt-flag {
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
}

.wt-name {
    font-size: 11px;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.wt-vline {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.wt-date {
    font-size: 10px;
    font-weight: 400;
    color: #4b5563;
    flex-shrink: 0;
}

.wt-price {
    font-size: 13px;
    font-weight: 700;
    color: #f1f5f9;
    flex-shrink: 0;
    letter-spacing: 0.2px;
}

/* High / Low group */
.wt-hl {
    display: inline-flex;
    flex-direction: column;
    gap: 1px;
    flex-shrink: 0;
}

.wt-high,
.wt-low {
    font-size: 9px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.2;
}

/* Absolute change */
.wt-change {
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

/* Percentage change */
.wt-pct {
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.wt-change.up,
.wt-pct.up {
    color: #4ade80;
}

.wt-change.down,
.wt-pct.down {
    color: #f87171;
}

/* Timestamp */
.wt-time {
    font-size: 10px;
    font-weight: 400;
    color: #4b5563;
    flex-shrink: 0;
}

/* Live indicator — pulsing green dot */
.wt-live {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: wt-pulse 2.5s ease-in-out infinite;
}

/* ── Skeleton loading placeholders ── */
.wynthor-ticker-skeleton {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    height: 46px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.wynthor-ticker-skeleton span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    height: 9px;
    animation: wt-skeleton-pulse 1.6s ease-in-out infinite;
}

/* ── Keyframes ── */
@keyframes wt-skeleton-pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes wt-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.75);
    }
}

@keyframes wynthor-ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Banner */
.bannerHome .text-box,
.bannerHome .banner-layers,
.bannerHome .col-inner,
.bannerHome .container {
    padding-left: 32px !important;
    padding-right: 32px !important;
}

.bannerHome .titleBanner,
.bannerHome .titleBanner p,
.bannerHome .titleBanner h1 {
    color: #FCFAF6 !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 92px;
    font-weight: 500;
    line-height: 90.16px;
    letter-spacing: -2.3px;
}

.bannerHome p {
    margin: 0 0 32px 0 !important;
}

.bannerHome .subtitleBanner p {
    font-size: 18px;
    width: 665px;
}

.bannerHome .titleBanner span,
.bannerHome .titleBanner p span,
.bannerHome .titleBanner h1 span {
    background: linear-gradient(90deg, #F3D392 0%, #C7943C 80%, #C7943C 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 92px;
    font-weight: 500;
    line-height: 90.16px !important;
    letter-spacing: -2.3px !important;
}

.bannerHome .subTitleBanner {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.625 !important;
    color: #fcfbf8 !important;
    max-width: 672px !important;
    margin: 0 0 48px !important;
}


/* ── About Section ───────────────────────────────────────────────────────── */

.wynthor-about-heading p {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.48px;
    color: #0b121a;
    margin: 0 0 24px;
}

.wynthor-about-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.625;
    color: #5d646c;
    margin: 0;
}

/* ── Wynthor Pillars ────────────────────────────── */
.wynthor-pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.wynthor-pillar {
    border-left: 4px solid #dcdcdc;
    padding: 20px 32px 20px 36px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 16px;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.wynthor-pillar.is-featured,
.wynthor-pillar:hover {
    border-left-color: #092244 !important;
}

.wynthor-pillar-num {
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    color: #223146;
    letter-spacing: -0.24px;
    flex-shrink: 0;
}

.wynthor-pillar-body {
    display: flex;
    align-items: flex-start;
    flex: 1;
    gap: 32px;
}

.wynthor-pillar-title {
    display: block;
    visibility: visible;
    opacity: 1;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    color: #092244;
    letter-spacing: -0.18px;
    width: 220px;
    min-width: 220px;
    flex-shrink: 0;
}

.wynthor-pillar-desc {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 26px !important;
    color: #5d646c !important;
    margin: 0 !important;
    flex: 1 !important;
}

/* ── Services Section ────────────────────────────────────────────────────── */
.wynthor-services-label {
    color: #C9A84C;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wynthor-services-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 16777200px;
    background: #C9A84C;
}

.wynthor-services-label p,
.wynthor-services-heading p,
.wynthor-services p {
    margin-bottom: 0;
}

.wynthor-services-heading {
    font-size: 46px;
    font-weight: 600;
    line-height: 53px;
    margin-top: 15px;
}

.wynthor-service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 30px;
}

.wynthor-service-item:last-child {
    border-bottom: none !important;
}

.wynthor-service-item-title {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.wynthor-service-item-desc {
    color: #8A95A8;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.wynthor-service-item-link {
    color: #C9A84C !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 20px !important;
}

.wynthor-service-item-link:hover {
    opacity: 0.75 !important;
    color: #c9a84c !important;
    text-decoration: none !important;
}


/* ── Products Section ────────────────────────────────────────────────────── */

.wynthor-products-grid,
.wynthor-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 24px;
}

@media (max-width: 849px) {

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

@media (max-width: 549px) {

    .wynthor-products-grid,
    .wynthor-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .wynthor-product-card {
        height: 230px !important;
        padding: 14px !important;
        border-radius: 12px !important;
    }

    .wynthor-product-card-num {
        font-size: 40px !important;
    }

    .wynthor-product-card-title {
        font-size: 15px !important;
        line-height: 20px !important;
    }
}

.wynthor-product-card {
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wynthor-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}


.wynthor-product-card-content {
    position: relative;
    z-index: 2;
}

.wynthor-product-card-num {
    position: relative;
    z-index: 2;
    font-size: 64px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    text-align: right;
}

.wynthor-product-tag {
    font-size: 12px;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 16px;
    margin-bottom: 8px;
}

.wynthor-product-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 28px;
    margin: 0 0 12px;
}

.wynthor-product-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wynthor-product-list li {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 22px;
    margin-bottom: 4px;
    margin-left: 0 !important;
}

/* Fallback Gradients for Product Cards */
.wynthor-product-card-1 {
    background-color: #1a1714;
    background-image: linear-gradient(135deg, rgba(201, 168, 76, 0.25) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.wynthor-product-card-2 {
    background-color: #0b1726;
    background-image: linear-gradient(135deg, rgba(14, 116, 144, 0.3) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.wynthor-product-card-3 {
    background-color: #121e16;
    background-image: linear-gradient(135deg, rgba(21, 128, 61, 0.25) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.wynthor-product-card-4 {
    background-color: #1a1f26;
    background-image: linear-gradient(135deg, rgba(100, 116, 139, 0.3) 0%, rgba(15, 23, 42, 0.8) 100%);
}

/* ── Insights Section ────────────────────────────────────────────────────── */

.btnViewAll {
    color: #0B121A !important;
    font-size: 12px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 18px !important;
    letter-spacing: 1.4px !important;
    text-decoration-line: underline !important;
    text-decoration-style: solid !important;
    text-decoration-skip-ink: auto !important;
    text-decoration-thickness: auto !important;
    text-underline-offset: auto !important;
    text-underline-position: from-font !important;
    text-transform: uppercase !important;
    margin-bottom: 0 !important;
}

.wynthor-insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.wynthor-insights-slider {
    margin-left: -10px !important;
    margin-right: -10px !important;
    width: calc(100% + 20px) !important;
}

.wynthor-insights-slider:not(.flickity-enabled) {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
}

.wynthor-insights-slider .col {
    width: 25% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.wynthor-insights-slider:not(.flickity-enabled) .col {
    flex: 0 0 25% !important;
    max-width: 25% !important;
}

@media (max-width: 849px) {
    .wynthor-insights-slider .col {
        width: 50% !important;
    }
}

@media (max-width: 549px) {
    .wynthor-insights-slider .col {
        width: 100% !important;
    }
}

.wynthor-insight-card {
    position: relative;
    height: 367px;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
}

.wynthor-insight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.wynthor-insight-card:hover img {
    transform: scale(1.05);
}

.wynthor-insight-caption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.wynthor-insight-caption-title {
    font-size: 14px;
    font-weight: 700;
    color: #0b121a;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wynthor-insight-caption-desc {
    font-size: 12px;
    font-weight: 400;
    color: #555555;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── MXV News Section ────────────────────────────────────────────────────── */

.wynthor-news-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 368px 1fr;
    gap: 238px;
    align-items: start;
}

.wynthor-news-label {
    font-size: 14px;
    font-weight: 400;
    color: #d6a453;
    line-height: 16.5px;
    margin-bottom: 24px;
}

.wynthor-news-heading p {
    color: #0B121A;
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: -0.48px;
    margin-bottom: 24px;
}

.wynthor-news-desc p {
    font-size: 16px;
    font-weight: 400;
    color: #5d646c;
    line-height: 24px;
    margin: 0;
}

.wynthor-news-list {
    display: flex;
    flex-direction: column;
}

.wynthor-news-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.wynthor-news-item:last-child {
    border: none;
}

.wynthor-news-item:hover {
    opacity: 0.7;
    text-decoration: none;
}

.wynthor-news-item-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex: 1;
}

.wynthor-news-item-date {
    color: #9A9A9A;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.2px;
    width: 120px;
    min-width: 120px;
    flex-shrink: 0;
}

.wynthor-news-item-title {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.2px;
}

.wynthor-news-item-arrow {
    font-size: 16px;
    color: #223146;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.wynthor-news-item:hover .wynthor-news-item-arrow {
    opacity: 1;
}


/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

    .bannerHome .titleBanner p,
    .bannerHome .titleBanner h1,
    .bannerHome .titleBanner h1 span,
    .bannerHome .titleBanner p span {
        font-size: 44px !important;
        line-height: 52px !important;
    }

    .bannerHome .subTitleBanner {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }

    .wynthor-about-heading p,
    .wynthor-services-heading p,
    .wynthor-news-heading p,
    .wynthor-contact-heading p,
    .wynthor-services-heading {
        font-size: 34px !important;
        line-height: 42px !important;
    }

    .wynthor-about-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .wynthor-news-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .wynthor-pillar {
        padding: 12px 18px;
    }

    .wynthor-pillar-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {

    .bannerHome .text-box,
    .bannerHome .banner-layers,
    .bannerHome .col-inner,
    .bannerHome .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .bannerHome .titleBanner p,
    .bannerHome .titleBanner h1,
    .bannerHome .titleBanner h1 span,
    .bannerHome .titleBanner p span {
        font-size: 35px !important;
        line-height: 35px !important;
    }

    .bannerHome p {
        margin-bottom: 15px !important;
    }

    .bannerHome .subtitleBanner p {
        font-size: 15px !important;
        width: 100% !important;
    }

    blockquote,
    dl,
    figure,
    form,
    ol,
    p,
    pre,
    ul {
        margin-bottom: 0.5em !important;
    }

    .wynthor-about-heading p,
    .wynthor-services-heading p,
    .wynthor-news-heading p,
    .wynthor-contact-heading p {
        font-size: 25px !important;
        line-height: 30px !important;
    }

    .sm-justify p {
        text-align: justify;
    }

    .wynthor-pillar-title {
        font-size: 18px;
    }

    .wynthor-pillar {
        padding: 5px 15px;
        gap: 15px;
        border-left: 3px solid #dcdcdc;
        margin-bottom: 5px;
    }

    .wynthor-pillar-body {
        flex-direction: column;
        gap: 5px;
    }

    .wynthor-pillar-title {
        width: 100%;
        font-weight: 600;
        min-width: 0;
    }

    .wynthor-pillar-num {
        font-size: 18px;
        line-height: 30px;
    }

    .wynthor-services-heading {
        margin-top: 5px;
    }

    .wynthor-service-item .col.text-right,
    .wynthor-service-item .align-right {
        text-align: left !important;
    }

    .wynthor-service-item {
        margin-top: 15px !important;
        padding-bottom: 12px !important;
    }

    .wynthor-service-item .col {
        padding-bottom: 4px !important;
        margin-bottom: 0 !important;
    }

    .wynthor-service-item .col-inner {
        padding: 0 !important;
    }

    .wynthor-service-item-title {
        margin-bottom: 4px !important;
    }

    .wynthor-service-item-desc {
        margin-bottom: 6px !important;
    }

    .wynthor-service-item-link {
        margin-top: 2px !important;
        margin-bottom: 4px !important;
        padding-left: 0 !important;
    }

    .wynthor-products-grid,
    .wynthor-product-grid {
        margin-top: 0;
    }

    .wynthor-product-title {
        font-size: 18px;
        line-height: 18px;
    }

    .wynthor-product-tag {
        font-size: 10px;
        line-height: 10px;
    }

    .wynthor-product-list li {
        margin-bottom: 0px;
        font-size: 12px;
    }

    .small-text-left .col-inner {
        text-align: left;
    }

    .wynthor-news-item-date {
        width: 85px;
        min-width: 85px;
    }

    .wynthor-news-item-inner {
        gap: 15px;
    }

    .wynthor-news-item-title {
        font-size: 13px;
        line-height: 20px;
    }

    .wynthor-news-item {
        padding: 10px 0;
    }
}