/**
 * Anasayfa (Figma 02 - MainPage)
 * Desktop-first, ortak newsletter global.css'te
 */


/* ========================================
   HERO
   ======================================== */

.home-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    margin-top: calc(var(--page-gutter) * -1);
    margin-left: calc(var(--page-gutter) * -1);
    width: calc(100% + (var(--page-gutter) * 2));
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    background: #000000;
    z-index: 0;
}

.home-hero__green {
    position: absolute;
    inset: 0;
    background: url('../images/green-bg.png') top center / auto no-repeat;
    z-index: 1;
}

.home-hero__smoke {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
    opacity: 0.3;
}

.home-hero__frame {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    pointer-events: none;
    z-index: 3;
}

.home-hero__frame-col {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.home-hero__frame-col:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}


/* Kolonlar — frame grid ile birebir örtüşür */

.home-hero__cols {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    z-index: 4;
}

.home-hero__col {
    position: relative;
}


/* Sol kolon: içerik sol-alt köşeye */

.home-hero__left {
    position: absolute;
    bottom: 48px;
    left: 40px;
    right: 40px;
}


/* Orta kolon */

.home-hero__center {
    position: absolute;
    inset: 0;
}

.home-hero__tab {
    position: absolute;
    left: 0;
    right: 0;
    height: 33.333%;
    cursor: pointer;
    z-index: 2;
    bottom: 66.666%;
}

.home-hero__tab:nth-child(2) {
    bottom: 33.333%;
}

.home-hero__tab:nth-child(3) {
    bottom: 0;
}

.home-hero__tab:nth-child(4) {
    bottom: 0;
}

.home-hero__pervane {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 80%;
    width: auto;
    pointer-events: none;
    z-index: 0;
}

.home-hero__circle-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
}


/* Sağ kolon: içerik dikey ortaya */

.home-hero__col--right {
    display: flex;
    align-items: center;
}

.home-hero__right {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 40px;
}

