/* ==========================================================================
   DMNKND — Imperial Sakura Dragon Hero (v2)
   --------------------------------------------------------------------------
   Anasayfa kahramanı için air.inc tarzı akıcı, sinematik deneyim.
   Tema: Japon ağaçları, sakura, Asya ejderleri, kraliyet.
   ========================================================================== */

.imp-hero {
    --imp-h-bg-0:        #090a0e;
    --imp-h-bg-1:        #0c0d12;
    --imp-h-bg-2:        #13151c;
    --imp-h-ink:         #f7f4ed;
    --imp-h-ink-soft:    rgba(247, 244, 237, 0.72);
    --imp-h-ink-mute:    rgba(247, 244, 237, 0.5);
    --imp-h-line:        rgba(247, 244, 237, 0.10);
    --imp-h-gold:        #d4af37;
    --imp-h-gold-warm:   #f5d76e;
    --imp-h-crimson:     #4a4f5e;
    --imp-h-crimson-deep:#2f323c;
    --imp-h-sakura:      #f9c5cc;
    --imp-h-jade:        #0f7060;
    --imp-h-ease:        cubic-bezier(0.22, 1, 0.36, 1);
    --imp-h-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    color: var(--imp-h-ink);
    font-family: "Inter", "Poppins", system-ui, sans-serif;

    /* Tam viewport ortalama: navbar (140px) overlap'i göz önünde */
    margin-top: -140px;
    padding-top: 140px;
    padding-bottom: 0;
    padding-inline: clamp(1.25rem, 5vw, 4rem);
    /* İçeriği dikey ortalamak için kendisi flex */
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(120% 80% at 12% 8%,  rgba(100, 105, 120, 0.32), transparent 55%),
        radial-gradient(80% 60% at 88% 12%,  rgba(212, 175, 55, 0.22), transparent 60%),
        radial-gradient(140% 80% at 50% 110%, rgba(15, 112, 96, 0.16), transparent 60%),
        linear-gradient(180deg, var(--imp-h-bg-0) 0%, var(--imp-h-bg-1) 60%, #000 100%);
}

/* Vignette mat doku */
.imp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.55), transparent 65%),
        radial-gradient(ellipse at 50% 0%,   rgba(0, 0, 0, 0.4),  transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Mürekkep noktaları */
.imp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.05) 50%, transparent 51%),
        radial-gradient(1px 1px at 80% 60%, rgba(255, 255, 255, 0.04) 50%, transparent 51%),
        radial-gradient(1px 1px at 60% 80%, rgba(255, 255, 255, 0.03) 50%, transparent 51%);
    background-size: 240px 240px, 320px 320px, 200px 200px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
}

/* ============================ Atmosfer Katmanı =========================== */
.imp-hero__atmos {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

/* Yavaşça yüzen mor/altın blob'lar (parallax bağlanır) */
.imp-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    transform: translate3d(var(--imp-h-px, 0), var(--imp-h-py, 0), 0);
    transition: transform 0.6s var(--imp-h-ease);
}
.imp-hero__blob--crimson {
    width: 520px; height: 520px;
    top: -120px; left: -100px;
    background: radial-gradient(closest-side, var(--imp-h-crimson) 0%, var(--imp-h-crimson-deep) 50%, transparent 75%);
    animation: imp-blob-pulse 14s ease-in-out infinite alternate;
}
.imp-hero__blob--gold {
    width: 460px; height: 460px;
    bottom: -120px; right: -80px;
    background: radial-gradient(closest-side, var(--imp-h-gold-warm) 0%, var(--imp-h-gold) 45%, transparent 70%);
    animation: imp-blob-pulse 18s ease-in-out infinite alternate-reverse;
    --imp-h-px-mult: -1;
    --imp-h-py-mult: -1;
}
.imp-hero__blob--jade {
    width: 380px; height: 380px;
    top: 40%; right: 30%;
    background: radial-gradient(closest-side, var(--imp-h-jade) 0%, transparent 70%);
    opacity: 0.22;
    animation: imp-blob-pulse 22s ease-in-out infinite alternate;
}
@keyframes imp-blob-pulse {
    0%   { transform: translate3d(var(--imp-h-px, 0), var(--imp-h-py, 0), 0) scale(1); }
    100% { transform: translate3d(calc(var(--imp-h-px, 0) + 30px), calc(var(--imp-h-py, 0) - 20px), 0) scale(1.08); }
}

