/**
 * ClipCut.ru - Home page compositions (Dark Neon)
 * Загружается только на главной ($page_extra_css). Использует токены main.css.
 * Содержит: свечения-орбы, двухколоночный hero с веером клипов, витрину, bento.
 */

/* ─── Glow orbs (только на главной) ─────────────────────────────── */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.glow-orb-1 {
    top: -200px; left: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.14) 0%, transparent 70%);
    animation: glow-pulse 4s ease-in-out infinite;
}
.glow-orb-2 {
    bottom: -200px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.11) 0%, transparent 70%);
    animation: glow-pulse 5s ease-in-out infinite 1.5s;
}
.glow-orb-3 {
    top: 40%; right: 20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.07) 0%, transparent 70%);
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes scan-line {
    0%   { top: 0%; opacity: 0.6; }
    100% { top: 100%; opacity: 0; }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO — заголовок-баннер на всю ширину + строка «текст | веер клипов»
═══════════════════════════════════════════════════════════════════ */
.hero--home {
    text-align: left;
    padding: var(--space-20) 0 var(--space-16);
    overflow: hidden;
}
/* Заголовок во всю ширину контейнера — крупный баннер в 2 строки */
.hero-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 7vw, 92px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 0 0 var(--space-10);
    overflow-wrap: break-word;
    text-wrap: balance;
}
/* Принудительный перенос на 2 строки на широких экранах */
.hero-headline__br { display: none; }
@media (min-width: 769px) {
    .hero-headline__br { display: inline; }
}
.hero--home .hero-inner {
    display: grid;
    grid-template-columns: 42fr 58fr;
    gap: 56px;
    align-items: center;
}
.hero--home .hero-content {
    text-align: left;
    max-width: 460px;
}
.hero--home .hero-subtitle {
    margin: 0 0 var(--space-6);
    line-height: 1.7;
}
.hero--home .hero-proof {
    margin: 0 0 var(--space-8);
}
.hero--home .hero-actions {
    justify-content: flex-start;
    margin-bottom: var(--space-4);
}
.hero--home .hero-note {
    text-align: left;
}

/* Right column */
.hero-visual {
    position: relative;
}
.hero-img-wrap {
    position: relative;
    animation: float 5s ease-in-out infinite;
}

/* Широкий веер из 4 реальных вертикальных клипов.
   aspect-ratio фиксирует пропорцию PNG (без сжатия по ширине),
   малое перекрытие — все 4 лица видны полностью. */
.clip-fan {
    position: relative;
    width: 100%;
    height: 460px;
}
.clip-fan .clip {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 134px;
    height: auto;
    aspect-ratio: 270 / 430;
    margin-left: -67px;
    margin-top: -107px;
    border-radius: 14px;
    filter:
        drop-shadow(0 16px 26px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 22px rgba(139, 92, 246, 0.35));
    transition: transform 0.45s cubic-bezier(.2, .7, .2, 1), filter 0.45s ease;
}
.clip-fan .clip-1 { transform: translateX(-192px) translateY(26px) rotate(-9deg); z-index: 1; }
.clip-fan .clip-2 { transform: translateX(-64px)  translateY(-6px) rotate(-3deg); z-index: 2; }
.clip-fan .clip-3 { transform: translateX(64px)   translateY(-6px) rotate(3deg);  z-index: 2; }
.clip-fan .clip-4 { transform: translateX(192px)  translateY(26px) rotate(9deg);  z-index: 1; }
.clip-fan:hover .clip-1 { transform: translateX(-210px) translateY(18px) rotate(-12deg); }
.clip-fan:hover .clip-4 { transform: translateX(210px)  translateY(18px) rotate(12deg); }
.clip-fan:hover .clip-2,
.clip-fan:hover .clip-3 {
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 30px rgba(236, 72, 153, 0.45));
}

