:root{
  --bg: #07060b;
  --bg2:#0b0912;
  --surface:#0f0c1a;
  --surface2:#151026;
  --text:#eae7ff;
  --muted:#b9b2dd;
  --border: rgba(173, 134, 255, 0.18);
  --purple:#a855f7;
  --purple2:#7c3aed;
  --pink:#ff4fd8;
  --glow: 0 0 30px rgba(168, 85, 247, .35);
  --shadow: 0 18px 45px rgba(0,0,0,.55);
  --radius: 20px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(1000px 800px at 15% 10%, rgba(168,85,247,.25), transparent 55%),
    radial-gradient(900px 700px at 85% 20%, rgba(255,79,216,.12), transparent 60%),
    radial-gradient(900px 700px at 50% 100%, rgba(124,58,237,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  opacity:.06;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  background-size:260px 260px;
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--max), 92%); margin:0 auto; }

/* NAV */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,6,11, .55);
  border-bottom: 1px solid rgba(173,134,255,.12);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}

/* BRAND */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  letter-spacing:.2px;
  min-width: 0;
}

/* Eğer hâlâ sigil kullanmak istersen dursun */
.sigil{
  width:38px;
  height:38px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(168,85,247,.9), rgba(255,79,216,.55));
  box-shadow: var(--glow);
  position:relative;
  flex: 0 0 auto;
}
.sigil::after{
  content:"";
  position:absolute;
  inset:10px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.25);
}

/* LOGO (img) - asıl kullandığın bu */
.logo{
  display:block;
  height:42px;
  width:auto;
  min-width:42px;
  max-width:120px;
  object-fit:contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 14px rgba(168,85,247,.6));
  transition: .25s ease;
}

.brand:hover .logo{
  transform: scale(1.05);
  filter: drop-shadow(0 0 24px rgba(168,85,247,.9));
}

/* Brand text */
.brand > div{ min-width: 0; }
.brand h1{
  margin:0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}
.brand span{
  display:block;
  font-size: 12px;
  color: var(--muted);
  margin-top:2px;
  line-height: 1.2;
}

/* LINKS */
.links{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.chip{
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(173,134,255,.16);
  background: rgba(21,16,38,.45);
  transition:.2s ease;
  font-size: 13px;
  color: var(--muted);
}

.chip:hover{
  transform: translateY(-1px);
  border-color: rgba(168,85,247,.45);
  color: var(--text);
  box-shadow: var(--glow);
}

.chip.active{
  border-color: rgba(168,85,247,.6);
  color: var(--text);
  box-shadow: var(--glow);
}

/* LAYOUT */
main{ padding: 42px 0 10px; }

.card{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(21,16,38,.75), rgba(15,12,26,.55));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(600px 220px at 20% 0%, rgba(168,85,247,.22), transparent 60%),
    radial-gradient(400px 250px at 90% 20%, rgba(255,79,216,.10), transparent 60%);
  z-index:0;
  pointer-events:none;
}

.card > *{ position:relative; z-index:1; }

.hero{ padding: 28px; }

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-size: 13px;
  border: 1px solid rgba(173,134,255,.16);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11,9,18,.35);
}

.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background: var(--purple);
  box-shadow: 0 0 16px rgba(168,85,247,.7);
}

h2{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.6px;
}

p{ color: var(--muted); line-height: 1.65; }

.actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(173,134,255,.18);
  background: rgba(7,6,11,.35);
  color: var(--text);
  transition: .2s ease;
  font-weight: 650;
  font-size: 14px;
  cursor:pointer;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(168,85,247,.45);
  box-shadow: var(--glow);
}

.btn.primary{
  background: linear-gradient(135deg, rgba(168,85,247,.92), rgba(124,58,237,.85));
  border-color: rgba(255,255,255,.12);
}

.btn.primary:hover{
  filter: brightness(1.05);
  box-shadow: 0 0 40px rgba(168,85,247,.45);
}

/* GRID */
.section-title{ margin: 28px 0 14px; }
.section-title h3{ margin:0; font-size: 20px; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 980px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px){
  .grid{ grid-template-columns: 1fr; }
}

.item{
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(173,134,255,.16);
  background: rgba(11,9,18,.35);
  transition:.2s ease;
}

.item:hover{
  transform: translateY(-2px);
  border-color: rgba(168,85,247,.42);
  box-shadow: var(--glow);
}

.item h4{ margin: 0 0 8px; font-size: 16px; }

.meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top: 12px;
}

.pill{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(173,134,255,.14);
  color: var(--muted);
  background: rgba(21,16,38,.35);
}

.more{
  display:inline-flex;
  gap:8px;
  align-items:center;
  margin-top: 14px;
  color: rgba(234,231,255,.92);
  font-weight: 650;
  font-size: 13px;
}

.more span{ opacity:.7; transition:.2s ease; }
.item:hover .more span{ transform: translateX(2px); opacity:1; }

/* CV */
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 900px){
  .two-col{ grid-template-columns: 1fr; }
}

.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

/* reveal */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: .6s ease;
}

.reveal.show{
  opacity:1;
  transform: translateY(0);
}

footer{
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(173,134,255,.12);
  margin-top: 30px;
}

/* Mobile navbar tweaks */
@media (max-width: 600px){
  .logo{ height: 36px; min-width: 36px; }
  .chip{ padding: 8px 10px; font-size: 12px; }
}
.thumb{
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(173,134,255,.14);
  background: rgba(11,9,18,.35);
  margin-bottom: 12px;
}
