@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&display=swap');

@keyframes ch-gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Switzer font used by the original site */
@font-face {
    font-family: 'Switzer';
    src: url('https://cliptra.oxilah.com/wp-content/themes/twentytwentyfive/assets/fonts/switzer/Switzer-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Switzer';
    src: url('https://cliptra.oxilah.com/wp-content/themes/twentytwentyfive/assets/fonts/switzer/Switzer-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

/* ── Outer hero wrapper ── */
.ch-hero {
    background-color: #121212;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding: 160px 0 64px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* animated purple gradient top 40% */
.ch-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(70,0,180,0.85) 0%, rgba(40,0,130,0.6) 40%, transparent 75%);
    background-size: 200% 200%;
    animation: ch-gradient-shift 10s ease infinite;
    mix-blend-mode: screen;
}

/* ── Inner content wrapper (framer-thf8u equivalent) ── */
.ch-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ── Content area (framer-9pbop2 equivalent) ── */
.ch-content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 64px;
    width: 100%;
    max-width: 1128px;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ── Text + CTA group (framer-r77l27 equivalent) ── */
.ch-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 800px;
}

/* ── Text block (framer-gxlp5f equivalent) ── */
.ch-text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

/* ── H1 — exact Framer values ── */
.ch-title {
    font-family: 'Switzer', sans-serif;
    font-size: 64px;
    font-weight: 500;
    color: #f0f0f0;
    letter-spacing: -0.04em;
    line-height: 100%;
    text-align: center;
    margin: 0;
    width: 100%;
}

/* ── Subtitle ── */
.ch-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #888;
    line-height: 1.3em;
    text-align: center;
    margin: 0;
    width: 100%;
}

/* ── CTA Button — exact Framer values ── */
.ch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 46px;
    background-color: rgba(255, 255, 255, 0.09);
    color: #ffffff;
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.04em;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    box-sizing: border-box;
    transition: background 0.2s;
}

.ch-btn:hover {
    background-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    text-decoration: none;
}

/* ── Video section (framer-119lwee equivalent) ── */
.ch-video-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.ch-video-wrap video {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    object-position: 50% 50%;
    background-color: rgba(0,0,0,0);
}

/* ── Responsive ── */
@media (max-width: 1199px) and (min-width: 810px) {
    .ch-title { font-size: 56px; }
}

@media (max-width: 809px) {
    .ch-hero { gap: 40px; padding: 100px 0 40px; }
    .ch-content-wrap { padding: 0 16px; }
    .ch-title { font-size: 42px; }
    .ch-btn { width: 100%; max-width: 200px; }
}