.hero-badge-float {
    position: absolute;
    bottom: -14px;
    right: -14px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.25);
    z-index: 3;
}
.hero-badge-float-icon {
    width: 28px;
    height: 28px;
    background: rgba(34, 211, 238, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
}
.hero-badge-float-text {
    font-weight: 600;
    font-size: 13px;
    color: var(--color-cyan);
    line-height: 1.3;
}
.hero-badge-float-text small {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════════
   USER WALL — реальные клипы авторов (Фаза 2c, 2026-06-14)
═══════════════════════════════════════════════════════════════════ */
.user-wall {
    padding: var(--space-20) 0;
}
.uw-strip {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.uw-strip::-webkit-scrollbar { height: 6px; }
.uw-strip::-webkit-scrollbar-thumb { background: rgba(139, 92, 246, 0.35); border-radius: 3px; }

.uw-card {
    position: relative;
    flex: 0 0 auto;
    width: 160px;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    background: #0d0f17;
    box-shadow: 0 8px 24px rgba(10, 6, 30, 0.32);
    scroll-snap-align: start;
    display: block;
    cursor: pointer;
    user-select: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.uw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(139, 92, 246, 0.35);
}
.uw-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.uw-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 32px 10px 10px;
    background: linear-gradient(to top, rgba(6, 7, 12, 0.88) 0%, transparent 100%);
    pointer-events: none;
}
.uw-author {
    display: flex;
    align-items: center;
    gap: 6px;
}
.uw-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1.5px solid rgba(255,255,255,0.5);
}
.uw-avatar-init {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c4dff, #d6379e);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}
.uw-author-name {
    color: #e2e5f0;
    font-size: 0.73rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Кнопка play/pause в центре карточки */
.uw-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 4;
    opacity: 1;
    transition: opacity 0.18s ease;
}
.uw-play-btn svg { width: 17px; height: 17px; fill: #fff; }
.uw-play-btn .icon-play  { display: block; margin-left: 2px; }
.uw-play-btn .icon-pause { display: none; }
.uw-play-btn .icon-spin  { display: none; }

/* Видео играет — скрыть кнопку */
.uw-card.is-playing .uw-play-btn { opacity: 0; }

/* Буферизация — спиннер вместо иконки */
.uw-card.is-buffering .uw-play-btn { opacity: 1; }
.uw-card.is-buffering .uw-play-btn .icon-play  { display: none; }
.uw-card.is-buffering .uw-play-btn .icon-spin  { display: block; }
@keyframes uw-spin { to { transform: rotate(360deg); } }
.uw-card.is-buffering .uw-play-btn .icon-spin {
    animation: uw-spin 0.75s linear infinite;
    transform-origin: center;
}

@media (max-width: 575px) {
    .uw-card { width: 138px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SHOWCASE — «Что ClipCut отдаёт на выходе»
═══════════════════════════════════════════════════════════════════ */
.showcase-grid-row1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: var(--space-12);
}
.showcase-grid-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr 220px;
    gap: 20px;
    align-items: stretch;
    margin-top: 20px;
}

.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.showcase-card {
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.showcase-card-img {
    width: 100%;
    height: 248px;
    display: block;
    object-fit: contain;
    padding: 16px;
    background: radial-gradient(120% 120% at 50% 0%, rgba(139, 92, 246, 0.10), transparent 60%);
}
.showcase-card-img--cover {
    object-fit: cover;
    padding: 0;
    background: none;
}
.showcase-card-caption {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--color-text-light);
}
.showcase-card-caption strong {
    display: block;
    font-size: 15px;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 2px;
}

/* Virality HUD */
.virality-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}
.virality-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}
.virality-score {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 80px;
    line-height: 1;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.virality-max {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}
.virality-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.virality-pill {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}
.pill-green  { background: rgba(34, 197, 94, 0.15);  border: 1px solid rgba(34, 197, 94, 0.4);  color: #4ADE80; }
.pill-cyan   { background: rgba(34, 211, 238, 0.15); border: 1px solid rgba(34, 211, 238, 0.4); color: var(--color-cyan); }
.pill-violet { background: rgba(139, 92, 246, 0.15); border: 1px solid rgba(139, 92, 246, 0.4); color: #A78BFA; }
.pill-yellow { background: rgba(253, 224, 71, 0.15); border: 1px solid rgba(253, 224, 71, 0.4); color: var(--color-yellow); }
.virality-bar-wrap { width: 100%; }
.virality-bar-top {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}
.virality-bar-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    overflow: hidden;
}
.virality-bar-fill {
    height: 100%;
    width: 91%;
    background: var(--grad-main);
    border-radius: 100px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

/* CTA card in showcase row2 */
.showcase-cta-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-color: rgba(34, 211, 238, 0.2);
}

/* Face tracking */
.face-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.face-frame {
    position: relative;
    width: 124px;
    height: 198px;
    margin-bottom: 16px;
}
.face-frame-inner {
    position: absolute;
    inset: 0;
    background: #0c1014;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.25), inset 0 0 0 1px rgba(34, 211, 238, 0.25);
}
.face-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.face-ratio {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-cyan);
    background: rgba(8, 12, 16, 0.7);
    padding: 2px 6px;
    border-radius: 5px;
    backdrop-filter: blur(4px);
}
.face-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--color-cyan);
    border-style: solid;
}
.face-corner-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.face-corner-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.face-corner-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.face-corner-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.face-scan-line {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
    animation: scan-line 2s linear infinite;
    box-shadow: 0 0 6px var(--color-cyan);
}
.face-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(34, 211, 238, 0.5);
}
.face-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-cyan);
    line-height: 1.4;
}
.face-sublabel {
    font-size: 10px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════
   ROADMAP TEASER — сплит-экран (скоро)
═══════════════════════════════════════════════════════════════════ */
.roadmap {
    padding: var(--space-10) 0;
}
.roadmap-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 44px;
    align-items: center;
    padding: 32px 44px;
}
.roadmap-visual {
    position: relative;
}
.roadmap-visual img {
    width: 100%;
    display: block;
    border-radius: 18px;
    border: 1px solid var(--color-border);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
}
.roadmap-soon {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-cyan);
    background: rgba(8, 12, 16, 0.72);
    border: 1px solid rgba(34, 211, 238, 0.45);
    padding: 5px 12px 5px 10px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}
