/* =============================================================
   EFSANE GRUP · DESTEK MASASI — HERO PREMIUM (v2)
   Yeniden düzenleme:
     • Sol hizalı asimetrik grid (metin solda, sistem paneli sağda)
     • Kare kare animasyonlu grid arka plan (canvas)
     • Ambient efektler: aurora çok sade, breath glow, foil borders
     • Session cards ince yatay şerit
   Palet, tipografi, marka aynı kalır.
   ============================================================= */

:root {
    --brand-glow: 0 0 60px rgba(47, 179, 173, 0.35);
    --brand-2: #3ECEC7;
    --hero-ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- 1. Hero konteyneri sıfırla (form.css'in center yapısını override) --- */
.hero {
    position: relative;
    isolation: isolate;
    padding-top: clamp(48px, 8vh, 96px);
    padding-bottom: clamp(28px, 4vh, 48px);
    min-height: calc(100vh - 62px);
    min-height: calc(100svh - 62px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hero__main {
    flex: 0 1 auto;
    align-items: flex-start !important;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    max-width: 700px;
}

/* --- 2. Split grid (sol metin, sağ panel) --------------------- */
.hero__split {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 420px);
    gap: clamp(28px, 4vw, 72px);
    align-items: center;
    padding: clamp(20px, 5vh, 60px) 0;
}
@media (max-width: 960px) {
    .hero__split {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 20px;
    }
}

/* --- 3. Animasyonlu kare kare grid (canvas) --- tüm sayfa yayılır - */
.hero-grid {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
    -webkit-mask-image:
        radial-gradient(ellipse 90% 80% at 50% 45%,
            #000 25%,
            rgba(0, 0, 0, 0.55) 65%,
            transparent 100%);
            mask-image:
        radial-gradient(ellipse 90% 80% at 50% 45%,
            #000 25%,
            rgba(0, 0, 0, 0.55) 65%,
            transparent 100%);
}
/* Static grid overlay (var olan .backdrop::before'u kapat — canvas grid var) */
.backdrop::before { display: none !important; }
.backdrop::after { display: none !important; }
.hero::after { display: none !important; }

/* --- 4. Backdrop simpler (aurora fixed'i kapat, sadece hero canvas kalsın) */
.hero-aurora { display: none !important; }
.hero-particles { display: none !important; }
.hero-emblem { display: none !important; }
.hero__main::before { display: none !important; }
.backdrop::after {
    /* radial teal glow'u yumuşat */
    opacity: 0.55;
    top: -200px;
    right: -100px;
    width: 620px;
    height: 620px;
}

/* --- 5. Eyebrow — sola kaydırıldı, badge stili ---------------- */
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 clamp(20px, 3vh, 30px);
    padding: 7px 14px 7px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: linear-gradient(135deg,
        rgba(47, 179, 173, 0.08),
        rgba(47, 179, 173, 0.02));
    backdrop-filter: blur(8px);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hero__eyebrow::before,
.hero__eyebrow::after { display: none !important; }
.hero__eyebrow .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 10px rgba(47, 179, 173, 0.9);
    animation: eyebrowDot 2.4s var(--hero-ease) infinite;
}
@keyframes eyebrowDot {
    0%, 100% { box-shadow: 0 0 8px rgba(47, 179, 173, 0.6); }
    50%      { box-shadow: 0 0 16px rgba(47, 179, 173, 1); }
}

/* --- 6. H1 — sola hizalı, daha büyük ------------------------- */
.hero h1 {
    text-align: left;
    margin: 0 0 clamp(22px, 3.5vh, 34px);
    font-size: clamp(58px, min(9.8vw, 12.6vh), 128px);
    line-height: 0.92;
    letter-spacing: -0.028em;
    max-width: 13ch;
    font-weight: 600;
}
.hero h1 em {
    font-style: normal;
    color: var(--brand);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 40px rgba(47, 179, 173, 0.4);
}
.hero h1 em::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -0.05em;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    animation: emUnderline 1.4s var(--hero-ease) 1.2s forwards;
}
@keyframes emUnderline {
    to { opacity: 1; transform: scaleX(1); }
}

/* --- 7. Lead — sola --------------------------------------------- */
.hero__lead {
    text-align: left;
    margin: 0 0 clamp(28px, 4vh, 44px);
    max-width: 54ch;
    font-size: clamp(15.5px, 1.15vw, 17.5px);
    color: var(--ink-2);
    line-height: 1.6;
}

/* --- 8. CTA row --------------------------------------------------- */
.hero__cta {
    justify-content: flex-start !important;
    gap: 14px;
}
.hero__hint {
    text-align: left !important;
    margin: 18px 0 0 !important;
    color: var(--ink-3);
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.1em;
}

/* --- 9. Sağ panel (Destek Kuyruğu) --------------------------- */
.hero__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px 26px 22px;
    border-radius: 14px;
    background:
        radial-gradient(ellipse 130% 60% at 100% 0%,
            rgba(47, 179, 173, 0.14) 0%,
            transparent 55%),
        linear-gradient(160deg,
            rgba(22, 37, 44, 0.92) 0%,
            rgba(12, 21, 26, 0.94) 100%);
    border: 1px solid var(--line-strong);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 40px 100px -40px rgba(0, 0, 0, 0.95),
        0 0 80px -30px rgba(47, 179, 173, 0.5);
    overflow: hidden;
    min-height: 440px;
}
.hero__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(47, 179, 173, 0.6),
        rgba(47, 179, 173, 0) 30%,
        rgba(47, 179, 173, 0) 70%,
        rgba(62, 206, 199, 0.55));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}