/* Sakura katmanı */
.imp-hero__sakura {
    position: absolute;
    inset: 0;
    bottom: -88px;
    pointer-events: none;
}
.imp-hero__sakura .imp-petal {
    position: absolute;
    top: -54px;
    width: 16px;
    height: 16px;
    background: radial-gradient(ellipse at 30% 30%,
        var(--imp-h-sakura) 0%,
        #f4a4b0 60%,
        rgba(244, 164, 176, 0) 100%);
    border-radius: 70% 30% 60% 40% / 50% 60% 40% 50%;
    opacity: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
    animation: imp-hero-petal var(--imp-petal-dur, 26s) linear infinite;
    animation-delay: var(--imp-petal-delay, 0s);
    will-change: transform, opacity;
}
.imp-hero__sakura .imp-petal::after {
    content: "";
    position: absolute;
    inset: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 60%);
    border-radius: inherit;
    mix-blend-mode: overlay;
}
@keyframes imp-hero-petal {
    0%   { opacity: 0; transform: translate3d(0, 0, 0) rotate(0deg); }
    8%   { opacity: 0.85; }
    92%  { opacity: 0.7; }
    100% {
        opacity: 0;
        transform:
            translate3d(var(--imp-petal-drift, 60px), calc(100vh + 140px), 0)
            rotate(var(--imp-petal-spin, 540deg));
    }
}

/* Bambu çizgileri (üst ve alt fırça vuruşları) */
.imp-hero__brush {
    position: absolute;
    pointer-events: none;
    color: rgba(245, 215, 110, 0.18);
}
.imp-hero__brush--top    { top: 18%; left: -60px; width: 480px; opacity: 0.5; }
.imp-hero__brush--bottom { bottom: 14%; right: -80px; width: 560px; opacity: 0.45; transform: rotate(8deg); }

/* ================================== Grid =============================== */
.imp-hero__inner {
    position: relative;
    z-index: 4;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    /* min-height YOK — parent flex zaten ortalıyor; içerik kendi yüksekliğini alır */
}

/* ============================== Sol Kolon =============================== */
.imp-hero__left { position: relative; z-index: 5; }

.imp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.45rem 0.9rem 0.45rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 215, 110, 0.30);
    background: rgba(245, 215, 110, 0.04);
    color: var(--imp-h-gold-warm);
    font-family: "Cinzel", "Inter", serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition:
        background 0.5s ease,
        border-color 0.5s ease,
        color 0.5s ease,
        box-shadow 0.5s ease,
        letter-spacing 0.5s ease,
        transform 0.45s var(--imp-h-ease);
}
.imp-hero__eyebrow::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 10%, rgba(245, 215, 110, 0.26) 45%, transparent 80%);
    transform: translateX(-130%);
    transition: transform 0.75s var(--imp-h-ease);
    pointer-events: none;
}
.imp-hero__eyebrow:hover {
    background: linear-gradient(120deg, rgba(245, 215, 110, 0.18), rgba(100, 105, 120, 0.18));
    border-color: var(--imp-h-gold-warm);
    color: var(--imp-h-ink);
    box-shadow: 0 0 0 1px rgba(245, 215, 110, 0.18), 0 12px 28px rgba(245, 215, 110, 0.22), 0 0 32px rgba(245, 215, 110, 0.18);
    letter-spacing: 0.26em;
    transform: translateY(-1px);
}
.imp-hero__eyebrow:hover::after {
    transform: translateX(120%);
}
.imp-hero__eyebrow .imp-eyebrow-rune {
    width: 22px; height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--imp-h-crimson);
    color: var(--imp-h-gold-warm);
    font-size: 0.78rem;
    box-shadow: 0 0 14px rgba(100, 105, 120, 0.5), inset 0 0 0 1px rgba(245, 215, 110, 0.4);
    animation: imp-rune-pulse 3.4s ease-in-out infinite;
    transition: transform 0.45s var(--imp-h-ease), box-shadow 0.45s ease;
}
.imp-hero__eyebrow:hover .imp-eyebrow-rune {
    transform: scale(1.14);
    box-shadow: 0 0 20px rgba(100, 105, 120, 0.82), 0 0 10px rgba(245, 215, 110, 0.7), inset 0 0 0 1px rgba(245, 215, 110, 0.55);
}
@keyframes imp-rune-pulse {
    0%, 100% { box-shadow: 0 0 14px rgba(100, 105, 120, 0.5), inset 0 0 0 1px rgba(245, 215, 110, 0.4); }
    50%      { box-shadow: 0 0 24px rgba(245, 215, 110, 0.55), inset 0 0 0 1px rgba(245, 215, 110, 0.6); }
}
.imp-hero__eyebrow .imp-eyebrow-text { white-space: nowrap; }