.roadmap-soon__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-cyan);
    box-shadow: 0 0 8px var(--color-cyan);
    animation: roadmap-pulse 1.6s ease-in-out infinite;
}
@keyframes roadmap-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}
.roadmap-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    margin: 10px 0 14px;
}
.roadmap-desc {
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0 0 12px;
    max-width: 560px;
}
.roadmap-note {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
}
@media (max-width: 768px) {
    .roadmap-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 24px;
        text-align: center;
    }
    .roadmap-visual {
        max-width: 200px;
        margin: 0 auto;
    }
    .roadmap-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURES BENTO (главная)
═══════════════════════════════════════════════════════════════════ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: var(--space-12);
}
.bento-card {
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.bento-card:hover .bento-icon { box-shadow: 0 0 20px currentColor; }
.bento-big {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    border-color: rgba(139, 92, 246, 0.4);
}
.bento-big::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}
.bento-icon-violet { background: rgba(139, 92, 246, 0.15); color: var(--color-primary); border: 1px solid rgba(139, 92, 246, 0.3); }
.bento-icon-cyan   { background: rgba(34, 211, 238, 0.15);  color: var(--color-cyan);   border: 1px solid rgba(34, 211, 238, 0.3); }
.bento-icon-pink   { background: rgba(236, 72, 153, 0.15);  color: var(--color-pink);   border: 1px solid rgba(236, 72, 153, 0.3); }
.bento-icon-yellow { background: rgba(253, 224, 71, 0.15);  color: var(--color-yellow); border: 1px solid rgba(253, 224, 71, 0.3); }
.bento-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}
.bento-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-light);
}
.bento-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bento-clips-count {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}
.bento-clips-label {
    font-size: 13px;
    color: var(--color-text-muted);
}
.bento-clip-preview {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.bento-clip-thumb {
    width: 34px;
    height: 54px;
    border-radius: 6px;
    object-fit: cover;
    background: rgba(139, 92, 246, 0.15);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.bento-clip-info { flex: 1; }
.bento-clip-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}
.bento-clip-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 4px;
}
.bento-clip-bar-fill {
    height: 100%;
    background: var(--grad-main);
    border-radius: 100px;
}
.bento-clip-meta {
    font-size: 11px;
    color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero--home .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-content { max-width: 560px; }
    .hero-visual { max-width: 560px; margin: 0 auto; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-big { grid-column: span 2; }
    .showcase-grid-row1 { grid-template-columns: 1fr; }
    .showcase-grid-row2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero--home { text-align: center; }
    .hero--home .hero-content { text-align: center; margin-left: auto; margin-right: auto; }
    .hero-headline { font-size: clamp(28px, 8vw, 44px); text-align: center; overflow-wrap: break-word; }
    .hero--home .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero--home .hero-actions { justify-content: center; }
    .hero--home .hero-note { text-align: center; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-big { grid-column: span 1; grid-template-columns: 1fr; }
    .showcase-grid-row1 { grid-template-columns: 1fr; }
    .glow-orb { display: none; }

    /* Clip fan — уменьшаем карточки и смещения, чтобы не вылезать за viewport */
    .clip-fan { height: 300px; }
    .clip-fan .clip { width: 90px; margin-left: -45px; margin-top: -80px; }
    .clip-fan .clip-1 { transform: translateX(-110px) translateY(18px) rotate(-9deg); }
    .clip-fan .clip-2 { transform: translateX(-37px)  translateY(-5px) rotate(-3deg); }
    .clip-fan .clip-3 { transform: translateX(37px)   translateY(-5px) rotate(3deg); }
    .clip-fan .clip-4 { transform: translateX(110px)  translateY(18px) rotate(9deg); }
    .clip-fan:hover .clip-1 { transform: translateX(-122px) translateY(12px) rotate(-12deg); }
    .clip-fan:hover .clip-4 { transform: translateX(122px)  translateY(12px) rotate(12deg); }

    /* Hero badge — убираем отрицательный отступ */
    .hero-badge-float { right: 8px; bottom: -8px; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 30px; }
}