.hero__panel::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47, 179, 173, 0.65), transparent);
    opacity: 0.6;
    animation: panelScan 6s var(--hero-ease) infinite;
    pointer-events: none;
    z-index: 3;
}
@keyframes panelScan {
    0%   { top: 15%; opacity: 0; }
    12%  { opacity: 0.7; }
    50%  { top: 85%; opacity: 0.7; }
    62%  { opacity: 0; }
    100% { top: 85%; opacity: 0; }
}

/* Ambient rings (panel arkasında dönen konsantrik halkalar) */
.hero__panel-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 380px;
    transform: translate(-50%, -30%);
    pointer-events: none;
    opacity: 0.55;
    z-index: 0;
}
.hero__panel-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(47, 179, 173, 0.22);
    transform: translate(-50%, -50%);
}
.hero__panel-ring--a {
    width: 100%;
    height: 100%;
    animation: ringSpin 40s linear infinite;
    border-style: dashed;
}
.hero__panel-ring--a::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-2);
    transform: translateX(-50%);
    box-shadow: 0 0 12px 3px rgba(62, 206, 199, 0.75);
}
.hero__panel-ring--b {
    width: 72%;
    height: 72%;
    animation: ringSpin 26s linear infinite reverse;
    border-color: rgba(47, 179, 173, 0.35);
}
.hero__panel-ring--b::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    transform: translateX(-50%);
    box-shadow: 0 0 14px 4px rgba(47, 179, 173, 0.7);
}
.hero__panel-ring--c {
    width: 46%;
    height: 46%;
    animation: ringSpin 18s linear infinite;
    border-color: rgba(62, 206, 199, 0.4);
    border-style: dotted;
}
@keyframes ringSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Panel content wrapper üstünde kalsın */
.hero__panel-head,
.hero__panel-orbit,
.hero__panel-bars,
.hero__panel-meta {
    position: relative;
    z-index: 4;
}

.hero__panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.hero__panel-titles {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero__panel-kicker {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.hero__panel-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1;
}
.hero__panel-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(47, 179, 173, 0.4);
    background: rgba(47, 179, 173, 0.1);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand);
    white-space: nowrap;
}
.hero__panel-status .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    animation: eyebrowDot 2s var(--hero-ease) infinite;
}

