/* ============================================================
   UskoLab — Public site  ·  "SİNEMATİK / EPİK" tema
   Çok sayfalı kurumsal site. Her sayfa kendi sinematik banner'ıyla açılır.
   Palet: void #050403 / obsidian #0b0907 / panel #141009
          parşömen #f2ead9 / miğfer altını #e0b352 / ejderha közü #d8552e
   ============================================================ */

/* ---------- Fonts (self-hosted, CSP-safe) ---------- */
@font-face {
    font-family: 'Inter'; font-style: normal; font-weight: 100 900; font-display: swap;
    src: url('../fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Inter'; font-style: normal; font-weight: 100 900; font-display: swap;
    src: url('../fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --void: #050403;
    --bg: #0b0907;
    --surface: #141009;
    --surface-2: #1c160d;
    --surface-3: #251d11;
    --border: #2c2317;
    --border-strong: #41331f;
    --divider: #1d1710;

    --text: #f2ead9;
    --text-soft: #ddd1ba;
    --muted: #a89a7e;
    --faint: #786a52;

    --gold: #e0b352;
    --gold-2: #f4cf78;
    --gold-deep: #a87d2c;
    --gold-soft: rgba(224, 179, 82, 0.10);
    --gold-border: rgba(224, 179, 82, 0.34);
    --gold-ring: rgba(224, 179, 82, 0.22);

    --ember: #d8552e;
    --ember-2: #f0703f;
    --ember-soft: rgba(216, 85, 46, 0.12);
    --ember-border: rgba(216, 85, 46, 0.40);

    --success: #7aa24f;
    --danger: #c0392b;

    --shadow-md: 0 10px 30px rgba(0,0,0,.6), 0 0 0 1px rgba(224,179,82,.05);
    --shadow-lg: 0 40px 90px rgba(0,0,0,.75), 0 12px 30px rgba(0,0,0,.5);
    --glow-gold: 0 0 32px rgba(224,179,82,.28);
    --glow-ember: 0 0 36px rgba(216,85,46,.32);

    --nav-h: 72px;
    --maxw: 1200px;
    --radius: 16px;
    --mono: ui-monospace, 'Cascadia Mono', 'JetBrains Mono', 'Consolas', monospace;
    --serifish: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Inter', system-ui, 'Segoe UI', sans-serif;
    background: var(--bg); color: var(--text);
    font-size: 16px; line-height: 1.65; overflow-x: hidden;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold-2); }
h1,h2,h3,h4 { line-height: 1.1; margin: 0 0 .4em; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0 0 1em; }

.skip-link { position: absolute; left: -999px; top: 8px; z-index: 999; background: var(--gold); color: #150f04; padding: 10px 16px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { left: 12px; }

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: #3a2e1c; border-radius: 6px; border: 3px solid var(--void); }
::-webkit-scrollbar-thumb:hover { background: #57451f; }

/* ---------- Layout utils ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section.tight { padding: 70px 0; }
.section-dark { background: var(--void); }
.section-panel { background: linear-gradient(180deg, var(--bg), var(--surface) 50%, var(--bg)); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-border)); }
.eyebrow::after { background: linear-gradient(90deg, var(--gold-border), transparent); }
.section-title { font-size: clamp(30px, 4.4vw, 48px); letter-spacing: -.03em; }
.section-sub { color: var(--muted); font-size: 18px; margin: 0; }
.text-gold { color: var(--gold); }
.display {
    font-weight: 900; letter-spacing: -.035em; line-height: .98;
    text-wrap: balance;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font: inherit; font-weight: 700; cursor: pointer; white-space: nowrap;
    padding: 14px 26px; border-radius: 11px; border: 1px solid transparent; line-height: 1;
    transition: transform .14s ease, box-shadow .2s ease, background .2s, border-color .2s, color .2s;
    text-decoration: none; position: relative;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(180deg, var(--gold-2), var(--gold) 60%, var(--gold-deep)); color: #160f03; box-shadow: 0 6px 20px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,240,200,.5); }
.btn-primary:hover { color: #160f03; box-shadow: var(--glow-gold); transform: translateY(-2px); }
.btn-ember { background: linear-gradient(180deg, var(--ember-2), var(--ember)); color: #fff; }
.btn-ember:hover { color: #fff; box-shadow: var(--glow-ember); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.02); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { color: var(--text); border-color: var(--gold-border); background: var(--gold-soft); }
.btn-sm { padding: 10px 17px; font-size: 14px; border-radius: 9px; }
.btn-lg { padding: 17px 34px; font-size: 17px; border-radius: 13px; }
.btn-block { width: 100%; }

/* ---------- Topbar (özgün, marka kimliği) ---------- */
.topbar-announce {
    background: linear-gradient(90deg, var(--ember-soft), var(--gold-soft), var(--ember-soft));
    border-bottom: 1px solid var(--divider); text-align: center;
    font-size: 13px; color: var(--text-soft); padding: 7px 16px; letter-spacing: .02em;
}
.topbar-announce b { color: var(--gold); }
.site-nav { position: sticky; top: 0; z-index: 200; height: var(--nav-h); display: flex; align-items: center;
    background: rgba(8,6,4,.66); backdrop-filter: blur(14px) saturate(1.2);
    border-bottom: 1px solid transparent; transition: border-color .3s, background .3s, box-shadow .3s; }
.site-nav.scrolled { background: rgba(8,6,4,.94); border-bottom-color: var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,.5), 0 1px 0 var(--gold-soft); }
.nav-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: inline-flex; align-items: center; gap: 11px; color: var(--text); font-weight: 800; }
.nav-logo:hover { color: var(--text); }
.nav-logo-img { width: 104px; height: auto; object-fit: contain; image-rendering: -webkit-optimize-contrast; flex-shrink: 0;
    filter: drop-shadow(0 4px 18px rgba(216,85,46,.42)) drop-shadow(0 0 30px rgba(224,179,82,.22)); }
.nav-logo-text { font-size: 22px; letter-spacing: -.01em; font-weight: 800; }
.site-footer .nav-logo-img { width: 150px; }
.nav-logo-text b { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { color: var(--text-soft); font-weight: 600; font-size: 15px; padding: 9px 15px; border-radius: 9px; position: relative; transition: color .15s; }
.nav-link::after { content: ''; position: absolute; left: 15px; right: 15px; bottom: 5px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--ember)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; border-radius: 2px; }
.nav-link:hover { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--text); }
.nav-auth { display: flex; align-items: center; gap: 10px; margin-left: 12px; padding-left: 14px; border-left: 1px solid var(--border); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Cinematic backdrop (paylaşılan) ---------- */
.cine { position: relative; overflow: hidden; }
.cine-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cine-bg::before { content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(80% 60% at 50% -10%, rgba(224,179,82,.18), transparent 55%),
        radial-gradient(50% 50% at 85% 10%, rgba(216,85,46,.14), transparent 60%),
        radial-gradient(60% 60% at 10% 30%, rgba(216,85,46,.07), transparent 60%); }
.cine-bg::after { content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(var(--divider) 1px, transparent 1px), linear-gradient(90deg, var(--divider) 1px, transparent 1px);
    background-size: 60px 60px; opacity: .4;
    mask-image: radial-gradient(75% 65% at 50% 25%, #000 25%, transparent 78%);
    -webkit-mask-image: radial-gradient(75% 65% at 50% 25%, #000 25%, transparent 78%); }
.cine-vignette { position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(5,4,3,.9) 100%); }
#emberCanvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .55; }
.cine > .container, .cine .cine-inner { position: relative; z-index: 3; }

/* ---------- Sinematik FX ---------- */
.hero-fx { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.aurora { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; mix-blend-mode: screen; }
.aurora.a1 { width: 540px; height: 540px; left: -8%; top: -14%; background: radial-gradient(circle, rgba(224,179,82,.6), transparent 70%); animation: drift1 19s ease-in-out infinite alternate; }
.aurora.a2 { width: 480px; height: 480px; right: -8%; top: -4%; background: radial-gradient(circle, rgba(216,85,46,.55), transparent 70%); animation: drift2 23s ease-in-out infinite alternate; }
.aurora.a3 { width: 640px; height: 640px; left: 28%; top: 24%; background: radial-gradient(circle, rgba(216,85,46,.26), transparent 70%); animation: drift3 27s ease-in-out infinite alternate; }
@keyframes drift1 { to { transform: translate(90px, 60px) scale(1.18); } }
@keyframes drift2 { to { transform: translate(-80px, 50px) scale(1.12); } }
@keyframes drift3 { to { transform: translate(50px, -60px) scale(1.22); } }
.hero-crest { position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%); width: min(640px, 88vw); z-index: 0; opacity: .07; pointer-events: none; }
.hero-crest svg { width: 100%; height: auto; display: block; }
.hero-silhouette { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; pointer-events: none; }
.hero-silhouette svg { width: 100%; height: auto; display: block; }

/* 3B tilt (fareyle) */
.tilt { transform-style: preserve-3d; transition: transform .18s ease; will-change: transform; }
.tilt > * { transform: translateZ(30px); }

/* Sınıf amblemleri */
.class-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.class-card { text-align: center; padding: 32px 20px; background: linear-gradient(180deg, var(--surface), var(--bg)); border: 1px solid var(--border); border-radius: 16px; transition: transform .2s, border-color .2s, box-shadow .2s; }
.class-card:hover { transform: translateY(-6px); border-color: var(--gold-border); box-shadow: var(--shadow-md); }
.class-emblem { width: 88px; height: 88px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at 50% 35%, var(--gold-soft), transparent 70%); border: 1px solid var(--gold-border); }
.class-emblem svg { width: 50px; height: 50px; fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.class-card h3 { font-size: 18px; } .class-card p { color: var(--muted); font-size: 13.5px; margin: 0; }
@media (max-width: 980px) { .class-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .class-grid { grid-template-columns: 1fr; } }

/* ---------- Kategori vitrini (hero altı) + popup ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.cat-card { cursor: pointer; text-align: center; padding: 26px 10px; background: linear-gradient(180deg, var(--surface), var(--bg)); border: 1px solid var(--border); border-radius: 14px; color: var(--text); font: inherit; transition: transform .18s, border-color .18s, box-shadow .18s; position: relative; overflow: hidden; }
.cat-card::before { content: ''; position: absolute; inset: -1px -1px auto -1px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), var(--ember), transparent); opacity: 0; transition: opacity .25s; }
.cat-card:hover { transform: translateY(-5px); border-color: var(--gold-border); box-shadow: var(--shadow-md); }
.cat-card:hover::before { opacity: 1; }
.cat-ico { width: 56px; height: 56px; margin: 0 auto 12px; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at 50% 35%, var(--gold-soft), transparent 70%); border: 1px solid var(--gold-border); }
.cat-ico svg { width: 30px; height: 30px; fill: none; stroke: var(--gold); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cat-name { font-weight: 800; font-size: 14px; letter-spacing: .07em; }
.cat-cnt { font-size: 11.5px; color: var(--faint); margin-top: 3px; }
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 620px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

.cat-modal-backdrop { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px; background: rgba(5,4,3,.74); backdrop-filter: blur(7px); opacity: 0; pointer-events: none; transition: opacity .25s; }
.cat-modal-backdrop.open { opacity: 1; pointer-events: auto; }
.cat-modal { width: 100%; max-width: 720px; max-height: 86vh; overflow: auto; background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--gold-border); border-radius: 18px; box-shadow: var(--shadow-lg), var(--glow-gold); padding: 30px 30px 26px; position: relative; transform: translateY(18px) scale(.96); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.cat-modal-backdrop.open .cat-modal { transform: none; }
.cat-modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 10px; background: var(--surface-3); border: 1px solid var(--border-strong); color: var(--text); font-size: 22px; cursor: pointer; line-height: 1; transition: background .15s, border-color .15s, color .15s; }
.cat-modal-close:hover { background: var(--ember-soft); border-color: var(--ember-border); color: #fff; }
.cat-modal-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--divider); }
.cat-modal-head .cat-ico { margin: 0; }
.cat-modal-head h3 { font-size: 22px; margin: 0; letter-spacing: .04em; }
.cat-modal-head .cat-cnt { margin-top: 2px; }
.cat-modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cat-modal-note { margin: 14px 0 0; font-size: 13px; color: var(--faint); }
.cat-modal-foot { margin-top: 24px; text-align: center; }
@media (max-width: 560px) { .cat-modal-grid { grid-template-columns: 1fr; } .cat-modal { padding: 26px 18px; } }

/* ---------- Hero (ana sayfa) ---------- */
.hero { padding: clamp(80px, 14vh, 150px) 0 140px; min-height: 92vh; display: flex; align-items: center; }
.hero-inner { text-align: center; max-width: 920px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-soft);
    background: rgba(255,255,255,.03); border: 1px solid var(--border-strong); padding: 7px 16px; border-radius: 999px; margin-bottom: 26px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px var(--success); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
.hero-title { font-size: clamp(40px, 7vw, 78px); margin-bottom: 24px; }
.hero-title .grad { background: linear-gradient(110deg, var(--gold-2), var(--gold) 35%, var(--ember)); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 60px rgba(224,179,82,.25); }
.hero-sub { font-size: clamp(16px, 2.2vw, 21px); color: var(--text-soft); max-width: 660px; margin: 0 auto 38px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-size: 13.5px; color: var(--faint); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; color: var(--faint); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue .mouse { width: 22px; height: 34px; border: 2px solid var(--border-strong); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content: ''; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; background: var(--gold); border-radius: 2px; transform: translateX(-50%); animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 10px); } }

/* ---------- Hero foto (x2: savaşçı solda, yazı sağda) ---------- */
.hero.has-photo { padding: 0; min-height: 94vh; align-items: center; }
.hero-photo-bg { position: absolute; inset: 0; z-index: 0; background-color: #050403; background-repeat: no-repeat; background-position: left center; background-size: cover; animation: heroZoom 32s ease-in-out infinite alternate; }
.hero .hero-photo-bg { background-image: url('/img/hero.jpg'); }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background:
    linear-gradient(90deg, rgba(5,4,3,.5) 0%, rgba(5,4,3,.12) 26%, transparent 50%),
    linear-gradient(0deg, var(--bg) 0%, rgba(5,4,3,.25) 20%, transparent 42%),
    linear-gradient(180deg, rgba(5,4,3,.45) 0%, transparent 16%); }
.hero.has-photo .cine-inner { display: flex; justify-content: flex-end; }
.hero.has-photo .hero-inner { text-align: left; margin: 0; max-width: 560px; }
.hero.has-photo .hero-cta { justify-content: flex-start; }
.hero.has-photo .hero-title, .hero.has-photo .hero-sub { text-shadow: 0 2px 26px rgba(0,0,0,.78); }
@media (max-width: 880px) {
    .hero-photo-bg { background-position: 28% center; }
    .hero-scrim { background: linear-gradient(0deg, var(--bg) 0%, rgba(5,4,3,.42) 32%, rgba(5,4,3,.62) 100%); }
    .hero.has-photo .cine-inner { justify-content: center; }
    .hero.has-photo .hero-inner { text-align: center; max-width: 640px; }
    .hero.has-photo .hero-cta { justify-content: center; }
}

/* Koyulaştırılmış sahne arka planı (banner + CTA) */
.scene-section { position: relative; background: linear-gradient(rgba(5,4,3,.84), rgba(5,4,3,.93)), url('/img/scene.jpg') center / cover; background-attachment: fixed; }
@media (max-width: 880px) { .scene-section { background-attachment: scroll; } }
.page-banner .cine-bg { background: linear-gradient(180deg, rgba(5,4,3,.72), rgba(5,4,3,.88) 62%, var(--bg)), url('/img/scene.jpg') center / cover; }
.page-banner .cine-bg::after { opacity: .12; }

/* ---------- Page banner (alt sayfalar) ---------- */
.page-banner { padding: calc(var(--nav-h) - 10px) 0 0; }
.page-banner .cine-inner { text-align: center; max-width: 820px; margin: 0 auto; padding: 70px 0 64px; }
.page-banner .crumbs { font-size: 13px; color: var(--faint); margin-bottom: 16px; letter-spacing: .04em; }
.page-banner .crumbs a { color: var(--muted); }
.page-banner h1 { font-size: clamp(34px, 5.5vw, 58px); margin-bottom: 16px; }
.page-banner p { color: var(--text-soft); font-size: clamp(15px, 2vw, 19px); max-width: 620px; margin: 0 auto; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 70px; }
.stat { text-align: center; padding: 26px 14px; background: linear-gradient(180deg, var(--surface), var(--bg)); border: 1px solid var(--border); border-radius: var(--radius); }
.stat-num { font-size: clamp(28px, 3.8vw, 42px); font-weight: 900; color: var(--gold); letter-spacing: -.02em; }
.stat-num .suffix { color: var(--text); }
.stat-label { font-size: 13.5px; color: var(--muted); margin-top: 5px; letter-spacing: .02em; }

/* ---------- Feature cards ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.features-grid.two { grid-template-columns: repeat(2, 1fr); }
.feature-card { background: linear-gradient(180deg, var(--surface), var(--bg)); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px 28px; position: relative; overflow: hidden; transition: transform .22s, border-color .22s, box-shadow .22s; }
.feature-card::before { content: ''; position: absolute; inset: -1px -1px auto -1px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), var(--ember), transparent); opacity: 0; transition: opacity .25s; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--gold-border); box-shadow: var(--shadow-md); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 20px;
    background: radial-gradient(circle at 30% 30%, var(--gold-soft), transparent), var(--surface-2);
    border: 1px solid var(--gold-border); color: var(--gold); box-shadow: inset 0 0 18px rgba(224,179,82,.08); }
.feature-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 20px; }
.feature-card p { color: var(--muted); font-size: 15px; margin: 0; }
.feature-card .tag-list { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.feature-card .tag-list li { font-size: 12px; color: var(--text-soft); background: var(--surface-2); border: 1px solid var(--border); padding: 4px 10px; border-radius: 999px; }

/* ---------- Özellik kataloğu (tek tek liste) ---------- */
.feat-block { margin-bottom: 58px; }
.feat-block:last-child { margin-bottom: 0; }
.feat-cat { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.feat-cat h2 { font-size: 22px; margin: 0; letter-spacing: -.02em; }
.feat-cat .line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold-border), transparent); }
.feat-cat .cnt { font-size: 12px; color: var(--faint); font-variant-numeric: tabular-nums; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feat-item { display: flex; gap: 13px; padding: 17px 18px; background: linear-gradient(180deg, var(--surface), var(--bg)); border: 1px solid var(--border); border-radius: 13px; transition: border-color .2s, transform .2s, box-shadow .2s; }
.feat-item:hover { border-color: var(--gold-border); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feat-item .fi-ico { flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid var(--gold-border); color: var(--gold); }
.feat-item .fi-ico svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.feat-item h4 { font-size: 15px; margin: 0 0 3px; letter-spacing: -.01em; }
.feat-item p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
@media (max-width: 980px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .feat-grid { grid-template-columns: 1fr; } }

/* ---------- Özellik kartları (gif/önizleme alanlı) ---------- */
.feat-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-mcard { background: linear-gradient(180deg, var(--surface), var(--bg)); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform .2s, border-color .2s, box-shadow .2s; }
.feat-mcard:hover { transform: translateY(-4px); border-color: var(--gold-border); box-shadow: var(--shadow-md); }
.feat-media { position: relative; aspect-ratio: 16 / 9; background:
    radial-gradient(circle at 50% 40%, var(--gold-soft), transparent 70%),
    linear-gradient(135deg, var(--surface-2), var(--surface-3));
    display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--border); }
.feat-media::after { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: linear-gradient(110deg, transparent 35%, rgba(224,179,82,.08) 50%, transparent 65%); transform: translateX(-100%); animation: featShimmer 3.2s ease-in-out infinite; }
@keyframes featShimmer { 0% { transform: translateX(-100%); } 60%, 100% { transform: translateX(100%); } }
.feat-media img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-media img.missing { display: none; }
.feat-media-ph { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--faint); font-size: 12.5px; letter-spacing: .03em; text-align: center; padding: 10px; }
.feat-media-ph svg { stroke: var(--gold); opacity: .55; }
.feat-media-ph svg { width: 30px; height: 30px; fill: none; stroke: var(--border-strong); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feat-mcard-body { padding: 16px 18px 18px; }
.feat-mcard-body h4 { font-size: 16px; margin: 0 0 5px; letter-spacing: -.01em; }
.feat-mcard-body p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.5; }
@media (max-width: 980px) { .feat-showcase { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feat-showcase { grid-template-columns: 1fr; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; padding: 32px 26px; background: linear-gradient(180deg, var(--surface), var(--bg)); border: 1px solid var(--border); border-radius: var(--radius); }
.step-num { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 22px; font-weight: 900; color: #160f03;
    background: linear-gradient(180deg, var(--gold-2), var(--gold)); box-shadow: var(--glow-gold); margin-bottom: 18px; }
.step h3 { font-size: 19px; } .step p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pricing.single { grid-template-columns: minmax(0, 460px); justify-content: center; }
.price-card { display: flex; flex-direction: column; background: linear-gradient(180deg, var(--surface), var(--bg)); border: 1px solid var(--border); border-radius: 18px; padding: 32px 28px; position: relative; transition: transform .2s, border-color .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--gold-border); box-shadow: var(--glow-gold); }
.price-tag-pop { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #160f03; font-size: 12px; font-weight: 800; letter-spacing: .04em; padding: 5px 15px; border-radius: 999px; text-transform: uppercase; }
.price-name { font-size: 15px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.price-name.gold { color: var(--gold); } .price-name.silver { color: #c4c8d2; } .price-name.bronze { color: #cf9468; }
.price-amount { font-size: 44px; font-weight: 900; margin: 12px 0 2px; letter-spacing: -.02em; }
.price-amount small { font-size: 16px; font-weight: 600; color: var(--muted); }
.price-period { color: var(--faint); font-size: 13.5px; margin-bottom: 24px; }
.price-features { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; flex: 1; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text-soft); }
.price-features li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; stroke: var(--success); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.price-features li.off { color: var(--faint); } .price-features li.off svg { stroke: var(--faint); }
.price-note { text-align: center; color: var(--faint); font-size: 13px; margin-top: 22px; }

/* ---------- Comparison table ---------- */
.cmp-table { width: 100%; border-collapse: collapse; font-size: 15px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cmp-table th, .cmp-table td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--divider); }
.cmp-table th:first-child, .cmp-table td:first-child { text-align: left; color: var(--text-soft); }
.cmp-table thead th { background: var(--surface-2); color: var(--text); font-size: 14px; letter-spacing: .04em; }
.cmp-table thead th.hl { color: var(--gold); }
.cmp-table td svg { width: 18px; height: 18px; stroke: var(--success); fill: none; stroke-width: 2.6; }
.cmp-table td .no { color: var(--faint); }
.cmp-table tr:last-child td { border-bottom: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 13px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--gold-border); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--text); cursor: pointer; font: inherit; font-weight: 600; font-size: 16px; padding: 19px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-q .chev { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--gold); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ---------- Disclaimer ---------- */
.disclaimer-box { max-width: 1000px; margin: 0 auto; background: var(--ember-soft); border: 1px solid var(--ember-border); border-radius: var(--radius); padding: 26px 28px; display: flex; gap: 16px; align-items: flex-start; }
.disclaimer-box .ico { flex-shrink: 0; width: 26px; height: 26px; stroke: var(--ember-2); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.disclaimer-box h3 { font-size: 17px; margin-bottom: 6px; } .disclaimer-box p { font-size: 14.5px; color: var(--text-soft); margin: 0; }

/* ---------- CTA ---------- */
.cta-card { max-width: 920px; margin: 0 auto; padding: 60px 44px; border-radius: 22px; position: relative; overflow: hidden; text-align: center;
    background: linear-gradient(135deg, var(--surface-2), var(--surface)); border: 1px solid var(--gold-border); box-shadow: var(--shadow-lg); }
.cta-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 90% at 50% 0%, rgba(224,179,82,.16), transparent 70%); }
.cta-card > * { position: relative; }
.cta-card h2 { font-size: clamp(28px, 4.4vw, 42px); } .cta-card p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; font-size: 17px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--void); border-top: 1px solid var(--border); padding: 70px 0 30px; margin-top: 40px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-tagline { color: var(--muted); font-size: 14.5px; max-width: 320px; }
.footer-col h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-soft); font-size: 14.5px; padding: 5px 0; }
.footer-col a:hover { color: var(--gold); }
.footer-disclaimer { max-width: var(--maxw); margin: 48px auto 0; padding: 18px 24px; font-size: 12.5px; color: var(--faint); line-height: 1.7; border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.footer-disclaimer strong { color: var(--muted); } .footer-disclaimer a { color: var(--muted); text-decoration: underline; }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding: 22px 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--faint); }
.footer-bottom-links a { color: var(--muted); }

