:root {
    --ink: #173c2a;
    --ink-deep: #0c2419;
    --muted: #6d7d72;
    --paper: #f5f8f2;
    --card: rgba(255, 255, 255, 0.87);
    --line: rgba(23, 60, 42, 0.12);
    --green: #2d8c3c;
    --green-bright: #9bdf63;
    --green-soft: #e6f3df;
    --telegram: #229ed9;
    --shadow: 0 24px 70px rgba(23, 60, 42, 0.12);
    --radius-lg: 30px;
    --radius-md: 18px;
    --display: "Unbounded", "Arial Narrow", sans-serif;
    --body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--paper);
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 18%, rgba(155, 223, 99, 0.13), transparent 30rem),
        radial-gradient(circle at 90% 76%, rgba(34, 158, 217, 0.06), transparent 26rem),
        var(--paper);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    opacity: 0.23;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.page-glow {
    position: absolute;
    z-index: -1;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
}

.page-glow--top {
    top: -23rem;
    left: 50%;
    background: rgba(155, 223, 99, 0.18);
    transform: translateX(-50%);
}

.page-glow--bottom {
    right: -20rem;
    bottom: 4rem;
    background: rgba(34, 158, 217, 0.06);
}

.site-header,
.site-footer,
.outreach-page {
    width: min(1160px, calc(100% - 48px));
    margin-right: auto;
    margin-left: auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 31px;
    padding-bottom: 31px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand__mark {
    display: grid;
    width: 39px;
    height: 39px;
    color: var(--green);
    place-items: center;
}

.brand__mark svg {
    display: block;
    width: 100%;
    height: 100%;
}

.brand__name {
    display: grid;
    gap: 1px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.brand__name strong {
    font-weight: 800;
}

.brand__name span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
}

.outreach-page {
    padding-top: clamp(43px, 8vw, 93px);
    padding-bottom: 50px;
}

.hero-copy {
    width: min(805px, 100%);
    margin: 0 auto 45px;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 22px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow__dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 0 6px rgba(155, 223, 99, 0.16);
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 23px;
    color: var(--ink-deep);
    font-family: var(--display);
    font-size: clamp(28px, 4.2vw, 56px);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 1.14;
}

.video-card {
    padding: clamp(16px, 3vw, 26px);
    border: 1px solid rgba(23, 60, 42, 0.1);
    border-radius: var(--radius-lg);
    background: var(--card);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.video-card__topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    padding: 1px 5px 20px;
}

.video-card h2 {
    margin-bottom: 0;
    color: var(--ink-deep);
    font-family: var(--display);
    font-size: clamp(17px, 2.2vw, 23px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.25;
}

.video-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: var(--video-ratio);
    border-radius: var(--radius-md);
    background: #101b15;
    isolation: isolate;
}

.video-frame::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    pointer-events: none;
    content: "";
}

.video-frame iframe {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-frame > [data-kinescope-player] {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-frame > [data-kinescope-player] > iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-frame__loading {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: grid;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    place-items: center;
}

.video-gate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 5px;
}

.video-gate__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.telegram-subscribe {
    display: grid;
    justify-items: center;
    gap: 11px;
    text-align: center;
}

.telegram-subscribe p {
    margin: 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.telegram-subscribe__button {
    min-height: 56px;
    padding: 16px 25px;
    font-size: 15px;
}

.video-gate__status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.video-gate__status strong {
    color: var(--ink);
    font-family: var(--display);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.status-dot {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border: 2px solid var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(45, 140, 60, 0.11);
}

.status-dot--active {
    border-color: var(--telegram);
    background: var(--telegram);
    box-shadow: 0 0 0 4px rgba(34, 158, 217, 0.11);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 14px 21px;
    border: 0;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible {
    outline: 3px solid rgba(155, 223, 99, 0.75);
    outline-offset: 4px;
}

.button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.button--primary {
    color: #fff;
    background: var(--green);
    box-shadow: 0 10px 25px rgba(45, 140, 60, 0.25);
}

.button--primary:hover {
    background: #237631;
    box-shadow: 0 14px 29px rgba(45, 140, 60, 0.31);
}

.button--telegram {
    color: #fff;
    background: var(--telegram);
    box-shadow: 0 10px 25px rgba(34, 158, 217, 0.23);
}

.video-gate__button,
.button--telegram {
    min-width: 250px;
    min-height: 72px;
    padding: 20px 32px;
    border-radius: 18px;
    font-size: 17px;
    letter-spacing: -0.02em;
}

.video-gate__button svg {
    width: 24px;
    height: 24px;
}

.button--telegram:hover {
    background: #138bc6;
    box-shadow: 0 14px 29px rgba(34, 158, 217, 0.3);
}

.telegram-icon {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor !important;
    stroke: none !important;
}

.button__arrow {
    width: 18px !important;
    height: 18px !important;
}

.video-gate__button[hidden] {
    display: none;
}

.video-gate__button:not([hidden]) {
    animation: cta-in 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@media (min-width: 721px) {
    .video-gate {
        justify-content: center;
    }

    .video-gate__button {
        width: min(100%, 400px);
        min-width: 0;
        min-height: 110px;
        padding: 23px 36px;
        border-radius: 20px;
        font-size: 24px;
        gap: 16px;
        box-shadow: 0 14px 30px rgba(45, 140, 60, 0.3);
    }

    .video-gate__button svg {
        width: 28px;
        height: 28px;
    }

    .telegram-subscribe p {
        font-size: 16px;
    }
}

.video-gate--final {
    min-height: 78px;
}

.site-footer {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 0 0 31px;
    color: rgba(109, 125, 114, 0.8);
    font-size: 10px;
    font-weight: 600;
}

.site-footer__line {
    width: 36px;
    height: 1px;
    background: rgba(23, 60, 42, 0.18);
}

@keyframes cta-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 720px) {
    .site-header,
    .site-footer,
    .outreach-page {
        width: min(100% - 32px, 1160px);
    }

    .site-header {
        padding-top: 21px;
        padding-bottom: 21px;
    }

    .brand__name {
        font-size: 9px;
    }

    .brand__name span {
        font-size: 8px;
    }

    .outreach-page {
        padding-top: 37px;
    }

    .hero-copy {
        margin-bottom: 31px;
    }

    h1 {
        font-size: clamp(25px, 7.2vw, 42px);
        letter-spacing: -0.06em;
    }

    .video-card__topline,
    .video-gate {
        display: block;
    }

    .video-gate {
        padding: 0;
    }

    .video-gate__actions {
        width: 100%;
    }

    .video-gate__status {
        min-height: 34px;
        line-height: 1.45;
    }

    .video-gate__button,
    .button--telegram {
        width: 100%;
        margin-top: 15px;
    }

    .site-footer {
        flex-wrap: wrap;
        gap: 10px 14px;
        padding-bottom: 22px;
        font-size: 9px;
    }

    .site-footer__line {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