/* Orbit ekranı (core + gezen düğümler) */
.hero__panel-orbit {
    position: relative;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0 -6px;
}
.hero__panel-orbit::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid rgba(47, 179, 173, 0.22);
    transform: translate(-50%, -50%);
}
.hero__panel-orbit::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px dashed rgba(62, 206, 199, 0.28);
    transform: translate(-50%, -50%);
}
.hero__panel-core {
    position: relative;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--brand);
    background:
        radial-gradient(circle at 32% 30%,
            rgba(62, 206, 199, 0.5) 0%,
            rgba(47, 179, 173, 0.28) 40%,
            rgba(8, 14, 17, 0.7) 100%);
    border: 1px solid rgba(47, 179, 173, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 14px 42px -8px rgba(47, 179, 173, 0.6),
        0 0 60px rgba(47, 179, 173, 0.32);
    animation: coreFloat 5s ease-in-out infinite;
    z-index: 3;
}
@keyframes coreFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-4px) scale(1.04); }
}
.hero__panel-orbit-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-2);
    box-shadow: 0 0 14px 4px rgba(62, 206, 199, 0.7);
    transform-origin: 0 0;
}
.hero__panel-orbit-node:nth-child(1) {
    animation: orbitNode 8s linear infinite;
}
.hero__panel-orbit-node:nth-child(2) {
    animation: orbitNode 6s linear infinite -2s;
    width: 6px;
    height: 6px;
    background: var(--brand);
}
.hero__panel-orbit-node:nth-child(3) {
    animation: orbitInner 5s linear infinite;
    width: 5px;
    height: 5px;
    background: rgba(228, 236, 247, 0.9);
    box-shadow: 0 0 10px 2px rgba(228, 236, 247, 0.5);
}
@keyframes orbitNode {
    from { transform: rotate(0deg) translateX(75px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(75px) rotate(-360deg); }
}
@keyframes orbitInner {
    from { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    to   { transform: rotate(-360deg) translateX(50px) rotate(360deg); }
}

/* Bars — panel altına canlı sinyal göstergesi */
.hero__panel-bars {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    gap: 4px;
    align-items: end;
    height: 62px;
    padding: 4px 0 0;
}
.hero__panel-bars span {
    display: block;
    width: 100%;
    height: 56px;
    background: linear-gradient(180deg, var(--brand-2), var(--brand-dim));
    border-radius: 2px;
    transform-origin: bottom;
    transform: scaleY(0.18);
    opacity: 0.4;
    box-shadow: 0 0 8px rgba(47, 179, 173, 0.4);
    animation: barPulse 3.4s var(--hero-ease) infinite;
    will-change: transform, opacity;
}
.hero__panel-bars span:nth-child(1) { animation-delay: 0.0s; --bh: 0.55; }
.hero__panel-bars span:nth-child(2) { animation-delay: 0.15s; --bh: 0.72; }
.hero__panel-bars span:nth-child(3) { animation-delay: 0.30s; --bh: 0.40; }
.hero__panel-bars span:nth-child(4) { animation-delay: 0.45s; --bh: 0.85; }
.hero__panel-bars span:nth-child(5) { animation-delay: 0.60s; --bh: 0.60; }
.hero__panel-bars span:nth-child(6) { animation-delay: 0.10s; --bh: 0.30; }
.hero__panel-bars span:nth-child(7) { animation-delay: 0.55s; --bh: 0.90; }
.hero__panel-bars span:nth-child(8) { animation-delay: 0.35s; --bh: 0.48; }
.hero__panel-bars span:nth-child(9) { animation-delay: 0.75s; --bh: 0.68; }
.hero__panel-bars span:nth-child(10) { animation-delay: 0.20s; --bh: 0.55; }
.hero__panel-bars span:nth-child(11) { animation-delay: 0.90s; --bh: 0.78; }
.hero__panel-bars span:nth-child(12) { animation-delay: 0.05s; --bh: 0.42; }
.hero__panel-bars span:nth-child(13) { animation-delay: 0.65s; --bh: 0.62; }
.hero__panel-bars span:nth-child(14) { animation-delay: 0.40s; --bh: 0.35; }
.hero__panel-bars span:nth-child(15) { animation-delay: 0.85s; --bh: 0.80; }
.hero__panel-bars span:nth-child(16) { animation-delay: 0.25s; --bh: 0.55; }
.hero__panel-bars span:nth-child(17) { animation-delay: 0.70s; --bh: 0.48; }
.hero__panel-bars span:nth-child(18) { animation-delay: 0.15s; --bh: 0.66; }
.hero__panel-bars span:nth-child(19) { animation-delay: 0.50s; --bh: 0.38; }
.hero__panel-bars span:nth-child(20) { animation-delay: 0.80s; --bh: 0.72; }

@keyframes barPulse {
    0%, 100% { transform: scaleY(0.15); opacity: 0.3; }
    45%      { transform: scaleY(var(--bh, 0.6)); opacity: 0.9; }
    55%      { transform: scaleY(var(--bh, 0.6)); opacity: 0.9; }
}

.hero__panel-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(47, 179, 173, 0.18);
}
.hero__panel-meta > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.hero__panel-k {
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.hero__panel-v {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 500;
}
.hero__panel-v i {
    font-style: normal;
    color: var(--brand);
}

/* --- 10. Reveal sıralamaları ---------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
    animation: revealIn 0.9s var(--hero-ease) forwards;
}
[data-reveal="1"] { animation-delay: 0.05s; }
[data-reveal="2"] { animation-delay: 0.18s; }
[data-reveal="3"] { animation-delay: 0.42s; }
[data-reveal="4"] { animation-delay: 0.30s; }  /* panel sağdan */
[data-reveal="5"] { animation-delay: 0.62s; }
[data-reveal="6"] { animation-delay: 0.78s; }
[data-reveal="7"] { animation-delay: 0.9s; }
@keyframes revealIn {
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero__panel[data-reveal] {
    transform: translateX(24px) scale(0.98);
    filter: blur(8px);
}
.hero__panel[data-reveal] { animation-name: panelIn; }
@keyframes panelIn {
    to { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}

/* H1 kelime staggered reveal */
.h1-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.45em);
    filter: blur(8px);
    animation: h1WordIn 0.9s var(--hero-ease) forwards;
}
@keyframes h1WordIn {
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* --- 11. Magnetic + shimmer CTA (aynı kalır) ------------------ */
.btn--magnetic {
    position: relative;
    overflow: hidden;
    transition: transform 0.28s var(--hero-ease),
                box-shadow 0.4s var(--hero-ease);
    will-change: transform;
}
.btn--magnetic .btn__label {
    position: relative;
    z-index: 2;
}
.btn--magnetic .btn__shimmer {
    position: absolute;
    top: 0; bottom: 0;
    left: -60%;
    width: 45%;
    background: linear-gradient(105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.24) 45%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.24) 55%,
        transparent 100%);
    transform: skewX(-18deg);
    pointer-events: none;
    animation: btnShimmer 3.8s var(--hero-ease) infinite;
    z-index: 1;
}
@keyframes btnShimmer {
    0%   { left: -60%; }
    55%  { left: 130%; }
    100% { left: 130%; }
}
.btn--magnetic:hover {
    box-shadow:
        0 14px 34px -10px rgba(47, 179, 173, 0.7),
        0 0 0 4px rgba(47, 179, 173, 0.14);
}
.btn--info {
    transition: transform 0.28s var(--hero-ease),
                border-color 0.28s var(--hero-ease),
                background 0.28s var(--hero-ease);
}
.btn--info:hover {
    transform: translateY(-1px);
    border-color: var(--brand);
    background: rgba(47, 179, 173, 0.08);
}

/* --- 12. hero__foot session cards — premium bağımsız kartlar --- */
.hero__foot {
    margin-top: clamp(28px, 4vh, 48px);
    padding-top: clamp(20px, 3vh, 34px);
    position: relative;
    z-index: 2;
}
.hero__footline {
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-3);
    font-size: 11px;
    letter-spacing: 0.18em;
}
.session {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    padding: 0 !important;
}
.session__cell {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    padding: 26px 22px !important;
    min-height: 104px !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 16px !important;
    background:
        linear-gradient(160deg,
            rgba(22, 37, 44, 0.9) 0%,
            rgba(12, 21, 26, 0.94) 100%) !important;
    overflow: hidden;
    transition: transform 0.4s var(--hero-ease),
                border-color 0.4s var(--hero-ease),
                box-shadow 0.4s var(--hero-ease) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 28px 70px -30px rgba(0, 0, 0, 0.95) !important;
}
.session__cell::before {
    /* Foil border top */
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg,
        transparent,
        rgba(47, 179, 173, 0.7) 30%,
        rgba(62, 206, 199, 0.9) 50%,
        rgba(47, 179, 173, 0.7) 70%,
        transparent) !important;
    opacity: 0.6 !important;
    transition: opacity 0.4s var(--hero-ease);
    z-index: 2;
    bottom: auto !important;
}
.session__cell::after {
    /* Diagonal shimmer on hover */
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(47, 179, 173, 0.55),
        rgba(47, 179, 173, 0) 30%,
        rgba(47, 179, 173, 0) 70%,
        rgba(62, 206, 199, 0.5));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s var(--hero-ease);
    display: block !important;
}
.session__cell:hover {
    transform: translateY(-3px) !important;
    border-color: var(--brand-dim) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 30px 60px -25px rgba(0, 0, 0, 0.95),
        0 0 40px -10px rgba(47, 179, 173, 0.4) !important;
}
.session__cell:hover::before {
    opacity: 1 !important;
}
.session__cell:hover::after {
    opacity: 1 !important;
}
.session__ic {
    flex: none !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    display: grid !important;
    place-items: center !important;
    background:
        radial-gradient(circle at 30% 30%,
            rgba(62, 206, 199, 0.28),
            rgba(47, 179, 173, 0.1) 60%,
            rgba(8, 14, 17, 0.5) 100%) !important;
    border: 1px solid rgba(47, 179, 173, 0.4) !important;
    color: var(--brand) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 8px 22px -6px rgba(47, 179, 173, 0.45) !important;
    transition: transform 0.4s var(--hero-ease),
                box-shadow 0.4s var(--hero-ease);
}
.session__ic svg {
    width: 19px !important;
    height: 19px !important;
}
.session__cell:hover .session__ic {
    transform: scale(1.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 10px 24px -6px rgba(47, 179, 173, 0.65) !important;
}
.session__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    flex: 1;
}
.session__k {
    font-family: var(--font-mono) !important;
    font-size: 9.5px !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: var(--ink-3) !important;
    margin: 0 !important;
    line-height: 1 !important;
}
.session__v {
    font-family: var(--font-mono) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--ink) !important;
    line-height: 1.35 !important;
    letter-spacing: 0.01em;
}