.home-hero__label {
    display: block;
    font-family: 'Mont', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.home-hero__title-switcher {
    position: relative;
    height: 160px;
    margin: 0 0 32px 0;
}

.home-hero__title {
    font-family: 'Mont', sans-serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -7.2px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.home-hero__title--active {
    opacity: 1;
}

.home-hero__desc {
    font-family: 'Mont', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0 0 48px 0;
    max-width: 450px;
}

.home-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    height: 70px;
    padding: 0 48px;
    background: var(--color-primary);
    border-radius: 40px;
    font-family: 'Mont', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: background 0.2s ease;
}

.home-hero__cta:hover {
    background: var(--color-primary-hover);
}

.home-hero__cta-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-hero__cta-start,
.home-hero__cta-end {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.home-hero__cta-bullet {
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: #FFFFFF;
}

.home-hero__cta-line {
    height: 1px;
    background: currentColor;
    border-radius: 999px;
    transition: width 0.28s ease, opacity 0.28s ease;
}

.home-hero__cta-line--start {
    width: 0;
    opacity: 0;
}

.home-hero__cta-line--end {
    width: 40px;
    opacity: 1;
}

.home-hero__cta-end .home-hero__cta-bullet {
    margin-left: -1px;
}

.home-hero__cta:hover .home-hero__cta-line--start {
    width: 40px;
    opacity: 1;
}

.home-hero__cta:hover .home-hero__cta-line--end {
    width: 0;
    opacity: 0;
}

.home-hero__center img {
    bottom: 0;
    object-fit: contain;
}

.home-hero__right {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 40px 48px;
}

.home-hero__panel {
    display: none;
    flex-direction: column;
    align-items: flex-start;
}

.home-hero__panel--active {
    display: flex;
}

.home-hero__support {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-hero__support-icon {
    display: block;
    flex-shrink: 0;
    margin-bottom: 24px;
}

.home-hero__support-title {
    font-family: 'Mont', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.home-hero__support-desc {
    font-family: 'Mont', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}


/* ========================================
   ABOUT US
   ======================================== */

.home-about {
    background: var(--surface-dark) url('../images/img-home-about.png') center center / cover no-repeat;
    padding: 0 0 100px;
    margin-left: calc(var(--page-gutter) * -1);
    width: calc(100% + (var(--page-gutter) * 2));
    position: relative;
}

.home-about__line {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 80px;
}

.home-about__grid {
    display: grid;
    grid-template-columns: var(--layout-kicker-col, 190px) 1fr 380px;
    grid-template-rows: auto auto;
    gap: 28px 160px;
}

.home-about__label {
    grid-column: 1;
    grid-row: 1;
    font-family: 'Mont', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 12px;
}

.home-about__content {
    grid-column: 2;
    grid-row: 1;
}

.home-about__quote {
    font-family: 'Mont', sans-serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.23;
    letter-spacing: -0.88px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.home-about__quote--highlight {
    color: #FFFFFF;
}

.home-about__photo-right {
    grid-column: 3;
    grid-row: 1 / 3;
    border-radius: 16px;
    overflow: hidden;
}

.home-about__photo-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-about__photo-left {
    grid-column: 1;
    grid-row: 2;
    border-radius: 16px;
    overflow: hidden;
    max-height: 220px;
}

.home-about__photo-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-about__info {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
}

.home-about__text {
    font-family: 'Mont', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 32px 0;
    max-width: 380px;
}

.home-about__link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Mont', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: #EC852F;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.home-about__link-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-about__link-start,
.home-about__link-end {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.home-about__link-bullet {
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: #EC852F;
}

.home-about__link-line {
    height: 1px;
    background: currentColor;
    border-radius: 999px;
    transition: width 0.28s ease, opacity 0.28s ease;
}

.home-about__link-line--start {
    width: 0;
    opacity: 0;
}

.home-about__link-line--end {
    width: 40px;
    opacity: 1;
}

.home-about__link-end .home-about__link-bullet {
    margin-left: -1px;
}

.home-about__link:hover .home-about__link-line--start {
    width: 40px;
    opacity: 1;
}

.home-about__link:hover .home-about__link-line--end {
    width: 0;
    opacity: 0;
}


/* ========================================
   ECOSYSTEM
   ======================================== */

.home-ecosystem-cover {
    margin-left: -20px;
    width: calc(100% + 40px);
    line-height: 0;
}

.home-ecosystem-cover img {
    width: 100%;
    display: block;
}

.home-ecosystem {
    background: var(--surface-dark);
    padding: 0 0 100px;
    margin-left: calc(var(--page-gutter) * -1);
    width: calc(100% + (var(--page-gutter) * 2));
}

.home-ecosystem__line {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 80px;
}

.home-ecosystem__container {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.home-ecosystem__left {
    flex: 2;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-right: 40px;
}

.home-ecosystem__marquee {
    display: flex;
    white-space: nowrap;
    margin-bottom: 40px;
    overflow: hidden;
}

.home-ecosystem__marquee span {
    font-family: 'Mont', sans-serif;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -1.92px;
    color: rgba(255, 255, 255, 0.15);
    padding-right: 40px;
    flex-shrink: 0;
}

.home-ecosystem__marquee {
    animation: ecosystem-marquee 25s linear infinite;
}

@keyframes ecosystem-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.home-ecosystem__num {
    display: block;
    font-family: 'Mont', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32px;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.home-ecosystem__label {
    font-family: 'Mont', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

.home-ecosystem__text {
    font-family: 'Mont', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 480px;
}

.home-ecosystem__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 70px;
    padding: 0 48px;
    background: var(--color-primary);
    border-radius: 40px;
    font-family: 'Mont', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    transition: background 0.2s ease;
    align-self: flex-start;
}

.home-ecosystem__cta:hover {
    background: var(--color-primary-hover);
}

.home-ecosystem__cta-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFFFFF;
}

.home-ecosystem__product {
    margin-top: 48px;
}

.home-ecosystem__product img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    border-radius: 12px;
}

.home-ecosystem__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 100px 80px 40px;
}

.home-ecosystem__num--right,
.home-ecosystem__label--right {
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.5);
}

.home-ecosystem__label--right {
    top: 28px;
}

.home-ecosystem__product--right {
    margin-top: 0;
    width: 100%;
    max-width: 280px;
}

.home-ecosystem__product--right img {
    max-width: 100%;
}

.home-ecosystem__vertical {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: 'Mont', sans-serif;
    font-size: 80px;
    font-weight: 600;
    letter-spacing: -4.8px;
    color: rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

.home-ecosystem__add {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: transparent;
    color: #FFFFFF;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.home-ecosystem__add:hover {
    background: rgba(255, 255, 255, 0.08);
}


/* ========================================
   WHY US
   ======================================== */

.home-why {
    background: url('../images/bg-trusted-img.png') center center / cover no-repeat;
    padding: 100px 0 120px;
}

.home-why__heading {
    display: grid;
    grid-template-columns: var(--layout-kicker-col, 190px) 1fr;
    gap: var(--layout-kicker-gap, 28px);
    align-items: start;
    margin-bottom: 60px;
}

.home-why__label {
    font-family: 'Mont', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: rgba(31, 31, 31, 0.5);
    padding-top: 16px;
}

.home-why__title {
    font-family: 'Mont', sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -2.56px;
    color: rgba(31, 31, 31, 0.5);
    margin: 0;
    max-width: 880px;
}

.home-why__title--dark {
    color: var(--color-text);
}

.home-why__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.home-why__card {
    border-radius: 20px;
    padding: 48px 32px;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.home-why__card--teal {
    background-color: var(--color-primary);
    background-image: url('../images/anasayfa/left-box-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFFFFF;
}

.home-why__card--dark {
    background-color: #003A44;
    background-image: url('../images/anasayfa/mid-box-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFFFFF;
}

.home-why__card--orange {
    background-color: #EC852F;
    background-image: url('../images/anasayfa/right-box-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFFFFF;
}

.home-why__card-num {
    font-family: 'Mont', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32px;
    margin: 0;
}

.home-why__card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.home-why__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
}

.home-why__card-icon svg {
    display: block;
    width: auto;
    height: 42px;
    max-width: 63px;
}

.home-why__card-bottom {
    margin-top: auto;
}

.home-why__card-title {
    font-family: 'Mont', sans-serif;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.72px;
    margin: 0 0 24px 0;
}

.home-why__card-desc {
    font-family: 'Mont', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    text-transform: uppercase;
    line-height: 1.6;
    margin: 0;
    max-width: 270px;
}

.home-why__marquee {
    margin: 0 -90px 60px;
    width: calc(100% + 180px);
    overflow: hidden;
}

.home-why__marquee-line {
    height: 1px;
    background: rgba(31, 31, 31, 0.12);
}

.home-why__marquee-row {
    display: flex;
    white-space: nowrap;
    padding: 70px 0;
    will-change: transform;
}

.home-why__marquee-row span {
    font-family: 'Mont', sans-serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 80px;
    letter-spacing: -7.2px;
    padding-right: 80px;
    flex-shrink: 0;
}

.home-why__marquee-row--dark span {
    color: #1F1F1F;
}

.home-why__marquee-row--teal span {
    color: #0F798C;
}

.home-why__showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-why__showcase-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-why__showcase-text {
    background: rgba(31, 31, 31, 0.03);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.home-why__showcase-text p {
    font-family: 'Mont', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12px;
    text-transform: uppercase;
    color: var(--color-text);
    line-height: 1.8;
    margin: 0 0 32px 0;
}

.home-why__showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Mont', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: #EC852F;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.home-why__showcase-link-bullet {
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: #EC852F;
}

.home-why__showcase-link-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-why__showcase-link-start,
.home-why__showcase-link-end {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.home-why__showcase-link-line {
    height: 1px;
    background: currentColor;
    border-radius: 999px;
    transition: width 0.28s ease, opacity 0.28s ease;
}

.home-why__showcase-link-line--start {
    width: 0;
    opacity: 0;
}

.home-why__showcase-link-line--end {
    width: 40px;
    opacity: 1;
}

.home-why__showcase-link-end .home-why__showcase-link-bullet {
    margin-left: -1px;
}

.home-why__showcase-link:hover .home-why__showcase-link-line--start {
    width: 40px;
    opacity: 1;
}

.home-why__showcase-link:hover .home-why__showcase-link-line--end {
    width: 0;
    opacity: 0;
}

.home-why__showcase-stat {
    border-radius: 20px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-why__showcase-stat--teal {
    background: var(--color-primary);
    color: #FFFFFF;
}

.home-why__showcase-stat--orange {
    background: #EC852F;
    color: #FFFFFF;
}

.home-why__showcase-stat-value {
    display: block;
    font-family: 'Mont', sans-serif;
    font-size: 96px;
    font-weight: 700;
    letter-spacing: -3.84px;
    line-height: 1;
    margin-bottom: 12px;
}

.home-why__showcase-stat-label {
    font-family: 'Mont', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.56px;
    line-height: 1.28;
}

.home-why__showcase-photo {
    border-radius: 20px;
    overflow: hidden;
}

.home-why__showcase-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-why__showcase-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 20px;
}

.home-why__showcase-logo {
    background: rgba(31, 31, 31, 0.03);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.home-why__showcase-logo svg {
    max-width: 160px;
    height: auto;
}

.home-why__showcase-logo img {
    max-width: 160px;
    max-height: 50px;
    object-fit: contain;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    text-transform: uppercase;
    color: var(--color-text);
}


/* ========================================
   PRODUCT SPOTLIGHT
   ======================================== */

.home-spotlight {
    background: #EEF2F2;
    padding: 40px 0 120px;
    position: relative;
    overflow: hidden;
    margin-left: -40px;
    width: calc(100% + 80px);
}

.home-spotlight .container {
    position: relative;
    width: calc(100% - 80px);
    max-width: 1840px;
}

.home-spotlight__marquee {
    display: flex;
    white-space: nowrap;
    padding: 40px 0;
    overflow: hidden;
    margin-left: calc(-1 * var(--page-gutter, 20px));
    width: calc(100% + (var(--page-gutter, 20px) * 2));
}

.home-spotlight__marquee span {
    font-family: 'Mont', sans-serif;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -2.16px;
    color: rgba(31, 31, 31, 0.08);
    padding-right: 48px;
    flex-shrink: 0;
}

.home-spotlight__marquee {
    animation: spotlight-marquee 30s linear infinite;
}

@keyframes spotlight-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.home-spotlight__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: stretch;
    position: relative;
    overflow: visible;
    min-height: 620px;
}

.home-spotlight__marquee-band {
    position: absolute;
    top: calc(50% + 42px);
    left: 50%;
    width: calc(100vw + 120px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.home-spotlight__marquee-band--solid {
    z-index: 3;
}

.home-spotlight__marquee-band--stroke {
    z-index: 5;
}

.home-spotlight__marquee-inline {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    white-space: nowrap;
    overflow: visible;
    pointer-events: none;
    animation: spotlight-marquee-inline 25s linear infinite;
    width: max-content;
    min-width: 100%;
}

.home-spotlight__marquee-inline span {
    font-family: 'Mont', sans-serif;
    font-size: 120px;
    font-style: normal;
    font-weight: 800;
    line-height: 120px;
    letter-spacing: -7.2px;
    text-transform: uppercase;
    padding-right: 40px;
    flex-shrink: 0;
}

.home-spotlight__marquee-inline--solid {
    z-index: 1;
}

.home-spotlight__marquee-inline--solid span {
    color: #1F1F1F;
}

.home-spotlight__marquee-inline--stroke {
    z-index: 1;
}

.home-spotlight__marquee-inline--stroke span {
    color: transparent;
    -webkit-text-stroke: 1.5px #1F1F1F;
    text-stroke: 1.5px #1F1F1F;
}

@keyframes spotlight-marquee-inline {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

.home-spotlight__left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    padding: 48px 0 0;
    position: relative;
    z-index: 1;
}

.home-spotlight__accent {
    display: none;
}

.home-spotlight__label {
    display: block;
    font-family: 'Mont', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: rgba(31, 31, 31, 0.5);
    margin-bottom: 20px;
}

.home-spotlight__title {
    font-family: 'Mont', sans-serif;
    font-size: 68px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -3.4px;
    color: var(--color-text);
    margin: 0 0 28px 0;
    max-width: 640px;
}

.home-spotlight__title--teal {
    color: var(--color-primary);
}

.home-spotlight__specs {
    font-family: 'Mont', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.15px;
    text-transform: uppercase;
    color: var(--color-text);
    line-height: 1.55;
    margin: 0 0 40px 0;
    max-width: 760px;
}

.home-spotlight__link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Mont', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: #EC852F;
    text-decoration: none;
    transition: opacity 0.2s ease;
    margin-top: auto;
    position: relative;
    z-index: 4;
}

.home-spotlight__link-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-spotlight__link-start,
.home-spotlight__link-end {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.home-spotlight__link-bullet {
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: #EC852F;
}

.home-spotlight__link-line {
    height: 1px;
    background: currentColor;
    border-radius: 999px;
    transition: width 0.28s ease, opacity 0.28s ease;
}

.home-spotlight__link-line--start {
    width: 0;
    opacity: 0;
}

.home-spotlight__link-line--end {
    width: 40px;
    opacity: 1;
}

.home-spotlight__link-end .home-spotlight__link-bullet {
    margin-left: -1px;
}

.home-spotlight__link:hover .home-spotlight__link-line--start {
    width: 40px;
    opacity: 1;
}

.home-spotlight__link:hover .home-spotlight__link-line--end {
    width: 0;
    opacity: 0;
}

.home-spotlight__center {
    display: flex;
    align-items: stretch;
    min-height: 0;
    position: relative;
    z-index: 4;
}

.home-spotlight__product {
    width: 100%;
    min-height: 544px;
    height: 100%;
    background: #D8EAF1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
}

.home-spotlight__product img {
    max-width: 100%;
    max-height: 440px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.home-spotlight__right {
    border-radius: 20px;
    overflow: hidden;
    min-height: 544px;
    position: relative;
    z-index: 1;
}

.home-spotlight__right img {
    width: 100%;
    height: 100%;
    min-height: 544px;
    object-fit: cover;
    display: block;
}


/* ========================================
   NEWS / BLOG
   ======================================== */

.home-news {
    background: var(--surface-dark);
    padding: 100px 0 120px;
}

.home-news__header {
    display: grid;
    grid-template-columns: var(--layout-kicker-col) minmax(0, 1fr) minmax(280px, 380px);
    gap: 28px;
    align-items: start;
    margin-bottom: 60px;
}

.home-news__label {
    display: block;
    width: var(--layout-kicker-col);
    max-width: 100%;
    font-family: 'Mont', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 12px;
    white-space: nowrap;
}

.home-news__title {
    font-family: 'Mont', sans-serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -2.24px;
    color: #FFFFFF;
    margin: 0;
    max-width: 520px;
}

.home-news__header-right {
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
}

.home-news__desc {
    font-family: 'Mont', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

.home-news__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 60px;
    padding: 0 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    font-family: 'Mont', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: background 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
}

.home-news__btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.home-news__btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-news__btn-start,
.home-news__btn-end {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.home-news__btn-bullet {
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: #FFFFFF;
}

.home-news__btn-line {
    height: 1px;
    background: currentColor;
    border-radius: 999px;
    transition: width 0.28s ease, opacity 0.28s ease;
}

.home-news__btn-line--start {
    width: 0;
    opacity: 0;
}

.home-news__btn-line--end {
    width: 40px;
    opacity: 1;
}

.home-news__btn-end .home-news__btn-bullet {
    margin-left: -1px;
}

.home-news__btn:hover .home-news__btn-line--start {
    width: 40px;
    opacity: 1;
}

.home-news__btn:hover .home-news__btn-line--end {
    width: 0;
    opacity: 0;
}

.home-news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-news__card {
    background: #003A44;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease;
}

.home-news__card:hover {
    background: var(--color-primary);
}

.home-news__card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.home-news__card-date {
    font-family: 'Mont', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.13px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.home-news__card-date span {
    color: rgba(255, 255, 255, 0.3);
}

.home-news__card-tag {
    font-family: 'Mont', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.13px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.home-news__card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
}

.home-news__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-news__card-title {
    font-family: 'Mont', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.56px;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.home-news__card-excerpt {
    font-family: 'Mont', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0 0 28px 0;
    flex: 1;
}

.home-news__card-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Mont', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: #EC852F;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.home-news__card-link-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-news__card-link-start,
.home-news__card-link-end {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.home-news__card-link-start {
    justify-content: flex-start;
    gap: 0;
}

.home-news__card-link-end {
    justify-content: flex-end;
    gap: 0;
}

.home-news__card-link-bullet {
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: #EC852F;
}

.home-news__card-link-line {
    height: 1px;
    background: currentColor;
    border-radius: 999px;
    transition: width 0.28s ease, opacity 0.28s ease;
}

.home-news__card-link-line--start {
    width: 0;
    opacity: 0;
}

.home-news__card-link-line--end {
    width: 40px;
    opacity: 1;
}

.home-news__card-link-end .home-news__card-link-bullet {
    margin-left: -1px;
}

.home-news__card:hover .home-news__card-link-line--start,
.home-news__card-link:hover .home-news__card-link-line--start {
    width: 40px;
    opacity: 1;
}

.home-news__card:hover .home-news__card-link-line--end,
.home-news__card-link:hover .home-news__card-link-line--end {
    width: 0;
    opacity: 0;
}
