.r-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-block: clamp(120px, 14vh, 160px) clamp(64px, 8vh, 96px);
    background: var(--r-color-bg-2);
    overflow: hidden;
    isolation: isolate;
    color: var(--r-color-text);
}

.r-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 40% at 25% 25%, rgba(212, 175, 55, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 75%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
}

.r-hero__bg::before,
.r-hero__bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    will-change: transform;
}
.r-hero__bg::before {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--r-color-gold) 0%, transparent 70%);
    opacity: 0.32;
    animation: rHeroDriftA 24s var(--r-ease-out) infinite alternate;
}
.r-hero__bg::after {
    width: 600px;
    height: 600px;
    bottom: -180px;
    right: -180px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    opacity: 0.22;
    animation: rHeroDriftB 28s var(--r-ease-out) infinite alternate-reverse;
}

@keyframes rHeroDriftA {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(120px, 80px) scale(1.15); }
}
@keyframes rHeroDriftB {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, -60px) scale(1.1); }
}

.r-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
}

.r-hero__content {
    position: relative;
    z-index: 1;
}

.r-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px 7px 12px;
    border-radius: var(--r-radius-full);
    background: var(--r-color-gold-tint);
    border: 1px solid var(--r-color-gold-tint-strong);
    color: var(--r-color-gold);
    font-size: var(--r-text-sm);
    font-weight: var(--r-weight-semibold);
    letter-spacing: var(--r-tracking-wide);
    margin-block-end: var(--r-space-6);
}

.r-hero__title {
    font-family: var(--r-font-display);
    font-size: var(--r-text-display);
    font-weight: var(--r-weight-semibold);
    line-height: var(--r-leading-tight);
    letter-spacing: var(--r-tracking-tight);
    color: var(--r-color-text);
    margin: 0 0 var(--r-space-6);
    text-wrap: balance;
}
.r-hero__title em {
    font-style: italic;
    color: var(--r-color-gold);
    font-weight: var(--r-weight-regular);
}

.r-hero__lede {
    font-size: var(--r-text-lg);
    line-height: var(--r-leading-relaxed);
    color: var(--r-color-text-soft);
    max-width: 56ch;
    margin: 0 0 var(--r-space-6);
    text-wrap: pretty;
}
.r-hero__lede strong {
    color: var(--r-color-gold);
    font-weight: var(--r-weight-semibold);
}

.r-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-block-end: var(--r-space-8);
}

.r-hero__cta {
    display: flex;
    gap: var(--r-space-3);
    flex-wrap: wrap;
    margin-block-end: var(--r-space-6);
}

.r-hero__compliance {
    padding: 14px 18px;
    background: var(--r-color-gold-tint);
    border-left: 3px solid var(--r-color-gold);
    border-radius: var(--r-radius-md);
    font-size: var(--r-text-sm);
    line-height: var(--r-leading-relaxed);
    color: var(--r-color-text-muted);
    margin: 0;
}
.r-hero__compliance strong {
    color: var(--r-color-gold);
    font-weight: var(--r-weight-semibold);
}

.r-hero__aside {
    display: flex;
    flex-direction: column;
    gap: var(--r-space-5);
    position: relative;
    z-index: 1;
}

.r-hero__founder {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px 12px 12px;
    background: var(--r-color-surface-elev);
    border: 1px solid var(--r-color-line);
    border-radius: var(--r-radius-full);
}
.r-hero__founder img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--r-color-gold);
    flex-shrink: 0;
}
.r-hero__founder-name {
    font-size: var(--r-text-base);
    font-weight: var(--r-weight-semibold);
    color: var(--r-color-text);
    line-height: 1.2;
}
.r-hero__founder-role {
    font-size: var(--r-text-xs);
    color: var(--r-color-text-muted);
    margin-block-start: 3px;
}

.r-hero__signals {
    display: flex;
    flex-direction: column;
    gap: var(--r-space-3);
    padding: var(--r-space-6);
    background: linear-gradient(180deg, var(--r-color-surface-2) 0%, var(--r-color-surface) 100%);
    border: 1px solid var(--r-color-line-strong);
    border-radius: var(--r-radius-xl);
    box-shadow: var(--r-shadow-md);
}

.r-hero__signal--live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: var(--r-radius-md);
    color: var(--r-color-success);
    font-size: var(--r-text-sm);
    font-weight: var(--r-weight-semibold);
    align-self: flex-start;
}
.r-hero__signal-dot {
    position: relative;
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--r-color-success);
    flex-shrink: 0;
}
.r-hero__signal-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--r-color-success);
    opacity: 0.4;
    animation: rHeroLivePulse 1.6s var(--r-ease-out) infinite;
}
@keyframes rHeroLivePulse {
    0%   { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(2.2); opacity: 0; }
}

.r-hero__signal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--r-color-line);
    border: 1px solid var(--r-color-line);
    border-radius: var(--r-radius-md);
    overflow: hidden;
}

