:root {
    --page-bg: #061b1d;
    --panel-bg: rgba(7, 35, 36, 0.78);
    --panel-bg-strong: rgba(8, 39, 40, 0.92);
    --line: rgba(233, 214, 166, 0.28);
    --line-green: rgba(79, 188, 151, 0.32);
    --green: #2f936f;
    --green-soft: #75d0a7;
    --gold: #d6ad61;
    --gold-light: #f5dfae;
    --orange: #f05b24;
    --text: #f5f8f5;
    --muted: #b9c8c2;
    --muted-2: #8fa09b;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: var(--bs-body-font-family, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding-inline: 24px;
}

.bg-dark-custom {
    background:
        radial-gradient(circle at 20% 16%, rgba(45, 154, 118, 0.16), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(214, 173, 97, 0.11), transparent 24%),
        linear-gradient(180deg, #071d20 0%, #061719 56%, #041214 100%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(2, 14, 16, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-brand img {
    height: 42px;
    width: auto;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    padding: 0.45rem 0.7rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.18rem rgba(214, 173, 97, 0.25);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar-collapse {
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
}

.site-nav .nav-link {
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus-visible,
.site-nav .nav-link.active {
    color: var(--gold-light);
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.header-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: #fff;
    text-decoration: none;
    opacity: 0.96;
    transition: color 0.2s ease, transform 0.2s ease;
}

.header-socials a:hover {
    color: var(--gold-light);
    transform: translateY(-1px);
}

.mobile-menu-close {
    display: none;
}

.hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: #061719;
}

.editable-background-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    pointer-events: none;
}

.hero-background-image {
    object-position: right center;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 22, 24, 0.253) 0%, rgba(5, 28, 30, 0.205) 42%, rgba(6, 24, 26, 0.253) 100%),
        radial-gradient(circle at 76% 24%, rgba(214, 173, 97, 0.16), transparent 20%),
        linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.22) 54%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    z-index: 1;
    background: linear-gradient(180deg, transparent, rgba(4, 18, 20, 0.92));
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    min-height: 500px;
    align-items: center;
    gap: 42px;
}

.hero-copy {
    padding: 42px 0 100px;
}

.hero-copy h1 {
    margin: 0 0 22px;
    max-width: 680px;
    color: #fff;
    font-size: clamp(46px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
}

.hero-subtitle {
    margin: 0;
    max-width: 570px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.48;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.btn-primary,
.card-button {
    background: linear-gradient(135deg, #287a60, #3aa77b);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 14px 34px rgba(24, 115, 83, 0.26);
}

.btn-secondary,
.card-button--gold {
    color: #132323;
    background: linear-gradient(135deg, #fbefc7, #d3a95d);
    box-shadow: 0 16px 34px rgba(214, 173, 97, 0.22);
}

.card-button--gold {
    background: linear-gradient(135deg, #c49348, #a8742f);
}

.btn-secondary:hover,
.card-button--gold:hover {
    color: #132323;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 570px;
    margin-top: 34px;
}

.hero-point {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 14px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.45;
}

.hero-point-icon {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--gold-light);
    font-size: 18px;
    line-height: 1;
    padding-top: 2px;
}

.hero-visual {
    position: relative;
    align-self: stretch;
    min-height: 500px;
}

.hero-image {
    position: absolute;
    z-index: 1;
    right: 32%;
    bottom: 0;
    height: min(480px, 92%);
    width: auto;
    max-width: none;
    filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.45));
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0, 0, 0, 0.78) 84%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0, 0, 0, 0.78) 84%, transparent 100%);
}

.hero-badge {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 11px;
    background: rgba(4, 18, 20, 0.82);
    color: #fff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
}

.hero-badge-top {
    top: 102px;
    right: 0;
}

.hero-badge-bottom {
    right: 0;
    bottom: 150px;
}

.hero-cards {
    position: relative;
    z-index: 6;
    margin-top: -96px;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 236px;
    padding: 20px 20px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(10, 42, 42, 0.94), rgba(4, 22, 24, 0.9));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 2%, rgba(214, 173, 97, 0.12), transparent 28%);
    pointer-events: none;
}