/* --- 13. Mobil düzenleme -------------------------------------- */
@media (max-width: 960px) {
    .hero h1 {
        font-size: clamp(38px, 10vw, 60px);
        max-width: none;
    }
    .hero__panel {
        max-width: 480px;
        margin: 0 auto;
    }
    .session {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
@media (max-width: 560px) {
    .hero__cta { flex-direction: column; align-items: stretch !important; }
    .hero__cta .btn { width: 100%; }
    .hero__panel-bars { height: 72px; }
    .hero__panel-bars span { height: 68px; }
    .session { grid-template-columns: 1fr !important; }
}

/* --- 14. Reduced motion --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .hero-grid,
    .btn--magnetic .btn__shimmer,
    .hero__panel::after,
    .hero__panel-bars span,
    .hero__eyebrow .live-dot,
    .hero h1 em::after {
        animation: none !important;
    }
    [data-reveal],
    .h1-word {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}


/* =============================================================
   FORM PREMIUM POLISH — mevcut form.css üzerine minör lüks katman
   ============================================================= */

/* Section head — teal accent underline */
.work .section-head {
    position: relative;
    padding-bottom: 26px !important;
    margin-bottom: 34px !important;
    border-bottom: 1px solid var(--line) !important;
}
.work .section-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-2), var(--brand-dim), transparent);
    box-shadow: 0 0 12px rgba(47, 179, 173, 0.6);
}
.work .section-head h2 {
    background: linear-gradient(180deg, #FFFFFF 0%, #E9F1F3 55%, #93A9B3 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Blok fieldset — foil kenar + hover elevation */
.work .block {
    position: relative;
    background: linear-gradient(160deg,
        rgba(22, 37, 44, 0.72) 0%,
        rgba(12, 21, 26, 0.82) 100%) !important;
    border: 1px solid var(--line-strong) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 24px 60px -30px rgba(0, 0, 0, 0.85) !important;
    transition: border-color 0.4s var(--hero-ease),
                box-shadow 0.4s var(--hero-ease),
                transform 0.4s var(--hero-ease);
    overflow: visible !important;
}
.work .block::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(47, 179, 173, 0.45),
        rgba(47, 179, 173, 0) 30%,
        rgba(47, 179, 173, 0) 70%,
        rgba(62, 206, 199, 0.4));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s var(--hero-ease);
}
.work .block:focus-within {
    border-color: var(--brand-dim) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 28px 60px -24px rgba(0, 0, 0, 0.9),
        0 0 40px -12px rgba(47, 179, 173, 0.35) !important;
}
.work .block:focus-within::before {
    opacity: 1;
}
.work .block__head {
    padding-bottom: 18px !important;
    margin-bottom: 26px !important;
    border-bottom: 1px solid rgba(47, 179, 173, 0.14) !important;
}
.work .block__title {
    letter-spacing: 0.14em !important;
    font-size: 15px !important;
    color: var(--ink) !important;
    position: relative;
    padding-left: 14px;
}
.work .block__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 14px;
    background: linear-gradient(180deg, var(--brand-2), var(--brand-dim));
    border-radius: 2px;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(47, 179, 173, 0.5);
}