/* ---------- Legal ---------- */
.legal { padding: 64px 0 90px; }
.legal-head { max-width: 840px; margin: 0 auto 32px; }
.legal-head h1 { font-size: clamp(28px, 4vw, 42px); }
.legal-head .updated, .legal .updated { color: var(--faint); font-size: 13.5px; }
.legal-content { max-width: 840px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 44px; }
.legal-content h2 { font-size: 21px; margin: 32px 0 10px; color: var(--gold); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 17px; margin: 22px 0 8px; }
.legal-content p, .legal-content li { color: var(--text-soft); font-size: 15px; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin: 0 0 1em; }
.legal-content li { margin-bottom: 7px; }
.legal-content .updated { color: var(--faint); font-size: 13.5px; }

/* ---------- Auth + forms (üyelik fazı) ---------- */
.auth-wrap { min-height: calc(100vh - var(--nav-h)); display: grid; place-items: center; padding: 56px 20px; }
.auth-card { width: 100%; max-width: 430px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 38px 34px; box-shadow: var(--shadow-lg); }
.auth-card h1 { font-size: 25px; text-align: center; } .auth-card .auth-sub { text-align: center; color: var(--muted); font-size: 14.5px; margin-bottom: 26px; }
.field { margin-bottom: 16px; } .field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; background: var(--void); border: 1px solid var(--border-strong); border-radius: 10px; color: var(--text); font: inherit; font-size: 15px; padding: 12px 14px; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-border); box-shadow: 0 0 0 3px var(--gold-ring); }
.field .hint { font-size: 12.5px; color: var(--faint); margin-top: 6px; }
.form-error { background: var(--ember-soft); border: 1px solid var(--ember-border); color: #f2c9bd; border-radius: 10px; padding: 11px 14px; font-size: 14px; margin-bottom: 18px; }
.form-ok { background: rgba(122,162,79,.14); border: 1px solid rgba(122,162,79,.42); color: #d4e2bd; border-radius: 10px; padding: 11px 14px; font-size: 14px; margin-bottom: 18px; }
.auth-foot { text-align: center; font-size: 14px; color: var(--muted); margin-top: 20px; }
.chk { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--text-soft); margin: 4px 0 18px; line-height: 1.5; cursor: pointer; }
.chk input { margin-top: 2px; accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Üye paneli ---------- */
.panel-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 22px; }
.panel-hello { color: var(--muted); font-size: 14px; }
.panel-user { font-size: 27px; font-weight: 800; letter-spacing: -.02em; }
.panel-nav { display: flex; gap: 4px; flex-wrap: wrap; border-bottom: 1px solid var(--border); margin-bottom: 30px; }
.panel-nav a { padding: 12px 16px; color: var(--text-soft); font-weight: 600; font-size: 15px; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .15s, border-color .15s; }
.panel-nav a:hover { color: var(--text); }
.panel-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }
.panel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.panel-card { background: linear-gradient(180deg, var(--surface), var(--bg)); border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; }
.panel-card .pc-label { font-size: 13px; color: var(--muted); letter-spacing: .02em; }
.panel-card .pc-value { font-size: 24px; font-weight: 800; margin-top: 6px; letter-spacing: -.01em; }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; padding: 5px 13px; border-radius: 999px; }
.badge.ok { background: rgba(122,162,79,.15); border: 1px solid rgba(122,162,79,.42); color: #cfe0bb; }
.badge.off { background: var(--ember-soft); border: 1px solid var(--ember-border); color: #f2c9bd; }
.key-input { font-family: var(--mono); letter-spacing: 2px; text-transform: uppercase; }

/* Destek talepleri */
.ticket-list { display: grid; gap: 10px; }
.ticket-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 18px; background: linear-gradient(180deg, var(--surface), var(--bg)); border: 1px solid var(--border); border-radius: 12px; transition: border-color .2s, transform .15s; }
.ticket-row:hover { border-color: var(--gold-border); transform: translateY(-2px); }
.ticket-row .tk-subj { font-weight: 600; color: var(--text); }
.ticket-row .tk-meta { font-size: 12.5px; color: var(--faint); margin-top: 3px; }
.tk-badge { font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.tk-badge.open { background: var(--gold-soft); border: 1px solid var(--gold-border); color: var(--gold); }
.tk-badge.answered { background: rgba(122,162,79,.15); border: 1px solid rgba(122,162,79,.42); color: #cfe0bb; }
.tk-badge.closed { background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--muted); }
.thread { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.msg { max-width: 82%; padding: 13px 16px; border-radius: 14px; font-size: 14.5px; line-height: 1.55; white-space: pre-wrap; word-break: break-word; }
.msg .msg-who { font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 5px; opacity: .85; }
.msg .msg-time { font-size: 11px; color: var(--faint); margin-top: 6px; }
.msg.member { align-self: flex-end; background: var(--gold-soft); border: 1px solid var(--gold-border); }
.msg.staff { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--border-strong); }
@media (max-width: 780px) { .panel-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .panel-grid { grid-template-columns: 1fr; } .panel-head { flex-direction: column; align-items: flex-start; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; } .reveal.d2 { transition-delay: .18s; } .reveal.d3 { transition-delay: .27s; } .reveal.d4 { transition-delay: .36s; } .reveal.d5 { transition-delay: .45s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .features-grid, .features-grid.two, .steps, .pricing { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 720px) {
    .section { padding: 68px 0; }
    .nav-links { position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
        background: rgba(8,6,4,.99); border-bottom: 1px solid var(--border); padding: 16px 20px 24px; transform: translateY(-135%); transition: transform .32s ease; box-shadow: var(--shadow-lg); }
    .nav-open .nav-links { transform: translateY(0); }
    .nav-link { padding: 13px 14px; font-size: 16px; } .nav-link::after { display: none; }
    .nav-auth { margin: 10px 0 0; padding: 16px 0 0; border-left: 0; border-top: 1px solid var(--border); }
    .nav-auth .btn { flex: 1; }
    .nav-toggle { display: flex; }
    .features-grid, .features-grid.two, .steps, .pricing, .stats { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .legal-content { padding: 28px 22px; } .cta-card { padding: 42px 24px; }
    .cmp-table { font-size: 13px; } .cmp-table th, .cmp-table td { padding: 10px 8px; }
}
@media (max-width: 440px) { .footer-inner { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; } }

/* ---------- Mobil ince ayar (görseller dahil tam entegre) ---------- */
@media (max-width: 600px) {
    .hero.has-photo { min-height: 84vh; }
    .hero-photo-bg { background-position: 32% center; }
    .hero-title { font-size: clamp(30px, 9vw, 44px); }
    .hero-sub { font-size: 15.5px; }
    .section-title { font-size: clamp(25px, 7vw, 34px); }
    .section-sub { font-size: 15.5px; }
    .cat-card { padding: 18px 8px; }
    .cat-ico { width: 48px; height: 48px; }
    .cat-ico svg { width: 26px; height: 26px; }
    .cat-name { font-size: 13px; }
    .nav-logo-img { width: 88px; }
    .topbar-announce { font-size: 11px; padding: 6px 12px; }
    .feat-item { padding: 14px 14px; }
    .price-amount { font-size: 38px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    #emberCanvas, .scroll-cue { display: none; }
    * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
