:root {
    /* Backgrounds */
    --bg-primary: #0D0D0D;
    --yellow: #FFCC0D;

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;

    /* Layout */
    --max-width: 1280px;
    --side-padding: 20px;
}

/*  Global Styles  */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
}

body {
    font-family: Inter, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
}

/*  Site Header  */

.header-main {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: sticky;
    top: 0;
    z-index: 998;
    height: 80px;
    padding: 40px 20px;
}

.header-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: transparent;
    transition: background 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.header-main.scrolled::before {
    background: linear-gradient(180deg, #0d0d0d 60%, rgba(13, 13, 13, 0) 100%);
}

/*  Main Content Container  */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

main {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

/*  Logo  */

.header-main .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.header-main .logo:hover {
    opacity: 0.8;
}

.header-main .logo img {
    display: block;
    height: auto;
    width: 160px;
    filter: brightness(0) invert(1);
}


/*  Main Navigation - */

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav > ul {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 10px 20px;
    border-radius: 100px;
    background: linear-gradient(-8deg, #000000 50%, #292929 100%);
}

.main-nav > ul > li {
    position: relative;
}

/* Top-level links */
.main-nav > ul > li > a {
    text-decoration: none;
    color: #999;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2px;
    display: inline-block;
    padding: 7px 18px;
    position: relative;
    transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li:hover > a {
    color: #fff;
}

.main-nav > ul > li > a:hover::after,
.main-nav > ul > li:hover > a::after {
    transform: scaleX(1);
}

.main-nav .current-menu-item > a {
    color: #fff;
}

.main-nav .current-menu-item > a::after {
    transform: scaleX(1);
}

/* Submenu dropdown */

/* Invisible bridge fills the gap between pill and dropdown so li:hover isn't lost */
.main-nav > ul > li.menu-item-has-children::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 16px;
    z-index: 998;
}

.main-nav .sub-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 190px;
    list-style: none;
    padding: 8px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: linear-gradient(-8deg, #111111 50%, #252525 100%);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55),
                rgba(134, 134, 134, 0.45) 0.5px 0.5px 0px 0px inset;
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.25s;
    z-index: 999;
}

.main-nav > ul > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.main-nav .sub-menu li {
    position: relative;
}

.main-nav .sub-menu a {
    text-decoration: none;
    display: block;
    padding: 10px 16px;
    border-radius: 10px;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #999;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

.main-nav .sub-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

/*  CTA Button  */

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(to right, var(--yellow) 50%, #ffffff 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: #0D0D0D;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background-position 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.header-cta-arrow,
.syt-hero__btn-primary > span,
.site-footer__newsletter-btn > span,
.syt-cta__btn > span,
.syt-team__btn > span {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    display: inline-block;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-4px);
}

.header-cta:hover .header-cta-arrow,
.syt-hero__btn-primary:hover > span,
.site-footer__newsletter-btn:hover > span,
.syt-cta__btn:hover > span,
.syt-team__btn:hover > span {
    opacity: 1;
    max-width: 26px;
    transform: translateX(0);
}


.header-cta:hover {
    background-position: left center;
    box-shadow: 0 0 18px rgba(255, 204, 13, 0.35), rgba(134, 134, 134, 0.4) 0.5px 0.5px 0px 0px inset;
}

/* ─── Section Label (reusable pill badge) ────────────────────────────────── */

.syt-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(-8deg, #111 50%, #232323 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    box-shadow: rgba(134, 134, 134, 0.2) 0.5px 0.5px 0px 0px inset;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}

.syt-label__icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

/* ─── Border gradient line ────────────────────────────────────────────────── */

.border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #000 0%, #6e6e6e 50.5631%, #000 100%);
    z-index: 2;
    flex: none;
    overflow: hidden;
}

/* ─── Hero Section ────────────────────────────────────────────────────────── */

.syt-hero {
    position: relative;
    max-width: 1280px;
    margin: -80px auto 0;
    padding: calc(80px + 48px) 40px 0;
    background: transparent;
}

.syt-hero__video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.syt-hero__video-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: rgba(13, 13, 13, 0.65);
    z-index: 1;
    pointer-events: none;
}

.syt-hero > *:not(.syt-hero__video):not(.syt-hero__video-overlay) {
    position: relative;
    z-index: 2;
}

/* Top bar */
.syt-hero__topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6B6A63;
    border-bottom: 1px solid rgba(17, 17, 16, 0.12);
    padding-bottom: 16px;
}

/* Heading */
.syt-hero__heading {
    font-family: Inter, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.25;
    letter-spacing: -0.015em;
    font-size: 60px;
    color: #ffffff;
}

/* Rotating word */
.syt-hero__rot-wrap {
    display: inline-block;
    background: #FFC629;
    padding: 0 0.18em 0.04em;
    transform: rotate(-1.2deg);
    min-width: 2em;
    overflow: hidden;
}

.syt-hero__rot-word {
    display: inline-block;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--bg-primary);
    font-style: italic;
}

.syt-hero__rot-word.syt-rot--out {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
}

/* Body grid */
.syt-hero__body {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    padding: 80px 0;
}

.syt-hero__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.syt-hero__right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.syt-hero__desc {
    font-size: 19px;
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 420px;
    margin: 0 0 28px;
    font-weight: 500;
}

.syt-hero__ctas {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.syt-hero__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(to right, var(--yellow) 50%, #ffffff 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: #0D0D0D;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background-position 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.syt-hero__btn-primary:hover {
    background-position: left center;
    box-shadow: 0 0 18px rgba(255, 204, 13, 0.35), rgba(134, 134, 134, 0.4) 0.5px 0.5px 0px 0px inset;
}

.syt-hero__btn-link {
    font-weight: 700;
    font-size: 15px;
    color: var(--yellow);
    text-decoration: none;
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.syt-hero__btn-link:hover {
    color: #9A7B00;
    border-color: #FFC629;
}

/* Showreel */
.syt-hero__reel {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: repeating-linear-gradient(125deg, #1a1a18, #1a1a18 16px, #141413 16px, #141413 32px);
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.syt-hero__reel:hover {
    opacity: 0.96;
}

.syt-hero__reel-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.syt-hero__reel-play > span {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #FFC629;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #111110;
    padding-left: 5px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease;
}

.syt-hero__reel:hover .syt-hero__reel-play > span {
    transform: scale(1.08);
}

.syt-hero__reel-label {
    position: absolute;
    left: 18px;
    bottom: 16px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #F3F0E9;
}

.syt-hero__reel-file {
    position: absolute;
    right: 18px;
    top: 16px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(243, 240, 233, 0.6);
}

/* Marquee */
.syt-hero__marquee-wrap {
    margin-top: 54px;
    overflow: hidden;
    border-top: 1px solid rgba(17, 17, 16, 0.12);
    border-bottom: 1px solid rgba(17, 17, 16, 0.12);
    padding: 14px 0;
}

.syt-hero__marquee-track {
    display: flex;
    width: max-content;
    animation: sytMarq 26s linear infinite;
    will-change: transform;
}

.syt-hero__marquee-row {
    display: flex;
    align-items: center;
    gap: 26px;
    padding-right: 26px;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3A3A36;
    white-space: nowrap;
}

.syt-hero__dot {
    color: #FFB300;
}

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

/* ─── Platforms Bar ──────────────────────────────────────────────────────── */

.syt-platforms {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: #0C0C0D;
}

.syt-platforms__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 26px 32px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.syt-platforms__label {
    flex: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.2;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 48px;
}

.syt-platforms__label span {
    color: #FFC629;
}

.syt-platforms__icons {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.syt-platforms__icon {
    color: #8E8E94;
    display: flex;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s ease;
}

.syt-platforms__icon:hover { transform: scale(1.2); }

.syt-platforms__icon--youtube:hover,
.syt-platforms__icon--instagram:hover,
.syt-platforms__icon--facebook:hover,
.syt-platforms__icon--linkedin:hover,
.syt-platforms__icon--x:hover          { color: var(--yellow); }

/* ─── Service Pillars ─────────────────────────────────────────────────────── */

.syt-pillars {
    background: #080808;
    padding: 96px 0 110px;
}

.syt-pillars__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
}

.syt-pillars__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.syt-pillars__heading {
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 0.98;
    text-transform: uppercase;
    color: #fff;
    margin: 16px 0 0;
}

.syt-pillars__heading em {
    font-family: 'Saira Condensed', sans-serif;
    font-style: normal;
    color: var(--yellow);
}

.syt-pillars__desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.45);
    max-width: 380px;
    margin: 0;
}

/* Visual image */
.syt-pillars__visual {
    position: sticky;
    top: 88px;
    z-index: 10;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 64px;
    height: 62vh;
    will-change: transform, opacity;
    transform-origin: center top;
}

.syt-pillars__visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(1);
}

/* Accordion */
.syt-pillars__accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 0;
}

.syt-pillars__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.syt-pillars__item-head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.syt-pillars__item-num {
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 800;
    font-size: 25px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.25s;
    flex-shrink: 0;
    width: 28px;
}

.syt-pillars__item-name {
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(20px, 2.4vw, 30px);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.04em;
    flex: 1;
    transition: color 0.25s;
}

.syt-pillars__item-arrow {
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s;
}

.syt-pillars__item.is-open .syt-pillars__item-num { color: var(--yellow); }
.syt-pillars__item.is-open .syt-pillars__item-name { color: #fff; }
.syt-pillars__item.is-open .syt-pillars__item-arrow {
    transform: rotate(135deg);
    color: var(--yellow);
}

.syt-pillars__item-head:hover .syt-pillars__item-name { color: rgba(255, 255, 255, 0.75); }
.syt-pillars__item-head:hover .syt-pillars__item-arrow { color: rgba(255, 255, 255, 0.5); }

/* Accordion slide */
.syt-pillars__item-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.syt-pillars__item.is-open .syt-pillars__item-body {
    grid-template-rows: 1fr;
}

.syt-pillars__item-body-inner {
    overflow: hidden;
    min-height: 0;
}

/* Unified card */
.syt-pillars__item-card {
    display: grid;
    grid-template-columns: 1.2fr 0.85fr;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.syt-pillars__item-left {
    padding: 36px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.syt-pillars__item-right {
    padding: 36px 40px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.syt-pillars__item-watermark {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(80px, 9vw, 120px);
    line-height: 1;
    color: var(--secondary-text);
    opacity: 0.07;
    position: absolute;
    top: 16px;
    right: 20px;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

.syt-pillars__detail-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.38);
    margin: 0 0 24px;
}

.syt-pillars__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.syt-pillars__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.syt-pillars__features li::before {
    content: '';
    flex: none;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.5;
}

.syt-pillars__accent-tagline {
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.05;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03em;
    margin-bottom: 18px;
    position: relative;
}

.syt-pillars__accent-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    position: relative;
}

.syt-pillars__accent-tags span {
    background: linear-gradient(-8deg, #111 50%, #222 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: rgba(134, 134, 134, 0.15) 0.5px 0.5px 0px 0px inset;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}

/* ─── Services Marquee ────────────────────────────────────────────────────── */

.syt-services-marquee {
    background: #FFC629;
    overflow: hidden;
    padding: 20px 0;
}


.syt-services-marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: sytMarqRev 34s linear infinite;
}

.syt-services-marquee__row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
    color: #111110;
    white-space: nowrap;
    line-height: 1;
}

.syt-services-marquee__dot {
    opacity: 0.5;
}

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


/* Responsive */
@media (max-width: 900px) {
    .syt-hero {
        padding: 32px 20px 0;
    }

    .syt-hero__body {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .syt-hero__topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* ─── Mobile Menu ─────────────────────────────────────────────────────────── */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 0 28px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    flex-shrink: 0;
}

.mobile-menu-header .logo img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.mobile-menu-close:hover {
    opacity: 1;
}

.mobile-menu-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: Inter, sans-serif;
    font-size: 32px;
    font-weight: 500;
    display: block;
    transition: color 0.25s ease;
}

.mobile-nav a:hover,
.mobile-nav .current-menu-item > a {
    color: var(--text-primary);
}

.mobile-menu-cta {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    background: var(--yellow);
    color: #0D0D0D;
    border-radius: 14px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease;
}

.mobile-menu-cta:hover {
    background: #e6b800;
}

.mobile-menu-socials {
    display: flex;
    gap: 16px;
}

.mobile-social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.mobile-social-icon:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

.mobile-contact-link:hover {
    color: var(--text-primary);
}

.mobile-contact-link i {
    font-size: 15px;
    width: 18px;
    text-align: center;
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .header-main {
        padding: 0 20px;
        height: 70px;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* hero */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #0D0D0D;
}

.syt-hero__video {
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 24px;
}

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

.syt-about {
    background: #080808;
    padding: 100px 0 0;
    overflow: hidden;
}

.syt-about__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.syt-about__top {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}

.syt-about__body {
    position: relative;
    text-align: center;
    margin-bottom: 96px;
}

.syt-about__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(480px, 60vw, 860px);
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    opacity: 0.06;
    z-index: 0;
}

.syt-about__watermark img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.syt-about__statement {
    position: relative;
    z-index: 1;
    font-size: clamp(20px, 2.6vw, 36px);
    font-weight: 500;
    line-height: 1.5;
    max-width: 820px;
    margin: 0 auto;
    color: #fff;
    letter-spacing: -0.01em;
}

.syt-about__fade {
    color: rgba(255, 255, 255, 0.25);
}

/* Stats row pinned to the bottom edge */
.syt-about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.syt-about__stat {
    padding: 36px 48px 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.syt-about__stat:last-child {
    border-right: none;
}

.syt-about__stat-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 16px;
}

.syt-about__stat-rule {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.syt-about__stat-num {
    display: block;
    font-family: 'Saira Condensed', sans-serif;
    font-size: clamp(72px, 9vw, 128px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* ─── Stats Section ──────────────────────────────────────────────────────── */

.syt-stats {
    background: #080808;
    padding: 96px 0;
}

.syt-stats__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.syt-stats__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    margin-bottom: 64px;
}

.syt-stats__heading {
    font-family: 'Saira Condensed', sans-serif;
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1;
    margin: 0;
}

.syt-stats__heading em {
    font-family: 'Syne', sans-serif;
    font-style: italic;
    font-weight: 700;
    text-transform: none;
    color: var(--yellow);
}

.syt-stats__sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.38);
    max-width: 500px;
    line-height: 1.65;
    margin: 0;
}

.syt-stats__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.syt-stats__stat {
    padding-right: 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.syt-stats__stat:not(:first-child) {
    padding-left: 48px;
}

.syt-stats__stat:last-child {
    border-right: none;
    padding-right: 0;
}

.syt-stats.in-view .syt-stats__stat:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.syt-stats.in-view .syt-stats__stat:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.syt-stats.in-view .syt-stats__stat:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.syt-stats.in-view .syt-stats__stat:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }

.syt-stats__rule {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
    margin-bottom: 28px;
}

.syt-stats__number {
    display: block;
    font-family: 'Saira Condensed', sans-serif;
    font-size: clamp(52px, 5.5vw, 78px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.syt-stats__number .syt-stats__suffix {
    font-size: 0.45em;
    color: var(--yellow);
    vertical-align: baseline;
    letter-spacing: 0;
    font-weight: 800;
}

.syt-stats__label {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.syt-stats__label-platform {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.syt-stats__label-platform svg {
    opacity: 0.55;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.syt-stats__label-sub {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ─── ADAPTS Section ─────────────────────────────────────────────────────── */

.syt-adapts {
    background: #080808;
    padding: 100px 0;
}

.syt-adapts__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.syt-adapts__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 60px;
}

.syt-adapts__word {
    font-family: 'Saira Condensed', sans-serif;
    font-size: clamp(80px, 11vw, 156px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin: 0;
}

.syt-adapts__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.38);
    max-width: 520px;
    line-height: 1.7;
    margin: 0;
}

.syt-adapts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.syt-adapts__card {
    padding: 40px 40px 44px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.syt-adapts__card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.syt-adapts__letter {
    font-family: 'Saira Condensed', sans-serif;
    font-size: clamp(52px, 5.5vw, 72px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.syt-adapts__num {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.18);
    letter-spacing: 0.08em;
    padding-top: 8px;
    font-variant-numeric: tabular-nums;
}

.syt-adapts__title {
    font-family: 'Saira Condensed', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 0 0 12px;
}

.syt-adapts__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    margin: 0;
}

/* Card hover reveal */
.syt-adapts__card--reveal {
    position: relative;
    overflow: hidden;
}

.syt-adapts__card-default {
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.syt-adapts__card-hover {
    position: absolute;
    inset: 0;
    padding: 20px 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.syt-adapts__card--reveal:hover .syt-adapts__card-default,
.syt-adapts__card--reveal.is-active .syt-adapts__card-default {
    opacity: 0;
    transform: translateY(-8px);
}

.syt-adapts__card--reveal:hover .syt-adapts__card-hover,
.syt-adapts__card--reveal.is-active .syt-adapts__card-hover {
    opacity: 1;
    transform: translateY(0);
}

.syt-adapts__card--reveal {
    cursor: pointer;
    transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                -webkit-backdrop-filter 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                backdrop-filter 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.syt-adapts__card--reveal.is-active {
    background: rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.13);
}

.syt-adapts__hover-eyebrow {
    font-size: 10px;
    font-weight: 600;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 12px;
}

.syt-adapts__hover-heading {
    font-family: 'Saira Condensed', sans-serif;
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin: 0 0 10px;
}

.syt-adapts__hover-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 0;
}

/* ─── Testimonials Section ───────────────────────────────────────────────── */

.syt-testimonials {
    position: relative;
    overflow: hidden;
    background: #080808;
    padding: 100px 20px;
}

.syt-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/others/background-syt.avif');
    background-size: cover;
    background-position: center;
    opacity: 0.50;
    pointer-events: none;
}

.syt-testimonials__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.syt-testimonials__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 420px;
    z-index: 1;
}

.syt-testimonials__heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.syt-testimonials__heading em {
    font-family: Syne, sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(28px, 3vw, 48px);
    color: #fff;
    line-height: 1.1;
}

.syt-testimonials__heading span {
    font-family: 'Saira Condensed', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: clamp(34px, 4.5vw, 68px);
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}

/* item = absolute-positioned wrapper; card = visual glass box inside */
.syt-testimonials__item {
    position: absolute;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.syt-testimonials__item.syt-testimonials__card--1 { top: 40px;  left: 0;  transform: translateX(-60px); }
.syt-testimonials__item.syt-testimonials__card--2 { top: 110px; right: 0; transform: translateX(60px); }
.syt-testimonials__item.syt-testimonials__card--3 { bottom: 60px; left: 0;  transform: translateX(-60px); }
.syt-testimonials__item.syt-testimonials__card--4 { bottom: 30px; right: 0; transform: translateX(60px); }

.syt-testimonials__card {
    background: linear-gradient(-8deg, rgba(15,15,15,0.92) 50%, rgba(28,28,28,0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 24px;
    box-shadow: rgba(134, 134, 134, 0.1) 0.5px 0.5px 0px 0px inset,
                0 24px 60px rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 0;
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.syt-testimonials__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    transition: -webkit-backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: -1;
}

.syt-testimonials.in-view .syt-testimonials__card:hover {
    transform: scale(1.04);
    background: linear-gradient(-8deg, rgba(20,20,20,0.97) 50%, rgba(34,34,34,0.97) 100%);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: rgba(134, 134, 134, 0.15) 0.5px 0.5px 0px 0px inset,
                0 32px 80px rgba(0, 0, 0, 0.75);
}

.syt-testimonials.in-view .syt-testimonials__card:hover::before {
    -webkit-backdrop-filter: blur(28px);
    backdrop-filter: blur(28px);
}

.syt-testimonials__center {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.syt-testimonials.in-view .syt-testimonials__center {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.syt-testimonials.in-view .syt-testimonials__item {
    opacity: 1;
    transform: translate(0);
}

.syt-testimonials.in-view .syt-testimonials__card--1 { transition-delay: 0.2s; }
.syt-testimonials.in-view .syt-testimonials__card--2 { transition-delay: 0.45s; }
.syt-testimonials.in-view .syt-testimonials__card--3 { transition-delay: 0.7s; }
.syt-testimonials.in-view .syt-testimonials__card--4 { transition-delay: 0.95s; }

.syt-testimonials__quote {
    font-size: 13.5px;
    color: #bbb;
    line-height: 1.75;
    font-style: normal;
}

.syt-testimonials__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.syt-testimonials__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2a2a, #444);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #ccc;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.syt-testimonials__author-info strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.syt-testimonials__author-info span {
    font-size: 12px;
    color: #555;
}

/* ─── Team Section ────────────────────────────────────────────────────────── */

.syt-team {
    position: relative;
    background: #080808;
    padding: 100px 0;
    overflow: hidden;
}

.syt-team::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/others/backgorund-syt2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    pointer-events: none;
}

.syt-team__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.syt-team__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    margin-bottom: 60px;
}

.syt-team__heading {
    font-family: 'Saira Condensed', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1;
    margin: 0;
}

.syt-team__heading em {
    font-family: 'Syne', sans-serif;
    font-style: italic;
    font-weight: 700;
    text-transform: none;
    color: #fff;
}

.syt-team__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.syt-team__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #111;
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.syt-team__grid:hover .syt-team__card:not(:hover) {
    filter: grayscale(1) brightness(0.55);
}

.syt-team__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.syt-team__card:hover .syt-team__photo {
    transform: scale(1.05);
}

/* Permanent soft gradient so name is always readable */
.syt-team__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.15) 42%,
        transparent 65%);
    pointer-events: none;
    z-index: 1;
}

/* Frosted glass panel over the content area — always blurred, fades in on hover */
.syt-team__glass {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52%;
    background: rgba(0, 0, 0, 0.22);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 2;
}

/* .syt-team__card:hover .syt-team__glass {
    opacity: 1;
} */

.syt-team__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(8, 8, 8, 0.68);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    z-index: 4;
}

/* Social icons — top-right, vertical, revealed on hover */
.syt-team__socials {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 4;
}

.syt-team__social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.55);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.25s ease,
                border-color 0.25s ease,
                color 0.25s ease;
}

.syt-team__card:hover .syt-team__social:nth-child(1) {
    opacity: 1; transform: translateX(0); transition-delay: 0.08s;
}
.syt-team__card:hover .syt-team__social:nth-child(2) {
    opacity: 1; transform: translateX(0); transition-delay: 0.15s;
}
.syt-team__card:hover .syt-team__social:nth-child(3) {
    opacity: 1; transform: translateX(0); transition-delay: 0.22s;
}

.syt-team__social:hover {
    background: rgba(255, 204, 13, 0.15);
    border-color: rgba(255, 204, 13, 0.35);
    color: var(--yellow);
}

/* Info sits above the glass — z-index 3 */
.syt-team__info {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    z-index: 3;
}

.syt-team__name {
    font-size: clamp(26px, 2.6vw, 36px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
    letter-spacing: -0.01em;
    line-height: 1.1;
    transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.syt-team__card:hover .syt-team__name {
    color: var(--yellow);
}

.syt-team__role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0;
}

.syt-team__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
                max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
                margin 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}

.syt-team__card:hover .syt-team__desc {
    opacity: 1;
    transform: translateY(0);
    max-height: 120px;
    margin: 12px 0 0;
}

.syt-team__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.12s,
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.12s,
                max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.12s,
                margin 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.12s,
                background 0.25s ease,
                border-color 0.25s ease,
                color 0.25s ease;
}

.syt-team__btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #0D0D0D;
}

.syt-team__card:hover .syt-team__btn {
    opacity: 1;
    transform: translateY(0);
    max-height: 60px;
    margin-top: 16px;
}

/* ─── FAQ Section ─────────────────────────────────────────────────────────── */

.syt-faq {
    padding: 100px 0;
}

.syt-faq__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    align-items: start;
}