/* Input control — premium focus + soft hover */
.work .control {
    background: rgba(10, 18, 22, 0.7) !important;
    border-color: rgba(47, 179, 173, 0.18) !important;
    border-radius: 8px !important;
    padding: 13px 14px !important;
    font-size: 14.5px !important;
    transition: border-color 0.3s var(--hero-ease),
                background 0.3s var(--hero-ease),
                box-shadow 0.3s var(--hero-ease) !important;
}
.work .control:hover:not(:focus) {
    border-color: rgba(47, 179, 173, 0.35) !important;
    background: rgba(14, 24, 29, 0.82) !important;
}
.work .control:focus {
    border-color: var(--brand) !important;
    background: rgba(14, 24, 29, 0.9) !important;
    box-shadow:
        0 0 0 3px rgba(47, 179, 173, 0.14),
        0 0 20px -4px rgba(47, 179, 173, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}
.work .label {
    font-size: 11.5px !important;
    letter-spacing: 0.14em !important;
    color: var(--ink-2) !important;
}
.work .hint {
    font-size: 11.5px !important;
    color: var(--ink-3) !important;
}

/* Select button — aynı polish */
.work .select__btn {
    background: rgba(10, 18, 22, 0.7) !important;
    border-color: rgba(47, 179, 173, 0.18) !important;
    border-radius: 8px !important;
    padding: 13px 14px !important;
    transition: border-color 0.3s var(--hero-ease),
                background 0.3s var(--hero-ease),
                box-shadow 0.3s var(--hero-ease) !important;
}
.work .select__btn:hover {
    border-color: rgba(47, 179, 173, 0.35) !important;
}
.work .select__btn[aria-expanded="true"] {
    border-color: var(--brand) !important;
    background: rgba(14, 24, 29, 0.9) !important;
    box-shadow:
        0 0 0 3px rgba(47, 179, 173, 0.14),
        0 0 20px -4px rgba(47, 179, 173, 0.35) !important;
}
.work .select__panel {
    background: rgba(14, 24, 29, 0.98) !important;
    border-color: rgba(47, 179, 173, 0.28) !important;
    box-shadow:
        0 24px 60px -20px rgba(0, 0, 0, 0.9),
        0 0 40px -12px rgba(47, 179, 173, 0.3) !important;
    z-index: 100 !important;
}

/* Slip (fiş) — dark premium receipt (beyaz kaldırıldı) */
.work .rail .slip {
    position: relative;
    background: linear-gradient(160deg,
        rgba(22, 37, 44, 0.92) 0%,
        rgba(12, 21, 26, 0.96) 100%) !important;
    border: 1px solid var(--line-strong) !important;
    color: var(--ink) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 40px 90px -30px rgba(0, 0, 0, 0.95),
        0 0 60px -20px rgba(47, 179, 173, 0.3) !important;
    overflow: hidden;
}
.work .rail .slip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-2), var(--brand), var(--brand-dim));
    box-shadow: 0 0 12px rgba(47, 179, 173, 0.6);
    z-index: 2;
}
.work .rail .slip::after {
    /* Foil border */
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(47, 179, 173, 0.4),
        rgba(47, 179, 173, 0) 30%,
        rgba(47, 179, 173, 0) 70%,
        rgba(62, 206, 199, 0.35));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
}
.work .rail .slip__head {
    border-bottom-color: rgba(47, 179, 173, 0.18) !important;
}
.work .rail .slip__brand {
    color: var(--ink) !important;
}
.work .rail .slip__kind {
    color: var(--brand) !important;
}
.work .rail .slip__no {
    color: var(--ink-2) !important;
    font-family: var(--font-mono) !important;
}
.work .rail .slip__key {
    color: var(--ink-3) !important;
}
.work .rail .slip__val {
    color: var(--ink) !important;
}
.work .rail .slip__row {
    border-bottom-color: rgba(47, 179, 173, 0.08) !important;
}
.work .rail .slip__tear {
    /* Perforasyon kenarı — dark üzerine ince kesik */
    background:
        radial-gradient(circle at 6px 6px, rgba(0, 0, 0, 0.85) 5px, transparent 6px) !important;
    background-size: 12px 12px !important;
    background-color: transparent !important;
    filter: none !important;
}