/* Devasa, akıcı başlık */
.imp-hero__title {
    margin: 1.25rem 0 1.5rem;
    font-family: "Cinzel", "Inter", serif;
    font-weight: 600;
    font-size: clamp(2.5rem, 6.6vw, 6rem);
    line-height: 0.96;
    letter-spacing: -0.015em;
    color: var(--imp-h-ink);
}
.imp-hero__title-row {
    display: block;
    overflow: hidden;
    line-height: 0.96;
    padding: 0.05em 0;
}
.imp-hero__title-word {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 0.95s var(--imp-h-ease),
        opacity 0.95s var(--imp-h-ease);
}
.imp-hero[data-imp-loaded="true"] .imp-hero__title-word { transform: translateY(0); opacity: 1; }
.imp-hero__title-word--accent {
    background: linear-gradient(120deg, var(--imp-h-gold-warm) 0%, var(--imp-h-gold) 40%, var(--imp-h-crimson) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
    padding-right: 0.05em;
}

/* Stagger ile her kelimeyi geciktir */
.imp-hero__title-word:nth-child(1) { transition-delay: 0.05s; }
.imp-hero__title-word:nth-child(2) { transition-delay: 0.18s; }
.imp-hero__title-word:nth-child(3) { transition-delay: 0.30s; }
.imp-hero__title-word:nth-child(4) { transition-delay: 0.42s; }
.imp-hero__title-row:nth-child(2) .imp-hero__title-word:nth-child(1) { transition-delay: 0.55s; }
.imp-hero__title-row:nth-child(2) .imp-hero__title-word:nth-child(2) { transition-delay: 0.66s; }
.imp-hero__title-row:nth-child(2) .imp-hero__title-word:nth-child(3) { transition-delay: 0.78s; }

/* Alt başlık */
.imp-hero__lede {
    max-width: 56ch;
    margin: 0;
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    line-height: 1.65;
    color: var(--imp-h-ink-soft);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--imp-h-ease) 0.85s, transform 0.8s var(--imp-h-ease) 0.85s;
}
.imp-hero[data-imp-loaded="true"] .imp-hero__lede { opacity: 1; transform: translateY(0); }
.imp-hero__lede strong {
    color: var(--imp-h-gold-warm);
    font-weight: 600;
    background: linear-gradient(120deg, var(--imp-h-gold-warm), var(--imp-h-sakura));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CTA grup */
.imp-hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--imp-h-ease) 1.05s, transform 0.8s var(--imp-h-ease) 1.05s;
}
.imp-hero[data-imp-loaded="true"] .imp-hero__cta-row { opacity: 1; transform: translateY(0); }