.syt-faq__header {
    position: sticky;
    top: 110px;
}

.syt-faq__header .syt-label {
    margin-bottom: 24px;
}

.syt-faq__heading {
    font-family: 'Saira Condensed', sans-serif;
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 16px;
}

.syt-faq__sub {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.syt-faq__list {
    display: flex;
    flex-direction: column;
}

.syt-faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.syt-faq__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.syt-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #999;
    transition: color 0.25s ease;
}

.syt-faq__question:hover,
.syt-faq__item.is-open .syt-faq__question {
    color: #fff;
}

.syt-faq__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}

.syt-faq__icon::before,
.syt-faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #777;
    border-radius: 2px;
    transition: background 0.25s ease, opacity 0.3s ease;
}

.syt-faq__icon::before {
    width: 10px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

.syt-faq__icon::after {
    width: 1.5px;
    height: 10px;
    transform: translate(-50%, -50%);
    transition: background 0.25s ease, opacity 0.3s ease, transform 0.3s ease;
}

.syt-faq__item.is-open .syt-faq__icon {
    background: var(--yellow);
    border-color: var(--yellow);
}

.syt-faq__item.is-open .syt-faq__icon::before,
.syt-faq__item.is-open .syt-faq__icon::after {
    background: #000;
}

.syt-faq__item.is-open .syt-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.syt-faq__answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.syt-faq__answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    padding-bottom: 24px;
    max-width: 640px;
}