/* Lamp (öncelik) hover polish */
.work .lamp {
    background: rgba(10, 18, 22, 0.7) !important;
    border-color: rgba(47, 179, 173, 0.18) !important;
    border-radius: 10px !important;
    transition: border-color 0.3s var(--hero-ease),
                background 0.3s var(--hero-ease),
                transform 0.3s var(--hero-ease) !important;
}
.work .lamp:hover {
    transform: translateY(-2px);
    border-color: rgba(47, 179, 173, 0.4) !important;
}

/* AI note — premium glass */
.work .ai-note {
    background: linear-gradient(135deg,
        rgba(47, 179, 173, 0.14),
        rgba(47, 179, 173, 0.02)) !important;
    border-color: rgba(47, 179, 173, 0.35) !important;
    backdrop-filter: blur(8px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 14px 40px -18px rgba(47, 179, 173, 0.4) !important;
}

/* Footnote alt marka — ince rafine */
.footnote {
    letter-spacing: 0.18em !important;
    color: var(--ink-3) !important;
    padding: 32px 26px 40px !important;
    border-top: 1px solid var(--line) !important;
    margin-top: 24px !important;
    background: linear-gradient(180deg, transparent, rgba(47, 179, 173, 0.03));
}

/* Brand logo — link olarak davranışı polishla */
a.brand-logo {
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s var(--hero-ease);
    border-radius: 6px;
}
a.brand-logo:hover {
    opacity: 0.82;
}
a.brand-logo:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 4px;
}