.feature-card-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border: 1px solid rgba(214, 173, 97, 0.34);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 24%, rgba(214, 173, 97, 0.34), rgba(214, 173, 97, 0.10));
    color: var(--gold-light);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.feature-card-icon .material-symbols-outlined {
    font-size: 34px;
}

.feature-card h2 {
    margin: 0;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
}

.feature-card-audience {
    margin: 0 0 4px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
}

.feature-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    margin: 0 0 12px;
    padding: 0 0 0 14px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.42;
}

.feature-list li::marker {
    color: var(--gold-light);
}

.card-button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: auto;
    padding: 0 18px;
    border-radius: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.card-button:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.card-button--orange {
    background: linear-gradient(135deg, #ff6a2a, #e94c17);
    box-shadow: 0 16px 34px rgba(240, 91, 36, 0.28);
}

.feature-card--podcast {
    gap: 12px;
    background: #061719;
}

.feature-card--podcast::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(5, 23, 24, 0.26), rgba(4, 18, 20, 0.26));
    pointer-events: none;
}

.feature-card--podcast > :not(.editable-background-image) {
    position: relative;
    z-index: 1;
}

.feature-card--podcast .feature-card-header {
    margin-bottom: 2px;
}

.podcast-thumb {
    display: none;
}

.rules-section {
    padding: 32px 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-title {
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
}

.rule-item {
    padding: 0 26px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.rule-item:last-child {
    border-right: 0;
}

.rule-icon {
    color: var(--gold);
    margin-bottom: 10px;
}

.rule-icon .material-symbols-outlined {
    font-size: 42px;
}

.rule-item h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.rule-item p {
    max-width: 190px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.section-eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 16px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
}

.process-section {
    margin-top: 34px;
    padding: 58px 0 64px;
    background:
        radial-gradient(circle at 12% 12%, rgba(47, 147, 111, 0.16), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(214, 173, 97, 0.18), transparent 28%),
        linear-gradient(180deg, #f6f4eb 0%, #eaf3ed 100%);
    color: #082426;
}

.process-section .section-eyebrow {
    color: #b68425;
}

.process-section .section-title {
    color: #082426;
    font-size: clamp(32px, 4vw, 48px);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 36px;
}

.process-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 360px;
    border: 1px solid rgba(8, 36, 38, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 60px rgba(8, 36, 38, 0.12);
    overflow: hidden;
}

.process-card:first-child .process-media {
    order: 2;
}

.process-card:first-child .process-card-body {
    order: 1;
}

.process-media {
    min-height: 100%;
}

.process-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 56px;
}

.process-card-header {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: start;
}

.process-card-icon {
    color: var(--green);
    font-size: 42px;
    line-height: 1;
}

.process-card-icon--gold {
    color: var(--gold);
}

.process-card h3 {
    margin: 0;
    color: #082426;
    font-size: clamp(24px, 2.7vw, 34px);
    font-weight: 700;
    line-height: 1.18;
}

.process-card-kicker {
    margin: 0 0 10px;
    color: var(--green);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.process-card-kicker--gold {
    color: var(--gold);
}

.process-list {
    display: grid;
    gap: 16px;
    margin: 30px 0 0;
    padding: 0;
    color: #314846;
    font-size: 17px;
    line-height: 1.5;
    list-style: none;
    counter-reset: process;
}

.process-list li {
    position: relative;
    padding-left: 44px;
    counter-increment: process;
}

.process-list li::before {
    content: "check";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green);
    color: #062321;
    font-size: 17px;
    font-family: "Material Symbols Outlined";
    font-weight: 700;
    line-height: 1;
}

.process-list--gold li::before {
    background: var(--gold);
}

.process-button {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 28px;
    padding: 0 28px;
    border-radius: 9px;
    background: linear-gradient(135deg, #287a60, #3aa77b);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(24, 115, 83, 0.18);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.process-button:hover {
    color: #fff;
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.process-button--gold {
    background: linear-gradient(135deg, #c49348, #a8742f);
    box-shadow: 0 14px 28px rgba(166, 116, 47, 0.18);
}

.about-section {
    padding: 82px 0 34px;
}

.about-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 72px;
    align-items: center;
    padding: 56px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background:
        radial-gradient(circle at 12% 22%, rgba(47, 147, 111, 0.16), transparent 32%),
        linear-gradient(145deg, rgba(10, 42, 42, 0.88), rgba(4, 18, 20, 0.76));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.about-copy {
    padding-left: 0;
}

.about-copy h2 {
    margin: 0 0 26px;
    color: #fff;
    font-size: clamp(36px, 4.2vw, 52px);
    font-weight: 700;
    line-height: 1.08;
}

.about-copy p {
    max-width: 680px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.72;
}

.about-note {
    max-width: 620px !important;
    color: rgba(255, 255, 255, 0.66) !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.about-button {
    width: min(380px, 100%);
    margin-top: 18px;
}

.about-photo {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.about-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.34));
    pointer-events: none;
}

.about-photo img {
    width: 100%;
    aspect-ratio: 16 / 10.4;
    object-fit: cover;
}

.about-photo-badge {
    position: absolute;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    padding: 9px 16px;
    border-radius: 10px;
    background: rgba(5, 22, 23, 0.82);
    color: #fff;
    font-size: 14px;
    font-weight: 850;
}

.bar-section {
    padding: 58px 0 64px;
    background:
        radial-gradient(circle at 12% 8%, rgba(240, 91, 36, 0.10), transparent 30%),
        linear-gradient(180deg, #fbf7ef 0%, #ffffff 100%);
    color: #082426;
}

.bar-panel {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 44px;
    border: 1px solid rgba(8, 36, 38, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 60px rgba(8, 36, 38, 0.10);
}

.bar-eyebrow {
    margin: 0 0 12px;
    color: #e94c17;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.bar-copy h2 {
    margin: 0 0 20px;
    color: #082426;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.08;
}

.bar-copy p:not(.bar-eyebrow) {
    max-width: 560px;
    margin: 0;
    color: #314846;
    font-size: 18px;
    line-height: 1.7;
}

.bar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-top: 28px;
}

.bar-button,
.bar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.bar-button {
    padding: 0 26px;
    color: #fff;
    background: linear-gradient(135deg, #ff6a2a, #e94c17);
    box-shadow: 0 14px 28px rgba(240, 91, 36, 0.20);
}

.bar-button:hover {
    color: #fff;
    filter: brightness(1.05);
}

.bar-link {
    gap: 9px;
    color: #082426;
}

.bar-link i {
    color: #e94c17;
    font-size: 22px;
}

.latest-video-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
    overflow: hidden;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(28, 8, 8, 0.96), rgba(48, 16, 14, 0.92));
    color: #fff;
    text-decoration: none;
    box-shadow: 0 22px 54px rgba(43, 17, 14, 0.22);
}

.latest-video-card:hover {
    color: #fff;
}

.latest-video-media {
    position: relative;
    min-height: 250px;
    overflow: hidden;
}

.latest-video-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.latest-video-card:hover .latest-video-media img {
    transform: scale(1.04);
}

.latest-video-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.34));
}

.latest-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(233, 76, 23, 0.94);
    color: #fff;
    font-size: 42px;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.latest-video-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 28px;
}