.imp-hero__btn {
    --btn-bg:    transparent;
    --btn-fg:    var(--imp-h-ink);
    --btn-bd:    var(--imp-h-line);
    --btn-glow:  transparent;

    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    border: 1px solid var(--btn-bd);
    background: var(--btn-bg);
    color: var(--btn-fg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition:
        transform 0.45s var(--imp-h-ease),
        background 0.45s ease,
        color 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
    backdrop-filter: blur(10px);
    will-change: transform;
}
.imp-hero__btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--btn-glow);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: -1;
}
.imp-hero__btn::after {
    content: "";
    position: absolute;
    inset: -50% -25%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    transform: translateX(-150%) rotate(8deg);
    transition: transform 0.7s var(--imp-h-ease);
    pointer-events: none;
    z-index: -1;
}
.imp-hero__btn:hover {
    transform: translateY(-2px);
    color: #1a1108;
    border-color: var(--btn-fg);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(245, 215, 110, 0.18);
}
.imp-hero__btn:hover::before { opacity: 1; }
.imp-hero__btn:hover::after  { transform: translateX(150%) rotate(8deg); }

.imp-hero__btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 999px;
    transition: transform 0.45s var(--imp-h-ease);
}
.imp-hero__btn:hover .imp-hero__btn-icon { transform: translateX(4px); }

.imp-hero__btn--primary {
    --btn-bg: linear-gradient(120deg, var(--imp-h-gold-warm), var(--imp-h-gold));
    --btn-fg: #1a1108;
    --btn-bd: rgba(245, 215, 110, 0.6);
    --btn-glow: linear-gradient(120deg, var(--imp-h-gold-warm), var(--imp-h-crimson));
}
.imp-hero__btn--primary:hover { color: #fff; }

.imp-hero__btn--ghost {
    --btn-bg: rgba(247, 244, 237, 0.04);
    --btn-fg: var(--imp-h-ink);
    --btn-bd: rgba(247, 244, 237, 0.2);
    --btn-glow: linear-gradient(120deg, rgba(245, 215, 110, 0.18), rgba(100, 105, 120, 0.18));
}
.imp-hero__btn--ghost:hover { color: var(--imp-h-gold-warm); border-color: var(--imp-h-gold-warm); }

.imp-hero__btn--outline {
    --btn-bg: transparent;
    --btn-fg: var(--imp-h-ink);
    --btn-bd: rgba(247, 244, 237, 0.2);
    --btn-glow: rgba(247, 244, 237, 0.06);
}
.imp-hero__btn--outline:hover { color: var(--imp-h-ink); border-color: var(--imp-h-ink); }

/* Marquee mini şerit (lede altı) */
.imp-hero__marquee {
    margin-top: 2.25rem;
    padding: 0.65rem 0;
    border-top: 1px solid var(--imp-h-line);
    border-bottom: 1px solid var(--imp-h-line);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--imp-h-ease) 1.25s, transform 0.8s var(--imp-h-ease) 1.25s;
}
.imp-hero[data-imp-loaded="true"] .imp-hero__marquee { opacity: 1; transform: translateY(0); }
.imp-hero__marquee-track {
    display: flex;
    width: max-content;
    min-width: 200%;
    gap: clamp(1.1rem, 2.2vw, 2rem);
    padding-left: 0;
    animation: imp-hero-marquee 30s linear infinite;
}
.imp-hero__marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
    color: var(--imp-h-ink-mute);
    font-family: "Cinzel", "Inter", serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}
