:root {
    --bg: #0a0a0a;
    --bg-2: #121212;
    --panel: rgba(255, 255, 255, 0.05);
    --panel-strong: rgba(255, 255, 255, 0.08);
    --stroke: rgba(255, 255, 255, 0.11);
    --stroke-soft: rgba(255, 255, 255, 0.06);
    --text: #f5f1e8;
    --muted: rgba(245, 241, 232, 0.66);
    --accent: #d8ff63;
    --accent-soft: rgba(216, 255, 99, 0.14);
    --violet: #7450f2;
    --ember: #db8f63;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: min(1180px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 0% 8%, rgba(116, 80, 242, 0.13), transparent 30%),
        radial-gradient(circle at 100% 10%, rgba(219, 143, 99, 0.1), transparent 24%),
        linear-gradient(180deg, #050505 0%, #0a0a0a 42%, #080808 100%);
    overflow-x: hidden;
}

img,
iframe {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    position: relative;
}

.ambient {
    position: fixed;
    pointer-events: none;
    filter: blur(120px);
    opacity: 0.52;
    z-index: 0;
}

.ambient-one {
    width: 26rem;
    height: 26rem;
    left: -8rem;
    top: 8rem;
    background: rgba(116, 80, 242, 0.15);
}

.ambient-two {
    width: 24rem;
    height: 24rem;
    right: -7rem;
    top: 34rem;
    background: rgba(219, 143, 99, 0.12);
}

.container {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.announcement-bar {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid var(--stroke-soft);
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(16px);
}

.announcement-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
    padding: 0.56rem 0;
    font-size: 0.74rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
}

.announcement-inner span {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.announcement-inner span::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(215, 255, 100, 0.55);
}

.announcement-inner a {
    color: var(--text);
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 2.35rem;
    z-index: 25;
    padding: 0.8rem 0 0;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--stroke);
    border-radius: 22px;
    background: rgba(12, 12, 12, 0.66);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-lockup strong,
.brand-lockup span {
    display: block;
    line-height: 1;
}

.brand-lockup strong {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    letter-spacing: -0.03em;
}

.brand-lockup span:last-child {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.brand-mark {
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--violet), var(--ember));
    box-shadow: 0 0 32px rgba(143, 99, 255, 0.4);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav a {
    padding: 0.68rem 0.92rem;
    border-radius: 999px;
    font-size: 0.88rem;
    color: var(--muted);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.site-nav .nav-cta {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--stroke);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    gap: 0.4rem;
    flex-direction: column;
    justify-content: center;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
}

.hero-section {
    padding: 2.2rem 0 1.8rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.92fr);
    gap: 2rem;
    align-items: center;
}

.hero-copy,
.hero-media,
.clients-section,
.portfolio-section,
.contact-section {
    position: relative;
    z-index: 1;
}

.eyebrow,
.eyebrow-chip {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 800;
}

.eyebrow-chip {
    padding: 0.5rem 0.8rem;
    background: var(--accent-soft);
    border: 1px solid rgba(215, 255, 100, 0.2);
    border-radius: 999px;
    margin-bottom: 1.1rem;
}

.hero-copy h1,
.section-intro h2,
.contact-copy h2 {
    margin: 0;
    font-family: "Sora", sans-serif;
    letter-spacing: -0.05em;
}

.hero-copy h1 {
    max-width: 8.2ch;
    font-size: clamp(3rem, 5.2vw, 5.2rem);
    line-height: 0.9;
    text-wrap: balance;
}

.hero-copy h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, #e8d9ff 12%, #b86dff 88%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-description {
    max-width: 34rem;
    margin: 1.1rem 0 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-actions {
    margin-top: 1.4rem;
}