/* ─── CTA Section ─────────────────────────────────────────────────────────── */

.syt-cta {
    background: #0A0A0A;
    border-top-left-radius: 56px;
    border-top-right-radius: 56px;
    opacity: 1;
    padding: 100px 0;
}

.syt-cta__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.syt-cta__inner > .syt-label {
    grid-column: 1 / -1;
    justify-self: center;
}

.syt-cta__heading {
    font-size: 60px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    grid-column: 1 / -1;
    text-align: center;
}

.syt-cta__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.syt-cta__sub-heading {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.syt-cta__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.syt-cta__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #777;
}

.syt-cta__list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 204, 13, 0.12);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* CTA Card */
.syt-cta__card {
    background: linear-gradient(-8deg, #111 50%, #232323 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4),
                rgba(134, 134, 134, 0.2) 0.5px 0.5px 0px 0px inset;
}

.syt-cta__card-title {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
}

.syt-cta__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.syt-cta__input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 14px 20px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #fff;
    outline: none;
    width: 100%;
    transition: border-color 0.25s ease;
}

.syt-cta__input::placeholder {
    color: #444;
}

.syt-cta__input:focus {
    border-color: rgba(255, 204, 13, 0.4);
}

.syt-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(to right, var(--yellow) 50%, #ffffff 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: #0D0D0D;
    border: none;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    transition: background-position 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.syt-cta__btn:hover {
    background-position: left center;
    box-shadow: 0 0 18px rgba(255, 204, 13, 0.35), rgba(134, 134, 134, 0.4) 0.5px 0.5px 0px 0px inset;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */

.site-footer {
    background: #0A0A0A;
    overflow: hidden;
    position: relative;
}

.site-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 40px 0;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr;
    gap: 60px;
}

.site-footer__col-title {
    font-family: Inter, sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 400;
}

.site-footer__info {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.site-footer__info-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.site-footer__info-row {
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.site-footer__info-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 7px;
}

.site-footer__info-link:hover {
    color: #FFC629;
}

.site-footer__nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__nav-link {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #eee;
    text-decoration: none;
    transition: color 0.25s ease;
    display: block;
    font-style:italic;
}

.site-footer__nav-link:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Social icons row under Contact */
.site-footer__social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.site-footer__social-icon {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #484848;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}


.site-footer__social-icon:hover {
    color: #FFC629;
    transform: translateY(-2px);
}

/* Newsletter */

.site-footer__newsletter-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.site-footer__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 20px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    color: #fff;
    outline: none;
    transition: border-color 0.25s ease;
    width: 100%;
}

.site-footer__newsletter-input::placeholder {
    color: #444;
}

.site-footer__newsletter-input:focus {
    border-color: rgba(255, 204, 13, 0.4);
}

.site-footer__newsletter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(to right, var(--yellow) 50%, #ffffff 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: #0D0D0D;
    border: none;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: background-position 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer__newsletter-btn:hover {
    background-position: left center;
    box-shadow: 0 0 18px rgba(255, 204, 13, 0.35), rgba(134, 134, 134, 0.4) 0.5px 0.5px 0px 0px inset;
}

.site-footer__brand {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    opacity: 0.04;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 60%);
    mask-image: linear-gradient(to top, transparent 0%, black 60%);
}

.site-footer__brand img {
    width: clamp(320px, 55vw, 800px);
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.site-footer__caption {
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 800;
    opacity: 0.7;
    margin-bottom: 40px;
}


.site-footer .border,
body > .border {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    z-index: auto;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 36px;
    font-size: 13px;
    color: #555;
}

.site-footer__legal {
    display: flex;
    gap: 24px;
}

.site-footer__legal-link {
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__legal-link:hover {
    color: #fff;
}