.imp-hero__marquee-item .imp-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--imp-h-gold-warm);
    box-shadow: 0 0 10px rgba(245, 215, 110, 0.7);
}
@keyframes imp-hero-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================== Sağ Kolon =============================== */
.imp-hero__right {
    position: relative;
    height: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Torii kapısı + ejder pano */
.imp-hero__panel {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(155deg, rgba(247, 244, 237, 0.04) 0%, rgba(247, 244, 237, 0.01) 100%);
    border: 1px solid rgba(245, 215, 110, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(247, 244, 237, 0.08),
        0 30px 80px rgba(0, 0, 0, 0.6);
    transform-style: preserve-3d;
    transition: transform 0.6s var(--imp-h-ease);
    --rx: 0deg;
    --ry: 0deg;
    transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry));
}
.imp-hero__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(closest-side at 35% 25%, rgba(100, 105, 120, 0.32), transparent 65%),
        radial-gradient(closest-side at 70% 80%, rgba(245, 215, 110, 0.18), transparent 65%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
    z-index: 1;
}
.imp-hero__panel-emblem {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.6s var(--imp-h-ease);
    transform: translate3d(0, -30px, 40px);
}
.imp-hero__panel-emblem-aura {
    position: absolute;
    width: clamp(220px, 38vw, 360px);
    height: clamp(220px, 38vw, 360px);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(245, 215, 110, 0.28) 0%, transparent 58%),
        radial-gradient(circle at 35% 30%, rgba(100, 105, 120, 0.34) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(47, 50, 60, 0.26) 0%, transparent 62%);
    filter: blur(24px);
    animation: imp-hero-emblem-aura 7s ease-in-out infinite;
}
.imp-hero__panel-emblem-ring {
    position: absolute;
    width: clamp(250px, 42vw, 400px);
    height: clamp(250px, 42vw, 400px);
    border-radius: 50%;
    border: 1px solid rgba(245, 215, 110, 0.25);
}
.imp-hero__panel-emblem-ring--1 {
    border-style: dashed;
    border-color: rgba(245, 215, 110, 0.38);
    animation: imp-hero-emblem-spin 24s linear infinite;
}
.imp-hero__panel-emblem-ring--2 {
    width: clamp(200px, 34vw, 320px);
    height: clamp(200px, 34vw, 320px);
    border-color: rgba(100, 105, 120, 0.42);
    box-shadow: 0 0 18px rgba(100, 105, 120, 0.22);
    animation: imp-hero-emblem-spin 34s linear infinite reverse;
}
.imp-hero__panel-emblem-logo {
    position: relative;
    z-index: 1;
    width: clamp(210px, 34vw, 330px);
    height: clamp(210px, 34vw, 330px);
    object-fit: contain;
    filter:
        drop-shadow(0 0 16px rgba(245, 215, 110, 0.42))
        drop-shadow(0 0 28px rgba(100, 105, 120, 0.3))
        drop-shadow(0 14px 28px rgba(0, 0, 0, 0.55));
    animation: imp-hero-emblem-float 6s ease-in-out infinite;
}
@keyframes imp-hero-emblem-aura {
    0%, 100% { opacity: 0.88; transform: scale(1) rotate(0deg); }
    50%      { opacity: 1; transform: scale(1.06) rotate(6deg); }
}
@keyframes imp-hero-emblem-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes imp-hero-emblem-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-8px) rotate(1deg); }
}
.imp-hero__panel-dragon {
    position: absolute;
    inset: auto -10% -8% auto;
    width: 100%;
    height: auto;
    color: rgba(245, 215, 110, 0.32);
    z-index: 3;
    pointer-events: none;
    transform: translateZ(60px);
    filter: drop-shadow(0 6px 30px rgba(245, 215, 110, 0.18));
    animation: imp-dragon-breathe 8s ease-in-out infinite;
}
@keyframes imp-dragon-breathe {
    0%, 100% { transform: translateZ(60px) translateY(0) scale(1); opacity: 0.92; }
    50%      { transform: translateZ(60px) translateY(-6px) scale(1.02); opacity: 1; }
}
.imp-hero__panel-torii {
    position: absolute;
    inset: 14% 16% auto 16%;
    height: 36%;
    z-index: 2;
    color: rgba(171, 175, 188, 0.92);
    transform: translateZ(20px);
    pointer-events: none;
    filter: drop-shadow(0 6px 20px rgba(100, 105, 120, 0.35));
    opacity: 0.9;
}