.button-primary,
.button-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 3.5rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button-primary {
    background: linear-gradient(135deg, #c7ff55, #a6f144);
    color: #101010;
    box-shadow: 0 16px 36px rgba(166, 241, 68, 0.26);
}

.button-secondary {
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.button-primary:hover,
.button-secondary:hover,
.contact-link:hover,
.video-card:hover,
.client-pill:hover {
    transform: translateY(-4px);
}

.contact-card,
.client-pill,
.video-card {
    background: var(--panel);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
}

.section-intro p,
.video-copy p,
.contact-copy p,
.site-footer p,
.site-footer a {
    color: var(--muted);
}

.hero-panel {
    position: relative;
    padding: 1rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.92), rgba(13, 13, 13, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.hero-panel::after {
    display: none;
}

.panel-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.85rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.meta-live {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.meta-live::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(215, 255, 100, 0.6);
}

.video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.section-intro {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2rem;
}

.section-intro h2,
.contact-copy h2 {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.section-intro p {
    max-width: 34rem;
    line-height: 1.8;
    font-size: 0.98rem;
}

.clients-section,
.portfolio-section {
    padding: 3rem 0 0;
}

.portfolio-head {
    margin-bottom: 1rem;
}

.marquee-shell {
    overflow: hidden;
    padding: 0.5rem 0 0.8rem;
}

.marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.client-pill {
    min-width: 16rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 22px;
    backdrop-filter: blur(10px);
}

.client-pill img {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 16px;
}

.client-fallback {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--violet), var(--accent));
    color: #090909;
    font-weight: 800;
}

.client-pill span {
    display: block;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.group-heading h3,
.video-copy h4,
.site-footer h4 {
    margin: 0;
    font-family: "Sora", sans-serif;
}

.portfolio-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.portfolio-group {
    padding: 1.45rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.group-heading {
    display: flex;
    margin-bottom: 1rem;
}

.group-heading h3 {
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}

.video-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.video-card {
    padding: 0.8rem;
    border-radius: 24px;
    backdrop-filter: blur(8px);
}

.video-copy {
    padding: 1rem 0.35rem 0.2rem;
}

.video-badge {
    display: inline-flex;
    margin-bottom: 0.8rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(143, 99, 255, 0.14);
    border: 1px solid rgba(143, 99, 255, 0.24);
    color: #d9caff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.video-copy h4 {
    font-size: 1.02rem;
}

.video-channel {
    margin: 0.45rem 0 0;
    color: var(--accent) !important;
    font-size: 0.88rem;
    font-weight: 700;
}

.video-copy p {
    margin: 0.6rem 0 0;
    line-height: 1.64;
    font-size: 0.94rem;
}

.contact-section {
    padding: 4rem 0;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.7rem;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
}

.contact-actions {
    min-width: min(100%, 22rem);
    flex-direction: column;
}

.contact-link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--stroke);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-link strong {
    color: var(--text);
    font-size: 1rem;
}

.site-footer {
    padding: 0 0 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    gap: 2rem;
    padding: 2rem 0 2.4rem;
    border-top: 1px solid var(--stroke-soft);
}

.footer-brand {
    margin-bottom: 1rem;
}

.site-footer a {
    display: block;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--stroke-soft);
    color: rgba(245, 241, 232, 0.4);
    font-size: 0.84rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1180px) {
    .hero-copy h1 {
        font-size: clamp(2.7rem, 4.4vw, 4.35rem);
        max-width: 7.2ch;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.84fr);
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .contact-card,
    .footer-grid,
    .video-rail {
        grid-template-columns: 1fr;
    }

    .section-intro,
    .group-heading {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 860px) {
    .site-header {
        top: 2.8rem;
    }

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

    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 0.8rem);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border: 1px solid var(--stroke);
        border-radius: 24px;
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero-section {
        padding-top: 1.7rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.5rem, 9vw, 3.7rem);
        max-width: none;
    }

    .hero-description {
        max-width: 28rem;
        font-size: 0.94rem;
    }
}

@media (max-width: 720px) {
    .nav-row {
        border-radius: 24px;
    }

    .hero-actions,
    .contact-actions {
        width: 100%;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .announcement-inner {
        justify-content: center;
        text-align: center;
        font-size: 0.68rem;
        line-height: 1.35;
    }

    .site-header {
        top: 2.7rem;
    }

    .hero-section {
        padding-top: 1.3rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.25rem, 11vw, 3.2rem);
        line-height: 0.94;
        letter-spacing: -0.06em;
    }

    .hero-description {
        margin-top: 0.95rem;
        font-size: 0.9rem;
        line-height: 1.58;
    }

    .eyebrow-chip {
        margin-bottom: 0.85rem;
    }

    .video-rail {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.3rem;
    }

    .video-card {
        min-width: 88%;
        scroll-snap-align: start;
    }

    .hero-panel,
    .portfolio-group,
    .contact-card {
        padding: 1rem;
    }

    .panel-meta {
        font-size: 0.76rem;
        margin-bottom: 0.75rem;
    }

    .button-primary,
    .button-secondary,
    .contact-link {
        min-height: 3.25rem;
    }
}