.r-hero__metric {
    padding: var(--r-space-4);
    background: var(--r-color-surface);
    text-align: center;
}
.r-hero__metric-num {
    font-family: var(--r-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--r-weight-semibold);
    line-height: 1;
    color: var(--r-color-gold);
    letter-spacing: var(--r-tracking-tight);
    margin-block-end: 6px;
}
.r-hero__metric-lbl {
    font-size: 0.7rem;
    color: var(--r-color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--r-tracking-wide);
    font-weight: var(--r-weight-medium);
    line-height: 1.3;
}

.r-hero__testimonial {
    margin: 0;
    padding: var(--r-space-5);
    background: var(--r-color-surface-elev);
    border: 1px solid var(--r-color-line);
    border-left: 3px solid var(--r-color-gold);
    border-radius: var(--r-radius-md);
}
.r-hero__rating {
    color: var(--r-color-gold);
    font-size: var(--r-text-sm);
    letter-spacing: 2px;
    margin-block-end: var(--r-space-2);
}
.r-hero__quote {
    margin: 0 0 var(--r-space-3);
    color: var(--r-color-text-soft);
    font-style: italic;
    font-size: var(--r-text-sm);
    line-height: var(--r-leading-relaxed);
}
.r-hero__attribution {
    font-size: var(--r-text-xs);
    color: var(--r-color-text-muted);
}
.r-hero__attribution strong {
    color: var(--r-color-text);
    font-weight: var(--r-weight-semibold);
}

@media (max-width: 1024px) {
    .r-hero {
        min-height: auto;
        padding-block: clamp(100px, 12vh, 140px) clamp(48px, 6vh, 72px);
    }
    .r-hero__layout {
        grid-template-columns: 1fr;
        gap: var(--r-space-12);
    }
    .r-hero__title {
        font-size: clamp(2.25rem, 6vw, 3.5rem);
    }
}

@media (max-width: 640px) {
    .r-hero__title {
        font-size: clamp(1.85rem, 7vw, 2.4rem);
    }
    .r-hero__lede {
        font-size: var(--r-text-base);
    }
    .r-hero__cta .r-btn {
        flex: 1 1 auto;
    }
    .r-hero__signal-grid {
        grid-template-columns: 1fr 1fr;
    }
    .r-hero__signal-grid .r-hero__metric:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .r-hero__bg::before,
    .r-hero__bg::after,
    .r-hero__signal-dot::after { animation: none !important; }
}

.r-hero__video {
    position: relative;
    border-radius: var(--r-radius-xl);
    overflow: hidden;
    border: 1px solid var(--r-color-line-strong);
    box-shadow: var(--r-shadow-lg);
    background: linear-gradient(135deg, #0c1f3a, #1a365d);
}
.r-hero__video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}
.r-hero__video-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: blur(2px);
    transition: opacity var(--r-dur-normal) var(--r-ease-out);
}
.r-hero__video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: none;
    z-index: 3;
}
.r-hero__video--playing .r-hero__video-iframe { display: block; }
.r-hero__video--playing .r-hero__video-thumb,
.r-hero__video--playing .r-hero__video-play,
.r-hero__video--playing .r-hero__video-meta { display: none; }

.r-hero__video-play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(10, 25, 41, 0.3) 0%, rgba(10, 25, 41, 0.7) 60%, rgba(10, 25, 41, 0.95) 100%);
    border: 0;
    cursor: pointer;
    color: inherit;
    padding: 0;
    transition: background var(--r-dur-normal) var(--r-ease-out);
}
.r-hero__video-play:hover { background: linear-gradient(180deg, rgba(10, 25, 41, 0.2) 0%, rgba(10, 25, 41, 0.6) 60%, rgba(10, 25, 41, 0.92) 100%); }

.r-hero__video-pulse {
    position: absolute;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.22);
    animation: rHeroVideoPulse 2s var(--r-ease-out) infinite;
}
@keyframes rHeroVideoPulse {
    0%   { transform: scale(0.85); opacity: 0.7; }
    100% { transform: scale(1.4); opacity: 0; }
}

.r-hero__video-disc {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--r-color-gold), var(--r-color-gold-deep, #c5a028));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
    transition: transform var(--r-dur-normal) var(--r-ease-out);
}
.r-hero__video-disc svg { margin-left: 3px; }
.r-hero__video-play:hover .r-hero__video-disc { transform: scale(1.06); }

.r-hero__video-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}
.r-hero__video-meta-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--r-color-gold);
    flex-shrink: 0;
}
.r-hero__video-meta-text { flex: 1; min-width: 0; }
.r-hero__video-meta-text strong, .r-hero__video-meta-name { display: block; color: #fff; font-size: var(--r-text-sm); font-weight: var(--r-weight-semibold); line-height: 1.2; }
.r-hero__video-meta-text span:not(.r-hero__video-meta-name) { display: block; color: rgba(255, 255, 255, 0.7); font-size: 0.75rem; line-height: 1.3; margin-top: 2px; }
.r-hero__video-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: var(--r-weight-semibold);
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}
.r-hero__video-rec {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
    animation: rHeroVideoRec 1.5s var(--r-ease) infinite;
}
@keyframes rHeroVideoRec {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}

@media (prefers-reduced-motion: reduce) {
    .r-hero__video-pulse, .r-hero__video-rec { animation: none !important; }
}