/* Sayısal istatistik kartları (panel altı) */
.imp-hero__stats {
    position: absolute;
    inset: auto 10% 6% 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    z-index: 4;
    transform: translateZ(80px);
}
.imp-hero__stat {
    padding: 0.7rem 0.65rem;
    border-radius: 14px;
    background: rgba(9, 10, 14, 0.55);
    border: 1px solid rgba(245, 215, 110, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    transition: transform 0.45s var(--imp-h-ease), border-color 0.45s ease, background 0.45s ease;
}
.imp-hero__stat:hover {
    transform: translateY(-3px);
    border-color: var(--imp-h-gold-warm);
    background: rgba(20, 8, 12, 0.7);
}
.imp-hero__stat-num {
    display: block;
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.05;
    color: var(--imp-h-gold-warm);
    text-shadow: 0 0 14px rgba(245, 215, 110, 0.25);
}
.imp-hero__stat-lbl {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--imp-h-ink-soft);
}

/* Panel reveal */
.imp-hero__right { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--imp-h-ease) 0.7s, transform 0.9s var(--imp-h-ease) 0.7s; }
.imp-hero[data-imp-loaded="true"] .imp-hero__right { opacity: 1; transform: translateY(0); }

/* ============================== Scroll cue =============================== */
.imp-hero__scroll {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    color: var(--imp-h-ink-mute);
    font-family: "Cinzel", serif;
    font-size: 0.74rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    transition: color 0.35s ease, opacity 0.8s var(--imp-h-ease) 1.45s;
}
.imp-hero[data-imp-loaded="true"] .imp-hero__scroll { opacity: 1; }
.imp-hero__scroll:hover { color: var(--imp-h-gold-warm); }
.imp-hero__scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, var(--imp-h-gold-warm) 40%, var(--imp-h-gold-warm) 60%, transparent);
    background-size: 1px 200%;
    background-position: 0 0;
    animation: imp-scroll-flow 2.6s linear infinite;
}
@keyframes imp-scroll-flow {
    from { background-position: 0 -100%; }
    to   { background-position: 0 100%; }
}

/* ============================== Responsive ============================== */
/* Dar ekranda (1100px altı): panel ÜSTTE, metin ALTTA — Hakkımızda gibi */
@media (max-width: 1100px) {
    .imp-hero__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-block: 1rem;
        align-items: center;
        justify-items: center;
    }
    /* Panel ilk sırada (üstte) */
    .imp-hero__right {
        order: 0;
        grid-row: 1;
        min-height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    /* Sol içerik ikinci sırada (altta) */
    .imp-hero__left {
        order: 1;
        grid-row: 2;
        width: 100%;
        max-width: 640px;
    }
    .imp-hero__panel {
        max-width: 360px;
        aspect-ratio: 4 / 5;
        margin: 0 auto;
    }
    .imp-hero__lede { margin-inline: auto; }
    .imp-hero__cta-row { justify-content: center; }
    .imp-hero__marquee { margin-inline: auto; max-width: 560px; }
    .imp-hero__brush--top { width: 320px; opacity: 0.4; }
    .imp-hero__brush--bottom { display: none; }
}

/* Tablet/orta ekran */
@media (max-width: 760px) {
    .imp-hero {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 0 !important;
        padding-top: calc(78px + env(safe-area-inset-top, 0px)) !important;
    }
    .imp-hero__inner,
    .imp-hero__left,
    .imp-hero__right {
        visibility: visible !important;
        opacity: 1 !important;
    }
    .imp-hero__panel { max-width: 320px; }
    .imp-hero__title { font-size: clamp(2.2rem, 10vw, 3.6rem); }
}