.latest-video-body span {
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #e94c17;
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.latest-video-body h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.28;
}

.site-footer {
    margin-top: 12px;
    padding: 28px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: #041214;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 90px;
    max-width: 1040px;
    margin: 0 auto;
}

.footer-brand {
    display: inline-flex;
    margin-bottom: 14px;
    text-decoration: none;
}

.footer-brand img {
    height: 34px;
}

.footer p,
.footer li,
.footer a,
.footer button {
    color: var(--muted-2);
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
}

.footer a:hover,
.footer button:hover {
    color: var(--gold-light);
}

.footer button.footer-link {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.footer-title {
    margin: 0 0 16px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-contact i {
    color: var(--muted);
}

.footer-bottom {
    max-width: 1040px;
    margin: 22px auto 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.fade-in-up {
    transform: translateY(56px);
}

.slide-in-left {
    transform: translateX(-86px);
}

.slide-in-right {
    transform: translateX(86px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

@media (min-width: 992px) {
    .hero {
        min-height: calc(100vh - 82px);
    }

    .hero-inner,
    .hero-visual {
        min-height: calc(100vh - 82px);
    }

    .hero-copy {
        padding-bottom: 300px;
    }

    .hero-image {
        top: -54px;
        bottom: auto;
        right: 24%;
        height: min(820px, calc(100vh - 42px));
    }

    .hero-badge-top {
        top: 114px;
        right: -24px;
    }

    .hero-badge-bottom {
        top: 292px;
        right: -24px;
        bottom: auto;
    }

    .feature-card {
        min-height: 270px;
    }

    .hero-cards {
        margin-top: -270px;
    }

    .rules-section {
        margin-top: 38px;
    }
}

@media (min-width: 992px) and (max-height: 820px) {
    .hero-copy {
        padding-bottom: 190px;
    }

    .hero-image {
        top: -78px;
        height: min(760px, calc(100vh - 28px));
    }

    .hero-cards {
        margin-top: -142px;
    }
}

@media (max-width: 1100px) {
    .hero-image {
        right: 22%;
    }

    .hero-badge {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .header-inner {
        min-height: 72px;
        align-items: center;
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .navbar-collapse {
        display: block;
        flex: 0 0 100%;
        width: 100vw;
        margin-top: 14px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 22px 24px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(2, 14, 16, 0.96);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
    }

    .site-nav {
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }

    .header-socials {
        justify-content: center;
        margin-top: 22px;
    }

    .mobile-menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin: 18px auto 0;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        font-size: 20px;
    }

    .hero-inner,
    .about-panel {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 42px;
    }

    .bar-panel,
    .latest-video-card {
        grid-template-columns: 1fr;
    }

    .latest-video-media {
        min-height: 320px;
    }

    .hero-copy {
        padding: 48px 0 0;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-image {
        right: 50%;
        transform: translateX(50%);
        height: 420px;
    }

    .hero-badge-top {
        top: 44px;
        right: 16px;
    }

    .hero-badge-bottom {
        right: 16px;
        bottom: 92px;
    }

    .hero-cards {
        margin-top: -54px;
    }

    .hero-cards-grid,
    .process-grid,
    .rules-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rule-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 22px 0;
    }

    .rule-item:last-child {
        border-bottom: 0;
    }

    .process-card {
        grid-template-columns: 1fr;
    }

    .process-card:first-child .process-media,
    .process-card:first-child .process-card-body {
        order: initial;
    }

    .process-media img {
        aspect-ratio: 16 / 7;
    }

    .about-copy {
        padding-left: 0;
    }

    .footer-grid {
        gap: 26px;
    }
}

@media (max-width: 640px) {
    .container {
        padding-inline: 18px;
    }

    .site-brand img {
        height: 36px;
    }

    .hero {
        min-height: 0;
    }

    .hero-inner {
        min-height: 0;
        gap: 8px;
    }

    .hero-copy h1 {
        font-size: 43px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-actions,
    .hero-points {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 410px;
    }

    .hero-image {
        height: 390px;
        max-height: 390px;
        max-width: none;
        object-fit: contain;
    }

    .hero-badge {
        max-width: 150px;
        min-height: 0;
        padding: 10px 12px;
        white-space: normal;
        text-align: left;
        line-height: 1.22;
        font-size: 12px;
    }

    .hero-badge-top {
        top: 54px;
        right: 0;
    }

    .hero-badge-bottom {
        right: 0;
        bottom: 86px;
    }

    .hero-cards {
        margin-top: -46px;
    }

    .feature-card {
        min-height: 232px;
    }

    .feature-card-header {
        align-items: flex-start;
    }

    .feature-card--podcast {
        justify-content: space-between;
    }

    .process-card-body {
        padding: 24px 20px;
    }

    .process-media img,
    .about-photo img {
        aspect-ratio: 16 / 10;
    }

    .about-copy h2 {
        font-size: 34px;
    }

    .about-copy p {
        font-size: 16px;
        line-height: 1.65;
    }

    .about-panel {
        padding: 30px 22px;
    }

    .bar-section {
        padding: 38px 0 44px;
    }

    .bar-panel {
        padding: 28px 20px;
        gap: 28px;
    }

    .bar-copy h2 {
        font-size: 34px;
    }

    .bar-copy p:not(.bar-eyebrow) {
        font-size: 16px;
        line-height: 1.62;
    }

    .bar-actions,
    .bar-button,
    .bar-link {
        width: 100%;
    }

    .latest-video-media {
        min-height: 220px;
    }

    .latest-video-body {
        padding: 24px 20px;
    }

    .latest-video-body h3 {
        font-size: 19px;
    }

    .site-footer {
        margin-top: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