/* Mobil */
@media (max-width: 560px) {
    .imp-hero {
        margin-top: 0;
        padding-top: calc(64px + env(safe-area-inset-top, 0px));
        padding-inline: clamp(0.75rem, 4vw, 1.1rem);
        min-height: calc(100dvh - 64px);
        overflow: visible;
        align-items: center;
        justify-content: center;
        padding-bottom: 0.8rem;
    }
    .imp-hero__title-word,
    .imp-hero__eyebrow,
    .imp-hero__lede,
    .imp-hero__cta-row,
    .imp-hero__marquee,
    .imp-hero__right {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
    .imp-hero__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0.9rem;
        padding-block: 0.35rem;
        position: relative;
        z-index: 6;
    }
    .imp-hero__left,
    .imp-hero__right {
        display: block !important;
        width: 100%;
        max-width: 100%;
    }
    .imp-hero__left { order: 1; }
    .imp-hero__right {
        order: 0;
        min-height: auto;
    }
    .imp-hero__title { font-size: clamp(1.9rem, 11vw, 3rem); margin-bottom: 1rem; }
    .imp-hero__lede { font-size: 0.95rem; }
    .imp-hero__cta-row { gap: 0.55rem; margin-top: 1.25rem; }
    .imp-hero__btn { padding: 0.72rem 0.95rem; font-size: 0.76rem; }
    .imp-hero__panel {
        aspect-ratio: 1 / 1;
        width: min(90vw, 255px);
        max-width: 255px;
    }
    .imp-hero__panel-emblem {
        transform: translate3d(0, -14px, 40px);
    }
    .imp-hero__panel-emblem-logo { width: 156px; height: 156px; }
    .imp-hero__stats { inset: auto 6.5% 4.5% 6.5%; gap: 0.36rem; }
    .imp-hero__stat-num { font-size: 1.05rem; }
    .imp-hero__stat-lbl { font-size: 0.58rem; letter-spacing: 0.08em; }
    .imp-hero__scroll { display: none; }
    .imp-hero__eyebrow {
        max-width: 100%;
        font-size: 0.62rem;
        letter-spacing: 0.14em;
        padding: 0.4rem 0.7rem 0.4rem 0.5rem;
    }
    .imp-hero__eyebrow .imp-eyebrow-text {
        white-space: normal;
        line-height: 1.35;
    }
    .imp-hero__marquee {
        margin-top: 1.35rem;
        max-width: 100%;
    }
    .imp-hero__marquee-item {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }
}

@media (max-width: 420px) {
    .imp-hero {
        padding-inline: 0.7rem;
        min-height: calc(100dvh - 60px);
        padding-top: calc(60px + env(safe-area-inset-top, 0px));
    }
    .imp-hero__panel {
        width: min(92vw, 238px);
        max-width: 238px;
    }
    .imp-hero__panel-emblem {
        transform: translate3d(0, -10px, 40px);
    }
    .imp-hero__panel-emblem-logo { width: 146px; height: 146px; }
    .imp-hero__stats {
        inset: auto 5% 4% 5%;
        gap: 0.28rem;
    }
    .imp-hero__stat {
        padding: 0.55rem 0.35rem;
        border-radius: 12px;
    }
    .imp-hero__stat-num { font-size: 0.94rem; }
    .imp-hero__stat-lbl {
        font-size: 0.5rem;
        letter-spacing: 0.06em;
    }
    .imp-hero__cta-row {
        width: 100%;
        justify-content: center;
    }
    .imp-hero__btn {
        flex: 1 1 calc(50% - 0.4rem);
        justify-content: center;
        min-width: 0;
        font-size: 0.72rem;
        padding: 0.66rem 0.58rem;
    }
}

/* ============================ A11y / Motion ============================== */
@media (prefers-reduced-motion: reduce) {
    .imp-hero__title-word,
    .imp-hero__lede,
    .imp-hero__cta-row,
    .imp-hero__marquee,
    .imp-hero__right,
    .imp-hero__scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .imp-hero__blob,
    .imp-hero__panel-dragon,
    .imp-hero__sakura .imp-petal,
    .imp-hero__marquee-track,
    .imp-eyebrow-rune,
    .imp-hero__scroll-line { animation: none !important; }
    .imp-hero__panel { transform: none !important; }
}
